mp'*
'makeprg' 'mp'		string	(default "make", VMS: "MMS")
			global or local to buffer |global-local|
			{not in Vi}
	Program to use for the ":make" command.  See |:make_makeprg|.
	This option may contain '%' and '#' characters (see  |:_%| and |:_#|), 
	which are expanded to the current and alternate file name.  Use |::S| 
	to escape file names in case they contain special characters.
	Environment variables are expanded |:set_env|.  See |option-backslash|
	about including spaces and backslashes.
	Note that a '|' must be escaped twice: once for ":set" and once for
	the interpretation of a command.  When you use a filter called
	"myfilter" do it like this: >
	    :set makeprg=gmake\ \\\|\ myfilter
<	The placeholder "$*" can be given (even multiple times) to specify
	where the arguments will be included, for example: >
	    :set makeprg=latex\ \\\\nonstopmode\ \\\\input\\{$*}
<	This option cannot be set from a |modeline| or in the |sandbox|, for
	security reasons.

						*'matchpairs'* *'mps'*
'matchpairs' 'mps'	string	(default "(:),{:},[:]")
			local to buffer
			{not in Vi}
	Characters that form pairs.  The |%| command jumps from one to the
	other.
	Only character pairs are allowed that are different, thus you cannot
	jump between two double quotes.
	The characters must be separated by a colon.
	The pairs must be separated by a comma.  Example for including '<' and
	'>' (HTML): >
		:set mps+=<:>

<	A more exotic example, to jump between the '=' and ';' in an
	assignment, useful for languages like C and Java: >
		:au FileType c,cpp,java set mps+==:;

<	For a more advanced way of using "%", see the matchit.vim plugin in
	the $VIMRUNTIME/macros directory. |add-local-help|

						*'matchtime'* *'mat'*
'matchtime' 'mat'	number	(default 5)
			global
			{not in Vi}{in Nvi}
	Tenths of a second to show the matching paren, when 'showmatch' is
	set.  Note that this is not in milliseconds, like other options that
	set a time.  This is to be compatible with Nvi.

						*'maxcombine'* *'mco'*
'maxcombine' 'mco'	number (default 2)
			global
			{not in Vi}
			{only available when compiled with the |+multi_byte|
			feature}
	The maximum number of combining characters supported for displaying.
	Only used when 'encoding' is "utf-8".
	The default is OK for most languages.  Hebrew may require 4.
	Maximum value is 6.
	Even when this option is set to 2 you can still edit text with more
	combining characters, you just can't see them.  Use |g8| or |ga|.
	See |mbyte-combining|.

						*'maxfuncdepth'* *'mfd'*
'maxfuncdepth' 'mfd'	number	(default 100)
			global
			{not in Vi}
			{not available when compiled without the |+eval|
			feature}
	Maximum depth of function calls for user functions.  This normally
	catches endless recursion.  When using a recursive function with
	more depth, set 'maxfuncdepth' to a bigger number.  But this will use
	more memory, there is the danger of failing when memory is exhausted.
	See also |:function|.

						*'maxmapdepth'* *'mmd'* *E223*
'maxmapdepth' 'mmd'	number	(default 1000)
			global
			{not in Vi}
	Maximum number of times a mapping is done without resulting in a
	character to be used.  This normally catches endless mappings, like
	":map x y" with ":map y x".  It still does not catch ":map g wg",
	because the 'w' is used before the next mapping is done.  See also
	|key-mapping|.

						*'maxmem'* *'mm'*
'maxmem' 'mm'		number	(default between 256 to 5120 (system
				 dependent) or half the amount of memory
				 available)
			global
			{not in Vi}
	Maximum amount of memory (in Kbyte) to use for one buffer.  When this
	limit is reached allocating extra memory for a buffer will cause
	other memory to be freed.  The maximum usable value is about 2000000.
	Use this to work without a limit.  Also see 'maxmemtot'.

						*'maxmempattern'* *'mmp'*
'maxmempattern' 'mmp'	number	(default 1000)
			global
			{not in Vi}
	Maximum amount of memory (in Kbyte) to use for pattern matching.
	The maximum value is about 2000000.  Use this to work without a limit.
							*E363*
	When Vim runs into the limit it gives an error message and mostly
	behaves like CTRL-C was typed.
	Running into the limit often means that the pattern is very
	inefficient or too complex.  This may already happen with the pattern
	"\(.\)*" on a very long line.  ".*" works much better.
	Vim may run out of memory before hitting the 'maxmempattern' limit.

						*'maxmemtot'* *'mmt'*
'maxmemtot' 'mmt'	number	(default between 2048 and 10240 (system
				 dependent) or half the amount of memory
				 available)
			global
			{not in Vi}
	Maximum amount of memory in Kbyte to use for all buffers together.
	The maximum usable value is about 2000000 (2 Gbyte).  Use this to work
	without a limit.  On 64 bit machines higher values might work.  But
	hey, do you really need more than 2 Gbyte for text editing?
	Also see 'maxmem'.

						*'menuitems'* *'mis'*
'menuitems' 'mis'	number	(default 25)
			global
			{not in Vi}
			{not available when compiled without the |+menu|
			feature}
	Maximum number of items to use in a menu.  Used for menus that are
	generated from a list of items, e.g., the Buffers menu.  Changing this
	option has no direct effect, the menu must be refreshed first.

						*'mkspellmem'* *'msm'*
'mkspellmem' 'msm'	string	(default "460000,2000,500")
			global
			{not in Vi}
			{not available when compiled without the |+syntax|
			feature}
	Parameters for |:mkspell|.  This tunes when to start compressing the
	word tree.  Compression can be slow when there are many words, but
	it's needed to avoid running out of memory.  The amount of memory used
	per word depends very much on how similar the words are, that's why
	this tuning is complicated.

	There are three numbers, separated by commas:
		{start},{inc},{added}

	For most languages the uncompressed word tree fits in memory.  {start}
	gives the amount of memory in Kbyte that can be used before any
	compression is done.  It should be a bit smaller than the amount of
	memory that is available to Vim.

	When going over the {start} limit the {inc} number specifies the
	amount of memory in Kbyte that can be allocated before another
	compression is done.  A low number means compression is done after
	less words are added, which is slow.  A high number means more memory
	will be allocated.

	After doing compression, {added} times 1024 words can be added before
	the {inc} limit is ignored and compression is done when any extra
	amount of memory is needed.  A low number means there is a smaller
	chance of hitting the {inc} limit, less memory is used but it's
	slower.

	The languages for which these numbers are important are Italian and
	Hungarian.  The default works for when you have about 512 Mbyte.  If
	you have 1 Gbyte you could use: >
		:set mkspellmem=900000,3000,800
<	If you have less than 512 Mbyte |:mkspell| may fail for some
	languages, no matter what you set 'mkspellmem' to.

				   *'modeline'* *'ml'* *'nomodeline'* *'noml'*
'modeline' 'ml'		boolean	(Vim default: on (off for root),
				 Vi default: off)
			local to buffer
						*'modelines'* *'mls'*
'modelines' 'mls'	number	(default 5)
			global
			{not in Vi}
	If 'modeline' is on 'modelines' gives the number of lines that is
	checked for set commands.  If 'modeline' is off or 'modelines' is zero
	no lines are checked.  See |modeline|.
	NOTE: 'modeline' is set to the Vi default value when 'compatible' is
	set and to the Vim default value when 'compatible' is reset.

				*'modifiable'* *'ma'* *'nomodifiable'* *'noma'*
'modifiable' 'ma'	boolean	(default on)
			local to buffer
			{not in Vi}		*E21*
	When off the buffer contents cannot be changed.  The 'fileformat' and
	'fileencoding' options also can't be changed.
	Can be reset with the |-M| command line argument.

				*'modified'* *'mod'* *'nomodified'* *'nomod'*
'modified' 'mod'	boolean	(default off)
			local to buffer
			{not in Vi}
	When on, the buffer is considered to be modified.  This option is set
	when:
	1. A change was made to the text since it was last written.  Using the
	   |undo| command to go back to the original text will reset the
	   option.  But undoing changes that were made before writing the
	   buffer will set the option again, since the text is different from
	   when it was written.
	2. 'fileformat' or 'fileencoding' is different from its original
	   value.  The original value is set when the buffer is read or
	   written.  A ":set nomodified" command also resets the original
	   values to the current values and the 'modified' option will be
	   reset.
	This option is not set when a change is made to the buffer as the
	result of a BufNewFile, BufRead/BufReadPost, BufWritePost,
	FileAppendPost or VimLeave autocommand event.  See |gzip-example| for
	an explanation.
	When 'buftype' is "nowrite" or "nofile" this option may be set, but
	will be ignored.

						*'more'* *'nomore'*
'more'			boolean	(Vim default: on, Vi default: off)
			global
			{not in Vi}
	When on, listings pause when the whole screen is filled.  You will get
	the |more-prompt|.  When this option is off there are no pauses, the
	listing continues until finished.
	NOTE: This option is set to the Vi default value when 'compatible' is
	set and to the Vim default value when 'compatible' is reset.

						*'mouse'* *E538*
'mouse'			string	(default "", "a" for GUI, MS-DOS and Win32)
			global
			{not in Vi}
	Enable the use of the mouse.  Only works for certain terminals
	(xterm, MS-DOS, Win32 |win32-mouse|, QNX pterm, *BSD console with
	sysmouse and Linux console with gpm).  For using the mouse in the
	GUI, see |gui-mouse|.
	The mouse can be enabled for different modes:
		n	Normal mode
		v	Visual mode
		i	Insert mode
		c	Command-line mode
		h	all previous modes when editing a help file
		a	all previous modes
		r	for |hit-enter| and |more-prompt| prompt
	Normally you would enable the mouse in all four modes with: >
		:set mouse=a
<	When the mouse is not enabled, the GUI will still use the mouse for
	modeless selection.  This doesn't move the text cursor.

	See |mouse-using|.  Also see |'clipboard'|.

	Note: When enabling the mouse in a terminal, copy/paste will use the
	"* register if there is access to an X-server.  The xterm handling of
	the mouse buttons can still be used by keeping the shift key pressed.
	Also see the 'clipboard' option.

			*'mousefocus'* *'mousef'* *'nomousefocus'* *'nomousef'*
'mousefocus' 'mousef'	boolean	(default off)
			global
			{not in Vi}
			{only works in the GUI}
	The window that the mouse pointer is on is automatically activated.
	When changing the window layout or window focus in another way, the
	mouse pointer is moved to the window with keyboard focus.  Off is the
	default because it makes using the pull down menus a little goofy, as
	a pointer transit may activate a window unintentionally.

			*'mousehide'* *'mh'* *'nomousehide'* *'nomh'*
'mousehide' 'mh'	boolean	(default on)
			global
			{not in Vi}
			{only works in the GUI}
	When on, the mouse pointer is hidden when characters are typed.
	The mouse pointer is restored when the mouse is moved.

						*'mousemodel'* *'mousem'*
'mousemodel' 'mousem'	string	(default "extend", "popup" for MS-DOS and Win32)
			global
			{not in Vi}
	Sets the model to use for the mouse.  The name mostly specifies what
	the right mouse button is used for:
	   extend	Right mouse button extends a selection.  This works
			like in an xterm.
	   popup	Right mouse button pops up a menu.  The shifted left
			mouse button extends a selection.  This works like
			with Microsoft Windows.
	   popup_setpos Like "popup", but the cursor will be moved to the
			position where the mouse was clicked, and thus the
			selected operation will act upon the clicked object.
			If clicking inside a selection, that selection will
			be acted upon, i.e. no cursor move.  This implies of
			course, that right clicking outside a selection will
			end Visual mode.
	Overview of what button does what for each model:
	mouse		    extend		popup(_setpos) ~
	left click	    place cursor	place cursor
	left drag	    start selection	start selection
	shift-left	    search word		extend selection
	right click	    extend selection	popup menu (place cursor)
	right drag	    extend selection	-
	middle click	    paste		paste

	In the "popup" model the right mouse button produces a pop-up menu.
	You need to define this first, see |popup-menu|.

	Note that you can further refine the meaning of buttons with mappings.
	See |gui-mouse-mapping|.  But mappings are NOT used for modeless
	selection (because that's handled in the GUI code directly).

	The 'mousemodel' option is set by the |:behave| command.

					*'mouseshape'* *'mouses'* *E547*
'mouseshape' 'mouses'	string	(default "i:beam,r:beam,s:updown,sd:cross,
					m:no,ml:up-arrow,v:rightup-arrow")
			global
			{not in Vi}
			{only available when compiled with the |+mouseshape|
			feature}
	This option tells Vim what the mouse pointer should look like in
	different modes.  The option is a comma separated list of parts, much
	like used for 'guicursor'.  Each part consist of a mode/location-list
	and an argument-list:
		mode-list:shape,mode-list:shape,..
	The mode-list is a dash separated list of these modes/locations:
			In a normal window: ~
		n	Normal mode
		v	Visual mode
		ve	Visual mode with 'selection' "exclusive" (same as 'v',
			if not specified)
		o	Operator-pending mode
		i	Insert mode
		r	Replace mode

			Others: ~
		c	appending to the command-line
		ci	inserting in the command-line
		cr	replacing in the command-line
		m	at the 'Hit ENTER' or 'More' prompts
		ml	idem, but cursor in the last line
		e	any mode, pointer below last window
		s	any mode, pointer on a status line
		sd	any mode, while dragging a status line
		vs	any mode, pointer on a vertical separator line
		vd	any mode, while dragging a vertical separator line
		a	everywhere

	The shape is one of the following:
	avail	name		looks like ~
	w x	arrow		Normal mouse pointer
	w x	blank		no pointer at all (use with care!)
	w x	beam		I-beam
	w x	updown		up-down sizing arrows
	w x	leftright	left-right sizing arrows
	w x	busy		The system's usual busy pointer
	w x	no		The system's usual 'no input' pointer
	  x	udsizing	indicates up-down resizing
	  x	lrsizing	indicates left-right resizing
	  x	crosshair	like a big thin +
	  x	hand1		black hand
	  x	hand2		white hand
	  x	pencil		what you write with
	  x	question	big ?
	  x	rightup-arrow	arrow pointing right-up
	w x	up-arrow	arrow pointing up
	  x	<number>	any X11 pointer number (see X11/cursorfont.h)

	The "avail" column contains a 'w' if the shape is available for Win32,
	x for X11.
	Any modes not specified or shapes not available use the normal mouse
	pointer.

	Example: >
		:set mouseshape=s:udsizing,m:no
<	will make the mouse turn to a sizing arrow over the status lines and
	indicate no input when the hit-enter prompt is displayed (since
	clicking the mouse has no effect in this state.)

						*'mousetime'* *'mouset'*
'mousetime' 'mouset'	number	(default 500)
			global
			{not in Vi}
	Only for GUI, MS-DOS, Win32 and Unix with xterm.  Defines the maximum
	time in msec between two mouse clicks for the second click to be
	recognized as a multi click.

						    *'mzquantum'* *'mzq'*
'mzquantum' 'mzq'	number	(default 100)
			global
			{not in Vi}
			{not available when compiled without the |+mzscheme|
			feature}
	The number of milliseconds between polls for MzScheme threads.
	Negative or zero value means no thread scheduling.

							*'nrformats'* *'nf'*
'nrformats' 'nf'	string	(default "octal,hex")
			local to buffer
			{not in Vi}
	This defines what bases Vim will consider for numbers when using the
	CTRL-A and CTRL-X commands for adding to and subtracting from a number
	respectively; see |CTRL-A| for more info on these commands.
	alpha	If included, single alphabetical characters will be
		incremented or decremented.  This is useful for a list with a
		letter index a), b), etc.	  	*octal-nrformats*
	octal	If included, numbers that start with a zero will be considered
		to be octal.  Example: Using CTRL-A on "007" results in "010".
	hex	If included, numbers starting with "0x" or "0X" will be
		considered to be hexadecimal.  Example: Using CTRL-X on
		"0x100" results in "0x0ff".
	Numbers which simply begin with a digit in the range 1-9 are always
	considered decimal.  This also happens for numbers that are not
	recognized as octal or hex.

				*'number'* *'nu'* *'nonumber'* *'nonu'*
'number' 'nu'		boolean	(default off)
			local to window
	Print the line number in front of each line.  When the 'n' option is
	excluded from 'cpoptions' a wrapped line will not use the column of
	line numbers (this is the default when 'compatible' isn't set).
	The 'numberwidth' option can be used to set the room used for the line
	number.
	When a long, wrapped line doesn't start with the first character, '-'
	characters are put before the number.
	See |hl-LineNr|  and |hl-CursorLineNr| for the highlighting used for
	the number.
						*number_relativenumber*
	The 'relativenumber' option changes the displayed number to be
	relative to the cursor.  Together with 'number' there are these
	four combinations (cursor in line 3):

              	'nonu'          'nu'            'nonu'          'nu'
		'nornu'         'nornu'         'rnu'           'rnu'

	    |apple          |  1 apple      |  2 apple      |  2 apple
	    |pear           |  2 pear       |  1 pear       |  1 pear
	    |nobody         |  3 nobody     |  0 nobody     |3   nobody
	    |there          |  4 there      |  1 there      |  1 there

						*'numberwidth'* *'nuw'*
'numberwidth' 'nuw'	number	(Vim default: 4  Vi default: 8)
			local to window
			{not in Vi}
			{only available when compiled with the |+linebreak|
			feature}
	Minimal number of columns to use for the line number.  Only relevant
	when the 'number' or 'relativenumber' option is set or printing lines
	with a line number. Since one space is always between the number and
	the text, there is one less character for the number itself.
	The value is the minimum width.  A bigger width is used when needed to
	fit the highest line number in the buffer respectively the number of
	rows in the window, depending on whether 'number' or 'relativenumber'
	is set. Thus with the Vim default of 4 there is room for a line number
	up to 999. When the buffer has 1000 lines five columns will be used.
	The minimum value is 1, the maximum value is 10.
	NOTE: 'numberwidth' is reset to 8 when 'compatible' is set.

						*'omnifunc'* *'ofu'*
'omnifunc' 'ofu'	string	(default: empty)
			local to buffer
			{not in Vi}
			{not available when compiled without the |+eval|
			or |+insert_expand| features}
	This option specifies a function to be used for Insert mode omni
	completion with CTRL-X CTRL-O. |i_CTRL-X_CTRL-O|
	See |complete-functions| for an explanation of how the function is
	invoked and what it should return.
	This option is usually set by a filetype plugin:
	|:filetype-plugin-on|
	This option cannot be set from a |modeline| or in the |sandbox|, for
	security reasons.


			    *'opendevice'* *'odev'* *'noopendevice'* *'noodev'*
'opendevice' 'odev'	boolean	(default off)
			global
			{not in Vi}
			{only for MS-DOS, MS-Windows and OS/2}
	Enable reading and writing from devices.  This may get Vim stuck on a
	device that can be opened but doesn't actually do the I/O.  Therefore
	it is off by default.
	Note that on MS-Windows editing "aux.h", "lpt1.txt" and the like also
	result in editing a device.


						*'operatorfunc'* *'opfunc'*
'operatorfunc' 'opfunc'	string	(default: empty)
			global
			{not in Vi}
	This option specifies a function to be called by the |g@| operator.
	See |:map-operator| for more info and an example.

	This option cannot be set from a |modeline| or in the |sandbox|, for
	security reasons.


					*'osfiletype'* *'oft'*
'osfiletype' 'oft'	string (default: "")
			local to buffer
			{not in Vi}
	This option was supported on RISC OS, which has been removed.


						*'paragraphs'* *'para'*
'paragraphs' 'para'	string	(default "IPLPPPQPP TPHPLIPpLpItpplpipbp")
			global
	Specifies the nroff macros that separate paragraphs.  These are pairs
	of two letters (see |object-motions|).

						*'paste'* *'nopaste'*
'paste'			boolean	(default off)
			global
			{not in Vi}
	Put Vim in Paste mode.  This is useful if you want to cut or copy
	some text from one window and paste it in Vim.  This will avoid
	unexpected effects.
	Setting this option is useful when using Vim in a terminal, where Vim
	cannot distinguish between typed text and pasted text.  In the GUI, Vim
	knows about pasting and will mostly do the right thing without 'paste'
	being set.  The same is true for a terminal where Vim handles the
	mouse clicks itself.
	This option is reset when starting the GUI.  Thus if you set it in
	your .vimrc it will work in a terminal, but not in the GUI.  Setting
	'paste' in the GUI has side effects: e.g., the Paste toolbar button
	will no longer work in Insert mode, because it uses a mapping.
	When the 'paste' option is switched on (also when it was already on):
		- mapping in Insert mode and Command-line mode is disabled
		- abbreviations are disabled
		- 'textwidth' is set to 0
		- 'wrapmargin' is set to 0
		- 'autoindent' is reset
		- 'smartindent' is reset
		- 'softtabstop' is set to 0
		- 'revins' is reset
		- 'ruler' is reset
		- 'showmatch' is reset
		- 'formatoptions' is used like it is empty
	These options keep their value, but their effect is disabled:
		- 'lisp'
		- 'indentexpr'
		- 'cindent'
	NOTE: When you start editing another file while the 'paste' option is
	on, settings from the modelines or autocommands may change the
	settings again, causing trouble when pasting text.  You might want to
	set the 'paste' option again.
	When the 'paste' option is reset the mentioned options are restored to
	the value before the moment 'paste' was switched from off to on.
	Resetting 'paste' before ever setting it does not have any effect.
	Since mapping doesn't work while 'paste' is active, you need to use
	the 'pastetoggle' option to toggle the 'paste' option with some key.

						*'pastetoggle'* *'pt'*
'pastetoggle' 'pt'	string	(default "")
			global
			{not in Vi}
	When non-empty, specifies the key sequence that toggles the 'paste'
	option.  This is like specifying a mapping: >
	    :map {keys} :set invpaste<CR>
<	Where {keys} is the value of 'pastetoggle'.
	The difference is that it will work even when 'paste' is set.
	'pastetoggle' works in Insert mode and Normal mode, but not in
	Command-line mode.
	Mappings are checked first, thus overrule 'pastetoggle'.  However,
	when 'paste' is on mappings are ignored in Insert mode, thus you can do
	this: >
	    :map <F10> :set paste<CR>
	    :map <F11> :set nopaste<CR>
	    :imap <F10> <C-O>:set paste<CR>
	    :imap <F11> <nop>
	    :set pastetoggle=<F11>
<	This will make <F10> start paste mode and <F11> stop paste mode.
	Note that typing <F10> in paste mode inserts "<F10>", since in paste
	mode everything is inserted literally, except the 'pastetoggle' key
	sequence.
	When the value has several bytes 'ttimeoutlen' applies.

						*'pex'* *'patchexpr'*
'patchexpr' 'pex'	string	(default "")
			global
			{not in Vi}
			{not available when compiled without the |+diff|
			feature}
	Expression which is evaluated to apply a patch to a file and generate
	the resulting new version of the file.  See |diff-patchexpr|.

						*'patchmode'* *'pm'* *E206*
'patchmode' 'pm'	string	(default "")
			global
			{not in Vi}
	When non-empty the oldest version of a file is kept.  This can be used
	to keep the original version of a file if you are changing files in a
	source distribution.  Only the first time that a file is written a
	copy of the original file will be kept.  The name of the copy is the
	name of the original file with the string in the 'patchmode' option
	appended.  This option should start with a dot.  Use a string like
	".org".  'backupdir' must not be empty for this to work (Detail: The
	backup file is renamed to the patchmode file after the new file has
	been successfully written, that's why it must be possible to write a
	backup file).  If there was no file to be backed up, an empty file is
	created.
	When the 'backupskip' pattern matches, a patchmode file is not made.
	Using 'patchmode' for compressed files appends the extension at the
	end (e.g., "file.gz.orig"), thus the resulting name isn't always
	recognized as a compressed file.
	Only normal file name characters can be used, "/\*?[|<>" are illegal.

				*'path'* *'pa'* *E343* *E345* *E347* *E854*
'path' 'pa'		string	(default on Unix: ".,/usr/include,,"
				   on OS/2:	  ".,/emx/include,,"
				   other systems: ".,,")
			global or local to buffer |global-local|
			{not in Vi}
	This is a list of directories which will be searched when using the
	|gf|, [f, ]f, ^Wf, |:find|, |:sfind|, |:tabfind| and other commands,
	provided that the file being searched for has a relative path (not
	starting with "/", "./" or "../").  The directories in the 'path'
	option may be relative or absolute.
	- Use commas to separate directory names: >
		:set path=.,/usr/local/include,/usr/include
<	- Spaces can also be used to separate directory names (for backwards
	  compatibility with version 3.0).  To have a space in a directory
	  name, precede it with an extra backslash, and escape the space: >
		:set path=.,/dir/with\\\ space
<	- To include a comma in a directory name precede it with an extra
	  backslash: >
		:set path=.,/dir/with\\,comma
<	- To search relative to the directory of the current file, use: >
		:set path=.
<	- To search in the current directory use an empty string between two
	  commas: >
		:set path=,,
<	- A directory name may end in a ':' or '/'.
	- Environment variables are expanded |:set_env|.
	- When using |netrw.vim| URLs can be used.  For example, adding
	  "http://www.vim.org" will make ":find index.html" work.
	- Search upwards and downwards in a directory tree using "*", "**" and
	  ";".  See |file-searching| for info and syntax.
	  {not available when compiled without the |+path_extra| feature}
	- Careful with '\' characters, type two to get one in the option: >
		:set path=.,c:\\include
<	  Or just use '/' instead: >
		:set path=.,c:/include
<	Don't forget "." or files won't even be found in the same directory as
	the file!
	The maximum length is limited.  How much depends on the system, mostly
	it is something like 256 or 1024 characters.
	You can check if all the include files are found, using the value of
	'path', see |:checkpath|.
	The use of |:set+=| and |:set-=| is preferred when adding or removing
	directories from the list.  This avoids problems when a future version
	uses another default.  To remove the current directory use: >
		:set path-=
<	To add the current directory use: >
		:set path+=
<	To use an environment variable, you probably need to replace the
	separator.  Here is an example to append $INCL, in which directory
	names are separated with a semi-colon: >
		:let &path = &path . "," . substitute($INCL, ';', ',', 'g')
<	Replace the ';' with a ':' or whatever separator is used.  Note that
	this doesn't work when $INCL contains a comma or white space.

			*'preserveindent'* *'pi'* *'nopreserveindent'* *'nopi'*
'preserveindent' 'pi'	boolean	(default off)
			local to buffer
			{not in Vi}
	When changing the indent of the current line, preserve as much of the
	indent structure as possible.  Normally the indent is replaced by a
	series of tabs followed by spaces as required (unless |'expandtab'| is
	enabled, in which case only spaces are used).  Enabling this option
	means the indent will preserve as many existing characters as possible
	for indenting, and only add additional tabs or spaces as required.
	'expandtab' does not apply to the preserved white space, a Tab remains
	a Tab.
	NOTE: When using ">>" multiple times the resulting indent is a mix of
	tabs and spaces.  You might not like this.
	NOTE: 'preserveindent' is reset when 'compatible' is set.
	Also see 'copyindent'.
	Use |:retab| to clean up white space.

					*'previewheight'* *'pvh'*
'previewheight' 'pvh'	number (default 12)
			global
			{not in Vi}
			{not available when compiled without the |+windows| or
			|+quickfix| features}
	Default height for a preview window.  Used for |:ptag| and associated
	commands.  Used for |CTRL-W_}| when no count is given.

					*'previewwindow'* *'nopreviewwindow'*
					*'pvw'* *'nopvw'* *E590*
'previewwindow' 'pvw'	boolean (default off)
			local to window
			{not in Vi}
			{not available when compiled without the |+windows| or
			|+quickfix| features}
	Identifies the preview window.  Only one window can have this option
	set.  It's normally not set directly, but by using one of the commands
	|:ptag|, |:pedit|, etc.

						*'printdevice'* *'pdev'*
'printdevice' 'pdev'	string	(default empty)
			global
			{not in Vi}
			{only available when compiled with the |+printer|
			feature}
	The name of the printer to be used for |:hardcopy|.
	See |pdev-option|.
	This option cannot be set from a |modeline| or in the |sandbox|, for
	security reasons.

						*'printencoding'* *'penc'*
'printencoding' 'penc'	String	(default empty, except for some systems)
			global
			{not in Vi}
			{only available when compiled with the |+printer|
			and |+postscript| features}
	Sets the character encoding used when printing.
	See |penc-option|.

						*'printexpr'* *'pexpr'*
'printexpr' 'pexpr'	String	(default: see below)
			global
			{not in Vi}
			{only available when compiled with the |+printer|
			and |+postscript| features}
	Expression used to print the PostScript produced with |:hardcopy|.
	See |pexpr-option|.

						*'printfont'* *'pfn'*
'printfont' 'pfn'	string	(default "courier")
			global
			{not in Vi}
			{only available when compiled with the |+printer|
			feature}
	The name of the font that will be used for |:hardcopy|.
	See |pfn-option|.

						*'printheader'* *'pheader'*
'printheader' 'pheader'  string  (default "%<%f%h%m%=Page %N")
			global
			{not in Vi}
			{only available when compiled with the |+printer|
			feature}
	The format of the header produced in |:hardcopy| output.
	See |pheader-option|.

						*'printmbcharset'* *'pmbcs'*
'printmbcharset' 'pmbcs'  string (default "")
			global
			{not in Vi}
			{only available when compiled with the |+printer|,
			|+postscript| and |+multi_byte| features}
	The CJK character set to be used for CJK output from |:hardcopy|.
	See |pmbcs-option|.

						*'printmbfont'* *'pmbfn'*
'printmbfont' 'pmbfn'	string (default "")
			global
			{not in Vi}
			{only available when compiled with the |+printer|,
			|+postscript| and |+multi_byte| features}
	List of font names to be used for CJK output from |:hardcopy|.
	See |pmbfn-option|.

						*'printoptions'* *'popt'*
'printoptions' 'popt' string (default "")
			global
			{not in Vi}
			{only available when compiled with |+printer| feature}
	List of items that control the format of the output of |:hardcopy|.
	See |popt-option|.

						*'prompt'* *'noprompt'*
'prompt'		boolean	(default on)
			global
	When on a ":" prompt is used in Ex mode.

						*'pumheight'* *'ph'*
'pumheight' 'ph'	number	(default 0)
			global
			{not available when compiled without the
			|+insert_expand| feature}
			{not in Vi}
	Determines the maximum number of items to show in the popup menu for
	Insert mode completion.  When zero as much space as available is used.
	|ins-completion-menu|.


						*'quoteescape'* *'qe'*
'quoteescape' 'qe'	string	(default "\")
			local to buffer
			{not in Vi}
	The characters that are used to escape quotes in a string.  Used for
	objects like a', a" and a` |a'|.
	When one of the characters in this option is found inside a string,
	the following character will be skipped.  The default value makes the
	text "foo\"bar\\" considered to be one string.

				   *'readonly'* *'ro'* *'noreadonly'* *'noro'*
'readonly' 'ro'		boolean	(default off)
			local to buffer
	If on, writes fail unless you use a '!'.  Protects you from
	accidentally overwriting a file.  Default on when Vim is started
	in read-only mode ("vim -R") or when the executable is called "view".
	When using ":w!" the 'readonly' option is reset for the current
	buffer, unless the 'Z' flag is in 'cpoptions'.
	{not in Vi:}  When using the ":view" command the 'readonly' option is
	set for the newly edited buffer.

						*'redrawtime'* *'rdt'*
'redrawtime' 'rdt'	number	(default 2000)
			global
			{not in Vi}
			{only available when compiled with the |+reltime|
			feature}
	The time in milliseconds for redrawing the display.  This applies to
	searching for patterns for 'hlsearch' and |:match| highlighting.
	When redrawing takes more than this many milliseconds no further
	matches will be highlighted.  This is used to avoid that Vim hangs
	when using a very complicated pattern.

						*'regexpengine'* *'re'*
'regexpengine' 're'	number	(default 0)
			global
			{not in Vi}
	This selects the default regexp engine. |two-engines|
	The possible values are:
		0	automatic selection
		1	old engine
		2	NFA engine
	Note that when using the NFA engine and the pattern contains something
	that is not supported the pattern will not match.  This is only useful
	for debugging the regexp engine.

		*'relativenumber'* *'rnu'* *'norelativenumber'* *'nornu'*
'relativenumber' 'rnu'	boolean	(default off)
			local to window
			{not in Vi}
	Show the line number relative to the line with the cursor in front of
	each line. Relative line numbers help you use the |count| you can
	precede some vertical motion commands (e.g. j k + -) with, without
	having to calculate it yourself. Especially useful in combination with
	other commands (e.g. y d c < > gq gw =).
	When the 'n' option is excluded from 'cpoptions' a wrapped
	line will not use the column of line numbers (this is the default when
	'compatible' isn't set).
	The 'numberwidth' option can be used to set the room used for the line
	number.
	When a long, wrapped line doesn't start with the first character, '-'
	characters are put before the number.
	See |hl-LineNr|  and |hl-CursorLineNr| for the highlighting used for
	the number.
	
	The number in front of the cursor line also depends on the value of
	'number', see |number_relativenumber| for all combinations of the two
	options.

						*'remap'* *'noremap'*
'remap'			boolean	(default on)
			global
	Allows for mappings to work recursively.  If you do not want this for
	a single entry, use the :noremap[!] command.
	NOTE: To avoid portability problems with Vim scripts, always keep
	this option at the default "on".  Only switch it off when working with
	old Vi scripts.

						*'report'*
'report'		number	(default 2)
			global
	Threshold for reporting number of lines changed.  When the number of
	changed lines is more than 'report' a message will be given for most
	":" commands.  If you want it always, set 'report' to 0.
	For the ":substitute" command the number of substitutions is used
	instead of the number of lines.

			 *'restorescreen'* *'rs'* *'norestorescreen'* *'nors'*
'restorescreen' 'rs'	boolean	(default on)
			global
			{not in Vi}  {only in Windows 95/NT console version}
	When set, the screen contents is restored when exiting Vim.  This also
	happens when executing external commands.

	For non-Windows Vim: You can set or reset the 't_ti' and 't_te'
	options in your .vimrc.  To disable restoring:
		set t_ti= t_te=
	To enable restoring (for an xterm):
		set t_ti=^[7^[[r^[[?47h t_te=^[[?47l^[8
	(Where ^[ is an <Esc>, type CTRL-V <Esc> to insert it)

				*'revins'* *'ri'* *'norevins'* *'nori'*
'revins' 'ri'		boolean	(default off)
			global
			{not in Vi}
			{only available when compiled with the |+rightleft|
			feature}
	Inserting characters in Insert mode will work backwards.  See "typing
	backwards" |ins-reverse|.  This option can be toggled with the CTRL-_
	command in Insert mode, when 'allowrevins' is set.
	NOTE: This option is reset when 'compatible' or 'paste' is set.

				 *'rightleft'* *'rl'* *'norightleft'* *'norl'*
'rightleft' 'rl'	boolean	(default off)
			local to window
			{not in Vi}
			{only available when compiled with the |+rightleft|
			feature}
	When on, display orientation becomes right-to-left, i.e., characters
	that are stored in the file appear from the right to the left.
	Using this option, it is possible to edit files for languages that
	are written from the right to the left such as Hebrew and Arabic.
	This option is per window, so it is possible to edit mixed files
	simultaneously, or to view the same file in both ways (this is
	useful whenever you have a mixed text file with both right-to-left
	and left-to-right strings so that both sets are displayed properly
	in different windows).  Also see |rileft.txt|.

			*'rightleftcmd'* *'rlc'*
'rightleftcmd' 'rlc'	string	(default "search")
			local to window
			{not in Vi}
			{only available when compiled with the |+rightleft|
			feature}
	Each word in this option enables the command line editing to work in
	right-to-left mode for a group of commands:

		search		"/" and "?" commands

	This is useful for languages such as Hebrew, Arabic and Farsi.
	The 'rightleft' option must be set for 'rightleftcmd' to take effect.

					 *'ruler'* *'ru'* *'noruler'* *'noru'*
'ruler' 'ru'		boolean	(default off)
			global
			{not in Vi}
			{not available when compiled without the
			|+cmdline_info| feature}
	Show the line and column number of the cursor position, separated by a
	comma.  When there is room, the relative position of the displayed
	text in the file is shown on the far right:
		Top	first line is visible
		Bot	last line is visible
		All	first and last line are visible
		45%	relative position in the file
	If 'rulerformat' is set, it will determine the contents of the ruler.
	Each window has its own ruler.  If a window has a status line, the
	ruler is shown there.  Otherwise it is shown in the last line of the
	screen.  If the statusline is given by 'statusline' (i.e. not empty),
	this option takes precedence over 'ruler' and 'rulerformat'
	If the number of characters displayed is different from the number of
	bytes in the text (e.g., for a TAB or a multi-byte character), both
	the text column (byte number) and the screen column are shown,
	separated with a dash.
	For an empty line "0-1" is shown.
	For an empty buffer the line number will also be zero: "0,0-1".
	This option is reset when the 'paste' option is set.
	If you don't want to see the ruler all the time but want to know where
	you are, use "g CTRL-G" |g_CTRL-G|.
	NOTE: This option is reset when 'compatible' is set.

						*'rulerformat'* *'ruf'*
'rulerformat' 'ruf'	string	(default empty)
			global
			{not in Vi}
			{not available when compiled without the |+statusline|
			feature}
	When this option is not empty, it determines the content of the ruler
	string, as displayed for the 'ruler' option.
	The format of this option is like that of 'statusline'.
	The default ruler width is 17 characters.  To make the ruler 15
	characters wide, put "%15(" at the start and "%)" at the end.
	Example: >
		:set rulerformat=%15(%c%V\ %p%%%)
<
				*'runtimepath'* *'rtp'* *vimfiles*
'runtimepath' 'rtp'	string	(default:
					Unix: "$HOME/.vim,
						$VIM/vimfiles,
						$VIMRUNTIME,
						$VIM/vimfiles/after,
						$HOME/.vim/after"
					Amiga: "home:vimfiles,
						$VIM/vimfiles,
						$VIMRUNTIME,
						$VIM/vimfiles/after,
						home:vimfiles/after"
					PC, OS/2: "$HOME/vimfiles,
						$VIM/vimfiles,
						$VIMRUNTIME,
						$VIM/vimfiles/after,
						$HOME/vimfiles/after"
					Macintosh: "$VIM:vimfiles,
						$VIMRUNTIME,
						$VIM:vimfiles:after"
					RISC-OS: "Choices:vimfiles,
						$VIMRUNTIME,
						Choices:vimfiles/after"
					VMS: "sys$login:vimfiles,
						$VIM/vimfiles,
						$VIMRUNTIME,
						$VIM/vimfiles/after,
						sys$login:vimfiles/after")
			global
			{not in Vi}
	This is a list of directories which will be searched for runtime
	files:
	  filetype.vim	filetypes by file name |new-filetype|
	  scripts.vim	filetypes by file contents |new-filetype-scripts|
	  autoload/	automatically loaded scripts |autoload-functions|
	  colors/	color scheme files |:colorscheme|
	  compiler/	compiler files |:compiler|
	  doc/		documentation |write-local-help|
	  ftplugin/	filetype plugins |write-filetype-plugin|
	  indent/	indent scripts |indent-expression|
	  keymap/	key mapping files |mbyte-keymap|
	  lang/		menu translations |:menutrans|
	  menu.vim	GUI menus |menu.vim|
	  plugin/	plugin scripts |write-plugin|
	  print/	files for printing |postscript-print-encoding|
	  spell/	spell checking files |spell|
	  syntax/	syntax files |mysyntaxfile|
	  tutor/	files for vimtutor |tutor|

	And any other file searched for with the |:runtime| command.

	The defaults for most systems are setup to search five locations:
	1. In your home directory, for your personal preferences.
	2. In a system-wide Vim directory, for preferences from the system
	   administrator.
	3. In $VIMRUNTIME, for files distributed with Vim.
							*after-directory*
	4. In the "after" directory in the system-wide Vim directory.  This is
	   for the system administrator to overrule or add to the distributed
	   defaults (rarely needed)
	5. In the "after" directory in your home directory.  This is for
	   personal preferences to overrule or add to the distributed defaults
	   or system-wide settings (rarely needed).

	Note that, unlike 'path', no wildcards like "**" are allowed.  Normal
	wildcards are allowed, but can significantly slow down searching for
	runtime files.  For speed, use as few items as possible and avoid
	wildcards.
	See |:runtime|.
	Example: >
		:set runtimepath=~/vimruntime,/mygroup/vim,$VIMRUNTIME
<	This will use the directory "~/vimruntime" first (containing your
	personal Vim runtime files), then "/mygroup/vim" (shared between a
	group of people) and finally "$VIMRUNTIME" (the distributed runtime
	files).
	You probably should always include $VIMRUNTIME somewhere, to use the
	distributed runtime files.  You can put a directory before $VIMRUNTIME
	to find files which replace a distributed runtime files.  You can put
	a directory after $VIMRUNTIME to find files which add to distributed
	runtime files.
	This option cannot be set from a |modeline| or in the |sandbox|, for
	security reasons.

						*'scroll'* *'scr'*
'scroll' 'scr'		number	(default: half the window height)
			local to window
	Number of lines to scroll with CTRL-U and CTRL-D commands.  Will be
	set to half the number of lines in the window when the window size
	changes.  If you give a count to the CTRL-U or CTRL-D command it will
	be used as the new value for 'scroll'.  Reset to half the window
	height with ":set scroll=0".   {Vi is a bit different: 'scroll' gives
	the number of screen lines instead of file lines, makes a difference
	when lines wrap}

			*'scrollbind'* *'scb'* *'noscrollbind'* *'noscb'*
'scrollbind' 'scb'	boolean  (default off)
			local to window
			{not in Vi}
			{not available when compiled without the |+scrollbind|
			feature}
	See also |scroll-binding|.  When this option is set, the current
	window scrolls as other scrollbind windows (windows that also have
	this option set) scroll.  This option is useful for viewing the
	differences between two versions of a file, see 'diff'.
	See |'scrollopt'| for options that determine how this option should be
	interpreted.
	This option is mostly reset when splitting a window to edit another
	file.  This means that ":split | edit file" results in two windows
	with scroll-binding, but ":split file" does not.

						*'scrolljump'* *'sj'*
'scrolljump' 'sj'	number	(default 1)
			global
			{not in Vi}
	Minimal number of lines to scroll when the cursor gets off the
	screen (e.g., with "j").  Not used for scroll commands (e.g., CTRL-E,
	CTRL-D).  Useful if your terminal scrolls very slowly.
	When set to a negative number from -1 to -100 this is used as the
	percentage of the window height.  Thus -50 scrolls half the window
	height.
	NOTE: This option is set to 1 when 'compatible' is set.

						*'scrolloff'* *'so'*
'scrolloff' 'so'	number	(default 0)
			global
			{not in Vi}
	Minimal number of screen lines to keep above and below the cursor.
	This will make some context visible around where you are working.  If
	you set it to a very large value (999) the cursor line will always be
	in the middle of the window (except at the start or end of the file or
	when long lines wrap).
	For scrolling horizontally see 'sidescrolloff'.
	NOTE: This option is set to 0 when 'compatible' is set.

						*'scrollopt'* *'sbo'*
'scrollopt' 'sbo'	string	(default "ver,jump")
			global
			{not available when compiled without the |+scrollbind|
			feature}
			{not in Vi}
	This is a comma-separated list of words that specifies how
	'scrollbind' windows should behave.  'sbo' stands for ScrollBind
	Options.
	The following words are available:
	    ver		Bind vertical scrolling for 'scrollbind' windows
	    hor		Bind horizontal scrolling for 'scrollbind' windows
	    jump	Applies to the offset between two windows for vertical
			scrolling.  This offset is the difference in the first
			displayed line of the bound windows.  When moving
			around in a window, another 'scrollbind' window may
			reach a position before the start or after the end of
			the buffer.  The offset is not changed though, when
			moving back the 'scrollbind' window will try to scroll
			to the desired position when possible.
			When now making that window the current one, two
			things can be done with the relative offset:
			1. When "jump" is not included, the relative offset is
			   adjusted for the scroll position in the new current
			   window.  When going back to the other window, the
			   new relative offset will be used.
			2. When "jump" is included, the other windows are
			   scrolled to keep the same relative offset.  When
			   going back to the other window, it still uses the
			   same relative offset.
	Also see |scroll-binding|.
	When 'diff' mode is active there always is vertical scroll binding,
	even when "ver" isn't there.

						*'sections'* *'sect'*
'sections' 'sect'	string	(default "SHNHH HUnhsh")
			global
	Specifies the nroff macros that separate sections.  These are pairs of
	two letters (See |object-motions|).  The default makes a section start
	at the nroff macros ".SH", ".NH", ".H", ".HU", ".nh" and ".sh".

						*'secure'* *'nosecure'* *E523*
'secure'		boolean	(default off)
			global
			{not in Vi}
	When on, ":autocmd", shell and write commands are not allowed in
	".vimrc" and ".exrc" in the current directory and map commands are
	displayed.  Switch it off only if you know that you will not run into
	problems, or when the 'exrc' option is off.  On Unix this option is
	only used if the ".vimrc" or ".exrc" is not owned by you.  This can be
	dangerous if the systems allows users to do a "chown".  You better set
	'secure' at the end of your ~/.vimrc then.
	This option cannot be set from a |modeline| or in the |sandbox|, for
	security reasons.

						*'selection'* *'sel'*
'selection' 'sel'	string	(default "inclusive")
			global
			{not in Vi}
	This option defines the behavior of the selection.  It is only used
	in Visual and Select mode.
	Possible values:
	   value	past line     inclusive ~
	   old		   no		yes
	   inclusive	   yes		yes
	   exclusive	   yes		no
	"past line" means that the cursor is allowed to be positioned one
	character past the line.
	"inclusive" means that the last character of the selection is included
	in an operation.  For example, when "x" is used to delete the
	selection.
	Note that when "exclusive" is used and selecting from the end
	backwards, you cannot include the last character of a line, when
	starting in Normal mode and 'virtualedit' empty.

	The 'selection' option is set by the |:behave| command.

						*'selectmode'* *'slm'*
'selectmode' 'slm'	string	(default "")
			global
			{not in Vi}
	This is a comma separated list of words, which specifies when to start
	Select mode instead of Visual mode, when a selection is started.
	Possible values:
	   mouse	when using the mouse
	   key		when using shifted special keys
	   cmd		when using "v", "V" or CTRL-V
	See |Select-mode|.
	The 'selectmode' option is set by the |:behave| command.

						*'sessionoptions'* *'ssop'*
'sessionoptions' 'ssop'	string	(default: "blank,buffers,curdir,folds,
					       help,options,tabpages,winsize")
			global
			{not in Vi}
			{not available when compiled without the |+mksession|
			feature}
	Changes the effect of the |:mksession| command.  It is a comma
	separated list of words.  Each word enables saving and restoring
	something:
	   word		save and restore ~
	   blank	empty windows
	   buffers	hidden and unloaded buffers, not just those in windows
	   curdir	the current directory
	   folds	manually created folds, opened/closed folds and local
			fold options
	   globals	global variables that start with an uppercase letter
			and contain at least one lowercase letter.  Only
			String and Number types are stored.
	   help		the help window
	   localoptions	options and mappings local to a window or buffer (not
			global values for local options)
	   options	all options and mappings (also global values for local
			options)
	   resize	size of the Vim window: 'lines' and 'columns'
	   sesdir	the directory in which the session file is located
			will become the current directory (useful with
			projects accessed over a network from different
			systems)
	   slash	backslashes in file names replaced with forward
			slashes
	   tabpages	all tab pages; without this only the current tab page
			is restored, so that you can make a session for each
			tab page separately
	   unix		with Unix end-of-line format (single <NL>), even when
			on Windows or DOS
	   winpos	position of the whole Vim window
	   winsize	window sizes

	Don't include both "curdir" and "sesdir".
	When neither "curdir" nor "sesdir" is included, file names are stored
	with absolute paths.
	"slash" and "unix" are useful on Windows when sharing session files
	with Unix.  The Unix version of Vim cannot source dos format scripts,
	but the Windows version of Vim can source unix format scripts.

						*'shell'* *'sh'* *E91*
'shell' 'sh'		string	(default $SHELL or "sh",
					MS-DOS and Win32: "command.com" or
					"cmd.exe", OS/2: "cmd")
			global
	Name of the shell to use for ! and :! commands.  When changing the
	value also check these options: 'shelltype', 'shellpipe', 'shellslash'
	'shellredir', 'shellquote', 'shellxquote' and 'shellcmdflag'.
	It is allowed to give an argument to the command, e.g.  "csh -f".
	See |option-backslash| about including spaces and backslashes.
	Environment variables are expanded |:set_env|.
	If the name of the shell contains a space, you might need to enclose
	it in quotes.  Example: >
		:set shell=\"c:\program\ files\unix\sh.exe\"\ -f
<	Note the backslash before each quote (to avoid starting a comment) and
	each space (to avoid ending the option value).  Also note that the
	"-f" is not inside the quotes, because it is not part of the command
	name.  And Vim automagically recognizes the backslashes that are path
	separators.
	For Dos 32 bits (DJGPP), you can set the $DJSYSFLAGS environment
	variable to change the way external commands are executed.  See the
	libc.inf file of DJGPP.
	Under MS-Windows, when the executable ends in ".com" it must be
	included.  Thus setting the shell to "command.com" or "4dos.com"
	works, but "command" and "4dos" do not work for all commands (e.g.,
	filtering).
	For unknown reasons, when using "4dos.com" the current directory is
	changed to "C:\".  To avoid this set 'shell' like this: >
		:set shell=command.com\ /c\ 4dos
<	This option cannot be set from a |modeline| or in the |sandbox|, for
	security reasons.

						*'shellcmdflag'* *'shcf'*
'shellcmdflag' 'shcf'	string	(default: "-c";
				 MS-DOS and Win32, when 'shell' does not
				 contain "sh" somewhere: "/c")
			global
			{not in Vi}
	Flag passed to the shell to execute "!" and ":!" commands; e.g.,
	"bash.exe -c ls" or "command.com /c dir".  For the MS-DOS-like
	systems, the default is set according to the value of 'shell', to
	reduce the need to set this option by the user.  It's not used for
	OS/2 (EMX figures this out itself).
	On Unix it can have more than one flag.  Each white space separated
	part is passed as an argument to the shell command.
	See |option-backslash| about including spaces and backslashes.
	Also see |dos-shell| for MS-DOS and MS-Windows.
	This option cannot be set from a |modeline| or in the |sandbox|, for
	security reasons.

						*'shellpipe'* *'sp'*
'shellpipe' 'sp'	string	(default ">", "| tee", "|& tee" or "2>&1| tee")
			global
			{not in Vi}
			{not available when compiled without the |+quickfix|
			feature}
	String to be used to put the output of the ":make" command in the
	error file.  See also |:make_makeprg|.  See |option-backslash| about
	including spaces and backslashes.
	The name of the temporary file can be represented by "%s" if necessary
	(the file name is appended automatically if no %s appears in the value
	of this option).
	For the Amiga and MS-DOS the default is ">".  The output is directly
	saved in a file and not echoed to the screen.
	For Unix the default it "| tee".  The stdout of the compiler is saved
	in a file and echoed to the screen.  If the 'shell' option is "csh" or
	"tcsh" after initializations, the default becomes "|& tee".  If the
	'shell' option is "sh", "ksh", "mksh", "pdksh", "zsh" or "bash" the
	default becomes "2>&1| tee".  This means that stderr is also included.
	Before using the 'shell' option a path is removed, thus "/bin/sh" uses
	"sh".
	The initialization of this option is done after reading the ".vimrc"
	and the other initializations, so that when the 'shell' option is set
	there, the 'shellpipe' option changes automatically, unless it was
	explicitly set before.
	When 'shellpipe' is set to an empty string, no redirection of the
	":make" output will be done.  This is useful if you use a 'makeprg'
	that writes to 'makeef' by itself.  If you want no piping, but do
	want to include the 'makeef', set 'shellpipe' to a single space.
	Don't forget to precede the space with a backslash: ":set sp=\ ".
	In the future pipes may be used for filtering and this option will
	become obsolete (at least for Unix).
	This option cannot be set from a |modeline| or in the |sandbox|, for
	security reasons.

						*'shellquote'* *'shq'*
'shellquote' 'shq'	string	(default: ""; MS-DOS and Win32, when 'shell'
					contains "sh" somewhere: "\"")
			global
			{not in Vi}
	Quoting character(s), put around the command passed to the shell, for
	the "!" and ":!" commands.  The redirection is kept outside of the
	quoting.  See 'shellxquote' to include the redirection.  It's
	probably not useful to set both options.
	This is an empty string by default.  Only known to be useful for
	third-party shells on MS-DOS-like systems, such as the MKS Korn Shell
	or bash, where it should be "\"".  The default is adjusted according
	the value of 'shell', to reduce the need to set this option by the
	user.  See |dos-shell|.
	This option cannot be set from a |modeline| or in the |sandbox|, for
	security reasons.

						*'shellredir'* *'srr'*
'shellredir' 'srr'	string	(default ">", ">&" or ">%s 2>&1")
			global
			{not in Vi}
	String to be used to put the output of a filter command in a temporary
	file.  See also |:!|.  See |option-backslash| about including spaces
	and backslashes.
	The name of the temporary file can be represented by "%s" if necessary
	(the file name is appended automatically if no %s appears in the value
	of this option).
	The default is ">".  For Unix, if the 'shell' option is "csh", "tcsh"
	or "zsh" during initializations, the default becomes ">&".  If the
	'shell' option is "sh", "ksh" or "bash" the default becomes
	">%s 2>&1".  This means that stderr is also included.
	For Win32, the Unix checks are done and additionally "cmd" is checked
	for, which makes the default ">%s 2>&1".  Also, the same names with
	".exe" appended are checked for.
	The initialization of this option is done after reading the ".vimrc"
	and the other initializations, so that when the 'shell' option is set
	there, the 'shellredir' option changes automatically unless it was
	explicitly set before.
	In the future pipes may be used for filtering and this option will
	become obsolete (at least for Unix).
	This option cannot be set from a |modeline| or in the |sandbox|, for
	security reasons.

			*'shellslash'* *'ssl'* *'noshellslash'* *'nossl'*
'shellslash' 'ssl'	boolean	(default off)
			global
			{not in Vi} {only for MSDOS, MS-Windows and OS/2}
	When set, a forward slash is used when expanding file names.  This is
	useful when a Unix-like shell is used instead of command.com or
	cmd.exe.  Backward slashes can still be typed, but they are changed to
	forward slashes by Vim.
	Note that setting or resetting this option has no effect for some
	existing file names, thus this option needs to be set before opening
	any file for best results.  This might change in the future.
	'shellslash' only works when a backslash can be used as a path
	separator.  To test if this is so use: >
		if exists('+shellslash')
<
			*'shelltemp'* *'stmp'* *'noshelltemp'* *'nostmp'*
'shelltemp' 'stmp'	boolean	(Vi default off, Vim default on)
			global
			{not in Vi}
	When on, use temp files for shell commands.  When off use a pipe.
	When using a pipe is not possible temp files are used anyway.
	Currently a pipe is only supported on Unix and MS-Windows 2K and
	later.  You can check it with: >
		:if has("filterpipe")
<	The advantage of using a pipe is that nobody can read the temp file
	and the 'shell' command does not need to support redirection.
	The advantage of using a temp file is that the file type and encoding
	can be detected.
	The |FilterReadPre|, |FilterReadPost| and |FilterWritePre|,
	|FilterWritePost| autocommands event are not triggered when
	'shelltemp' is off.

						*'shelltype'* *'st'*
'shelltype' 'st'	number	(default 0)
			global
			{not in Vi} {only for the Amiga}
	On the Amiga this option influences the way how the commands work
	which use a shell.
	0 and 1: always use the shell
	2 and 3: use the shell only to filter lines
	4 and 5: use shell only for ':sh' command
	When not using the shell, the command is executed directly.

	0 and 2: use "shell 'shellcmdflag' cmd" to start external commands
	1 and 3: use "shell cmd" to start external commands

						*'shellxescape'* *'sxe'*
'shellxescape' 'sxe'	string	(default: "";
				 for MS-DOS and MS-Windows: "\"&|<>()@^")
			global
			{not in Vi}
	When 'shellxquote' is set to "(" then the characters listed in this
	option will be escaped with a '^' character.  This makes it possible
	to execute most external commands with cmd.exe.

						*'shellxquote'* *'sxq'*
'shellxquote' 'sxq'	string	(default: "";
					for Win32, when 'shell' is cmd.exe: "("
					for Win32, when 'shell' contains "sh"
					somewhere: "\""
					for Unix, when using system(): "\"")
			global
			{not in Vi}
	Quoting character(s), put around the command passed to the shell, for
	the "!" and ":!" commands.  Includes the redirection.  See
	'shellquote' to exclude the redirection.  It's probably not useful
	to set both options.
	When the value is '(' then ')' is appended. When the value is '"('
	then ')"' is appended.
	When the value is '(' then also see 'shellxescape'.
	This is an empty string by default on most systems, but is known to be
	useful for on Win32 version, either for cmd.exe which automatically
	strips off the first and last quote on a command, or 3rd-party shells
	such as the MKS Korn Shell or bash, where it should be "\"".  The
	default is adjusted according the value of 'shell', to reduce the need
	to set this option by the user.  See |dos-shell|.
	This option cannot be set from a |modeline| or in the |sandbox|, for
	security reasons.

			*'shiftround'* *'sr'* *'noshiftround'* *'nosr'*
'shiftround' 'sr'	boolean	(default off)
			global
			{not in Vi}
	Round indent to multiple of 'shiftwidth'.  Applies to > and <
	commands.  CTRL-T and CTRL-D in Insert mode always round the indent to
	a multiple of 'shiftwidth' (this is Vi compatible).
	NOTE: This option is reset when 'compatible' is set.

						*'shiftwidth'* *'sw'*
'shiftwidth' 'sw'	number	(default 8)
			local to buffer
	Number of spaces to use for each step of (auto)indent.  Used for
	|'cindent'|, |>>|, |<<|, etc.
	When zero the 'ts' value will be used.  Use the |shiftwidth()|
	function to get the effective shiftwidth value.

						*'shortmess'* *'shm'*
'shortmess' 'shm'	string	(Vim default "filnxtToO", Vi default: "",
							POSIX default: "A")
			global
			{not in Vi}
	This option helps to avoid all the |hit-enter| prompts caused by file
	messages, for example  with CTRL-G, and to avoid some other messages.
	It is a list of flags:
	 flag	meaning when present	~
	  f	use "(3 of 5)" instead of "(file 3 of 5)"
	  i	use "[noeol]" instead of "[Incomplete last line]"
	  l	use "999L, 888C" instead of "999 lines, 888 characters"
	  m	use "[+]" instead of "[Modified]"
	  n	use "[New]" instead of "[New File]"
	  r	use "[RO]" instead of "[readonly]"
	  w	use "[w]" instead of "written" for file write message
		and "[a]" instead of "appended" for ':w >> file' command
	  x	use "[dos]" instead of "[dos format]", "[unix]" instead of
		"[unix format]" and "[mac]" instead of "[mac format]".
	  a	all of the above abbreviations

	  o	overwrite message for writing a file with subsequent message
		for reading a file (useful for ":wn" or when 'autowrite' on)
	  O	message for reading a file overwrites any previous message.
		Also for quickfix message (e.g., ":cn").
	  s	don't give "search hit BOTTOM, continuing at TOP" or "search
		hit TOP, continuing at BOTTOM" messages
	  t	truncate file message at the start if it is too long to fit
		on the command-line, "<" will appear in the left most column.
		Ignored in Ex mode.
	  T	truncate other messages in the middle if they are too long to
		fit on the command line.  "..." will appear in the middle.
		Ignored in Ex mode.
	  W	don't give "written" or "[w]" when writing a file
	  A	don't give the "ATTENTION" message when an existing swap file
		is found.
	  I	don't give the intro message when starting Vim |:intro|.
	  c	don't give |ins-completion-menu| messages.  For example,
		"-- XXX completion (YYY)", "match 1 of 2", "The only match",
		"Pattern not found", "Back at original", etc.

	This gives you the opportunity to avoid that a change between buffers
	requires you to hit <Enter>, but still gives as useful a message as
	possible for the space available.  To get the whole message that you
	would have got with 'shm' empty, use ":file!"
	Useful values:
	    shm=	No abbreviation of message.
	    shm=a	Abbreviation, but no loss of information.
	    shm=at	Abbreviation, and truncate message when necessary.

	NOTE: This option is set to the Vi default value when 'compatible' is
	set and to the Vim default value when 'compatible' is reset.

				 *'shortname'* *'sn'* *'noshortname'* *'nosn'*
'shortname' 'sn'	boolean	(default off)
			local to buffer
			{not in Vi, not in MS-DOS versions}
	Filenames are assumed to be 8 characters plus one extension of 3
	characters.  Multiple dots in file names are not allowed.  When this
	option is on, dots in file names are replaced with underscores when
	adding an extension (".~" or ".swp").  This option is not available
	for MS-DOS, because then it would always be on.  This option is useful
	when editing files on an MS-DOS compatible filesystem, e.g., messydos
	or crossdos.  When running the Win32 GUI version under Win32s, this
	option is always on by default.

						*'showbreak'* *'sbr'* *E595*
'showbreak' 'sbr'	string	(default "")
			global
			{not in Vi}
			{not available when compiled without the |+linebreak|
			feature}
	String to put at the start of lines that have been wrapped.  Useful
	values are "> " or "+++ ": >
		:set showbreak=>\ 
<	Note the backslash to escape the trailing space.  It's easier like
	this: >
		:let &showbreak = '+++ '
<	Only printable single-cell characters are allowed, excluding <Tab> and
	comma (in a future version the comma might be used to separate the
	part that is shown at the end and at the start of a line).
	The characters are highlighted according to the '@' flag in
	'highlight'.
	Note that tabs after the showbreak will be displayed differently.
	If you want the 'showbreak' to appear in between line numbers, add the
	"n" flag to 'cpoptions'.

				     *'showcmd'* *'sc'* *'noshowcmd'* *'nosc'*
'showcmd' 'sc'		boolean	(Vim default: on, off for Unix, Vi default:
				 off)
			global
			{not in Vi}
			{not available when compiled without the
			|+cmdline_info| feature}
	Show (partial) command in the last line of the screen.  Set this
	option off if your terminal is slow.
	In Visual mode the size of the selected area is shown:
	- When selecting characters within a line, the number of characters.
	  If the number of bytes is different it is also displayed: "2-6"
	  means two characters and six bytes.
	- When selecting more than one line, the number of lines.
	- When selecting a block, the size in screen characters:
	  {lines}x{columns}.
	NOTE: This option is set to the Vi default value when 'compatible' is
	set and to the Vim default value when 'compatible' is reset.

			*'showfulltag'* *'sft'* *'noshowfulltag'* *'nosft'*
'showfulltag' 'sft'	boolean (default off)
			global
			{not in Vi}
	When completing a word in insert mode (see |ins-completion|) from the
	tags file, show both the tag name and a tidied-up form of the search
	pattern (if there is one) as possible matches.  Thus, if you have
	matched a C function, you can see a template for what arguments are
	required (coding style permitting).
	Note that this doesn't work well together with having "longest" in
	'completeopt', because the completion from the search pattern may not
	match the typed text.

				 *'showmatch'* *'sm'* *'noshowmatch'* *'nosm'*
'showmatch' 'sm'	boolean	(default off)
			global
	When a bracket is inserted, briefly jump to the matching one.  The
	jump is only done if the match can be seen on the screen.  The time to
	show the match can be set with 'matchtime'.
	A Beep is given if there is no match (no matter if the match can be
	seen or not).  This option is reset when the 'paste' option is set.
	When the 'm' flag is not included in 'cpoptions', typing a character
	will immediately move the cursor back to where it belongs.
	See the "sm" field in 'guicursor' for setting the cursor shape and
	blinking when showing the match.
	The 'matchpairs' option can be used to specify the characters to show
	matches for.  'rightleft' and 'revins' are used to look for opposite
	matches.
	Also see the matchparen plugin for highlighting the match when moving
	around |pi_paren.txt|.
	Note: Use of the short form is rated PG.

				 *'showmode'* *'smd'* *'noshowmode'* *'nosmd'*
'showmode' 'smd'	boolean	(Vim default: on, Vi default: off)
			global
	If in Insert, Replace or Visual mode put a message on the last line.
	Use the 'M' flag in 'highlight' to set the type of highlighting for
	this message.
	When |XIM| may be used the message will include "XIM".  But this
	doesn't mean XIM is really active, especially when 'imactivatekey' is
	not set.
	NOTE: This option is set to the Vi default value when 'compatible' is
	set and to the Vim default value when 'compatible' is reset.

						*'showtabline'* *'stal'*
'showtabline' 'stal'	number	(default 1)
			global
			{not in Vi}
			{not available when compiled without the |+windows|
			feature}
	The value of this option specifies when the line with tab page labels
	will be displayed:
		0: never
		1: only if there are at least two tab pages
		2: always
	This is both for the GUI and non-GUI implementation of the tab pages
	line.
	See |tab-page| for more information about tab pages.

						*'sidescroll'* *'ss'*
'sidescroll' 'ss'	number	(default 0)
			global
			{not in Vi}
	The minimal number of columns to scroll horizontally.  Used only when
	the 'wrap' option is off and the cursor is moved off of the screen.
	When it is zero the cursor will be put in the middle of the screen.
	When using a slow terminal set it to a large number or 0.  When using
	a fast terminal use a small number or 1.  Not used for "zh" and "zl"
	commands.

						*'sidescrolloff'* *'siso'*
'sidescrolloff' 'siso'	number (default 0)
			global
			{not in Vi}
	The minimal number of screen columns to keep to the left and to the
	right of the cursor if 'nowrap' is set.  Setting this option to a
	value greater than 0 while having |'sidescroll'| also at a non-zero
	value makes some context visible in the line you are scrolling in
	horizontally (except at beginning of the line).  Setting this option
	to a large value (like 999) has the effect of keeping the cursor
	horizontally centered in the window, as long as one does not come too
	close to the beginning of the line.
	NOTE: This option is set to 0 when 'compatible' is set.

	Example: Try this together with 'sidescroll' and 'listchars' as
		 in the following example to never allow the cursor to move
		 onto the "extends" character:

		 :set nowrap sidescroll=1 listchars=extends:>,precedes:<
		 :set sidescrolloff=1


			*'smartcase'* *'scs'* *'nosmartcase'* *'noscs'*
'smartcase' 'scs'	boolean	(default off)
			global
			{not in Vi}
	Override the 'ignorecase' option if the search pattern contains upper
	case characters.  Only used when the search pattern is typed and
	'ignorecase' option is on.  Used for the commands "/", "?", "n", "N",
	":g" and ":s".  Not used for "*", "#", "gd", tag search, etc.  After
	"*" and "#" you can make 'smartcase' used by doing a "/" command,
	recalling the search pattern from history and hitting <Enter>.
	NOTE: This option is reset when 'compatible' is set.

			     *'smartindent'* *'si'* *'nosmartindent'* *'nosi'*
'smartindent' 'si'	boolean	(default off)
			local to buffer
			{not in Vi}
			{not available when compiled without the
			|+smartindent| feature}
	Do smart autoindenting when starting a new line.  Works for C-like
	programs, but can also be used for other languages.  'cindent' does
	something like this, works better in most cases, but is more strict,
	see |C-indenting|.  When 'cindent' is on or 'indentexpr' is set,
	setting 'si' has no effect.  'indentexpr' is a more advanced
	alternative.
	Normally 'autoindent' should also be on when using 'smartindent'.
	An indent is automatically inserted:
	- After a line ending in '{'.
	- After a line starting with a keyword from 'cinwords'.
	- Before a line starting with '}' (only with the "O" command).
	When typing '}' as the first character in a new line, that line is
	given the same indent as the matching '{'.
	When typing '#' as the first character in a new line, the indent for
	that line is removed, the '#' is put in the first column.  The indent
	is restored for the next line.  If you don't want this, use this
	mapping: ":inoremap # X^H#", where ^H is entered with CTRL-V CTRL-H.
	When using the ">>" command, lines starting with '#' are not shifted
	right.
	NOTE: 'smartindent' is reset when 'compatible' is set.  When 'paste'
	is set smart indenting is disabled.

				 *'smarttab'* *'sta'* *'nosmarttab'* *'nosta'*
'smarttab' 'sta'	boolean	(default off)
			global
			{not in Vi}
	When on, a <Tab> in front of a line inserts blanks according to
	'shiftwidth'.  'tabstop' or 'softtabstop' is used in other places.  A
	<BS> will delete a 'shiftwidth' worth of space at the start of the
	line.
	When off, a <Tab> always inserts blanks according to 'tabstop' or
	'softtabstop'.  'shiftwidth' is only used for shifting text left or
	right |shift-left-right|.
	What gets inserted (a <Tab> or spaces) depends on the 'expandtab'
	option.  Also see |ins-expandtab|.  When 'expandtab' is not set, the
	number of spaces is minimized by using <Tab>s.
	NOTE: This option is reset when 'compatible' is set.

					*'softtabstop'* *'sts'*
'softtabstop' 'sts'	number	(default 0)
			local to buffer
			{not in Vi}
	Number of spaces that a <Tab> counts for while performing editing
	operations, like inserting a <Tab> or using <BS>.  It "feels" like
	<Tab>s are being inserted, while in fact a mix of spaces and <Tab>s is
	used.  This is useful to keep the 'ts' setting at its standard value
	of 8, while being able to edit like it is set to 'sts'.  However,
	commands like "x" still work on the actual characters.
	When 'sts' is zero, this feature is off.
	When 'sts' is negative, the value of 'shiftwidth' is used.
	'softtabstop' is set to 0 when the 'paste' option is set.
	See also |ins-expandtab|.  When 'expandtab' is not set, the number of
	spaces is minimized by using <Tab>s.
	The 'L' flag in 'cpoptions' changes how tabs are used when 'list' is
	set.
	NOTE: This option is set to 0 when 'compatible' is set.

						*'spell'* *'nospell'*
'spell'			boolean	(default off)
			local to window
			{not in Vi}
			{not available when compiled without the |+syntax|
			feature}
	When on spell checking will be done.  See |spell|.
	The languages are specified with 'spelllang'.

						*'spellcapcheck'* *'spc'*
'spellcapcheck' 'spc'	string	(default "[.?!]\_[\])'" \t]\+")
			local to buffer
			{not in Vi}
			{not available when compiled without the |+syntax|
			feature}
	Pattern to locate the end of a sentence.  The following word will be
	checked to start with a capital letter.  If not then it is highlighted
	with SpellCap |hl-SpellCap| (unless the word is also badly spelled).
	When this check is not wanted make this option empty.
	Only used when 'spell' is set.
	Be careful with special characters, see |option-backslash| about
	including spaces and backslashes.
	To set this option automatically depending on the language, see
	|set-spc-auto|.

						*'spellfile'* *'spf'*
'spellfile' 'spf'	string	(default empty)
			local to buffer
			{not in Vi}
			{not available when compiled without the |+syntax|
			feature}
	Name of the word list file where words are added for the |zg| and |zw|
	commands.  It must end in ".{encoding}.add".  You need to include the
	path, otherwise the file is placed in the current directory.
								*E765*
	It may also be a comma separated list of names.  A count before the
	|zg| and |zw| commands can be used to access each.  This allows using
	a personal word list file and a project word list file.
	When a word is added while this option is empty Vim will set it for
	you: Using the first directory in 'runtimepath' that is writable.  If
	there is no "spell" directory yet it will be created.  For the file
	name the first language name that appears in 'spelllang' is used,
	ignoring the region.
	The resulting ".spl" file will be used for spell checking, it does not
	have to appear in 'spelllang'.
	Normally one file is used for all regions, but you can add the region
	name if you want to.  However, it will then only be used when
	'spellfile' is set to it, for entries in 'spelllang' only files
	without region name will be found.
	This option cannot be set from a |modeline| or in the |sandbox|, for
	security reasons.

						*'spelllang'* *'spl'*
'spelllang' 'spl'	string	(default "en")
			local to buffer
			{not in Vi}
			{not available when compiled without the |+syntax|
			feature}
	A comma separated list of word list names.  When the 'spell' option is
	on spellchecking will be done for these languages.  Example: >
		set spelllang=en_us,nl,medical
<	This means US English, Dutch and medical words are recognized.  Words
	that are not recognized will be highlighted.
	The word list name must not include a comma or dot.  Using a dash is
	recommended to separate the two letter language name from a
	specification.  Thus "en-rare" is used for rare English words.
	A region name must come last and have the form "_xx", where "xx" is
	the two-letter, lower case region name.  You can use more than one
	region by listing them: "en_us,en_ca" supports both US and Canadian
	English, but not words specific for Australia, New Zealand or Great
	Britain.
	If the name "cjk" is included East Asian characters are excluded from
	spell checking.  This is useful when editing text that also has Asian
	words.
							*E757*
	As a special case the name of a .spl file can be given as-is.  The
	first "_xx" in the name is removed and used as the region name
	(_xx is an underscore, two letters and followed by a non-letter).
	This is mainly for testing purposes.  You must make sure the correct
	encoding is used, Vim doesn't check it.
	When 'encoding' is set the word lists are reloaded.  Thus it's a good
	idea to set 'spelllang' after setting 'encoding' to avoid loading the
	files twice.
	How the related spell files are found is explained here: |spell-load|.

	If the |spellfile.vim| plugin is active and you use a language name
	for which Vim cannot find the .spl file in 'runtimepath' the plugin
	will ask you if you want to download the file.

	After this option has been set successfully, Vim will source the files
	"spell/LANG.vim" in 'runtimepath'.  "LANG" is the value of 'spelllang'
	up to the first comma, dot or underscore.
	Also see |set-spc-auto|.


						*'spellsuggest'* *'sps'*
'spellsuggest' 'sps'	string	(default "best")
			global
			{not in Vi}
			{not available when compiled without the |+syntax|
			feature}
	Methods used for spelling suggestions.  Both for the |z=| command and
	the |spellsuggest()| function.  This is a comma-separated list of
	items:

	best		Internal method that works best for English.  Finds
			changes like "fast" and uses a bit of sound-a-like
			scoring to improve the ordering.

	double		Internal method that uses two methods and mixes the
			results.  The first method is "fast", the other method
			computes how much the suggestion sounds like the bad
			word.  That only works when the language specifies
			sound folding.  Can be slow and doesn't always give
			better results.

	fast		Internal method that only checks for simple changes:
			character inserts/deletes/swaps.  Works well for
			simple typing mistakes.

	{number}	The maximum number of suggestions listed for |z=|.
			Not used for |spellsuggest()|.  The number of
			suggestions is never more than the value of 'lines'
			minus two.

	file:{filename} Read file {filename}, which must have two columns,
			separated by a slash.  The first column contains the
			bad word, the second column the suggested good word.
			Example:
				theribal/terrible ~
			Use this for common mistakes that do not appear at the
			top of the suggestion list with the internal methods.
			Lines without a slash are ignored, use this for
			comments.
			The word in the second column must be correct,
			otherwise it will not be used.  Add the word to an
			".add" file if it is currently flagged as a spelling
			mistake.
			The file is used for all languages.

	expr:{expr}	Evaluate expression {expr}.  Use a function to avoid
			trouble with spaces.  |v:val| holds the badly spelled
			word.  The expression must evaluate to a List of
			Lists, each with a suggestion and a score.
			Example:
				[['the', 33], ['that', 44]]
			Set 'verbose' and use |z=| to see the scores that the
			internal methods use.  A lower score is better.
			This may invoke |spellsuggest()| if you temporarily
			set 'spellsuggest' to exclude the "expr:" part.
			Errors are silently ignored, unless you set the
			'verbose' option to a non-zero value.

	Only one of "best", "double" or "fast" may be used.  The others may
	appear several times in any order.  Example: >
		:set sps=file:~/.vim/sugg,best,expr:MySuggest()
<
	This option cannot be set from a |modeline| or in the |sandbox|, for
	security reasons.


			*'splitbelow'* *'sb'* *'nosplitbelow'* *'nosb'*
'splitbelow' 'sb'	boolean	(default off)
			global
			{not in Vi}
			{not available when compiled without the |+windows|
			feature}
	When on, splitting a window will put the new window below the current
	one. |:split|

			*'splitright'* *'spr'* *'nosplitright'* *'nospr'*
'splitright' 'spr'	boolean	(default off)
			global
			{not in Vi}
			{not available when compiled without the |+vertsplit|
			feature}
	When on, splitting a window will put the new window right of the
	current one. |:vsplit|

			   *'startofline'* *'sol'* *'nostartofline'* *'nosol'*
'startofline' 'sol'	boolean	(default on)
			global
			{not in Vi}
	When "on" the commands listed below move the cursor to the first
	non-blank of the line.  When off the cursor is kept in the same column
	(if possible).  This applies to the commands: CTRL-D, CTRL-U, CTRL-B,
	CTRL-F, "G", "H", "M", "L", gg, and to the commands "d", "<<" and ">>"
	with a linewise operator, with "%" with a count and to buffer changing
	commands (CTRL-^, :bnext, :bNext, etc.).  Also for an Ex command that
	only has a line number, e.g., ":25" or ":+".
	In case of buffer changing commands the cursor is placed at the column
	where it was the last time the buffer was edited.
	NOTE: This option is set when 'compatible' is set.

			   *'statusline'* *'stl'* *E540* *E542*
'statusline' 'stl'	string	(default empty)
			global or local to window |global-local|
			{not in Vi}
			{not available when compiled without the |+statusline|
			feature}
	When nonempty, this option determines the content of the status line.
	Also see |status-line|.

	The option consists of printf style '%' items interspersed with
	normal text.  Each status line item is of the form:
	  %-0{minwid}.{maxwid}{item}
	All fields except the {item} is optional.  A single percent sign can
	be given as "%%".  Up to 80 items can be specified.  *E541*

	When the option starts with "%!" then it is used as an expression,
	evaluated and the result is used as the option value.  Example: >
		:set statusline=%!MyStatusLine()
<	The result can contain %{} items that will be evaluated too.
	Note that the "%!" expression is evaluated in the context of the
	current window and buffer, while %{} items are evaluated in the
	context of the window that the statusline belongs to.

	When there is error while evaluating the option then it will be made
	empty to avoid further errors.  Otherwise screen updating would loop.

	Note that the only effect of 'ruler' when this option is set (and
	'laststatus' is 2) is controlling the output of |CTRL-G|.

	field	    meaning ~
	-	    Left justify the item.  The default is right justified
		    when minwid is larger than the length of the item.
	0	    Leading zeroes in numeric items.  Overridden by '-'.
	minwid	    Minimum width of the item, padding as set by '-' & '0'.
		    Value must be 50 or less.
	maxwid	    Maximum width of the item.  Truncation occurs with a '<'
		    on the left for text items.  Numeric items will be
		    shifted down to maxwid-2 digits followed by '>'number
		    where number is the amount of missing digits, much like
		    an exponential notation.
	item	    A one letter code as described below.

	Following is a description of the possible statusline items.  The
	second character in "item" is the type:
		N for number
		S for string
		F for flags as described below
		- not applicable

	item  meaning ~
	f S   Path to the file in the buffer, as typed or relative to current
	      directory.
	F S   Full path to the file in the buffer.
	t S   File name (tail) of file in the buffer.
	m F   Modified flag, text is "[+]"; "[-]" if 'modifiable' is off.
	M F   Modified flag, text is ",+" or ",-".
	r F   Readonly flag, text is "[RO]".
	R F   Readonly flag, text is ",RO".
	h F   Help buffer flag, text is "[help]".
	H F   Help buffer flag, text is ",HLP".
	w F   Preview window flag, text is "[Preview]".
	W F   Preview window flag, text is ",PRV".
	y F   Type of file in the buffer, e.g., "[vim]".  See 'filetype'.
	Y F   Type of file in the buffer, e.g., ",VIM".  See 'filetype'.
	      {not available when compiled without |+autocmd| feature}
	q S   "[Quickfix List]", "[Location List]" or empty.
	k S   Value of "b:keymap_name" or 'keymap' when |:lmap| mappings are
	      being used: "<keymap>"
	n N   Buffer number.
	b N   Value of character under cursor.
	B N   As above, in hexadecimal.
	o N   Byte number in file of byte under cursor, first byte is 1.
	      Mnemonic: Offset from start of file (with one added)
	      {not available when compiled without |+byte_offset| feature}
	O N   As above, in hexadecimal.
	N N   Printer page number.  (Only works in the 'printheader' option.)
	l N   Line number.
	L N   Number of lines in buffer.
	c N   Column number.
	v N   Virtual column number.
	V N   Virtual column number as -{num}.  Not displayed if equal to 'c'.
	p N   Percentage through file in lines as in |CTRL-G|.
	P S   Percentage through file of displayed window.  This is like the
	      percentage described for 'ruler'.  Always 3 in length, unless
	      translated.
	a S   Argument list status as in default title.  ({current} of {max})
	      Empty if the argument file count is zero or one.
	{ NF  Evaluate expression between '%{' and '}' and substitute result.
	      Note that there is no '%' before the closing '}'.
	( -   Start of item group.  Can be used for setting the width and
	      alignment of a section.  Must be followed by %) somewhere.
	) -   End of item group.  No width fields allowed.
	T N   For 'tabline': start of tab page N label.  Use %T after the last
	      label.  This information is used for mouse clicks.
	X N   For 'tabline': start of close tab N label.  Use %X after the
	      label, e.g.: %3Xclose%X.  Use %999X for a "close current tab"
	      mark.  This information is used for mouse clicks.
	< -   Where to truncate line if too long.  Default is at the start.
	      No width fields allowed.
	= -   Separation point between left and right aligned items.
	      No width fields allowed.
	# -   Set highlight group.  The name must follow and then a # again.
	      Thus use %#HLname# for highlight group HLname.  The same
	      highlighting is used, also for the statusline of non-current
	      windows.
	* -   Set highlight group to User{N}, where {N} is taken from the
	      minwid field, e.g. %1*.  Restore normal highlight with %* or %0*.
	      The difference between User{N} and StatusLine  will be applied
	      to StatusLineNC for the statusline of non-current windows.
	      The number N must be between 1 and 9.  See |hl-User1..9|

	When displaying a flag, Vim removes the leading comma, if any, when
	that flag comes right after plaintext.  This will make a nice display
	when flags are used like in the examples below.

	When all items in a group becomes an empty string (i.e. flags that are
	not set) and a minwid is not set for the group, the whole group will
	become empty.  This will make a group like the following disappear
	completely from the statusline when none of the flags are set. >
		:set statusline=...%(\ [%M%R%H]%)...
<
	Beware that an expression is evaluated each and every time the status
	line is displayed.  The current buffer and current window will be set
	temporarily to that of the window (and buffer) whose statusline is
	currently being drawn.  The expression will evaluate in this context.
	The variable "actual_curbuf" is set to the 'bufnr()' number of the
	real current buffer.

	The 'statusline' option will be evaluated in the |sandbox| if set from
	a modeline, see |sandbox-option|.

	It is not allowed to change text or jump to another window while
	evaluating 'statusline' |textlock|.

	If the statusline is not updated when you want it (e.g., after setting
	a variable that's used in an expression), you can force an update by
	setting an option without changing its value.  Example: >
		:let &ro = &ro

<	A result of all digits is regarded a number for display purposes.
	Otherwise the result is taken as flag text and applied to the rules
	described above.

	Watch out for errors in expressions.  They may render Vim unusable!
	If you are stuck, hold down ':' or 'Q' to get a prompt, then quit and
	edit your .vimrc or whatever with "vim -u NONE" to get it right.

	Examples:
	Emulate standard status line with 'ruler' set >
	  :set statusline=%<%f\ %h%m%r%=%-14.(%l,%c%V%)\ %P
<	Similar, but add ASCII value of char under the cursor (like "ga") >
	  :set statusline=%<%f%h%m%r%=%b\ 0x%B\ \ %l,%c%V\ %P
<	Display byte count and byte value, modified flag in red. >
	  :set statusline=%<%f%=\ [%1*%M%*%n%R%H]\ %-19(%3l,%02c%03V%)%O'%02b'
	  :hi User1 term=inverse,bold cterm=inverse,bold ctermfg=red
<	Display a ,GZ flag if a compressed file is loaded >
	  :set statusline=...%r%{VarExists('b:gzflag','\ [GZ]')}%h...
<	In the |:autocmd|'s: >
	  :let b:gzflag = 1
<	And: >
	  :unlet b:gzflag
<	And define this function: >
	  :function VarExists(var, val)
	  :    if exists(a:var) | return a:val | else | return '' | endif
	  :endfunction
<
						*'suffixes'* *'su'*
'suffixes' 'su'		string	(default ".bak,~,.o,.h,.info,.swp,.obj")
			global
			{not in Vi}
	Files with these suffixes get a lower priority when multiple files
	match a wildcard.  See |suffixes|.  Commas can be used to separate the
	suffixes.  Spaces after the comma are ignored.  A dot is also seen as
	the start of a suffix.  To avoid a dot or comma being recognized as a
	separator, precede it with a backslash (see |option-backslash| about
	including spaces and backslashes).
	See 'wildignore' for completely ignoring files.
	The use of |:set+=| and |:set-=| is preferred when adding or removing
	suffixes from the list.  This avoids problems when a future version
	uses another default.

						*'suffixesadd'* *'sua'*
'suffixesadd' 'sua'	string	(default "")
			local to buffer
			{not in Vi}
			{not available when compiled without the
			|+file_in_path| feature}
	Comma separated list of suffixes, which are used when searching for a
	file for the "gf", "[I", etc. commands.  Example: >
		:set suffixesadd=.java
<
				*'swapfile'* *'swf'* *'noswapfile'* *'noswf'*
'swapfile' 'swf'	boolean (default on)
			local to buffer
			{not in Vi}
	Use a swapfile for the buffer.  This option can be reset when a
	swapfile is not wanted for a specific buffer.  For example, with
	confidential information that even root must not be able to access.
	Careful: All text will be in memory:
		- Don't use this for big files.
		- Recovery will be impossible!
	A swapfile will only be present when |'updatecount'| is non-zero and
	'swapfile' is set.
	When 'swapfile' is reset, the swap file for the current buffer is
	immediately deleted.  When 'swapfile' is set, and 'updatecount' is
	non-zero, a swap file is immediately created.
	Also see |swap-file| and |'swapsync'|.
	If you want to open a new buffer without creating a swap file for it,
	use the |:noswapfile| modifier.

	This option is used together with 'bufhidden' and 'buftype' to
	specify special kinds of buffers.   See |special-buffers|.

						*'swapsync'* *'sws'*
'swapsync' 'sws'	string	(default "fsync")
			global
			{not in Vi}
	When this option is not empty a swap file is synced to disk after
	writing to it.  This takes some time, especially on busy unix systems.
	When this option is empty parts of the swap file may be in memory and
	not written to disk.  When the system crashes you may lose more work.
	On Unix the system does a sync now and then without Vim asking for it,
	so the disadvantage of setting this option off is small.  On some
	systems the swap file will not be written at all.  For a unix system
	setting it to "sync" will use the sync() call instead of the default
	fsync(), which may work better on some systems.
	The 'fsync' option is used for the actual file.

						*'switchbuf'* *'swb'*
'switchbuf' 'swb'	string	(default "")
			global
			{not in Vi}
	This option controls the behavior when switching between buffers.
	Possible values (comma separated list):
	   useopen	If included, jump to the first open window that
			contains the specified buffer (if there is one).
			Otherwise: Do not examine other windows.
			This setting is checked with |quickfix| commands, when
			jumping to errors (":cc", ":cn", "cp", etc.).  It is
			also used in all buffer related split commands, for
			example ":sbuffer", ":sbnext", or ":sbrewind".
	   usetab	Like "useopen", but also consider windows in other tab
			pages.
	   split	If included, split the current window before loading
			a buffer for a |quickfix| command that display errors.
			Otherwise: do not split, use current window.
	   newtab	Like "split", but open a new tab page.  Overrules
			"split" when both are present.

						*'synmaxcol'* *'smc'*
'synmaxcol' 'smc'	number	(default 3000)
			local to buffer
			{not in Vi}
			{not available when compiled without the |+syntax|
			feature}
	Maximum column in which to search for syntax items.  In long lines the
	text after this column is not highlighted and following lines may not
	be highlighted correctly, because the syntax state is cleared.
	This helps to avoid very slow redrawing for an XML file that is one
	long line.
	Set to zero to remove the limit.

						*'syntax'* *'syn'*
'syntax' 'syn'		string	(default empty)
			local to buffer
			{not in Vi}
			{not available when compiled without the |+syntax|
			feature}
	When this option is set, the syntax with this name is loaded, unless
	syntax highlighting has been switched off with ":syntax off".
	Otherwise this option does not always reflect the current syntax (the
	b:current_syntax variable does).
	This option is most useful in a modeline, for a file which syntax is
	not automatically recognized.  Example, in an IDL file:
		/* vim: set syntax=idl : */ ~
	When a dot appears in the value then this separates two filetype
	names.  Example:
		/* vim: set syntax=c.doxygen : */ ~
	This will use the "c" syntax first, then the "doxygen" syntax.
	Note that the second one must be prepared to be loaded as an addition,
	otherwise it will be skipped.  More than one dot may appear.
	To switch off syntax highlighting for the current file, use: >
		:set syntax=OFF
<	To switch syntax highlighting on according to the current value of the
	'filetype' option: >
		:set syntax=ON
<	What actually happens when setting the 'syntax' option is that the
	Syntax autocommand event is triggered with the value as argument.
	This option is not copied to another buffer, independent of the 's' or
	'S' flag in 'cpoptions'.
	Only normal file name characters can be used, "/\*?[|<>" are illegal.

						*'tabline'* *'tal'*
'tabline' 'tal'		string	(default empty)
			global
			{not in Vi}
			{not available when compiled without the |+windows|
			feature}
	When nonempty, this option determines the content of the tab pages
	line at the top of the Vim window.  When empty Vim will use a default
	tab pages line.  See |setting-tabline| for more info.

	The tab pages line only appears as specified with the 'showtabline'
	option and only when there is no GUI tab line.  When 'e' is in
	'guioptions' and the GUI supports a tab line 'guitablabel' is used
	instead.  Note that the two tab pages lines are very different.

	The value is evaluated like with 'statusline'.  You can use
	|tabpagenr()|, |tabpagewinnr()| and |tabpagebuflist()| to figure out
	the text to be displayed.  Use "%1T" for the first label, "%2T" for
	the second one, etc.  Use "%X" items for closing labels.

	Keep in mind that only one of the tab pages is the current one, others
	are invisible and you can't jump to their windows.


						*'tabpagemax'* *'tpm'*
'tabpagemax' 'tpm'	number	(default 10)
			global
			{not in Vi}
			{not available when compiled without the |+windows|
			feature}
	Maximum number of tab pages to be opened by the |-p| command line
	argument or the ":tab all" command. |tabpage|


						*'tabstop'* *'ts'*
'tabstop' 'ts'		number	(default 8)
			local to buffer
	Number of spaces that a <Tab> in the file counts for.  Also see
	|:retab| command, and 'softtabstop' option.

	Note: Setting 'tabstop' to any other value than 8 can make your file
	appear wrong in many places (e.g., when printing it).

	There are four main ways to use tabs in Vim:
	1. Always keep 'tabstop' at 8, set 'softtabstop' and 'shiftwidth' to 4
	   (or 3 or whatever you prefer) and use 'noexpandtab'.  Then Vim
	   will use a mix of tabs and spaces, but typing <Tab> and <BS> will
	   behave like a tab appears every 4 (or 3) characters.
	2. Set 'tabstop' and 'shiftwidth' to whatever you prefer and use
	   'expandtab'.  This way you will always insert spaces.  The
	   formatting will never be messed up when 'tabstop' is changed.
	3. Set 'tabstop' and 'shiftwidth' to whatever you prefer and use a
	   |modeline| to set these values when editing the file again.  Only
	   works when using Vim to edit the file.
	4. Always set 'tabstop' and 'shiftwidth' to the same value, and
	   'noexpandtab'.  This should then work (for initial indents only)
	   for any tabstop setting that people use.  It might be nice to have
	   tabs after the first non-blank inserted as spaces if you do this
	   though.  Otherwise aligned comments will be wrong when 'tabstop' is
	   changed.

			*'tagbsearch'* *'tbs'* *'notagbsearch'* *'notbs'*
'tagbsearch' 'tbs'	boolean	(default on)
			global
			{not in Vi}
	When searching for a tag (e.g., for the |:ta| command), Vim can either
	use a binary search or a linear search in a tags file.  Binary
	searching makes searching for a tag a LOT faster, but a linear search
	will find more tags if the tags file wasn't properly sorted.
	Vim normally assumes that your tags files are sorted, or indicate that
	they are not sorted.  Only when this is not the case does the
	'tagbsearch' option need to be switched off.

	When 'tagbsearch' is on, binary searching is first used in the tags
	files.  In certain situations, Vim will do a linear search instead for
	certain files, or retry all files with a linear search.  When
	'tagbsearch' is off, only a linear search is done.

	Linear searching is done anyway, for one file, when Vim finds a line
	at the start of the file indicating that it's not sorted: >
   !_TAG_FILE_SORTED	0	/some comment/
<	[The whitespace before and after the '0' must be a single <Tab>]

	When a binary search was done and no match was found in any of the
	files listed in 'tags', and 'ignorecase' is set or a pattern is used
	instead of a normal tag name, a retry is done with a linear search.
	Tags in unsorted tags files, and matches with different case will only
	be found in the retry.

	If a tag file indicates that it is case-fold sorted, the second,
	linear search can be avoided for the 'ignorecase' case.  Use a value
	of '2' in the "!_TAG_FILE_SORTED" line for this.  A tag file can be
	case-fold sorted with the -f switch to "sort" in most unices, as in
	the command: "sort -f -o tags tags".  For "Exuberant ctags" version
	5.x or higher (at least 5.5) the --sort=foldcase switch can be used
	for this as well.  Note that case must be folded to uppercase for this
	to work.

	When 'tagbsearch' is off, tags searching is slower when a full match
	exists, but faster when no full match exists.  Tags in unsorted tags
	files may only be found with 'tagbsearch' off.
	When the tags file is not sorted, or sorted in a wrong way (not on
	ASCII byte value), 'tagbsearch' should be off, or the line given above
	must be included in the tags file.
	This option doesn't affect commands that find all matching tags (e.g.,
	command-line completion and ":help").
	{Vi: always uses binary search in some versions}

						*'taglength'* *'tl'*
'taglength' 'tl'	number	(default 0)
			global
	If non-zero, tags are significant up to this number of characters.

			*'tagrelative'* *'tr'* *'notagrelative'* *'notr'*
'tagrelative' 'tr'	boolean	(Vim default: on, Vi default: off)
			global
			{not in Vi}
	If on and using a tags file in another directory, file names in that
	tags file are relative to the directory where the tags file is.
	NOTE: This option is set to the Vi default value when 'compatible' is
	set and to the Vim default value when 'compatible' is reset.

						*'tags'* *'tag'* *E433*
'tags' 'tag'		string	(default "./tags,tags", when compiled with
				|+emacs_tags|: "./tags,./TAGS,tags,TAGS")
			global or local to buffer |global-local|
	Filenames for the tag command, separated by spaces or commas.  To
	include a space or comma in a file name, precede it with a backslash
	(see |option-backslash| about including spaces and backslashes).
	When a file name starts with "./", the '.' is replaced with the path
	of the current file.  But only when the 'd' flag is not included in
	'cpoptions'.  Environment variables are expanded |:set_env|.  Also see
	|tags-option|.
	"*", "**" and other wildcards can be used to search for tags files in
	a directory tree.  See |file-searching|.  E.g., "/lib/**/tags" will
	find all files named "tags" below "/lib".  The filename itself cannot
	contain wildcards, it is used as-is.  E.g., "/lib/**/tags?" will find
	files called "tags?".  {not available when compiled without the
	|+path_extra| feature}
	The |tagfiles()| function can be used to get a list of the file names
	actually used.
	If Vim was compiled with the |+emacs_tags| feature, Emacs-style tag
	files are also supported.  They are automatically recognized.  The
	default value becomes "./tags,./TAGS,tags,TAGS", unless case
	differences are ignored (MS-Windows).  |emacs-tags|
	The use of |:set+=| and |:set-=| is preferred when adding or removing
	file names from the list.  This avoids problems when a future version
	uses another default.
	{Vi: default is "tags /usr/lib/tags"}

				*'tagstack'* *'tgst'* *'notagstack'* *'notgst'*
'tagstack' 'tgst'	boolean	(default on)
			global
			{not in all versions of Vi}
	When on, the |tagstack| is used normally.  When off, a ":tag" or
	":tselect" command with an argument will not push the tag onto the
	tagstack.  A following ":tag" without an argument, a ":pop" command or
	any other command that uses the tagstack will use the unmodified
	tagstack, but does change the pointer to the active entry.
	Resetting this option is useful when using a ":tag" command in a
	mapping which should not change the tagstack.

						*'term'* *E529* *E530* *E531*
'term'			string	(default is $TERM, if that fails:
				      in the GUI: "builtin_gui"
					on Amiga: "amiga"
					 on BeOS: "beos-ansi"
					  on Mac: "mac-ansi"
					 on MiNT: "vt52"
				       on MS-DOS: "pcterm"
					 on OS/2: "os2ansi"
					 on Unix: "ansi"
					  on VMS: "ansi"
				       on Win 32: "win32")
			global
	Name of the terminal.  Used for choosing the terminal control
	characters.  Environment variables are expanded |:set_env|.
	For example: >
		:set term=$TERM
<	See |termcap|.

						*'termbidi'* *'tbidi'*
						*'notermbidi'* *'notbidi'*
'termbidi' 'tbidi'	boolean (default off, on for "mlterm")
			global
			{not in Vi}
			{only available when compiled with the |+arabic|
			feature}
	The terminal is in charge of Bi-directionality of text (as specified
	by Unicode).  The terminal is also expected to do the required shaping
	that some languages (such as Arabic) require.
	Setting this option implies that 'rightleft' will not be set when
	'arabic' is set and the value of 'arabicshape' will be ignored.
	Note that setting 'termbidi' has the immediate effect that
	'arabicshape' is ignored, but 'rightleft' isn't changed automatically.
	This option is reset when the GUI is started.
	For further details see |arabic.txt|.

					*'termencoding'* *'tenc'*
'termencoding' 'tenc'	string	(default ""; with GTK+ 2 GUI: "utf-8"; with
						    Macintosh GUI: "macroman")
			global
			{only available when compiled with the |+multi_byte|
			feature}
			{not in Vi}
	Encoding used for the terminal.  This specifies what character
	encoding the keyboard produces and the display will understand.  For
	the GUI it only applies to the keyboard ( 'encoding' is used for the
	display).  Except for the Mac when 'macatsui' is off, then
	'termencoding' should be "macroman".
	In the Win32 console version the default value is the console codepage
	when it differs from the ANSI codepage.
								*E617*
	Note: This does not apply to the GTK+ 2 GUI.  After the GUI has been
	successfully initialized, 'termencoding' is forcibly set to "utf-8".
	Any attempts to set a different value will be rejected, and an error
	message is shown.
	For the Win32 GUI 'termencoding' is not used for typed characters,
	because the Win32 system always passes Unicode characters.
	When empty, the same encoding is used as for the 'encoding' option.
	This is the normal value.
	Not all combinations for 'termencoding' and 'encoding' are valid.  See
	|encoding-table|.
	The value for this option must be supported by internal conversions or
	iconv().  When this is not possible no conversion will be done and you
	will probably experience problems with non-ASCII characters.
	Example: You are working with the locale set to euc-jp (Japanese) and
	want to edit a UTF-8 file: >
		:let &termencoding = &encoding
		:set encoding=utf-8
<	You need to do this when your system has no locale support for UTF-8.

						*'terse'* *'noterse'*
'terse'			boolean	(default off)
			global
	When set: Add 's' flag to 'shortmess' option (this makes the message
	for a search that hits the start or end of the file not being
	displayed).  When reset: Remove 's' flag from 'shortmess' option.  {Vi
	shortens a lot of messages}

				   *'textauto'* *'ta'* *'notextauto'* *'nota'*
'textauto' 'ta'		boolean	(Vim default: on, Vi default: off)
			global
			{not in Vi}
	This option is obsolete.  Use 'fileformats'.
	For backwards compatibility, when 'textauto' is set, 'fileformats' is
	set to the default value for the current system.  When 'textauto' is
	reset, 'fileformats' is made empty.
	NOTE: This option is set to the Vi default value when 'compatible' is
	set and to the Vim default value when 'compatible' is reset.

				   *'textmode'* *'tx'* *'notextmode'* *'notx'*
'textmode' 'tx'		boolean	(MS-DOS, Win32 and OS/2: default on,
				 others: default off)
			local to buffer
			{not in Vi}
	This option is obsolete.  Use 'fileformat'.
	For backwards compatibility, when 'textmode' is set, 'fileformat' is
	set to "dos".  When 'textmode' is reset, 'fileformat' is set to
	"unix".

						*'textwidth'* *'tw'*
'textwidth' 'tw'	number	(default 0)
			local to buffer
			{not in Vi}
	Maximum width of text that is being inserted.  A longer line will be
	broken after white space to get this width.  A zero value disables
	this.  'textwidth' is set to 0 when the 'paste' option is set.  When
	'textwidth' is zero, 'wrapmargin' may be used.  See also
	'formatoptions' and |ins-textwidth|.
	When 'formatexpr' is set it will be used to break the line.
	NOTE: This option is set to 0 when 'compatible' is set.

						*'thesaurus'* *'tsr'*
'thesaurus' 'tsr'	string	(default "")
			global or local to buffer |global-local|
			{not in Vi}
	List of file names, separated by commas, that are used to lookup words
	for thesaurus completion commands |i_CTRL-X_CTRL-T|.  Each line in
	the file should contain words with similar meaning, separated by
	non-keyword characters (white space is preferred).  Maximum line
	length is 510 bytes.
	To obtain a file to be used here, check out this ftp site:
	ftp://ftp.ox.ac.uk/pub/wordlists/  First get the README file.
	To include a comma in a file name precede it with a backslash.  Spaces
	after a comma are ignored, otherwise spaces are included in the file
	name.  See |option-backslash| about using backslashes.
	The use of |:set+=| and |:set-=| is preferred when adding or removing
	directories from the list.  This avoids problems when a future version
	uses another default.
	Backticks cannot be used in this option for security reasons.

			     *'tildeop'* *'top'* *'notildeop'* *'notop'*
'tildeop' 'top'		boolean	(default off)
			global
			{not in Vi}
	When on: The tilde command "~" behaves like an operator.
	NOTE: This option is reset when 'compatible' is set.

				*'timeout'* *'to'* *'notimeout'* *'noto'*
'timeout' 'to'		boolean (default on)
			global
						*'ttimeout'* *'nottimeout'*
'ttimeout'		boolean (default off)
			global
			{not in Vi}
	These two options together determine the behavior when part of a
	mapped key sequence or keyboard code has been received:

	'timeout'    'ttimeout'		action	~
	   off		off		do not time out
	   on		on or off	time out on :mappings and key codes
	   off		on		time out on key codes

	If both options are off, Vim will wait until either the complete
	mapping or key sequence has been received, or it is clear that there
	is no mapping or key sequence for the received characters.  For
	example: if you have mapped "vl" and Vim has received 'v', the next
	character is needed to see if the 'v' is followed by an 'l'.
	When one of the options is on, Vim will wait for about 1 second for
	the next character to arrive.  After that the already received
	characters are interpreted as single characters.  The waiting time can
	be changed with the 'timeoutlen' option.
	On slow terminals or very busy systems timing out may cause
	malfunctioning cursor keys.  If both options are off, Vim waits
	forever after an entered <Esc> if there are key codes that start
	with <Esc>.  You will have to type <Esc> twice.  If you do not have
	problems with key codes, but would like to have :mapped key
	sequences not timing out in 1 second, set the 'ttimeout' option and
	reset the 'timeout' option.

	NOTE: 'ttimeout' is reset when 'compatible' is set.

						*'timeoutlen'* *'tm'*
'timeoutlen' 'tm'	number	(default 1000)
			global
			{not in all versions of Vi}
						*'ttimeoutlen'* *'ttm'*
'ttimeoutlen' 'ttm'	number	(default -1)
			global
			{not in Vi}
	The time in milliseconds that is waited for a key code or mapped key
	sequence to complete.  Also used for CTRL-\ CTRL-N and CTRL-\ CTRL-G
	when part of a command has been typed.
	Normally only 'timeoutlen' is used and 'ttimeoutlen' is -1.  When a
	different timeout value for key codes is desired set 'ttimeoutlen' to
	a non-negative number.

		ttimeoutlen	mapping delay	   key code delay	~
		   < 0		'timeoutlen'	   'timeoutlen'
		  >= 0		'timeoutlen'	   'ttimeoutlen'

	The timeout only happens when the 'timeout' and 'ttimeout' options
	tell so.  A useful setting would be >
		:set timeout timeoutlen=3000 ttimeoutlen=100
<	(time out on mapping after three seconds, time out on key codes after
	a tenth of a second).

						*'title'* *'notitle'*
'title'			boolean	(default off, on when title can be restored)
			global
			{not in Vi}
			{not available when compiled without the |+title|
			feature}
	When on, the title of the window will be set to the value of
	'titlestring' (if it is not empty), or to:
		filename [+=-] (path) - VIM
	Where:
		filename	the name of the file being edited
		-		indicates the file cannot be modified, 'ma' off
		+		indicates the file was modified
		=		indicates the file is read-only
		=+		indicates the file is read-only and modified
		(path)		is the path of the file being edited
		- VIM		the server name |v:servername| or "VIM"
	Only works if the terminal supports setting window titles
	(currently Amiga console, Win32 console, all GUI versions and
	terminals with a non- empty 't_ts' option - these are Unix xterm and
	iris-ansi by default, where 't_ts' is taken from the builtin termcap).
								*X11*
	When Vim was compiled with HAVE_X11 defined, the original title will
	be restored if possible.  The output of ":version" will include "+X11"
	when HAVE_X11 was defined, otherwise it will be "-X11".  This also
	works for the icon name |'icon'|.
	But: When Vim was started with the |-X| argument, restoring the title
	will not work (except in the GUI).
	If the title cannot be restored, it is set to the value of 'titleold'.
	You might want to restore the title outside of Vim then.
	When using an xterm from a remote machine you can use this command:
	    rsh machine_name xterm -display $DISPLAY &
	then the WINDOWID environment variable should be inherited and the
	title of the window should change back to what it should be after
	exiting Vim.

								*'titlelen'*
'titlelen'		number	(default 85)
			global
			{not in Vi}
			{not available when compiled without the |+title|
			feature}
	Gives the percentage of 'columns' to use for the length of the window
	title.  When the title is longer, only the end of the path name is
	shown.  A '<' character before the path name is used to indicate this.
	Using a percentage makes this adapt to the width of the window.  But
	it won't work perfectly, because the actual number of characters
	available also depends on the font used and other things in the title
	bar.  When 'titlelen' is zero the full path is used.  Otherwise,
	values from 1 to 30000 percent can be used.
	'titlelen' is also used for the 'titlestring' option.

						*'titleold'*
'titleold'		string	(default "Thanks for flying Vim")
			global
			{not in Vi}
			{only available when compiled with the |+title|
			feature}
	This option will be used for the window title when exiting Vim if the
	original title cannot be restored.  Only happens if 'title' is on or
	'titlestring' is not empty.
	This option cannot be set from a |modeline| or in the |sandbox|, for
	security reasons.
						*'titlestring'*
'titlestring'		string	(default "")
			global
			{not in Vi}
			{not available when compiled without the |+title|
			feature}
	When this option is not empty, it will be used for the title of the
	window.  This happens only when the 'title' option is on.
	Only works if the terminal supports setting window titles (currently
	Amiga console, Win32 console, all GUI versions and terminals with a
	non-empty 't_ts' option).
	When Vim was compiled with HAVE_X11 defined, the original title will
	be restored if possible |X11|.
	When this option contains printf-style '%' items, they will be
	expanded according to the rules used for 'statusline'.
	Example: >
    :auto BufEnter * let &titlestring = hostname() . "/" . expand("%:p")
    :set title titlestring=%<%F%=%l/%L-%P titlelen=70
<	The value of 'titlelen' is used to align items in the middle or right
	of the available space.
	Some people prefer to have the file name first: >
    :set titlestring=%t%(\ %M%)%(\ (%{expand(\"%:~:.:h\")})%)%(\ %a%)
<	Note the use of "%{ }" and an expression to get the path of the file,
	without the file name.  The "%( %)" constructs are used to add a
	separating space only when needed.
	NOTE: Use of special characters in 'titlestring' may cause the display
	to be garbled (e.g., when it contains a CR or NL character).
	{not available when compiled without the |+statusline| feature}

				*'toolbar'* *'tb'*
'toolbar' 'tb'		string	(default "icons,tooltips")
			global
			{only for |+GUI_GTK|, |+GUI_Athena|, |+GUI_Motif| and
			|+GUI_Photon|}
	The contents of this option controls various toolbar settings.  The
	possible values are:
		icons		Toolbar buttons are shown with icons.
		text		Toolbar buttons shown with text.
		horiz		Icon and text of a toolbar button are
				horizontally arranged.  {only in GTK+ 2 GUI}
		tooltips	Tooltips are active for toolbar buttons.
	Tooltips refer to the popup help text which appears after the mouse
	cursor is placed over a toolbar button for a brief moment.

	If you want the toolbar to be shown with icons as well as text, do the
	following: >
		:set tb=icons,text
<	Motif and Athena cannot display icons and text at the same time.  They
	will show icons if both are requested.

	If none of the strings specified in 'toolbar' are valid or if
	'toolbar' is empty, this option is ignored.  If you want to disable
	the toolbar, you need to set the 'guioptions' option.  For example: >
		:set guioptions-=T
<	Also see |gui-toolbar|.

						*'toolbariconsize'* *'tbis'*
'toolbariconsize' 'tbis'	string	(default "small")
				global
				{not in Vi}
				{only in the GTK+ 2 GUI}
	Controls the size of toolbar icons.  The possible values are:
		tiny		Use tiny toolbar icons.
		small		Use small toolbar icons (default).
		medium		Use medium-sized toolbar icons.
		large		Use large toolbar icons.
	The exact dimensions in pixels of the various icon sizes depend on
	the current theme.  Common dimensions are large=32x32, medium=24x24,
	small=20x20 and tiny=16x16.

	If 'toolbariconsize' is empty, the global default size as determined
	by user preferences or the current theme is used.

			     *'ttybuiltin'* *'tbi'* *'nottybuiltin'* *'notbi'*
'ttybuiltin' 'tbi'	boolean	(default on)
			global
			{not in Vi}
	When on, the builtin termcaps are searched before the external ones.
	When off the builtin termcaps are searched after the external ones.
	When this option is changed, you should set the 'term' option next for
	the change to take effect, for example: >
		:set notbi term=$TERM
<	See also |termcap|.
	Rationale: The default for this option is "on", because the builtin
	termcap entries are generally better (many systems contain faulty
	xterm entries...).

				     *'ttyfast'* *'tf'* *'nottyfast'* *'notf'*
'ttyfast' 'tf'		boolean	(default off, on when 'term' is xterm, hpterm,
					sun-cmd, screen, rxvt, dtterm or
					iris-ansi; also on when running Vim in
					a DOS console)
			global
			{not in Vi}
	Indicates a fast terminal connection.  More characters will be sent to
	the screen for redrawing, instead of using insert/delete line
	commands.  Improves smoothness of redrawing when there are multiple
	windows and the terminal does not support a scrolling region.
	Also enables the extra writing of characters at the end of each screen
	line for lines that wrap.  This helps when using copy/paste with the
	mouse in an xterm and other terminals.

						*'ttymouse'* *'ttym'*
'ttymouse' 'ttym'	string	(default depends on 'term')
			global
			{not in Vi}
			{only in Unix and VMS, doesn't work in the GUI; not
			available when compiled without |+mouse|}
	Name of the terminal type for which mouse codes are to be recognized.
	Currently these strings are valid:
							*xterm-mouse*
	   xterm	xterm-like mouse handling.  The mouse generates
			"<Esc>[Mscr", where "scr" is three bytes:
				"s"  = button state
				"c"  = column plus 33
				"r"  = row plus 33
			This only works up to 223 columns!  See "dec",
			"urxvt", and "sgr" for solutions.
	   xterm2	Works like "xterm", but with the xterm reporting the
			mouse position while the mouse is dragged.  This works
			much faster and more precise.  Your xterm must at
			least at patchlevel 88 / XFree 3.3.3 for this to
			work.  See below for how Vim detects this
			automatically.
							*netterm-mouse*
	   netterm	NetTerm mouse handling.  The mouse generates
			"<Esc>}r,c<CR>", where "r,c" are two decimal numbers
			for the row and column.
							*dec-mouse*
	   dec		DEC terminal mouse handling.  The mouse generates a
			rather complex sequence, starting with "<Esc>[".
			This is also available for an Xterm, if it was
			configured with "--enable-dec-locator".
							*jsbterm-mouse*
	   jsbterm	JSB term mouse handling.
							*pterm-mouse*
	   pterm	QNX pterm mouse handling.
							*urxvt-mouse*
	   urxvt	Mouse handling for the urxvt (rxvt-unicode) terminal.
			The mouse works only if the terminal supports this
			encoding style, but it does not have 223 columns limit
			unlike "xterm" or "xterm2".
							*sgr-mouse*
	   sgr		Mouse handling for the terminal that emits SGR-styled
			mouse reporting.  The mouse works even in columns
			beyond 223.  This option is backward compatible with
			"xterm2" because it can also decode "xterm2" style
			mouse codes.

	The mouse handling must be enabled at compile time |+mouse_xterm|
	|+mouse_dec| |+mouse_netterm| |+mouse_jsbterm| |+mouse_urxvt|
	|+mouse_sgr|.
	Only "xterm"(2) is really recognized.  NetTerm mouse codes are always
	recognized, if enabled at compile time.  DEC terminal mouse codes
	are recognized if enabled at compile time, and 'ttymouse' is not
	"xterm", "xterm2", "urxvt" or "sgr" (because dec mouse codes conflict
	with them).
	This option is automatically set to "xterm", when the 'term' option is
	set to a name that starts with "xterm", "mlterm", or "screen", and
	'ttymouse' is not set already.
	Additionally, if vim is compiled with the |+termresponse| feature and
	|t_RV| is set to the escape sequence to request the xterm version
	number, more intelligent detection process runs.
	The "xterm2" value will be set if the xterm version is reported to be
	from 95 to 276.  The "sgr" value will be set if the xterm version is
	277 or highter.
	If you do not want 'ttymouse' to be set to "xterm2" or "sgr"
	automatically, set t_RV to an empty string: >
		:set t_RV=
<
						*'ttyscroll'* *'tsl'*
'ttyscroll' 'tsl'	number	(default 999)
			global
	Maximum number of lines to scroll the screen.  If there are more lines
	to scroll the window is redrawn.  For terminals where scrolling is
	very slow and redrawing is not slow this can be set to a small number,
	e.g., 3, to speed up displaying.

						*'ttytype'* *'tty'*
'ttytype' 'tty'		string	(default from $TERM)
			global
	Alias for 'term', see above.

						*'undodir'* *'udir'*
'undodir' 'udir'	string	(default ".")
			global
			{not in Vi}
			{only when compiled with the |+persistent_undo| feature}
	List of directory names for undo files, separated with commas.
	See |'backupdir'| for details of the format.
	"." means using the directory of the file.  The undo file name for
	"file.txt" is ".file.txt.un~".
	For other directories the file name is the full path of the edited
	file, with path separators replaced with "%".
	When writing: The first directory that exists is used. "." always
	works, no directories after "." will be used for writing.
	When reading all entries are tried to find an undo file.  The first
	undo file that exists is used.  When it cannot be read an error is
	given, no further entry is used.
	See |undo-persistence|.

				*'undofile'* *'noundofile'* *'udf'* *'noudf'*
'undofile' 'udf'	boolean	(default off)
			local to buffer
			{not in Vi}
			{only when compiled with the |+persistent_undo| feature}
	When on, Vim automatically saves undo history to an undo file when
	writing a buffer to a file, and restores undo history from the same
	file on buffer read.
	The directory where the undo file is stored is specified by 'undodir'.
	For more information about this feature see |undo-persistence|.
	The undo file is not read when 'undoreload' causes the buffer from
	before a reload to be saved for undo.
	When 'undofile' is turned off the undo file is NOT deleted.

						*'undolevels'* *'ul'*
'undolevels' 'ul'	number	(default 100, 1000 for Unix, VMS,
						Win32 and OS/2)
			global or local to buffer |global-local|
			{not in Vi}
	Maximum number of changes that can be undone.  Since undo information
	is kept in memory, higher numbers will cause more memory to be used
	(nevertheless, a single change can use an unlimited amount of memory).
	Set to 0 for Vi compatibility: One level of undo and "u" undoes
	itself: >
		set ul=0
<	But you can also get Vi compatibility by including the 'u' flag in
	'cpoptions', and still be able to use CTRL-R to repeat undo.
	Also see |undo-two-ways|.
	Set to -1 for no undo at all.  You might want to do this only for the
	current buffer: >
		setlocal ul=-1
<	This helps when you run out of memory for a single change.
	Also see |clear-undo|.

						*'undoreload'* *'ur'*
'undoreload' 'ur'	number	(default 10000)
			global
			{not in Vi}
	Save the whole buffer for undo when reloading it.  This applies to the
	":e!" command and reloading for when the buffer changed outside of
	Vim. |FileChangedShell|
	The save only happens when this options is negative or when the number
	of lines is smaller than the value of this option.
	Set this option to zero to disable undo for a reload.

	When saving undo for a reload, any undo file is not read.

	Note that this causes the whole buffer to be stored in memory.  Set
	this option to a lower value if you run out of memory.

						*'updatecount'* *'uc'*
'updatecount' 'uc'	number	(default: 200)
			global
			{not in Vi}
	After typing this many characters the swap file will be written to
	disk.  When zero, no swap file will be created at all (see chapter on
	recovery |crash-recovery|).  'updatecount' is set to zero by starting
	Vim with the "-n" option, see |startup|.  When editing in readonly
	mode this option will be initialized to 10000.
	The swapfile can be disabled per buffer with |'swapfile'|.
	When 'updatecount' is set from zero to non-zero, swap files are
	created for all buffers that have 'swapfile' set.  When 'updatecount'
	is set to zero, existing swap files are not deleted.
	Also see |'swapsync'|.
	This option has no meaning in buffers where |'buftype'| is "nofile"
	or "nowrite".

						*'updatetime'* *'ut'*
'updatetime' 'ut'	number	(default 4000)
			global
			{not in Vi}
	If this many milliseconds nothing is typed the swap file will be
	written to disk (see |crash-recovery|).  Also used for the
	|CursorHold| autocommand event.

						*'verbose'* *'vbs'*
'verbose' 'vbs'		number	(default 0)
			global
			{not in Vi, although some versions have a boolean
			verbose option}
	When bigger than zero, Vim will give messages about what it is doing.
	Currently, these messages are given:
	>= 1	When the viminfo file is read or written.
	>= 2	When a file is ":source"'ed.
	>= 5	Every searched tags file and include file.
	>= 8	Files for which a group of autocommands is executed.
	>= 9	Every executed autocommand.
	>= 12	Every executed function.
	>= 13	When an exception is thrown, caught, finished, or discarded.
	>= 14	Anything pending in a ":finally" clause.
	>= 15	Every executed Ex command (truncated at 200 characters).

	This option can also be set with the "-V" argument.  See |-V|.
	This option is also set by the |:verbose| command.

	When the 'verbosefile' option is set then the verbose messages are not
	displayed.

						*'verbosefile'* *'vfile'*
'verbosefile' 'vfile'	string	(default empty)
			global
			{not in Vi}
	When not empty all messages are written in a file with this name.
	When the file exists messages are appended.
	Writing to the file ends when Vim exits or when 'verbosefile' is made
	empty.  Writes are buffered, thus may not show up for some time.
	Setting 'verbosefile' to a new value is like making it empty first.
	The difference with |:redir| is that verbose messages are not
	displayed when 'verbosefile' is set.

						*'viewdir'* *'vdir'*
'viewdir' 'vdir'	string	(default for Amiga, MS-DOS, OS/2 and Win32:
							 "$VIM/vimfiles/view",
				 for Unix: "~/.vim/view",
				 for Macintosh: "$VIM:vimfiles:view"
				 for VMS: "sys$login:vimfiles/view"
				 for RiscOS: "Choices:vimfiles/view")
			global
			{not in Vi}
			{not available when compiled without the |+mksession|
			feature}
	Name of the directory where to store files for |:mkview|.
	This option cannot be set from a |modeline| or in the |sandbox|, for
	security reasons.

						*'viewoptions'* *'vop'*
'viewoptions' 'vop'	string	(default: "folds,options,cursor")
			global
			{not in Vi}
			{not available when compiled without the |+mksession|
			feature}
	Changes the effect of the |:mkview| command.  It is a comma separated
	list of words.  Each word enables saving and restoring something:
	   word		save and restore ~
	   cursor	cursor position in file and in window
	   folds	manually created folds, opened/closed folds and local
			fold options
	   options	options and mappings local to a window or buffer (not
			global values for local options)
	   slash	backslashes in file names replaced with forward
			slashes
	   unix		with Unix end-of-line format (single <NL>), even when
			on Windows or DOS

	"slash" and "unix" are useful on Windows when sharing view files
	with Unix.  The Unix version of Vim cannot source dos format scripts,
	but the Windows version of Vim can source unix format scripts.

				*'viminfo'* *'vi'* *E526* *E527* *E528*
'viminfo' 'vi'		string	(Vi default: "", Vim default for MS-DOS,
				   Windows and OS/2: '100,<50,s10,h,rA:,rB:,
				   for Amiga: '100,<50,s10,h,rdf0:,rdf1:,rdf2:
				   for others: '100,<50,s10,h)
			global
			{not in Vi}
			{not available when compiled without the |+viminfo|
			feature}
	When non-empty, the viminfo file is read upon startup and written
	when exiting Vim (see |viminfo-file|).  The string should be a comma
	separated list of parameters, each consisting of a single character
	identifying the particular parameter, followed by a number or string
	which specifies the value of that parameter.  If a particular
	character is left out, then the default value is used for that
	parameter.  The following is a list of the identifying characters and
	the effect of their value.
	CHAR	VALUE	~
							*viminfo-!*
	!	When included, save and restore global variables that start
		with an uppercase letter, and don't contain a lowercase
		letter.  Thus "KEEPTHIS and "K_L_M" are stored, but "KeepThis"
		and "_K_L_M" are not.  Nested List and Dict items may not be
		read back correctly, you end up with an empty item.
							*viminfo-quote*
	"	Maximum number of lines saved for each register.  Old name of
		the '<' item, with the disadvantage that you need to put a
		backslash before the ", otherwise it will be recognized as the
		start of a comment!
							*viminfo-%*
	%	When included, save and restore the buffer list.  If Vim is
		started with a file name argument, the buffer list is not
		restored.  If Vim is started without a file name argument, the
		buffer list is restored from the viminfo file.  Buffers
		without a file name and buffers for help files are not written
		to the viminfo file.
		When followed by a number, the number specifies the maximum
		number of buffers that are stored.  Without a number all
		buffers are stored.
							*viminfo-'*
	'	Maximum number of previously edited files for which the marks
		are remembered.  This parameter must always be included when
		'viminfo' is non-empty.
		Including this item also means that the |jumplist| and the
		|changelist| are stored in the viminfo file.
							*viminfo-/*
	/	Maximum number of items in the search pattern history to be
		saved.  If non-zero, then the previous search and substitute
		patterns are also saved.  When not included, the value of
		'history' is used.
							*viminfo-:*
	:	Maximum number of items in the command-line history to be
		saved.  When not included, the value of 'history' is used.
							*viminfo-<*
	<	Maximum number of lines saved for each register.  If zero then
		registers are not saved.  When not included, all lines are
		saved.  '"' is the old name for this item.
		Also see the 's' item below: limit specified in Kbyte.
							*viminfo-@*
	@	Maximum number of items in the input-line history to be
		saved.  When not included, the value of 'history' is used.
							*viminfo-c*
	c	When included, convert the text in the viminfo file from the
		'encoding' used when writing the file to the current
		'encoding'.  See |viminfo-encoding|.
							*viminfo-f*
	f	Whether file marks need to be stored.  If zero, file marks ('0
		to '9, 'A to 'Z) are not stored.  When not present or when
		non-zero, they are all stored.  '0 is used for the current
		cursor position (when exiting or when doing ":wviminfo").
							*viminfo-h*
	h	Disable the effect of 'hlsearch' when loading the viminfo
		file.  When not included, it depends on whether ":nohlsearch"
		has been used since the last search command.
							*viminfo-n*
	n	Name of the viminfo file.  The name must immediately follow
		the 'n'.  Must be the last one!  If the "-i" argument was
		given when starting Vim, that file name overrides the one
		given here with 'viminfo'.  Environment variables are expanded
		when opening the file, not when setting the option.
							*viminfo-r*
	r	Removable media.  The argument is a string (up to the next
		',').  This parameter can be given several times.  Each
		specifies the start of a path for which no marks will be
		stored.  This is to avoid removable media.  For MS-DOS you
		could use "ra:,rb:", for Amiga "rdf0:,rdf1:,rdf2:".  You can
		also use it for temp files, e.g., for Unix: "r/tmp".  Case is
		ignored.  Maximum length of each 'r' argument is 50
		characters.
							*viminfo-s*
	s	Maximum size of an item in Kbyte.  If zero then registers are
		not saved.  Currently only applies to registers.  The default
		"s10" will exclude registers with more than 10 Kbyte of text.
		Also see the '<' item above: line count limit.

	Example: >
	    :set viminfo='50,<1000,s100,:0,n~/vim/viminfo
<
	'50		Marks will be remembered for the last 50 files you
			edited.
	<1000		Contents of registers (up to 1000 lines each) will be
			remembered.
	s100		Registers with more than 100 Kbyte text are skipped.
	:0		Command-line history will not be saved.
	n~/vim/viminfo	The name of the file to use is "~/vim/viminfo".
	no /		Since '/' is not specified, the default will be used,
			that is, save all of the search history, and also the
			previous search and substitute patterns.
	no %		The buffer list will not be saved nor read back.
	no h		'hlsearch' highlighting will be restored.

	When setting 'viminfo' from an empty value you can use |:rviminfo| to
	load the contents of the file, this is not done automatically.

	This option cannot be set from a |modeline| or in the |sandbox|, for
	security reasons.

					    *'virtualedit'* *'ve'*
'virtualedit' 've'	string	(default "")
			global
			{not in Vi}
			{not available when compiled without the
			|+virtualedit| feature}
	A comma separated list of these words:
	    block	Allow virtual editing in Visual block mode.
	    insert	Allow virtual editing in Insert mode.
	    all		Allow virtual editing in all modes.
	    onemore	Allow the cursor to move just past the end of the line

	Virtual editing means that the cursor can be positioned where there is
	no actual character.  This can be halfway into a tab or beyond the end
	of the line.  Useful for selecting a rectangle in Visual mode and
	editing a table.
	"onemore" is not the same, it will only allow moving the cursor just
	after the last character of the line.  This makes some commands more
	consistent.  Previously the cursor was always past the end of the line
	if the line was empty.  But it is far from Vi compatible.  It may also
	break some plugins or Vim scripts.  For example because |l| can move
	the cursor after the last character.  Use with care!
	Using the `$` command will move to the last character in the line, not
	past it.  This may actually move the cursor to the left!
	The `g$` command will move to the end of the screen line.
	It doesn't make sense to combine "all" with "onemore", but you will
	not get a warning for it.

			*'visualbell'* *'vb'* *'novisualbell'* *'novb'* *beep*
'visualbell' 'vb'	boolean	(default off)
			global
			{not in Vi}
	Use visual bell instead of beeping.  The terminal code to display the
	visual bell is given with 't_vb'.  When no beep or flash is wanted,
	use ":set vb t_vb=".
	Note: When the GUI starts, 't_vb' is reset to its default value.  You
	might want to set it again in your |gvimrc|.
	In the GUI, 't_vb' defaults to "<Esc>|f", which inverts the display
	for 20 msec.  If you want to use a different time, use "<Esc>|40f",
	where 40 is the time in msec.
	Does not work on the Amiga, you always get a screen flash.
	Also see 'errorbells'.

						*'warn'* *'nowarn'*
'warn'			boolean	(default on)
			global
	Give a warning message when a shell command is used while the buffer
	has been changed.

		     *'weirdinvert'* *'wiv'* *'noweirdinvert'* *'nowiv'*
'weirdinvert' 'wiv'	boolean	(default off)
			global
			{not in Vi}
	This option has the same effect as the 't_xs' terminal option.
	It is provided for backwards compatibility with version 4.x.
	Setting 'weirdinvert' has the effect of making 't_xs' non-empty, and
	vice versa.  Has no effect when the GUI is running.

						*'whichwrap'* *'ww'*
'whichwrap' 'ww'	string	(Vim default: "b,s", Vi default: "")
			global
			{not in Vi}
	Allow specified keys that move the cursor left/right to move to the
	previous/next line when the cursor is on the first/last character in
	the line.  Concatenate characters to allow this for these keys:
		char   key	  mode	~
		 b    <BS>	 Normal and Visual
		 s    <Space>	 Normal and Visual
		 h    "h"	 Normal and Visual (not recommended)
		 l    "l"	 Normal and Visual (not recommended)
		 <    <Left>	 Normal and Visual
		 >    <Right>	 Normal and Visual
		 ~    "~"	 Normal
		 [    <Left>	 Insert and Replace
		 ]    <Right>	 Insert and Replace
	For example: >
		:set ww=<,>,[,]
<	allows wrap only when cursor keys are used.
	When the movement keys are used in combination with a delete or change
	operator, the <EOL> also counts for a character.  This makes "3h"
	different from "3dh" when the cursor crosses the end of a line.  This
	is also true for "x" and "X", because they do the same as "dl" and
	"dh".  If you use this, you may also want to use the mapping
	":map <BS> X" to make backspace delete the character in front of the
	cursor.
	When 'l' is included and it is used after an operator at the end of a
	line then it will not move to the next line.  This makes "dl", "cl",
	"yl" etc. work normally.
	NOTE: This option is set to the Vi default value when 'compatible' is
	set and to the Vim default value when 'compatible' is reset.

						*'wildchar'* *'wc'*
'wildchar' 'wc'		number	(Vim default: <Tab>, Vi default: CTRL-E)
			global
			{not in Vi}
	Character you have to type to start wildcard expansion in the
	command-line, as specified with 'wildmode'.
	More info here: |cmdline-completion|.
	The character is not recognized when used inside a macro.  See
	'wildcharm' for that.
	Although 'wc' is a number option, you can set it to a special key: >
		:set wc=<Esc>
<	NOTE: This option is set to the Vi default value when 'compatible' is
	set and to the Vim default value when 'compatible' is reset.

						*'wildcharm'* *'wcm'*
'wildcharm' 'wcm'	number	(default: none (0))
			global
			{not in Vi}
	'wildcharm' works exactly like 'wildchar', except that it is
	recognized when used inside a macro.  You can find "spare" command-line
	keys suitable for this option by looking at |ex-edit-index|.  Normally
	you'll never actually type 'wildcharm', just use it in mappings that
	automatically invoke completion mode, e.g.: >
		:set wcm=<C-Z>
		:cnoremap ss so $vim/sessions/*.vim<C-Z>
<	Then after typing :ss you can use CTRL-P & CTRL-N.

						*'wildignore'* *'wig'*
'wildignore' 'wig'	string	(default "")
			global
			{not in Vi}
			{not available when compiled without the |+wildignore|
			feature}
	A list of file patterns.  A file that matches with one of these
	patterns is ignored when expanding |wildcards|, completing file or
	directory names, and influences the result of |expand()|, |glob()| and
	|globpath()| unless a flag is passed to disable this.
	The pattern is used like with |:autocmd|, see |autocmd-patterns|.
	Also see 'suffixes'.
	Example: >
		:set wildignore=*.o,*.obj
<	The use of |:set+=| and |:set-=| is preferred when adding or removing
	a pattern from the list.  This avoids problems when a future version
	uses another default.


			*'wildignorecase'* *'wic'* *'nowildignorecase'* *'nowic'*
'wildignorecase' 'wic'	boolean	(default off)
			global
			{not in Vi}
	When set case is ignored when completing file names and directories.
	Has no effect when 'fileignorecase' is set.
	Does not apply when the shell is used to expand wildcards, which
	happens when there are special characters.


				*'wildmenu'* *'wmnu'* *'nowildmenu'* *'nowmnu'*
'wildmenu' 'wmnu'	boolean	(default off)
			global
			{not in Vi}
			{not available if compiled without the |+wildmenu|
			feature}
	When 'wildmenu' is on, command-line completion operates in an enhanced
	mode.  On pressing 'wildchar' (usually <Tab>) to invoke completion,
	the possible matches are shown just above the command line, with the
	first match highlighted (overwriting the status line, if there is
	one).  Keys that show the previous/next match, such as <Tab> or
	CTRL-P/CTRL-N, cause the highlight to move to the appropriate match.
	When 'wildmode' is used, "wildmenu" mode is used where "full" is
	specified.  "longest" and "list" do not start "wildmenu" mode.
	You can check the current mode with |wildmenumode()|.
	If there are more matches than can fit in the line, a ">" is shown on
	the right and/or a "<" is shown on the left.  The status line scrolls
	as needed.
	The "wildmenu" mode is abandoned when a key is hit that is not used
	for selecting a completion.
	While the "wildmenu" is active the following keys have special
	meanings:

	<Left> <Right>	- select previous/next match (like CTRL-P/CTRL-N)
	<Down>		- in filename/menu name completion: move into a
			  subdirectory or submenu.
	<CR>		- in menu completion, when the cursor is just after a
			  dot: move into a submenu.
	<Up>		- in filename/menu name completion: move up into
			  parent directory or parent menu.

	This makes the menus accessible from the console |console-menus|.

	If you prefer the <Left> and <Right> keys to move the cursor instead
	of selecting a different match, use this: >
		:cnoremap <Left> <Space><BS><Left>
		:cnoremap <Right> <Space><BS><Right>
<
	The "WildMenu" highlighting is used for displaying the current match
	|hl-WildMenu|.

						*'wildmode'* *'wim'*
'wildmode' 'wim'	string	(Vim default: "full")
			global
			{not in Vi}
	Completion mode that is used for the character specified with
	'wildchar'.  It is a comma separated list of up to four parts.  Each
	part specifies what to do for each consecutive use of 'wildchar'.  The
	first part specifies the behavior for the first use of 'wildchar',
	The second part for the second use, etc.
	These are the possible values for each part:
	""		Complete only the first match.
	"full"		Complete the next full match.  After the last match,
			the original string is used and then the first match
			again.
	"longest"	Complete till longest common string.  If this doesn't
			result in a longer string, use the next part.
	"longest:full"	Like "longest", but also start 'wildmenu' if it is
			enabled.
	"list"		When more than one match, list all matches.
	"list:full"	When more than one match, list all matches and
			complete first match.
	"list:longest"	When more than one match, list all matches and
			complete till longest common string.
	When there is only a single match, it is fully completed in all cases.

	Examples: >
		:set wildmode=full
<	Complete first full match, next match, etc.  (the default) >
		:set wildmode=longest,full
<	Complete longest common string, then each full match >
		:set wildmode=list:full
<	List all matches and complete each full match >
		:set wildmode=list,full
<	List all matches without completing, then each full match >
		:set wildmode=longest,list
<	Complete longest common string, then list alternatives.
	More info here: |cmdline-completion|.

						*'wildoptions'* *'wop'*
'wildoptions' 'wop'	string	(default "")
			global
			{not in Vi}
			{not available when compiled without the |+wildignore|
			feature}
	A list of words that change how command line completion is done.
	Currently only one word is allowed:
	  tagfile	When using CTRL-D to list matching tags, the kind of
			tag and the file of the tag is listed.	Only one match
			is displayed per line.  Often used tag kinds are:
				d	#define
				f	function
	Also see |cmdline-completion|.

						*'winaltkeys'* *'wak'*
'winaltkeys' 'wak'	string	(default "menu")
			global
			{not in Vi}
			{only used in Win32, Motif, GTK and Photon GUI}
	Some GUI versions allow the access to menu entries by using the ALT
	key in combination with a character that appears underlined in the
	menu.  This conflicts with the use of the ALT key for mappings and
	entering special characters.  This option tells what to do:
	  no	Don't use ALT keys for menus.  ALT key combinations can be
		mapped, but there is no automatic handling.  This can then be
		done with the |:simalt| command.
	  yes	ALT key handling is done by the windowing system.  ALT key
		combinations cannot be mapped.
	  menu	Using ALT in combination with a character that is a menu
		shortcut key, will be handled by the windowing system.  Other
		keys can be mapped.
	If the menu is disabled by excluding 'm' from 'guioptions', the ALT
	key is never used for the menu.
	This option is not used for <F10>; on Win32 and with GTK <F10> will
	select the menu, unless it has been mapped.

						*'window'* *'wi'*
'window' 'wi'		number  (default screen height - 1)
			global
	Window height.  Do not confuse this with the height of the Vim window,
	use 'lines' for that.
	Used for |CTRL-F| and |CTRL-B| when there is only one window and the
	value is smaller than 'lines' minus one.  The screen will scroll
	'window' minus two lines, with a minimum of one.
	When 'window' is equal to 'lines' minus one CTRL-F and CTRL-B scroll
	in a much smarter way, taking care of wrapping lines.
	When resizing the Vim window, the value is smaller than 1 or more than
	or equal to 'lines' it will be set to 'lines' minus 1.
	{Vi also uses the option to specify the number of displayed lines}

						*'winheight'* *'wh'* *E591*
'winheight' 'wh'	number	(default 1)
			global
			{not in Vi}
			{not available when compiled without the |+windows|
			feature}
	Minimal number of lines for the current window.  This is not a hard
	minimum, Vim will use fewer lines if there is not enough room.  If the
	focus goes to a window that is smaller, its size is increased, at the
	cost of the height of other windows.
	Set 'winheight' to a small number for normal editing.
	Set it to 999 to make the current window fill most of the screen.
	Other windows will be only 'winminheight' high.  This has the drawback
	that ":all" will create only two windows.  To avoid "vim -o 1 2 3 4"
	to create only two windows, set the option after startup is done,
	using the |VimEnter| event: >
		au VimEnter * set winheight=999
<	Minimum value is 1.
	The height is not adjusted after one of the commands that change the
	height of the current window.
	'winheight' applies to the current window.  Use 'winminheight' to set
	the minimal height for other windows.

			*'winfixheight'* *'wfh'* *'nowinfixheight'* *'nowfh'*
'winfixheight' 'wfh'	boolean	(default off)
			local to window
			{not in Vi}
			{not available when compiled without the |+windows|
			feature}
	Keep the window height when windows are opened or closed and
	'equalalways' is set.  Also for |CTRL-W_=|.  Set by default for the
	|preview-window| and |quickfix-window|.
	The height may be changed anyway when running out of room.

			*'winfixwidth'* *'wfw'* *'nowinfixwidth'* *'nowfw'*
'winfixwidth' 'wfw'	boolean	(default off)
			local to window
			{not in Vi}
			{not available when compiled without the |+windows|
			feature}
	Keep the window width when windows are opened or closed and
	'equalalways' is set.  Also for |CTRL-W_=|.
	The width may be changed anyway when running out of room.

						*'winminheight'* *'wmh'*
'winminheight' 'wmh'	number	(default 1)
			global
			{not in Vi}
			{not available when compiled without the |+windows|
			feature}
	The minimal height of a window, when it's not the current window.
	This is a hard minimum, windows will never become smaller.
	When set to zero, windows may be "squashed" to zero lines (i.e. just a
	status bar) if necessary.  They will return to at least one line when
	they become active (since the cursor has to have somewhere to go.)
	Use 'winheight' to set the minimal height of the current window.
	This option is only checked when making a window smaller.  Don't use a
	large number, it will cause errors when opening more than a few
	windows.  A value of 0 to 3 is reasonable.

						*'winminwidth'* *'wmw'*
'winminwidth' 'wmw'	number	(default 1)
			global
			{not in Vi}
			{not available when compiled without the |+vertsplit|
			feature}
	The minimal width of a window, when it's not the current window.
	This is a hard minimum, windows will never become smaller.
	When set to zero, windows may be "squashed" to zero columns (i.e. just
	a vertical separator) if necessary.  They will return to at least one
	line when they become active (since the cursor has to have somewhere
	to go.)
	Use 'winwidth' to set the minimal width of the current window.
	This option is only checked when making a window smaller.  Don't use a
	large number, it will cause errors when opening more than a few
	windows.  A value of 0 to 12 is reasonable.

						*'winwidth'* *'wiw'* *E592*
'winwidth' 'wiw'	number	(default 20)
			global
			{not in Vi}
			{not available when compiled without the |+vertsplit|
			feature}
	Minimal number of columns for the current window.  This is not a hard
	minimum, Vim will use fewer columns if there is not enough room.  If
	the current window is smaller, its size is increased, at the cost of
	the width of other windows.  Set it to 999 to make the current window
	always fill the screen.  Set it to a small number for normal editing.
	The width is not adjusted after one of the commands to change the
	width of the current window.
	'winwidth' applies to the current window.  Use 'winminwidth' to set
	the minimal width for other windows.

						*'wrap'* *'nowrap'*
'wrap'			boolean	(default on)
			local to window
			{not in Vi}
	This option changes how text is displayed.  It doesn't change the text
	in the buffer, see 'textwidth' for that.
	When on, lines longer than the width of the window will wrap and
	displaying continues on the next line.  When off lines will not wrap
	and only part of long lines will be displayed.  When the cursor is
	moved to a part that is not shown, the screen will scroll
	horizontally.
	The line will be broken in the middle of a word if necessary.  See
	'linebreak' to get the break at a word boundary.
	To make scrolling horizontally a bit more useful, try this: >
		:set sidescroll=5
		:set listchars+=precedes:<,extends:>
<	See 'sidescroll', 'listchars' and |wrap-off|.
	This option can't be set from a |modeline| when the 'diff' option is
	on.

						*'wrapmargin'* *'wm'*
'wrapmargin' 'wm'	number	(default 0)
			local to buffer
	Number of characters from the right window border where wrapping
	starts.  When typing text beyond this limit, an <EOL> will be inserted
	and inserting continues on the next line.
	Options that add a margin, such as 'number' and 'foldcolumn', cause
	the text width to be further reduced.  This is Vi compatible.
	When 'textwidth' is non-zero, this option is not used.
	See also 'formatoptions' and |ins-textwidth|.  {Vi: works differently
	and less usefully}

				   *'wrapscan'* *'ws'* *'nowrapscan'* *'nows'*
'wrapscan' 'ws'		boolean	(default on)			*E384* *E385*
			global
	Searches wrap around the end of the file.  Also applies to |]s| and
	|[s|, searching for spelling mistakes.

						   *'write'* *'nowrite'*
'write'			boolean	(default on)
			global
			{not in Vi}
	Allows writing files.  When not set, writing a file is not allowed.
	Can be used for a view-only mode, where modifications to the text are
	still allowed.  Can be reset with the |-m| or |-M| command line
	argument.  Filtering text is still possible, even though this requires
	writing a temporary file.

				   *'writeany'* *'wa'* *'nowriteany'* *'nowa'*
'writeany' 'wa'		boolean	(default off)
			global
	Allows writing to any file with no need for "!" override.

			     *'writebackup'* *'wb'* *'nowritebackup'* *'nowb'*
'writebackup' 'wb'	boolean	(default on with |+writebackup| feature, off
					otherwise)
			global
			{not in Vi}
	Make a backup before overwriting a file.  The backup is removed after
	the file was successfully written, unless the 'backup' option is
	also on.
	WARNING: Switching this option off means that when Vim fails to write
	your buffer correctly and then, for whatever reason, Vim exits, you
	lose both the original file and what you were writing.  Only reset
	this option if your file system is almost full and it makes the write
	fail (and make sure not to exit Vim until the write was successful).
	See |backup-table| for another explanation.
	When the 'backupskip' pattern matches, a backup is not made anyway.
	NOTE: This option is set to the default value when 'compatible' is
	set.

						*'writedelay'* *'wd'*
'writedelay' 'wd'	number	(default 0)
			global
			{not in Vi}
	The number of microseconds to wait for each character sent to the
	screen.  When non-zero, characters are sent to the terminal one by
	one.  For MS-DOS pcterm this does not work.  For debugging purposes.

 vim:tw=78:ts=8:ft=help:norl:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   @  *scroll.txt*    For Vim version 7.4.  Last change: 2006 Aug 27


		  VIM REFERENCE MANUAL    by Bram Moolenaar


Scrolling						*scrolling*

These commands move the contents of the window.  If the cursor position is
moved off of the window, the cursor is moved onto the window (with
'scrolloff' screen lines around it).  A page is the number of lines in the
window minus two.  The mnemonics for these commands may be a bit confusing.
Remember that the commands refer to moving the window (the part of the buffer
that you see) upwards or downwards in the buffer.  When the window moves
upwards in the buffer, the text in the window moves downwards on your screen.

See section |03.7| of the user manual for an introduction.

1. Scrolling downwards		|scroll-down|
2. Scrolling upwards		|scroll-up|
3. Scrolling relative to cursor	|scroll-cursor|
4. Scrolling horizontally	|scroll-horizontal|
5. Scrolling synchronously	|scroll-binding|
6. Scrolling with a mouse wheel |scroll-mouse-wheel|

==============================================================================
1. Scrolling downwards					*scroll-down*

The following commands move the edit window (the part of the buffer that you
see) downwards (this means that more lines downwards in the text buffer can be
seen):

							*CTRL-E*
CTRL-E			Scroll window [count] lines downwards in the buffer.
			Mnemonic: Extra lines.

							*CTRL-D*
CTRL-D			Scroll window Downwards in the buffer.  The number of
			lines comes from the 'scroll' option (default: half a
			screen).  If [count] given, first set 'scroll' option
			to [count].  The cursor is moved the same number of
			lines down in the file (if possible; when lines wrap
			and when hitting the end of the file there may be a
			difference).  When the cursor is on the last line of
			the buffer nothing happens and a beep is produced.
			See also 'startofline' option.
			{difference from vi: Vim scrolls 'scroll' screen
			lines, instead of file lines; makes a difference when
			lines wrap}

<S-Down>	or				*<S-Down>* *<kPageDown>*
<PageDown>	or				*<PageDown>* *CTRL-F*
CTRL-F			Scroll window [count] pages Forwards (downwards) in
			the buffer.  See also 'startofline' option.
			When there is only one window the 'window' option
			might be used.

							*z+*
z+			Without [count]: Redraw with the line just below the
			window at the top of the window.  Put the cursor in
			that line, at the first non-blank in the line.
			With [count]: just like "z<CR>".

==============================================================================
2. Scrolling upwards					*scroll-up*

The following commands move the edit window (the part of the buffer that you
see) upwards (this means that more lines upwards in the text buffer can be
seen):

							*CTRL-Y*
CTRL-Y			Scroll window [count] lines upwards in the buffer.
			Note: When using the MS-Windows key bindings CTRL-Y is
			remapped to redo.

							*CTRL-U*
CTRL-U			Scroll window Upwards in the buffer.  The number of
			lines comes from the 'scroll' option (default: half a
			screen).  If [count] given, first set the 'scroll'
			option to [count].  The cursor is moved the same
			number of lines up in the file (if possible; when
			lines wrap and when hitting the end of the file there
			may be a difference).  When the cursor is on the first
			line of the buffer nothing happens and a beep is
			produced.  See also 'startofline' option.
			{difference from vi: Vim scrolls 'scroll' screen
			lines, instead of file lines; makes a difference when
			lines wrap}

<S-Up>		or					*<S-Up>* *<kPageUp>*
<PageUp>	or					*<PageUp>* *CTRL-B*
CTRL-B			Scroll window [count] pages Backwards (upwards) in the
			buffer.  See also 'startofline' option.
			When there is only one window the 'window' option
			might be used.

							*z^*
z^			Without [count]: Redraw with the line just above the
			window at the bottom of the window.  Put the cursor in
			that line, at the first non-blank in the line.
			With [count]: First scroll the text to put the [count]
			line at the bottom of the window, then redraw with the
			line which is now at the top of the window at the
			bottom of the window.  Put the cursor in that line, at
			the first non-blank in the line.

==============================================================================
3. Scrolling relative to cursor				*scroll-cursor*

The following commands reposition the edit window (the part of the buffer that
you see) while keeping the cursor on the same line:

							*z<CR>*
z<CR>			Redraw, line [count] at top of window (default
			cursor line).  Put cursor at first non-blank in the
			line.

							*zt*
zt			Like "z<CR>", but leave the cursor in the same
			column.  {not in Vi}

							*zN<CR>*
z{height}<CR>		Redraw, make window {height} lines tall.  This is
			useful to make the number of lines small when screen
			updating is very slow.  Cannot make the height more
			than the physical screen height.

							*z.*
z.			Redraw, line [count] at center of window (default
			cursor line).  Put cursor at first non-blank in the
			line.

							*zz*
zz			Like "z.", but leave the cursor in the same column.
			Careful: If caps-lock is on, this command becomes
			"ZZ": write buffer and exit!  {not in Vi}

							*z-*
z-			Redraw, line [count] at bottom of window (default
			cursor line).  Put cursor at first non-blank in the
			line.

							*zb*
zb			Like "z-", but leave the cursor in the same column.
			{not in Vi}

==============================================================================
4. Scrolling horizontally				*scroll-horizontal*

For the following four commands the cursor follows the screen.  If the
character that the cursor is on is moved off the screen, the cursor is moved
to the closest character that is on the screen.  The value of 'sidescroll' is
not used.

z<Right>    or						*zl* *z<Right>*
zl			Move the view on the text [count] characters to the
			right, thus scroll the text [count] characters to the
			left.  This only works when 'wrap' is off.  {not in
			Vi}

z<Left>      or						*zh* *z<Left>*
zh			Move the view on the text [count] characters to the
			left, thus scroll the text [count] characters to the
			right.  This only works when 'wrap' is off.  {not in
			Vi}

							*zL*
zL			Move the view on the text half a screenwidth to the
			right, thus scroll the text half a screenwidth to the
			left.  This only works when 'wrap' is off.  {not in
			Vi}

							*zH*
zH			Move the view on the text half a screenwidth to the
			left, thus scroll the text half a screenwidth to the
			right.  This only works when 'wrap' is off.  {not in
			Vi}

For the following two commands the cursor is not moved in the text, only the
text scrolls on the screen.

							*zs*
zs			Scroll the text horizontally to position the cursor
			at the start (left side) of the screen.  This only
			works when 'wrap' is off.  {not in Vi}

							*ze*
ze			Scroll the text horizontally to position the cursor
			at the end (right side) of the screen.  This only
			works when 'wrap' is off.  {not in Vi}

==============================================================================
5. Scrolling synchronously				*scroll-binding*

Occasionally, it is desirable to bind two or more windows together such that
when one window is scrolled, the other windows are also scrolled.  In Vim,
windows can be given this behavior by setting the (window-specific)
'scrollbind' option.  When a window that has 'scrollbind' set is scrolled, all
other 'scrollbind' windows are scrolled the same amount, if possible.  The
behavior of 'scrollbind' can be modified by the 'scrollopt' option.

When using the scrollbars, the binding only happens when scrolling the window
with focus (where the cursor is).  You can use this to avoid scroll-binding
for a moment without resetting options.

When a window also has the 'diff' option set, the scroll-binding uses the
differences between the two buffers to synchronize the position precisely.
Otherwise the following method is used.

							*scrollbind-relative*
Each 'scrollbind' window keeps track of its "relative offset," which can be
thought of as the difference between the current window's vertical scroll
position and the other window's vertical scroll position.  When one of the
'scrollbind' windows is asked to vertically scroll past the beginning or end
limit of its text, the window no longer scrolls, but remembers how far past
the limit it wishes to be.  The window keeps this information so that it can
maintain the same relative offset, regardless of its being asked to scroll
past its buffer's limits.

However, if a 'scrollbind' window that has a relative offset that is past its
buffer's limits is given the cursor focus, the other 'scrollbind' windows must
jump to a location where the current window's relative offset is valid.  This
behavior can be changed by clearing the 'jump' flag from the 'scrollopt'
option.

						*syncbind* *:syncbind* *:sync*
:syncbind		Force all 'scrollbind' windows to have the same
			relative offset.  I.e., when any of the 'scrollbind'
			windows is scrolled to the top of its buffer, all of
			the 'scrollbind' windows will also be at the top of
			their buffers.

							*scrollbind-quickadj*
The 'scrollbind' flag is meaningful when using keyboard commands to vertically
scroll a window, and also meaningful when using the vertical scrollbar of the
window which has the cursor focus.  However, when using the vertical scrollbar
of a window which doesn't have the cursor focus, 'scrollbind' is ignored.
This allows quick adjustment of the relative offset of 'scrollbind' windows.

==============================================================================
6. Scrolling with a mouse wheel				*scroll-mouse-wheel*

When your mouse has a scroll wheel, it should work with Vim in the GUI.  How
it works depends on your system.  It might also work in an xterm
|xterm-mouse-wheel|.  By default only vertical scroll wheels are supported,
but some GUIs also support horizontal scroll wheels.

For the Win32 GUI the scroll action is hard coded.  It works just like
dragging the scrollbar of the current window.  How many lines are scrolled
depends on your mouse driver.  If the scroll action causes input focus
problems, see |intellimouse-wheel-problems|.

For the X11 GUIs (Motif, Athena and GTK) scrolling the wheel generates key
presses <ScrollWheelUp>, <ScrollWheelDown>, <ScrollWheelLeft> and
<ScrollWheelRight>.  For example, if you push the scroll wheel upwards a
<ScrollWheelUp> key press is generated causing the window to scroll upwards
(while the text is actually moving downwards).  The default action for these
keys are:
    <ScrollWheelUp>	    scroll three lines up	*<ScrollWheelUp>*
    <S-ScrollWheelUp>	    scroll one page up		*<S-ScrollWheelUp>*
    <C-ScrollWheelUp>	    scroll one page up		*<C-ScrollWheelUp>*
    <ScrollWheelDown>	    scroll three lines down	*<ScrollWheelDown>*
    <S-ScrollWheelDown>	    scroll one page down	*<S-ScrollWheelDown>*
    <C-ScrollWheelDown>	    scroll one page down	*<C-ScrollWheelDown>*
    <ScrollWheelLeft>	    scroll six columns left	*<ScrollWheelLeft>*
    <S-ScrollWheelLeft>	    scroll one page left	*<S-ScrollWheelLeft>*
    <C-ScrollWheelLeft>	    scroll one page left	*<C-ScrollWheelLeft>*
    <ScrollWheelRight>	    scroll six columns right	*<ScrollWheelRight>*
    <S-ScrollWheelRight>    scroll one page right	*<S-ScrollWheelRight>*
    <C-ScrollWheelRight>    scroll one page right	*<C-ScrollWheelRight>*
This should work in all modes, except when editing the command line.

Note that horizontal scrolling only works if 'nowrap' is set.  Also, unless
the "h" flag in 'guioptions' is set, the cursor moves to the longest visible
line if the cursor line is about to be scrolled off the screen (similarly to
how the horizontal scrollbar works).

You can modify the default behavior by mapping the keys.  For example, to make
the scroll wheel move one line or half a page in Normal mode: >
   :map <ScrollWheelUp> <C-Y>
   :map <S-ScrollWheelUp> <C-U>
   :map <ScrollWheelDown> <C-E>
   :map <S-ScrollWheelDown> <C-D>
You can also use Alt and Ctrl modifiers.

This only works when Vim gets the scroll wheel events, of course.  You can
check if this works with the "xev" program.

When using XFree86, the /etc/XF86Config file should have the correct entry for
your mouse.  For FreeBSD, this entry works for a Logitech scrollmouse: >
    Protocol     "MouseMan"
    Device       "/dev/psm0"
    ZAxisMapping 4 5
See the XFree86 documentation for information.

						*<MouseDown>* *<MouseUp>*
The keys <MouseDown> and <MouseUp> have been deprecated.  Use <ScrollWheelUp>
instead of <MouseDown> and use <ScrollWheelDown> instead of <MouseUp>.

							*xterm-mouse-wheel*
To use the mouse wheel in a new xterm you only have to make the scroll wheel
work in your Xserver, as mentioned above.

To use the mouse wheel in an older xterm you must do this:
1. Make it work in your Xserver, as mentioned above.
2. Add translations for the xterm, so that the xterm will pass a scroll event
   to Vim as an escape sequence.
3. Add mappings in Vim, to interpret the escape sequences as <ScrollWheelDown>
   or <ScrollWheelUp> keys.

You can do the translations by adding this to your ~.Xdefaults file (or other
file where your X resources are kept): >

  XTerm*VT100.Translations:		#override \n\
		s<Btn4Down>: string("0x9b") string("[64~") \n\
		s<Btn5Down>: string("0x9b") string("[65~") \n\
		<Btn4Down>: string("0x9b") string("[62~") \n\
		<Btn5Down>: string("0x9b") string("[63~") \n\
		<Btn4Up>: \n\
		<Btn5Up>:

Add these mappings to your vimrc file: >
	:map <M-Esc>[62~ <ScrollWheelUp>
	:map! <M-Esc>[62~ <ScrollWheelUp>
	:map <M-Esc>[63~ <ScrollWheelDown>
	:map! <M-Esc>[63~ <ScrollWheelDown>
	:map <M-Esc>[64~ <S-ScrollWheelUp>
	:map! <M-Esc>[64~ <S-ScrollWheelUp>
	:map <M-Esc>[65~ <S-ScrollWheelDown>
	:map! <M-Esc>[65~ <S-ScrollWheelDown>
<
 vim:tw=78:ts=8:ft=help:norl:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I    !	change.txt	/*!*
!!	change.txt	/*!!*
#	pattern.txt	/*#*
$	motion.txt	/*$*
$HOME	options.txt	/*$HOME*
$HOME-use	version5.txt	/*$HOME-use*
$MYGVIMRC	gui.txt	/*$MYGVIMRC*
$MYVIMRC	starting.txt	/*$MYVIMRC*
$VIM	starting.txt	/*$VIM*
$VIM-use	version5.txt	/*$VIM-use*
$VIMRUNTIME	starting.txt	/*$VIMRUNTIME*
%	motion.txt	/*%*
%:.	cmdline.txt	/*%:.*
%:8	cmdline.txt	/*%:8*
%:S	cmdline.txt	/*%:S*
%:e	cmdline.txt	/*%:e*
%:gs	cmdline.txt	/*%:gs*
%:h	cmdline.txt	/*%:h*
%:p	cmdline.txt	/*%:p*
%:r	cmdline.txt	/*%:r*
%:s	cmdline.txt	/*%:s*
%:t	cmdline.txt	/*%:t*
%:~	cmdline.txt	/*%:~*
&	change.txt	/*&*
'	motion.txt	/*'*
''	motion.txt	/*''*
'(	motion.txt	/*'(*
')	motion.txt	/*')*
'.	motion.txt	/*'.*
'0	motion.txt	/*'0*
'<	motion.txt	/*'<*
'>	motion.txt	/*'>*
'A	motion.txt	/*'A*
'[	motion.txt	/*'[*
']	motion.txt	/*']*
'^	motion.txt	/*'^*
'a	motion.txt	/*'a*
'acd'	options.txt	/*'acd'*
'ai'	options.txt	/*'ai'*
'akm'	options.txt	/*'akm'*
'al'	options.txt	/*'al'*
'aleph'	options.txt	/*'aleph'*
'allowrevins'	options.txt	/*'allowrevins'*
'altkeymap'	options.txt	/*'altkeymap'*
'ambiwidth'	options.txt	/*'ambiwidth'*
'ambw'	options.txt	/*'ambw'*
'anti'	options.txt	/*'anti'*
'antialias'	options.txt	/*'antialias'*
'ap'	vi_diff.txt	/*'ap'*
'ar'	options.txt	/*'ar'*
'arab'	options.txt	/*'arab'*
'arabic'	options.txt	/*'arabic'*
'arabicshape'	options.txt	/*'arabicshape'*
'ari'	options.txt	/*'ari'*
'arshape'	options.txt	/*'arshape'*
'as'	todo.txt	/*'as'*
'autochdir'	options.txt	/*'autochdir'*
'autoindent'	options.txt	/*'autoindent'*
'autoprint'	vi_diff.txt	/*'autoprint'*
'autoread'	options.txt	/*'autoread'*
'autosave'	todo.txt	/*'autosave'*
'autowrite'	options.txt	/*'autowrite'*
'autowriteall'	options.txt	/*'autowriteall'*
'aw'	options.txt	/*'aw'*
'awa'	options.txt	/*'awa'*
'background'	options.txt	/*'background'*
'backspace'	options.txt	/*'backspace'*
'backup'	options.txt	/*'backup'*
'backupcopy'	options.txt	/*'backupcopy'*
'backupdir'	options.txt	/*'backupdir'*
'backupext'	options.txt	/*'backupext'*
'backupskip'	options.txt	/*'backupskip'*
'balloondelay'	options.txt	/*'balloondelay'*
'ballooneval'	options.txt	/*'ballooneval'*
'balloonexpr'	options.txt	/*'balloonexpr'*
'bdir'	options.txt	/*'bdir'*
'bdlay'	options.txt	/*'bdlay'*
'beautify'	vi_diff.txt	/*'beautify'*
'beval'	options.txt	/*'beval'*
'bex'	options.txt	/*'bex'*
'bexpr'	options.txt	/*'bexpr'*
'bf'	vi_diff.txt	/*'bf'*
'bg'	options.txt	/*'bg'*
'bh'	options.txt	/*'bh'*
'bin'	options.txt	/*'bin'*
'binary'	options.txt	/*'binary'*
'biosk'	options.txt	/*'biosk'*
'bioskey'	options.txt	/*'bioskey'*
'bk'	options.txt	/*'bk'*
'bkc'	options.txt	/*'bkc'*
'bl'	options.txt	/*'bl'*
'bomb'	options.txt	/*'bomb'*
'breakat'	options.txt	/*'breakat'*
'breakindent'	options.txt	/*'breakindent'*
'breakindentopt'	options.txt	/*'breakindentopt'*
'bri'	options.txt	/*'bri'*
'briopt'	options.txt	/*'briopt'*
'brk'	options.txt	/*'brk'*
'browsedir'	options.txt	/*'browsedir'*
'bs'	options.txt	/*'bs'*
'bsdir'	options.txt	/*'bsdir'*
'bsk'	options.txt	/*'bsk'*
'bt'	options.txt	/*'bt'*
'bufhidden'	options.txt	/*'bufhidden'*
'buflisted'	options.txt	/*'buflisted'*
'buftype'	options.txt	/*'buftype'*
'casemap'	options.txt	/*'casemap'*
'cb'	options.txt	/*'cb'*
'cc'	options.txt	/*'cc'*
'ccv'	options.txt	/*'ccv'*
'cd'	options.txt	/*'cd'*
'cdpath'	options.txt	/*'cdpath'*
'cedit'	options.txt	/*'cedit'*
'cf'	options.txt	/*'cf'*
'cfu'	options.txt	/*'cfu'*
'ch'	options.txt	/*'ch'*
'character'	intro.txt	/*'character'*
'charconvert'	options.txt	/*'charconvert'*
'ci'	options.txt	/*'ci'*
'cin'	options.txt	/*'cin'*
'cindent'	options.txt	/*'cindent'*
'cink'	options.txt	/*'cink'*
'cinkeys'	options.txt	/*'cinkeys'*
'cino'	options.txt	/*'cino'*
'cinoptions'	options.txt	/*'cinoptions'*
'cinw'	options.txt	/*'cinw'*
'cinwords'	options.txt	/*'cinwords'*
'clipboard'	options.txt	/*'clipboard'*
'cm'	options.txt	/*'cm'*
'cmdheight'	options.txt	/*'cmdheight'*
'cmdwinheight'	options.txt	/*'cmdwinheight'*
'cmp'	options.txt	/*'cmp'*
'cms'	options.txt	/*'cms'*
'co'	options.txt	/*'co'*
'cocu'	options.txt	/*'cocu'*
'cole'	options.txt	/*'cole'*
'colorcolumn'	options.txt	/*'colorcolumn'*
'columns'	options.txt	/*'columns'*
'com'	options.txt	/*'com'*
'comments'	options.txt	/*'comments'*
'commentstring'	options.txt	/*'commentstring'*
'compatible'	options.txt	/*'compatible'*
'complete'	options.txt	/*'complete'*
'completefunc'	options.txt	/*'completefunc'*
'completeopt'	options.txt	/*'completeopt'*
'concealcursor'	options.txt	/*'concealcursor'*
'conceallevel'	options.txt	/*'conceallevel'*
'confirm'	options.txt	/*'confirm'*
'consk'	options.txt	/*'consk'*
'conskey'	options.txt	/*'conskey'*
'copyindent'	options.txt	/*'copyindent'*
'cot'	options.txt	/*'cot'*
'cp'	options.txt	/*'cp'*
'cpo'	options.txt	/*'cpo'*
'cpoptions'	options.txt	/*'cpoptions'*
'cpt'	options.txt	/*'cpt'*
'crb'	options.txt	/*'crb'*
'cryptmethod'	options.txt	/*'cryptmethod'*
'cscopepathcomp'	options.txt	/*'cscopepathcomp'*
'cscopeprg'	options.txt	/*'cscopeprg'*
'cscopequickfix'	options.txt	/*'cscopequickfix'*
'cscoperelative'	options.txt	/*'cscoperelative'*
'cscopetag'	options.txt	/*'cscopetag'*
'cscopetagorder'	options.txt	/*'cscopetagorder'*
'cscopeverbose'	options.txt	/*'cscopeverbose'*
'cspc'	options.txt	/*'cspc'*
'csprg'	options.txt	/*'csprg'*
'csqf'	options.txt	/*'csqf'*
'csre'	options.txt	/*'csre'*
'cst'	options.txt	/*'cst'*
'csto'	options.txt	/*'csto'*
'csverb'	options.txt	/*'csverb'*
'cuc'	options.txt	/*'cuc'*
'cul'	options.txt	/*'cul'*
'cursorbind'	options.txt	/*'cursorbind'*
'cursorcolumn'	options.txt	/*'cursorcolumn'*
'cursorline'	options.txt	/*'cursorline'*
'cwh'	options.txt	/*'cwh'*
'debug'	options.txt	/*'debug'*
'deco'	options.txt	/*'deco'*
'def'	options.txt	/*'def'*
'define'	options.txt	/*'define'*
'delcombine'	options.txt	/*'delcombine'*
'dex'	options.txt	/*'dex'*
'dg'	options.txt	/*'dg'*
'dict'	options.txt	/*'dict'*
'dictionary'	options.txt	/*'dictionary'*
'diff'	options.txt	/*'diff'*
'diffexpr'	options.txt	/*'diffexpr'*
'diffopt'	options.txt	/*'diffopt'*
'digraph'	options.txt	/*'digraph'*
'dip'	options.txt	/*'dip'*
'dir'	options.txt	/*'dir'*
'directory'	options.txt	/*'directory'*
'display'	options.txt	/*'display'*
'dy'	options.txt	/*'dy'*
'ea'	options.txt	/*'ea'*
'ead'	options.txt	/*'ead'*
'eadirection'	options.txt	/*'eadirection'*
'eb'	options.txt	/*'eb'*
'ed'	options.txt	/*'ed'*
'edcompatible'	options.txt	/*'edcompatible'*
'ef'	options.txt	/*'ef'*
'efm'	options.txt	/*'efm'*
'ei'	options.txt	/*'ei'*
'ek'	options.txt	/*'ek'*
'enc'	options.txt	/*'enc'*
'encoding'	options.txt	/*'encoding'*
'endofline'	options.txt	/*'endofline'*
'eol'	options.txt	/*'eol'*
'ep'	options.txt	/*'ep'*
'equalalways'	options.txt	/*'equalalways'*
'equalprg'	options.txt	/*'equalprg'*
'errorbells'	options.txt	/*'errorbells'*
'errorfile'	options.txt	/*'errorfile'*
'errorformat'	options.txt	/*'errorformat'*
'esckeys'	options.txt	/*'esckeys'*
'et'	options.txt	/*'et'*
'eventignore'	options.txt	/*'eventignore'*
'ex'	options.txt	/*'ex'*
'expandtab'	options.txt	/*'expandtab'*
'exrc'	options.txt	/*'exrc'*
'fcl'	options.txt	/*'fcl'*
'fcs'	options.txt	/*'fcs'*
'fdc'	options.txt	/*'fdc'*
'fde'	options.txt	/*'fde'*
'fdi'	options.txt	/*'fdi'*
'fdl'	options.txt	/*'fdl'*
'fdls'	options.txt	/*'fdls'*
'fdm'	options.txt	/*'fdm'*
'fdn'	options.txt	/*'fdn'*
'fdo'	options.txt	/*'fdo'*
'fdt'	options.txt	/*'fdt'*
'fe'	options.txt	/*'fe'*
'fen'	options.txt	/*'fen'*
'fenc'	options.txt	/*'fenc'*
'fencs'	options.txt	/*'fencs'*
'fex'	options.txt	/*'fex'*
'ff'	options.txt	/*'ff'*
'ffs'	options.txt	/*'ffs'*
'fic'	options.txt	/*'fic'*
'fileencoding'	options.txt	/*'fileencoding'*
'fileencodings'	options.txt	/*'fileencodings'*
'fileformat'	options.txt	/*'fileformat'*
'fileformats'	options.txt	/*'fileformats'*
'fileignorecase'	options.txt	/*'fileignorecase'*
'filetype'	options.txt	/*'filetype'*
'fillchars'	options.txt	/*'fillchars'*
'fk'	options.txt	/*'fk'*
'fkmap'	options.txt	/*'fkmap'*
'fl'	vi_diff.txt	/*'fl'*
'flash'	vi_diff.txt	/*'flash'*
'flp'	options.txt	/*'flp'*
'fml'	options.txt	/*'fml'*
'fmr'	options.txt	/*'fmr'*
'fo'	options.txt	/*'fo'*
'foldclose'	options.txt	/*'foldclose'*
'foldcolumn'	options.txt	/*'foldcolumn'*
'foldenable'	options.txt	/*'foldenable'*
'foldexpr'	options.txt	/*'foldexpr'*
'foldignore'	options.txt	/*'foldignore'*
'foldlevel'	options.txt	/*'foldlevel'*
'foldlevelstart'	options.txt	/*'foldlevelstart'*
'foldmarker'	options.txt	/*'foldmarker'*
'foldmethod'	options.txt	/*'foldmethod'*
'foldminlines'	options.txt	/*'foldminlines'*
'foldnestmax'	options.txt	/*'foldnestmax'*
'foldopen'	options.txt	/*'foldopen'*
'foldtext'	options.txt	/*'foldtext'*
'formatexpr'	options.txt	/*'formatexpr'*
'formatlistpat'	options.txt	/*'formatlistpat'*
'formatoptions'	options.txt	/*'formatoptions'*
'formatprg'	options.txt	/*'formatprg'*
'fp'	options.txt	/*'fp'*
'fs'	options.txt	/*'fs'*
'fsync'	options.txt	/*'fsync'*
'ft'	options.txt	/*'ft'*
'gcr'	options.txt	/*'gcr'*
'gd'	options.txt	/*'gd'*
'gdefault'	options.txt	/*'gdefault'*
'gfm'	options.txt	/*'gfm'*
'gfn'	options.txt	/*'gfn'*
'gfs'	options.txt	/*'gfs'*
'gfw'	options.txt	/*'gfw'*
'ghr'	options.txt	/*'ghr'*
'go'	options.txt	/*'go'*
'go-A'	options.txt	/*'go-A'*
'go-F'	options.txt	/*'go-F'*
'go-L'	options.txt	/*'go-L'*
'go-M'	options.txt	/*'go-M'*
'go-P'	options.txt	/*'go-P'*
'go-R'	options.txt	/*'go-R'*
'go-T'	options.txt	/*'go-T'*
'go-a'	options.txt	/*'go-a'*
'go-b'	options.txt	/*'go-b'*
'go-c'	options.txt	/*'go-c'*
'go-e'	options.txt	/*'go-e'*
'go-f'	options.txt	/*'go-f'*
'go-g'	options.txt	/*'go-g'*
'go-h'	options.txt	/*'go-h'*
'go-i'	options.txt	/*'go-i'*
'go-l'	options.txt	/*'go-l'*
'go-m'	options.txt	/*'go-m'*
'go-p'	options.txt	/*'go-p'*
'go-r'	options.txt	/*'go-r'*
'go-t'	options.txt	/*'go-t'*
'go-v'	options.txt	/*'go-v'*
'gp'	options.txt	/*'gp'*
'gr'	vi_diff.txt	/*'gr'*
'graphic'	vi_diff.txt	/*'graphic'*
'grepformat'	options.txt	/*'grepformat'*
'grepprg'	options.txt	/*'grepprg'*
'gtl'	options.txt	/*'gtl'*
'gtt'	options.txt	/*'gtt'*
'guicursor'	options.txt	/*'guicursor'*
'guifont'	options.txt	/*'guifont'*
'guifontset'	options.txt	/*'guifontset'*
'guifontwide'	options.txt	/*'guifontwide'*
'guiheadroom'	options.txt	/*'guiheadroom'*
'guioptions'	options.txt	/*'guioptions'*
'guipty'	options.txt	/*'guipty'*
'guitablabel'	options.txt	/*'guitablabel'*
'guitabtooltip'	options.txt	/*'guitabtooltip'*
'hardtabs'	vi_diff.txt	/*'hardtabs'*
'helpfile'	options.txt	/*'helpfile'*
'helpheight'	options.txt	/*'helpheight'*
'helplang'	options.txt	/*'helplang'*
'hf'	options.txt	/*'hf'*
'hh'	options.txt	/*'hh'*
'hi'	options.txt	/*'hi'*
'hid'	options.txt	/*'hid'*
'hidden'	options.txt	/*'hidden'*
'highlight'	options.txt	/*'highlight'*
'history'	options.txt	/*'history'*
'hk'	options.txt	/*'hk'*
'hkmap'	options.txt	/*'hkmap'*
'hkmapp'	options.txt	/*'hkmapp'*
'hkp'	options.txt	/*'hkp'*
'hl'	options.txt	/*'hl'*
'hlg'	options.txt	/*'hlg'*
'hls'	options.txt	/*'hls'*
'hlsearch'	options.txt	/*'hlsearch'*
'ht'	vi_diff.txt	/*'ht'*
'ic'	options.txt	/*'ic'*
'icon'	options.txt	/*'icon'*
'iconstring'	options.txt	/*'iconstring'*
'ignorecase'	options.txt	/*'ignorecase'*
'im'	options.txt	/*'im'*
'imactivatefunc'	options.txt	/*'imactivatefunc'*
'imactivatekey'	options.txt	/*'imactivatekey'*
'imaf'	options.txt	/*'imaf'*
'imak'	options.txt	/*'imak'*
'imc'	options.txt	/*'imc'*
'imcmdline'	options.txt	/*'imcmdline'*
'imd'	options.txt	/*'imd'*
'imdisable'	options.txt	/*'imdisable'*
'imi'	options.txt	/*'imi'*
'iminsert'	options.txt	/*'iminsert'*
'ims'	options.txt	/*'ims'*
'imsearch'	options.txt	/*'imsearch'*
'imsf'	options.txt	/*'imsf'*
'imstatusfunc'	options.txt	/*'imstatusfunc'*
'inc'	options.txt	/*'inc'*
'include'	options.txt	/*'include'*
'includeexpr'	options.txt	/*'includeexpr'*
'incsearch'	options.txt	/*'incsearch'*
'inde'	options.txt	/*'inde'*
'indentexpr'	options.txt	/*'indentexpr'*
'indentkeys'	options.txt	/*'indentkeys'*
'indk'	options.txt	/*'indk'*
'inex'	options.txt	/*'inex'*
'inf'	options.txt	/*'inf'*
'infercase'	options.txt	/*'infercase'*
'insertmode'	options.txt	/*'insertmode'*
'is'	options.txt	/*'is'*
'isf'	options.txt	/*'isf'*
'isfname'	options.txt	/*'isfname'*
'isi'	options.txt	/*'isi'*
'isident'	options.txt	/*'isident'*
'isk'	options.txt	/*'isk'*
'iskeyword'	options.txt	/*'iskeyword'*
'isp'	options.txt	/*'isp'*
'isprint'	options.txt	/*'isprint'*
'joinspaces'	options.txt	/*'joinspaces'*
'js'	options.txt	/*'js'*
'key'	options.txt	/*'key'*
'keymap'	options.txt	/*'keymap'*
'keymodel'	options.txt	/*'keymodel'*
'keywordprg'	options.txt	/*'keywordprg'*
'km'	options.txt	/*'km'*
'kmp'	options.txt	/*'kmp'*
'kp'	options.txt	/*'kp'*
'langmap'	options.txt	/*'langmap'*
'langmenu'	options.txt	/*'langmenu'*
'laststatus'	options.txt	/*'laststatus'*
'lazyredraw'	options.txt	/*'lazyredraw'*
'lbr'	options.txt	/*'lbr'*
'lcs'	options.txt	/*'lcs'*
'linebreak'	options.txt	/*'linebreak'*
'lines'	options.txt	/*'lines'*
'linespace'	options.txt	/*'linespace'*
'lisp'	options.txt	/*'lisp'*
'lispwords'	options.txt	/*'lispwords'*
'list'	options.txt	/*'list'*
'listchars'	options.txt	/*'listchars'*
'lm'	options.txt	/*'lm'*
'lmap'	options.txt	/*'lmap'*
'loadplugins'	options.txt	/*'loadplugins'*
'lpl'	options.txt	/*'lpl'*
'ls'	options.txt	/*'ls'*
'lsp'	options.txt	/*'lsp'*
'lw'	options.txt	/*'lw'*
'lz'	options.txt	/*'lz'*
'ma'	options.txt	/*'ma'*
'macatsui'	options.txt	/*'macatsui'*
'magic'	options.txt	/*'magic'*
'makeef'	options.txt	/*'makeef'*
'makeprg'	options.txt	/*'makeprg'*
'mat'	options.txt	/*'mat'*
'matchpairs'	options.txt	/*'matchpairs'*
'matchtime'	options.txt	/*'matchtime'*
'maxcombine'	options.txt	/*'maxcombine'*
'maxfuncdepth'	options.txt	/*'maxfuncdepth'*
'maxmapdepth'	options.txt	/*'maxmapdepth'*
'maxmem'	options.txt	/*'maxmem'*
'maxmempattern'	options.txt	/*'maxmempattern'*
'maxmemtot'	options.txt	/*'maxmemtot'*
'mco'	options.txt	/*'mco'*
'mef'	options.txt	/*'mef'*
'menuitems'	options.txt	/*'menuitems'*
'mesg'	vi_diff.txt	/*'mesg'*
'mfd'	options.txt	/*'mfd'*
'mh'	options.txt	/*'mh'*
'mis'	options.txt	/*'mis'*
'mkspellmem'	options.txt	/*'mkspellmem'*
'ml'	options.txt	/*'ml'*
'mls'	options.txt	/*'mls'*
'mm'	options.txt	/*'mm'*
'mmd'	options.txt	/*'mmd'*
'mmp'	options.txt	/*'mmp'*
'mmt'	options.txt	/*'mmt'*
'mod'	options.txt	/*'mod'*
'modeline'	options.txt	/*'modeline'*
'modelines'	options.txt	/*'modelines'*
'modifiable'	options.txt	/*'modifiable'*
'modified'	options.txt	/*'modified'*
'more'	options.txt	/*'more'*
'mouse'	options.txt	/*'mouse'*
'mousef'	options.txt	/*'mousef'*
'mousefocus'	options.txt	/*'mousefocus'*
'mousehide'	options.txt	/*'mousehide'*
'mousem'	options.txt	/*'mousem'*
'mousemodel'	options.txt	/*'mousemodel'*
'mouses'	options.txt	/*'mouses'*
'mouseshape'	options.txt	/*'mouseshape'*
'mouset'	options.txt	/*'mouset'*
'mousetime'	options.txt	/*'mousetime'*
'mp'	options.txt	/*'mp'*
'mps'	options.txt	/*'mps'*
'msm'	options.txt	/*'msm'*
'mzq'	options.txt	/*'mzq'*
'mzquantum'	options.txt	/*'mzquantum'*
'nf'	options.txt	/*'nf'*
'noacd'	options.txt	/*'noacd'*
'noai'	options.txt	/*'noai'*
'noakm'	options.txt	/*'noakm'*
'noallowrevins'	options.txt	/*'noallowrevins'*
'noaltkeymap'	options.txt	/*'noaltkeymap'*
'noanti'	options.txt	/*'noanti'*
'noantialias'	options.txt	/*'noantialias'*
'noar'	options.txt	/*'noar'*
'noarab'	options.txt	/*'noarab'*
'noarabic'	options.txt	/*'noarabic'*
'noarabicshape'	options.txt	/*'noarabicshape'*
'noari'	options.txt	/*'noari'*
'noarshape'	options.txt	/*'noarshape'*
'noas'	todo.txt	/*'noas'*
'noautochdir'	options.txt	/*'noautochdir'*
'noautoindent'	options.txt	/*'noautoindent'*
'noautoread'	options.txt	/*'noautoread'*
'noautosave'	todo.txt	/*'noautosave'*
'noautowrite'	options.txt	/*'noautowrite'*
'noautowriteall'	options.txt	/*'noautowriteall'*
'noaw'	options.txt	/*'noaw'*
'noawa'	options.txt	/*'noawa'*
'nobackup'	options.txt	/*'nobackup'*
'noballooneval'	options.txt	/*'noballooneval'*
'nobeval'	options.txt	/*'nobeval'*
'nobin'	options.txt	/*'nobin'*
'nobinary'	options.txt	/*'nobinary'*
'nobiosk'	options.txt	/*'nobiosk'*
'nobioskey'	options.txt	/*'nobioskey'*
'nobk'	options.txt	/*'nobk'*
'nobl'	options.txt	/*'nobl'*
'nobomb'	options.txt	/*'nobomb'*
'nobuflisted'	options.txt	/*'nobuflisted'*
'nocf'	options.txt	/*'nocf'*
'noci'	options.txt	/*'noci'*
'nocin'	options.txt	/*'nocin'*
'nocindent'	options.txt	/*'nocindent'*
'nocompatible'	options.txt	/*'nocompatible'*
'noconfirm'	options.txt	/*'noconfirm'*
'noconsk'	options.txt	/*'noconsk'*
'noconskey'	options.txt	/*'noconskey'*
'nocopyindent'	options.txt	/*'nocopyindent'*
'nocp'	options.txt	/*'nocp'*
'nocrb'	options.txt	/*'nocrb'*
'nocscoperelative'	options.txt	/*'nocscoperelative'*
'nocscopetag'	options.txt	/*'nocscopetag'*
'nocscopeverbose'	options.txt	/*'nocscopeverbose'*
'nocsre'	options.txt	/*'nocsre'*
'nocst'	options.txt	/*'nocst'*
'nocsverb'	options.txt	/*'nocsverb'*
'nocuc'	options.txt	/*'nocuc'*
'nocul'	options.txt	/*'nocul'*
'nocursorbind'	options.txt	/*'nocursorbind'*
'nocursorcolumn'	options.txt	/*'nocursorcolumn'*
'nocursorline'	options.txt	/*'nocursorline'*
'nodeco'	options.txt	/*'nodeco'*
'nodelcombine'	options.txt	/*'nodelcombine'*
'nodg'	options.txt	/*'nodg'*
'nodiff'	options.txt	/*'nodiff'*
'nodigraph'	options.txt	/*'nodigraph'*
'noea'	options.txt	/*'noea'*
'noeb'	options.txt	/*'noeb'*
'noed'	options.txt	/*'noed'*
'noedcompatible'	options.txt	/*'noedcompatible'*
'noek'	options.txt	/*'noek'*
'noendofline'	options.txt	/*'noendofline'*
'noeol'	options.txt	/*'noeol'*
'noequalalways'	options.txt	/*'noequalalways'*
'noerrorbells'	options.txt	/*'noerrorbells'*
'noesckeys'	options.txt	/*'noesckeys'*
'noet'	options.txt	/*'noet'*
'noex'	options.txt	/*'noex'*
'noexpandtab'	options.txt	/*'noexpandtab'*
'noexrc'	options.txt	/*'noexrc'*
'nofen'	options.txt	/*'nofen'*
'nofic'	options.txt	/*'nofic'*
'nofileignorecase'	options.txt	/*'nofileignorecase'*
'nofk'	options.txt	/*'nofk'*
'nofkmap'	options.txt	/*'nofkmap'*
'nofoldenable'	options.txt	/*'nofoldenable'*
'nogd'	options.txt	/*'nogd'*
'nogdefault'	options.txt	/*'nogdefault'*
'noguipty'	options.txt	/*'noguipty'*
'nohid'	options.txt	/*'nohid'*
'nohidden'	options.txt	/*'nohidden'*
'nohk'	options.txt	/*'nohk'*
'nohkmap'	options.txt	/*'nohkmap'*
'nohkmapp'	options.txt	/*'nohkmapp'*
'nohkp'	options.txt	/*'nohkp'*
'nohls'	options.txt	/*'nohls'*
'nohlsearch'	options.txt	/*'nohlsearch'*
'noic'	options.txt	/*'noic'*
'noicon'	options.txt	/*'noicon'*
'noignorecase'	options.txt	/*'noignorecase'*
'noim'	options.txt	/*'noim'*
'noimc'	options.txt	/*'noimc'*
'noimcmdline'	options.txt	/*'noimcmdline'*
'noimd'	options.txt	/*'noimd'*
'noimdisable'	options.txt	/*'noimdisable'*
'noincsearch'	options.txt	/*'noincsearch'*
'noinf'	options.txt	/*'noinf'*
'noinfercase'	options.txt	/*'noinfercase'*
'noinsertmode'	options.txt	/*'noinsertmode'*
'nois'	options.txt	/*'nois'*
'nojoinspaces'	options.txt	/*'nojoinspaces'*
'nojs'	options.txt	/*'nojs'*
'nolazyredraw'	options.txt	/*'nolazyredraw'*
'nolbr'	options.txt	/*'nolbr'*
'nolinebreak'	options.txt	/*'nolinebreak'*
'nolisp'	options.txt	/*'nolisp'*
'nolist'	options.txt	/*'nolist'*
'noloadplugins'	options.txt	/*'noloadplugins'*
'nolpl'	options.txt	/*'nolpl'*
'nolz'	options.txt	/*'nolz'*
'noma'	options.txt	/*'noma'*
'nomacatsui'	options.txt	/*'nomacatsui'*
'nomagic'	options.txt	/*'nomagic'*
'nomh'	options.txt	/*'nomh'*
'noml'	options.txt	/*'noml'*
'nomod'	options.txt	/*'nomod'*
'nomodeline'	options.txt	/*'nomodeline'*
'nomodifiable'	options.txt	/*'nomodifiable'*
'nomodified'	options.txt	/*'nomodified'*
'nomore'	options.txt	/*'nomore'*
'nomousef'	options.txt	/*'nomousef'*
'nomousefocus'	options.txt	/*'nomousefocus'*
'nomousehide'	options.txt	/*'nomousehide'*
'nonu'	options.txt	/*'nonu'*
'nonumber'	options.txt	/*'nonumber'*
'noodev'	options.txt	/*'noodev'*
'noopendevice'	options.txt	/*'noopendevice'*
'nopaste'	options.txt	/*'nopaste'*
'nopi'	options.txt	/*'nopi'*
'nopreserveindent'	options.txt	/*'nopreserveindent'*
'nopreviewwindow'	options.txt	/*'nopreviewwindow'*
'noprompt'	options.txt	/*'noprompt'*
'nopvw'	options.txt	/*'nopvw'*
'noreadonly'	options.txt	/*'noreadonly'*
'norelativenumber'	options.txt	/*'norelativenumber'*
'noremap'	options.txt	/*'noremap'*
'norestorescreen'	options.txt	/*'norestorescreen'*
'norevins'	options.txt	/*'norevins'*
'nori'	options.txt	/*'nori'*
'norightleft'	options.txt	/*'norightleft'*
'norl'	options.txt	/*'norl'*
'nornu'	options.txt	/*'nornu'*
'noro'	options.txt	/*'noro'*
'nors'	options.txt	/*'nors'*
'noru'	options.txt	/*'noru'*
'noruler'	options.txt	/*'noruler'*
'nosb'	options.txt	/*'nosb'*
'nosc'	options.txt	/*'nosc'*
'noscb'	options.txt	/*'noscb'*
'noscrollbind'	options.txt	/*'noscrollbind'*
'noscs'	options.txt	/*'noscs'*
'nosecure'	options.txt	/*'nosecure'*
'nosft'	options.txt	/*'nosft'*
'noshellslash'	options.txt	/*'noshellslash'*
'noshelltemp'	options.txt	/*'noshelltemp'*
'noshiftround'	options.txt	/*'noshiftround'*
'noshortname'	options.txt	/*'noshortname'*
'noshowcmd'	options.txt	/*'noshowcmd'*
'noshowfulltag'	options.txt	/*'noshowfulltag'*
'noshowmatch'	options.txt	/*'noshowmatch'*
'noshowmode'	options.txt	/*'noshowmode'*
'nosi'	options.txt	/*'nosi'*
'nosm'	options.txt	/*'nosm'*
'nosmartcase'	options.txt	/*'nosmartcase'*
'nosmartindent'	options.txt	/*'nosmartindent'*
'nosmarttab'	options.txt	/*'nosmarttab'*
'nosmd'	options.txt	/*'nosmd'*
'nosn'	options.txt	/*'nosn'*
'nosol'	options.txt	/*'nosol'*
'nospell'	options.txt	/*'nospell'*
'nosplitbelow'	options.txt	/*'nosplitbelow'*
'nosplitright'	options.txt	/*'nosplitright'*
'nospr'	options.txt	/*'nospr'*
'nosr'	options.txt	/*'nosr'*
'nossl'	options.txt	/*'nossl'*
'nosta'	options.txt	/*'nosta'*
'nostartofline'	options.txt	/*'nostartofline'*
'nostmp'	options.txt	/*'nostmp'*
'noswapfile'	options.txt	/*'noswapfile'*
'noswf'	options.txt	/*'noswf'*
'nota'	options.txt	/*'nota'*
'notagbsearch'	options.txt	/*'notagbsearch'*
'notagrelative'	options.txt	/*'notagrelative'*
'notagstack'	options.txt	/*'notagstack'*
'notbi'	options.txt	/*'notbi'*
'notbidi'	options.txt	/*'notbidi'*
'notbs'	options.txt	/*'notbs'*
'notermbidi'	options.txt	/*'notermbidi'*
'noterse'	options.txt	/*'noterse'*
'notextauto'	options.txt	/*'notextauto'*
'notextmode'	options.txt	/*'notextmode'*
'notf'	options.txt	/*'notf'*
'notgst'	options.txt	/*'notgst'*
'notildeop'	options.txt	/*'notildeop'*
'notimeout'	options.txt	/*'notimeout'*
'notitle'	options.txt	/*'notitle'*
'noto'	options.txt	/*'noto'*
'notop'	options.txt	/*'notop'*
'notr'	options.txt	/*'notr'*
'nottimeout'	options.txt	/*'nottimeout'*
'nottybuiltin'	options.txt	/*'nottybuiltin'*
'nottyfast'	options.txt	/*'nottyfast'*
'notx'	options.txt	/*'notx'*
'noudf'	options.txt	/*'noudf'*
'noundofile'	options.txt	/*'noundofile'*
'novb'	options.txt	/*'novb'*
'novice'	vi_diff.txt	/*'novice'*
'novisualbell'	options.txt	/*'novisualbell'*
'nowa'	options.txt	/*'nowa'*
'nowarn'	options.txt	/*'nowarn'*
'nowb'	options.txt	/*'nowb'*
'noweirdinvert'	options.txt	/*'noweirdinvert'*
'nowfh'	options.txt	/*'nowfh'*
'nowfw'	options.txt	/*'nowfw'*
'nowic'	options.txt	/*'nowic'*
'nowildignorecase'	options.txt	/*'nowildignorecase'*
'nowildmenu'	options.txt	/*'nowildmenu'*
'nowinfixheight'	options.txt	/*'nowinfixheight'*
'nowinfixwidth'	options.txt	/*'nowinfixwidth'*
'nowiv'	options.txt	/*'nowiv'*
'nowmnu'	options.txt	/*'nowmnu'*
'nowrap'	options.txt	/*'nowrap'*
'nowrapscan'	options.txt	/*'nowrapscan'*
'nowrite'	options.txt	/*'nowrite'*
'nowriteany'	options.txt	/*'nowriteany'*
'nowritebackup'	options.txt	/*'nowritebackup'*
'nows'	options.txt	/*'nows'*
'nrformats'	options.txt	/*'nrformats'*
'nu'	options.txt	/*'nu'*
'number'	options.txt	/*'number'*
'numberwidth'	options.txt	/*'numberwidth'*
'nuw'	options.txt	/*'nuw'*
'odev'	options.txt	/*'odev'*
'oft'	options.txt	/*'oft'*
'ofu'	options.txt	/*'ofu'*
'omnifunc'	options.txt	/*'omnifunc'*
'op'	vi_diff.txt	/*'op'*
'open'	vi_diff.txt	/*'open'*
'opendevice'	options.txt	/*'opendevice'*
'operatorfunc'	options.txt	/*'operatorfunc'*
'opfunc'	options.txt	/*'opfunc'*
'optimize'	vi_diff.txt	/*'optimize'*
'option'	intro.txt	/*'option'*
'osfiletype'	options.txt	/*'osfiletype'*
'pa'	options.txt	/*'pa'*
'para'	options.txt	/*'para'*
'paragraphs'	options.txt	/*'paragraphs'*
'paste'	options.txt	/*'paste'*
'pastetoggle'	options.txt	/*'pastetoggle'*
'patchexpr'	options.txt	/*'patchexpr'*
'patchmode'	options.txt	/*'patchmode'*
'path'	options.txt	/*'path'*
'pdev'	options.txt	/*'pdev'*
'penc'	options.txt	/*'penc'*
'pex'	options.txt	/*'pex'*
'pexpr'	options.txt	/*'pexpr'*
'pfn'	options.txt	/*'pfn'*
'ph'	options.txt	/*'ph'*
'pheader'	options.txt	/*'pheader'*
'pi'	options.txt	/*'pi'*
'pm'	options.txt	/*'pm'*
'pmbcs'	options.txt	/*'pmbcs'*
'pmbfn'	options.txt	/*'pmbfn'*
'popt'	options.txt	/*'popt'*
'preserveindent'	options.txt	/*'preserveindent'*
'previewheight'	options.txt	/*'previewheight'*
'previewwindow'	options.txt	/*'previewwindow'*
'printdevice'	options.txt	/*'printdevice'*
'printencoding'	options.txt	/*'printencoding'*
'printexpr'	options.txt	/*'printexpr'*
'printfont'	options.txt	/*'printfont'*
'printheader'	options.txt	/*'printheader'*
'printmbcharset'	options.txt	/*'printmbcharset'*
'printmbfont'	options.txt	/*'printmbfont'*
'printoptions'	options.txt	/*'printoptions'*
'prompt'	options.txt	/*'prompt'*
'pt'	options.txt	/*'pt'*
'pumheight'	options.txt	/*'pumheight'*
'pvh'	options.txt	/*'pvh'*
'pvw'	options.txt	/*'pvw'*
'qe'	options.txt	/*'qe'*
'quote	motion.txt	/*'quote*
'quoteescape'	options.txt	/*'quoteescape'*
'rdt'	options.txt	/*'rdt'*
're'	options.txt	/*'re'*
'readonly'	options.txt	/*'readonly'*
'redraw'	vi_diff.txt	/*'redraw'*
'redrawtime'	options.txt	/*'redrawtime'*
'regexpengine'	options.txt	/*'regexpengine'*
'relativenumber'	options.txt	/*'relativenumber'*
'remap'	options.txt	/*'remap'*
'report'	options.txt	/*'report'*
'restorescreen'	options.txt	/*'restorescreen'*
'revins'	options.txt	/*'revins'*
'ri'	options.txt	/*'ri'*
'rightleft'	options.txt	/*'rightleft'*
'rightleftcmd'	options.txt	/*'rightleftcmd'*
'rl'	options.txt	/*'rl'*
'rlc'	options.txt	/*'rlc'*
'rnu'	options.txt	/*'rnu'*
'ro'	options.txt	/*'ro'*
'rs'	options.txt	/*'rs'*
'rtp'	options.txt	/*'rtp'*
'ru'	options.txt	/*'ru'*
'ruf'	options.txt	/*'ruf'*
'ruler'	options.txt	/*'ruler'*
'rulerformat'	options.txt	/*'rulerformat'*
'runtimepath'	options.txt	/*'runtimepath'*
'sb'	options.txt	/*'sb'*
'sbo'	options.txt	/*'sbo'*
'sbr'	options.txt	/*'sbr'*
'sc'	options.txt	/*'sc'*
'scb'	options.txt	/*'scb'*
'scr'	options.txt	/*'scr'*
'scroll'	options.txt	/*'scroll'*
'scrollbind'	options.txt	/*'scrollbind'*
'scrolljump'	options.txt	/*'scrolljump'*
'scrolloff'	options.txt	/*'scrolloff'*
'scrollopt'	options.txt	/*'scrollopt'*
'scs'	options.txt	/*'scs'*
'sect'	options.txt	/*'sect'*
'sections'	options.txt	/*'sections'*
'secure'	options.txt	/*'secure'*
'sel'	options.txt	/*'sel'*
'selection'	options.txt	/*'selection'*
'selectmode'	options.txt	/*'selectmode'*
'sessionoptions'	options.txt	/*'sessionoptions'*
'sft'	options.txt	/*'sft'*
'sh'	options.txt	/*'sh'*
'shcf'	options.txt	/*'shcf'*
'shell'	options.txt	/*'shell'*
'shellcmdflag'	options.txt	/*'shellcmdflag'*
'shellpipe'	options.txt	/*'shellpipe'*
'shellquote'	options.txt	/*'shellquote'*
'shellredir'	options.txt	/*'shellredir'*
'shellslash'	options.txt	/*'shellslash'*
'shelltemp'	options.txt	/*'shelltemp'*
'shelltype'	options.txt	/*'shelltype'*
'shellxescape'	options.txt	/*'shellxescape'*
'shellxquote'	options.txt	/*'shellxquote'*
'shiftround'	options.txt	/*'shiftround'*
'shiftwidth'	options.txt	/*'shiftwidth'*
'shm'	options.txt	/*'shm'*
'shortmess'	options.txt	/*'shortmess'*
'shortname'	options.txt	/*'shortname'*
'showbreak'	options.txt	/*'showbreak'*
'showcmd'	options.txt	/*'showcmd'*
'showfulltag'	options.txt	/*'showfulltag'*
'showmatch'	options.txt	/*'showmatch'*
'showmode'	options.txt	/*'showmode'*
'showtabline'	options.txt	/*'showtabline'*
'shq'	options.txt	/*'shq'*
'si'	options.txt	/*'si'*
'sidescroll'	options.txt	/*'sidescroll'*
'sidescrolloff'	options.txt	/*'sidescrolloff'*
'siso'	options.txt	/*'siso'*
'sj'	options.txt	/*'sj'*
'slm'	options.txt	/*'slm'*
'slow'	vi_diff.txt	/*'slow'*
'slowopen'	vi_diff.txt	/*'slowopen'*
'sm'	options.txt	/*'sm'*
'smartcase'	options.txt	/*'smartcase'*
'smartindent'	options.txt	/*'smartindent'*
'smarttab'	options.txt	/*'smarttab'*
'smc'	options.txt	/*'smc'*
'smd'	options.txt	/*'smd'*
'sn'	options.txt	/*'sn'*
'so'	options.txt	/*'so'*
'softtabstop'	options.txt	/*'softtabstop'*
'sol'	options.txt	/*'sol'*
'sourceany'	vi_diff.txt	/*'sourceany'*
'sp'	options.txt	/*'sp'*
'spc'	options.txt	/*'spc'*
'spell'	options.txt	/*'spell'*
'spellcapcheck'	options.txt	/*'spellcapcheck'*
'spellfile'	options.txt	/*'spellfile'*
'spelllang'	options.txt	/*'spelllang'*
'spellsuggest'	options.txt	/*'spellsuggest'*
'spf'	options.txt	/*'spf'*
'spl'	options.txt	/*'spl'*
'splitbelow'	options.txt	/*'splitbelow'*
'splitright'	options.txt	/*'splitright'*
'spr'	options.txt	/*'spr'*
'sps'	options.txt	/*'sps'*
'sr'	options.txt	/*'sr'*
'srr'	options.txt	/*'srr'*
'ss'	options.txt	/*'ss'*
'ssl'	options.txt	/*'ssl'*
'ssop'	options.txt	/*'ssop'*
'st'	options.txt	/*'st'*
'sta'	options.txt	/*'sta'*
'stal'	options.txt	/*'stal'*
'startofline'	options.txt	/*'startofline'*
'statusline'	options.txt	/*'statusline'*
'stl'	options.txt	/*'stl'*
'stmp'	options.txt	/*'stmp'*
'sts'	options.txt	/*'sts'*
'su'	options.txt	/*'su'*
'sua'	options.txt	/*'sua'*
'suffixes'	options.txt	/*'suffixes'*
'suffixesadd'	options.txt	/*'suffixesadd'*
'sw'	options.txt	/*'sw'*
'swapfile'	options.txt	/*'swapfile'*
'swapsync'	options.txt	/*'swapsync'*
'swb'	options.txt	/*'swb'*
'swf'	options.txt	/*'swf'*
'switchbuf'	options.txt	/*'switchbuf'*
'sws'	options.txt	/*'sws'*
'sxe'	options.txt	/*'sxe'*
'sxq'	options.txt	/*'sxq'*
'syn'	options.txt	/*'syn'*
'synmaxcol'	options.txt	/*'synmaxcol'*
'syntax'	options.txt	/*'syntax'*
't_#2'	term.txt	/*'t_#2'*
't_#4'	term.txt	/*'t_#4'*
't_%1'	term.txt	/*'t_%1'*
't_%i'	term.txt	/*'t_%i'*
't_&8'	term.txt	/*'t_&8'*
't_@7'	term.txt	/*'t_@7'*
't_AB'	term.txt	/*'t_AB'*
't_AF'	term.txt	/*'t_AF'*
't_AL'	term.txt	/*'t_AL'*
't_CS'	term.txt	/*'t_CS'*
't_CV'	term.txt	/*'t_CV'*
't_Ce'	term.txt	/*'t_Ce'*
't_Co'	term.txt	/*'t_Co'*
't_Cs'	term.txt	/*'t_Cs'*
't_DL'	term.txt	/*'t_DL'*
't_EI'	term.txt	/*'t_EI'*
't_F1'	term.txt	/*'t_F1'*
't_F2'	term.txt	/*'t_F2'*
't_F3'	term.txt	/*'t_F3'*
't_F4'	term.txt	/*'t_F4'*
't_F5'	term.txt	/*'t_F5'*
't_F6'	term.txt	/*'t_F6'*
't_F7'	term.txt	/*'t_F7'*
't_F8'	term.txt	/*'t_F8'*
't_F9'	term.txt	/*'t_F9'*
't_IE'	term.txt	/*'t_IE'*
't_IS'	term.txt	/*'t_IS'*
't_K1'	term.txt	/*'t_K1'*
't_K3'	term.txt	/*'t_K3'*
't_K4'	term.txt	/*'t_K4'*
't_K5'	term.txt	/*'t_K5'*
't_K6'	term.txt	/*'t_K6'*
't_K7'	term.txt	/*'t_K7'*
't_K8'	term.txt	/*'t_K8'*
't_K9'	term.txt	/*'t_K9'*
't_KA'	term.txt	/*'t_KA'*
't_KB'	term.txt	/*'t_KB'*
't_KC'	term.txt	/*'t_KC'*
't_KD'	term.txt	/*'t_KD'*
't_KE'	term.txt	/*'t_KE'*
't_KF'	term.txt	/*'t_KF'*
't_KG'	term.txt	/*'t_KG'*
't_KH'	term.txt	/*'t_KH'*
't_KI'	term.txt	/*'t_KI'*
't_KJ'	term.txt	/*'t_KJ'*
't_KK'	term.txt	/*'t_KK'*
't_KL'	term.txt	/*'t_KL'*
't_RI'	term.txt	/*'t_RI'*
't_RV'	term.txt	/*'t_RV'*
't_SI'	term.txt	/*'t_SI'*
't_Sb'	term.txt	/*'t_Sb'*
't_Sf'	term.txt	/*'t_Sf'*
't_WP'	term.txt	/*'t_WP'*
't_WS'	term.txt	/*'t_WS'*
't_ZH'	term.txt	/*'t_ZH'*
't_ZR'	term.txt	/*'t_ZR'*
't_al'	term.txt	/*'t_al'*
't_bc'	term.txt	/*'t_bc'*
't_cd'	term.txt	/*'t_cd'*
't_ce'	term.txt	/*'t_ce'*
't_cl'	term.txt	/*'t_cl'*
't_cm'	term.txt	/*'t_cm'*
't_cs'	term.txt	/*'t_cs'*
't_da'	term.txt	/*'t_da'*
't_db'	term.txt	/*'t_db'*
't_dl'	term.txt	/*'t_dl'*
't_fs'	term.txt	/*'t_fs'*
't_k1'	term.txt	/*'t_k1'*
't_k2'	term.txt	/*'t_k2'*
't_k3'	term.txt	/*'t_k3'*
't_k4'	term.txt	/*'t_k4'*
't_k5'	term.txt	/*'t_k5'*
't_k6'	term.txt	/*'t_k6'*
't_k7'	term.txt	/*'t_k7'*
't_k8'	term.txt	/*'t_k8'*
't_k9'	term.txt	/*'t_k9'*
't_k;'	term.txt	/*'t_k;'*
't_kB'	term.txt	/*'t_kB'*
't_kD'	term.txt	/*'t_kD'*
't_kI'	term.txt	/*'t_kI'*
't_kN'	term.txt	/*'t_kN'*
't_kP'	term.txt	/*'t_kP'*
't_kb'	term.txt	/*'t_kb'*
't_kd'	term.txt	/*'t_kd'*
't_ke'	term.txt	/*'t_ke'*
't_kh'	term.txt	/*'t_kh'*
't_kl'	term.txt	/*'t_kl'*
't_kr'	term.txt	/*'t_kr'*
't_ks'	term.txt	/*'t_ks'*
't_ku'	term.txt	/*'t_ku'*
't_le'	term.txt	/*'t_le'*
't_mb'	term.txt	/*'t_mb'*
't_md'	term.txt	/*'t_md'*
't_me'	term.txt	/*'t_me'*
't_mr'	term.txt	/*'t_mr'*
't_ms'	term.txt	/*'t_ms'*
't_nd'	term.txt	/*'t_nd'*
't_op'	term.txt	/*'t_op'*
't_se'	term.txt	/*'t_se'*
't_so'	term.txt	/*'t_so'*
't_sr'	term.txt	/*'t_sr'*
't_star7'	term.txt	/*'t_star7'*
't_te'	term.txt	/*'t_te'*
't_ti'	term.txt	/*'t_ti'*
't_ts'	term.txt	/*'t_ts'*
't_u7'	term.txt	/*'t_u7'*
't_ue'	term.txt	/*'t_ue'*
't_us'	term.txt	/*'t_us'*
't_ut'	term.txt	/*'t_ut'*
't_vb'	term.txt	/*'t_vb'*
't_ve'	term.txt	/*'t_ve'*
't_vi'	term.txt	/*'t_vi'*
't_vs'	term.txt	/*'t_vs'*
't_xs'	term.txt	/*'t_xs'*
'ta'	options.txt	/*'ta'*
'tabline'	options.txt	/*'tabline'*
'tabpagemax'	options.txt	/*'tabpagemax'*
'tabstop'	options.txt	/*'tabstop'*
'tag'	options.txt	/*'tag'*
'tagbsearch'	options.txt	/*'tagbsearch'*
'taglength'	options.txt	/*'taglength'*
'tagrelative'	options.txt	/*'tagrelative'*
'tags'	options.txt	/*'tags'*
'tagstack'	options.txt	/*'tagstack'*
'tal'	options.txt	/*'tal'*
'tb'	options.txt	/*'tb'*
'tbi'	options.txt	/*'tbi'*
'tbidi'	options.txt	/*'tbidi'*
'tbis'	options.txt	/*'tbis'*
'tbs'	options.txt	/*'tbs'*
'tenc'	options.txt	/*'tenc'*
'term'	options.txt	/*'term'*
'termbidi'	options.txt	/*'termbidi'*
'termencoding'	options.txt	/*'termencoding'*
'terse'	options.txt	/*'terse'*
'textauto'	options.txt	/*'textauto'*
'textmode'	options.txt	/*'textmode'*
'textwidth'	options.txt	/*'textwidth'*
'tf'	options.txt	/*'tf'*
'tgst'	options.txt	/*'tgst'*
'thesaurus'	options.txt	/*'thesaurus'*
'tildeop'	options.txt	/*'tildeop'*
'timeout'	options.txt	/*'timeout'*
'timeoutlen'	options.txt	/*'timeoutlen'*
'title'	options.txt	/*'title'*
'titlelen'	options.txt	/*'titlelen'*
'titleold'	options.txt	/*'titleold'*
'titlestring'	options.txt	/*'titlestring'*
'tl'	options.txt	/*'tl'*
'tm'	options.txt	/*'tm'*
'to'	options.txt	/*'to'*
'toolbar'	options.txt	/*'toolbar'*
'toolbariconsize'	options.txt	/*'toolbariconsize'*
'top'	options.txt	/*'top'*
'tpm'	options.txt	/*'tpm'*
'tr'	options.txt	/*'tr'*
'ts'	options.txt	/*'ts'*
'tsl'	options.txt	/*'tsl'*
'tsr'	options.txt	/*'tsr'*
'ttimeout'	options.txt	/*'ttimeout'*
'ttimeoutlen'	options.txt	/*'ttimeoutlen'*
'ttm'	options.txt	/*'ttm'*
'tty'	options.txt	/*'tty'*
'ttybuiltin'	options.txt	/*'ttybuiltin'*
'ttyfast'	options.txt	/*'ttyfast'*
'ttym'	options.txt	/*'ttym'*
'ttymouse'	options.txt	/*'ttymouse'*
'ttyscroll'	options.txt	/*'ttyscroll'*
'ttytype'	options.txt	/*'ttytype'*
'tw'	options.txt	/*'tw'*
'tx'	options.txt	/*'tx'*
'uc'	options.txt	/*'uc'*
'udf'	options.txt	/*'udf'*
'udir'	options.txt	/*'udir'*
'ul'	options.txt	/*'ul'*
'undodir'	options.txt	/*'undodir'*
'undofile'	options.txt	/*'undofile'*
'undolevels'	options.txt	/*'undolevels'*
'undoreload'	options.txt	/*'undoreload'*
'updatecount'	options.txt	/*'updatecount'*
'updatetime'	options.txt	/*'updatetime'*
'ur'	options.txt	/*'ur'*
'ut'	options.txt	/*'ut'*
'vb'	options.txt	/*'vb'*
'vbs'	options.txt	/*'vbs'*
'vdir'	options.txt	/*'vdir'*
've'	options.txt	/*'ve'*
'verbose'	options.txt	/*'verbose'*
'verbosefile'	options.txt	/*'verbosefile'*
'vfile'	options.txt	/*'vfile'*
'vi'	options.txt	/*'vi'*
'viewdir'	options.txt	/*'viewdir'*
'viewoptions'	options.txt	/*'viewoptions'*
'viminfo'	options.txt	/*'viminfo'*
'virtualedit'	options.txt	/*'virtualedit'*
'visualbell'	options.txt	/*'visualbell'*
'vop'	options.txt	/*'vop'*
'w1200'	vi_diff.txt	/*'w1200'*
'w300'	vi_diff.txt	/*'w300'*
'w9600'	vi_diff.txt	/*'w9600'*
'wa'	options.txt	/*'wa'*
'wak'	options.txt	/*'wak'*
'warn'	options.txt	/*'warn'*
'wb'	options.txt	/*'wb'*
'wc'	options.txt	/*'wc'*
'wcm'	options.txt	/*'wcm'*
'wd'	options.txt	/*'wd'*
'weirdinvert'	options.txt	/*'weirdinvert'*
'wfh'	options.txt	/*'wfh'*
'wfw'	options.txt	/*'wfw'*
'wh'	options.txt	/*'wh'*
'whichwrap'	options.txt	/*'whichwrap'*
'wi'	options.txt	/*'wi'*
'wic'	options.txt	/*'wic'*
'wig'	options.txt	/*'wig'*
'wildchar'	options.txt	/*'wildchar'*
'wildcharm'	options.txt	/*'wildcharm'*
'wildignore'	options.txt	/*'wildignore'*
'wildignorecase'	options.txt	/*'wildignorecase'*
'wildmenu'	options.txt	/*'wildmenu'*
'wildmode'	options.txt	/*'wildmode'*
'wildoptions'	options.txt	/*'wildoptions'*
'wim'	options.txt	/*'wim'*
'winaltkeys'	options.txt	/*'winaltkeys'*
'window'	options.txt	/*'window'*
'winfixheight'	options.txt	/*'winfixheight'*
'winfixwidth'	options.txt	/*'winfixwidth'*
'winheight'	options.txt	/*'winheight'*
'winminheight'	options.txt	/*'winminheight'*
'winminwidth'	options.txt	/*'winminwidth'*
'winwidth'	options.txt	/*'winwidth'*
'wiv'	options.txt	/*'wiv'*
'wiw'	options.txt	/*'wiw'*
'wm'	options.txt	/*'wm'*
'wmh'	options.txt	/*'wmh'*
'wmnu'	options.txt	/*'wmnu'*
'wmw'	options.txt	/*'wmw'*
'wop'	options.txt	/*'wop'*
'wrap'	options.txt	/*'wrap'*
'wrapmargin'	options.txt	/*'wrapmargin'*
'wrapscan'	options.txt	/*'wrapscan'*
'write'	options.txt	/*'write'*
'writeany'	options.txt	/*'writeany'*
'writebackup'	options.txt	/*'writebackup'*
'writedelay'	options.txt	/*'writedelay'*
'ws'	options.txt	/*'ws'*
'ww'	options.txt	/*'ww'*
'{	motion.txt	/*'{*
'}	motion.txt	/*'}*
(	motion.txt	/*(*
)	motion.txt	/*)*
+	motion.txt	/*+*
++bad	editing.txt	/*++bad*
++bin	editing.txt	/*++bin*
++builtin_terms	various.txt	/*++builtin_terms*
++edit	editing.txt	/*++edit*
++enc	editing.txt	/*++enc*
++ff	editing.txt	/*++ff*
++nobin	editing.txt	/*++nobin*
++opt	editing.txt	/*++opt*
+ARP	various.txt	/*+ARP*
+GUI_Athena	various.txt	/*+GUI_Athena*
+GUI_GTK	various.txt	/*+GUI_GTK*
+GUI_Motif	various.txt	/*+GUI_Motif*
+GUI_Photon	various.txt	/*+GUI_Photon*
+GUI_neXtaw	various.txt	/*+GUI_neXtaw*
+X11	various.txt	/*+X11*
+acl	various.txt	/*+acl*
+arabic	various.txt	/*+arabic*
+autocmd	various.txt	/*+autocmd*
+balloon_eval	various.txt	/*+balloon_eval*
+browse	various.txt	/*+browse*
+builtin_terms	various.txt	/*+builtin_terms*
+byte_offset	various.txt	/*+byte_offset*
+cindent	various.txt	/*+cindent*
+clientserver	various.txt	/*+clientserver*
+clipboard	various.txt	/*+clipboard*
+cmd	editing.txt	/*+cmd*
+cmdline_compl	various.txt	/*+cmdline_compl*
+cmdline_hist	various.txt	/*+cmdline_hist*
+cmdline_info	various.txt	/*+cmdline_info*
+comments	various.txt	/*+comments*
+conceal	various.txt	/*+conceal*
+cryptv	various.txt	/*+cryptv*
+cscope	various.txt	/*+cscope*
+cursorbind	various.txt	/*+cursorbind*
+cursorshape	various.txt	/*+cursorshape*
+debug	various.txt	/*+debug*
+dialog_con	various.txt	/*+dialog_con*
+dialog_con_gui	various.txt	/*+dialog_con_gui*
+dialog_gui	various.txt	/*+dialog_gui*
+diff	various.txt	/*+diff*
+digraphs	various.txt	/*+digraphs*
+dnd	various.txt	/*+dnd*
+emacs_tags	various.txt	/*+emacs_tags*
+eval	various.txt	/*+eval*
+ex_extra	various.txt	/*+ex_extra*
+extra_search	various.txt	/*+extra_search*
+farsi	various.txt	/*+farsi*
+feature-list	various.txt	/*+feature-list*
+file_in_path	various.txt	/*+file_in_path*
+find_in_path	various.txt	/*+find_in_path*
+float	various.txt	/*+float*
+folding	various.txt	/*+folding*
+footer	various.txt	/*+footer*
+fork	various.txt	/*+fork*
+gettext	various.txt	/*+gettext*
+hangul_input	various.txt	/*+hangul_input*
+iconv	various.txt	/*+iconv*
+iconv/dyn	various.txt	/*+iconv\/dyn*
+insert_expand	various.txt	/*+insert_expand*
+jumplist	various.txt	/*+jumplist*
+keymap	various.txt	/*+keymap*
+langmap	various.txt	/*+langmap*
+libcall	various.txt	/*+libcall*
+linebreak	various.txt	/*+linebreak*
+lispindent	various.txt	/*+lispindent*
+listcmds	various.txt	/*+listcmds*
+localmap	various.txt	/*+localmap*
+lua	various.txt	/*+lua*
+lua/dyn	various.txt	/*+lua\/dyn*
+menu	various.txt	/*+menu*
+mksession	various.txt	/*+mksession*
+modify_fname	various.txt	/*+modify_fname*
+mouse	various.txt	/*+mouse*
+mouse_dec	various.txt	/*+mouse_dec*
+mouse_gpm	various.txt	/*+mouse_gpm*
+mouse_jsbterm	various.txt	/*+mouse_jsbterm*
+mouse_netterm	various.txt	/*+mouse_netterm*
+mouse_pterm	various.txt	/*+mouse_pterm*
+mouse_sgr	various.txt	/*+mouse_sgr*
+mouse_sysmouse	various.txt	/*+mouse_sysmouse*
+mouse_urxvt	various.txt	/*+mouse_urxvt*
+mouse_xterm	various.txt	/*+mouse_xterm*
+mouseshape	various.txt	/*+mouseshape*
+multi_byte	various.txt	/*+multi_byte*
+multi_byte_ime	various.txt	/*+multi_byte_ime*
+multi_lang	various.txt	/*+multi_lang*
+mzscheme	various.txt	/*+mzscheme*
+mzscheme/dyn	various.txt	/*+mzscheme\/dyn*
+netbeans_intg	various.txt	/*+netbeans_intg*
+ole	various.txt	/*+ole*
+path_extra	various.txt	/*+path_extra*
+perl	various.txt	/*+perl*
+perl/dyn	various.txt	/*+perl\/dyn*
+persistent_undo	various.txt	/*+persistent_undo*
+postscript	various.txt	/*+postscript*
+printer	various.txt	/*+printer*
+profile	various.txt	/*+profile*
+python	various.txt	/*+python*
+python/dyn	various.txt	/*+python\/dyn*
+python3	various.txt	/*+python3*
+python3/dyn	various.txt	/*+python3\/dyn*
+quickfix	various.txt	/*+quickfix*
+reltime	various.txt	/*+reltime*
+rightleft	various.txt	/*+rightleft*
+ruby	various.txt	/*+ruby*
+ruby/dyn	various.txt	/*+ruby\/dyn*
+scrollbind	various.txt	/*+scrollbind*
+signs	various.txt	/*+signs*
+smartindent	various.txt	/*+smartindent*
+sniff	various.txt	/*+sniff*
+startuptime	various.txt	/*+startuptime*
+statusline	various.txt	/*+statusline*
+sun_workshop	various.txt	/*+sun_workshop*
+syntax	various.txt	/*+syntax*
+system()	various.txt	/*+system()*
+tag_any_white	various.txt	/*+tag_any_white*
+tag_binary	various.txt	/*+tag_binary*
+tag_old_static	various.txt	/*+tag_old_static*
+tcl	various.txt	/*+tcl*
+tcl/dyn	various.txt	/*+tcl\/dyn*
+terminfo	various.txt	/*+terminfo*
+termresponse	various.txt	/*+termresponse*
+textobjects	various.txt	/*+textobjects*
+tgetent	various.txt	/*+tgetent*
+title	various.txt	/*+title*
+toolbar	various.txt	/*+toolbar*
+user_commands	various.txt	/*+user_commands*
+vertsplit	various.txt	/*+vertsplit*
+viminfo	various.txt	/*+viminfo*
+virtualedit	various.txt	/*+virtualedit*
+visual	various.txt	/*+visual*
+visualextra	various.txt	/*+visualextra*
+vreplace	various.txt	/*+vreplace*
+wildignore	various.txt	/*+wildignore*
+wildmenu	various.txt	/*+wildmenu*
+windows	various.txt	/*+windows*
+writebackup	various.txt	/*+writebackup*
+xfontset	various.txt	/*+xfontset*
+xim	various.txt	/*+xim*
+xpm	various.txt	/*+xpm*
+xpm_w32	various.txt	/*+xpm_w32*
+xsmp	various.txt	/*+xsmp*
+xsmp_interact	various.txt	/*+xsmp_interact*
+xterm_clipboard	various.txt	/*+xterm_clipboard*
+xterm_save	various.txt	/*+xterm_save*
,	motion.txt	/*,*
-	motion.txt	/*-*
-+	starting.txt	/*-+*
-+/	starting.txt	/*-+\/*
-+c	starting.txt	/*-+c*
-+reverse	gui_x11.txt	/*-+reverse*
-+rv	gui_x11.txt	/*-+rv*
--	starting.txt	/*--*
---	starting.txt	/*---*
--cmd	starting.txt	/*--cmd*
--echo-wid	starting.txt	/*--echo-wid*
--help	starting.txt	/*--help*
--literal	starting.txt	/*--literal*
--nofork	starting.txt	/*--nofork*
--noplugin	starting.txt	/*--noplugin*
--remote	remote.txt	/*--remote*
--remote-expr	remote.txt	/*--remote-expr*
--remote-send	remote.txt	/*--remote-send*
--remote-silent	remote.txt	/*--remote-silent*
--remote-tab	remote.txt	/*--remote-tab*
--remote-tab-silent	remote.txt	/*--remote-tab-silent*
--remote-tab-wait	remote.txt	/*--remote-tab-wait*
--remote-tab-wait-silent	remote.txt	/*--remote-tab-wait-silent*
--remote-wait	remote.txt	/*--remote-wait*
--remote-wait-silent	remote.txt	/*--remote-wait-silent*
--role	starting.txt	/*--role*
--serverlist	remote.txt	/*--serverlist*
--servername	remote.txt	/*--servername*
--socketid	starting.txt	/*--socketid*
--startuptime	starting.txt	/*--startuptime*
--version	starting.txt	/*--version*
--windowid	starting.txt	/*--windowid*
-A	starting.txt	/*-A*
-C	starting.txt	/*-C*
-D	starting.txt	/*-D*
-E	starting.txt	/*-E*
-F	starting.txt	/*-F*
-H	starting.txt	/*-H*
-L	starting.txt	/*-L*
-M	starting.txt	/*-M*
-N	starting.txt	/*-N*
-O	starting.txt	/*-O*
-P	starting.txt	/*-P*
-R	starting.txt	/*-R*
-S	starting.txt	/*-S*
-T	starting.txt	/*-T*
-U	starting.txt	/*-U*
-V	starting.txt	/*-V*
-W	starting.txt	/*-W*
-X	starting.txt	/*-X*
-Z	starting.txt	/*-Z*
-b	starting.txt	/*-b*
-background	gui_x11.txt	/*-background*
-bg	gui_x11.txt	/*-bg*
-boldfont	gui_x11.txt	/*-boldfont*
-borderwidth	gui_x11.txt	/*-borderwidth*
-bw	gui_x11.txt	/*-bw*
-c	starting.txt	/*-c*
-d	starting.txt	/*-d*
-dev	starting.txt	/*-dev*
-display	gui_x11.txt	/*-display*
-e	starting.txt	/*-e*
-f	starting.txt	/*-f*
-fg	gui_x11.txt	/*-fg*
-file	starting.txt	/*-file*
-fn	gui_x11.txt	/*-fn*
-font	gui_x11.txt	/*-font*
-foreground	gui_x11.txt	/*-foreground*
-g	starting.txt	/*-g*
-geom	gui_x11.txt	/*-geom*
-geometry	gui_x11.txt	/*-geometry*
-geometry-example	gui_x11.txt	/*-geometry-example*
-gui	gui_x11.txt	/*-gui*
-h	starting.txt	/*-h*
-i	starting.txt	/*-i*
-iconic	gui_x11.txt	/*-iconic*
-italicfont	gui_x11.txt	/*-italicfont*
-l	starting.txt	/*-l*
-m	starting.txt	/*-m*
-menufont	gui_x11.txt	/*-menufont*
-menufontset	gui_x11.txt	/*-menufontset*
-menuheight	gui_x11.txt	/*-menuheight*
-mf	gui_x11.txt	/*-mf*
-mh	gui_x11.txt	/*-mh*
-n	starting.txt	/*-n*
-nb	starting.txt	/*-nb*
-o	starting.txt	/*-o*
-p	starting.txt	/*-p*
-q	starting.txt	/*-q*
-qf	starting.txt	/*-qf*
-r	starting.txt	/*-r*
-register	if_ole.txt	/*-register*
-reverse	gui_x11.txt	/*-reverse*
-rv	gui_x11.txt	/*-rv*
-s	starting.txt	/*-s*
-s-ex	starting.txt	/*-s-ex*
-scrollbarwidth	gui_x11.txt	/*-scrollbarwidth*
-silent	if_ole.txt	/*-silent*
-sw	gui_x11.txt	/*-sw*
-t	starting.txt	/*-t*
-tag	starting.txt	/*-tag*
-u	starting.txt	/*-u*
-ul	gui_x11.txt	/*-ul*
-unregister	if_ole.txt	/*-unregister*
-v	starting.txt	/*-v*
-vim	starting.txt	/*-vim*
-w	starting.txt	/*-w*
-w_nr	starting.txt	/*-w_nr*
-x	starting.txt	/*-x*
-xrm	gui_x11.txt	/*-xrm*
-y	starting.txt	/*-y*
.	repeat.txt	/*.*
...	eval.txt	/*...*
.Xdefaults	gui_x11.txt	/*.Xdefaults*
.aff	spell.txt	/*.aff*
.dic	spell.txt	/*.dic*
.exrc	starting.txt	/*.exrc*
.gvimrc	gui.txt	/*.gvimrc*
.vimrc	starting.txt	/*.vimrc*
/	pattern.txt	/*\/*
/$	pattern.txt	/*\/$*
/.	pattern.txt	/*\/.*
//	version7.txt	/*\/\/*
//;	pattern.txt	/*\/\/;*
/<CR>	pattern.txt	/*\/<CR>*
/[[.	pattern.txt	/*\/[[.*
/[[=	pattern.txt	/*\/[[=*
/[\n]	pattern.txt	/*\/[\\n]*
/[]	pattern.txt	/*\/[]*
/\	pattern.txt	/*\/\\*
/\$	pattern.txt	/*\/\\$*
/\%#	pattern.txt	/*\/\\%#*
/\%#=	pattern.txt	/*\/\\%#=*
/\%$	pattern.txt	/*\/\\%$*
/\%'m	pattern.txt	/*\/\\%'m*
/\%(	pattern.txt	/*\/\\%(*
/\%(\)	pattern.txt	/*\/\\%(\\)*
/\%<'m	pattern.txt	/*\/\\%<'m*
/\%<c	pattern.txt	/*\/\\%<c*
/\%<l	pattern.txt	/*\/\\%<l*
/\%<v	pattern.txt	/*\/\\%<v*
/\%>'m	pattern.txt	/*\/\\%>'m*
/\%>c	pattern.txt	/*\/\\%>c*
/\%>l	pattern.txt	/*\/\\%>l*
/\%>v	pattern.txt	/*\/\\%>v*
/\%C	pattern.txt	/*\/\\%C*
/\%U	pattern.txt	/*\/\\%U*
/\%V	pattern.txt	/*\/\\%V*
/\%[]	pattern.txt	/*\/\\%[]*
/\%^	pattern.txt	/*\/\\%^*
/\%c	pattern.txt	/*\/\\%c*
/\%d	pattern.txt	/*\/\\%d*
/\%l	pattern.txt	/*\/\\%l*
/\%o	pattern.txt	/*\/\\%o*
/\%u	pattern.txt	/*\/\\%u*
/\%v	pattern.txt	/*\/\\%v*
/\%x	pattern.txt	/*\/\\%x*
/\&	pattern.txt	/*\/\\&*
/\(	pattern.txt	/*\/\\(*
/\(\)	pattern.txt	/*\/\\(\\)*
/\)	pattern.txt	/*\/\\)*
/\+	pattern.txt	/*\/\\+*
/\.	pattern.txt	/*\/\\.*
/\1	pattern.txt	/*\/\\1*
/\2	pattern.txt	/*\/\\2*
/\3	pattern.txt	/*\/\\3*
/\9	pattern.txt	/*\/\\9*
/\<	pattern.txt	/*\/\\<*
/\=	pattern.txt	/*\/\\=*
/\>	pattern.txt	/*\/\\>*
/\?	pattern.txt	/*\/\\?*
/\@!	pattern.txt	/*\/\\@!*
/\@<!	pattern.txt	/*\/\\@<!*
/\@<=	pattern.txt	/*\/\\@<=*
/\@=	pattern.txt	/*\/\\@=*
/\@>	pattern.txt	/*\/\\@>*
/\A	pattern.txt	/*\/\\A*
/\C	pattern.txt	/*\/\\C*
/\D	pattern.txt	/*\/\\D*
/\F	pattern.txt	/*\/\\F*
/\H	pattern.txt	/*\/\\H*
/\I	pattern.txt	/*\/\\I*
/\K	pattern.txt	/*\/\\K*
/\L	pattern.txt	/*\/\\L*
/\M	pattern.txt	/*\/\\M*
/\O	pattern.txt	/*\/\\O*
/\P	pattern.txt	/*\/\\P*
/\S	pattern.txt	/*\/\\S*
/\U	pattern.txt	/*\/\\U*
/\V	pattern.txt	/*\/\\V*
/\W	pattern.txt	/*\/\\W*
/\X	pattern.txt	/*\/\\X*
/\Z	pattern.txt	/*\/\\Z*
/\[]	pattern.txt	/*\/\\[]*
/\\	pattern.txt	/*\/\\\\*
/\]	pattern.txt	/*\/\\]*
/\^	pattern.txt	/*\/\\^*
/\_	pattern.txt	/*\/\\_*
/\_$	pattern.txt	/*\/\\_$*
/\_.	pattern.txt	/*\/\\_.*
/\_A	pattern.txt	/*\/\\_A*
/\_D	pattern.txt	/*\/\\_D*
/\_F	pattern.txt	/*\/\\_F*
/\_H	pattern.txt	/*\/\\_H*
/\_I	pattern.txt	/*\/\\_I*
/\_K	pattern.txt	/*\/\\_K*
/\_L	pattern.txt	/*\/\\_L*
/\_O	pattern.txt	/*\/\\_O*
/\_P	pattern.txt	/*\/\\_P*
/\_S	pattern.txt	/*\/\\_S*
/\_U	pattern.txt	/*\/\\_U*
/\_W	pattern.txt	/*\/\\_W*
/\_X	pattern.txt	/*\/\\_X*
/\_[]	pattern.txt	/*\/\\_[]*
/\_^	pattern.txt	/*\/\\_^*
/\_a	pattern.txt	/*\/\\_a*
/\_d	pattern.txt	/*\/\\_d*
/\_f	pattern.txt	/*\/\\_f*
/\_h	pattern.txt	/*\/\\_h*
/\_i	pattern.txt	/*\/\\_i*
/\_k	pattern.txt	/*\/\\_k*
/\_l	pattern.txt	/*\/\\_l*
/\_o	pattern.txt	/*\/\\_o*
/\_p	pattern.txt	/*\/\\_p*
/\_s	pattern.txt	/*\/\\_s*
/\_u	pattern.txt	/*\/\\_u*
/\_w	pattern.txt	/*\/\\_w*
/\_x	pattern.txt	/*\/\\_x*
/\a	pattern.txt	/*\/\\a*
/\b	pattern.txt	/*\/\\b*
/\bar	pattern.txt	/*\/\\bar*
/\c	pattern.txt	/*\/\\c*
/\d	pattern.txt	/*\/\\d*
/\e	pattern.txt	/*\/\\e*
/\f	pattern.txt	/*\/\\f*
/\h	pattern.txt	/*\/\\h*
/\i	pattern.txt	/*\/\\i*
/\k	pattern.txt	/*\/\\k*
/\l	pattern.txt	/*\/\\l*
/\m	pattern.txt	/*\/\\m*
/\n	pattern.txt	/*\/\\n*
/\o	pattern.txt	/*\/\\o*
/\p	pattern.txt	/*\/\\p*
/\r	pattern.txt	/*\/\\r*
/\s	pattern.txt	/*\/\\s*
/\star	pattern.txt	/*\/\\star*
/\t	pattern.txt	/*\/\\t*
/\u	pattern.txt	/*\/\\u*
/\v	pattern.txt	/*\/\\v*
/\w	pattern.txt	/*\/\\w*
/\x	pattern.txt	/*\/\\x*
/\z(	syntax.txt	/*\/\\z(*
/\z(\)	syntax.txt	/*\/\\z(\\)*
/\z1	syntax.txt	/*\/\\z1*
/\z2	syntax.txt	/*\/\\z2*
/\z3	syntax.txt	/*\/\\z3*
/\z4	syntax.txt	/*\/\\z4*
/\z5	syntax.txt	/*\/\\z5*
/\z6	syntax.txt	/*\/\\z6*
/\z7	syntax.txt	/*\/\\z7*
/\z8	syntax.txt	/*\/\\z8*
/\z9	syntax.txt	/*\/\\z9*
/\ze	pattern.txt	/*\/\\ze*
/\zs	pattern.txt	/*\/\\zs*
/\{	pattern.txt	/*\/\\{*
/\{-	pattern.txt	/*\/\\{-*
/\~	pattern.txt	/*\/\\~*
/^	pattern.txt	/*\/^*
/atom	pattern.txt	/*\/atom*
/bar	pattern.txt	/*\/bar*
/branch	pattern.txt	/*\/branch*
/character-classes	pattern.txt	/*\/character-classes*
/collection	pattern.txt	/*\/collection*
/concat	pattern.txt	/*\/concat*
/dyn	various.txt	/*\/dyn*
/ignorecase	pattern.txt	/*\/ignorecase*
/magic	pattern.txt	/*\/magic*
/multi	pattern.txt	/*\/multi*
/ordinary-atom	pattern.txt	/*\/ordinary-atom*
/pattern	pattern.txt	/*\/pattern*
/piece	pattern.txt	/*\/piece*
/star	pattern.txt	/*\/star*
/zero-width	pattern.txt	/*\/zero-width*
/~	pattern.txt	/*\/~*
0	motion.txt	/*0*
01.1	usr_01.txt	/*01.1*
01.2	usr_01.txt	/*01.2*
01.3	usr_01.txt	/*01.3*
01.4	usr_01.txt	/*01.4*
02.1	usr_02.txt	/*02.1*
02.2	usr_02.txt	/*02.2*
02.3	usr_02.txt	/*02.3*
02.4	usr_02.txt	/*02.4*
02.5	usr_02.txt	/*02.5*
02.6	usr_02.txt	/*02.6*
02.7	usr_02.txt	/*02.7*
02.8	usr_02.txt	/*02.8*
03.1	usr_03.txt	/*03.1*
03.10	usr_03.txt	/*03.10*
03.2	usr_03.txt	/*03.2*
03.3	usr_03.txt	/*03.3*
03.4	usr_03.txt	/*03.4*
03.5	usr_03.txt	/*03.5*
03.6	usr_03.txt	/*03.6*
03.7	usr_03.txt	/*03.7*
03.8	usr_03.txt	/*03.8*
03.9	usr_03.txt	/*03.9*
04.1	usr_04.txt	/*04.1*
04.10	usr_04.txt	/*04.10*
04.2	usr_04.txt	/*04.2*
04.3	usr_04.txt	/*04.3*
04.4	usr_04.txt	/*04.4*
04.5	usr_04.txt	/*04.5*
04.6	usr_04.txt	/*04.6*
04.7	usr_04.txt	/*04.7*
04.8	usr_04.txt	/*04.8*
04.9	usr_04.txt	/*04.9*
05.1	usr_05.txt	/*05.1*
05.2	usr_05.txt	/*05.2*
05.3	usr_05.txt	/*05.3*
05.4	usr_05.txt	/*05.4*
05.5	usr_05.txt	/*05.5*
05.6	usr_05.txt	/*05.6*
05.7	usr_05.txt	/*05.7*
06.1	usr_06.txt	/*06.1*
06.2	usr_06.txt	/*06.2*
06.3	usr_06.txt	/*06.3*
06.4	usr_06.txt	/*06.4*
06.5	usr_06.txt	/*06.5*
06.6	usr_06.txt	/*06.6*
07.1	usr_07.txt	/*07.1*
07.2	usr_07.txt	/*07.2*
07.3	usr_07.txt	/*07.3*
07.4	usr_07.txt	/*07.4*
07.5	usr_07.txt	/*07.5*
07.6	usr_07.txt	/*07.6*
07.7	usr_07.txt	/*07.7*
08.1	usr_08.txt	/*08.1*
08.2	usr_08.txt	/*08.2*
08.3	usr_08.txt	/*08.3*
08.4	usr_08.txt	/*08.4*
08.5	usr_08.txt	/*08.5*
08.6	usr_08.txt	/*08.6*
08.7	usr_08.txt	/*08.7*
08.8	usr_08.txt	/*08.8*
08.9	usr_08.txt	/*08.9*
09.1	usr_09.txt	/*09.1*
09.2	usr_09.txt	/*09.2*
09.3	usr_09.txt	/*09.3*
09.4	usr_09.txt	/*09.4*
10.1	usr_10.txt	/*10.1*
10.2	usr_10.txt	/*10.2*
10.3	usr_10.txt	/*10.3*
10.4	usr_10.txt	/*10.4*
10.5	usr_10.txt	/*10.5*
10.6	usr_10.txt	/*10.6*
10.7	usr_10.txt	/*10.7*
10.8	usr_10.txt	/*10.8*
10.9	usr_10.txt	/*10.9*
11.1	usr_11.txt	/*11.1*
11.2	usr_11.txt	/*11.2*
11.3	usr_11.txt	/*11.3*
11.4	usr_11.txt	/*11.4*
12.1	usr_12.txt	/*12.1*
12.2	usr_12.txt	/*12.2*
12.3	usr_12.txt	/*12.3*
12.4	usr_12.txt	/*12.4*
12.5	usr_12.txt	/*12.5*
12.6	usr_12.txt	/*12.6*
12.7	usr_12.txt	/*12.7*
12.8	usr_12.txt	/*12.8*
1gD	pattern.txt	/*1gD*
1gd	pattern.txt	/*1gd*
20.1	usr_20.txt	/*20.1*
20.2	usr_20.txt	/*20.2*
20.3	usr_20.txt	/*20.3*
20.4	usr_20.txt	/*20.4*
20.5	usr_20.txt	/*20.5*
21.1	usr_21.txt	/*21.1*
21.2	usr_21.txt	/*21.2*
21.3	usr_21.txt	/*21.3*
21.4	usr_21.txt	/*21.4*
21.5	usr_21.txt	/*21.5*
21.6	usr_21.txt	/*21.6*
22.1	usr_22.txt	/*22.1*
22.2	usr_22.txt	/*22.2*
22.3	usr_22.txt	/*22.3*
22.4	usr_22.txt	/*22.4*
23.1	usr_23.txt	/*23.1*
23.2	usr_23.txt	/*23.2*
23.3	usr_23.txt	/*23.3*
23.4	usr_23.txt	/*23.4*
23.5	usr_23.txt	/*23.5*
24.1	usr_24.txt	/*24.1*
24.10	usr_24.txt	/*24.10*
24.2	usr_24.txt	/*24.2*
24.3	usr_24.txt	/*24.3*
24.4	usr_24.txt	/*24.4*
24.5	usr_24.txt	/*24.5*
24.6	usr_24.txt	/*24.6*
24.7	usr_24.txt	/*24.7*
24.8	usr_24.txt	/*24.8*
24.9	usr_24.txt	/*24.9*
25.1	usr_25.txt	/*25.1*
25.2	usr_25.txt	/*25.2*
25.3	usr_25.txt	/*25.3*
25.4	usr_25.txt	/*25.4*
25.5	usr_25.txt	/*25.5*
26.1	usr_26.txt	/*26.1*
26.2	usr_26.txt	/*26.2*
26.3	usr_26.txt	/*26.3*
26.4	usr_26.txt	/*26.4*
27.1	usr_27.txt	/*27.1*
27.2	usr_27.txt	/*27.2*
27.3	usr_27.txt	/*27.3*
27.4	usr_27.txt	/*27.4*
27.5	usr_27.txt	/*27.5*
27.6	usr_27.txt	/*27.6*
27.7	usr_27.txt	/*27.7*
27.8	usr_27.txt	/*27.8*
27.9	usr_27.txt	/*27.9*
28.1	usr_28.txt	/*28.1*
28.10	usr_28.txt	/*28.10*
28.2	usr_28.txt	/*28.2*
28.3	usr_28.txt	/*28.3*
28.4	usr_28.txt	/*28.4*
28.5	usr_28.txt	/*28.5*
28.6	usr_28.txt	/*28.6*
28.7	usr_28.txt	/*28.7*
28.8	usr_28.txt	/*28.8*
28.9	usr_28.txt	/*28.9*
29.1	usr_29.txt	/*29.1*
29.2	usr_29.txt	/*29.2*
29.3	usr_29.txt	/*29.3*
29.4	usr_29.txt	/*29.4*
29.5	usr_29.txt	/*29.5*
2html.vim	syntax.txt	/*2html.vim*
30.1	usr_30.txt	/*30.1*
30.2	usr_30.txt	/*30.2*
30.3	usr_30.txt	/*30.3*
30.4	usr_30.txt	/*30.4*
30.5	usr_30.txt	/*30.5*
30.6	usr_30.txt	/*30.6*
31.1	usr_31.txt	/*31.1*
31.2	usr_31.txt	/*31.2*
31.3	usr_31.txt	/*31.3*
31.4	usr_31.txt	/*31.4*
31.5	usr_31.txt	/*31.5*
32.1	usr_32.txt	/*32.1*
32.2	usr_32.txt	/*32.2*
32.3	usr_32.txt	/*32.3*
32.4	usr_32.txt	/*32.4*
40.1	usr_40.txt	/*40.1*
40.2	usr_40.txt	/*40.2*
40.3	usr_40.txt	/*40.3*
41.1	usr_41.txt	/*41.1*
41.10	usr_41.txt	/*41.10*
41.11	usr_41.txt	/*41.11*
41.12	usr_41.txt	/*41.12*
41.13	usr_41.txt	/*41.13*
41.14	usr_41.txt	/*41.14*
41.15	usr_41.txt	/*41.15*
41.16	usr_41.txt	/*41.16*
41.2	usr_41.txt	/*41.2*
41.3	usr_41.txt	/*41.3*
41.4	usr_41.txt	/*41.4*
41.5	usr_41.txt	/*41.5*
41.6	usr_41.txt	/*41.6*
41.7	usr_41.txt	/*41.7*
41.8	usr_41.txt	/*41.8*
41.9	usr_41.txt	/*41.9*
42	usr_42.txt	/*42*
42.1	usr_42.txt	/*42.1*
42.2	usr_42.txt	/*42.2*
42.3	usr_42.txt	/*42.3*
42.4	usr_42.txt	/*42.4*
43.1	usr_43.txt	/*43.1*
43.2	usr_43.txt	/*43.2*
44.1	usr_44.txt	/*44.1*
44.10	usr_44.txt	/*44.10*
44.11	usr_44.txt	/*44.11*
44.12	usr_44.txt	/*44.12*
44.2	usr_44.txt	/*44.2*
44.3	usr_44.txt	/*44.3*
44.4	usr_44.txt	/*44.4*
44.5	usr_44.txt	/*44.5*
44.6	usr_44.txt	/*44.6*
44.7	usr_44.txt	/*44.7*
44.8	usr_44.txt	/*44.8*
44.9	usr_44.txt	/*44.9*
45.1	usr_45.txt	/*45.1*
45.2	usr_45.txt	/*45.2*
45.3	usr_45.txt	/*45.3*
45.4	usr_45.txt	/*45.4*
45.5	usr_45.txt	/*45.5*
8g8	various.txt	/*8g8*
90.1	usr_90.txt	/*90.1*
90.2	usr_90.txt	/*90.2*
90.3	usr_90.txt	/*90.3*
90.4	usr_90.txt	/*90.4*
90.5	usr_90.txt	/*90.5*
:	cmdline.txt	/*:*
:!	various.txt	/*:!*
:!!	various.txt	/*:!!*
:!cmd	various.txt	/*:!cmd*
:!start	os_win32.txt	/*:!start*
:#	various.txt	/*:#*
:#!	various.txt	/*:#!*
:$	cmdline.txt	/*:$*
:%	cmdline.txt	/*:%*
:&	change.txt	/*:&*
:'	cmdline.txt	/*:'*
:,	cmdline.txt	/*:,*
:.	cmdline.txt	/*:.*
:/	cmdline.txt	/*:\/*
:0file	editing.txt	/*:0file*
:2match	pattern.txt	/*:2match*
:3match	pattern.txt	/*:3match*
::.	cmdline.txt	/*::.*
::8	cmdline.txt	/*::8*
::S	cmdline.txt	/*::S*
::e	cmdline.txt	/*::e*
::gs	cmdline.txt	/*::gs*
::h	cmdline.txt	/*::h*
::p	cmdline.txt	/*::p*
::r	cmdline.txt	/*::r*
::s	cmdline.txt	/*::s*
::t	cmdline.txt	/*::t*
::~	cmdline.txt	/*::~*
:;	cmdline.txt	/*:;*
:<	change.txt	/*:<*
:<abuf>	cmdline.txt	/*:<abuf>*
:<afile>	cmdline.txt	/*:<afile>*
:<amatch>	cmdline.txt	/*:<amatch>*
:<cWORD>	cmdline.txt	/*:<cWORD>*
:<cfile>	cmdline.txt	/*:<cfile>*
:<cword>	cmdline.txt	/*:<cword>*
:<sfile>	cmdline.txt	/*:<sfile>*
:=	various.txt	/*:=*
:>	change.txt	/*:>*
:?	cmdline.txt	/*:?*
:@	repeat.txt	/*:@*
:@:	repeat.txt	/*:@:*
:@@	repeat.txt	/*:@@*
:AdaLines	ft_ada.txt	/*:AdaLines*
:AdaRainbow	ft_ada.txt	/*:AdaRainbow*
:AdaSpaces	ft_ada.txt	/*:AdaSpaces*
:AdaTagDir	ft_ada.txt	/*:AdaTagDir*
:AdaTagFile	ft_ada.txt	/*:AdaTagFile*
:AdaTypes	ft_ada.txt	/*:AdaTypes*
:CompilerSet	usr_41.txt	/*:CompilerSet*
:DiffOrig	diff.txt	/*:DiffOrig*
:DoMatchParen	pi_paren.txt	/*:DoMatchParen*
:Explore	pi_netrw.txt	/*:Explore*
:GLVS	pi_getscript.txt	/*:GLVS*
:GetLatestVimScripts_dat	pi_getscript.txt	/*:GetLatestVimScripts_dat*
:GnatFind	ft_ada.txt	/*:GnatFind*
:GnatPretty	ft_ada.txt	/*:GnatPretty*
:GnatTags	ft_ada.txt	/*:GnatTags*
:Hexplore	pi_netrw.txt	/*:Hexplore*
:Lexplore	pi_netrw.txt	/*:Lexplore*
:Man	filetype.txt	/*:Man*
:MkVimball	pi_vimball.txt	/*:MkVimball*
:N	editing.txt	/*:N*
:NetrwClean	pi_netrw.txt	/*:NetrwClean*
:Nexplore	pi_netrw.txt	/*:Nexplore*
:Next	editing.txt	/*:Next*
:NoMatchParen	pi_paren.txt	/*:NoMatchParen*
:Nr	pi_netrw.txt	/*:Nr*
:Nread	pi_netrw.txt	/*:Nread*
:Ns	pi_netrw.txt	/*:Ns*
:Nsource	pi_netrw.txt	/*:Nsource*
:Ntree	pi_netrw.txt	/*:Ntree*
:Nw	pi_netrw.txt	/*:Nw*
:Nwrite	pi_netrw.txt	/*:Nwrite*
:P	various.txt	/*:P*
:Pexplore	pi_netrw.txt	/*:Pexplore*
:Print	various.txt	/*:Print*
:Rexplore	pi_netrw.txt	/*:Rexplore*
:RmVimball	pi_vimball.txt	/*:RmVimball*
:Sexplore	pi_netrw.txt	/*:Sexplore*
:TOhtml	syntax.txt	/*:TOhtml*
:TarDiff	pi_tar.txt	/*:TarDiff*
:Texplore	pi_netrw.txt	/*:Texplore*
:UseVimball	pi_vimball.txt	/*:UseVimball*
:Vexplore	pi_netrw.txt	/*:Vexplore*
:VimballList	pi_vimball.txt	/*:VimballList*
:Vimuntar	pi_tar.txt	/*:Vimuntar*
:X	editing.txt	/*:X*
:XMLent	insert.txt	/*:XMLent*
:XMLns	insert.txt	/*:XMLns*
:[range]	motion.txt	/*:[range]*
:\bar	cmdline.txt	/*:\\bar*
:_!	cmdline.txt	/*:_!*
:_#	cmdline.txt	/*:_#*
:_##	cmdline.txt	/*:_##*
:_#0	cmdline.txt	/*:_#0*
:_#<	cmdline.txt	/*:_#<*
:_#n	cmdline.txt	/*:_#n*
:_%	cmdline.txt	/*:_%*
:_%:	cmdline.txt	/*:_%:*
:_%<	cmdline.txt	/*:_%<*
:a	insert.txt	/*:a*
:ab	map.txt	/*:ab*
:abbreviate	map.txt	/*:abbreviate*
:abbreviate-<buffer>	map.txt	/*:abbreviate-<buffer>*
:abbreviate-local	map.txt	/*:abbreviate-local*
:abbreviate-verbose	map.txt	/*:abbreviate-verbose*
:abc	map.txt	/*:abc*
:abclear	map.txt	/*:abclear*
:abo	windows.txt	/*:abo*
:aboveleft	windows.txt	/*:aboveleft*
:al	windows.txt	/*:al*
:all	windows.txt	/*:all*
:am	gui.txt	/*:am*
:amenu	gui.txt	/*:amenu*
:an	gui.txt	/*:an*
:anoremenu	gui.txt	/*:anoremenu*
:append	insert.txt	/*:append*
:ar	editing.txt	/*:ar*
:arga	editing.txt	/*:arga*
:argadd	editing.txt	/*:argadd*
:argd	editing.txt	/*:argd*
:argdelete	editing.txt	/*:argdelete*
:argdo	editing.txt	/*:argdo*
:arge	editing.txt	/*:arge*
:argedit	editing.txt	/*:argedit*
:argglobal	editing.txt	/*:argglobal*
:arglocal	editing.txt	/*:arglocal*
:args	editing.txt	/*:args*
:args_f	editing.txt	/*:args_f*
:args_f!	editing.txt	/*:args_f!*
:argu	editing.txt	/*:argu*
:argument	editing.txt	/*:argument*
:as	various.txt	/*:as*
:ascii	various.txt	/*:ascii*
:au	autocmd.txt	/*:au*
:aug	autocmd.txt	/*:aug*
:augroup	autocmd.txt	/*:augroup*
:augroup-delete	autocmd.txt	/*:augroup-delete*
:aun	gui.txt	/*:aun*
:aunmenu	gui.txt	/*:aunmenu*
:autocmd	autocmd.txt	/*:autocmd*
:autocmd-verbose	autocmd.txt	/*:autocmd-verbose*
:b	windows.txt	/*:b*
:bN	windows.txt	/*:bN*
:bNext	windows.txt	/*:bNext*
:ba	windows.txt	/*:ba*
:bad	windows.txt	/*:bad*
:badd	windows.txt	/*:badd*
:ball	windows.txt	/*:ball*
:bar	cmdline.txt	/*:bar*
:bd	windows.txt	/*:bd*
:bdel	windows.txt	/*:bdel*
:bdelete	windows.txt	/*:bdelete*
:be	gui.txt	/*:be*
:behave	gui.txt	/*:behave*
:bel	windows.txt	/*:bel*
:belowright	windows.txt	/*:belowright*
:bf	windows.txt	/*:bf*
:bfirst	windows.txt	/*:bfirst*
:bl	windows.txt	/*:bl*
:blast	windows.txt	/*:blast*
:bm	windows.txt	/*:bm*
:bmodified	windows.txt	/*:bmodified*
:bn	windows.txt	/*:bn*
:bnext	windows.txt	/*:bnext*
:botright	windows.txt	/*:botright*
:bp	windows.txt	/*:bp*
:bprevious	windows.txt	/*:bprevious*
:br	windows.txt	/*:br*
:brea	eval.txt	/*:brea*
:break	eval.txt	/*:break*
:breaka	repeat.txt	/*:breaka*
:breakadd	repeat.txt	/*:breakadd*
:breakd	repeat.txt	/*:breakd*
:breakdel	repeat.txt	/*:breakdel*
:breakl	repeat.txt	/*:breakl*
:breaklist	repeat.txt	/*:breaklist*
:brewind	windows.txt	/*:brewind*
:bro	editing.txt	/*:bro*
:browse	editing.txt	/*:browse*
:browse-set	options.txt	/*:browse-set*
:bu	windows.txt	/*:bu*
:buf	windows.txt	/*:buf*
:bufdo	windows.txt	/*:bufdo*
:buffer	windows.txt	/*:buffer*
:buffer-!	windows.txt	/*:buffer-!*
:buffers	windows.txt	/*:buffers*
:bun	windows.txt	/*:bun*
:bunload	windows.txt	/*:bunload*
:bw	windows.txt	/*:bw*
:bwipe	windows.txt	/*:bwipe*
:bwipeout	windows.txt	/*:bwipeout*
:c	change.txt	/*:c*
:cN	quickfix.txt	/*:cN*
:cNext	quickfix.txt	/*:cNext*
:cNf	quickfix.txt	/*:cNf*
:cNfile	quickfix.txt	/*:cNfile*
:ca	map.txt	/*:ca*
:cabbrev	map.txt	/*:cabbrev*
:cabc	map.txt	/*:cabc*
:cabclear	map.txt	/*:cabclear*
:cad	quickfix.txt	/*:cad*
:caddbuffer	quickfix.txt	/*:caddbuffer*
:cadde	quickfix.txt	/*:cadde*
:caddexpr	quickfix.txt	/*:caddexpr*
:caddf	quickfix.txt	/*:caddf*
:caddfile	quickfix.txt	/*:caddfile*
:cal	eval.txt	/*:cal*
:call	eval.txt	/*:call*
:cat	eval.txt	/*:cat*
:catch	eval.txt	/*:catch*
:cb	quickfix.txt	/*:cb*
:cbuffer	quickfix.txt	/*:cbuffer*
:cc	quickfix.txt	/*:cc*
:ccl	quickfix.txt	/*:ccl*
:cclose	quickfix.txt	/*:cclose*
:cd	editing.txt	/*:cd*
:cd-	editing.txt	/*:cd-*
:ce	change.txt	/*:ce*
:center	change.txt	/*:center*
:cex	quickfix.txt	/*:cex*
:cexpr	quickfix.txt	/*:cexpr*
:cf	quickfix.txt	/*:cf*
:cfile	quickfix.txt	/*:cfile*
:cfir	quickfix.txt	/*:cfir*
:cfirst	quickfix.txt	/*:cfirst*
:cg	quickfix.txt	/*:cg*
:cgetb	quickfix.txt	/*:cgetb*
:cgetbuffer	quickfix.txt	/*:cgetbuffer*
:cgete	quickfix.txt	/*:cgete*
:cgetexpr	quickfix.txt	/*:cgetexpr*
:cgetfile	quickfix.txt	/*:cgetfile*
:ch	change.txt	/*:ch*
:change	change.txt	/*:change*
:changes	motion.txt	/*:changes*
:chd	editing.txt	/*:chd*
:chdir	editing.txt	/*:chdir*
:che	tagsrch.txt	/*:che*
:checkpath	tagsrch.txt	/*:checkpath*
:checkt	editing.txt	/*:checkt*
:checktime	editing.txt	/*:checktime*
:cl	quickfix.txt	/*:cl*
:cla	quickfix.txt	/*:cla*
:clast	quickfix.txt	/*:clast*
:clist	quickfix.txt	/*:clist*
:clo	windows.txt	/*:clo*
:close	windows.txt	/*:close*
:cm	map.txt	/*:cm*
:cmap	map.txt	/*:cmap*
:cmap_l	map.txt	/*:cmap_l*
:cmapc	map.txt	/*:cmapc*
:cmapclear	map.txt	/*:cmapclear*
:cme	gui.txt	/*:cme*
:cmenu	gui.txt	/*:cmenu*
:cn	quickfix.txt	/*:cn*
:cnew	quickfix.txt	/*:cnew*
:cnewer	quickfix.txt	/*:cnewer*
:cnext	quickfix.txt	/*:cnext*
:cnf	quickfix.txt	/*:cnf*
:cnfile	quickfix.txt	/*:cnfile*
:cno	map.txt	/*:cno*
:cnorea	map.txt	/*:cnorea*
:cnoreabbrev	map.txt	/*:cnoreabbrev*
:cnoremap	map.txt	/*:cnoremap*
:cnoreme	gui.txt	/*:cnoreme*
:cnoremenu	gui.txt	/*:cnoremenu*
:co	change.txt	/*:co*
:col	quickfix.txt	/*:col*
:colder	quickfix.txt	/*:colder*
:colo	syntax.txt	/*:colo*
:colorscheme	syntax.txt	/*:colorscheme*
:com	map.txt	/*:com*
:comc	map.txt	/*:comc*
:comclear	map.txt	/*:comclear*
:command	map.txt	/*:command*
:command-bang	map.txt	/*:command-bang*
:command-bar	map.txt	/*:command-bar*
:command-buffer	map.txt	/*:command-buffer*
:command-complete	map.txt	/*:command-complete*
:command-completion	map.txt	/*:command-completion*
:command-completion-custom	map.txt	/*:command-completion-custom*
:command-completion-customlist	map.txt	/*:command-completion-customlist*
:command-count	map.txt	/*:command-count*
:command-nargs	map.txt	/*:command-nargs*
:command-range	map.txt	/*:command-range*
:command-register	map.txt	/*:command-register*
:command-verbose	map.txt	/*:command-verbose*
:comment	cmdline.txt	/*:comment*
:comp	quickfix.txt	/*:comp*
:compiler	quickfix.txt	/*:compiler*
:con	eval.txt	/*:con*
:conf	editing.txt	/*:conf*
:confirm	editing.txt	/*:confirm*
:continue	eval.txt	/*:continue*
:cope	quickfix.txt	/*:cope*
:copen	quickfix.txt	/*:copen*
:copy	change.txt	/*:copy*
:cp	quickfix.txt	/*:cp*
:cpf	quickfix.txt	/*:cpf*
:cpfile	quickfix.txt	/*:cpfile*
:cprevious	quickfix.txt	/*:cprevious*
:cq	quickfix.txt	/*:cq*
:cquit	quickfix.txt	/*:cquit*
:cr	quickfix.txt	/*:cr*
:crewind	quickfix.txt	/*:crewind*
:cs	if_cscop.txt	/*:cs*
:cscope	if_cscop.txt	/*:cscope*
:cstag	if_cscop.txt	/*:cstag*
:cu	map.txt	/*:cu*
:cuna	map.txt	/*:cuna*
:cunabbrev	map.txt	/*:cunabbrev*
:cunmap	map.txt	/*:cunmap*
:cunme	gui.txt	/*:cunme*
:cunmenu	gui.txt	/*:cunmenu*
:cw	quickfix.txt	/*:cw*
:cwindow	quickfix.txt	/*:cwindow*
:d	change.txt	/*:d*
:de	change.txt	/*:de*
:debug	repeat.txt	/*:debug*
:debug-name	repeat.txt	/*:debug-name*
:debugg	repeat.txt	/*:debugg*
:debuggreedy	repeat.txt	/*:debuggreedy*
:del	change.txt	/*:del*
:delc	map.txt	/*:delc*
:delcommand	map.txt	/*:delcommand*
:delcr	todo.txt	/*:delcr*
:delete	change.txt	/*:delete*
:delf	eval.txt	/*:delf*
:delfunction	eval.txt	/*:delfunction*
:delm	motion.txt	/*:delm*
:delmarks	motion.txt	/*:delmarks*
:di	change.txt	/*:di*
:diffg	diff.txt	/*:diffg*
:diffget	diff.txt	/*:diffget*
:diffo	diff.txt	/*:diffo*
:diffoff	diff.txt	/*:diffoff*
:diffp	diff.txt	/*:diffp*
:diffpatch	diff.txt	/*:diffpatch*
:diffpu	diff.txt	/*:diffpu*
:diffput	diff.txt	/*:diffput*
:diffs	diff.txt	/*:diffs*
:diffsplit	diff.txt	/*:diffsplit*
:difft	diff.txt	/*:difft*
:diffthis	diff.txt	/*:diffthis*
:diffu	diff.txt	/*:diffu*
:diffupdate	diff.txt	/*:diffupdate*
:dig	digraph.txt	/*:dig*
:digraphs	digraph.txt	/*:digraphs*
:display	change.txt	/*:display*
:dj	tagsrch.txt	/*:dj*
:djump	tagsrch.txt	/*:djump*
:dl	change.txt	/*:dl*
:dli	tagsrch.txt	/*:dli*
:dlist	tagsrch.txt	/*:dlist*
:do	autocmd.txt	/*:do*
:doau	autocmd.txt	/*:doau*
:doautoa	autocmd.txt	/*:doautoa*
:doautoall	autocmd.txt	/*:doautoall*
:doautocmd	autocmd.txt	/*:doautocmd*
:dp	change.txt	/*:dp*
:dr	windows.txt	/*:dr*
:drop	windows.txt	/*:drop*
:ds	tagsrch.txt	/*:ds*
:dsearch	tagsrch.txt	/*:dsearch*
:dsp	tagsrch.txt	/*:dsp*
:dsplit	tagsrch.txt	/*:dsplit*
:e	editing.txt	/*:e*
:ea	undo.txt	/*:ea*
:earlier	undo.txt	/*:earlier*
:ec	eval.txt	/*:ec*
:echo	eval.txt	/*:echo*
:echo-redraw	eval.txt	/*:echo-redraw*
:echoe	eval.txt	/*:echoe*
:echoerr	eval.txt	/*:echoerr*
:echoh	eval.txt	/*:echoh*
:echohl	eval.txt	/*:echohl*
:echom	eval.txt	/*:echom*
:echomsg	eval.txt	/*:echomsg*
:echon	eval.txt	/*:echon*
:edit	editing.txt	/*:edit*
:edit!	editing.txt	/*:edit!*
:edit!_f	editing.txt	/*:edit!_f*
:edit_f	editing.txt	/*:edit_f*
:el	eval.txt	/*:el*
:else	eval.txt	/*:else*
:elsei	eval.txt	/*:elsei*
:elseif	eval.txt	/*:elseif*
:em	gui.txt	/*:em*
:emenu	gui.txt	/*:emenu*
:en	eval.txt	/*:en*
:endf	eval.txt	/*:endf*
:endfo	eval.txt	/*:endfo*
:endfor	eval.txt	/*:endfor*
:endfunction	eval.txt	/*:endfunction*
:endif	eval.txt	/*:endif*
:endt	eval.txt	/*:endt*
:endtry	eval.txt	/*:endtry*
:endw	eval.txt	/*:endw*
:endwhile	eval.txt	/*:endwhile*
:ene	editing.txt	/*:ene*
:ene!	editing.txt	/*:ene!*
:enew	editing.txt	/*:enew*
:enew!	editing.txt	/*:enew!*
:ex	editing.txt	/*:ex*
:exe	eval.txt	/*:exe*
:exe-comment	eval.txt	/*:exe-comment*
:execute	eval.txt	/*:execute*
:exi	editing.txt	/*:exi*
:exit	editing.txt	/*:exit*
:exu	helphelp.txt	/*:exu*
:exusage	helphelp.txt	/*:exusage*
:f	editing.txt	/*:f*
:fi	editing.txt	/*:fi*
:file	editing.txt	/*:file*
:file_f	editing.txt	/*:file_f*
:filename	editing.txt	/*:filename*
:files	windows.txt	/*:files*
:filet	filetype.txt	/*:filet*
:filetype	filetype.txt	/*:filetype*
:filetype-indent-off	filetype.txt	/*:filetype-indent-off*
:filetype-indent-on	filetype.txt	/*:filetype-indent-on*
:filetype-off	filetype.txt	/*:filetype-off*
:filetype-overview	filetype.txt	/*:filetype-overview*
:filetype-plugin-off	filetype.txt	/*:filetype-plugin-off*
:filetype-plugin-on	filetype.txt	/*:filetype-plugin-on*
:fin	editing.txt	/*:fin*
:fina	eval.txt	/*:fina*
:finally	eval.txt	/*:finally*
:find	editing.txt	/*:find*
:fini	repeat.txt	/*:fini*
:finish	repeat.txt	/*:finish*
:fir	editing.txt	/*:fir*
:first	editing.txt	/*:first*
:fix	options.txt	/*:fix*
:fixdel	options.txt	/*:fixdel*
:fo	fold.txt	/*:fo*
:fold	fold.txt	/*:fold*
:foldc	fold.txt	/*:foldc*
:foldclose	fold.txt	/*:foldclose*
:foldd	fold.txt	/*:foldd*
:folddoc	fold.txt	/*:folddoc*
:folddoclosed	fold.txt	/*:folddoclosed*
:folddoopen	fold.txt	/*:folddoopen*
:foldo	fold.txt	/*:foldo*
:foldopen	fold.txt	/*:foldopen*
:for	eval.txt	/*:for*
:fu	eval.txt	/*:fu*
:func-abort	eval.txt	/*:func-abort*
:func-dict	eval.txt	/*:func-dict*
:func-range	eval.txt	/*:func-range*
:function	eval.txt	/*:function*
:function-verbose	eval.txt	/*:function-verbose*
:g	repeat.txt	/*:g*
:global	repeat.txt	/*:global*
:go	motion.txt	/*:go*
:goto	motion.txt	/*:goto*
:gr	quickfix.txt	/*:gr*
:grep	quickfix.txt	/*:grep*
:grepa	quickfix.txt	/*:grepa*
:grepadd	quickfix.txt	/*:grepadd*
:gu	gui_x11.txt	/*:gu*
:gui	gui_x11.txt	/*:gui*
:gv	gui_x11.txt	/*:gv*
:gvim	gui_x11.txt	/*:gvim*
:h	helphelp.txt	/*:h*
:ha	print.txt	/*:ha*
:hardcopy	print.txt	/*:hardcopy*
:help	helphelp.txt	/*:help*
:helpf	helphelp.txt	/*:helpf*
:helpfind	helphelp.txt	/*:helpfind*
:helpg	helphelp.txt	/*:helpg*
:helpgrep	helphelp.txt	/*:helpgrep*
:helpt	helphelp.txt	/*:helpt*
:helptags	helphelp.txt	/*:helptags*
:hi	syntax.txt	/*:hi*
:hi-default	syntax.txt	/*:hi-default*
:hi-link	syntax.txt	/*:hi-link*
:hi-normal	syntax.txt	/*:hi-normal*
:hi-normal-cterm	syntax.txt	/*:hi-normal-cterm*
:hide	windows.txt	/*:hide*
:highlight	syntax.txt	/*:highlight*
:highlight-default	syntax.txt	/*:highlight-default*
:highlight-link	syntax.txt	/*:highlight-link*
:highlight-normal	syntax.txt	/*:highlight-normal*
:highlight-verbose	syntax.txt	/*:highlight-verbose*
:his	cmdline.txt	/*:his*
:history	cmdline.txt	/*:history*
:history-indexing	cmdline.txt	/*:history-indexing*
:i	insert.txt	/*:i*
:ia	map.txt	/*:ia*
:iabbrev	map.txt	/*:iabbrev*
:iabc	map.txt	/*:iabc*
:iabclear	map.txt	/*:iabclear*
:if	eval.txt	/*:if*
:ij	tagsrch.txt	/*:ij*
:ijump	tagsrch.txt	/*:ijump*
:il	tagsrch.txt	/*:il*
:ilist	tagsrch.txt	/*:ilist*
:im	map.txt	/*:im*
:imap	map.txt	/*:imap*
:imap_l	map.txt	/*:imap_l*
:imapc	map.txt	/*:imapc*
:imapclear	map.txt	/*:imapclear*
:ime	gui.txt	/*:ime*
:imenu	gui.txt	/*:imenu*
:in	insert.txt	/*:in*
:index	index.txt	/*:index*
:ino	map.txt	/*:ino*
:inorea	map.txt	/*:inorea*
:inoreabbrev	map.txt	/*:inoreabbrev*
:inoremap	map.txt	/*:inoremap*
:inoreme	gui.txt	/*:inoreme*
:inoremenu	gui.txt	/*:inoremenu*
:insert	insert.txt	/*:insert*
:intro	starting.txt	/*:intro*
:is	tagsrch.txt	/*:is*
:isearch	tagsrch.txt	/*:isearch*
:isp	tagsrch.txt	/*:isp*
:isplit	tagsrch.txt	/*:isplit*
:iu	map.txt	/*:iu*
:iuna	map.txt	/*:iuna*
:iunabbrev	map.txt	/*:iunabbrev*
:iunmap	map.txt	/*:iunmap*
:iunme	gui.txt	/*:iunme*
:iunmenu	gui.txt	/*:iunmenu*
:j	change.txt	/*:j*
:join	change.txt	/*:join*
:ju	motion.txt	/*:ju*
:jumps	motion.txt	/*:jumps*
:k	motion.txt	/*:k*
:kee	motion.txt	/*:kee*
:keepa	editing.txt	/*:keepa*
:keepalt	editing.txt	/*:keepalt*
:keepj	motion.txt	/*:keepj*
:keepjumps	motion.txt	/*:keepjumps*
:keepmarks	motion.txt	/*:keepmarks*
:keepp	cmdline.txt	/*:keepp*
:keeppatterns	cmdline.txt	/*:keeppatterns*
:l	various.txt	/*:l*
:lN	quickfix.txt	/*:lN*
:lNext	quickfix.txt	/*:lNext*
:lNf	quickfix.txt	/*:lNf*
:lNfile	quickfix.txt	/*:lNfile*
:la	editing.txt	/*:la*
:lad	quickfix.txt	/*:lad*
:laddb	quickfix.txt	/*:laddb*
:laddbuffer	quickfix.txt	/*:laddbuffer*
:laddexpr	quickfix.txt	/*:laddexpr*
:laddf	quickfix.txt	/*:laddf*
:laddfile	quickfix.txt	/*:laddfile*
:lan	mlang.txt	/*:lan*
:lang	mlang.txt	/*:lang*
:language	mlang.txt	/*:language*
:last	editing.txt	/*:last*
:lat	undo.txt	/*:lat*
:later	undo.txt	/*:later*
:lb	quickfix.txt	/*:lb*
:lbuffer	quickfix.txt	/*:lbuffer*
:lc	editing.txt	/*:lc*
:lcd	editing.txt	/*:lcd*
:lch	editing.txt	/*:lch*
:lchdir	editing.txt	/*:lchdir*
:lcl	quickfix.txt	/*:lcl*
:lclose	quickfix.txt	/*:lclose*
:lcs	if_cscop.txt	/*:lcs*
:lcscope	if_cscop.txt	/*:lcscope*
:le	change.txt	/*:le*
:left	change.txt	/*:left*
:lefta	windows.txt	/*:lefta*
:leftabove	windows.txt	/*:leftabove*
:let	eval.txt	/*:let*
:let+=	eval.txt	/*:let+=*
:let-$	eval.txt	/*:let-$*
:let-&	eval.txt	/*:let-&*
:let-=	eval.txt	/*:let-=*
:let-@	eval.txt	/*:let-@*
:let-environment	eval.txt	/*:let-environment*
:let-option	eval.txt	/*:let-option*
:let-register	eval.txt	/*:let-register*
:let-unpack	eval.txt	/*:let-unpack*
:let.=	eval.txt	/*:let.=*
:lex	quickfix.txt	/*:lex*
:lexpr	quickfix.txt	/*:lexpr*
:lf	quickfix.txt	/*:lf*
:lfile	quickfix.txt	/*:lfile*
:lfir	quickfix.txt	/*:lfir*
:lfirst	quickfix.txt	/*:lfirst*
:lg	quickfix.txt	/*:lg*
:lgetb	quickfix.txt	/*:lgetb*
:lgetbuffer	quickfix.txt	/*:lgetbuffer*
:lgete	quickfix.txt	/*:lgete*
:lgetexpr	quickfix.txt	/*:lgetexpr*
:lgetfile	quickfix.txt	/*:lgetfile*
:lgr	quickfix.txt	/*:lgr*
:lgrep	quickfix.txt	/*:lgrep*
:lgrepa	quickfix.txt	/*:lgrepa*
:lgrepadd	quickfix.txt	/*:lgrepadd*
:lh	helphelp.txt	/*:lh*
:lhelpgrep	helphelp.txt	/*:lhelpgrep*
:list	various.txt	/*:list*
:ll	quickfix.txt	/*:ll*
:lla	quickfix.txt	/*:lla*
:llast	quickfix.txt	/*:llast*
:lli	quickfix.txt	/*:lli*
:llist	quickfix.txt	/*:llist*
:lm	map.txt	/*:lm*
:lmak	quickfix.txt	/*:lmak*
:lmake	quickfix.txt	/*:lmake*
:lmap	map.txt	/*:lmap*
:lmap_l	map.txt	/*:lmap_l*
:lmapc	map.txt	/*:lmapc*
:lmapclear	map.txt	/*:lmapclear*
:ln	map.txt	/*:ln*
:lne	quickfix.txt	/*:lne*
:lnew	quickfix.txt	/*:lnew*
:lnewer	quickfix.txt	/*:lnewer*
:lnext	quickfix.txt	/*:lnext*
:lnf	quickfix.txt	/*:lnf*
:lnfile	quickfix.txt	/*:lnfile*
:lnoremap	map.txt	/*:lnoremap*
:lo	starting.txt	/*:lo*
:loadk	mbyte.txt	/*:loadk*
:loadkeymap	mbyte.txt	/*:loadkeymap*
:loadview	starting.txt	/*:loadview*
:loc	motion.txt	/*:loc*
:lockmarks	motion.txt	/*:lockmarks*
:lockv	eval.txt	/*:lockv*
:lockvar	eval.txt	/*:lockvar*
:lol	quickfix.txt	/*:lol*
:lolder	quickfix.txt	/*:lolder*
:lop	quickfix.txt	/*:lop*
:lopen	quickfix.txt	/*:lopen*
:lp	quickfix.txt	/*:lp*
:lpf	quickfix.txt	/*:lpf*
:lpfile	quickfix.txt	/*:lpfile*
:lprevious	quickfix.txt	/*:lprevious*
:lr	quickfix.txt	/*:lr*
:lrewind	quickfix.txt	/*:lrewind*
:ls	windows.txt	/*:ls*
:lt	tagsrch.txt	/*:lt*
:ltag	tagsrch.txt	/*:ltag*
:lu	map.txt	/*:lu*
:lua	if_lua.txt	/*:lua*
:luado	if_lua.txt	/*:luado*
:luafile	if_lua.txt	/*:luafile*
:lunmap	map.txt	/*:lunmap*
:lv	quickfix.txt	/*:lv*
:lvimgrep	quickfix.txt	/*:lvimgrep*
:lvimgrepa	quickfix.txt	/*:lvimgrepa*
:lvimgrepadd	quickfix.txt	/*:lvimgrepadd*
:lw	quickfix.txt	/*:lw*
:lwindow	quickfix.txt	/*:lwindow*
:m	change.txt	/*:m*
:ma	motion.txt	/*:ma*
:mak	quickfix.txt	/*:mak*
:make	quickfix.txt	/*:make*
:make_makeprg	quickfix.txt	/*:make_makeprg*
:map	map.txt	/*:map*
:map!	map.txt	/*:map!*
:map-<buffer>	map.txt	/*:map-<buffer>*
:map-<expr>	map.txt	/*:map-<expr>*
:map-<nowait>	map.txt	/*:map-<nowait>*
:map-<script>	map.txt	/*:map-<script>*
:map-<silent>	map.txt	/*:map-<silent>*
:map-<special>	map.txt	/*:map-<special>*
:map-<unique>	map.txt	/*:map-<unique>*
:map-alt-keys	map.txt	/*:map-alt-keys*
:map-arguments	map.txt	/*:map-arguments*
:map-commands	map.txt	/*:map-commands*
:map-expression	map.txt	/*:map-expression*
:map-local	map.txt	/*:map-local*
:map-modes	map.txt	/*:map-modes*
:map-nowait	map.txt	/*:map-nowait*
:map-operator	map.txt	/*:map-operator*
:map-script	map.txt	/*:map-script*
:map-silent	map.txt	/*:map-silent*
:map-special	map.txt	/*:map-special*
:map-special-chars	map.txt	/*:map-special-chars*
:map-special-keys	map.txt	/*:map-special-keys*
:map-undo	map.txt	/*:map-undo*
:map-verbose	map.txt	/*:map-verbose*
:map_l	map.txt	/*:map_l*
:map_l!	map.txt	/*:map_l!*
:mapc	map.txt	/*:mapc*
:mapc!	map.txt	/*:mapc!*
:mapclear	map.txt	/*:mapclear*
:mapclear!	map.txt	/*:mapclear!*
:mark	motion.txt	/*:mark*
:marks	motion.txt	/*:marks*
:mat	pattern.txt	/*:mat*
:match	pattern.txt	/*:match*
:me	gui.txt	/*:me*
:menu	gui.txt	/*:menu*
:menu-<script>	gui.txt	/*:menu-<script>*
:menu-<silent>	gui.txt	/*:menu-<silent>*
:menu-<special>	gui.txt	/*:menu-<special>*
:menu-disable	gui.txt	/*:menu-disable*
:menu-enable	gui.txt	/*:menu-enable*
:menu-script	gui.txt	/*:menu-script*
:menu-silent	gui.txt	/*:menu-silent*
:menu-special	gui.txt	/*:menu-special*
:menut	mlang.txt	/*:menut*
:menutrans	mlang.txt	/*:menutrans*
:menutranslate	mlang.txt	/*:menutranslate*
:mes	message.txt	/*:mes*
:messages	message.txt	/*:messages*
:mk	starting.txt	/*:mk*
:mkexrc	starting.txt	/*:mkexrc*
:mks	starting.txt	/*:mks*
:mksession	starting.txt	/*:mksession*
:mksp	spell.txt	/*:mksp*
:mkspell	spell.txt	/*:mkspell*
:mkv	starting.txt	/*:mkv*
:mkvie	starting.txt	/*:mkvie*
:mkview	starting.txt	/*:mkview*
:mkvimrc	starting.txt	/*:mkvimrc*
:mo	change.txt	/*:mo*
:mod	term.txt	/*:mod*
:mode	term.txt	/*:mode*
:move	change.txt	/*:move*
:mz	if_mzsch.txt	/*:mz*
:mzf	if_mzsch.txt	/*:mzf*
:mzfile	if_mzsch.txt	/*:mzfile*
:mzscheme	if_mzsch.txt	/*:mzscheme*
:n	editing.txt	/*:n*
:nbclose	netbeans.txt	/*:nbclose*
:nbkey	netbeans.txt	/*:nbkey*
:nbstart	netbeans.txt	/*:nbstart*
:ne	editing.txt	/*:ne*
:netrw-s-cr	pi_netrw.txt	/*:netrw-s-cr*
:new	windows.txt	/*:new*
:next	editing.txt	/*:next*
:next_f	editing.txt	/*:next_f*
:nm	map.txt	/*:nm*
:nmap	map.txt	/*:nmap*
:nmap_l	map.txt	/*:nmap_l*
:nmapc	map.txt	/*:nmapc*
:nmapclear	map.txt	/*:nmapclear*
:nme	gui.txt	/*:nme*
:nmenu	gui.txt	/*:nmenu*
:nn	map.txt	/*:nn*
:nnoremap	map.txt	/*:nnoremap*
:nnoreme	gui.txt	/*:nnoreme*
:nnoremenu	gui.txt	/*:nnoremenu*
:no	map.txt	/*:no*
:no!	map.txt	/*:no!*
:noa	autocmd.txt	/*:noa*
:noautocmd	autocmd.txt	/*:noautocmd*
:noh	pattern.txt	/*:noh*
:nohlsearch	pattern.txt	/*:nohlsearch*
:nor	map.txt	/*:nor*
:nore	map.txt	/*:nore*
:norea	map.txt	/*:norea*
:noreabbrev	map.txt	/*:noreabbrev*
:norem	map.txt	/*:norem*
:noremap	map.txt	/*:noremap*
:noremap!	map.txt	/*:noremap!*
:noreme	gui.txt	/*:noreme*
:noremenu	gui.txt	/*:noremenu*
:norm	various.txt	/*:norm*
:normal	various.txt	/*:normal*
:normal-range	various.txt	/*:normal-range*
:nos	recover.txt	/*:nos*
:noswapfile	recover.txt	/*:noswapfile*
:nu	various.txt	/*:nu*
:number	various.txt	/*:number*
:nun	map.txt	/*:nun*
:nunmap	map.txt	/*:nunmap*
:nunme	gui.txt	/*:nunme*
:nunmenu	gui.txt	/*:nunmenu*
:o	vi_diff.txt	/*:o*
:ol	starting.txt	/*:ol*
:oldfiles	starting.txt	/*:oldfiles*
:om	map.txt	/*:om*
:omap	map.txt	/*:omap*
:omap_l	map.txt	/*:omap_l*
:omapc	map.txt	/*:omapc*
:omapclear	map.txt	/*:omapclear*
:ome	gui.txt	/*:ome*
:omenu	gui.txt	/*:omenu*
:on	windows.txt	/*:on*
:only	windows.txt	/*:only*
:ono	map.txt	/*:ono*
:onoremap	map.txt	/*:onoremap*
:onoreme	gui.txt	/*:onoreme*
:onoremenu	gui.txt	/*:onoremenu*
:op	vi_diff.txt	/*:op*
:open	vi_diff.txt	/*:open*
:opt	options.txt	/*:opt*
:options	options.txt	/*:options*
:ou	map.txt	/*:ou*
:ounmap	map.txt	/*:ounmap*
:ounme	gui.txt	/*:ounme*
:ounmenu	gui.txt	/*:ounmenu*
:ownsyntax	syntax.txt	/*:ownsyntax*
:p	various.txt	/*:p*
:pc	windows.txt	/*:pc*
:pclose	windows.txt	/*:pclose*
:pe	if_perl.txt	/*:pe*
:ped	windows.txt	/*:ped*
:pedit	windows.txt	/*:pedit*
:perl	if_perl.txt	/*:perl*
:perld	if_perl.txt	/*:perld*
:perldo	if_perl.txt	/*:perldo*
:po	tagsrch.txt	/*:po*
:pop	tagsrch.txt	/*:pop*
:popu	gui.txt	/*:popu*
:popup	gui.txt	/*:popup*
:pp	windows.txt	/*:pp*
:ppop	windows.txt	/*:ppop*
:pr	various.txt	/*:pr*
:pre	recover.txt	/*:pre*
:preserve	recover.txt	/*:preserve*
:prev	editing.txt	/*:prev*
:previous	editing.txt	/*:previous*
:print	various.txt	/*:print*
:pro	change.txt	/*:pro*
:prof	repeat.txt	/*:prof*
:profd	repeat.txt	/*:profd*
:profdel	repeat.txt	/*:profdel*
:profile	repeat.txt	/*:profile*
:promptfind	change.txt	/*:promptfind*
:promptr	change.txt	/*:promptr*
:promptrepl	change.txt	/*:promptrepl*
:ps	windows.txt	/*:ps*
:psearch	windows.txt	/*:psearch*
:ptN	tagsrch.txt	/*:ptN*
:ptNext	tagsrch.txt	/*:ptNext*
:pta	windows.txt	/*:pta*
:ptag	windows.txt	/*:ptag*
:ptf	tagsrch.txt	/*:ptf*
:ptfirst	tagsrch.txt	/*:ptfirst*
:ptj	tagsrch.txt	/*:ptj*
:ptjump	tagsrch.txt	/*:ptjump*
:ptl	tagsrch.txt	/*:ptl*
:ptlast	tagsrch.txt	/*:ptlast*
:ptn	tagsrch.txt	/*:ptn*
:ptnext	tagsrch.txt	/*:ptnext*
:ptp	tagsrch.txt	/*:ptp*
:ptprevious	tagsrch.txt	/*:ptprevious*
:ptr	tagsrch.txt	/*:ptr*
:ptrewind	tagsrch.txt	/*:ptrewind*
:pts	tagsrch.txt	/*:pts*
:ptselect	tagsrch.txt	/*:ptselect*
:pu	change.txt	/*:pu*
:put	change.txt	/*:put*
:pw	editing.txt	/*:pw*
:pwd	editing.txt	/*:pwd*
:py	if_pyth.txt	/*:py*
:py3	if_pyth.txt	/*:py3*
:py3do	if_pyth.txt	/*:py3do*
:py3file	if_pyth.txt	/*:py3file*
:pydo	if_pyth.txt	/*:pydo*
:pyf	if_pyth.txt	/*:pyf*
:pyfile	if_pyth.txt	/*:pyfile*
:python	if_pyth.txt	/*:python*
:python3	if_pyth.txt	/*:python3*
:q	editing.txt	/*:q*
:qa	editing.txt	/*:qa*
:qall	editing.txt	/*:qall*
:quit	editing.txt	/*:quit*
:quita	editing.txt	/*:quita*
:quitall	editing.txt	/*:quitall*
:quote	cmdline.txt	/*:quote*
:r	insert.txt	/*:r*
:r!	insert.txt	/*:r!*
:range	cmdline.txt	/*:range*
:range!	change.txt	/*:range!*
:re	insert.txt	/*:re*
:read	insert.txt	/*:read*
:read!	insert.txt	/*:read!*
:rec	recover.txt	/*:rec*
:recover	recover.txt	/*:recover*
:recover-crypt	recover.txt	/*:recover-crypt*
:red	undo.txt	/*:red*
:redi	various.txt	/*:redi*
:redir	various.txt	/*:redir*
:redo	undo.txt	/*:redo*
:redr	various.txt	/*:redr*
:redraw	various.txt	/*:redraw*
:redraws	various.txt	/*:redraws*
:redrawstatus	various.txt	/*:redrawstatus*
:reg	change.txt	/*:reg*
:registers	change.txt	/*:registers*
:res	windows.txt	/*:res*
:resize	windows.txt	/*:resize*
:ret	change.txt	/*:ret*
:retab	change.txt	/*:retab*
:retab!	change.txt	/*:retab!*
:retu	eval.txt	/*:retu*
:return	eval.txt	/*:return*
:rew	editing.txt	/*:rew*
:rewind	editing.txt	/*:rewind*
:ri	change.txt	/*:ri*
:right	change.txt	/*:right*
:rightb	windows.txt	/*:rightb*
:rightbelow	windows.txt	/*:rightbelow*
:ru	repeat.txt	/*:ru*
:rub	if_ruby.txt	/*:rub*
:ruby	if_ruby.txt	/*:ruby*
:rubyd	if_ruby.txt	/*:rubyd*
:rubydo	if_ruby.txt	/*:rubydo*
:rubyf	if_ruby.txt	/*:rubyf*
:rubyfile	if_ruby.txt	/*:rubyfile*
:rundo	undo.txt	/*:rundo*
:runtime	repeat.txt	/*:runtime*
:rv	starting.txt	/*:rv*
:rviminfo	starting.txt	/*:rviminfo*
:s	change.txt	/*:s*
:s%	change.txt	/*:s%*
:sN	windows.txt	/*:sN*
:sNext	windows.txt	/*:sNext*
:s\=	change.txt	/*:s\\=*
:s_c	change.txt	/*:s_c*
:s_flags	change.txt	/*:s_flags*
:sa	windows.txt	/*:sa*
:sal	windows.txt	/*:sal*
:sall	windows.txt	/*:sall*
:san	eval.txt	/*:san*
:sandbox	eval.txt	/*:sandbox*
:sargument	windows.txt	/*:sargument*
:sav	editing.txt	/*:sav*
:saveas	editing.txt	/*:saveas*
:sb	windows.txt	/*:sb*
:sbN	windows.txt	/*:sbN*
:sbNext	windows.txt	/*:sbNext*
:sba	windows.txt	/*:sba*
:sball	windows.txt	/*:sball*
:sbf	windows.txt	/*:sbf*
:sbfirst	windows.txt	/*:sbfirst*
:sbl	windows.txt	/*:sbl*
:sblast	windows.txt	/*:sblast*
:sbm	windows.txt	/*:sbm*
:sbmodified	windows.txt	/*:sbmodified*
:sbn	windows.txt	/*:sbn*
:sbnext	windows.txt	/*:sbnext*
:sbp	windows.txt	/*:sbp*
:sbprevious	windows.txt	/*:sbprevious*
:sbr	windows.txt	/*:sbr*
:sbrewind	windows.txt	/*:sbrewind*
:sbuffer	windows.txt	/*:sbuffer*
:scrip	repeat.txt	/*:scrip*
:scripte	repeat.txt	/*:scripte*
:scriptencoding	repeat.txt	/*:scriptencoding*
:scriptnames	repeat.txt	/*:scriptnames*
:scs	if_cscop.txt	/*:scs*
:scscope	if_cscop.txt	/*:scscope*
:se	options.txt	/*:se*
:search-args	tagsrch.txt	/*:search-args*
:set	options.txt	/*:set*
:set+=	options.txt	/*:set+=*
:set-!	options.txt	/*:set-!*
:set-&	options.txt	/*:set-&*
:set-&vi	options.txt	/*:set-&vi*
:set-&vim	options.txt	/*:set-&vim*
:set-=	options.txt	/*:set-=*
:set-args	options.txt	/*:set-args*
:set-browse	options.txt	/*:set-browse*
:set-default	options.txt	/*:set-default*
:set-inv	options.txt	/*:set-inv*
:set-termcap	options.txt	/*:set-termcap*
:set-verbose	options.txt	/*:set-verbose*
:set^=	options.txt	/*:set^=*
:set_env	options.txt	/*:set_env*
:setf	options.txt	/*:setf*
:setfiletype	options.txt	/*:setfiletype*
:setg	options.txt	/*:setg*
:setglobal	options.txt	/*:setglobal*
:setl	options.txt	/*:setl*
:setlocal	options.txt	/*:setlocal*
:sf	windows.txt	/*:sf*
:sfind	windows.txt	/*:sfind*
:sfir	windows.txt	/*:sfir*
:sfirst	windows.txt	/*:sfirst*
:sh	various.txt	/*:sh*
:shell	various.txt	/*:shell*
:si	gui_w32.txt	/*:si*
:sig	sign.txt	/*:sig*
:sign	sign.txt	/*:sign*
:sign-define	sign.txt	/*:sign-define*
:sign-fname	sign.txt	/*:sign-fname*
:sign-jump	sign.txt	/*:sign-jump*
:sign-list	sign.txt	/*:sign-list*
:sign-place	sign.txt	/*:sign-place*
:sign-place-list	sign.txt	/*:sign-place-list*
:sign-undefine	sign.txt	/*:sign-undefine*
:sign-unplace	sign.txt	/*:sign-unplace*
:sil	various.txt	/*:sil*
:silent	various.txt	/*:silent*
:simalt	gui_w32.txt	/*:simalt*
:sl	various.txt	/*:sl*
:sla	windows.txt	/*:sla*
:slast	windows.txt	/*:slast*
:sleep	various.txt	/*:sleep*
:sm	change.txt	/*:sm*
:smagic	change.txt	/*:smagic*
:smap	map.txt	/*:smap*
:smap_l	map.txt	/*:smap_l*
:smapc	map.txt	/*:smapc*
:smapclear	map.txt	/*:smapclear*
:sme	gui.txt	/*:sme*
:smenu	gui.txt	/*:smenu*
:sn	windows.txt	/*:sn*
:snext	windows.txt	/*:snext*
:sni	if_sniff.txt	/*:sni*
:sniff	if_sniff.txt	/*:sniff*
:sno	change.txt	/*:sno*
:snomagic	change.txt	/*:snomagic*
:snor	map.txt	/*:snor*
:snoremap	map.txt	/*:snoremap*
:snoreme	gui.txt	/*:snoreme*
:snoremenu	gui.txt	/*:snoremenu*
:so	repeat.txt	/*:so*
:sor	change.txt	/*:sor*
:sort	change.txt	/*:sort*
:source	repeat.txt	/*:source*
:source_crnl	repeat.txt	/*:source_crnl*
:sp	windows.txt	/*:sp*
:spe	spell.txt	/*:spe*
:spelld	spell.txt	/*:spelld*
:spelldump	spell.txt	/*:spelldump*
:spellgood	spell.txt	/*:spellgood*
:spelli	spell.txt	/*:spelli*
:spellinfo	spell.txt	/*:spellinfo*
:spellr	spell.txt	/*:spellr*
:spellrepall	spell.txt	/*:spellrepall*
:spellu	spell.txt	/*:spellu*
:spellundo	spell.txt	/*:spellundo*
:spellw	spell.txt	/*:spellw*
:spellwrong	spell.txt	/*:spellwrong*
:split	windows.txt	/*:split*
:split_f	windows.txt	/*:split_f*
:spr	windows.txt	/*:spr*
:sprevious	windows.txt	/*:sprevious*
:sre	windows.txt	/*:sre*
:srewind	windows.txt	/*:srewind*
:st	starting.txt	/*:st*
:sta	windows.txt	/*:sta*
:stag	windows.txt	/*:stag*
:star	repeat.txt	/*:star*
:start	insert.txt	/*:start*
:startgreplace	insert.txt	/*:startgreplace*
:startinsert	insert.txt	/*:startinsert*
:startreplace	insert.txt	/*:startreplace*
:stj	tagsrch.txt	/*:stj*
:stjump	tagsrch.txt	/*:stjump*
:stop	starting.txt	/*:stop*
:stopi	insert.txt	/*:stopi*
:stopinsert	insert.txt	/*:stopinsert*
:sts	tagsrch.txt	/*:sts*
:stselect	tagsrch.txt	/*:stselect*
:su	change.txt	/*:su*
:substitute	change.txt	/*:substitute*
:sun	windows.txt	/*:sun*
:sunhide	windows.txt	/*:sunhide*
:sunm	map.txt	/*:sunm*
:sunmap	map.txt	/*:sunmap*
:sunme	gui.txt	/*:sunme*
:sunmenu	gui.txt	/*:sunmenu*
:sus	starting.txt	/*:sus*
:suspend	starting.txt	/*:suspend*
:sv	windows.txt	/*:sv*
:sview	windows.txt	/*:sview*
:sw	recover.txt	/*:sw*
:swapname	recover.txt	/*:swapname*
:sy	syntax.txt	/*:sy*
:syn	syntax.txt	/*:syn*
:syn-arguments	syntax.txt	/*:syn-arguments*
:syn-case	syntax.txt	/*:syn-case*
:syn-cchar	syntax.txt	/*:syn-cchar*
:syn-clear	syntax.txt	/*:syn-clear*
:syn-cluster	syntax.txt	/*:syn-cluster*
:syn-conceal	syntax.txt	/*:syn-conceal*
:syn-conceal-implicit	syntax.txt	/*:syn-conceal-implicit*
:syn-concealends	syntax.txt	/*:syn-concealends*
:syn-contained	syntax.txt	/*:syn-contained*
:syn-containedin	syntax.txt	/*:syn-containedin*
:syn-contains	syntax.txt	/*:syn-contains*
:syn-context	syntax.txt	/*:syn-context*
:syn-default-override	usr_06.txt	/*:syn-default-override*
:syn-define	syntax.txt	/*:syn-define*
:syn-display	syntax.txt	/*:syn-display*
:syn-enable	syntax.txt	/*:syn-enable*
:syn-end	syntax.txt	/*:syn-end*
:syn-excludenl	syntax.txt	/*:syn-excludenl*
:syn-ext-match	syntax.txt	/*:syn-ext-match*
:syn-extend	syntax.txt	/*:syn-extend*
:syn-file-remarks	syntax.txt	/*:syn-file-remarks*
:syn-files	syntax.txt	/*:syn-files*
:syn-fold	syntax.txt	/*:syn-fold*
:syn-include	syntax.txt	/*:syn-include*
:syn-keepend	syntax.txt	/*:syn-keepend*
:syn-keyword	syntax.txt	/*:syn-keyword*
:syn-lc	syntax.txt	/*:syn-lc*
:syn-leading	syntax.txt	/*:syn-leading*
:syn-list	syntax.txt	/*:syn-list*
:syn-manual	usr_06.txt	/*:syn-manual*
:syn-match	syntax.txt	/*:syn-match*
:syn-matchgroup	syntax.txt	/*:syn-matchgroup*
:syn-multi-line	syntax.txt	/*:syn-multi-line*
:syn-nextgroup	syntax.txt	/*:syn-nextgroup*
:syn-off	usr_06.txt	/*:syn-off*
:syn-on	syntax.txt	/*:syn-on*
:syn-oneline	syntax.txt	/*:syn-oneline*
:syn-pattern	syntax.txt	/*:syn-pattern*
:syn-pattern-offset	syntax.txt	/*:syn-pattern-offset*
:syn-priority	syntax.txt	/*:syn-priority*
:syn-qstart	syntax.txt	/*:syn-qstart*
:syn-region	syntax.txt	/*:syn-region*
:syn-reset	syntax.txt	/*:syn-reset*
:syn-skip	syntax.txt	/*:syn-skip*
:syn-skipempty	syntax.txt	/*:syn-skipempty*
:syn-skipnl	syntax.txt	/*:syn-skipnl*
:syn-skipwhite	syntax.txt	/*:syn-skipwhite*
:syn-spell	syntax.txt	/*:syn-spell*
:syn-start	syntax.txt	/*:syn-start*
:syn-sync	syntax.txt	/*:syn-sync*
:syn-sync-ccomment	syntax.txt	/*:syn-sync-ccomment*
:syn-sync-first	syntax.txt	/*:syn-sync-first*
:syn-sync-fourth	syntax.txt	/*:syn-sync-fourth*
:syn-sync-linebreaks	syntax.txt	/*:syn-sync-linebreaks*
:syn-sync-maxlines	syntax.txt	/*:syn-sync-maxlines*
:syn-sync-minlines	syntax.txt	/*:syn-sync-minlines*
:syn-sync-second	syntax.txt	/*:syn-sync-second*
:syn-sync-third	syntax.txt	/*:syn-sync-third*
:syn-transparent	syntax.txt	/*:syn-transparent*
:sync	scroll.txt	/*:sync*
:syncbind	scroll.txt	/*:syncbind*
:syntax	syntax.txt	/*:syntax*
:syntax-enable	syntax.txt	/*:syntax-enable*
:syntax-on	syntax.txt	/*:syntax-on*
:syntax-reset	syntax.txt	/*:syntax-reset*
:syntime	syntax.txt	/*:syntime*
:t	change.txt	/*:t*
:tN	tagsrch.txt	/*:tN*
:tNext	tagsrch.txt	/*:tNext*
:ta	tagsrch.txt	/*:ta*
:tab	tabpage.txt	/*:tab*
:tabN	tabpage.txt	/*:tabN*
:tabNext	tabpage.txt	/*:tabNext*
:tabc	tabpage.txt	/*:tabc*
:tabclose	tabpage.txt	/*:tabclose*
:tabd	tabpage.txt	/*:tabd*
:tabdo	tabpage.txt	/*:tabdo*
:tabe	tabpage.txt	/*:tabe*
:tabedit	tabpage.txt	/*:tabedit*
:tabf	tabpage.txt	/*:tabf*
:tabfind	tabpage.txt	/*:tabfind*
:tabfir	tabpage.txt	/*:tabfir*
:tabfirst	tabpage.txt	/*:tabfirst*
:tabl	tabpage.txt	/*:tabl*
:tablast	tabpage.txt	/*:tablast*
:tabm	tabpage.txt	/*:tabm*
:tabmove	tabpage.txt	/*:tabmove*
:tabn	tabpage.txt	/*:tabn*
:tabnew	tabpage.txt	/*:tabnew*
:tabnext	tabpage.txt	/*:tabnext*
:tabo	tabpage.txt	/*:tabo*
:tabonly	tabpage.txt	/*:tabonly*
:tabp	tabpage.txt	/*:tabp*
:tabprevious	tabpage.txt	/*:tabprevious*
:tabr	tabpage.txt	/*:tabr*
:tabrewind	tabpage.txt	/*:tabrewind*
:tabs	tabpage.txt	/*:tabs*
:tag	tagsrch.txt	/*:tag*
:tags	tagsrch.txt	/*:tags*
:tc	if_tcl.txt	/*:tc*
:tcl	if_tcl.txt	/*:tcl*
:tcld	if_tcl.txt	/*:tcld*
:tcldo	if_tcl.txt	/*:tcldo*
:tclf	if_tcl.txt	/*:tclf*
:tclfile	if_tcl.txt	/*:tclfile*
:te	gui_w32.txt	/*:te*
:tearoff	gui_w32.txt	/*:tearoff*
:tf	tagsrch.txt	/*:tf*
:tfirst	tagsrch.txt	/*:tfirst*
:th	eval.txt	/*:th*
:throw	eval.txt	/*:throw*
:tj	tagsrch.txt	/*:tj*
:tjump	tagsrch.txt	/*:tjump*
:tl	tagsrch.txt	/*:tl*
:tlast	tagsrch.txt	/*:tlast*
:tm	gui.txt	/*:tm*
:tmenu	gui.txt	/*:tmenu*
:tn	tagsrch.txt	/*:tn*
:tnext	tagsrch.txt	/*:tnext*
:topleft	windows.txt	/*:topleft*
:tp	tagsrch.txt	/*:tp*
:tprevious	tagsrch.txt	/*:tprevious*
:tr	tagsrch.txt	/*:tr*
:trewind	tagsrch.txt	/*:trewind*
:try	eval.txt	/*:try*
:ts	tagsrch.txt	/*:ts*
:tselect	tagsrch.txt	/*:tselect*
:tu	gui.txt	/*:tu*
:tunmenu	gui.txt	/*:tunmenu*
:u	undo.txt	/*:u*
:un	undo.txt	/*:un*
:una	map.txt	/*:una*
:unabbreviate	map.txt	/*:unabbreviate*
:undo	undo.txt	/*:undo*
:undoj	undo.txt	/*:undoj*
:undojoin	undo.txt	/*:undojoin*
:undol	undo.txt	/*:undol*
:undolist	undo.txt	/*:undolist*
:unh	windows.txt	/*:unh*
:unhide	windows.txt	/*:unhide*
:unl	eval.txt	/*:unl*
:unlet	eval.txt	/*:unlet*
:unlo	eval.txt	/*:unlo*
:unlockvar	eval.txt	/*:unlockvar*
:unm	map.txt	/*:unm*
:unm!	map.txt	/*:unm!*
:unmap	map.txt	/*:unmap*
:unmap!	map.txt	/*:unmap!*
:unme	gui.txt	/*:unme*
:unmenu	gui.txt	/*:unmenu*
:unmenu-all	gui.txt	/*:unmenu-all*
:uns	various.txt	/*:uns*
:unsilent	various.txt	/*:unsilent*
:up	editing.txt	/*:up*
:update	editing.txt	/*:update*
:v	repeat.txt	/*:v*
:ve	various.txt	/*:ve*
:verb	various.txt	/*:verb*
:verbose	various.txt	/*:verbose*
:verbose-cmd	various.txt	/*:verbose-cmd*
:version	various.txt	/*:version*
:vert	windows.txt	/*:vert*
:vertical	windows.txt	/*:vertical*
:vertical-resize	windows.txt	/*:vertical-resize*
:vglobal	repeat.txt	/*:vglobal*
:vi	editing.txt	/*:vi*
:vie	editing.txt	/*:vie*
:view	editing.txt	/*:view*
:vim	quickfix.txt	/*:vim*
:vimgrep	quickfix.txt	/*:vimgrep*
:vimgrepa	quickfix.txt	/*:vimgrepa*
:vimgrepadd	quickfix.txt	/*:vimgrepadd*
:visual	editing.txt	/*:visual*
:visual_example	visual.txt	/*:visual_example*
:viu	helphelp.txt	/*:viu*
:viusage	helphelp.txt	/*:viusage*
:vm	map.txt	/*:vm*
:vmap	map.txt	/*:vmap*
:vmap_l	map.txt	/*:vmap_l*
:vmapc	map.txt	/*:vmapc*
:vmapclear	map.txt	/*:vmapclear*
:vme	gui.txt	/*:vme*
:vmenu	gui.txt	/*:vmenu*
:vn	map.txt	/*:vn*
:vne	windows.txt	/*:vne*
:vnew	windows.txt	/*:vnew*
:vnoremap	map.txt	/*:vnoremap*
:vnoreme	gui.txt	/*:vnoreme*
:vnoremenu	gui.txt	/*:vnoremenu*
:vs	windows.txt	/*:vs*
:vsplit	windows.txt	/*:vsplit*
:vu	map.txt	/*:vu*
:vunmap	map.txt	/*:vunmap*
:vunme	gui.txt	/*:vunme*
:vunmenu	gui.txt	/*:vunmenu*
:w	editing.txt	/*:w*
:w!	editing.txt	/*:w!*
:wN	editing.txt	/*:wN*
:wNext	editing.txt	/*:wNext*
:w_a	editing.txt	/*:w_a*
:w_c	editing.txt	/*:w_c*
:w_f	editing.txt	/*:w_f*
:wa	editing.txt	/*:wa*
:wall	editing.txt	/*:wall*
:wh	eval.txt	/*:wh*
:while	eval.txt	/*:while*
:win	gui.txt	/*:win*
:winc	windows.txt	/*:winc*
:wincmd	windows.txt	/*:wincmd*
:windo	windows.txt	/*:windo*
:winp	gui.txt	/*:winp*
:winpos	gui.txt	/*:winpos*
:winsize	gui.txt	/*:winsize*
:wn	editing.txt	/*:wn*
:wnext	editing.txt	/*:wnext*
:wp	editing.txt	/*:wp*
:wprevious	editing.txt	/*:wprevious*
:wq	editing.txt	/*:wq*
:wqa	editing.txt	/*:wqa*
:wqall	editing.txt	/*:wqall*
:write	editing.txt	/*:write*
:write_a	editing.txt	/*:write_a*
:write_c	editing.txt	/*:write_c*
:write_f	editing.txt	/*:write_f*
:ws	workshop.txt	/*:ws*
:wsverb	workshop.txt	/*:wsverb*
:wundo	undo.txt	/*:wundo*
:wv	starting.txt	/*:wv*
:wviminfo	starting.txt	/*:wviminfo*
:x	editing.txt	/*:x*
:xa	editing.txt	/*:xa*
:xall	editing.txt	/*:xall*
:xit	editing.txt	/*:xit*
:xm	map.txt	/*:xm*
:xmap	map.txt	/*:xmap*
:xmap_l	map.txt	/*:xmap_l*
:xmapc	map.txt	/*:xmapc*
:xmapclear	map.txt	/*:xmapclear*
:xme	gui.txt	/*:xme*
:xmenu	gui.txt	/*:xmenu*
:xn	map.txt	/*:xn*
:xnoremap	map.txt	/*:xnoremap*
:xnoreme	gui.txt	/*:xnoreme*
:xnoremenu	gui.txt	/*:xnoremenu*
:xu	map.txt	/*:xu*
:xunmap	map.txt	/*:xunmap*
:xunme	gui.txt	/*:xunme*
:xunmenu	gui.txt	/*:xunmenu*
:y	change.txt	/*:y*
:yank	change.txt	/*:yank*
:z	various.txt	/*:z*
:z#	various.txt	/*:z#*
:~	change.txt	/*:~*
;	motion.txt	/*;*
<	change.txt	/*<*
<2-LeftMouse>	term.txt	/*<2-LeftMouse>*
<3-LeftMouse>	term.txt	/*<3-LeftMouse>*
<4-LeftMouse>	term.txt	/*<4-LeftMouse>*
<<	change.txt	/*<<*
<>	intro.txt	/*<>*
<A-	intro.txt	/*<A-*
<A-LeftMouse>	term.txt	/*<A-LeftMouse>*
<A-RightMouse>	term.txt	/*<A-RightMouse>*
<BS>	motion.txt	/*<BS>*
<Bar>	intro.txt	/*<Bar>*
<Bslash>	intro.txt	/*<Bslash>*
<C-	intro.txt	/*<C-*
<C-Del>	os_dos.txt	/*<C-Del>*
<C-End>	motion.txt	/*<C-End>*
<C-Home>	motion.txt	/*<C-Home>*
<C-Insert>	os_dos.txt	/*<C-Insert>*
<C-Left>	motion.txt	/*<C-Left>*
<C-LeftMouse>	tagsrch.txt	/*<C-LeftMouse>*
<C-PageDown>	tabpage.txt	/*<C-PageDown>*
<C-PageUp>	tabpage.txt	/*<C-PageUp>*
<C-Right>	motion.txt	/*<C-Right>*
<C-RightMouse>	tagsrch.txt	/*<C-RightMouse>*
<C-ScrollWheelDown>	scroll.txt	/*<C-ScrollWheelDown>*
<C-ScrollWheelLeft>	scroll.txt	/*<C-ScrollWheelLeft>*
<C-ScrollWheelRight>	scroll.txt	/*<C-ScrollWheelRight>*
<C-ScrollWheelUp>	scroll.txt	/*<C-ScrollWheelUp>*
<CR>	motion.txt	/*<CR>*
<CSI>	intro.txt	/*<CSI>*
<Char->	map.txt	/*<Char->*
<Char>	map.txt	/*<Char>*
<D-	intro.txt	/*<D-*
<Del>	change.txt	/*<Del>*
<Down>	motion.txt	/*<Down>*
<Drop>	change.txt	/*<Drop>*
<EOL>	intro.txt	/*<EOL>*
<End>	motion.txt	/*<End>*
<Enter>	intro.txt	/*<Enter>*
<Esc>	intro.txt	/*<Esc>*
<F10>	term.txt	/*<F10>*
<F11>	term.txt	/*<F11>*
<F12>	term.txt	/*<F12>*
<F13>	term.txt	/*<F13>*
<F14>	term.txt	/*<F14>*
<F15>	term.txt	/*<F15>*
<F16>	term.txt	/*<F16>*
<F17>	term.txt	/*<F17>*
<F18>	term.txt	/*<F18>*
<F19>	term.txt	/*<F19>*
<F1>	helphelp.txt	/*<F1>*
<F2>	term.txt	/*<F2>*
<F3>	term.txt	/*<F3>*
<F4>	term.txt	/*<F4>*
<F5>	term.txt	/*<F5>*
<F6>	term.txt	/*<F6>*
<F7>	term.txt	/*<F7>*
<F8>	term.txt	/*<F8>*
<F9>	term.txt	/*<F9>*
<Help>	helphelp.txt	/*<Help>*
<Home>	motion.txt	/*<Home>*
<Insert>	insert.txt	/*<Insert>*
<Leader>	map.txt	/*<Leader>*
<Left>	motion.txt	/*<Left>*
<LeftDrag>	term.txt	/*<LeftDrag>*
<LeftMouse>	visual.txt	/*<LeftMouse>*
<LeftRelease>	visual.txt	/*<LeftRelease>*
<LocalLeader>	map.txt	/*<LocalLeader>*
<M-	intro.txt	/*<M-*
<MiddleDrag>	term.txt	/*<MiddleDrag>*
<MiddleMouse>	change.txt	/*<MiddleMouse>*
<MiddleRelease>	term.txt	/*<MiddleRelease>*
<Mouse>	term.txt	/*<Mouse>*
<MouseDown>	scroll.txt	/*<MouseDown>*
<MouseUp>	scroll.txt	/*<MouseUp>*
<NL>	motion.txt	/*<NL>*
<Nop>	map.txt	/*<Nop>*
<Nul>	intro.txt	/*<Nul>*
<PageDown>	scroll.txt	/*<PageDown>*
<PageUp>	scroll.txt	/*<PageUp>*
<Plug>	map.txt	/*<Plug>*
<Return>	intro.txt	/*<Return>*
<Right>	motion.txt	/*<Right>*
<RightDrag>	term.txt	/*<RightDrag>*
<RightMouse>	visual.txt	/*<RightMouse>*
<RightRelease>	term.txt	/*<RightRelease>*
<S-	intro.txt	/*<S-*
<S-Del>	os_dos.txt	/*<S-Del>*
<S-Down>	scroll.txt	/*<S-Down>*
<S-End>	term.txt	/*<S-End>*
<S-F10>	term.txt	/*<S-F10>*
<S-F11>	term.txt	/*<S-F11>*
<S-F12>	term.txt	/*<S-F12>*
<S-F1>	intro.txt	/*<S-F1>*
<S-F2>	term.txt	/*<S-F2>*
<S-F3>	term.txt	/*<S-F3>*
<S-F4>	term.txt	/*<S-F4>*
<S-F5>	term.txt	/*<S-F5>*
<S-F6>	term.txt	/*<S-F6>*
<S-F7>	term.txt	/*<S-F7>*
<S-F8>	term.txt	/*<S-F8>*
<S-F9>	term.txt	/*<S-F9>*
<S-Home>	term.txt	/*<S-Home>*
<S-Insert>	os_dos.txt	/*<S-Insert>*
<S-Left>	motion.txt	/*<S-Left>*
<S-LeftMouse>	term.txt	/*<S-LeftMouse>*
<S-Right>	motion.txt	/*<S-Right>*
<S-RightMouse>	term.txt	/*<S-RightMouse>*
<S-ScrollWheelDown>	scroll.txt	/*<S-ScrollWheelDown>*
<S-ScrollWheelLeft>	scroll.txt	/*<S-ScrollWheelLeft>*
<S-ScrollWheelRight>	scroll.txt	/*<S-ScrollWheelRight>*
<S-ScrollWheelUp>	scroll.txt	/*<S-ScrollWheelUp>*
<S-Tab>	term.txt	/*<S-Tab>*
<S-Up>	scroll.txt	/*<S-Up>*
<S-xF1>	term.txt	/*<S-xF1>*
<S-xF2>	term.txt	/*<S-xF2>*
<S-xF3>	term.txt	/*<S-xF3>*
<S-xF4>	term.txt	/*<S-xF4>*
<SID>	map.txt	/*<SID>*
<SNR>	map.txt	/*<SNR>*
<ScrollWheelDown>	scroll.txt	/*<ScrollWheelDown>*
<ScrollWheelLeft>	scroll.txt	/*<ScrollWheelLeft>*
<ScrollWheelRight>	scroll.txt	/*<ScrollWheelRight>*
<ScrollWheelUp>	scroll.txt	/*<ScrollWheelUp>*
<Space>	motion.txt	/*<Space>*
<Tab>	motion.txt	/*<Tab>*
<Undo>	undo.txt	/*<Undo>*
<Up>	motion.txt	/*<Up>*
<abuf>	cmdline.txt	/*<abuf>*
<afile>	cmdline.txt	/*<afile>*
<amatch>	cmdline.txt	/*<amatch>*
<args>	map.txt	/*<args>*
<bang>	map.txt	/*<bang>*
<buffer=N>	autocmd.txt	/*<buffer=N>*
<buffer=abuf>	autocmd.txt	/*<buffer=abuf>*
<cfile>	cmdline.txt	/*<cfile>*
<character>	intro.txt	/*<character>*
<count>	map.txt	/*<count>*
<f-args>	map.txt	/*<f-args>*
<k0>	term.txt	/*<k0>*
<k1>	term.txt	/*<k1>*
<k2>	term.txt	/*<k2>*
<k3>	term.txt	/*<k3>*
<k4>	term.txt	/*<k4>*
<k5>	term.txt	/*<k5>*
<k6>	term.txt	/*<k6>*
<k7>	term.txt	/*<k7>*
<k8>	term.txt	/*<k8>*
<k9>	term.txt	/*<k9>*
<kDivide>	term.txt	/*<kDivide>*
<kEnd>	motion.txt	/*<kEnd>*
<kEnter>	term.txt	/*<kEnter>*
<kHome>	motion.txt	/*<kHome>*
<kMinus>	term.txt	/*<kMinus>*
<kMultiply>	term.txt	/*<kMultiply>*
<kPageDown>	scroll.txt	/*<kPageDown>*
<kPageUp>	scroll.txt	/*<kPageUp>*
<kPlus>	term.txt	/*<kPlus>*
<kPoint>	term.txt	/*<kPoint>*
<line1>	map.txt	/*<line1>*
<line2>	map.txt	/*<line2>*
<lt>	intro.txt	/*<lt>*
<nomodeline>	autocmd.txt	/*<nomodeline>*
<q-args>	map.txt	/*<q-args>*
<reg>	map.txt	/*<reg>*
<register>	map.txt	/*<register>*
<sfile>	cmdline.txt	/*<sfile>*
<slnum>	cmdline.txt	/*<slnum>*
<xCSI>	intro.txt	/*<xCSI>*
<xDown>	term.txt	/*<xDown>*
<xEnd>	term.txt	/*<xEnd>*
<xEnd>-xterm	term.txt	/*<xEnd>-xterm*
<xF1>	term.txt	/*<xF1>*
<xF1>-xterm	term.txt	/*<xF1>-xterm*
<xF2>	term.txt	/*<xF2>*
<xF2>-xterm	term.txt	/*<xF2>-xterm*
<xF3>	term.txt	/*<xF3>*
<xF3>-xterm	term.txt	/*<xF3>-xterm*
<xF4>	term.txt	/*<xF4>*
<xF4>-xterm	term.txt	/*<xF4>-xterm*
<xHome>	term.txt	/*<xHome>*
<xHome>-xterm	term.txt	/*<xHome>-xterm*
<xLeft>	term.txt	/*<xLeft>*
<xRight>	term.txt	/*<xRight>*
<xUp>	term.txt	/*<xUp>*
=	change.txt	/*=*
==	change.txt	/*==*
>	change.txt	/*>*
>>	change.txt	/*>>*
>cont	repeat.txt	/*>cont*
>finish	repeat.txt	/*>finish*
>interrupt	repeat.txt	/*>interrupt*
>next	repeat.txt	/*>next*
>quit	repeat.txt	/*>quit*
>step	repeat.txt	/*>step*
?	pattern.txt	/*?*
?<CR>	pattern.txt	/*?<CR>*
@	repeat.txt	/*@*
@/	change.txt	/*@\/*
@:	repeat.txt	/*@:*
@=	change.txt	/*@=*
@@	repeat.txt	/*@@*
@r	eval.txt	/*@r*
A	insert.txt	/*A*
ACL	editing.txt	/*ACL*
ATTENTION	usr_11.txt	/*ATTENTION*
Abbreviations	map.txt	/*Abbreviations*
Aleph	options.txt	/*Aleph*
Amiga	os_amiga.txt	/*Amiga*
Arabic	arabic.txt	/*Arabic*
Atari	os_mint.txt	/*Atari*
Athena	gui_x11.txt	/*Athena*
B	motion.txt	/*B*
BeBox	os_beos.txt	/*BeBox*
BeOS	os_beos.txt	/*BeOS*
Bram	intro.txt	/*Bram*
BufAdd	autocmd.txt	/*BufAdd*
BufCreate	autocmd.txt	/*BufCreate*
BufDelete	autocmd.txt	/*BufDelete*
BufEnter	autocmd.txt	/*BufEnter*
BufFilePost	autocmd.txt	/*BufFilePost*
BufFilePre	autocmd.txt	/*BufFilePre*
BufHidden	autocmd.txt	/*BufHidden*
BufLeave	autocmd.txt	/*BufLeave*
BufNew	autocmd.txt	/*BufNew*
BufNewFile	autocmd.txt	/*BufNewFile*
BufRead	autocmd.txt	/*BufRead*
BufReadCmd	autocmd.txt	/*BufReadCmd*
BufReadPost	autocmd.txt	/*BufReadPost*
BufReadPre	autocmd.txt	/*BufReadPre*
BufUnload	autocmd.txt	/*BufUnload*
BufWinEnter	autocmd.txt	/*BufWinEnter*
BufWinLeave	autocmd.txt	/*BufWinLeave*
BufWipeout	autocmd.txt	/*BufWipeout*
BufWrite	autocmd.txt	/*BufWrite*
BufWriteCmd	autocmd.txt	/*BufWriteCmd*
BufWritePost	autocmd.txt	/*BufWritePost*
BufWritePre	autocmd.txt	/*BufWritePre*
C	change.txt	/*C*
C-editing	tips.txt	/*C-editing*
C-indenting	indent.txt	/*C-indenting*
COMSPEC	starting.txt	/*COMSPEC*
CR-used-for-NL	pattern.txt	/*CR-used-for-NL*
CTRL-6	editing.txt	/*CTRL-6*
CTRL-<PageDown>	tabpage.txt	/*CTRL-<PageDown>*
CTRL-<PageUp>	tabpage.txt	/*CTRL-<PageUp>*
CTRL-A	change.txt	/*CTRL-A*
CTRL-B	scroll.txt	/*CTRL-B*
CTRL-C	pattern.txt	/*CTRL-C*
CTRL-D	scroll.txt	/*CTRL-D*
CTRL-E	scroll.txt	/*CTRL-E*
CTRL-F	scroll.txt	/*CTRL-F*
CTRL-G	editing.txt	/*CTRL-G*
CTRL-H	motion.txt	/*CTRL-H*
CTRL-I	motion.txt	/*CTRL-I*
CTRL-J	motion.txt	/*CTRL-J*
CTRL-L	various.txt	/*CTRL-L*
CTRL-M	motion.txt	/*CTRL-M*
CTRL-N	motion.txt	/*CTRL-N*
CTRL-O	motion.txt	/*CTRL-O*
CTRL-P	motion.txt	/*CTRL-P*
CTRL-Q	gui_w32.txt	/*CTRL-Q*
CTRL-R	undo.txt	/*CTRL-R*
CTRL-T	tagsrch.txt	/*CTRL-T*
CTRL-U	scroll.txt	/*CTRL-U*
CTRL-U-changed	version6.txt	/*CTRL-U-changed*
CTRL-V	visual.txt	/*CTRL-V*
CTRL-V-alternative	gui_w32.txt	/*CTRL-V-alternative*
CTRL-W	index.txt	/*CTRL-W*
CTRL-W_+	windows.txt	/*CTRL-W_+*
CTRL-W_-	windows.txt	/*CTRL-W_-*
CTRL-W_<	windows.txt	/*CTRL-W_<*
CTRL-W_<BS>	windows.txt	/*CTRL-W_<BS>*
CTRL-W_<CR>	quickfix.txt	/*CTRL-W_<CR>*
CTRL-W_<Down>	windows.txt	/*CTRL-W_<Down>*
CTRL-W_<Enter>	quickfix.txt	/*CTRL-W_<Enter>*
CTRL-W_<Left>	windows.txt	/*CTRL-W_<Left>*
CTRL-W_<Right>	windows.txt	/*CTRL-W_<Right>*
CTRL-W_<Up>	windows.txt	/*CTRL-W_<Up>*
CTRL-W_=	windows.txt	/*CTRL-W_=*
CTRL-W_>	windows.txt	/*CTRL-W_>*
CTRL-W_CTRL-B	windows.txt	/*CTRL-W_CTRL-B*
CTRL-W_CTRL-C	windows.txt	/*CTRL-W_CTRL-C*
CTRL-W_CTRL-D	tagsrch.txt	/*CTRL-W_CTRL-D*
CTRL-W_CTRL-F	windows.txt	/*CTRL-W_CTRL-F*
CTRL-W_CTRL-H	windows.txt	/*CTRL-W_CTRL-H*
CTRL-W_CTRL-I	tagsrch.txt	/*CTRL-W_CTRL-I*
CTRL-W_CTRL-J	windows.txt	/*CTRL-W_CTRL-J*
CTRL-W_CTRL-K	windows.txt	/*CTRL-W_CTRL-K*
CTRL-W_CTRL-L	windows.txt	/*CTRL-W_CTRL-L*
CTRL-W_CTRL-N	windows.txt	/*CTRL-W_CTRL-N*
CTRL-W_CTRL-O	windows.txt	/*CTRL-W_CTRL-O*
CTRL-W_CTRL-P	windows.txt	/*CTRL-W_CTRL-P*
CTRL-W_CTRL-Q	windows.txt	/*CTRL-W_CTRL-Q*
CTRL-W_CTRL-R	windows.txt	/*CTRL-W_CTRL-R*
CTRL-W_CTRL-S	windows.txt	/*CTRL-W_CTRL-S*
CTRL-W_CTRL-T	windows.txt	/*CTRL-W_CTRL-T*
CTRL-W_CTRL-V	windows.txt	/*CTRL-W_CTRL-V*
CTRL-W_CTRL-W	windows.txt	/*CTRL-W_CTRL-W*
CTRL-W_CTRL-X	windows.txt	/*CTRL-W_CTRL-X*
CTRL-W_CTRL-Z	windows.txt	/*CTRL-W_CTRL-Z*
CTRL-W_CTRL-]	windows.txt	/*CTRL-W_CTRL-]*
CTRL-W_CTRL-^	windows.txt	/*CTRL-W_CTRL-^*
CTRL-W_CTRL-_	windows.txt	/*CTRL-W_CTRL-_*
CTRL-W_F	windows.txt	/*CTRL-W_F*
CTRL-W_H	windows.txt	/*CTRL-W_H*
CTRL-W_J	windows.txt	/*CTRL-W_J*
CTRL-W_K	windows.txt	/*CTRL-W_K*
CTRL-W_L	windows.txt	/*CTRL-W_L*
CTRL-W_P	windows.txt	/*CTRL-W_P*
CTRL-W_R	windows.txt	/*CTRL-W_R*
CTRL-W_S	windows.txt	/*CTRL-W_S*
CTRL-W_T	windows.txt	/*CTRL-W_T*
CTRL-W_W	windows.txt	/*CTRL-W_W*
CTRL-W_]	windows.txt	/*CTRL-W_]*
CTRL-W_^	windows.txt	/*CTRL-W_^*
CTRL-W__	windows.txt	/*CTRL-W__*
CTRL-W_b	windows.txt	/*CTRL-W_b*
CTRL-W_bar	windows.txt	/*CTRL-W_bar*
CTRL-W_c	windows.txt	/*CTRL-W_c*
CTRL-W_d	tagsrch.txt	/*CTRL-W_d*
CTRL-W_f	windows.txt	/*CTRL-W_f*
CTRL-W_gF	windows.txt	/*CTRL-W_gF*
CTRL-W_g]	windows.txt	/*CTRL-W_g]*
CTRL-W_g_CTRL-]	windows.txt	/*CTRL-W_g_CTRL-]*
CTRL-W_gf	windows.txt	/*CTRL-W_gf*
CTRL-W_g}	windows.txt	/*CTRL-W_g}*
CTRL-W_h	windows.txt	/*CTRL-W_h*
CTRL-W_i	tagsrch.txt	/*CTRL-W_i*
CTRL-W_j	windows.txt	/*CTRL-W_j*
CTRL-W_k	windows.txt	/*CTRL-W_k*
CTRL-W_l	windows.txt	/*CTRL-W_l*
CTRL-W_n	windows.txt	/*CTRL-W_n*
CTRL-W_o	windows.txt	/*CTRL-W_o*
CTRL-W_p	windows.txt	/*CTRL-W_p*
CTRL-W_q	windows.txt	/*CTRL-W_q*
CTRL-W_r	windows.txt	/*CTRL-W_r*
CTRL-W_s	windows.txt	/*CTRL-W_s*
CTRL-W_t	windows.txt	/*CTRL-W_t*
CTRL-W_v	windows.txt	/*CTRL-W_v*
CTRL-W_w	windows.txt	/*CTRL-W_w*
CTRL-W_x	windows.txt	/*CTRL-W_x*
CTRL-W_z	windows.txt	/*CTRL-W_z*
CTRL-W_}	windows.txt	/*CTRL-W_}*
CTRL-X	change.txt	/*CTRL-X*
CTRL-Y	scroll.txt	/*CTRL-Y*
CTRL-Z	starting.txt	/*CTRL-Z*
CTRL-\_CTRL-G	intro.txt	/*CTRL-\\_CTRL-G*
CTRL-\_CTRL-N	intro.txt	/*CTRL-\\_CTRL-N*
CTRL-]	tagsrch.txt	/*CTRL-]*
CTRL-^	editing.txt	/*CTRL-^*
CTRL-{char}	intro.txt	/*CTRL-{char}*
Chinese	mbyte.txt	/*Chinese*
Cmd-event	autocmd.txt	/*Cmd-event*
Cmdline	cmdline.txt	/*Cmdline*
Cmdline-mode	cmdline.txt	/*Cmdline-mode*
CmdwinEnter	autocmd.txt	/*CmdwinEnter*
CmdwinLeave	autocmd.txt	/*CmdwinLeave*
ColorScheme	autocmd.txt	/*ColorScheme*
Command-line	cmdline.txt	/*Command-line*
Command-line-mode	cmdline.txt	/*Command-line-mode*
CompleteDone	autocmd.txt	/*CompleteDone*
Contents	quickref.txt	/*Contents*
Cscope	if_cscop.txt	/*Cscope*
CursorHold	autocmd.txt	/*CursorHold*
CursorHold-example	windows.txt	/*CursorHold-example*
CursorHoldI	autocmd.txt	/*CursorHoldI*
CursorIM	mbyte.txt	/*CursorIM*
CursorMoved	autocmd.txt	/*CursorMoved*
CursorMovedI	autocmd.txt	/*CursorMovedI*
D	change.txt	/*D*
DOS	os_dos.txt	/*DOS*
DOS-format	editing.txt	/*DOS-format*
DOS-format-write	editing.txt	/*DOS-format-write*
DPMI	os_msdos.txt	/*DPMI*
Dictionaries	eval.txt	/*Dictionaries*
Dictionary	eval.txt	/*Dictionary*
Dictionary-function	eval.txt	/*Dictionary-function*
Digraphs	digraph.txt	/*Digraphs*
E	motion.txt	/*E*
E10	message.txt	/*E10*
E100	diff.txt	/*E100*
E101	diff.txt	/*E101*
E102	diff.txt	/*E102*
E103	diff.txt	/*E103*
E104	digraph.txt	/*E104*
E105	mbyte.txt	/*E105*
E107	eval.txt	/*E107*
E108	eval.txt	/*E108*
E109	eval.txt	/*E109*
E11	cmdline.txt	/*E11*
E110	eval.txt	/*E110*
E111	eval.txt	/*E111*
E112	eval.txt	/*E112*
E113	eval.txt	/*E113*
E114	eval.txt	/*E114*
E115	eval.txt	/*E115*
E116	eval.txt	/*E116*
E117	eval.txt	/*E117*
E118	eval.txt	/*E118*
E119	eval.txt	/*E119*
E12	message.txt	/*E12*
E120	eval.txt	/*E120*
E121	eval.txt	/*E121*
E122	eval.txt	/*E122*
E123	eval.txt	/*E123*
E124	eval.txt	/*E124*
E125	eval.txt	/*E125*
E126	eval.txt	/*E126*
E127	eval.txt	/*E127*
E128	eval.txt	/*E128*
E129	eval.txt	/*E129*
E13	message.txt	/*E13*
E130	eval.txt	/*E130*
E131	eval.txt	/*E131*
E132	eval.txt	/*E132*
E133	eval.txt	/*E133*
E134	change.txt	/*E134*
E135	autocmd.txt	/*E135*
E136	starting.txt	/*E136*
E137	starting.txt	/*E137*
E138	starting.txt	/*E138*
E139	message.txt	/*E139*
E14	cmdline.txt	/*E14*
E140	message.txt	/*E140*
E141	message.txt	/*E141*
E142	message.txt	/*E142*
E143	autocmd.txt	/*E143*
E144	various.txt	/*E144*
E145	starting.txt	/*E145*
E146	change.txt	/*E146*
E147	repeat.txt	/*E147*
E148	repeat.txt	/*E148*
E149	helphelp.txt	/*E149*
E15	eval.txt	/*E15*
E150	helphelp.txt	/*E150*
E151	helphelp.txt	/*E151*
E152	helphelp.txt	/*E152*
E153	helphelp.txt	/*E153*
E154	helphelp.txt	/*E154*
E155	sign.txt	/*E155*
E156	sign.txt	/*E156*
E157	sign.txt	/*E157*
E158	sign.txt	/*E158*
E159	sign.txt	/*E159*
E16	cmdline.txt	/*E16*
E160	sign.txt	/*E160*
E161	repeat.txt	/*E161*
E162	message.txt	/*E162*
E163	editing.txt	/*E163*
E164	editing.txt	/*E164*
E165	editing.txt	/*E165*
E166	message.txt	/*E166*
E167	repeat.txt	/*E167*
E168	repeat.txt	/*E168*
E169	message.txt	/*E169*
E17	message.txt	/*E17*
E170	eval.txt	/*E170*
E171	eval.txt	/*E171*
E172	message.txt	/*E172*
E173	message.txt	/*E173*
E174	map.txt	/*E174*
E175	map.txt	/*E175*
E176	map.txt	/*E176*
E177	map.txt	/*E177*
E178	map.txt	/*E178*
E179	map.txt	/*E179*
E18	eval.txt	/*E18*
E180	map.txt	/*E180*
E181	map.txt	/*E181*
E182	map.txt	/*E182*
E183	map.txt	/*E183*
E184	map.txt	/*E184*
E185	syntax.txt	/*E185*
E186	editing.txt	/*E186*
E187	editing.txt	/*E187*
E188	gui.txt	/*E188*
E189	message.txt	/*E189*
E19	message.txt	/*E19*
E190	message.txt	/*E190*
E191	motion.txt	/*E191*
E192	message.txt	/*E192*
E193	eval.txt	/*E193*
E194	message.txt	/*E194*
E195	starting.txt	/*E195*
E196	various.txt	/*E196*
E197	mlang.txt	/*E197*
E198	options.txt	/*E198*
E199	cmdline.txt	/*E199*
E20	motion.txt	/*E20*
E200	autocmd.txt	/*E200*
E201	autocmd.txt	/*E201*
E202	options.txt	/*E202*
E203	autocmd.txt	/*E203*
E204	autocmd.txt	/*E204*
E205	if_pyth.txt	/*E205*
E206	options.txt	/*E206*
E207	editing.txt	/*E207*
E208	message.txt	/*E208*
E209	message.txt	/*E209*
E21	options.txt	/*E21*
E210	message.txt	/*E210*
E211	message.txt	/*E211*
E212	message.txt	/*E212*
E213	options.txt	/*E213*
E214	options.txt	/*E214*
E215	autocmd.txt	/*E215*
E216	autocmd.txt	/*E216*
E217	autocmd.txt	/*E217*
E218	autocmd.txt	/*E218*
E219	message.txt	/*E219*
E22	message.txt	/*E22*
E220	message.txt	/*E220*
E222	message.txt	/*E222*
E223	options.txt	/*E223*
E224	map.txt	/*E224*
E225	map.txt	/*E225*
E226	map.txt	/*E226*
E227	map.txt	/*E227*
E228	message.txt	/*E228*
E229	gui.txt	/*E229*
E23	message.txt	/*E23*
E230	starting.txt	/*E230*
E231	options.txt	/*E231*
E232	message.txt	/*E232*
E233	gui.txt	/*E233*
E234	options.txt	/*E234*
E235	options.txt	/*E235*
E236	options.txt	/*E236*
E237	print.txt	/*E237*
E238	print.txt	/*E238*
E239	sign.txt	/*E239*
E24	message.txt	/*E24*
E240	remote.txt	/*E240*
E241	eval.txt	/*E241*
E243	if_ole.txt	/*E243*
E244	options.txt	/*E244*
E245	options.txt	/*E245*
E246	autocmd.txt	/*E246*
E247	remote.txt	/*E247*
E248	remote.txt	/*E248*
E25	message.txt	/*E25*
E250	options.txt	/*E250*
E251	remote.txt	/*E251*
E252	options.txt	/*E252*
E253	mbyte.txt	/*E253*
E254	message.txt	/*E254*
E255	sign.txt	/*E255*
E256	message.txt	/*E256*
E257	if_cscop.txt	/*E257*
E258	remote.txt	/*E258*
E259	if_cscop.txt	/*E259*
E26	rileft.txt	/*E26*
E261	if_cscop.txt	/*E261*
E262	if_cscop.txt	/*E262*
E263	if_pyth.txt	/*E263*
E264	if_pyth.txt	/*E264*
E265	if_ruby.txt	/*E265*
E266	if_ruby.txt	/*E266*
E267	if_ruby.txt	/*E267*
E268	if_ruby.txt	/*E268*
E269	if_ruby.txt	/*E269*
E27	farsi.txt	/*E27*
E270	if_ruby.txt	/*E270*
E271	if_ruby.txt	/*E271*
E272	if_ruby.txt	/*E272*
E273	if_ruby.txt	/*E273*
E274	if_sniff.txt	/*E274*
E275	if_sniff.txt	/*E275*
E276	if_sniff.txt	/*E276*
E277	remote.txt	/*E277*
E278	if_sniff.txt	/*E278*
E279	if_sniff.txt	/*E279*
E28	syntax.txt	/*E28*
E280	if_tcl.txt	/*E280*
E281	if_tcl.txt	/*E281*
E282	starting.txt	/*E282*
E283	motion.txt	/*E283*
E284	mbyte.txt	/*E284*
E285	mbyte.txt	/*E285*
E286	mbyte.txt	/*E286*
E287	mbyte.txt	/*E287*
E288	mbyte.txt	/*E288*
E289	mbyte.txt	/*E289*
E29	change.txt	/*E29*
E293	message.txt	/*E293*
E294	message.txt	/*E294*
E295	message.txt	/*E295*
E296	message.txt	/*E296*
E297	message.txt	/*E297*
E298	message.txt	/*E298*
E299	if_perl.txt	/*E299*
E30	change.txt	/*E30*
E300	message.txt	/*E300*
E301	message.txt	/*E301*
E302	message.txt	/*E302*
E303	message.txt	/*E303*
E304	message.txt	/*E304*
E305	recover.txt	/*E305*
E306	recover.txt	/*E306*
E307	recover.txt	/*E307*
E308	recover.txt	/*E308*
E309	recover.txt	/*E309*
E31	message.txt	/*E31*
E310	recover.txt	/*E310*
E311	recover.txt	/*E311*
E312	recover.txt	/*E312*
E313	recover.txt	/*E313*
E314	recover.txt	/*E314*
E315	message.txt	/*E315*
E316	message.txt	/*E316*
E317	message.txt	/*E317*
E318	message.txt	/*E318*
E319	message.txt	/*E319*
E32	message.txt	/*E32*
E320	message.txt	/*E320*
E321	editing.txt	/*E321*
E322	message.txt	/*E322*
E323	message.txt	/*E323*
E324	print.txt	/*E324*
E325	usr_11.txt	/*E325*
E326	recover.txt	/*E326*
E327	gui.txt	/*E327*
E328	gui.txt	/*E328*
E329	gui.txt	/*E329*
E33	message.txt	/*E33*
E330	gui.txt	/*E330*
E331	gui.txt	/*E331*
E332	gui.txt	/*E332*
E333	gui.txt	/*E333*
E334	gui.txt	/*E334*
E335	gui.txt	/*E335*
E336	gui.txt	/*E336*
E337	gui.txt	/*E337*
E338	editing.txt	/*E338*
E339	message.txt	/*E339*
E34	various.txt	/*E34*
E340	vi_diff.txt	/*E340*
E341	message.txt	/*E341*
E342	message.txt	/*E342*
E343	options.txt	/*E343*
E344	options.txt	/*E344*
E345	options.txt	/*E345*
E346	options.txt	/*E346*
E347	options.txt	/*E347*
E348	pattern.txt	/*E348*
E349	pattern.txt	/*E349*
E35	message.txt	/*E35*
E350	fold.txt	/*E350*
E351	fold.txt	/*E351*
E352	fold.txt	/*E352*
E353	change.txt	/*E353*
E354	change.txt	/*E354*
E355	options.txt	/*E355*
E356	message.txt	/*E356*
E357	options.txt	/*E357*
E358	options.txt	/*E358*
E359	term.txt	/*E359*
E36	windows.txt	/*E36*
E360	various.txt	/*E360*
E362	term.txt	/*E362*
E363	options.txt	/*E363*
E364	eval.txt	/*E364*
E365	print.txt	/*E365*
E367	autocmd.txt	/*E367*
E368	eval.txt	/*E368*
E369	pattern.txt	/*E369*
E37	message.txt	/*E37*
E370	various.txt	/*E370*
E371	various.txt	/*E371*
E372	quickfix.txt	/*E372*
E373	quickfix.txt	/*E373*
E374	quickfix.txt	/*E374*
E375	quickfix.txt	/*E375*
E376	quickfix.txt	/*E376*
E377	quickfix.txt	/*E377*
E378	quickfix.txt	/*E378*
E379	quickfix.txt	/*E379*
E38	message.txt	/*E38*
E380	quickfix.txt	/*E380*
E381	quickfix.txt	/*E381*
E382	options.txt	/*E382*
E383	pattern.txt	/*E383*
E384	options.txt	/*E384*
E385	options.txt	/*E385*
E386	pattern.txt	/*E386*
E387	tagsrch.txt	/*E387*
E388	tagsrch.txt	/*E388*
E389	tagsrch.txt	/*E389*
E39	digraph.txt	/*E39*
E390	syntax.txt	/*E390*
E391	syntax.txt	/*E391*
E392	syntax.txt	/*E392*
E393	syntax.txt	/*E393*
E394	syntax.txt	/*E394*
E395	syntax.txt	/*E395*
E397	syntax.txt	/*E397*
E398	syntax.txt	/*E398*
E399	syntax.txt	/*E399*
E40	message.txt	/*E40*
E400	syntax.txt	/*E400*
E401	syntax.txt	/*E401*
E402	syntax.txt	/*E402*
E403	syntax.txt	/*E403*
E404	syntax.txt	/*E404*
E405	syntax.txt	/*E405*
E406	syntax.txt	/*E406*
E407	syntax.txt	/*E407*
E408	syntax.txt	/*E408*
E409	syntax.txt	/*E409*
E41	message.txt	/*E41*
E410	syntax.txt	/*E410*
E411	syntax.txt	/*E411*
E412	syntax.txt	/*E412*
E413	syntax.txt	/*E413*
E414	syntax.txt	/*E414*
E415	syntax.txt	/*E415*
E416	syntax.txt	/*E416*
E417	syntax.txt	/*E417*
E418	syntax.txt	/*E418*
E419	syntax.txt	/*E419*
E42	quickfix.txt	/*E42*
E420	syntax.txt	/*E420*
E421	syntax.txt	/*E421*
E422	syntax.txt	/*E422*
E423	syntax.txt	/*E423*
E424	message.txt	/*E424*
E425	tagsrch.txt	/*E425*
E426	tagsrch.txt	/*E426*
E427	tagsrch.txt	/*E427*
E428	tagsrch.txt	/*E428*
E429	tagsrch.txt	/*E429*
E43	message.txt	/*E43*
E430	tagsrch.txt	/*E430*
E431	tagsrch.txt	/*E431*
E432	message.txt	/*E432*
E433	options.txt	/*E433*
E434	tagsrch.txt	/*E434*
E435	tagsrch.txt	/*E435*
E436	term.txt	/*E436*
E437	term.txt	/*E437*
E438	message.txt	/*E438*
E439	message.txt	/*E439*
E44	message.txt	/*E44*
E440	message.txt	/*E440*
E441	windows.txt	/*E441*
E442	windows.txt	/*E442*
E443	windows.txt	/*E443*
E444	windows.txt	/*E444*
E445	windows.txt	/*E445*
E446	editing.txt	/*E446*
E447	editing.txt	/*E447*
E448	various.txt	/*E448*
E449	eval.txt	/*E449*
E45	message.txt	/*E45*
E450	os_msdos.txt	/*E450*
E451	os_msdos.txt	/*E451*
E452	os_msdos.txt	/*E452*
E453	os_msdos.txt	/*E453*
E454	os_msdos.txt	/*E454*
E455	print.txt	/*E455*
E456	print.txt	/*E456*
E457	print.txt	/*E457*
E458	message.txt	/*E458*
E459	message.txt	/*E459*
E46	message.txt	/*E46*
E460	message.txt	/*E460*
E461	eval.txt	/*E461*
E462	editing.txt	/*E462*
E463	netbeans.txt	/*E463*
E464	message.txt	/*E464*
E465	gui.txt	/*E465*
E466	gui.txt	/*E466*
E467	map.txt	/*E467*
E468	map.txt	/*E468*
E469	if_cscop.txt	/*E469*
E47	message.txt	/*E47*
E470	change.txt	/*E470*
E471	message.txt	/*E471*
E472	editing.txt	/*E472*
E473	message.txt	/*E473*
E474	message.txt	/*E474*
E475	message.txt	/*E475*
E476	pattern.txt	/*E476*
E477	message.txt	/*E477*
E478	message.txt	/*E478*
E479	editing.txt	/*E479*
E48	eval.txt	/*E48*
E480	editing.txt	/*E480*
E481	message.txt	/*E481*
E482	message.txt	/*E482*
E483	message.txt	/*E483*
E484	message.txt	/*E484*
E485	message.txt	/*E485*
E486	pattern.txt	/*E486*
E487	options.txt	/*E487*
E488	message.txt	/*E488*
E49	message.txt	/*E49*
E490	fold.txt	/*E490*
E492	message.txt	/*E492*
E493	cmdline.txt	/*E493*
E494	editing.txt	/*E494*
E495	cmdline.txt	/*E495*
E496	cmdline.txt	/*E496*
E497	cmdline.txt	/*E497*
E498	cmdline.txt	/*E498*
E499	cmdline.txt	/*E499*
E50	syntax.txt	/*E50*
E500	cmdline.txt	/*E500*
E501	intro.txt	/*E501*
E502	editing.txt	/*E502*
E503	editing.txt	/*E503*
E504	editing.txt	/*E504*
E505	editing.txt	/*E505*
E506	editing.txt	/*E506*
E507	editing.txt	/*E507*
E508	editing.txt	/*E508*
E509	editing.txt	/*E509*
E51	pattern.txt	/*E51*
E510	editing.txt	/*E510*
E511	netbeans.txt	/*E511*
E512	editing.txt	/*E512*
E513	options.txt	/*E513*
E514	editing.txt	/*E514*
E515	windows.txt	/*E515*
E516	windows.txt	/*E516*
E517	windows.txt	/*E517*
E518	options.txt	/*E518*
E519	options.txt	/*E519*
E52	syntax.txt	/*E52*
E520	options.txt	/*E520*
E521	options.txt	/*E521*
E522	options.txt	/*E522*
E523	options.txt	/*E523*
E524	options.txt	/*E524*
E525	options.txt	/*E525*
E526	options.txt	/*E526*
E527	options.txt	/*E527*
E528	options.txt	/*E528*
E529	options.txt	/*E529*
E53	pattern.txt	/*E53*
E530	options.txt	/*E530*
E531	options.txt	/*E531*
E532	netbeans.txt	/*E532*
E533	options.txt	/*E533*
E534	options.txt	/*E534*
E535	options.txt	/*E535*
E536	options.txt	/*E536*
E537	options.txt	/*E537*
E538	options.txt	/*E538*
E539	options.txt	/*E539*
E54	pattern.txt	/*E54*
E540	options.txt	/*E540*
E541	options.txt	/*E541*
E542	options.txt	/*E542*
E543	options.txt	/*E543*
E544	options.txt	/*E544*
E545	options.txt	/*E545*
E546	options.txt	/*E546*
E547	options.txt	/*E547*
E548	options.txt	/*E548*
E549	options.txt	/*E549*
E55	pattern.txt	/*E55*
E550	options.txt	/*E550*
E551	options.txt	/*E551*
E552	options.txt	/*E552*
E553	quickfix.txt	/*E553*
E554	pattern.txt	/*E554*
E555	tagsrch.txt	/*E555*
E556	tagsrch.txt	/*E556*
E557	term.txt	/*E557*
E558	term.txt	/*E558*
E559	term.txt	/*E559*
E56	pattern.txt	/*E56*
E560	if_cscop.txt	/*E560*
E561	if_cscop.txt	/*E561*
E562	if_cscop.txt	/*E562*
E563	if_cscop.txt	/*E563*
E564	if_cscop.txt	/*E564*
E566	if_cscop.txt	/*E566*
E567	if_cscop.txt	/*E567*
E568	if_cscop.txt	/*E568*
E569	if_cscop.txt	/*E569*
E57	pattern.txt	/*E57*
E570	message.txt	/*E570*
E571	if_tcl.txt	/*E571*
E572	if_tcl.txt	/*E572*
E573	remote.txt	/*E573*
E574	starting.txt	/*E574*
E575	starting.txt	/*E575*
E576	starting.txt	/*E576*
E577	starting.txt	/*E577*
E578	editing.txt	/*E578*
E579	eval.txt	/*E579*
E58	pattern.txt	/*E58*
E580	eval.txt	/*E580*
E581	eval.txt	/*E581*
E582	eval.txt	/*E582*
E583	eval.txt	/*E583*
E584	eval.txt	/*E584*
E585	eval.txt	/*E585*
E586	eval.txt	/*E586*
E587	eval.txt	/*E587*
E588	eval.txt	/*E588*
E589	options.txt	/*E589*
E59	pattern.txt	/*E59*
E590	options.txt	/*E590*
E591	options.txt	/*E591*
E592	options.txt	/*E592*
E593	options.txt	/*E593*
E594	options.txt	/*E594*
E595	options.txt	/*E595*
E596	options.txt	/*E596*
E597	options.txt	/*E597*
E598	options.txt	/*E598*
E599	options.txt	/*E599*
E60	pattern.txt	/*E60*
E600	eval.txt	/*E600*
E601	eval.txt	/*E601*
E602	eval.txt	/*E602*
E603	eval.txt	/*E603*
E604	eval.txt	/*E604*
E605	eval.txt	/*E605*
E606	eval.txt	/*E606*
E607	eval.txt	/*E607*
E608	eval.txt	/*E608*
E609	if_cscop.txt	/*E609*
E61	pattern.txt	/*E61*
E612	sign.txt	/*E612*
E613	print.txt	/*E613*
E614	editing.txt	/*E614*
E615	editing.txt	/*E615*
E616	editing.txt	/*E616*
E617	options.txt	/*E617*
E618	print.txt	/*E618*
E619	print.txt	/*E619*
E62	pattern.txt	/*E62*
E620	print.txt	/*E620*
E621	print.txt	/*E621*
E622	if_cscop.txt	/*E622*
E623	if_cscop.txt	/*E623*
E624	print.txt	/*E624*
E625	if_cscop.txt	/*E625*
E626	if_cscop.txt	/*E626*
E627	netbeans.txt	/*E627*
E628	netbeans.txt	/*E628*
E629	netbeans.txt	/*E629*
E63	pattern.txt	/*E63*
E630	netbeans.txt	/*E630*
E631	netbeans.txt	/*E631*
E632	netbeans.txt	/*E632*
E633	netbeans.txt	/*E633*
E634	netbeans.txt	/*E634*
E635	netbeans.txt	/*E635*
E636	netbeans.txt	/*E636*
E637	netbeans.txt	/*E637*
E638	netbeans.txt	/*E638*
E639	netbeans.txt	/*E639*
E64	pattern.txt	/*E64*
E640	netbeans.txt	/*E640*
E641	netbeans.txt	/*E641*
E642	netbeans.txt	/*E642*
E643	netbeans.txt	/*E643*
E644	netbeans.txt	/*E644*
E645	netbeans.txt	/*E645*
E646	netbeans.txt	/*E646*
E647	netbeans.txt	/*E647*
E648	netbeans.txt	/*E648*
E649	netbeans.txt	/*E649*
E65	pattern.txt	/*E65*
E650	netbeans.txt	/*E650*
E651	netbeans.txt	/*E651*
E652	netbeans.txt	/*E652*
E653	netbeans.txt	/*E653*
E654	netbeans.txt	/*E654*
E655	eval.txt	/*E655*
E656	netbeans.txt	/*E656*
E657	netbeans.txt	/*E657*
E658	netbeans.txt	/*E658*
E659	if_pyth.txt	/*E659*
E66	syntax.txt	/*E66*
E660	netbeans.txt	/*E660*
E661	helphelp.txt	/*E661*
E662	motion.txt	/*E662*
E663	motion.txt	/*E663*
E664	motion.txt	/*E664*
E665	gui_x11.txt	/*E665*
E666	quickfix.txt	/*E666*
E667	editing.txt	/*E667*
E668	netbeans.txt	/*E668*
E669	syntax.txt	/*E669*
E67	syntax.txt	/*E67*
E670	helphelp.txt	/*E670*
E671	starting.txt	/*E671*
E672	starting.txt	/*E672*
E673	print.txt	/*E673*
E674	print.txt	/*E674*
E675	print.txt	/*E675*
E676	options.txt	/*E676*
E677	eval.txt	/*E677*
E678	pattern.txt	/*E678*
E679	syntax.txt	/*E679*
E68	pattern.txt	/*E68*
E680	autocmd.txt	/*E680*
E681	quickfix.txt	/*E681*
E682	quickfix.txt	/*E682*
E683	quickfix.txt	/*E683*
E684	eval.txt	/*E684*
E685	message.txt	/*E685*
E686	eval.txt	/*E686*
E687	eval.txt	/*E687*
E688	eval.txt	/*E688*
E689	eval.txt	/*E689*
E69	pattern.txt	/*E69*
E690	eval.txt	/*E690*
E691	eval.txt	/*E691*
E692	eval.txt	/*E692*
E693	eval.txt	/*E693*
E694	eval.txt	/*E694*
E695	eval.txt	/*E695*
E696	eval.txt	/*E696*
E697	eval.txt	/*E697*
E698	eval.txt	/*E698*
E699	eval.txt	/*E699*
E70	pattern.txt	/*E70*
E700	eval.txt	/*E700*
E701	eval.txt	/*E701*
E702	eval.txt	/*E702*
E703	eval.txt	/*E703*
E704	eval.txt	/*E704*
E705	eval.txt	/*E705*
E706	eval.txt	/*E706*
E707	eval.txt	/*E707*
E708	eval.txt	/*E708*
E709	eval.txt	/*E709*
E71	pattern.txt	/*E71*
E710	eval.txt	/*E710*
E711	eval.txt	/*E711*
E712	eval.txt	/*E712*
E713	eval.txt	/*E713*
E714	eval.txt	/*E714*
E715	eval.txt	/*E715*
E716	eval.txt	/*E716*
E717	eval.txt	/*E717*
E718	eval.txt	/*E718*
E719	eval.txt	/*E719*
E72	message.txt	/*E72*
E720	eval.txt	/*E720*
E721	eval.txt	/*E721*
E722	eval.txt	/*E722*
E723	eval.txt	/*E723*
E724	eval.txt	/*E724*
E725	eval.txt	/*E725*
E726	eval.txt	/*E726*
E727	eval.txt	/*E727*
E728	eval.txt	/*E728*
E729	eval.txt	/*E729*
E73	tagsrch.txt	/*E73*
E730	eval.txt	/*E730*
E731	eval.txt	/*E731*
E732	eval.txt	/*E732*
E733	eval.txt	/*E733*
E734	eval.txt	/*E734*
E735	eval.txt	/*E735*
E736	eval.txt	/*E736*
E737	eval.txt	/*E737*
E738	eval.txt	/*E738*
E739	eval.txt	/*E739*
E74	message.txt	/*E74*
E740	eval.txt	/*E740*
E741	eval.txt	/*E741*
E742	eval.txt	/*E742*
E743	eval.txt	/*E743*
E744	netbeans.txt	/*E744*
E745	eval.txt	/*E745*
E746	eval.txt	/*E746*
E747	editing.txt	/*E747*
E748	repeat.txt	/*E748*
E749	various.txt	/*E749*
E75	vi_diff.txt	/*E75*
E750	repeat.txt	/*E750*
E751	spell.txt	/*E751*
E752	spell.txt	/*E752*
E753	spell.txt	/*E753*
E754	spell.txt	/*E754*
E755	spell.txt	/*E755*
E756	spell.txt	/*E756*
E757	options.txt	/*E757*
E758	spell.txt	/*E758*
E759	spell.txt	/*E759*
E76	pattern.txt	/*E76*
E760	spell.txt	/*E760*
E761	spell.txt	/*E761*
E762	spell.txt	/*E762*
E763	spell.txt	/*E763*
E764	options.txt	/*E764*
E765	options.txt	/*E765*
E766	eval.txt	/*E766*
E767	eval.txt	/*E767*
E768	message.txt	/*E768*
E769	pattern.txt	/*E769*
E77	message.txt	/*E77*
E770	spell.txt	/*E770*
E771	spell.txt	/*E771*
E772	spell.txt	/*E772*
E773	recover.txt	/*E773*
E774	map.txt	/*E774*
E775	map.txt	/*E775*
E776	quickfix.txt	/*E776*
E777	quickfix.txt	/*E777*
E778	spell.txt	/*E778*
E779	spell.txt	/*E779*
E78	motion.txt	/*E78*
E780	spell.txt	/*E780*
E781	spell.txt	/*E781*
E782	spell.txt	/*E782*
E783	spell.txt	/*E783*
E784	tabpage.txt	/*E784*
E785	eval.txt	/*E785*
E786	eval.txt	/*E786*
E787	diff.txt	/*E787*
E788	autocmd.txt	/*E788*
E789	syntax.txt	/*E789*
E79	message.txt	/*E79*
E790	undo.txt	/*E790*
E791	mbyte.txt	/*E791*
E792	gui.txt	/*E792*
E793	diff.txt	/*E793*
E794	eval.txt	/*E794*
E795	eval.txt	/*E795*
E796	editing.txt	/*E796*
E797	spell.txt	/*E797*
E798	eval.txt	/*E798*
E799	eval.txt	/*E799*
E80	message.txt	/*E80*
E800	arabic.txt	/*E800*
E801	eval.txt	/*E801*
E802	eval.txt	/*E802*
E803	eval.txt	/*E803*
E804	eval.txt	/*E804*
E805	eval.txt	/*E805*
E806	eval.txt	/*E806*
E807	eval.txt	/*E807*
E808	eval.txt	/*E808*
E809	cmdline.txt	/*E809*
E81	map.txt	/*E81*
E810	diff.txt	/*E810*
E811	autocmd.txt	/*E811*
E812	autocmd.txt	/*E812*
E813	editing.txt	/*E813*
E814	editing.txt	/*E814*
E815	if_mzsch.txt	/*E815*
E816	diff.txt	/*E816*
E817	editing.txt	/*E817*
E818	editing.txt	/*E818*
E819	editing.txt	/*E819*
E82	message.txt	/*E82*
E820	editing.txt	/*E820*
E821	options.txt	/*E821*
E822	undo.txt	/*E822*
E823	undo.txt	/*E823*
E824	undo.txt	/*E824*
E825	undo.txt	/*E825*
E826	undo.txt	/*E826*
E827	undo.txt	/*E827*
E828	undo.txt	/*E828*
E829	undo.txt	/*E829*
E83	message.txt	/*E83*
E830	undo.txt	/*E830*
E831	editing.txt	/*E831*
E832	undo.txt	/*E832*
E833	editing.txt	/*E833*
E834	options.txt	/*E834*
E835	options.txt	/*E835*
E836	if_pyth.txt	/*E836*
E837	if_pyth.txt	/*E837*
E838	netbeans.txt	/*E838*
E839	insert.txt	/*E839*
E84	windows.txt	/*E84*
E840	insert.txt	/*E840*
E841	map.txt	/*E841*
E842	cmdline.txt	/*E842*
E843	editing.txt	/*E843*
E844	syntax.txt	/*E844*
E845	spell.txt	/*E845*
E846	options.txt	/*E846*
E847	syntax.txt	/*E847*
E848	syntax.txt	/*E848*
E849	syntax.txt	/*E849*
E85	options.txt	/*E85*
E850	change.txt	/*E850*
E851	gui_x11.txt	/*E851*
E852	gui_x11.txt	/*E852*
E853	eval.txt	/*E853*
E854	options.txt	/*E854*
E855	autocmd.txt	/*E855*
E858	eval.txt	/*E858*
E859	eval.txt	/*E859*
E86	windows.txt	/*E86*
E860	eval.txt	/*E860*
E862	eval.txt	/*E862*
E863	if_pyth.txt	/*E863*
E864	pattern.txt	/*E864*
E865	pattern.txt	/*E865*
E866	pattern.txt	/*E866*
E867	pattern.txt	/*E867*
E868	pattern.txt	/*E868*
E869	pattern.txt	/*E869*
E87	windows.txt	/*E87*
E870	pattern.txt	/*E870*
E871	pattern.txt	/*E871*
E872	pattern.txt	/*E872*
E873	pattern.txt	/*E873*
E874	pattern.txt	/*E874*
E875	pattern.txt	/*E875*
E876	pattern.txt	/*E876*
E877	pattern.txt	/*E877*
E878	pattern.txt	/*E878*
E879	syntax.txt	/*E879*
E88	windows.txt	/*E88*
E880	if_pyth.txt	/*E880*
E881	autocmd.txt	/*E881*
E882	eval.txt	/*E882*
E883	eval.txt	/*E883*
E884	eval.txt	/*E884*
E885	sign.txt	/*E885*
E886	starting.txt	/*E886*
E89	message.txt	/*E89*
E90	message.txt	/*E90*
E91	options.txt	/*E91*
E92	message.txt	/*E92*
E93	windows.txt	/*E93*
E94	windows.txt	/*E94*
E95	message.txt	/*E95*
E96	diff.txt	/*E96*
E97	diff.txt	/*E97*
E98	diff.txt	/*E98*
E99	diff.txt	/*E99*
EX	intro.txt	/*EX*
EXINIT	starting.txt	/*EXINIT*
Elvis	intro.txt	/*Elvis*
EncodingChanged	autocmd.txt	/*EncodingChanged*
Eterm	syntax.txt	/*Eterm*
Ex	intro.txt	/*Ex*
Ex-mode	intro.txt	/*Ex-mode*
Exuberant_ctags	tagsrch.txt	/*Exuberant_ctags*
F	motion.txt	/*F*
FAQ	intro.txt	/*FAQ*
Farsi	farsi.txt	/*Farsi*
FileAppendCmd	autocmd.txt	/*FileAppendCmd*
FileAppendPost	autocmd.txt	/*FileAppendPost*
FileAppendPre	autocmd.txt	/*FileAppendPre*
FileChangedRO	autocmd.txt	/*FileChangedRO*
FileChangedShell	autocmd.txt	/*FileChangedShell*
FileChangedShellPost	autocmd.txt	/*FileChangedShellPost*
FileEncoding	autocmd.txt	/*FileEncoding*
FileReadCmd	autocmd.txt	/*FileReadCmd*
FileReadPost	autocmd.txt	/*FileReadPost*
FileReadPre	autocmd.txt	/*FileReadPre*
FileType	autocmd.txt	/*FileType*
FileWriteCmd	autocmd.txt	/*FileWriteCmd*
FileWritePost	autocmd.txt	/*FileWritePost*
FileWritePre	autocmd.txt	/*FileWritePre*
FilterReadPost	autocmd.txt	/*FilterReadPost*
FilterReadPre	autocmd.txt	/*FilterReadPre*
FilterWritePost	autocmd.txt	/*FilterWritePost*
FilterWritePre	autocmd.txt	/*FilterWritePre*
Float	eval.txt	/*Float*
FocusGained	autocmd.txt	/*FocusGained*
FocusLost	autocmd.txt	/*FocusLost*
Folding	fold.txt	/*Folding*
FuncUndefined	autocmd.txt	/*FuncUndefined*
Funcref	eval.txt	/*Funcref*
G	motion.txt	/*G*
GNOME	gui_x11.txt	/*GNOME*
GTK	gui_x11.txt	/*GTK*
GTK+	gui_x11.txt	/*GTK+*
GUI	gui.txt	/*GUI*
GUI-X11	gui_x11.txt	/*GUI-X11*
GUIEnter	autocmd.txt	/*GUIEnter*
GUIFailed	autocmd.txt	/*GUIFailed*
GetLatestVimScripts	pi_getscript.txt	/*GetLatestVimScripts*
GetLatestVimScripts-copyright	pi_getscript.txt	/*GetLatestVimScripts-copyright*
GetLatestVimScripts_dat	pi_getscript.txt	/*GetLatestVimScripts_dat*
Gnome	gui_x11.txt	/*Gnome*
H	motion.txt	/*H*
I	insert.txt	/*I*
ICCF	uganda.txt	/*ICCF*
IM-server	mbyte.txt	/*IM-server*
IME	mbyte.txt	/*IME*
Insert	insert.txt	/*Insert*
Insert-mode	insert.txt	/*Insert-mode*
InsertChange	autocmd.txt	/*InsertChange*
InsertCharPre	autocmd.txt	/*InsertCharPre*
InsertEnter	autocmd.txt	/*InsertEnter*
InsertLeave	autocmd.txt	/*InsertLeave*
J	change.txt	/*J*
Japanese	mbyte.txt	/*Japanese*
K	various.txt	/*K*
KDE	gui_x11.txt	/*KDE*
KVim	gui_x11.txt	/*KVim*
Kibaale	uganda.txt	/*Kibaale*
Korean	mbyte.txt	/*Korean*
L	motion.txt	/*L*
Linux-backspace	options.txt	/*Linux-backspace*
List	eval.txt	/*List*
Lists	eval.txt	/*Lists*
Lua	if_lua.txt	/*Lua*
M	motion.txt	/*M*
MDI	starting.txt	/*MDI*
MS-DOS	os_msdos.txt	/*MS-DOS*
MS-Windows	os_win32.txt	/*MS-Windows*
MSDOS	os_msdos.txt	/*MSDOS*
MSVisualStudio	if_ole.txt	/*MSVisualStudio*
MVS	os_390.txt	/*MVS*
Mac	os_mac.txt	/*Mac*
Mac-format	editing.txt	/*Mac-format*
Mac-format-write	editing.txt	/*Mac-format-write*
Macintosh	os_mac.txt	/*Macintosh*
Mark	motion.txt	/*Mark*
MenuPopup	autocmd.txt	/*MenuPopup*
MiNT	os_mint.txt	/*MiNT*
Moolenaar	intro.txt	/*Moolenaar*
MorphOS	os_amiga.txt	/*MorphOS*
Motif	gui_x11.txt	/*Motif*
Myspell	spell.txt	/*Myspell*
MzScheme	if_mzsch.txt	/*MzScheme*
N	pattern.txt	/*N*
N%	motion.txt	/*N%*
N:	cmdline.txt	/*N:*
N<Del>	various.txt	/*N<Del>*
NFA	pattern.txt	/*NFA*
NL-used-for-Nul	pattern.txt	/*NL-used-for-Nul*
NetBSD-backspace	options.txt	/*NetBSD-backspace*
NetUserPass()	pi_netrw.txt	/*NetUserPass()*
Normal	intro.txt	/*Normal*
Normal-mode	intro.txt	/*Normal-mode*
Number	eval.txt	/*Number*
Nvi	intro.txt	/*Nvi*
O	insert.txt	/*O*
OS/2	os_os2.txt	/*OS\/2*
OS2	os_os2.txt	/*OS2*
OS390	os_390.txt	/*OS390*
OS390-Motif	os_390.txt	/*OS390-Motif*
OS390-PuTTY	os_390.txt	/*OS390-PuTTY*
OS390-bugs	os_390.txt	/*OS390-bugs*
OS390-has-ebcdic	os_390.txt	/*OS390-has-ebcdic*
OS390-limitations	os_390.txt	/*OS390-limitations*
OS390-open-source	os_390.txt	/*OS390-open-source*
OffTheSpot	mbyte.txt	/*OffTheSpot*
OnTheSpot	mbyte.txt	/*OnTheSpot*
Operator-pending	intro.txt	/*Operator-pending*
Operator-pending-mode	intro.txt	/*Operator-pending-mode*
OverTheSpot	mbyte.txt	/*OverTheSpot*
P	change.txt	/*P*
PATHEXT	eval.txt	/*PATHEXT*
PHP_BracesAtCodeLevel	indent.txt	/*PHP_BracesAtCodeLevel*
PHP_autoformatcomment	indent.txt	/*PHP_autoformatcomment*
PHP_default_indenting	indent.txt	/*PHP_default_indenting*
PHP_outdentSLComments	indent.txt	/*PHP_outdentSLComments*
PHP_outdentphpescape	indent.txt	/*PHP_outdentphpescape*
PHP_removeCRwhenUnix	indent.txt	/*PHP_removeCRwhenUnix*
PHP_vintage_case_default_indent	indent.txt	/*PHP_vintage_case_default_indent*
Pattern	pattern.txt	/*Pattern*
Perl	if_perl.txt	/*Perl*
Posix	intro.txt	/*Posix*
Python	if_pyth.txt	/*Python*
Q	intro.txt	/*Q*
Q-command-changed	version5.txt	/*Q-command-changed*
QNX	os_qnx.txt	/*QNX*
Q_ab	quickref.txt	/*Q_ab*
Q_ac	quickref.txt	/*Q_ac*
Q_ai	quickref.txt	/*Q_ai*
Q_bu	quickref.txt	/*Q_bu*
Q_ce	quickref.txt	/*Q_ce*
Q_ch	quickref.txt	/*Q_ch*
Q_cm	quickref.txt	/*Q_cm*
Q_co	quickref.txt	/*Q_co*
Q_ct	help.txt	/*Q_ct*
Q_de	quickref.txt	/*Q_de*
Q_di	quickref.txt	/*Q_di*
Q_ed	quickref.txt	/*Q_ed*
Q_et	quickref.txt	/*Q_et*
Q_ex	quickref.txt	/*Q_ex*
Q_fl	quickref.txt	/*Q_fl*
Q_fo	quickref.txt	/*Q_fo*
Q_gu	quickref.txt	/*Q_gu*
Q_in	quickref.txt	/*Q_in*
Q_km	quickref.txt	/*Q_km*
Q_lr	quickref.txt	/*Q_lr*
Q_ma	quickref.txt	/*Q_ma*
Q_op	quickref.txt	/*Q_op*
Q_pa	quickref.txt	/*Q_pa*
Q_qf	quickref.txt	/*Q_qf*
Q_ra	quickref.txt	/*Q_ra*
Q_re	quickref.txt	/*Q_re*
Q_sc	quickref.txt	/*Q_sc*
Q_si	quickref.txt	/*Q_si*
Q_ss	quickref.txt	/*Q_ss*
Q_st	quickref.txt	/*Q_st*
Q_sy	quickref.txt	/*Q_sy*
Q_ta	quickref.txt	/*Q_ta*
Q_tm	quickref.txt	/*Q_tm*
Q_to	quickref.txt	/*Q_to*
Q_ud	quickref.txt	/*Q_ud*
Q_ur	quickref.txt	/*Q_ur*
Q_vc	quickref.txt	/*Q_vc*
Q_vi	quickref.txt	/*Q_vi*
Q_vm	quickref.txt	/*Q_vm*
Q_wi	quickref.txt	/*Q_wi*
Q_wq	quickref.txt	/*Q_wq*
QuickFixCmdPost	autocmd.txt	/*QuickFixCmdPost*
QuickFixCmdPost-example	quickfix.txt	/*QuickFixCmdPost-example*
QuickFixCmdPre	autocmd.txt	/*QuickFixCmdPre*
Quickfix	quickfix.txt	/*Quickfix*
QuitPre	autocmd.txt	/*QuitPre*
R	change.txt	/*R*
RISC-OS	os_risc.txt	/*RISC-OS*
RISCOS	os_risc.txt	/*RISCOS*
RemoteReply	autocmd.txt	/*RemoteReply*
Replace	insert.txt	/*Replace*
Replace-mode	insert.txt	/*Replace-mode*
Root	mbyte.txt	/*Root*
Ruby	if_ruby.txt	/*Ruby*
Russian	russian.txt	/*Russian*
S	change.txt	/*S*
SHELL	starting.txt	/*SHELL*
SQLGetType	ft_sql.txt	/*SQLGetType*
SQLSetType	ft_sql.txt	/*SQLSetType*
Select	visual.txt	/*Select*
Select-mode	visual.txt	/*Select-mode*
Select-mode-mapping	visual.txt	/*Select-mode-mapping*
Session	starting.txt	/*Session*
SessionLoad-variable	starting.txt	/*SessionLoad-variable*
SessionLoadPost	autocmd.txt	/*SessionLoadPost*
ShellCmdPost	autocmd.txt	/*ShellCmdPost*
ShellFilterPost	autocmd.txt	/*ShellFilterPost*
SourceCmd	autocmd.txt	/*SourceCmd*
SourcePre	autocmd.txt	/*SourcePre*
SpellFileMissing	autocmd.txt	/*SpellFileMissing*
StdinReadPost	autocmd.txt	/*StdinReadPost*
StdinReadPre	autocmd.txt	/*StdinReadPre*
SwapExists	autocmd.txt	/*SwapExists*
Syntax	autocmd.txt	/*Syntax*
T	motion.txt	/*T*
TCL	if_tcl.txt	/*TCL*
TERM	starting.txt	/*TERM*
TOhtml-encoding	syntax.txt	/*TOhtml-encoding*
TOhtml-encoding-detect	syntax.txt	/*TOhtml-encoding-detect*
TOhtml-performance	syntax.txt	/*TOhtml-performance*
TOhtml-uncopyable-text	syntax.txt	/*TOhtml-uncopyable-text*
TOhtml-wrap-text	syntax.txt	/*TOhtml-wrap-text*
TSQL	ft_sql.txt	/*TSQL*
TTpro-telnet	syntax.txt	/*TTpro-telnet*
Tab	intro.txt	/*Tab*
TabEnter	autocmd.txt	/*TabEnter*
TabLeave	autocmd.txt	/*TabLeave*
Tcl	if_tcl.txt	/*Tcl*
TermChanged	autocmd.txt	/*TermChanged*
TermResponse	autocmd.txt	/*TermResponse*
TextChanged	autocmd.txt	/*TextChanged*
TextChangedI	autocmd.txt	/*TextChangedI*
Transact-SQL	ft_sql.txt	/*Transact-SQL*
U	undo.txt	/*U*
UTF-8	mbyte.txt	/*UTF-8*
UTF8-xterm	mbyte.txt	/*UTF8-xterm*
Uganda	uganda.txt	/*Uganda*
Unicode	mbyte.txt	/*Unicode*
Unix	os_unix.txt	/*Unix*
Unix-format	editing.txt	/*Unix-format*
Unix-format-write	editing.txt	/*Unix-format-write*
User	autocmd.txt	/*User*
UserGettingBored	autocmd.txt	/*UserGettingBored*
V	visual.txt	/*V*
VIMINIT	starting.txt	/*VIMINIT*
VMS	os_vms.txt	/*VMS*
Vi	intro.txt	/*Vi*
View	starting.txt	/*View*
VimEnter	autocmd.txt	/*VimEnter*
VimLeave	autocmd.txt	/*VimLeave*
VimLeavePre	autocmd.txt	/*VimLeavePre*
VimResized	autocmd.txt	/*VimResized*
Vimball-copyright	pi_vimball.txt	/*Vimball-copyright*
Virtual-Replace-mode	insert.txt	/*Virtual-Replace-mode*
VisVim	if_ole.txt	/*VisVim*
Visual	visual.txt	/*Visual*
Visual-mode	visual.txt	/*Visual-mode*
W	motion.txt	/*W*
W10	message.txt	/*W10*
W11	message.txt	/*W11*
W12	message.txt	/*W12*
W13	message.txt	/*W13*
W14	message.txt	/*W14*
W15	repeat.txt	/*W15*
W16	message.txt	/*W16*
W17	arabic.txt	/*W17*
W18	syntax.txt	/*W18*
WORD	motion.txt	/*WORD*
WWW	intro.txt	/*WWW*
Win32	os_win32.txt	/*Win32*
WinEnter	autocmd.txt	/*WinEnter*
WinLeave	autocmd.txt	/*WinLeave*
X	change.txt	/*X*
X11	options.txt	/*X11*
X11-icon	gui_x11.txt	/*X11-icon*
X11_mouse_shapes	gui_x11.txt	/*X11_mouse_shapes*
X1Drag	term.txt	/*X1Drag*
X1Mouse	term.txt	/*X1Mouse*
X1Release	term.txt	/*X1Release*
X2Drag	term.txt	/*X2Drag*
X2Mouse	term.txt	/*X2Mouse*
X2Release	term.txt	/*X2Release*
XIM	mbyte.txt	/*XIM*
XLFD	mbyte.txt	/*XLFD*
Y	change.txt	/*Y*
Y2K	intro.txt	/*Y2K*
ZQ	editing.txt	/*ZQ*
ZZ	editing.txt	/*ZZ*
[	index.txt	/*[*
[#	motion.txt	/*[#*
['	motion.txt	/*['*
[(	motion.txt	/*[(*
[++opt]	editing.txt	/*[++opt]*
[+cmd]	editing.txt	/*[+cmd]*
[..]	pattern.txt	/*[..]*
[/	motion.txt	/*[\/*
[:alnum:]	pattern.txt	/*[:alnum:]*
[:alpha:]	pattern.txt	/*[:alpha:]*
[:backspace:]	pattern.txt	/*[:backspace:]*
[:blank:]	pattern.txt	/*[:blank:]*
[:cntrl:]	pattern.txt	/*[:cntrl:]*
[:digit:]	pattern.txt	/*[:digit:]*
[:escape:]	pattern.txt	/*[:escape:]*
[:graph:]	pattern.txt	/*[:graph:]*
[:lower:]	pattern.txt	/*[:lower:]*
[:print:]	pattern.txt	/*[:print:]*
[:punct:]	pattern.txt	/*[:punct:]*
[:return:]	pattern.txt	/*[:return:]*
[:space:]	pattern.txt	/*[:space:]*
[:tab:]	pattern.txt	/*[:tab:]*
[:upper:]	pattern.txt	/*[:upper:]*
[:xdigit:]	pattern.txt	/*[:xdigit:]*
[<MiddleMouse>	change.txt	/*[<MiddleMouse>*
[==]	pattern.txt	/*[==]*
[D	tagsrch.txt	/*[D*
[I	tagsrch.txt	/*[I*
[M	motion.txt	/*[M*
[P	change.txt	/*[P*
[S	spell.txt	/*[S*
[[	motion.txt	/*[[*
[]	motion.txt	/*[]*
[_CTRL-D	tagsrch.txt	/*[_CTRL-D*
[_CTRL-I	tagsrch.txt	/*[_CTRL-I*
[`	motion.txt	/*[`*
[c	diff.txt	/*[c*
[count]	intro.txt	/*[count]*
[d	tagsrch.txt	/*[d*
[f	editing.txt	/*[f*
[i	tagsrch.txt	/*[i*
[m	motion.txt	/*[m*
[p	change.txt	/*[p*
[pattern]	pattern.txt	/*[pattern]*
[quotex]	intro.txt	/*[quotex]*
[range]	cmdline.txt	/*[range]*
[s	spell.txt	/*[s*
[star	motion.txt	/*[star*
[z	fold.txt	/*[z*
[{	motion.txt	/*[{*
\0	change.txt	/*\\0*
]	index.txt	/*]*
]#	motion.txt	/*]#*
]'	motion.txt	/*]'*
])	motion.txt	/*])*
]/	motion.txt	/*]\/*
]<MiddleMouse>	change.txt	/*]<MiddleMouse>*
]D	tagsrch.txt	/*]D*
]I	tagsrch.txt	/*]I*
]M	motion.txt	/*]M*
]P	change.txt	/*]P*
]S	spell.txt	/*]S*
][	motion.txt	/*][*
]]	motion.txt	/*]]*
]_CTRL-D	tagsrch.txt	/*]_CTRL-D*
]_CTRL-I	tagsrch.txt	/*]_CTRL-I*
]`	motion.txt	/*]`*
]c	diff.txt	/*]c*
]d	tagsrch.txt	/*]d*
]f	editing.txt	/*]f*
]i	tagsrch.txt	/*]i*
]m	motion.txt	/*]m*
]p	change.txt	/*]p*
]s	spell.txt	/*]s*
]star	motion.txt	/*]star*
]z	fold.txt	/*]z*
]}	motion.txt	/*]}*
^	motion.txt	/*^*
_	motion.txt	/*_*
_exrc	starting.txt	/*_exrc*
_gvimrc	gui.txt	/*_gvimrc*
_vimrc	starting.txt	/*_vimrc*
`	motion.txt	/*`*
`(	motion.txt	/*`(*
`)	motion.txt	/*`)*
`-expansion	editing.txt	/*`-expansion*
`.	motion.txt	/*`.*
`0	motion.txt	/*`0*
`<	motion.txt	/*`<*
`=	editing.txt	/*`=*
`>	motion.txt	/*`>*
`A	motion.txt	/*`A*
`[	motion.txt	/*`[*
`]	motion.txt	/*`]*
`^	motion.txt	/*`^*
``	motion.txt	/*``*
`a	motion.txt	/*`a*
`quote	motion.txt	/*`quote*
`{	motion.txt	/*`{*
`}	motion.txt	/*`}*
a	insert.txt	/*a*
a'	motion.txt	/*a'*
a(	motion.txt	/*a(*
a)	motion.txt	/*a)*
a4	print.txt	/*a4*
a:0	eval.txt	/*a:0*
a:000	eval.txt	/*a:000*
a:1	eval.txt	/*a:1*
a:firstline	eval.txt	/*a:firstline*
a:lastline	eval.txt	/*a:lastline*
a:var	eval.txt	/*a:var*
a<	motion.txt	/*a<*
a>	motion.txt	/*a>*
aB	motion.txt	/*aB*
aW	motion.txt	/*aW*
a[	motion.txt	/*a[*
a]	motion.txt	/*a]*
a`	motion.txt	/*a`*
ab	motion.txt	/*ab*
abandon	editing.txt	/*abandon*
abbreviations	map.txt	/*abbreviations*
abel.vim	syntax.txt	/*abel.vim*
abs()	eval.txt	/*abs()*
acos()	eval.txt	/*acos()*
active-buffer	windows.txt	/*active-buffer*
ada#Create_Tags()	ft_ada.txt	/*ada#Create_Tags()*
ada#Jump_Tag()	ft_ada.txt	/*ada#Jump_Tag()*
ada#Listtags()	ft_ada.txt	/*ada#Listtags()*
ada#Switch_Syntax_Option()	ft_ada.txt	/*ada#Switch_Syntax_Option()*
ada#Word()	ft_ada.txt	/*ada#Word()*
ada-compiler	ft_ada.txt	/*ada-compiler*
ada-ctags	ft_ada.txt	/*ada-ctags*
ada-extra-plugins	ft_ada.txt	/*ada-extra-plugins*
ada-reference	ft_ada.txt	/*ada-reference*
ada.vim	ft_ada.txt	/*ada.vim*
add()	eval.txt	/*add()*
add-filetype-plugin	usr_05.txt	/*add-filetype-plugin*
add-global-plugin	usr_05.txt	/*add-global-plugin*
add-local-help	usr_05.txt	/*add-local-help*
add-option-flags	options.txt	/*add-option-flags*
add-plugin	usr_05.txt	/*add-plugin*
added-5.1	version5.txt	/*added-5.1*
added-5.2	version5.txt	/*added-5.2*
added-5.3	version5.txt	/*added-5.3*
added-5.4	version5.txt	/*added-5.4*
added-5.5	version5.txt	/*added-5.5*
added-5.6	version5.txt	/*added-5.6*
added-5.7	version5.txt	/*added-5.7*
added-5.8	version5.txt	/*added-5.8*
added-6.1	version6.txt	/*added-6.1*
added-6.2	version6.txt	/*added-6.2*
added-6.3	version6.txt	/*added-6.3*
added-6.4	version6.txt	/*added-6.4*
added-7.1	version7.txt	/*added-7.1*
added-7.2	version7.txt	/*added-7.2*
added-7.3	version7.txt	/*added-7.3*
added-7.4	version7.txt	/*added-7.4*
added-BeOS	version5.txt	/*added-BeOS*
added-Mac	version5.txt	/*added-Mac*
added-VMS	version5.txt	/*added-VMS*
added-cmdline-args	version5.txt	/*added-cmdline-args*
added-options	version5.txt	/*added-options*
added-regexp	version5.txt	/*added-regexp*
added-various	version5.txt	/*added-various*
added-win32-GUI	version5.txt	/*added-win32-GUI*
aff-dic-format	spell.txt	/*aff-dic-format*
after-directory	options.txt	/*after-directory*
aleph	options.txt	/*aleph*
alt	intro.txt	/*alt*
alt-input	debugger.txt	/*alt-input*
alternate-file	editing.txt	/*alternate-file*
amiga-window	starting.txt	/*amiga-window*
and()	eval.txt	/*and()*
anonymous-function	eval.txt	/*anonymous-function*
ant.vim	syntax.txt	/*ant.vim*
ap	motion.txt	/*ap*
apache.vim	syntax.txt	/*apache.vim*
append()	eval.txt	/*append()*
aquote	motion.txt	/*aquote*
arabic.txt	arabic.txt	/*arabic.txt*
arabicfonts	arabic.txt	/*arabicfonts*
arabickeymap	arabic.txt	/*arabickeymap*
arg-functions	usr_41.txt	/*arg-functions*
argc()	eval.txt	/*argc()*
argidx()	eval.txt	/*argidx()*
arglist	editing.txt	/*arglist*
arglist-position	editing.txt	/*arglist-position*
arglist-quit	usr_07.txt	/*arglist-quit*
arglistid()	eval.txt	/*arglistid()*
argument-list	editing.txt	/*argument-list*
argv()	eval.txt	/*argv()*
as	motion.txt	/*as*
asin()	eval.txt	/*asin()*
asm.vim	syntax.txt	/*asm.vim*
asm68k	syntax.txt	/*asm68k*
asmh8300.vim	syntax.txt	/*asmh8300.vim*
at	motion.txt	/*at*
atan()	eval.txt	/*atan()*
atan2()	eval.txt	/*atan2()*
athena-intellimouse	gui.txt	/*athena-intellimouse*
attr-list	syntax.txt	/*attr-list*
author	intro.txt	/*author*
auto-format	change.txt	/*auto-format*
auto-setting	options.txt	/*auto-setting*
auto-shortname	editing.txt	/*auto-shortname*
autocmd-<>	tips.txt	/*autocmd-<>*
autocmd-buffer-local	autocmd.txt	/*autocmd-buffer-local*
autocmd-buflocal	autocmd.txt	/*autocmd-buflocal*
autocmd-changes	autocmd.txt	/*autocmd-changes*
autocmd-define	autocmd.txt	/*autocmd-define*
autocmd-disable	autocmd.txt	/*autocmd-disable*
autocmd-events	autocmd.txt	/*autocmd-events*
autocmd-events-abc	autocmd.txt	/*autocmd-events-abc*
autocmd-execute	autocmd.txt	/*autocmd-execute*
autocmd-groups	autocmd.txt	/*autocmd-groups*
autocmd-intro	autocmd.txt	/*autocmd-intro*
autocmd-list	autocmd.txt	/*autocmd-list*
autocmd-nested	autocmd.txt	/*autocmd-nested*
autocmd-osfiletypes	filetype.txt	/*autocmd-osfiletypes*
autocmd-patterns	autocmd.txt	/*autocmd-patterns*
autocmd-remove	autocmd.txt	/*autocmd-remove*
autocmd-searchpat	autocmd.txt	/*autocmd-searchpat*
autocmd-use	autocmd.txt	/*autocmd-use*
autocmd.txt	autocmd.txt	/*autocmd.txt*
autocmds-kept	version5.txt	/*autocmds-kept*
autocommand	autocmd.txt	/*autocommand*
autocommand-events	autocmd.txt	/*autocommand-events*
autocommand-pattern	autocmd.txt	/*autocommand-pattern*
autoformat	change.txt	/*autoformat*
autoload	eval.txt	/*autoload*
autoload-functions	eval.txt	/*autoload-functions*
avoid-hit-enter	version5.txt	/*avoid-hit-enter*
aw	motion.txt	/*aw*
a{	motion.txt	/*a{*
a}	motion.txt	/*a}*
b	motion.txt	/*b*
b:	eval.txt	/*b:*
b:changedtick	eval.txt	/*b:changedtick*
b:changelog_name	filetype.txt	/*b:changelog_name*
b:current_syntax-variable	syntax.txt	/*b:current_syntax-variable*
b:netrw_lastfile	pi_netrw.txt	/*b:netrw_lastfile*
b:tex_stylish	syntax.txt	/*b:tex_stylish*
b:var	eval.txt	/*b:var*
baan-folding	syntax.txt	/*baan-folding*
baan-syntax	syntax.txt	/*baan-syntax*
baan.vim	syntax.txt	/*baan.vim*
backslash	intro.txt	/*backslash*
backspace	intro.txt	/*backspace*
backspace-delete	version4.txt	/*backspace-delete*
backtick-expansion	editing.txt	/*backtick-expansion*
backup	editing.txt	/*backup*
backup-changed	version4.txt	/*backup-changed*
backup-extension	version4.txt	/*backup-extension*
backup-table	editing.txt	/*backup-table*
balloon-eval	debugger.txt	/*balloon-eval*
bar	motion.txt	/*bar*
bars	help.txt	/*bars*
base_font_name_list	mbyte.txt	/*base_font_name_list*
basic.vim	syntax.txt	/*basic.vim*
beep	options.txt	/*beep*
beos-colors	os_beos.txt	/*beos-colors*
beos-compiling	os_beos.txt	/*beos-compiling*
beos-dragndrop	os_beos.txt	/*beos-dragndrop*
beos-fonts	os_beos.txt	/*beos-fonts*
beos-general	os_beos.txt	/*beos-general*
beos-gui	os_beos.txt	/*beos-gui*
beos-launch	os_beos.txt	/*beos-launch*
beos-meta	os_beos.txt	/*beos-meta*
beos-mouse	os_beos.txt	/*beos-mouse*
beos-perl	os_beos.txt	/*beos-perl*
beos-timeout	os_beos.txt	/*beos-timeout*
beos-unicode	os_beos.txt	/*beos-unicode*
beos-utf8	os_beos.txt	/*beos-utf8*
beos-vimdir	os_beos.txt	/*beos-vimdir*
better-python-interface	version7.txt	/*better-python-interface*
beval_bufnr-variable	eval.txt	/*beval_bufnr-variable*
beval_col-variable	eval.txt	/*beval_col-variable*
beval_lnum-variable	eval.txt	/*beval_lnum-variable*
beval_text-variable	eval.txt	/*beval_text-variable*
beval_winnr-variable	eval.txt	/*beval_winnr-variable*
bitwise-function	usr_41.txt	/*bitwise-function*
blockwise-examples	visual.txt	/*blockwise-examples*
blockwise-operators	visual.txt	/*blockwise-operators*
blockwise-register	change.txt	/*blockwise-register*
blockwise-visual	visual.txt	/*blockwise-visual*
blowfish	options.txt	/*blowfish*
bold	syntax.txt	/*bold*
bom-bytes	mbyte.txt	/*bom-bytes*
book	intro.txt	/*book*
bookmark	usr_03.txt	/*bookmark*
boolean	options.txt	/*boolean*
break-finally	eval.txt	/*break-finally*
browse()	eval.txt	/*browse()*
browsedir()	eval.txt	/*browsedir()*
browsefilter	editing.txt	/*browsefilter*
bufexists()	eval.txt	/*bufexists()*
buffer-functions	usr_41.txt	/*buffer-functions*
buffer-hidden	windows.txt	/*buffer-hidden*
buffer-list	windows.txt	/*buffer-list*
buffer-variable	eval.txt	/*buffer-variable*
buffer-write	editing.txt	/*buffer-write*
buffer_exists()	eval.txt	/*buffer_exists()*
buffer_name()	eval.txt	/*buffer_name()*
buffer_number()	eval.txt	/*buffer_number()*
buffers	windows.txt	/*buffers*
buffers-menu	gui.txt	/*buffers-menu*
buflisted()	eval.txt	/*buflisted()*
bufloaded()	eval.txt	/*bufloaded()*
bufname()	eval.txt	/*bufname()*
bufnr()	eval.txt	/*bufnr()*
bufwinnr()	eval.txt	/*bufwinnr()*
bug-fixes-5	version5.txt	/*bug-fixes-5*
bug-fixes-6	version6.txt	/*bug-fixes-6*
bug-fixes-7	version7.txt	/*bug-fixes-7*
bug-reports	intro.txt	/*bug-reports*
bugreport.vim	intro.txt	/*bugreport.vim*
bugs	intro.txt	/*bugs*
builtin-terms	term.txt	/*builtin-terms*
builtin-tools	gui.txt	/*builtin-tools*
builtin_terms	term.txt	/*builtin_terms*
byte-count	editing.txt	/*byte-count*
byte2line()	eval.txt	/*byte2line()*
byteidx()	eval.txt	/*byteidx()*
byteidxcomp()	eval.txt	/*byteidxcomp()*
bzip2	pi_gzip.txt	/*bzip2*
c	change.txt	/*c*
c.vim	syntax.txt	/*c.vim*
cW	change.txt	/*cW*
c_#	cmdline.txt	/*c_#*
c_##	cmdline.txt	/*c_##*
c_#<	cmdline.txt	/*c_#<*
c_#n	cmdline.txt	/*c_#n*
c_%	cmdline.txt	/*c_%*
c_<BS>	cmdline.txt	/*c_<BS>*
c_<C-Left>	cmdline.txt	/*c_<C-Left>*
c_<C-R>	cmdline.txt	/*c_<C-R>*
c_<C-R>_<C-A>	cmdline.txt	/*c_<C-R>_<C-A>*
c_<C-R>_<C-F>	cmdline.txt	/*c_<C-R>_<C-F>*
c_<C-R>_<C-O>	cmdline.txt	/*c_<C-R>_<C-O>*
c_<C-R>_<C-P>	cmdline.txt	/*c_<C-R>_<C-P>*
c_<C-R>_<C-R>	cmdline.txt	/*c_<C-R>_<C-R>*
c_<C-R>_<C-W>	cmdline.txt	/*c_<C-R>_<C-W>*
c_<C-Right>	cmdline.txt	/*c_<C-Right>*
c_<CR>	cmdline.txt	/*c_<CR>*
c_<Del>	cmdline.txt	/*c_<Del>*
c_<Down>	cmdline.txt	/*c_<Down>*
c_<End>	cmdline.txt	/*c_<End>*
c_<Esc>	cmdline.txt	/*c_<Esc>*
c_<Home>	cmdline.txt	/*c_<Home>*
c_<Insert>	cmdline.txt	/*c_<Insert>*
c_<Left>	cmdline.txt	/*c_<Left>*
c_<LeftMouse>	cmdline.txt	/*c_<LeftMouse>*
c_<NL>	cmdline.txt	/*c_<NL>*
c_<PageDown>	cmdline.txt	/*c_<PageDown>*
c_<PageUp>	cmdline.txt	/*c_<PageUp>*
c_<Right>	cmdline.txt	/*c_<Right>*
c_<S-Down>	cmdline.txt	/*c_<S-Down>*
c_<S-Left>	cmdline.txt	/*c_<S-Left>*
c_<S-Right>	cmdline.txt	/*c_<S-Right>*
c_<S-Tab>	cmdline.txt	/*c_<S-Tab>*
c_<S-Up>	cmdline.txt	/*c_<S-Up>*
c_<Tab>	cmdline.txt	/*c_<Tab>*
c_<Up>	cmdline.txt	/*c_<Up>*
c_BS	cmdline.txt	/*c_BS*
c_CR	cmdline.txt	/*c_CR*
c_CTRL-A	cmdline.txt	/*c_CTRL-A*
c_CTRL-B	cmdline.txt	/*c_CTRL-B*
c_CTRL-C	cmdline.txt	/*c_CTRL-C*
c_CTRL-D	cmdline.txt	/*c_CTRL-D*
c_CTRL-E	cmdline.txt	/*c_CTRL-E*
c_CTRL-F	cmdline.txt	/*c_CTRL-F*
c_CTRL-H	cmdline.txt	/*c_CTRL-H*
c_CTRL-I	cmdline.txt	/*c_CTRL-I*
c_CTRL-J	cmdline.txt	/*c_CTRL-J*
c_CTRL-K	cmdline.txt	/*c_CTRL-K*
c_CTRL-L	cmdline.txt	/*c_CTRL-L*
c_CTRL-N	cmdline.txt	/*c_CTRL-N*
c_CTRL-P	cmdline.txt	/*c_CTRL-P*
c_CTRL-Q	cmdline.txt	/*c_CTRL-Q*
c_CTRL-R	cmdline.txt	/*c_CTRL-R*
c_CTRL-R_=	cmdline.txt	/*c_CTRL-R_=*
c_CTRL-R_CTRL-A	cmdline.txt	/*c_CTRL-R_CTRL-A*
c_CTRL-R_CTRL-F	cmdline.txt	/*c_CTRL-R_CTRL-F*
c_CTRL-R_CTRL-O	cmdline.txt	/*c_CTRL-R_CTRL-O*
c_CTRL-R_CTRL-P	cmdline.txt	/*c_CTRL-R_CTRL-P*
c_CTRL-R_CTRL-R	cmdline.txt	/*c_CTRL-R_CTRL-R*
c_CTRL-R_CTRL-W	cmdline.txt	/*c_CTRL-R_CTRL-W*
c_CTRL-U	cmdline.txt	/*c_CTRL-U*
c_CTRL-V	cmdline.txt	/*c_CTRL-V*
c_CTRL-W	cmdline.txt	/*c_CTRL-W*
c_CTRL-Y	cmdline.txt	/*c_CTRL-Y*
c_CTRL-\_CTRL-G	intro.txt	/*c_CTRL-\\_CTRL-G*
c_CTRL-\_CTRL-N	intro.txt	/*c_CTRL-\\_CTRL-N*
c_CTRL-\_e	cmdline.txt	/*c_CTRL-\\_e*
c_CTRL-]	cmdline.txt	/*c_CTRL-]*
c_CTRL-^	cmdline.txt	/*c_CTRL-^*
c_CTRL-_	cmdline.txt	/*c_CTRL-_*
c_Del	cmdline.txt	/*c_Del*
c_Down	cmdline.txt	/*c_Down*
c_End	cmdline.txt	/*c_End*
c_Esc	cmdline.txt	/*c_Esc*
c_Home	cmdline.txt	/*c_Home*
c_Insert	cmdline.txt	/*c_Insert*
c_Left	cmdline.txt	/*c_Left*
c_Right	cmdline.txt	/*c_Right*
c_Up	cmdline.txt	/*c_Up*
c_digraph	cmdline.txt	/*c_digraph*
c_wildchar	cmdline.txt	/*c_wildchar*
call()	eval.txt	/*call()*
carriage-return	intro.txt	/*carriage-return*
case	change.txt	/*case*
catch-all	eval.txt	/*catch-all*
catch-errors	eval.txt	/*catch-errors*
catch-interrupt	eval.txt	/*catch-interrupt*
catch-order	eval.txt	/*catch-order*
catch-text	eval.txt	/*catch-text*
cc	change.txt	/*cc*
ceil()	eval.txt	/*ceil()*
ch.vim	syntax.txt	/*ch.vim*
change-list-jumps	motion.txt	/*change-list-jumps*
change-name	tips.txt	/*change-name*
change-tabs	change.txt	/*change-tabs*
change.txt	change.txt	/*change.txt*
changed-5.1	version5.txt	/*changed-5.1*
changed-5.2	version5.txt	/*changed-5.2*
changed-5.3	version5.txt	/*changed-5.3*
changed-5.4	version5.txt	/*changed-5.4*
changed-5.5	version5.txt	/*changed-5.5*
changed-5.6	version5.txt	/*changed-5.6*
changed-5.7	version5.txt	/*changed-5.7*
changed-5.8	version5.txt	/*changed-5.8*
changed-6.1	version6.txt	/*changed-6.1*
changed-6.2	version6.txt	/*changed-6.2*
changed-6.3	version6.txt	/*changed-6.3*
changed-6.4	version6.txt	/*changed-6.4*
changed-7.1	version7.txt	/*changed-7.1*
changed-7.2	version7.txt	/*changed-7.2*
changed-7.3	version7.txt	/*changed-7.3*
changed-7.4	version7.txt	/*changed-7.4*
changelist	motion.txt	/*changelist*
changelog.vim	syntax.txt	/*changelog.vim*
changenr()	eval.txt	/*changenr()*
changetick	eval.txt	/*changetick*
changing	change.txt	/*changing*
char-variable	eval.txt	/*char-variable*
char2nr()	eval.txt	/*char2nr()*
characterwise	motion.txt	/*characterwise*
characterwise-register	change.txt	/*characterwise-register*
characterwise-visual	visual.txt	/*characterwise-visual*
charconvert_from-variable	eval.txt	/*charconvert_from-variable*
charconvert_to-variable	eval.txt	/*charconvert_to-variable*
charity	uganda.txt	/*charity*
charset	mbyte.txt	/*charset*
charset-conversion	mbyte.txt	/*charset-conversion*
chill.vim	syntax.txt	/*chill.vim*
cindent()	eval.txt	/*cindent()*
cinkeys-format	indent.txt	/*cinkeys-format*
cino-#	indent.txt	/*cino-#*
cino-(	indent.txt	/*cino-(*
cino-)	indent.txt	/*cino-)*
cino-+	indent.txt	/*cino-+*
cino-/	indent.txt	/*cino-\/*
cino-:	indent.txt	/*cino-:*
cino-=	indent.txt	/*cino-=*
cino->	indent.txt	/*cino->*
cino-C	indent.txt	/*cino-C*
cino-J	indent.txt	/*cino-J*
cino-L	indent.txt	/*cino-L*
cino-M	indent.txt	/*cino-M*
cino-N	indent.txt	/*cino-N*
cino-U	indent.txt	/*cino-U*
cino-W	indent.txt	/*cino-W*
cino-^	indent.txt	/*cino-^*
cino-b	indent.txt	/*cino-b*
cino-c	indent.txt	/*cino-c*
cino-e	indent.txt	/*cino-e*
cino-f	indent.txt	/*cino-f*
cino-g	indent.txt	/*cino-g*
cino-h	indent.txt	/*cino-h*
cino-i	indent.txt	/*cino-i*
cino-j	indent.txt	/*cino-j*
cino-k	indent.txt	/*cino-k*
cino-l	indent.txt	/*cino-l*
cino-m	indent.txt	/*cino-m*
cino-n	indent.txt	/*cino-n*
cino-p	indent.txt	/*cino-p*
cino-star	indent.txt	/*cino-star*
cino-t	indent.txt	/*cino-t*
cino-u	indent.txt	/*cino-u*
cino-w	indent.txt	/*cino-w*
cino-{	indent.txt	/*cino-{*
cino-}	indent.txt	/*cino-}*
cinoptions-values	indent.txt	/*cinoptions-values*
clear-undo	undo.txt	/*clear-undo*
clearmatches()	eval.txt	/*clearmatches()*
client-server	remote.txt	/*client-server*
clientserver	remote.txt	/*clientserver*
clipboard	gui.txt	/*clipboard*
clipboard-autoselect	options.txt	/*clipboard-autoselect*
clipboard-autoselectml	options.txt	/*clipboard-autoselectml*
clipboard-autoselectplus	options.txt	/*clipboard-autoselectplus*
clipboard-exclude	options.txt	/*clipboard-exclude*
clipboard-html	options.txt	/*clipboard-html*
clipboard-unnamed	options.txt	/*clipboard-unnamed*
clipboard-unnamedplus	options.txt	/*clipboard-unnamedplus*
clojure-indent	indent.txt	/*clojure-indent*
cmdarg-variable	eval.txt	/*cmdarg-variable*
cmdbang-variable	eval.txt	/*cmdbang-variable*
cmdline-arguments	vi_diff.txt	/*cmdline-arguments*
cmdline-changed	version5.txt	/*cmdline-changed*
cmdline-completion	cmdline.txt	/*cmdline-completion*
cmdline-editing	cmdline.txt	/*cmdline-editing*
cmdline-history	cmdline.txt	/*cmdline-history*
cmdline-lines	cmdline.txt	/*cmdline-lines*
cmdline-ranges	cmdline.txt	/*cmdline-ranges*
cmdline-special	cmdline.txt	/*cmdline-special*
cmdline-too-long	cmdline.txt	/*cmdline-too-long*
cmdline-window	cmdline.txt	/*cmdline-window*
cmdline.txt	cmdline.txt	/*cmdline.txt*
cmdwin	cmdline.txt	/*cmdwin*
cmdwin-char	cmdline.txt	/*cmdwin-char*
cobol.vim	syntax.txt	/*cobol.vim*
codeset	mbyte.txt	/*codeset*
coding-style	develop.txt	/*coding-style*
col()	eval.txt	/*col()*
coldfusion.vim	syntax.txt	/*coldfusion.vim*
collapse	tips.txt	/*collapse*
color-xterm	syntax.txt	/*color-xterm*
coloring	syntax.txt	/*coloring*
colortest.vim	syntax.txt	/*colortest.vim*
command-line-functions	usr_41.txt	/*command-line-functions*
command-line-window	cmdline.txt	/*command-line-window*
command-mode	intro.txt	/*command-mode*
compatible-default	starting.txt	/*compatible-default*
compile-changes-5	version5.txt	/*compile-changes-5*
compile-changes-6	version6.txt	/*compile-changes-6*
compile-changes-7	version7.txt	/*compile-changes-7*
compiler-compaqada	ft_ada.txt	/*compiler-compaqada*
compiler-decada	ft_ada.txt	/*compiler-decada*
compiler-gcc	quickfix.txt	/*compiler-gcc*
compiler-gnat	ft_ada.txt	/*compiler-gnat*
compiler-hpada	ft_ada.txt	/*compiler-hpada*
compiler-manx	quickfix.txt	/*compiler-manx*
compiler-perl	quickfix.txt	/*compiler-perl*
compiler-pyunit	quickfix.txt	/*compiler-pyunit*
compiler-select	quickfix.txt	/*compiler-select*
compiler-tex	quickfix.txt	/*compiler-tex*
compiler-vaxada	ft_ada.txt	/*compiler-vaxada*
compl-current	insert.txt	/*compl-current*
compl-define	insert.txt	/*compl-define*
compl-dictionary	insert.txt	/*compl-dictionary*
compl-filename	insert.txt	/*compl-filename*
compl-function	insert.txt	/*compl-function*
compl-generic	insert.txt	/*compl-generic*
compl-keyword	insert.txt	/*compl-keyword*
compl-omni	insert.txt	/*compl-omni*
compl-omni-filetypes	insert.txt	/*compl-omni-filetypes*
compl-spelling	insert.txt	/*compl-spelling*
compl-tag	insert.txt	/*compl-tag*
compl-vim	insert.txt	/*compl-vim*
compl-whole-line	insert.txt	/*compl-whole-line*
complete()	eval.txt	/*complete()*
complete-functions	insert.txt	/*complete-functions*
complete-items	insert.txt	/*complete-items*
complete_CTRL-E	insert.txt	/*complete_CTRL-E*
complete_CTRL-Y	insert.txt	/*complete_CTRL-Y*
complete_add()	eval.txt	/*complete_add()*
complete_check()	eval.txt	/*complete_check()*
completion-functions	usr_41.txt	/*completion-functions*
complex-change	change.txt	/*complex-change*
complex-repeat	repeat.txt	/*complex-repeat*
compress	pi_gzip.txt	/*compress*
conceal	syntax.txt	/*conceal*
confirm()	eval.txt	/*confirm()*
connection-refused	message.txt	/*connection-refused*
console-menus	gui.txt	/*console-menus*
control	intro.txt	/*control*
conversion-server	mbyte.txt	/*conversion-server*
convert-to-HTML	syntax.txt	/*convert-to-HTML*
convert-to-XHTML	syntax.txt	/*convert-to-XHTML*
convert-to-XML	syntax.txt	/*convert-to-XML*
copy()	eval.txt	/*copy()*
copy-diffs	diff.txt	/*copy-diffs*
copy-move	change.txt	/*copy-move*
copying	uganda.txt	/*copying*
copyright	uganda.txt	/*copyright*
cos()	eval.txt	/*cos()*
cosh()	eval.txt	/*cosh()*
count	intro.txt	/*count*
count()	eval.txt	/*count()*
count-bytes	tips.txt	/*count-bytes*
count-items	tips.txt	/*count-items*
count-variable	eval.txt	/*count-variable*
count1-variable	eval.txt	/*count1-variable*
cp-default	version5.txt	/*cp-default*
cpo-!	options.txt	/*cpo-!*
cpo-#	options.txt	/*cpo-#*
cpo-$	options.txt	/*cpo-$*
cpo-%	options.txt	/*cpo-%*
cpo-&	options.txt	/*cpo-&*
cpo-+	options.txt	/*cpo-+*
cpo--	options.txt	/*cpo--*
cpo-.	options.txt	/*cpo-.*
cpo-/	options.txt	/*cpo-\/*
cpo-;	options.txt	/*cpo-;*
cpo-<	options.txt	/*cpo-<*
cpo->	options.txt	/*cpo->*
cpo-A	options.txt	/*cpo-A*
cpo-B	options.txt	/*cpo-B*
cpo-C	options.txt	/*cpo-C*
cpo-D	options.txt	/*cpo-D*
cpo-E	options.txt	/*cpo-E*
cpo-F	options.txt	/*cpo-F*
cpo-H	options.txt	/*cpo-H*
cpo-I	options.txt	/*cpo-I*
cpo-J	options.txt	/*cpo-J*
cpo-K	options.txt	/*cpo-K*
cpo-L	options.txt	/*cpo-L*
cpo-M	options.txt	/*cpo-M*
cpo-O	options.txt	/*cpo-O*
cpo-P	options.txt	/*cpo-P*
cpo-R	options.txt	/*cpo-R*
cpo-S	options.txt	/*cpo-S*
cpo-W	options.txt	/*cpo-W*
cpo-X	options.txt	/*cpo-X*
cpo-Z	options.txt	/*cpo-Z*
cpo-\	options.txt	/*cpo-\\*
cpo-a	options.txt	/*cpo-a*
cpo-b	options.txt	/*cpo-b*
cpo-bar	options.txt	/*cpo-bar*
cpo-c	options.txt	/*cpo-c*
cpo-d	options.txt	/*cpo-d*
cpo-e	options.txt	/*cpo-e*
cpo-f	options.txt	/*cpo-f*
cpo-g	options.txt	/*cpo-g*
cpo-i	options.txt	/*cpo-i*
cpo-j	options.txt	/*cpo-j*
cpo-k	options.txt	/*cpo-k*
cpo-l	options.txt	/*cpo-l*
cpo-m	options.txt	/*cpo-m*
cpo-n	options.txt	/*cpo-n*
cpo-o	options.txt	/*cpo-o*
cpo-p	options.txt	/*cpo-p*
cpo-q	options.txt	/*cpo-q*
cpo-r	options.txt	/*cpo-r*
cpo-s	options.txt	/*cpo-s*
cpo-star	options.txt	/*cpo-star*
cpo-t	options.txt	/*cpo-t*
cpo-u	options.txt	/*cpo-u*
cpo-v	options.txt	/*cpo-v*
cpo-w	options.txt	/*cpo-w*
cpo-x	options.txt	/*cpo-x*
cpo-y	options.txt	/*cpo-y*
cpo-{	options.txt	/*cpo-{*
cpp.vim	syntax.txt	/*cpp.vim*
crash-recovery	recover.txt	/*crash-recovery*
creating-menus	gui.txt	/*creating-menus*
credits	intro.txt	/*credits*
crontab	options.txt	/*crontab*
cs-find	if_cscop.txt	/*cs-find*
cs7-problem	term.txt	/*cs7-problem*
cscope	if_cscop.txt	/*cscope*
cscope-commands	if_cscop.txt	/*cscope-commands*
cscope-find	if_cscop.txt	/*cscope-find*
cscope-howtouse	if_cscop.txt	/*cscope-howtouse*
cscope-info	if_cscop.txt	/*cscope-info*
cscope-intro	if_cscop.txt	/*cscope-intro*
cscope-limitations	if_cscop.txt	/*cscope-limitations*
cscope-options	if_cscop.txt	/*cscope-options*
cscope-suggestions	if_cscop.txt	/*cscope-suggestions*
cscope-win32	if_cscop.txt	/*cscope-win32*
cscope_connection()	eval.txt	/*cscope_connection()*
cscopepathcomp	if_cscop.txt	/*cscopepathcomp*
cscopeprg	if_cscop.txt	/*cscopeprg*
cscopequickfix	if_cscop.txt	/*cscopequickfix*
cscoperelative	if_cscop.txt	/*cscoperelative*
cscopetag	if_cscop.txt	/*cscopetag*
cscopetagorder	if_cscop.txt	/*cscopetagorder*
cscopeverbose	if_cscop.txt	/*cscopeverbose*
csh.vim	syntax.txt	/*csh.vim*
cspc	if_cscop.txt	/*cspc*
csprg	if_cscop.txt	/*csprg*
csqf	if_cscop.txt	/*csqf*
csre	if_cscop.txt	/*csre*
cst	if_cscop.txt	/*cst*
csto	if_cscop.txt	/*csto*
csverb	if_cscop.txt	/*csverb*
ctags	tagsrch.txt	/*ctags*
ctags-gone	version6.txt	/*ctags-gone*
cterm-colors	syntax.txt	/*cterm-colors*
ctrl	intro.txt	/*ctrl*
ctype-variable	eval.txt	/*ctype-variable*
curly-braces-function-names	eval.txt	/*curly-braces-function-names*
curly-braces-names	eval.txt	/*curly-braces-names*
curpos-visual	version6.txt	/*curpos-visual*
current-directory	editing.txt	/*current-directory*
current-file	editing.txt	/*current-file*
current_compiler	quickfix.txt	/*current_compiler*
cursor()	eval.txt	/*cursor()*
cursor-blinking	options.txt	/*cursor-blinking*
cursor-down	intro.txt	/*cursor-down*
cursor-functions	usr_41.txt	/*cursor-functions*
cursor-left	intro.txt	/*cursor-left*
cursor-motions	motion.txt	/*cursor-motions*
cursor-position	pattern.txt	/*cursor-position*
cursor-right	intro.txt	/*cursor-right*
cursor-up	intro.txt	/*cursor-up*
cursor_down	intro.txt	/*cursor_down*
cursor_left	intro.txt	/*cursor_left*
cursor_right	intro.txt	/*cursor_right*
cursor_up	intro.txt	/*cursor_up*
cw	change.txt	/*cw*
cweb.vim	syntax.txt	/*cweb.vim*
cynlib.vim	syntax.txt	/*cynlib.vim*
d	change.txt	/*d*
daB	motion.txt	/*daB*
daW	motion.txt	/*daW*
dab	motion.txt	/*dab*
dap	motion.txt	/*dap*
das	motion.txt	/*das*
date-functions	usr_41.txt	/*date-functions*
dav	pi_netrw.txt	/*dav*
davs	pi_netrw.txt	/*davs*
daw	motion.txt	/*daw*
dd	change.txt	/*dd*
debug-gcc	debug.txt	/*debug-gcc*
debug-highlight	debugger.txt	/*debug-highlight*
debug-leaks	debug.txt	/*debug-leaks*
debug-minidump	debug.txt	/*debug-minidump*
debug-mode	repeat.txt	/*debug-mode*
debug-scripts	repeat.txt	/*debug-scripts*
debug-signs	debugger.txt	/*debug-signs*
debug-vim	debug.txt	/*debug-vim*
debug-vs2005	debug.txt	/*debug-vs2005*
debug-win32	debug.txt	/*debug-win32*
debug-windbg	debug.txt	/*debug-windbg*
debug.txt	debug.txt	/*debug.txt*
debugger-compilation	debugger.txt	/*debugger-compilation*
debugger-features	debugger.txt	/*debugger-features*
debugger-integration	debugger.txt	/*debugger-integration*
debugger-support	debugger.txt	/*debugger-support*
debugger.txt	debugger.txt	/*debugger.txt*
dec-mouse	options.txt	/*dec-mouse*
decada_members	ft_ada.txt	/*decada_members*
deepcopy()	eval.txt	/*deepcopy()*
definition-search	tagsrch.txt	/*definition-search*
definitions	intro.txt	/*definitions*
delete()	eval.txt	/*delete()*
delete-insert	change.txt	/*delete-insert*
delete-menus	gui.txt	/*delete-menus*
deleting	change.txt	/*deleting*
design-assumptions	develop.txt	/*design-assumptions*
design-compatible	develop.txt	/*design-compatible*
design-decisions	develop.txt	/*design-decisions*
design-documented	develop.txt	/*design-documented*
design-flexible	develop.txt	/*design-flexible*
design-goals	develop.txt	/*design-goals*
design-improved	develop.txt	/*design-improved*
design-maintain	develop.txt	/*design-maintain*
design-multi-platform	develop.txt	/*design-multi-platform*
design-not	develop.txt	/*design-not*
design-speed-size	develop.txt	/*design-speed-size*
desktop.vim	syntax.txt	/*desktop.vim*
develop-spell	develop.txt	/*develop-spell*
develop-spell-suggestions	develop.txt	/*develop-spell-suggestions*
develop.txt	develop.txt	/*develop.txt*
development	develop.txt	/*development*
dgn	motion.txt	/*dgn*
dh	change.txt	/*dh*
diB	motion.txt	/*diB*
diW	motion.txt	/*diW*
dialog	gui_w32.txt	/*dialog*
dialogs-added	version5.txt	/*dialogs-added*
dib	motion.txt	/*dib*
dict	eval.txt	/*dict*
dict-functions	usr_41.txt	/*dict-functions*
dict-identity	eval.txt	/*dict-identity*
dict-modification	eval.txt	/*dict-modification*
did_filetype()	eval.txt	/*did_filetype()*
diff	diff.txt	/*diff*
diff-diffexpr	diff.txt	/*diff-diffexpr*
diff-mode	diff.txt	/*diff-mode*
diff-options	diff.txt	/*diff-options*
diff-original-file	diff.txt	/*diff-original-file*
diff-patchexpr	diff.txt	/*diff-patchexpr*
diff.txt	diff.txt	/*diff.txt*
diff_filler()	eval.txt	/*diff_filler()*
diff_hlID()	eval.txt	/*diff_hlID()*
digraph	digraph.txt	/*digraph*
digraph-arg	change.txt	/*digraph-arg*
digraph-encoding	digraph.txt	/*digraph-encoding*
digraph-table	digraph.txt	/*digraph-table*
digraph-table-mbyte	digraph.txt	/*digraph-table-mbyte*
digraph.txt	digraph.txt	/*digraph.txt*
digraphs	digraph.txt	/*digraphs*
digraphs-changed	version6.txt	/*digraphs-changed*
digraphs-default	digraph.txt	/*digraphs-default*
digraphs-define	digraph.txt	/*digraphs-define*
digraphs-use	digraph.txt	/*digraphs-use*
dip	motion.txt	/*dip*
dircolors.vim	syntax.txt	/*dircolors.vim*
dis	motion.txt	/*dis*
disable-menus	gui.txt	/*disable-menus*
discard	editing.txt	/*discard*
distribute-script	usr_41.txt	/*distribute-script*
distribution	intro.txt	/*distribution*
diw	motion.txt	/*diw*
dl	change.txt	/*dl*
do	diff.txt	/*do*
doc-file-list	help.txt	/*doc-file-list*
docbk.vim	syntax.txt	/*docbk.vim*
docbksgml.vim	syntax.txt	/*docbksgml.vim*
docbkxml.vim	syntax.txt	/*docbkxml.vim*
docbook	syntax.txt	/*docbook*
documentation-6	version6.txt	/*documentation-6*
donate	uganda.txt	/*donate*
dos	os_dos.txt	/*dos*
dos-:cd	os_dos.txt	/*dos-:cd*
dos-CTRL-Break	os_dos.txt	/*dos-CTRL-Break*
dos-backslash	os_dos.txt	/*dos-backslash*
dos-colors	os_dos.txt	/*dos-colors*
dos-file-formats	os_dos.txt	/*dos-file-formats*
dos-locations	os_dos.txt	/*dos-locations*
dos-shell	os_dos.txt	/*dos-shell*
dos-standard-mappings	os_dos.txt	/*dos-standard-mappings*
dos-temp-files	os_dos.txt	/*dos-temp-files*
dos16	os_msdos.txt	/*dos16*
dos32	os_msdos.txt	/*dos32*
dosbatch.vim	syntax.txt	/*dosbatch.vim*
double-click	term.txt	/*double-click*
download	intro.txt	/*download*
doxygen-syntax	syntax.txt	/*doxygen-syntax*
doxygen.vim	syntax.txt	/*doxygen.vim*
dp	diff.txt	/*dp*
drag-n-drop	gui.txt	/*drag-n-drop*
drag-n-drop-win32	gui_w32.txt	/*drag-n-drop-win32*
drag-status-line	term.txt	/*drag-status-line*
dtd.vim	syntax.txt	/*dtd.vim*
dtd2vim	insert.txt	/*dtd2vim*
dying-variable	eval.txt	/*dying-variable*
e	motion.txt	/*e*
easy	starting.txt	/*easy*
edit-a-file	editing.txt	/*edit-a-file*
edit-binary	editing.txt	/*edit-binary*
edit-dialogs	editing.txt	/*edit-dialogs*
edit-files	editing.txt	/*edit-files*
edit-intro	editing.txt	/*edit-intro*
edit-no-break	usr_25.txt	/*edit-no-break*
editing.txt	editing.txt	/*editing.txt*
efm-%>	quickfix.txt	/*efm-%>*
efm-entries	quickfix.txt	/*efm-entries*
efm-ignore	quickfix.txt	/*efm-ignore*
eiffel.vim	syntax.txt	/*eiffel.vim*
emacs-keys	tips.txt	/*emacs-keys*
emacs-tags	tagsrch.txt	/*emacs-tags*
emacs_tags	tagsrch.txt	/*emacs_tags*
empty()	eval.txt	/*empty()*
encoding-names	mbyte.txt	/*encoding-names*
encoding-table	mbyte.txt	/*encoding-table*
encoding-values	mbyte.txt	/*encoding-values*
encryption	editing.txt	/*encryption*
end	intro.txt	/*end*
end-of-file	pattern.txt	/*end-of-file*
enlightened-terminal	syntax.txt	/*enlightened-terminal*
erlang.vim	syntax.txt	/*erlang.vim*
errmsg-variable	eval.txt	/*errmsg-variable*
error-file-format	quickfix.txt	/*error-file-format*
error-messages	message.txt	/*error-messages*
errorformat	quickfix.txt	/*errorformat*
errorformat-Jikes	quickfix.txt	/*errorformat-Jikes*
errorformat-LaTeX	quickfix.txt	/*errorformat-LaTeX*
errorformat-Perl	quickfix.txt	/*errorformat-Perl*
errorformat-ant	quickfix.txt	/*errorformat-ant*
errorformat-changed	version4.txt	/*errorformat-changed*
errorformat-jade	quickfix.txt	/*errorformat-jade*
errorformat-javac	quickfix.txt	/*errorformat-javac*
errorformat-multi-line	quickfix.txt	/*errorformat-multi-line*
errorformat-separate-filename	quickfix.txt	/*errorformat-separate-filename*
errorformats	quickfix.txt	/*errorformats*
errors	message.txt	/*errors*
escape	intro.txt	/*escape*
escape()	eval.txt	/*escape()*
escape-bar	version4.txt	/*escape-bar*
euphoria3.vim	syntax.txt	/*euphoria3.vim*
euphoria4.vim	syntax.txt	/*euphoria4.vim*
eval	eval.txt	/*eval*
eval()	eval.txt	/*eval()*
eval-examples	eval.txt	/*eval-examples*
eval-sandbox	eval.txt	/*eval-sandbox*
eval.txt	eval.txt	/*eval.txt*
eventhandler()	eval.txt	/*eventhandler()*
eview	starting.txt	/*eview*
evim	starting.txt	/*evim*
evim-keys	starting.txt	/*evim-keys*
evim.vim	starting.txt	/*evim.vim*
ex	starting.txt	/*ex*
ex-cmd-index	index.txt	/*ex-cmd-index*
ex-edit-index	index.txt	/*ex-edit-index*
ex-flags	cmdline.txt	/*ex-flags*
ex:	options.txt	/*ex:*
except-autocmd	eval.txt	/*except-autocmd*
except-autocmd-Cmd	eval.txt	/*except-autocmd-Cmd*
except-autocmd-Post	eval.txt	/*except-autocmd-Post*
except-autocmd-Pre	eval.txt	/*except-autocmd-Pre*
except-autocmd-ill	eval.txt	/*except-autocmd-ill*
except-compat	eval.txt	/*except-compat*
except-examine	eval.txt	/*except-examine*
except-from-finally	eval.txt	/*except-from-finally*
except-hier-param	eval.txt	/*except-hier-param*
except-several-errors	eval.txt	/*except-several-errors*
except-single-line	eval.txt	/*except-single-line*
except-syntax-err	eval.txt	/*except-syntax-err*
except-syntax-error	eval.txt	/*except-syntax-error*
exception-handling	eval.txt	/*exception-handling*
exception-variable	eval.txt	/*exception-variable*
exclusive	motion.txt	/*exclusive*
exclusive-linewise	motion.txt	/*exclusive-linewise*
executable()	eval.txt	/*executable()*
execute-menus	gui.txt	/*execute-menus*
exepath()	eval.txt	/*exepath()*
exim	starting.txt	/*exim*
exists()	eval.txt	/*exists()*
exp()	eval.txt	/*exp()*
expand()	eval.txt	/*expand()*
expand-env	options.txt	/*expand-env*
expand-environment-var	options.txt	/*expand-environment-var*
expr	eval.txt	/*expr*
expr-!	eval.txt	/*expr-!*
expr-!=	eval.txt	/*expr-!=*
expr-!=#	eval.txt	/*expr-!=#*
expr-!=?	eval.txt	/*expr-!=?*
expr-!~	eval.txt	/*expr-!~*
expr-!~#	eval.txt	/*expr-!~#*
expr-!~?	eval.txt	/*expr-!~?*
expr-%	eval.txt	/*expr-%*
expr-&&	eval.txt	/*expr-&&*
expr-'	eval.txt	/*expr-'*
expr-+	eval.txt	/*expr-+*
expr--	eval.txt	/*expr--*
expr-.	eval.txt	/*expr-.*
expr-/	eval.txt	/*expr-\/*
expr-<	eval.txt	/*expr-<*
expr-<#	eval.txt	/*expr-<#*
expr-<=	eval.txt	/*expr-<=*
expr-<=#	eval.txt	/*expr-<=#*
expr-<=?	eval.txt	/*expr-<=?*
expr-<?	eval.txt	/*expr-<?*
expr-==	eval.txt	/*expr-==*
expr-==#	eval.txt	/*expr-==#*
expr-==?	eval.txt	/*expr-==?*
expr-=~	eval.txt	/*expr-=~*
expr-=~#	eval.txt	/*expr-=~#*
expr-=~?	eval.txt	/*expr-=~?*
expr->	eval.txt	/*expr->*
expr->#	eval.txt	/*expr->#*
expr->=	eval.txt	/*expr->=*
expr->=#	eval.txt	/*expr->=#*
expr->=?	eval.txt	/*expr->=?*
expr->?	eval.txt	/*expr->?*
expr-[:]	eval.txt	/*expr-[:]*
expr-[]	eval.txt	/*expr-[]*
expr-barbar	eval.txt	/*expr-barbar*
expr-entry	eval.txt	/*expr-entry*
expr-env	eval.txt	/*expr-env*
expr-env-expand	eval.txt	/*expr-env-expand*
expr-function	eval.txt	/*expr-function*
expr-is	eval.txt	/*expr-is*
expr-is#	eval.txt	/*expr-is#*
expr-is?	eval.txt	/*expr-is?*
expr-isnot	eval.txt	/*expr-isnot*
expr-isnot#	eval.txt	/*expr-isnot#*
expr-isnot?	eval.txt	/*expr-isnot?*
expr-nesting	eval.txt	/*expr-nesting*
expr-number	eval.txt	/*expr-number*
expr-option	eval.txt	/*expr-option*
expr-quote	eval.txt	/*expr-quote*
expr-register	eval.txt	/*expr-register*
expr-star	eval.txt	/*expr-star*
expr-string	eval.txt	/*expr-string*
expr-unary-+	eval.txt	/*expr-unary-+*
expr-unary--	eval.txt	/*expr-unary--*
expr-variable	eval.txt	/*expr-variable*
expr1	eval.txt	/*expr1*
expr2	eval.txt	/*expr2*
expr3	eval.txt	/*expr3*
expr4	eval.txt	/*expr4*
expr5	eval.txt	/*expr5*
expr6	eval.txt	/*expr6*
expr7	eval.txt	/*expr7*
expr8	eval.txt	/*expr8*
expr9	eval.txt	/*expr9*
expression	eval.txt	/*expression*
expression-commands	eval.txt	/*expression-commands*
expression-syntax	eval.txt	/*expression-syntax*
exrc	starting.txt	/*exrc*
extend()	eval.txt	/*extend()*
extension-removal	cmdline.txt	/*extension-removal*
extensions-improvements	todo.txt	/*extensions-improvements*
f	motion.txt	/*f*
faq	intro.txt	/*faq*
farsi	farsi.txt	/*farsi*
farsi.txt	farsi.txt	/*farsi.txt*
fasm.vim	syntax.txt	/*fasm.vim*
fcs_choice-variable	eval.txt	/*fcs_choice-variable*
fcs_reason-variable	eval.txt	/*fcs_reason-variable*
feature-list	eval.txt	/*feature-list*
feedkeys()	eval.txt	/*feedkeys()*
fetch	pi_netrw.txt	/*fetch*
file-browser-5.2	version5.txt	/*file-browser-5.2*
file-formats	editing.txt	/*file-formats*
file-functions	usr_41.txt	/*file-functions*
file-pattern	autocmd.txt	/*file-pattern*
file-read	insert.txt	/*file-read*
file-searching	editing.txt	/*file-searching*
file-type	filetype.txt	/*file-type*
file-types	filetype.txt	/*file-types*
file_readable()	eval.txt	/*file_readable()*
fileencoding-changed	version6.txt	/*fileencoding-changed*
filename-backslash	cmdline.txt	/*filename-backslash*
filename-modifiers	cmdline.txt	/*filename-modifiers*
filereadable()	eval.txt	/*filereadable()*
filetype	filetype.txt	/*filetype*
filetype-detect	filetype.txt	/*filetype-detect*
filetype-ignore	filetype.txt	/*filetype-ignore*
filetype-overrule	filetype.txt	/*filetype-overrule*
filetype-plugin	usr_43.txt	/*filetype-plugin*
filetype-plugins	filetype.txt	/*filetype-plugins*
filetype.txt	filetype.txt	/*filetype.txt*
filetypedetect-changed	version6.txt	/*filetypedetect-changed*
filetypes	filetype.txt	/*filetypes*
filewritable()	eval.txt	/*filewritable()*
filter	change.txt	/*filter*
filter()	eval.txt	/*filter()*
find-manpage	usr_12.txt	/*find-manpage*
find-replace	usr_10.txt	/*find-replace*
finddir()	eval.txt	/*finddir()*
findfile()	eval.txt	/*findfile()*
fixed-5.1	version5.txt	/*fixed-5.1*
fixed-5.2	version5.txt	/*fixed-5.2*
fixed-5.3	version5.txt	/*fixed-5.3*
fixed-5.4	version5.txt	/*fixed-5.4*
fixed-5.5	version5.txt	/*fixed-5.5*
fixed-5.6	version5.txt	/*fixed-5.6*
fixed-5.7	version5.txt	/*fixed-5.7*
fixed-5.8	version5.txt	/*fixed-5.8*
fixed-6.1	version6.txt	/*fixed-6.1*
fixed-6.2	version6.txt	/*fixed-6.2*
fixed-6.3	version6.txt	/*fixed-6.3*
fixed-6.4	version6.txt	/*fixed-6.4*
fixed-7.1	version7.txt	/*fixed-7.1*
fixed-7.2	version7.txt	/*fixed-7.2*
fixed-7.3	version7.txt	/*fixed-7.3*
fixed-7.4	version7.txt	/*fixed-7.4*
flexwiki.vim	syntax.txt	/*flexwiki.vim*
float-e	eval.txt	/*float-e*
float-functions	usr_41.txt	/*float-functions*
float-pi	eval.txt	/*float-pi*
float2nr()	eval.txt	/*float2nr()*
floating-point-format	eval.txt	/*floating-point-format*
floating-point-precision	eval.txt	/*floating-point-precision*
floor()	eval.txt	/*floor()*
fmod()	eval.txt	/*fmod()*
fname_diff-variable	eval.txt	/*fname_diff-variable*
fname_in-variable	eval.txt	/*fname_in-variable*
fname_new-variable	eval.txt	/*fname_new-variable*
fname_out-variable	eval.txt	/*fname_out-variable*
fnameescape()	eval.txt	/*fnameescape()*
fnamemodify()	eval.txt	/*fnamemodify()*
fo-table	change.txt	/*fo-table*
fold-behavior	fold.txt	/*fold-behavior*
fold-colors	fold.txt	/*fold-colors*
fold-commands	fold.txt	/*fold-commands*
fold-create-marker	fold.txt	/*fold-create-marker*
fold-delete-marker	fold.txt	/*fold-delete-marker*
fold-diff	fold.txt	/*fold-diff*
fold-expr	fold.txt	/*fold-expr*
fold-foldcolumn	fold.txt	/*fold-foldcolumn*
fold-foldlevel	fold.txt	/*fold-foldlevel*
fold-foldtext	fold.txt	/*fold-foldtext*
fold-indent	fold.txt	/*fold-indent*
fold-manual	fold.txt	/*fold-manual*
fold-marker	fold.txt	/*fold-marker*
fold-methods	fold.txt	/*fold-methods*
fold-options	fold.txt	/*fold-options*
fold-syntax	fold.txt	/*fold-syntax*
fold.txt	fold.txt	/*fold.txt*
foldclosed()	eval.txt	/*foldclosed()*
foldclosedend()	eval.txt	/*foldclosedend()*
folddashes-variable	eval.txt	/*folddashes-variable*
foldend-variable	eval.txt	/*foldend-variable*
folding	fold.txt	/*folding*
folding-functions	usr_41.txt	/*folding-functions*
foldlevel()	eval.txt	/*foldlevel()*
foldlevel-variable	eval.txt	/*foldlevel-variable*
folds	fold.txt	/*folds*
foldstart-variable	eval.txt	/*foldstart-variable*
foldtext()	eval.txt	/*foldtext()*
foldtextresult()	eval.txt	/*foldtextresult()*
font-sizes	gui_x11.txt	/*font-sizes*
fontset	mbyte.txt	/*fontset*
foreground()	eval.txt	/*foreground()*
fork	os_unix.txt	/*fork*
form.vim	syntax.txt	/*form.vim*
format-bullet-list	tips.txt	/*format-bullet-list*
format-comments	change.txt	/*format-comments*
formatting	change.txt	/*formatting*
formfeed	intro.txt	/*formfeed*
fortran.vim	syntax.txt	/*fortran.vim*
friendship	intro.txt	/*friendship*
frombook	usr_01.txt	/*frombook*
ft-abel-syntax	syntax.txt	/*ft-abel-syntax*
ft-ada-commands	ft_ada.txt	/*ft-ada-commands*
ft-ada-constants	ft_ada.txt	/*ft-ada-constants*
ft-ada-functions	ft_ada.txt	/*ft-ada-functions*
ft-ada-indent	ft_ada.txt	/*ft-ada-indent*
ft-ada-omni	ft_ada.txt	/*ft-ada-omni*
ft-ada-options	ft_ada.txt	/*ft-ada-options*
ft-ada-plugin	ft_ada.txt	/*ft-ada-plugin*
ft-ada-syntax	ft_ada.txt	/*ft-ada-syntax*
ft-ada-variables	ft_ada.txt	/*ft-ada-variables*
ft-ant-syntax	syntax.txt	/*ft-ant-syntax*
ft-apache-syntax	syntax.txt	/*ft-apache-syntax*
ft-asm-syntax	syntax.txt	/*ft-asm-syntax*
ft-asm68k-syntax	syntax.txt	/*ft-asm68k-syntax*
ft-asmh8300-syntax	syntax.txt	/*ft-asmh8300-syntax*
ft-aspperl-syntax	syntax.txt	/*ft-aspperl-syntax*
ft-aspvbs-syntax	syntax.txt	/*ft-aspvbs-syntax*
ft-bash-syntax	syntax.txt	/*ft-bash-syntax*
ft-basic-syntax	syntax.txt	/*ft-basic-syntax*
ft-c-omni	insert.txt	/*ft-c-omni*
ft-c-syntax	syntax.txt	/*ft-c-syntax*
ft-ch-syntax	syntax.txt	/*ft-ch-syntax*
ft-changelog-plugin	filetype.txt	/*ft-changelog-plugin*
ft-changelog-syntax	syntax.txt	/*ft-changelog-syntax*
ft-chill-syntax	syntax.txt	/*ft-chill-syntax*
ft-clojure-indent	indent.txt	/*ft-clojure-indent*
ft-clojure-syntax	syntax.txt	/*ft-clojure-syntax*
ft-cobol-syntax	syntax.txt	/*ft-cobol-syntax*
ft-coldfusion-syntax	syntax.txt	/*ft-coldfusion-syntax*
ft-cpp-syntax	syntax.txt	/*ft-cpp-syntax*
ft-csh-syntax	syntax.txt	/*ft-csh-syntax*
ft-css-omni	insert.txt	/*ft-css-omni*
ft-cweb-syntax	syntax.txt	/*ft-cweb-syntax*
ft-cynlib-syntax	syntax.txt	/*ft-cynlib-syntax*
ft-desktop-syntax	syntax.txt	/*ft-desktop-syntax*
ft-dircolors-syntax	syntax.txt	/*ft-dircolors-syntax*
ft-docbk-syntax	syntax.txt	/*ft-docbk-syntax*
ft-docbksgml-syntax	syntax.txt	/*ft-docbksgml-syntax*
ft-docbkxml-syntax	syntax.txt	/*ft-docbkxml-syntax*
ft-dosbatch-syntax	syntax.txt	/*ft-dosbatch-syntax*
ft-dtd-syntax	syntax.txt	/*ft-dtd-syntax*
ft-eiffel-syntax	syntax.txt	/*ft-eiffel-syntax*
ft-erlang-syntax	syntax.txt	/*ft-erlang-syntax*
ft-euphoria-syntax	syntax.txt	/*ft-euphoria-syntax*
ft-flexwiki-syntax	syntax.txt	/*ft-flexwiki-syntax*
ft-form-syntax	syntax.txt	/*ft-form-syntax*
ft-fortran-indent	indent.txt	/*ft-fortran-indent*
ft-fortran-plugin	filetype.txt	/*ft-fortran-plugin*
ft-fortran-syntax	syntax.txt	/*ft-fortran-syntax*
ft-fvwm-syntax	syntax.txt	/*ft-fvwm-syntax*
ft-gitcommit-plugin	filetype.txt	/*ft-gitcommit-plugin*
ft-groff-syntax	syntax.txt	/*ft-groff-syntax*
ft-gsp-syntax	syntax.txt	/*ft-gsp-syntax*
ft-haskell-syntax	syntax.txt	/*ft-haskell-syntax*
ft-html-indent	indent.txt	/*ft-html-indent*
ft-html-omni	insert.txt	/*ft-html-omni*
ft-html-syntax	syntax.txt	/*ft-html-syntax*
ft-htmlos-syntax	syntax.txt	/*ft-htmlos-syntax*
ft-ia64-syntax	syntax.txt	/*ft-ia64-syntax*
ft-inform-syntax	syntax.txt	/*ft-inform-syntax*
ft-java-syntax	syntax.txt	/*ft-java-syntax*
ft-javascript-omni	insert.txt	/*ft-javascript-omni*
ft-ksh-syntax	syntax.txt	/*ft-ksh-syntax*
ft-lace-syntax	syntax.txt	/*ft-lace-syntax*
ft-lex-syntax	syntax.txt	/*ft-lex-syntax*
ft-lifelines-syntax	syntax.txt	/*ft-lifelines-syntax*
ft-lisp-syntax	syntax.txt	/*ft-lisp-syntax*
ft-lite-syntax	syntax.txt	/*ft-lite-syntax*
ft-lpc-syntax	syntax.txt	/*ft-lpc-syntax*
ft-lua-syntax	syntax.txt	/*ft-lua-syntax*
ft-mail-plugin	filetype.txt	/*ft-mail-plugin*
ft-mail.vim	syntax.txt	/*ft-mail.vim*
ft-make-syntax	syntax.txt	/*ft-make-syntax*
ft-man-plugin	filetype.txt	/*ft-man-plugin*
ft-maple-syntax	syntax.txt	/*ft-maple-syntax*
ft-masm-syntax	syntax.txt	/*ft-masm-syntax*
ft-mathematica-syntax	syntax.txt	/*ft-mathematica-syntax*
ft-mma-syntax	syntax.txt	/*ft-mma-syntax*
ft-moo-syntax	syntax.txt	/*ft-moo-syntax*
ft-msql-syntax	syntax.txt	/*ft-msql-syntax*
ft-nasm-syntax	syntax.txt	/*ft-nasm-syntax*
ft-ncf-syntax	syntax.txt	/*ft-ncf-syntax*
ft-nroff-syntax	syntax.txt	/*ft-nroff-syntax*
ft-ocaml-syntax	syntax.txt	/*ft-ocaml-syntax*
ft-papp-syntax	syntax.txt	/*ft-papp-syntax*
ft-pascal-syntax	syntax.txt	/*ft-pascal-syntax*
ft-pdf-plugin	filetype.txt	/*ft-pdf-plugin*
ft-perl-syntax	syntax.txt	/*ft-perl-syntax*
ft-php-indent	indent.txt	/*ft-php-indent*
ft-php-omni	insert.txt	/*ft-php-omni*
ft-php-syntax	syntax.txt	/*ft-php-syntax*
ft-php3-syntax	syntax.txt	/*ft-php3-syntax*
ft-phtml-syntax	syntax.txt	/*ft-phtml-syntax*
ft-plaintex-syntax	syntax.txt	/*ft-plaintex-syntax*
ft-postscr-syntax	syntax.txt	/*ft-postscr-syntax*
ft-ppwiz-syntax	syntax.txt	/*ft-ppwiz-syntax*
ft-printcap-syntax	syntax.txt	/*ft-printcap-syntax*
ft-progress-syntax	syntax.txt	/*ft-progress-syntax*
ft-ptcap-syntax	syntax.txt	/*ft-ptcap-syntax*
ft-python-indent	indent.txt	/*ft-python-indent*
ft-python-syntax	syntax.txt	/*ft-python-syntax*
ft-quake-syntax	syntax.txt	/*ft-quake-syntax*
ft-r-indent	indent.txt	/*ft-r-indent*
ft-readline-syntax	syntax.txt	/*ft-readline-syntax*
ft-rexx-syntax	syntax.txt	/*ft-rexx-syntax*
ft-rst-syntax	syntax.txt	/*ft-rst-syntax*
ft-ruby-omni	insert.txt	/*ft-ruby-omni*
ft-ruby-syntax	syntax.txt	/*ft-ruby-syntax*
ft-scheme-syntax	syntax.txt	/*ft-scheme-syntax*
ft-sdl-syntax	syntax.txt	/*ft-sdl-syntax*
ft-sed-syntax	syntax.txt	/*ft-sed-syntax*
ft-sgml-syntax	syntax.txt	/*ft-sgml-syntax*
ft-sh-indent	indent.txt	/*ft-sh-indent*
ft-sh-syntax	syntax.txt	/*ft-sh-syntax*
ft-spec-plugin	filetype.txt	/*ft-spec-plugin*
ft-spup-syntax	syntax.txt	/*ft-spup-syntax*
ft-sql	filetype.txt	/*ft-sql*
ft-sql-omni	insert.txt	/*ft-sql-omni*
ft-sql-syntax	syntax.txt	/*ft-sql-syntax*
ft-sqlanywhere-syntax	syntax.txt	/*ft-sqlanywhere-syntax*
ft-sqlinformix-syntax	syntax.txt	/*ft-sqlinformix-syntax*
ft-syntax-omni	insert.txt	/*ft-syntax-omni*
ft-tcsh-syntax	syntax.txt	/*ft-tcsh-syntax*
ft-termcap-syntax	syntax.txt	/*ft-termcap-syntax*
ft-tex-plugin	filetype.txt	/*ft-tex-plugin*
ft-tex-syntax	syntax.txt	/*ft-tex-syntax*
ft-tf-syntax	syntax.txt	/*ft-tf-syntax*
ft-vb-syntax	syntax.txt	/*ft-vb-syntax*
ft-verilog-indent	indent.txt	/*ft-verilog-indent*
ft-vhdl-indent	indent.txt	/*ft-vhdl-indent*
ft-vim-indent	indent.txt	/*ft-vim-indent*
ft-vim-syntax	syntax.txt	/*ft-vim-syntax*
ft-xf86conf-syntax	syntax.txt	/*ft-xf86conf-syntax*
ft-xhtml-omni	insert.txt	/*ft-xhtml-omni*
ft-xml-omni	insert.txt	/*ft-xml-omni*
ft-xml-syntax	syntax.txt	/*ft-xml-syntax*
ft-xpm-syntax	syntax.txt	/*ft-xpm-syntax*
ft_ada.txt	ft_ada.txt	/*ft_ada.txt*
ft_sql.txt	ft_sql.txt	/*ft_sql.txt*
ftdetect	filetype.txt	/*ftdetect*
ftp	pi_netrw.txt	/*ftp*
ftplugin	usr_41.txt	/*ftplugin*
ftplugin-docs	filetype.txt	/*ftplugin-docs*
ftplugin-name	usr_05.txt	/*ftplugin-name*
ftplugin-overrule	filetype.txt	/*ftplugin-overrule*
ftplugin-special	usr_41.txt	/*ftplugin-special*
ftplugins	usr_05.txt	/*ftplugins*
function()	eval.txt	/*function()*
function-argument	eval.txt	/*function-argument*
function-key	intro.txt	/*function-key*
function-list	usr_41.txt	/*function-list*
function-range-example	eval.txt	/*function-range-example*
function-search-undo	eval.txt	/*function-search-undo*
function_key	intro.txt	/*function_key*
functions	eval.txt	/*functions*
fvwm.vim	syntax.txt	/*fvwm.vim*
fvwm2rc	syntax.txt	/*fvwm2rc*
fvwmrc	syntax.txt	/*fvwmrc*
g	index.txt	/*g*
g#	pattern.txt	/*g#*
g$	motion.txt	/*g$*
g&	change.txt	/*g&*
g'	motion.txt	/*g'*
g'a	motion.txt	/*g'a*
g+	undo.txt	/*g+*
g,	motion.txt	/*g,*
g-	undo.txt	/*g-*
g0	motion.txt	/*g0*
g8	various.txt	/*g8*
g:	eval.txt	/*g:*
g:NetrwTopLvlMenu	pi_netrw.txt	/*g:NetrwTopLvlMenu*
g:Netrw_corehandler	pi_netrw.txt	/*g:Netrw_corehandler*
g:Netrw_funcref	pi_netrw.txt	/*g:Netrw_funcref*
g:ada#Comment	ft_ada.txt	/*g:ada#Comment*
g:ada#Ctags_Kinds	ft_ada.txt	/*g:ada#Ctags_Kinds*
g:ada#DotWordRegex	ft_ada.txt	/*g:ada#DotWordRegex*
g:ada#Keywords	ft_ada.txt	/*g:ada#Keywords*
g:ada#WordRegex	ft_ada.txt	/*g:ada#WordRegex*
g:ada_abbrev	ft_ada.txt	/*g:ada_abbrev*
g:ada_all_tab_usage	ft_ada.txt	/*g:ada_all_tab_usage*
g:ada_begin_preproc	ft_ada.txt	/*g:ada_begin_preproc*
g:ada_default_compiler	ft_ada.txt	/*g:ada_default_compiler*
g:ada_extended_completion	ft_ada.txt	/*g:ada_extended_completion*
g:ada_extended_tagging	ft_ada.txt	/*g:ada_extended_tagging*
g:ada_folding	ft_ada.txt	/*g:ada_folding*
g:ada_gnat_extensions	ft_ada.txt	/*g:ada_gnat_extensions*
g:ada_line_errors	ft_ada.txt	/*g:ada_line_errors*
g:ada_no_tab_space_error	ft_ada.txt	/*g:ada_no_tab_space_error*
g:ada_no_trail_space_error	ft_ada.txt	/*g:ada_no_trail_space_error*
g:ada_omni_with_keywords	ft_ada.txt	/*g:ada_omni_with_keywords*
g:ada_rainbow_color	ft_ada.txt	/*g:ada_rainbow_color*
g:ada_space_errors	ft_ada.txt	/*g:ada_space_errors*
g:ada_standard_types	ft_ada.txt	/*g:ada_standard_types*
g:ada_with_gnat_project_files	ft_ada.txt	/*g:ada_with_gnat_project_files*
g:ada_withuse_ordinary	ft_ada.txt	/*g:ada_withuse_ordinary*
g:clojure_align_multiline_strings	indent.txt	/*g:clojure_align_multiline_strings*
g:clojure_align_subforms	indent.txt	/*g:clojure_align_subforms*
g:clojure_fold	syntax.txt	/*g:clojure_fold*
g:clojure_fuzzy_indent	indent.txt	/*g:clojure_fuzzy_indent*
g:clojure_fuzzy_indent_blacklist	indent.txt	/*g:clojure_fuzzy_indent_blacklist*
g:clojure_fuzzy_indent_patterns	indent.txt	/*g:clojure_fuzzy_indent_patterns*
g:clojure_maxlines	indent.txt	/*g:clojure_maxlines*
g:clojure_special_indent_words	indent.txt	/*g:clojure_special_indent_words*
g:colors_name	options.txt	/*g:colors_name*
g:decada	ft_ada.txt	/*g:decada*
g:decada.Error_Format	ft_ada.txt	/*g:decada.Error_Format*
g:decada.Make()	ft_ada.txt	/*g:decada.Make()*
g:decada.Make_Command	ft_ada.txt	/*g:decada.Make_Command*
g:decada.Unit_Name()	ft_ada.txt	/*g:decada.Unit_Name()*
g:filetype_csh	syntax.txt	/*g:filetype_csh*
g:filetype_r	syntax.txt	/*g:filetype_r*
g:gnat	ft_ada.txt	/*g:gnat*
g:gnat.Error_Format	ft_ada.txt	/*g:gnat.Error_Format*
g:gnat.Find()	ft_ada.txt	/*g:gnat.Find()*
g:gnat.Find_Program	ft_ada.txt	/*g:gnat.Find_Program*
g:gnat.Make()	ft_ada.txt	/*g:gnat.Make()*
g:gnat.Make_Command	ft_ada.txt	/*g:gnat.Make_Command*
g:gnat.Pretty()	ft_ada.txt	/*g:gnat.Pretty()*
g:gnat.Pretty_Program	ft_ada.txt	/*g:gnat.Pretty_Program*
g:gnat.Project_File	ft_ada.txt	/*g:gnat.Project_File*
g:gnat.Set_Project_File()	ft_ada.txt	/*g:gnat.Set_Project_File()*
g:gnat.Tags()	ft_ada.txt	/*g:gnat.Tags()*
g:gnat.Tags_Command	ft_ada.txt	/*g:gnat.Tags_Command*
g:html_charset_override	syntax.txt	/*g:html_charset_override*
g:html_diff_one_file	syntax.txt	/*g:html_diff_one_file*
g:html_dynamic_folds	syntax.txt	/*g:html_dynamic_folds*
g:html_encoding_override	syntax.txt	/*g:html_encoding_override*
g:html_end_line	syntax.txt	/*g:html_end_line*
g:html_expand_tabs	syntax.txt	/*g:html_expand_tabs*
g:html_hover_unfold	syntax.txt	/*g:html_hover_unfold*
g:html_id_expr	syntax.txt	/*g:html_id_expr*
g:html_ignore_conceal	syntax.txt	/*g:html_ignore_conceal*
g:html_ignore_folding	syntax.txt	/*g:html_ignore_folding*
g:html_line_ids	syntax.txt	/*g:html_line_ids*
g:html_no_foldcolumn	syntax.txt	/*g:html_no_foldcolumn*
g:html_no_invalid	syntax.txt	/*g:html_no_invalid*
g:html_no_pre	syntax.txt	/*g:html_no_pre*
g:html_no_progress	syntax.txt	/*g:html_no_progress*
g:html_number_lines	syntax.txt	/*g:html_number_lines*
g:html_pre_wrap	syntax.txt	/*g:html_pre_wrap*
g:html_prevent_copy	syntax.txt	/*g:html_prevent_copy*
g:html_start_line	syntax.txt	/*g:html_start_line*
g:html_use_css	syntax.txt	/*g:html_use_css*
g:html_use_encoding	syntax.txt	/*g:html_use_encoding*
g:html_use_xhtml	syntax.txt	/*g:html_use_xhtml*
g:html_whole_filler	syntax.txt	/*g:html_whole_filler*
g:netrw_altfile	pi_netrw.txt	/*g:netrw_altfile*
g:netrw_alto	pi_netrw.txt	/*g:netrw_alto*
g:netrw_altv	pi_netrw.txt	/*g:netrw_altv*
g:netrw_banner	pi_netrw.txt	/*g:netrw_banner*
g:netrw_bannerbackslash	pi_netrw.txt	/*g:netrw_bannerbackslash*
g:netrw_browse_split	pi_netrw.txt	/*g:netrw_browse_split*
g:netrw_browsex_viewer	pi_netrw.txt	/*g:netrw_browsex_viewer*
g:netrw_bufsettings	pi_netrw.txt	/*g:netrw_bufsettings*
g:netrw_chgperm	pi_netrw.txt	/*g:netrw_chgperm*
g:netrw_chgwin	pi_netrw.txt	/*g:netrw_chgwin*
g:netrw_compress	pi_netrw.txt	/*g:netrw_compress*
g:netrw_ctags	pi_netrw.txt	/*g:netrw_ctags*
g:netrw_cursor	pi_netrw.txt	/*g:netrw_cursor*
g:netrw_cygwin	pi_netrw.txt	/*g:netrw_cygwin*
g:netrw_dav_cmd	pi_netrw.txt	/*g:netrw_dav_cmd*
g:netrw_decompress	pi_netrw.txt	/*g:netrw_decompress*
g:netrw_dirhistmax	pi_netrw.txt	/*g:netrw_dirhistmax*
g:netrw_dynamic_maxfilenamelen	pi_netrw.txt	/*g:netrw_dynamic_maxfilenamelen*
g:netrw_errorlvl	pi_netrw.txt	/*g:netrw_errorlvl*
g:netrw_fastbrowse	pi_netrw.txt	/*g:netrw_fastbrowse*
g:netrw_fetch_cmd	pi_netrw.txt	/*g:netrw_fetch_cmd*
g:netrw_ffkeep	pi_netrw.txt	/*g:netrw_ffkeep*
g:netrw_fname_escape	pi_netrw.txt	/*g:netrw_fname_escape*
g:netrw_ftp	pi_netrw.txt	/*g:netrw_ftp*
g:netrw_ftp_browse_reject	pi_netrw.txt	/*g:netrw_ftp_browse_reject*
g:netrw_ftp_cmd	pi_netrw.txt	/*g:netrw_ftp_cmd*
g:netrw_ftp_list_cmd	pi_netrw.txt	/*g:netrw_ftp_list_cmd*
g:netrw_ftp_options	pi_netrw.txt	/*g:netrw_ftp_options*
g:netrw_ftp_sizelist_cmd	pi_netrw.txt	/*g:netrw_ftp_sizelist_cmd*
g:netrw_ftp_timelist_cmd	pi_netrw.txt	/*g:netrw_ftp_timelist_cmd*
g:netrw_ftpextracmd	pi_netrw.txt	/*g:netrw_ftpextracmd*
g:netrw_ftpmode	pi_netrw.txt	/*g:netrw_ftpmode*
g:netrw_glob_escape	pi_netrw.txt	/*g:netrw_glob_escape*
g:netrw_hide	pi_netrw.txt	/*g:netrw_hide*
g:netrw_home	pi_netrw.txt	/*g:netrw_home*
g:netrw_http_cmd	pi_netrw.txt	/*g:netrw_http_cmd*
g:netrw_http_put_cmd	pi_netrw.txt	/*g:netrw_http_put_cmd*
g:netrw_http_xcmd	pi_netrw.txt	/*g:netrw_http_xcmd*
g:netrw_ignorenetrc	pi_netrw.txt	/*g:netrw_ignorenetrc*
g:netrw_keepdir	pi_netrw.txt	/*g:netrw_keepdir*
g:netrw_list_cmd	pi_netrw.txt	/*g:netrw_list_cmd*
g:netrw_list_hide	pi_netrw.txt	/*g:netrw_list_hide*
g:netrw_liststyle	pi_netrw.txt	/*g:netrw_liststyle*
g:netrw_localcopycmd	pi_netrw.txt	/*g:netrw_localcopycmd*
g:netrw_localmkdir	pi_netrw.txt	/*g:netrw_localmkdir*
g:netrw_localmovecmd	pi_netrw.txt	/*g:netrw_localmovecmd*
g:netrw_localrmdir	pi_netrw.txt	/*g:netrw_localrmdir*
g:netrw_maxfilenamelen	pi_netrw.txt	/*g:netrw_maxfilenamelen*
g:netrw_menu	pi_netrw.txt	/*g:netrw_menu*
g:netrw_mkdir_cmd	pi_netrw.txt	/*g:netrw_mkdir_cmd*
g:netrw_mousemaps	pi_netrw.txt	/*g:netrw_mousemaps*
g:netrw_nobeval	pi_netrw.txt	/*g:netrw_nobeval*
g:netrw_nogx	pi_netrw.txt	/*g:netrw_nogx*
g:netrw_preview	pi_netrw.txt	/*g:netrw_preview*
g:netrw_rcp_cmd	pi_netrw.txt	/*g:netrw_rcp_cmd*
g:netrw_remote_mkdir	pi_netrw.txt	/*g:netrw_remote_mkdir*
g:netrw_retmap	pi_netrw.txt	/*g:netrw_retmap*
g:netrw_rm_cmd	pi_netrw.txt	/*g:netrw_rm_cmd*
g:netrw_rmdir_cmd	pi_netrw.txt	/*g:netrw_rmdir_cmd*
g:netrw_rmf_cmd	pi_netrw.txt	/*g:netrw_rmf_cmd*
g:netrw_rsync_cmd	pi_netrw.txt	/*g:netrw_rsync_cmd*
g:netrw_scp_cmd	pi_netrw.txt	/*g:netrw_scp_cmd*
g:netrw_scpport	pi_netrw.txt	/*g:netrw_scpport*
g:netrw_sepchr	pi_netrw.txt	/*g:netrw_sepchr*
g:netrw_sftp_cmd	pi_netrw.txt	/*g:netrw_sftp_cmd*
g:netrw_silent	pi_netrw.txt	/*g:netrw_silent*
g:netrw_sort_by	pi_netrw.txt	/*g:netrw_sort_by*
g:netrw_sort_direction	pi_netrw.txt	/*g:netrw_sort_direction*
g:netrw_sort_options	pi_netrw.txt	/*g:netrw_sort_options*
g:netrw_sort_sequence	pi_netrw.txt	/*g:netrw_sort_sequence*
g:netrw_special_syntax	pi_netrw.txt	/*g:netrw_special_syntax*
g:netrw_ssh_browse_reject	pi_netrw.txt	/*g:netrw_ssh_browse_reject*
g:netrw_ssh_cmd	pi_netrw.txt	/*g:netrw_ssh_cmd*
g:netrw_sshport	pi_netrw.txt	/*g:netrw_sshport*
g:netrw_timefmt	pi_netrw.txt	/*g:netrw_timefmt*
g:netrw_tmpfile_escape	pi_netrw.txt	/*g:netrw_tmpfile_escape*
g:netrw_uid	pi_netrw.txt	/*g:netrw_uid*
g:netrw_use_errorwindow	pi_netrw.txt	/*g:netrw_use_errorwindow*
g:netrw_use_noswf	pi_netrw.txt	/*g:netrw_use_noswf*
g:netrw_use_nt_rcp	pi_netrw.txt	/*g:netrw_use_nt_rcp*
g:netrw_win95ftp	pi_netrw.txt	/*g:netrw_win95ftp*
g:netrw_winsize	pi_netrw.txt	/*g:netrw_winsize*
g:netrw_xstrlen	pi_netrw.txt	/*g:netrw_xstrlen*
g:sh_isk	syntax.txt	/*g:sh_isk*
g:sh_noisk	syntax.txt	/*g:sh_noisk*
g:syntax_on	syntax.txt	/*g:syntax_on*
g:tar_browseoptions	pi_tar.txt	/*g:tar_browseoptions*
g:tar_cmd	pi_tar.txt	/*g:tar_cmd*
g:tar_copycmd	pi_tar.txt	/*g:tar_copycmd*
g:tar_extractcmd	pi_tar.txt	/*g:tar_extractcmd*
g:tar_nomax	pi_tar.txt	/*g:tar_nomax*
g:tar_readoptions	pi_tar.txt	/*g:tar_readoptions*
g:tar_secure	pi_tar.txt	/*g:tar_secure*
g:tar_writeoptions	pi_tar.txt	/*g:tar_writeoptions*
g:tex_comment_nospell	syntax.txt	/*g:tex_comment_nospell*
g:tex_conceal	syntax.txt	/*g:tex_conceal*
g:tex_fast	syntax.txt	/*g:tex_fast*
g:tex_flavor	filetype.txt	/*g:tex_flavor*
g:tex_fold_enabled	syntax.txt	/*g:tex_fold_enabled*
g:tex_isk	syntax.txt	/*g:tex_isk*
g:tex_no_error	syntax.txt	/*g:tex_no_error*
g:tex_nospell	syntax.txt	/*g:tex_nospell*
g:tex_stylish	syntax.txt	/*g:tex_stylish*
g:tex_verbspell	syntax.txt	/*g:tex_verbspell*
g:var	eval.txt	/*g:var*
g:vimball_home	pi_vimball.txt	/*g:vimball_home*
g:vimball_mkdir	pi_vimball.txt	/*g:vimball_mkdir*
g:vimsyn_embed	syntax.txt	/*g:vimsyn_embed*
g:vimsyn_folding	syntax.txt	/*g:vimsyn_folding*
g:vimsyn_maxlines	syntax.txt	/*g:vimsyn_maxlines*
g:vimsyn_minlines	syntax.txt	/*g:vimsyn_minlines*
g:vimsyn_noerror	syntax.txt	/*g:vimsyn_noerror*
g:zip_nomax	pi_zip.txt	/*g:zip_nomax*
g:zip_shq	pi_zip.txt	/*g:zip_shq*
g:zip_unzipcmd	pi_zip.txt	/*g:zip_unzipcmd*
g:zip_zipcmd	pi_zip.txt	/*g:zip_zipcmd*
g;	motion.txt	/*g;*
g<	message.txt	/*g<*
g<Down>	motion.txt	/*g<Down>*
g<End>	motion.txt	/*g<End>*
g<Home>	motion.txt	/*g<Home>*
g<LeftMouse>	tagsrch.txt	/*g<LeftMouse>*
g<RightMouse>	tagsrch.txt	/*g<RightMouse>*
g<Up>	motion.txt	/*g<Up>*
g?	change.txt	/*g?*
g??	change.txt	/*g??*
g?g?	change.txt	/*g?g?*
g@	map.txt	/*g@*
gD	pattern.txt	/*gD*
gE	motion.txt	/*gE*
gF	editing.txt	/*gF*
gH	visual.txt	/*gH*
gI	insert.txt	/*gI*
gJ	change.txt	/*gJ*
gN	visual.txt	/*gN*
gP	change.txt	/*gP*
gQ	intro.txt	/*gQ*
gR	change.txt	/*gR*
gT	tabpage.txt	/*gT*
gU	change.txt	/*gU*
gUU	change.txt	/*gUU*
gUgU	change.txt	/*gUgU*
gV	visual.txt	/*gV*
g]	tagsrch.txt	/*g]*
g^	motion.txt	/*g^*
g_	motion.txt	/*g_*
g_CTRL-A	various.txt	/*g_CTRL-A*
g_CTRL-G	editing.txt	/*g_CTRL-G*
g_CTRL-H	visual.txt	/*g_CTRL-H*
g_CTRL-]	tagsrch.txt	/*g_CTRL-]*
g`	motion.txt	/*g`*
g`a	motion.txt	/*g`a*
ga	various.txt	/*ga*
garbagecollect()	eval.txt	/*garbagecollect()*
gd	pattern.txt	/*gd*
gdb	debug.txt	/*gdb*
ge	motion.txt	/*ge*
get()	eval.txt	/*get()*
get-ms-debuggers	debug.txt	/*get-ms-debuggers*
getbufline()	eval.txt	/*getbufline()*
getbufvar()	eval.txt	/*getbufvar()*
getchar()	eval.txt	/*getchar()*
getcharmod()	eval.txt	/*getcharmod()*
getcmdline()	eval.txt	/*getcmdline()*
getcmdpos()	eval.txt	/*getcmdpos()*
getcmdtype()	eval.txt	/*getcmdtype()*
getcurpos()	eval.txt	/*getcurpos()*
getcwd()	eval.txt	/*getcwd()*
getfontname()	eval.txt	/*getfontname()*
getfperm()	eval.txt	/*getfperm()*
getfsize()	eval.txt	/*getfsize()*
getftime()	eval.txt	/*getftime()*
getftype()	eval.txt	/*getftype()*
getlatestvimscripts-install	pi_getscript.txt	/*getlatestvimscripts-install*
getline()	eval.txt	/*getline()*
getloclist()	eval.txt	/*getloclist()*
getmatches()	eval.txt	/*getmatches()*
getpid()	eval.txt	/*getpid()*
getpos()	eval.txt	/*getpos()*
getqflist()	eval.txt	/*getqflist()*
getreg()	eval.txt	/*getreg()*
getregtype()	eval.txt	/*getregtype()*
getscript	pi_getscript.txt	/*getscript*
getscript-autoinstall	pi_getscript.txt	/*getscript-autoinstall*
getscript-data	pi_getscript.txt	/*getscript-data*
getscript-history	pi_getscript.txt	/*getscript-history*
getscript-plugins	pi_getscript.txt	/*getscript-plugins*
getscript-start	pi_getscript.txt	/*getscript-start*
gettabvar()	eval.txt	/*gettabvar()*
gettabwinvar()	eval.txt	/*gettabwinvar()*
getwinposx()	eval.txt	/*getwinposx()*
getwinposy()	eval.txt	/*getwinposy()*
getwinvar()	eval.txt	/*getwinvar()*
gex	starting.txt	/*gex*
gf	editing.txt	/*gf*
gg	motion.txt	/*gg*
gh	visual.txt	/*gh*
gi	insert.txt	/*gi*
gj	motion.txt	/*gj*
gk	motion.txt	/*gk*
glob()	eval.txt	/*glob()*
global-ime	mbyte.txt	/*global-ime*
global-local	options.txt	/*global-local*
global-variable	eval.txt	/*global-variable*
global_markfilelist	pi_netrw.txt	/*global_markfilelist*
globpath()	eval.txt	/*globpath()*
glvs	pi_getscript.txt	/*glvs*
glvs-alg	pi_getscript.txt	/*glvs-alg*
glvs-algorithm	pi_getscript.txt	/*glvs-algorithm*
glvs-autoinstall	pi_getscript.txt	/*glvs-autoinstall*
glvs-contents	pi_getscript.txt	/*glvs-contents*
glvs-copyright	pi_getscript.txt	/*glvs-copyright*
glvs-data	pi_getscript.txt	/*glvs-data*
glvs-dist-install	pi_getscript.txt	/*glvs-dist-install*
glvs-hist	pi_getscript.txt	/*glvs-hist*
glvs-install	pi_getscript.txt	/*glvs-install*
glvs-options	pi_getscript.txt	/*glvs-options*
glvs-plugins	pi_getscript.txt	/*glvs-plugins*
glvs-usage	pi_getscript.txt	/*glvs-usage*
gm	motion.txt	/*gm*
gn	visual.txt	/*gn*
gnat#Insert_Tags_Header()	ft_ada.txt	/*gnat#Insert_Tags_Header()*
gnat#New()	ft_ada.txt	/*gnat#New()*
gnat-xref	ft_ada.txt	/*gnat-xref*
gnat_members	ft_ada.txt	/*gnat_members*
gnome-session	gui_x11.txt	/*gnome-session*
go	motion.txt	/*go*
gp	change.txt	/*gp*
gpm-mouse	term.txt	/*gpm-mouse*
gq	change.txt	/*gq*
gqap	change.txt	/*gqap*
gqgq	change.txt	/*gqgq*
gqq	change.txt	/*gqq*
gr	change.txt	/*gr*
graphic-option-gone	version4.txt	/*graphic-option-gone*
greek	options.txt	/*greek*
grep	quickfix.txt	/*grep*
groff.vim	syntax.txt	/*groff.vim*
gross-national-happiness	intro.txt	/*gross-national-happiness*
group-name	syntax.txt	/*group-name*
gs	various.txt	/*gs*
gsp.vim	syntax.txt	/*gsp.vim*
gstar	pattern.txt	/*gstar*
gt	tabpage.txt	/*gt*
gtk-tooltip-colors	gui_x11.txt	/*gtk-tooltip-colors*
gu	change.txt	/*gu*
gugu	change.txt	/*gugu*
gui	gui.txt	/*gui*
gui-IME	gui.txt	/*gui-IME*
gui-clipboard	gui_w32.txt	/*gui-clipboard*
gui-colors	syntax.txt	/*gui-colors*
gui-extras	gui.txt	/*gui-extras*
gui-footer	debugger.txt	/*gui-footer*
gui-fork	gui_x11.txt	/*gui-fork*
gui-functions	usr_41.txt	/*gui-functions*
gui-gnome	gui_x11.txt	/*gui-gnome*
gui-gnome-session	gui_x11.txt	/*gui-gnome-session*
gui-gtk	gui_x11.txt	/*gui-gtk*
gui-gtk-socketid	gui_x11.txt	/*gui-gtk-socketid*
gui-horiz-scroll	gui.txt	/*gui-horiz-scroll*
gui-init	gui.txt	/*gui-init*
gui-kde	gui_x11.txt	/*gui-kde*
gui-mouse	gui.txt	/*gui-mouse*
gui-mouse-focus	gui.txt	/*gui-mouse-focus*
gui-mouse-mapping	gui.txt	/*gui-mouse-mapping*
gui-mouse-modeless	gui.txt	/*gui-mouse-modeless*
gui-mouse-move	gui.txt	/*gui-mouse-move*
gui-mouse-select	gui.txt	/*gui-mouse-select*
gui-mouse-status	gui.txt	/*gui-mouse-status*
gui-mouse-various	gui.txt	/*gui-mouse-various*
gui-pty	gui_x11.txt	/*gui-pty*
gui-pty-erase	gui_x11.txt	/*gui-pty-erase*
gui-resources	gui_x11.txt	/*gui-resources*
gui-scrollbars	gui.txt	/*gui-scrollbars*
gui-selections	gui.txt	/*gui-selections*
gui-shell	gui.txt	/*gui-shell*
gui-shell-win32	gui_w32.txt	/*gui-shell-win32*
gui-start	gui.txt	/*gui-start*
gui-toolbar	gui.txt	/*gui-toolbar*
gui-vert-scroll	gui.txt	/*gui-vert-scroll*
gui-w16	gui_w16.txt	/*gui-w16*
gui-w32	gui_w32.txt	/*gui-w32*
gui-w32-cmdargs	gui_w32.txt	/*gui-w32-cmdargs*
gui-w32-dialogs	gui_w32.txt	/*gui-w32-dialogs*
gui-w32-printing	gui_w32.txt	/*gui-w32-printing*
gui-w32-start	gui_w32.txt	/*gui-w32-start*
gui-w32-various	gui_w32.txt	/*gui-w32-various*
gui-w32-windowid	gui_w32.txt	/*gui-w32-windowid*
gui-w32s	gui_w32.txt	/*gui-w32s*
gui-win32-maximized	gui_w32.txt	/*gui-win32-maximized*
gui-x11	gui_x11.txt	/*gui-x11*
gui-x11-athena	gui_x11.txt	/*gui-x11-athena*
gui-x11-compiling	gui_x11.txt	/*gui-x11-compiling*
gui-x11-gtk	gui_x11.txt	/*gui-x11-gtk*
gui-x11-kde	gui_x11.txt	/*gui-x11-kde*
gui-x11-misc	gui_x11.txt	/*gui-x11-misc*
gui-x11-motif	gui_x11.txt	/*gui-x11-motif*
gui-x11-neXtaw	gui_x11.txt	/*gui-x11-neXtaw*
gui-x11-printing	gui_x11.txt	/*gui-x11-printing*
gui-x11-start	gui_x11.txt	/*gui-x11-start*
gui-x11-various	gui_x11.txt	/*gui-x11-various*
gui.txt	gui.txt	/*gui.txt*
gui_w16.txt	gui_w16.txt	/*gui_w16.txt*
gui_w32.txt	gui_w32.txt	/*gui_w32.txt*
gui_x11.txt	gui_x11.txt	/*gui_x11.txt*
guifontwide_gtk2	options.txt	/*guifontwide_gtk2*
guifontwide_win_mbyte	options.txt	/*guifontwide_win_mbyte*
guioptions_a	options.txt	/*guioptions_a*
guu	change.txt	/*guu*
gv	visual.txt	/*gv*
gview	starting.txt	/*gview*
gvim	starting.txt	/*gvim*
gvimdiff	diff.txt	/*gvimdiff*
gvimrc	gui.txt	/*gvimrc*
gw	change.txt	/*gw*
gwgw	change.txt	/*gwgw*
gww	change.txt	/*gww*
gzip	pi_gzip.txt	/*gzip*
gzip-autocmd	pi_gzip.txt	/*gzip-autocmd*
gzip-example	autocmd.txt	/*gzip-example*
gzip-helpfile	tips.txt	/*gzip-helpfile*
g~	change.txt	/*g~*
g~g~	change.txt	/*g~g~*
g~~	change.txt	/*g~~*
h	motion.txt	/*h*
hangul	hangulin.txt	/*hangul*
hangulin.txt	hangulin.txt	/*hangulin.txt*
has()	eval.txt	/*has()*
has-patch	eval.txt	/*has-patch*
has-python	if_pyth.txt	/*has-python*
has_key()	eval.txt	/*has_key()*
haskell.vim	syntax.txt	/*haskell.vim*
haslocaldir()	eval.txt	/*haslocaldir()*
hasmapto()	eval.txt	/*hasmapto()*
hebrew	hebrew.txt	/*hebrew*
hebrew.txt	hebrew.txt	/*hebrew.txt*
help	helphelp.txt	/*help*
help-context	help.txt	/*help-context*
help-summary	usr_02.txt	/*help-summary*
help-tags	tags	1
help-translated	helphelp.txt	/*help-translated*
help-writing	helphelp.txt	/*help-writing*
help-xterm-window	helphelp.txt	/*help-xterm-window*
help.txt	help.txt	/*help.txt*
helpfile_name.txt	helphelp.txt	/*helpfile_name.txt*
helphelp	helphelp.txt	/*helphelp*
helphelp.txt	helphelp.txt	/*helphelp.txt*
hex-editing	tips.txt	/*hex-editing*
hex-number	eval.txt	/*hex-number*
hidden-buffer	windows.txt	/*hidden-buffer*
hidden-changed	version5.txt	/*hidden-changed*
hidden-menus	gui.txt	/*hidden-menus*
hidden-options	options.txt	/*hidden-options*
hidden-quit	windows.txt	/*hidden-quit*
highlight-args	syntax.txt	/*highlight-args*
highlight-changed	version4.txt	/*highlight-changed*
highlight-cterm	syntax.txt	/*highlight-cterm*
highlight-ctermbg	syntax.txt	/*highlight-ctermbg*
highlight-ctermfg	syntax.txt	/*highlight-ctermfg*
highlight-default	syntax.txt	/*highlight-default*
highlight-font	syntax.txt	/*highlight-font*
highlight-groups	syntax.txt	/*highlight-groups*
highlight-gui	syntax.txt	/*highlight-gui*
highlight-guibg	syntax.txt	/*highlight-guibg*
highlight-guifg	syntax.txt	/*highlight-guifg*
highlight-guisp	syntax.txt	/*highlight-guisp*
highlight-start	syntax.txt	/*highlight-start*
highlight-stop	syntax.txt	/*highlight-stop*
highlight-term	syntax.txt	/*highlight-term*
highlightID()	eval.txt	/*highlightID()*
highlight_exists()	eval.txt	/*highlight_exists()*
highlighting-functions	usr_41.txt	/*highlighting-functions*
hist-names	eval.txt	/*hist-names*
histadd()	eval.txt	/*histadd()*
histdel()	eval.txt	/*histdel()*
histget()	eval.txt	/*histget()*
histnr()	eval.txt	/*histnr()*
history	cmdline.txt	/*history*
history-functions	usr_41.txt	/*history-functions*
hit-enter	message.txt	/*hit-enter*
hit-enter-prompt	message.txt	/*hit-enter-prompt*
hit-return	message.txt	/*hit-return*
hitest.vim	syntax.txt	/*hitest.vim*
hjkl	usr_02.txt	/*hjkl*
hl-ColorColumn	syntax.txt	/*hl-ColorColumn*
hl-Conceal	syntax.txt	/*hl-Conceal*
hl-Cursor	syntax.txt	/*hl-Cursor*
hl-CursorColumn	syntax.txt	/*hl-CursorColumn*
hl-CursorIM	syntax.txt	/*hl-CursorIM*
hl-CursorLine	syntax.txt	/*hl-CursorLine*
hl-CursorLineNr	syntax.txt	/*hl-CursorLineNr*
hl-DiffAdd	syntax.txt	/*hl-DiffAdd*
hl-DiffChange	syntax.txt	/*hl-DiffChange*
hl-DiffDelete	syntax.txt	/*hl-DiffDelete*
hl-DiffText	syntax.txt	/*hl-DiffText*
hl-Directory	syntax.txt	/*hl-Directory*
hl-ErrorMsg	syntax.txt	/*hl-ErrorMsg*
hl-FoldColumn	syntax.txt	/*hl-FoldColumn*
hl-Folded	syntax.txt	/*hl-Folded*
hl-Ignore	syntax.txt	/*hl-Ignore*
hl-IncSearch	syntax.txt	/*hl-IncSearch*
hl-LineNr	syntax.txt	/*hl-LineNr*
hl-MatchParen	syntax.txt	/*hl-MatchParen*
hl-Menu	syntax.txt	/*hl-Menu*
hl-ModeMsg	syntax.txt	/*hl-ModeMsg*
hl-MoreMsg	syntax.txt	/*hl-MoreMsg*
hl-NonText	syntax.txt	/*hl-NonText*
hl-Normal	syntax.txt	/*hl-Normal*
hl-Pmenu	syntax.txt	/*hl-Pmenu*
hl-PmenuSbar	syntax.txt	/*hl-PmenuSbar*
hl-PmenuSel	syntax.txt	/*hl-PmenuSel*
hl-PmenuThumb	syntax.txt	/*hl-PmenuThumb*
hl-Question	syntax.txt	/*hl-Question*
hl-Scrollbar	syntax.txt	/*hl-Scrollbar*
hl-Search	syntax.txt	/*hl-Search*
hl-SignColumn	syntax.txt	/*hl-SignColumn*
hl-SpecialKey	syntax.txt	/*hl-SpecialKey*
hl-SpellBad	syntax.txt	/*hl-SpellBad*
hl-SpellCap	syntax.txt	/*hl-SpellCap*
hl-SpellLocal	syntax.txt	/*hl-SpellLocal*
hl-SpellRare	syntax.txt	/*hl-SpellRare*
hl-StatusLine	syntax.txt	/*hl-StatusLine*
hl-StatusLineNC	syntax.txt	/*hl-StatusLineNC*
hl-TabLine	syntax.txt	/*hl-TabLine*
hl-TabLineFill	syntax.txt	/*hl-TabLineFill*
hl-TabLineSel	syntax.txt	/*hl-TabLineSel*
hl-Title	syntax.txt	/*hl-Title*
hl-Tooltip	syntax.txt	/*hl-Tooltip*
hl-User1	syntax.txt	/*hl-User1*
hl-User1..9	syntax.txt	/*hl-User1..9*
hl-User9	syntax.txt	/*hl-User9*
hl-VertSplit	syntax.txt	/*hl-VertSplit*
hl-Visual	syntax.txt	/*hl-Visual*
hl-VisualNOS	syntax.txt	/*hl-VisualNOS*
hl-WarningMsg	syntax.txt	/*hl-WarningMsg*
hl-WildMenu	syntax.txt	/*hl-WildMenu*
hlID()	eval.txt	/*hlID()*
hlexists()	eval.txt	/*hlexists()*
hlsearch-variable	eval.txt	/*hlsearch-variable*
holy-grail	index.txt	/*holy-grail*
home	intro.txt	/*home*
home-replace	editing.txt	/*home-replace*
hostname()	eval.txt	/*hostname()*
how-do-i	howto.txt	/*how-do-i*
how-to	howto.txt	/*how-to*
howdoi	howto.txt	/*howdoi*
howto	howto.txt	/*howto*
howto.txt	howto.txt	/*howto.txt*
hpterm	term.txt	/*hpterm*
hpterm-color	syntax.txt	/*hpterm-color*
html-flavor	insert.txt	/*html-flavor*
html-indent	indent.txt	/*html-indent*
html-indenting	indent.txt	/*html-indenting*
html.vim	syntax.txt	/*html.vim*
htmlos.vim	syntax.txt	/*htmlos.vim*
http	pi_netrw.txt	/*http*
i	insert.txt	/*i*
i'	motion.txt	/*i'*
i(	motion.txt	/*i(*
i)	motion.txt	/*i)*
i<	motion.txt	/*i<*
i>	motion.txt	/*i>*
iB	motion.txt	/*iB*
iBus	gui.txt	/*iBus*
iW	motion.txt	/*iW*
i[	motion.txt	/*i[*
i]	motion.txt	/*i]*
i_0_CTRL-D	insert.txt	/*i_0_CTRL-D*
i_<BS>	insert.txt	/*i_<BS>*
i_<C-End>	insert.txt	/*i_<C-End>*
i_<C-Home>	insert.txt	/*i_<C-Home>*
i_<C-Left>	insert.txt	/*i_<C-Left>*
i_<C-PageDown>	tabpage.txt	/*i_<C-PageDown>*
i_<C-PageUp>	tabpage.txt	/*i_<C-PageUp>*
i_<C-Right>	insert.txt	/*i_<C-Right>*
i_<CR>	insert.txt	/*i_<CR>*
i_<Del>	insert.txt	/*i_<Del>*
i_<Down>	insert.txt	/*i_<Down>*
i_<End>	insert.txt	/*i_<End>*
i_<Esc>	insert.txt	/*i_<Esc>*
i_<F1>	helphelp.txt	/*i_<F1>*
i_<Help>	helphelp.txt	/*i_<Help>*
i_<Home>	insert.txt	/*i_<Home>*
i_<Insert>	insert.txt	/*i_<Insert>*
i_<Left>	insert.txt	/*i_<Left>*
i_<LeftMouse>	insert.txt	/*i_<LeftMouse>*
i_<NL>	insert.txt	/*i_<NL>*
i_<PageDown>	insert.txt	/*i_<PageDown>*
i_<PageUp>	insert.txt	/*i_<PageUp>*
i_<Right>	insert.txt	/*i_<Right>*
i_<S-Down>	insert.txt	/*i_<S-Down>*
i_<S-Left>	insert.txt	/*i_<S-Left>*
i_<S-Right>	insert.txt	/*i_<S-Right>*
i_<S-ScrollWheelDown>	insert.txt	/*i_<S-ScrollWheelDown>*
i_<S-ScrollWheelLeft>	insert.txt	/*i_<S-ScrollWheelLeft>*
i_<S-ScrollWheelRight>	insert.txt	/*i_<S-ScrollWheelRight>*
i_<S-ScrollWheelUp>	insert.txt	/*i_<S-ScrollWheelUp>*
i_<S-Up>	insert.txt	/*i_<S-Up>*
i_<ScrollWheelDown>	insert.txt	/*i_<ScrollWheelDown>*
i_<ScrollWheelLeft>	insert.txt	/*i_<ScrollWheelLeft>*
i_<ScrollWheelRight>	insert.txt	/*i_<ScrollWheelRight>*
i_<ScrollWheelUp>	insert.txt	/*i_<ScrollWheelUp>*
i_<Tab>	insert.txt	/*i_<Tab>*
i_<Up>	insert.txt	/*i_<Up>*
i_BS	insert.txt	/*i_BS*
i_CTRL-<PageDown>	tabpage.txt	/*i_CTRL-<PageDown>*
i_CTRL-<PageUp>	tabpage.txt	/*i_CTRL-<PageUp>*
i_CTRL-@	insert.txt	/*i_CTRL-@*
i_CTRL-A	insert.txt	/*i_CTRL-A*
i_CTRL-B-gone	version5.txt	/*i_CTRL-B-gone*
i_CTRL-C	insert.txt	/*i_CTRL-C*
i_CTRL-D	insert.txt	/*i_CTRL-D*
i_CTRL-E	insert.txt	/*i_CTRL-E*
i_CTRL-F	indent.txt	/*i_CTRL-F*
i_CTRL-G_<Down>	insert.txt	/*i_CTRL-G_<Down>*
i_CTRL-G_<Up>	insert.txt	/*i_CTRL-G_<Up>*
i_CTRL-G_CTRL-J	insert.txt	/*i_CTRL-G_CTRL-J*
i_CTRL-G_CTRL-K	insert.txt	/*i_CTRL-G_CTRL-K*
i_CTRL-G_j	insert.txt	/*i_CTRL-G_j*
i_CTRL-G_k	insert.txt	/*i_CTRL-G_k*
i_CTRL-G_u	insert.txt	/*i_CTRL-G_u*
i_CTRL-H	insert.txt	/*i_CTRL-H*
i_CTRL-I	insert.txt	/*i_CTRL-I*
i_CTRL-J	insert.txt	/*i_CTRL-J*
i_CTRL-K	insert.txt	/*i_CTRL-K*
i_CTRL-L	insert.txt	/*i_CTRL-L*
i_CTRL-M	insert.txt	/*i_CTRL-M*
i_CTRL-N	insert.txt	/*i_CTRL-N*
i_CTRL-O	insert.txt	/*i_CTRL-O*
i_CTRL-P	insert.txt	/*i_CTRL-P*
i_CTRL-Q	insert.txt	/*i_CTRL-Q*
i_CTRL-R	insert.txt	/*i_CTRL-R*
i_CTRL-R_=	insert.txt	/*i_CTRL-R_=*
i_CTRL-R_CTRL-O	insert.txt	/*i_CTRL-R_CTRL-O*
i_CTRL-R_CTRL-P	insert.txt	/*i_CTRL-R_CTRL-P*
i_CTRL-R_CTRL-R	insert.txt	/*i_CTRL-R_CTRL-R*
i_CTRL-T	insert.txt	/*i_CTRL-T*
i_CTRL-U	insert.txt	/*i_CTRL-U*
i_CTRL-V	insert.txt	/*i_CTRL-V*
i_CTRL-V_digit	insert.txt	/*i_CTRL-V_digit*
i_CTRL-W	insert.txt	/*i_CTRL-W*
i_CTRL-X	insert.txt	/*i_CTRL-X*
i_CTRL-X_CTRL-D	insert.txt	/*i_CTRL-X_CTRL-D*
i_CTRL-X_CTRL-E	insert.txt	/*i_CTRL-X_CTRL-E*
i_CTRL-X_CTRL-F	insert.txt	/*i_CTRL-X_CTRL-F*
i_CTRL-X_CTRL-I	insert.txt	/*i_CTRL-X_CTRL-I*
i_CTRL-X_CTRL-K	insert.txt	/*i_CTRL-X_CTRL-K*
i_CTRL-X_CTRL-L	insert.txt	/*i_CTRL-X_CTRL-L*
i_CTRL-X_CTRL-N	insert.txt	/*i_CTRL-X_CTRL-N*
i_CTRL-X_CTRL-O	insert.txt	/*i_CTRL-X_CTRL-O*
i_CTRL-X_CTRL-P	insert.txt	/*i_CTRL-X_CTRL-P*
i_CTRL-X_CTRL-S	insert.txt	/*i_CTRL-X_CTRL-S*
i_CTRL-X_CTRL-T	insert.txt	/*i_CTRL-X_CTRL-T*
i_CTRL-X_CTRL-U	insert.txt	/*i_CTRL-X_CTRL-U*
i_CTRL-X_CTRL-V	insert.txt	/*i_CTRL-X_CTRL-V*
i_CTRL-X_CTRL-Y	insert.txt	/*i_CTRL-X_CTRL-Y*
i_CTRL-X_CTRL-]	insert.txt	/*i_CTRL-X_CTRL-]*
i_CTRL-X_index	index.txt	/*i_CTRL-X_index*
i_CTRL-X_s	insert.txt	/*i_CTRL-X_s*
i_CTRL-Y	insert.txt	/*i_CTRL-Y*
i_CTRL-Z	options.txt	/*i_CTRL-Z*
i_CTRL-[	insert.txt	/*i_CTRL-[*
i_CTRL-\_CTRL-G	intro.txt	/*i_CTRL-\\_CTRL-G*
i_CTRL-\_CTRL-N	intro.txt	/*i_CTRL-\\_CTRL-N*
i_CTRL-\_CTRL-O	insert.txt	/*i_CTRL-\\_CTRL-O*
i_CTRL-]	insert.txt	/*i_CTRL-]*
i_CTRL-^	insert.txt	/*i_CTRL-^*
i_CTRL-_	insert.txt	/*i_CTRL-_*
i_DEL	insert.txt	/*i_DEL*
i_Tab	insert.txt	/*i_Tab*
i_^_CTRL-D	insert.txt	/*i_^_CTRL-D*
i_backspacing	insert.txt	/*i_backspacing*
i_digraph	digraph.txt	/*i_digraph*
i_esc	intro.txt	/*i_esc*
i`	motion.txt	/*i`*
ia64.vim	syntax.txt	/*ia64.vim*
ib	motion.txt	/*ib*
iccf	uganda.txt	/*iccf*
iccf-donations	uganda.txt	/*iccf-donations*
icon-changed	version4.txt	/*icon-changed*
iconise	starting.txt	/*iconise*
iconize	starting.txt	/*iconize*
iconv()	eval.txt	/*iconv()*
iconv-dynamic	mbyte.txt	/*iconv-dynamic*
ident-search	tips.txt	/*ident-search*
idl-syntax	syntax.txt	/*idl-syntax*
idl.vim	syntax.txt	/*idl.vim*
if_cscop.txt	if_cscop.txt	/*if_cscop.txt*
if_lua.txt	if_lua.txt	/*if_lua.txt*
if_mzsch.txt	if_mzsch.txt	/*if_mzsch.txt*
if_ole.txt	if_ole.txt	/*if_ole.txt*
if_perl.txt	if_perl.txt	/*if_perl.txt*
if_pyth.txt	if_pyth.txt	/*if_pyth.txt*
if_ruby.txt	if_ruby.txt	/*if_ruby.txt*
if_sniff.txt	if_sniff.txt	/*if_sniff.txt*
if_tcl.txt	if_tcl.txt	/*if_tcl.txt*
ignore-errors	eval.txt	/*ignore-errors*
improved-autocmds-5.4	version5.txt	/*improved-autocmds-5.4*
improved-quickfix	version5.txt	/*improved-quickfix*
improved-sessions	version5.txt	/*improved-sessions*
improved-viminfo	version5.txt	/*improved-viminfo*
improvements-5	version5.txt	/*improvements-5*
improvements-6	version6.txt	/*improvements-6*
improvements-7	version7.txt	/*improvements-7*
inactive-buffer	windows.txt	/*inactive-buffer*
include-search	tagsrch.txt	/*include-search*
inclusive	motion.txt	/*inclusive*
incomp-small-6	version6.txt	/*incomp-small-6*
incompatible-5	version5.txt	/*incompatible-5*
incompatible-6	version6.txt	/*incompatible-6*
incompatible-7	version7.txt	/*incompatible-7*
indent()	eval.txt	/*indent()*
indent-expression	indent.txt	/*indent-expression*
indent.txt	indent.txt	/*indent.txt*
indentkeys-format	indent.txt	/*indentkeys-format*
index	index.txt	/*index*
index()	eval.txt	/*index()*
index.txt	index.txt	/*index.txt*
info-message	starting.txt	/*info-message*
inform.vim	syntax.txt	/*inform.vim*
informix	ft_sql.txt	/*informix*
initialization	starting.txt	/*initialization*
input()	eval.txt	/*input()*
inputdialog()	eval.txt	/*inputdialog()*
inputlist()	eval.txt	/*inputlist()*
inputrestore()	eval.txt	/*inputrestore()*
inputsave()	eval.txt	/*inputsave()*
inputsecret()	eval.txt	/*inputsecret()*
ins-completion	insert.txt	/*ins-completion*
ins-completion-menu	insert.txt	/*ins-completion-menu*
ins-expandtab	insert.txt	/*ins-expandtab*
ins-reverse	rileft.txt	/*ins-reverse*
ins-smarttab	insert.txt	/*ins-smarttab*
ins-softtabstop	insert.txt	/*ins-softtabstop*
ins-special-keys	insert.txt	/*ins-special-keys*
ins-special-special	insert.txt	/*ins-special-special*
ins-textwidth	insert.txt	/*ins-textwidth*
insert	insert.txt	/*insert*
insert()	eval.txt	/*insert()*
insert-index	index.txt	/*insert-index*
insert.txt	insert.txt	/*insert.txt*
insert_expand	insert.txt	/*insert_expand*
inserting	insert.txt	/*inserting*
inserting-ex	insert.txt	/*inserting-ex*
inserting-file	insert.txt	/*inserting-file*
insertmode-variable	eval.txt	/*insertmode-variable*
install	usr_90.txt	/*install*
install-home	usr_90.txt	/*install-home*
install-registry	gui_w32.txt	/*install-registry*
intel-itanium	syntax.txt	/*intel-itanium*
intellimouse-wheel-problems	gui_w32.txt	/*intellimouse-wheel-problems*
interactive-functions	usr_41.txt	/*interactive-functions*
interfaces-5.2	version5.txt	/*interfaces-5.2*
internal-variables	eval.txt	/*internal-variables*
internal-wordlist	spell.txt	/*internal-wordlist*
internet	intro.txt	/*internet*
intro	intro.txt	/*intro*
intro.txt	intro.txt	/*intro.txt*
inverse	syntax.txt	/*inverse*
invert()	eval.txt	/*invert()*
ip	motion.txt	/*ip*
iquote	motion.txt	/*iquote*
is	motion.txt	/*is*
isdirectory()	eval.txt	/*isdirectory()*
islocked()	eval.txt	/*islocked()*
it	motion.txt	/*it*
italic	syntax.txt	/*italic*
items()	eval.txt	/*items()*
iw	motion.txt	/*iw*
i{	motion.txt	/*i{*
i}	motion.txt	/*i}*
j	motion.txt	/*j*
java-cinoptions	indent.txt	/*java-cinoptions*
java-indenting	indent.txt	/*java-indenting*
java.vim	syntax.txt	/*java.vim*
javascript-cinoptions	indent.txt	/*javascript-cinoptions*
javascript-indenting	indent.txt	/*javascript-indenting*
join()	eval.txt	/*join()*
jsbterm-mouse	options.txt	/*jsbterm-mouse*
jtags	tagsrch.txt	/*jtags*
jump-motions	motion.txt	/*jump-motions*
jumplist	motion.txt	/*jumplist*
jumpto-diffs	diff.txt	/*jumpto-diffs*
k	motion.txt	/*k*
kcc	uganda.txt	/*kcc*
kde	gui_x11.txt	/*kde*
key-codes	intro.txt	/*key-codes*
key-codes-changed	version4.txt	/*key-codes-changed*
key-mapping	map.txt	/*key-mapping*
key-notation	intro.txt	/*key-notation*
key-variable	eval.txt	/*key-variable*
keycodes	intro.txt	/*keycodes*
keymap-accents	mbyte.txt	/*keymap-accents*
keymap-file-format	mbyte.txt	/*keymap-file-format*
keymap-hebrew	mbyte.txt	/*keymap-hebrew*
keypad-0	intro.txt	/*keypad-0*
keypad-9	intro.txt	/*keypad-9*
keypad-comma	term.txt	/*keypad-comma*
keypad-divide	intro.txt	/*keypad-divide*
keypad-end	intro.txt	/*keypad-end*
keypad-enter	intro.txt	/*keypad-enter*
keypad-home	intro.txt	/*keypad-home*
keypad-minus	intro.txt	/*keypad-minus*
keypad-multiply	intro.txt	/*keypad-multiply*
keypad-page-down	intro.txt	/*keypad-page-down*
keypad-page-up	intro.txt	/*keypad-page-up*
keypad-plus	intro.txt	/*keypad-plus*
keypad-point	intro.txt	/*keypad-point*
keys()	eval.txt	/*keys()*
known-bugs	todo.txt	/*known-bugs*
l	motion.txt	/*l*
l:	eval.txt	/*l:*
l:var	eval.txt	/*l:var*
lCursor	mbyte.txt	/*lCursor*
lace.vim	syntax.txt	/*lace.vim*
lang-variable	eval.txt	/*lang-variable*
language-mapping	map.txt	/*language-mapping*
last-pattern	pattern.txt	/*last-pattern*
last-position-jump	eval.txt	/*last-position-jump*
last_buffer_nr()	eval.txt	/*last_buffer_nr()*
latex-syntax	syntax.txt	/*latex-syntax*
lc_time-variable	eval.txt	/*lc_time-variable*
lcs-conceal	options.txt	/*lcs-conceal*
lcs-eol	options.txt	/*lcs-eol*
lcs-extends	options.txt	/*lcs-extends*
lcs-nbsp	options.txt	/*lcs-nbsp*
lcs-precedes	options.txt	/*lcs-precedes*
lcs-tab	options.txt	/*lcs-tab*
lcs-trail	options.txt	/*lcs-trail*
left-right-motions	motion.txt	/*left-right-motions*
len()	eval.txt	/*len()*
less	various.txt	/*less*
letter	print.txt	/*letter*
lex.vim	syntax.txt	/*lex.vim*
lhaskell.vim	syntax.txt	/*lhaskell.vim*
libcall()	eval.txt	/*libcall()*
libcallnr()	eval.txt	/*libcallnr()*
license	uganda.txt	/*license*
lid	quickfix.txt	/*lid*
lifelines.vim	syntax.txt	/*lifelines.vim*
limits	vi_diff.txt	/*limits*
line()	eval.txt	/*line()*
line-continuation	repeat.txt	/*line-continuation*
line2byte()	eval.txt	/*line2byte()*
linefeed	intro.txt	/*linefeed*
linewise	motion.txt	/*linewise*
linewise-register	change.txt	/*linewise-register*
linewise-visual	visual.txt	/*linewise-visual*
lisp.vim	syntax.txt	/*lisp.vim*
lispindent()	eval.txt	/*lispindent()*
list	eval.txt	/*list*
list-functions	usr_41.txt	/*list-functions*
list-identity	eval.txt	/*list-identity*
list-index	eval.txt	/*list-index*
list-modification	eval.txt	/*list-modification*
list-repeat	windows.txt	/*list-repeat*
lite.vim	syntax.txt	/*lite.vim*
literal-string	eval.txt	/*literal-string*
lnum-variable	eval.txt	/*lnum-variable*
load-plugins	starting.txt	/*load-plugins*
load-vim-script	repeat.txt	/*load-vim-script*
local-additions	help.txt	/*local-additions*
local-function	eval.txt	/*local-function*
local-options	options.txt	/*local-options*
local-variable	eval.txt	/*local-variable*
local-variables	eval.txt	/*local-variables*
local_markfilelist	pi_netrw.txt	/*local_markfilelist*
locale	mbyte.txt	/*locale*
locale-name	mbyte.txt	/*locale-name*
localtime()	eval.txt	/*localtime()*
location-list	quickfix.txt	/*location-list*
location-list-window	quickfix.txt	/*location-list-window*
log()	eval.txt	/*log()*
log10()	eval.txt	/*log10()*
long-lines	version5.txt	/*long-lines*
love	intro.txt	/*love*
lowercase	change.txt	/*lowercase*
lpc.vim	syntax.txt	/*lpc.vim*
lua	if_lua.txt	/*lua*
lua-buffer	if_lua.txt	/*lua-buffer*
lua-commands	if_lua.txt	/*lua-commands*
lua-dict	if_lua.txt	/*lua-dict*
lua-eval	if_lua.txt	/*lua-eval*
lua-funcref	if_lua.txt	/*lua-funcref*
lua-list	if_lua.txt	/*lua-list*
lua-luaeval	if_lua.txt	/*lua-luaeval*
lua-vim	if_lua.txt	/*lua-vim*
lua-window	if_lua.txt	/*lua-window*
lua.vim	syntax.txt	/*lua.vim*
luaeval()	eval.txt	/*luaeval()*
m	motion.txt	/*m*
m'	motion.txt	/*m'*
m<	motion.txt	/*m<*
m>	motion.txt	/*m>*
m[	motion.txt	/*m[*
m]	motion.txt	/*m]*
m`	motion.txt	/*m`*
mac	os_mac.txt	/*mac*
mac-bug	os_mac.txt	/*mac-bug*
mac-compile	os_mac.txt	/*mac-compile*
mac-faq	os_mac.txt	/*mac-faq*
mac-filename	os_mac.txt	/*mac-filename*
mac-lack	os_mac.txt	/*mac-lack*
mac-vimfile	os_mac.txt	/*mac-vimfile*
macintosh	os_mac.txt	/*macintosh*
macro	map.txt	/*macro*
mail-list	intro.txt	/*mail-list*
mail.vim	syntax.txt	/*mail.vim*
maillist	intro.txt	/*maillist*
maillist-archive	intro.txt	/*maillist-archive*
make.vim	syntax.txt	/*make.vim*
manual-copyright	usr_01.txt	/*manual-copyright*
map()	eval.txt	/*map()*
map-<SID>	map.txt	/*map-<SID>*
map-ambiguous	map.txt	/*map-ambiguous*
map-backtick	tips.txt	/*map-backtick*
map-comments	map.txt	/*map-comments*
map-error	map.txt	/*map-error*
map-examples	map.txt	/*map-examples*
map-keys-fails	map.txt	/*map-keys-fails*
map-listing	map.txt	/*map-listing*
map-modes	map.txt	/*map-modes*
map-multibyte	map.txt	/*map-multibyte*
map-overview	map.txt	/*map-overview*
map-precedence	map.txt	/*map-precedence*
map-self-destroy	tips.txt	/*map-self-destroy*
map-typing	map.txt	/*map-typing*
map-which-keys	map.txt	/*map-which-keys*
map.txt	map.txt	/*map.txt*
map_CTRL-C	map.txt	/*map_CTRL-C*
map_backslash	map.txt	/*map_backslash*
map_bar	map.txt	/*map_bar*
map_empty_rhs	map.txt	/*map_empty_rhs*
map_return	map.txt	/*map_return*
map_space_in_lhs	map.txt	/*map_space_in_lhs*
map_space_in_rhs	map.txt	/*map_space_in_rhs*
maparg()	eval.txt	/*maparg()*
mapcheck()	eval.txt	/*mapcheck()*
maple.vim	syntax.txt	/*maple.vim*
mapleader	map.txt	/*mapleader*
maplocalleader	map.txt	/*maplocalleader*
mapmode-c	map.txt	/*mapmode-c*
mapmode-i	map.txt	/*mapmode-i*
mapmode-ic	map.txt	/*mapmode-ic*
mapmode-l	map.txt	/*mapmode-l*
mapmode-n	map.txt	/*mapmode-n*
mapmode-nvo	map.txt	/*mapmode-nvo*
mapmode-o	map.txt	/*mapmode-o*
mapmode-s	map.txt	/*mapmode-s*
mapmode-v	map.txt	/*mapmode-v*
mapmode-x	map.txt	/*mapmode-x*
mapping	map.txt	/*mapping*
mapping-functions	usr_41.txt	/*mapping-functions*
mark	motion.txt	/*mark*
mark-functions	usr_41.txt	/*mark-functions*
mark-motions	motion.txt	/*mark-motions*
markfilelist	pi_netrw.txt	/*markfilelist*
masm.vim	syntax.txt	/*masm.vim*
match()	eval.txt	/*match()*
match-highlight	pattern.txt	/*match-highlight*
match-parens	tips.txt	/*match-parens*
matchadd()	eval.txt	/*matchadd()*
matchaddpos()	eval.txt	/*matchaddpos()*
matcharg()	eval.txt	/*matcharg()*
matchdelete()	eval.txt	/*matchdelete()*
matchend()	eval.txt	/*matchend()*
matchit-install	usr_05.txt	/*matchit-install*
matchlist()	eval.txt	/*matchlist()*
matchparen	pi_paren.txt	/*matchparen*
matchstr()	eval.txt	/*matchstr()*
max()	eval.txt	/*max()*
mbyte-IME	mbyte.txt	/*mbyte-IME*
mbyte-XIM	mbyte.txt	/*mbyte-XIM*
mbyte-combining	mbyte.txt	/*mbyte-combining*
mbyte-composing	mbyte.txt	/*mbyte-composing*
mbyte-conversion	mbyte.txt	/*mbyte-conversion*
mbyte-encoding	mbyte.txt	/*mbyte-encoding*
mbyte-first	mbyte.txt	/*mbyte-first*
mbyte-fonts-MSwin	mbyte.txt	/*mbyte-fonts-MSwin*
mbyte-fonts-X11	mbyte.txt	/*mbyte-fonts-X11*
mbyte-keymap	mbyte.txt	/*mbyte-keymap*
mbyte-locale	mbyte.txt	/*mbyte-locale*
mbyte-options	mbyte.txt	/*mbyte-options*
mbyte-terminal	mbyte.txt	/*mbyte-terminal*
mbyte-utf8	mbyte.txt	/*mbyte-utf8*
mbyte.txt	mbyte.txt	/*mbyte.txt*
menu-changes-5.4	version5.txt	/*menu-changes-5.4*
menu-examples	gui.txt	/*menu-examples*
menu-priority	gui.txt	/*menu-priority*
menu-separator	gui.txt	/*menu-separator*
menu.vim	gui.txt	/*menu.vim*
menus	gui.txt	/*menus*
merge	diff.txt	/*merge*
message-history	message.txt	/*message-history*
message.txt	message.txt	/*message.txt*
messages	message.txt	/*messages*
meta	intro.txt	/*meta*
min()	eval.txt	/*min()*
minimal-features	os_msdos.txt	/*minimal-features*
missing-options	vi_diff.txt	/*missing-options*
mkdir()	eval.txt	/*mkdir()*
mlang.txt	mlang.txt	/*mlang.txt*
mma.vim	syntax.txt	/*mma.vim*
mode()	eval.txt	/*mode()*
mode-Ex	intro.txt	/*mode-Ex*
mode-cmdline	cmdline.txt	/*mode-cmdline*
mode-ins-repl	insert.txt	/*mode-ins-repl*
mode-replace	insert.txt	/*mode-replace*
mode-switching	intro.txt	/*mode-switching*
modeless-and-clipboard	version6.txt	/*modeless-and-clipboard*
modeless-selection	gui.txt	/*modeless-selection*
modeline	options.txt	/*modeline*
modeline-local	options.txt	/*modeline-local*
modeline-version	options.txt	/*modeline-version*
moo.vim	syntax.txt	/*moo.vim*
more-compatible	version5.txt	/*more-compatible*
more-prompt	message.txt	/*more-prompt*
more-variables	eval.txt	/*more-variables*
motion.txt	motion.txt	/*motion.txt*
mouse-mode-table	term.txt	/*mouse-mode-table*
mouse-overview	term.txt	/*mouse-overview*
mouse-swap-buttons	term.txt	/*mouse-swap-buttons*
mouse-using	term.txt	/*mouse-using*
mouse_col-variable	eval.txt	/*mouse_col-variable*
mouse_lnum-variable	eval.txt	/*mouse_lnum-variable*
mouse_win-variable	eval.txt	/*mouse_win-variable*
movement	intro.txt	/*movement*
ms-dos	os_msdos.txt	/*ms-dos*
msdos	os_msdos.txt	/*msdos*
msdos-arrows	os_msdos.txt	/*msdos-arrows*
msdos-clipboard-limits	os_msdos.txt	/*msdos-clipboard-limits*
msdos-compiling	os_msdos.txt	/*msdos-compiling*
msdos-copy-paste	os_msdos.txt	/*msdos-copy-paste*
msdos-fname-extensions	os_msdos.txt	/*msdos-fname-extensions*
msdos-limitations	os_msdos.txt	/*msdos-limitations*
msdos-linked-files	os_msdos.txt	/*msdos-linked-files*
msdos-longfname	os_msdos.txt	/*msdos-longfname*
msdos-mode	gui_w32.txt	/*msdos-mode*
msdos-problems	os_msdos.txt	/*msdos-problems*
msdos-termcap	os_msdos.txt	/*msdos-termcap*
msdos-versions	os_msdos.txt	/*msdos-versions*
msql.vim	syntax.txt	/*msql.vim*
mswin.vim	gui_w32.txt	/*mswin.vim*
multi-byte	mbyte.txt	/*multi-byte*
multi-lang	mlang.txt	/*multi-lang*
multi-repeat	repeat.txt	/*multi-repeat*
multibyte	mbyte.txt	/*multibyte*
multibyte-ime	mbyte.txt	/*multibyte-ime*
multibyte-input	mbyte.txt	/*multibyte-input*
multilang	mlang.txt	/*multilang*
multilang-menus	mlang.txt	/*multilang-menus*
multilang-messages	mlang.txt	/*multilang-messages*
multilang-scripts	mlang.txt	/*multilang-scripts*
myfiletypefile	syntax.txt	/*myfiletypefile*
myscriptsfile	syntax.txt	/*myscriptsfile*
mysql	ft_sql.txt	/*mysql*
mysyntaxfile	syntax.txt	/*mysyntaxfile*
mysyntaxfile-add	syntax.txt	/*mysyntaxfile-add*
mysyntaxfile-replace	syntax.txt	/*mysyntaxfile-replace*
mzeval()	eval.txt	/*mzeval()*
mzscheme	if_mzsch.txt	/*mzscheme*
mzscheme-buffer	if_mzsch.txt	/*mzscheme-buffer*
mzscheme-commands	if_mzsch.txt	/*mzscheme-commands*
mzscheme-dynamic	if_mzsch.txt	/*mzscheme-dynamic*
mzscheme-examples	if_mzsch.txt	/*mzscheme-examples*
mzscheme-funcref	if_mzsch.txt	/*mzscheme-funcref*
mzscheme-mzeval	if_mzsch.txt	/*mzscheme-mzeval*
mzscheme-sandbox	if_mzsch.txt	/*mzscheme-sandbox*
mzscheme-threads	if_mzsch.txt	/*mzscheme-threads*
mzscheme-vim	if_mzsch.txt	/*mzscheme-vim*
mzscheme-vimext	if_mzsch.txt	/*mzscheme-vimext*
mzscheme-window	if_mzsch.txt	/*mzscheme-window*
n	pattern.txt	/*n*
nasm.vim	syntax.txt	/*nasm.vim*
navigation	motion.txt	/*navigation*
nb-commands	netbeans.txt	/*nb-commands*
nb-events	netbeans.txt	/*nb-events*
nb-functions	netbeans.txt	/*nb-functions*
nb-messages	netbeans.txt	/*nb-messages*
nb-protocol_errors	netbeans.txt	/*nb-protocol_errors*
nb-special	netbeans.txt	/*nb-special*
nb-terms	netbeans.txt	/*nb-terms*
ncf.vim	syntax.txt	/*ncf.vim*
netbeans	netbeans.txt	/*netbeans*
netbeans-commands	netbeans.txt	/*netbeans-commands*
netbeans-configure	netbeans.txt	/*netbeans-configure*
netbeans-debugging	netbeans.txt	/*netbeans-debugging*
netbeans-download	netbeans.txt	/*netbeans-download*
netbeans-integration	netbeans.txt	/*netbeans-integration*
netbeans-intro	netbeans.txt	/*netbeans-intro*
netbeans-keybindings	netbeans.txt	/*netbeans-keybindings*
netbeans-messages	netbeans.txt	/*netbeans-messages*
netbeans-parameters	netbeans.txt	/*netbeans-parameters*
netbeans-preparation	netbeans.txt	/*netbeans-preparation*
netbeans-problems	netbeans.txt	/*netbeans-problems*
netbeans-protocol	netbeans.txt	/*netbeans-protocol*
netbeans-run	netbeans.txt	/*netbeans-run*
netbeans-setup	netbeans.txt	/*netbeans-setup*
netbeans-support	netbeans.txt	/*netbeans-support*
netbeans.txt	netbeans.txt	/*netbeans.txt*
netreadfixup	pi_netrw.txt	/*netreadfixup*
netrw	pi_netrw.txt	/*netrw*
netrw-%	pi_netrw.txt	/*netrw-%*
netrw--	pi_netrw.txt	/*netrw--*
netrw-:Explore	pi_netrw.txt	/*netrw-:Explore*
netrw-:Hexplore	pi_netrw.txt	/*netrw-:Hexplore*
netrw-:Lexplore	pi_netrw.txt	/*netrw-:Lexplore*
netrw-:MF	pi_netrw.txt	/*netrw-:MF*
netrw-:MT	pi_netrw.txt	/*netrw-:MT*
netrw-:Rexplore	pi_netrw.txt	/*netrw-:Rexplore*
netrw-:Sexplore	pi_netrw.txt	/*netrw-:Sexplore*
netrw-:Texplore	pi_netrw.txt	/*netrw-:Texplore*
netrw-:Vexplore	pi_netrw.txt	/*netrw-:Vexplore*
netrw-C	pi_netrw.txt	/*netrw-C*
netrw-D	pi_netrw.txt	/*netrw-D*
netrw-O	pi_netrw.txt	/*netrw-O*
netrw-P	pi_netrw.txt	/*netrw-P*
netrw-R	pi_netrw.txt	/*netrw-R*
netrw-S	pi_netrw.txt	/*netrw-S*
netrw-Tb	pi_netrw.txt	/*netrw-Tb*
netrw-Th	pi_netrw.txt	/*netrw-Th*
netrw-U	pi_netrw.txt	/*netrw-U*
netrw-X	pi_netrw.txt	/*netrw-X*
netrw-a	pi_netrw.txt	/*netrw-a*
netrw-activate	pi_netrw.txt	/*netrw-activate*
netrw-bookmark	pi_netrw.txt	/*netrw-bookmark*
netrw-bookmarks	pi_netrw.txt	/*netrw-bookmarks*
netrw-browse	pi_netrw.txt	/*netrw-browse*
netrw-browse-cmds	pi_netrw.txt	/*netrw-browse-cmds*
netrw-browse-maps	pi_netrw.txt	/*netrw-browse-maps*
netrw-browser	pi_netrw.txt	/*netrw-browser*
netrw-browser-options	pi_netrw.txt	/*netrw-browser-options*
netrw-browser-settings	pi_netrw.txt	/*netrw-browser-settings*
netrw-browser-var	pi_netrw.txt	/*netrw-browser-var*
netrw-browsing	pi_netrw.txt	/*netrw-browsing*
netrw-c	pi_netrw.txt	/*netrw-c*
netrw-cadaver	pi_netrw.txt	/*netrw-cadaver*
netrw-chgup	pi_netrw.txt	/*netrw-chgup*
netrw-clean	pi_netrw.txt	/*netrw-clean*
netrw-contents	pi_netrw.txt	/*netrw-contents*
netrw-copyright	pi_netrw.txt	/*netrw-copyright*
netrw-cr	pi_netrw.txt	/*netrw-cr*
netrw-createfile	pi_netrw.txt	/*netrw-createfile*
netrw-credits	pi_netrw.txt	/*netrw-credits*
netrw-ctrl-h	pi_netrw.txt	/*netrw-ctrl-h*
netrw-ctrl-l	pi_netrw.txt	/*netrw-ctrl-l*
netrw-ctrl_l	pi_netrw.txt	/*netrw-ctrl_l*
netrw-curdir	pi_netrw.txt	/*netrw-curdir*
netrw-d	pi_netrw.txt	/*netrw-d*
netrw-debug	pi_netrw.txt	/*netrw-debug*
netrw-del	pi_netrw.txt	/*netrw-del*
netrw-delete	pi_netrw.txt	/*netrw-delete*
netrw-dir	pi_netrw.txt	/*netrw-dir*
netrw-dirlist	pi_netrw.txt	/*netrw-dirlist*
netrw-downdir	pi_netrw.txt	/*netrw-downdir*
netrw-edithide	pi_netrw.txt	/*netrw-edithide*
netrw-ex	pi_netrw.txt	/*netrw-ex*
netrw-explore	pi_netrw.txt	/*netrw-explore*
netrw-explore-cmds	pi_netrw.txt	/*netrw-explore-cmds*
netrw-externapp	pi_netrw.txt	/*netrw-externapp*
netrw-file	pi_netrw.txt	/*netrw-file*
netrw-filigree	pi_netrw.txt	/*netrw-filigree*
netrw-fixup	pi_netrw.txt	/*netrw-fixup*
netrw-ftp	pi_netrw.txt	/*netrw-ftp*
netrw-ftype	pi_netrw.txt	/*netrw-ftype*
netrw-gb	pi_netrw.txt	/*netrw-gb*
netrw-gd	pi_netrw.txt	/*netrw-gd*
netrw-getftype	pi_netrw.txt	/*netrw-getftype*
netrw-gf	pi_netrw.txt	/*netrw-gf*
netrw-gh	pi_netrw.txt	/*netrw-gh*
netrw-gitignore	pi_netrw.txt	/*netrw-gitignore*
netrw-gp	pi_netrw.txt	/*netrw-gp*
netrw-gx	pi_netrw.txt	/*netrw-gx*
netrw-handler	pi_netrw.txt	/*netrw-handler*
netrw-help	pi_netrw.txt	/*netrw-help*
netrw-hexplore	pi_netrw.txt	/*netrw-hexplore*
netrw-hide	pi_netrw.txt	/*netrw-hide*
netrw-hiding	pi_netrw.txt	/*netrw-hiding*
netrw-history	pi_netrw.txt	/*netrw-history*
netrw-horiz	pi_netrw.txt	/*netrw-horiz*
netrw-i	pi_netrw.txt	/*netrw-i*
netrw-incompatible	pi_netrw.txt	/*netrw-incompatible*
netrw-internal-variables	pi_netrw.txt	/*netrw-internal-variables*
netrw-intro-browse	pi_netrw.txt	/*netrw-intro-browse*
netrw-leftmouse	pi_netrw.txt	/*netrw-leftmouse*
netrw-lexplore	pi_netrw.txt	/*netrw-lexplore*
netrw-list	pi_netrw.txt	/*netrw-list*
netrw-listbookmark	pi_netrw.txt	/*netrw-listbookmark*
netrw-listhack	pi_netrw.txt	/*netrw-listhack*
netrw-login	pi_netrw.txt	/*netrw-login*
netrw-mB	pi_netrw.txt	/*netrw-mB*
netrw-mF	pi_netrw.txt	/*netrw-mF*
netrw-mT	pi_netrw.txt	/*netrw-mT*
netrw-mb	pi_netrw.txt	/*netrw-mb*
netrw-mc	pi_netrw.txt	/*netrw-mc*
netrw-md	pi_netrw.txt	/*netrw-md*
netrw-me	pi_netrw.txt	/*netrw-me*
netrw-mf	pi_netrw.txt	/*netrw-mf*
netrw-mg	pi_netrw.txt	/*netrw-mg*
netrw-mh	pi_netrw.txt	/*netrw-mh*
netrw-middlemouse	pi_netrw.txt	/*netrw-middlemouse*
netrw-ml_get	pi_netrw.txt	/*netrw-ml_get*
netrw-mm	pi_netrw.txt	/*netrw-mm*
netrw-mouse	pi_netrw.txt	/*netrw-mouse*
netrw-move	pi_netrw.txt	/*netrw-move*
netrw-mp	pi_netrw.txt	/*netrw-mp*
netrw-mr	pi_netrw.txt	/*netrw-mr*
netrw-ms	pi_netrw.txt	/*netrw-ms*
netrw-mt	pi_netrw.txt	/*netrw-mt*
netrw-mu	pi_netrw.txt	/*netrw-mu*
netrw-mx	pi_netrw.txt	/*netrw-mx*
netrw-mz	pi_netrw.txt	/*netrw-mz*
netrw-netrc	pi_netrw.txt	/*netrw-netrc*
netrw-nexplore	pi_netrw.txt	/*netrw-nexplore*
netrw-noload	pi_netrw.txt	/*netrw-noload*
netrw-nread	pi_netrw.txt	/*netrw-nread*
netrw-ntree	pi_netrw.txt	/*netrw-ntree*
netrw-nwrite	pi_netrw.txt	/*netrw-nwrite*
netrw-o	pi_netrw.txt	/*netrw-o*
netrw-options	pi_netrw.txt	/*netrw-options*
netrw-p	pi_netrw.txt	/*netrw-p*
netrw-p1	pi_netrw.txt	/*netrw-p1*
netrw-p10	pi_netrw.txt	/*netrw-p10*
netrw-p11	pi_netrw.txt	/*netrw-p11*
netrw-p12	pi_netrw.txt	/*netrw-p12*
netrw-p13	pi_netrw.txt	/*netrw-p13*
netrw-p14	pi_netrw.txt	/*netrw-p14*
netrw-p15	pi_netrw.txt	/*netrw-p15*
netrw-p16	pi_netrw.txt	/*netrw-p16*
netrw-p2	pi_netrw.txt	/*netrw-p2*
netrw-p3	pi_netrw.txt	/*netrw-p3*
netrw-p4	pi_netrw.txt	/*netrw-p4*
netrw-p5	pi_netrw.txt	/*netrw-p5*
netrw-p6	pi_netrw.txt	/*netrw-p6*
netrw-p7	pi_netrw.txt	/*netrw-p7*
netrw-p8	pi_netrw.txt	/*netrw-p8*
netrw-p9	pi_netrw.txt	/*netrw-p9*
netrw-passwd	pi_netrw.txt	/*netrw-passwd*
netrw-password	pi_netrw.txt	/*netrw-password*
netrw-path	pi_netrw.txt	/*netrw-path*
netrw-pexplore	pi_netrw.txt	/*netrw-pexplore*
netrw-preview	pi_netrw.txt	/*netrw-preview*
netrw-problems	pi_netrw.txt	/*netrw-problems*
netrw-protocol	pi_netrw.txt	/*netrw-protocol*
netrw-prvwin	pi_netrw.txt	/*netrw-prvwin*
netrw-pscp	pi_netrw.txt	/*netrw-pscp*
netrw-psftp	pi_netrw.txt	/*netrw-psftp*
netrw-putty	pi_netrw.txt	/*netrw-putty*
netrw-qF	pi_netrw.txt	/*netrw-qF*
netrw-qb	pi_netrw.txt	/*netrw-qb*
netrw-qf	pi_netrw.txt	/*netrw-qf*
netrw-quickcom	pi_netrw.txt	/*netrw-quickcom*
netrw-quickcoms	pi_netrw.txt	/*netrw-quickcoms*
netrw-quickhelp	pi_netrw.txt	/*netrw-quickhelp*
netrw-quickmap	pi_netrw.txt	/*netrw-quickmap*
netrw-quickmaps	pi_netrw.txt	/*netrw-quickmaps*
netrw-r	pi_netrw.txt	/*netrw-r*
netrw-read	pi_netrw.txt	/*netrw-read*
netrw-ref	pi_netrw.txt	/*netrw-ref*
netrw-rename	pi_netrw.txt	/*netrw-rename*
netrw-reverse	pi_netrw.txt	/*netrw-reverse*
netrw-rexplore	pi_netrw.txt	/*netrw-rexplore*
netrw-rightmouse	pi_netrw.txt	/*netrw-rightmouse*
netrw-s	pi_netrw.txt	/*netrw-s*
netrw-settings	pi_netrw.txt	/*netrw-settings*
netrw-settings-window	pi_netrw.txt	/*netrw-settings-window*
netrw-sexplore	pi_netrw.txt	/*netrw-sexplore*
netrw-sort	pi_netrw.txt	/*netrw-sort*
netrw-sort-sequence	pi_netrw.txt	/*netrw-sort-sequence*
netrw-sortsequence	pi_netrw.txt	/*netrw-sortsequence*
netrw-source	pi_netrw.txt	/*netrw-source*
netrw-ssh-hack	pi_netrw.txt	/*netrw-ssh-hack*
netrw-star	pi_netrw.txt	/*netrw-star*
netrw-starpat	pi_netrw.txt	/*netrw-starpat*
netrw-starstar	pi_netrw.txt	/*netrw-starstar*
netrw-starstarpat	pi_netrw.txt	/*netrw-starstarpat*
netrw-start	pi_netrw.txt	/*netrw-start*
netrw-t	pi_netrw.txt	/*netrw-t*
netrw-texplore	pi_netrw.txt	/*netrw-texplore*
netrw-todo	pi_netrw.txt	/*netrw-todo*
netrw-trailingslash	pi_netrw.txt	/*netrw-trailingslash*
netrw-transparent	pi_netrw.txt	/*netrw-transparent*
netrw-u	pi_netrw.txt	/*netrw-u*
netrw-updir	pi_netrw.txt	/*netrw-updir*
netrw-urls	pi_netrw.txt	/*netrw-urls*
netrw-userpass	pi_netrw.txt	/*netrw-userpass*
netrw-v	pi_netrw.txt	/*netrw-v*
netrw-var	pi_netrw.txt	/*netrw-var*
netrw-variables	pi_netrw.txt	/*netrw-variables*
netrw-vexplore	pi_netrw.txt	/*netrw-vexplore*
netrw-windows-netrc	pi_netrw.txt	/*netrw-windows-netrc*
netrw-windows-s	pi_netrw.txt	/*netrw-windows-s*
netrw-write	pi_netrw.txt	/*netrw-write*
netrw-x	pi_netrw.txt	/*netrw-x*
netrw-xfer	pi_netrw.txt	/*netrw-xfer*
netrw.vim	pi_netrw.txt	/*netrw.vim*
netrw_filehandler	pi_netrw.txt	/*netrw_filehandler*
netterm-mouse	options.txt	/*netterm-mouse*
network	pi_netrw.txt	/*network*
new-5	version5.txt	/*new-5*
new-6	version6.txt	/*new-6*
new-7	version7.txt	/*new-7*
new-GTK-GUI	version5.txt	/*new-GTK-GUI*
new-MzScheme	version7.txt	/*new-MzScheme*
new-Select-mode	version5.txt	/*new-Select-mode*
new-View	version6.txt	/*new-View*
new-argument-list	version6.txt	/*new-argument-list*
new-buftype	version6.txt	/*new-buftype*
new-cmdwin	version6.txt	/*new-cmdwin*
new-color-schemes	version6.txt	/*new-color-schemes*
new-commands	version5.txt	/*new-commands*
new-commands-5.4	version5.txt	/*new-commands-5.4*
new-conceal	version7.txt	/*new-conceal*
new-debug-itf	version6.txt	/*new-debug-itf*
new-debug-mode	version6.txt	/*new-debug-mode*
new-debug-support	version7.txt	/*new-debug-support*
new-define-operator	version7.txt	/*new-define-operator*
new-diff-mode	version6.txt	/*new-diff-mode*
new-encryption	version5.txt	/*new-encryption*
new-evim	version6.txt	/*new-evim*
new-ex-commands-5.2	version5.txt	/*new-ex-commands-5.2*
new-file-browser	version6.txt	/*new-file-browser*
new-file-writing	version6.txt	/*new-file-writing*
new-filetype	filetype.txt	/*new-filetype*
new-filetype-5.4	version5.txt	/*new-filetype-5.4*
new-filetype-plugins	version6.txt	/*new-filetype-plugins*
new-filetype-scripts	filetype.txt	/*new-filetype-scripts*
new-folding	version6.txt	/*new-folding*
new-functions-5.2	version5.txt	/*new-functions-5.2*
new-global-values	version6.txt	/*new-global-values*
new-highlighting	version5.txt	/*new-highlighting*
new-indent-flex	version6.txt	/*new-indent-flex*
new-items-6	version6.txt	/*new-items-6*
new-items-7	version7.txt	/*new-items-7*
new-line-continuation	version5.txt	/*new-line-continuation*
new-location-list	version7.txt	/*new-location-list*
new-lua	version7.txt	/*new-lua*
new-manpage-trans	version7.txt	/*new-manpage-trans*
new-map-expression	version7.txt	/*new-map-expression*
new-map-select	version7.txt	/*new-map-select*
new-more-encryption	version7.txt	/*new-more-encryption*
new-more-highlighting	version7.txt	/*new-more-highlighting*
new-more-unicode	version7.txt	/*new-more-unicode*
new-multi-byte	version5.txt	/*new-multi-byte*
new-multi-lang	version6.txt	/*new-multi-lang*
new-netrw-explore	version7.txt	/*new-netrw-explore*
new-network-files	version6.txt	/*new-network-files*
new-omni-completion	version7.txt	/*new-omni-completion*
new-onemore	version7.txt	/*new-onemore*
new-operator-mod	version6.txt	/*new-operator-mod*
new-options-5.2	version5.txt	/*new-options-5.2*
new-options-5.4	version5.txt	/*new-options-5.4*
new-perl-python	version5.txt	/*new-perl-python*
new-persistent-undo	version7.txt	/*new-persistent-undo*
new-plugins	version6.txt	/*new-plugins*
new-posix	version7.txt	/*new-posix*
new-print-multi-byte	version7.txt	/*new-print-multi-byte*
new-printing	version6.txt	/*new-printing*
new-python3	version7.txt	/*new-python3*
new-regexp-engine	version7.txt	/*new-regexp-engine*
new-runtime-dir	version5.txt	/*new-runtime-dir*
new-script	version5.txt	/*new-script*
new-script-5.4	version5.txt	/*new-script-5.4*
new-scroll-back	version7.txt	/*new-scroll-back*
new-search-path	version6.txt	/*new-search-path*
new-searchpat	version6.txt	/*new-searchpat*
new-session-files	version5.txt	/*new-session-files*
new-spell	version7.txt	/*new-spell*
new-tab-pages	version7.txt	/*new-tab-pages*
new-undo-branches	version7.txt	/*new-undo-branches*
new-unlisted-buffers	version6.txt	/*new-unlisted-buffers*
new-user-defined	version5.txt	/*new-user-defined*
new-user-manual	version6.txt	/*new-user-manual*
new-utf-8	version6.txt	/*new-utf-8*
new-vertsplit	version6.txt	/*new-vertsplit*
new-vim-script	version7.txt	/*new-vim-script*
new-vim-server	version6.txt	/*new-vim-server*
new-vimgrep	version7.txt	/*new-vimgrep*
new-virtedit	version6.txt	/*new-virtedit*
news	intro.txt	/*news*
nextnonblank()	eval.txt	/*nextnonblank()*
nice	todo.txt	/*nice*
no-eval-feature	eval.txt	/*no-eval-feature*
no_buffers_menu	gui.txt	/*no_buffers_menu*
non-greedy	pattern.txt	/*non-greedy*
non-zero-arg	eval.txt	/*non-zero-arg*
normal-index	index.txt	/*normal-index*
not-compatible	usr_01.txt	/*not-compatible*
not-edited	editing.txt	/*not-edited*
notation	intro.txt	/*notation*
notepad	gui_w32.txt	/*notepad*
nr2char()	eval.txt	/*nr2char()*
nroff.vim	syntax.txt	/*nroff.vim*
number_relativenumber	options.txt	/*number_relativenumber*
numbered-function	eval.txt	/*numbered-function*
o	insert.txt	/*o*
o_CTRL-V	motion.txt	/*o_CTRL-V*
o_V	motion.txt	/*o_V*
o_v	motion.txt	/*o_v*
object-motions	motion.txt	/*object-motions*
object-select	motion.txt	/*object-select*
objects	index.txt	/*objects*
obtaining-exted	netbeans.txt	/*obtaining-exted*
ocaml.vim	syntax.txt	/*ocaml.vim*
octal	eval.txt	/*octal*
octal-nrformats	options.txt	/*octal-nrformats*
octal-number	eval.txt	/*octal-number*
oldfiles-variable	eval.txt	/*oldfiles-variable*
ole-activation	if_ole.txt	/*ole-activation*
ole-eval	if_ole.txt	/*ole-eval*
ole-gethwnd	if_ole.txt	/*ole-gethwnd*
ole-interface	if_ole.txt	/*ole-interface*
ole-methods	if_ole.txt	/*ole-methods*
ole-normal	if_ole.txt	/*ole-normal*
ole-registration	if_ole.txt	/*ole-registration*
ole-sendkeys	if_ole.txt	/*ole-sendkeys*
ole-setforeground	if_ole.txt	/*ole-setforeground*
omap-info	map.txt	/*omap-info*
omni-sql-completion	ft_sql.txt	/*omni-sql-completion*
online-help	helphelp.txt	/*online-help*
opening-window	windows.txt	/*opening-window*
operator	motion.txt	/*operator*
operator-variable	eval.txt	/*operator-variable*
option-backslash	options.txt	/*option-backslash*
option-list	quickref.txt	/*option-list*
option-summary	options.txt	/*option-summary*
option-window	options.txt	/*option-window*
options	options.txt	/*options*
options-changed	version5.txt	/*options-changed*
options.txt	options.txt	/*options.txt*
optwin	options.txt	/*optwin*
or()	eval.txt	/*or()*
oracle	ft_sql.txt	/*oracle*
os2	os_os2.txt	/*os2*
os2ansi	os_os2.txt	/*os2ansi*
os390	os_390.txt	/*os390*
os_390.txt	os_390.txt	/*os_390.txt*
os_amiga.txt	os_amiga.txt	/*os_amiga.txt*
os_beos.txt	os_beos.txt	/*os_beos.txt*
os_dos.txt	os_dos.txt	/*os_dos.txt*
os_mac.txt	os_mac.txt	/*os_mac.txt*
os_mint.txt	os_mint.txt	/*os_mint.txt*
os_msdos.txt	os_msdos.txt	/*os_msdos.txt*
os_os2.txt	os_os2.txt	/*os_os2.txt*
os_qnx.txt	os_qnx.txt	/*os_qnx.txt*
os_risc.txt	os_risc.txt	/*os_risc.txt*
os_unix.txt	os_unix.txt	/*os_unix.txt*
os_vms.txt	os_vms.txt	/*os_vms.txt*
os_win32.txt	os_win32.txt	/*os_win32.txt*
other-features	vi_diff.txt	/*other-features*
p	change.txt	/*p*
page-down	intro.txt	/*page-down*
page-up	intro.txt	/*page-up*
page_down	intro.txt	/*page_down*
page_up	intro.txt	/*page_up*
pager	message.txt	/*pager*
papp.vim	syntax.txt	/*papp.vim*
paragraph	motion.txt	/*paragraph*
pascal.vim	syntax.txt	/*pascal.vim*
pathshorten()	eval.txt	/*pathshorten()*
pattern	pattern.txt	/*pattern*
pattern-atoms	pattern.txt	/*pattern-atoms*
pattern-multi-byte	pattern.txt	/*pattern-multi-byte*
pattern-multi-items	pattern.txt	/*pattern-multi-items*
pattern-overview	pattern.txt	/*pattern-overview*
pattern-searches	pattern.txt	/*pattern-searches*
pattern.txt	pattern.txt	/*pattern.txt*
patterns-composing	pattern.txt	/*patterns-composing*
pdev-option	print.txt	/*pdev-option*
peace	intro.txt	/*peace*
penc-option	print.txt	/*penc-option*
perl	if_perl.txt	/*perl*
perl-Append	if_perl.txt	/*perl-Append*
perl-Buffer	if_perl.txt	/*perl-Buffer*
perl-Buffers	if_perl.txt	/*perl-Buffers*
perl-Count	if_perl.txt	/*perl-Count*
perl-Delete	if_perl.txt	/*perl-Delete*
perl-DoCommand	if_perl.txt	/*perl-DoCommand*
perl-Eval	if_perl.txt	/*perl-Eval*
perl-Get	if_perl.txt	/*perl-Get*
perl-GetCursor	if_perl.txt	/*perl-GetCursor*
perl-Msg	if_perl.txt	/*perl-Msg*
perl-Name	if_perl.txt	/*perl-Name*
perl-Number	if_perl.txt	/*perl-Number*
perl-Set	if_perl.txt	/*perl-Set*
perl-SetHeight	if_perl.txt	/*perl-SetHeight*
perl-SetOption	if_perl.txt	/*perl-SetOption*
perl-Windows	if_perl.txt	/*perl-Windows*
perl-compiling	if_perl.txt	/*perl-compiling*
perl-dynamic	if_perl.txt	/*perl-dynamic*
perl-editing	if_perl.txt	/*perl-editing*
perl-overview	if_perl.txt	/*perl-overview*
perl-patterns	pattern.txt	/*perl-patterns*
perl-using	if_perl.txt	/*perl-using*
perl.vim	syntax.txt	/*perl.vim*
persistent-undo	undo.txt	/*persistent-undo*
pexpr-option	print.txt	/*pexpr-option*
pfn-option	print.txt	/*pfn-option*
pheader-option	print.txt	/*pheader-option*
photon-fonts	os_qnx.txt	/*photon-fonts*
photon-gui	os_qnx.txt	/*photon-gui*
php-comment	indent.txt	/*php-comment*
php-indent	indent.txt	/*php-indent*
php-indenting	indent.txt	/*php-indenting*
php.vim	syntax.txt	/*php.vim*
php3.vim	syntax.txt	/*php3.vim*
phtml.vim	syntax.txt	/*phtml.vim*
pi_getscript.txt	pi_getscript.txt	/*pi_getscript.txt*
pi_gzip.txt	pi_gzip.txt	/*pi_gzip.txt*
pi_netrw.txt	pi_netrw.txt	/*pi_netrw.txt*
pi_paren.txt	pi_paren.txt	/*pi_paren.txt*
pi_spec.txt	pi_spec.txt	/*pi_spec.txt*
pi_tar.txt	pi_tar.txt	/*pi_tar.txt*
pi_vimball.txt	pi_vimball.txt	/*pi_vimball.txt*
pi_zip.txt	pi_zip.txt	/*pi_zip.txt*
pkzip	options.txt	/*pkzip*
plaintex.vim	syntax.txt	/*plaintex.vim*
plsql	ft_sql.txt	/*plsql*
plugin	usr_05.txt	/*plugin*
plugin-details	filetype.txt	/*plugin-details*
plugin-filetype	usr_41.txt	/*plugin-filetype*
plugin-special	usr_41.txt	/*plugin-special*
pmbcs-option	print.txt	/*pmbcs-option*
pmbfn-option	print.txt	/*pmbfn-option*
popt-option	print.txt	/*popt-option*
popup-menu	gui.txt	/*popup-menu*
popup-menu-added	version5.txt	/*popup-menu-added*
popupmenu-completion	insert.txt	/*popupmenu-completion*
popupmenu-keys	insert.txt	/*popupmenu-keys*
ports-5.2	version5.txt	/*ports-5.2*
ports-6	version6.txt	/*ports-6*
posix	vi_diff.txt	/*posix*
posix-compliance	vi_diff.txt	/*posix-compliance*
posix-screen-size	vi_diff.txt	/*posix-screen-size*
postgresql	ft_sql.txt	/*postgresql*
postscr.vim	syntax.txt	/*postscr.vim*
postscript-cjk-printing	print.txt	/*postscript-cjk-printing*
postscript-print-encoding	print.txt	/*postscript-print-encoding*
postscript-print-trouble	print.txt	/*postscript-print-trouble*
postscript-print-util	print.txt	/*postscript-print-util*
postscript-printing	print.txt	/*postscript-printing*
pow()	eval.txt	/*pow()*
ppwiz.vim	syntax.txt	/*ppwiz.vim*
press-enter	message.txt	/*press-enter*
press-return	message.txt	/*press-return*
prevcount-variable	eval.txt	/*prevcount-variable*
preview-window	windows.txt	/*preview-window*
prevnonblank()	eval.txt	/*prevnonblank()*
print-intro	print.txt	/*print-intro*
print-options	print.txt	/*print-options*
print.txt	print.txt	/*print.txt*
printf()	eval.txt	/*printf()*
printf-%	eval.txt	/*printf-%*
printf-E	eval.txt	/*printf-E*
printf-G	eval.txt	/*printf-G*
printf-X	eval.txt	/*printf-X*
printf-c	eval.txt	/*printf-c*
printf-d	eval.txt	/*printf-d*
printf-e	eval.txt	/*printf-e*
printf-f	eval.txt	/*printf-f*
printf-g	eval.txt	/*printf-g*
printf-o	eval.txt	/*printf-o*
printf-s	eval.txt	/*printf-s*
printf-x	eval.txt	/*printf-x*
printing	print.txt	/*printing*
printing-formfeed	print.txt	/*printing-formfeed*
profile	repeat.txt	/*profile*
profiling	repeat.txt	/*profiling*
profiling-variable	eval.txt	/*profiling-variable*
progname-variable	eval.txt	/*progname-variable*
progpath-variable	eval.txt	/*progpath-variable*
progress.vim	syntax.txt	/*progress.vim*
pronounce	intro.txt	/*pronounce*
psql	ft_sql.txt	/*psql*
ptcap.vim	syntax.txt	/*ptcap.vim*
pterm-mouse	options.txt	/*pterm-mouse*
pumvisible()	eval.txt	/*pumvisible()*
put	change.txt	/*put*
put-Visual-mode	change.txt	/*put-Visual-mode*
py3eval()	eval.txt	/*py3eval()*
pyeval()	eval.txt	/*pyeval()*
python	if_pyth.txt	/*python*
python-.locked	if_pyth.txt	/*python-.locked*
python-2-and-3	if_pyth.txt	/*python-2-and-3*
python-Dictionary	if_pyth.txt	/*python-Dictionary*
python-Function	if_pyth.txt	/*python-Function*
python-List	if_pyth.txt	/*python-List*
python-VIM_SPECIAL_PATH	if_pyth.txt	/*python-VIM_SPECIAL_PATH*
python-_get_paths	if_pyth.txt	/*python-_get_paths*
python-bindeval	if_pyth.txt	/*python-bindeval*
python-bindeval-objects	if_pyth.txt	/*python-bindeval-objects*
python-buffer	if_pyth.txt	/*python-buffer*
python-buffers	if_pyth.txt	/*python-buffers*
python-chdir	if_pyth.txt	/*python-chdir*
python-command	if_pyth.txt	/*python-command*
python-commands	if_pyth.txt	/*python-commands*
python-current	if_pyth.txt	/*python-current*
python-dynamic	if_pyth.txt	/*python-dynamic*
python-error	if_pyth.txt	/*python-error*
python-eval	if_pyth.txt	/*python-eval*
python-examples	if_pyth.txt	/*python-examples*
python-fchdir	if_pyth.txt	/*python-fchdir*
python-find_module	if_pyth.txt	/*python-find_module*
python-foreach_rtp	if_pyth.txt	/*python-foreach_rtp*
python-input	if_pyth.txt	/*python-input*
python-options	if_pyth.txt	/*python-options*
python-output	if_pyth.txt	/*python-output*
python-path_hook	if_pyth.txt	/*python-path_hook*
python-pyeval	if_pyth.txt	/*python-pyeval*
python-range	if_pyth.txt	/*python-range*
python-special-path	if_pyth.txt	/*python-special-path*
python-strwidth	if_pyth.txt	/*python-strwidth*
python-tabpage	if_pyth.txt	/*python-tabpage*
python-tabpages	if_pyth.txt	/*python-tabpages*
python-vars	if_pyth.txt	/*python-vars*
python-vim	if_pyth.txt	/*python-vim*
python-vvars	if_pyth.txt	/*python-vvars*
python-window	if_pyth.txt	/*python-window*
python-windows	if_pyth.txt	/*python-windows*
python.vim	syntax.txt	/*python.vim*
python2-directory	if_pyth.txt	/*python2-directory*
python3	if_pyth.txt	/*python3*
python3-directory	if_pyth.txt	/*python3-directory*
pythonx-directory	if_pyth.txt	/*pythonx-directory*
q	repeat.txt	/*q*
q/	cmdline.txt	/*q\/*
q:	cmdline.txt	/*q:*
q?	cmdline.txt	/*q?*
qnx	os_qnx.txt	/*qnx*
qnx-compiling	os_qnx.txt	/*qnx-compiling*
qnx-general	os_qnx.txt	/*qnx-general*
qnx-terminal	os_qnx.txt	/*qnx-terminal*
quake.vim	syntax.txt	/*quake.vim*
quickfix	quickfix.txt	/*quickfix*
quickfix-6	version6.txt	/*quickfix-6*
quickfix-directory-stack	quickfix.txt	/*quickfix-directory-stack*
quickfix-error-lists	quickfix.txt	/*quickfix-error-lists*
quickfix-functions	usr_41.txt	/*quickfix-functions*
quickfix-gcc	quickfix.txt	/*quickfix-gcc*
quickfix-manx	quickfix.txt	/*quickfix-manx*
quickfix-perl	quickfix.txt	/*quickfix-perl*
quickfix-valid	quickfix.txt	/*quickfix-valid*
quickfix-window	quickfix.txt	/*quickfix-window*
quickfix.txt	quickfix.txt	/*quickfix.txt*
quickref	quickref.txt	/*quickref*
quickref.txt	quickref.txt	/*quickref.txt*
quote	change.txt	/*quote*
quote#	change.txt	/*quote#*
quote%	change.txt	/*quote%*
quote+	gui_x11.txt	/*quote+*
quote-	change.txt	/*quote-*
quote.	change.txt	/*quote.*
quote/	change.txt	/*quote\/*
quote0	change.txt	/*quote0*
quote1	change.txt	/*quote1*
quote2	change.txt	/*quote2*
quote3	change.txt	/*quote3*
quote4	change.txt	/*quote4*
quote9	change.txt	/*quote9*
quote:	change.txt	/*quote:*
quote=	change.txt	/*quote=*
quote_	change.txt	/*quote_*
quote_#	change.txt	/*quote_#*
quote_%	change.txt	/*quote_%*
quote_-	change.txt	/*quote_-*
quote_.	change.txt	/*quote_.*
quote_/	change.txt	/*quote_\/*
quote_:	change.txt	/*quote_:*
quote_=	change.txt	/*quote_=*
quote_alpha	change.txt	/*quote_alpha*
quote_number	change.txt	/*quote_number*
quote_quote	change.txt	/*quote_quote*
quote_~	change.txt	/*quote_~*
quotea	change.txt	/*quotea*
quotecommandquote	intro.txt	/*quotecommandquote*
quoteplus	gui_x11.txt	/*quoteplus*
quotequote	change.txt	/*quotequote*
quotes	quotes.txt	/*quotes*
quotes.txt	quotes.txt	/*quotes.txt*
quotestar	gui.txt	/*quotestar*
quote~	change.txt	/*quote~*
r	change.txt	/*r*
range()	eval.txt	/*range()*
raw-terminal-mode	term.txt	/*raw-terminal-mode*
rcp	pi_netrw.txt	/*rcp*
read-messages	insert.txt	/*read-messages*
read-only-share	editing.txt	/*read-only-share*
read-stdin	version5.txt	/*read-stdin*
readfile()	eval.txt	/*readfile()*
readline.vim	syntax.txt	/*readline.vim*
recording	repeat.txt	/*recording*
recover.txt	recover.txt	/*recover.txt*
recovery	recover.txt	/*recovery*
recursive_mapping	map.txt	/*recursive_mapping*
redo	undo.txt	/*redo*
redo-register	undo.txt	/*redo-register*
ref	intro.txt	/*ref*
reference	intro.txt	/*reference*
reference_toc	help.txt	/*reference_toc*
regexp	pattern.txt	/*regexp*
regexp-changes-5.4	version5.txt	/*regexp-changes-5.4*
register	sponsor.txt	/*register*
register-faq	sponsor.txt	/*register-faq*
register-variable	eval.txt	/*register-variable*
registers	change.txt	/*registers*
regular-expression	pattern.txt	/*regular-expression*
reload	editing.txt	/*reload*
reltime()	eval.txt	/*reltime()*
reltimestr()	eval.txt	/*reltimestr()*
remote.txt	remote.txt	/*remote.txt*
remote_expr()	eval.txt	/*remote_expr()*
remote_foreground()	eval.txt	/*remote_foreground()*
remote_peek()	eval.txt	/*remote_peek()*
remote_read()	eval.txt	/*remote_read()*
remote_send()	eval.txt	/*remote_send()*
remove()	eval.txt	/*remove()*
remove-filetype	filetype.txt	/*remove-filetype*
remove-option-flags	options.txt	/*remove-option-flags*
rename()	eval.txt	/*rename()*
rename-files	tips.txt	/*rename-files*
repeat()	eval.txt	/*repeat()*
repeat.txt	repeat.txt	/*repeat.txt*
repeating	repeat.txt	/*repeating*
replacing	change.txt	/*replacing*
replacing-ex	insert.txt	/*replacing-ex*
reselect-Visual	visual.txt	/*reselect-Visual*
resolve()	eval.txt	/*resolve()*
restore-cursor	usr_05.txt	/*restore-cursor*
restore-position	tips.txt	/*restore-position*
restricted-mode	starting.txt	/*restricted-mode*
retab-example	change.txt	/*retab-example*
rethrow	eval.txt	/*rethrow*
reverse()	eval.txt	/*reverse()*
rexx.vim	syntax.txt	/*rexx.vim*
rgb.txt	gui_w32.txt	/*rgb.txt*
rgview	starting.txt	/*rgview*
rgvim	starting.txt	/*rgvim*
right-justify	change.txt	/*right-justify*
rileft	rileft.txt	/*rileft*
rileft.txt	rileft.txt	/*rileft.txt*
riscos	os_risc.txt	/*riscos*
rot13	change.txt	/*rot13*
round()	eval.txt	/*round()*
rst.vim	syntax.txt	/*rst.vim*
rsync	pi_netrw.txt	/*rsync*
ruby	if_ruby.txt	/*ruby*
ruby-buffer	if_ruby.txt	/*ruby-buffer*
ruby-command	if_ruby.txt	/*ruby-command*
ruby-commands	if_ruby.txt	/*ruby-commands*
ruby-dynamic	if_ruby.txt	/*ruby-dynamic*
ruby-evaluate	if_ruby.txt	/*ruby-evaluate*
ruby-globals	if_ruby.txt	/*ruby-globals*
ruby-message	if_ruby.txt	/*ruby-message*
ruby-set_option	if_ruby.txt	/*ruby-set_option*
ruby-vim	if_ruby.txt	/*ruby-vim*
ruby-window	if_ruby.txt	/*ruby-window*
ruby.vim	syntax.txt	/*ruby.vim*
russian	russian.txt	/*russian*
russian-intro	russian.txt	/*russian-intro*
russian-issues	russian.txt	/*russian-issues*
russian-keymap	russian.txt	/*russian-keymap*
russian-l18n	russian.txt	/*russian-l18n*
russian.txt	russian.txt	/*russian.txt*
rview	starting.txt	/*rview*
rvim	starting.txt	/*rvim*
rxvt	syntax.txt	/*rxvt*
s	change.txt	/*s*
s/\&	change.txt	/*s\/\\&*
s/\0	change.txt	/*s\/\\0*
s/\1	change.txt	/*s\/\\1*
s/\2	change.txt	/*s\/\\2*
s/\3	change.txt	/*s\/\\3*
s/\9	change.txt	/*s\/\\9*
s/\<CR>	change.txt	/*s\/\\<CR>*
s/\=	change.txt	/*s\/\\=*
s/\E	change.txt	/*s\/\\E*
s/\L	change.txt	/*s\/\\L*
s/\U	change.txt	/*s\/\\U*
s/\\	change.txt	/*s\/\\\\*
s/\b	change.txt	/*s\/\\b*
s/\e	change.txt	/*s\/\\e*
s/\l	change.txt	/*s\/\\l*
s/\n	change.txt	/*s\/\\n*
s/\r	change.txt	/*s\/\\r*
s/\t	change.txt	/*s\/\\t*
s/\u	change.txt	/*s\/\\u*
s/\~	change.txt	/*s\/\\~*
s:netrw_passwd	pi_netrw.txt	/*s:netrw_passwd*
s:var	eval.txt	/*s:var*
s<CR>	change.txt	/*s<CR>*
sandbox	eval.txt	/*sandbox*
sandbox-option	eval.txt	/*sandbox-option*
save-file	editing.txt	/*save-file*
save-settings	starting.txt	/*save-settings*
scheme.vim	syntax.txt	/*scheme.vim*
scp	pi_netrw.txt	/*scp*
screenattr()	eval.txt	/*screenattr()*
screenchar()	eval.txt	/*screenchar()*
screencol()	eval.txt	/*screencol()*
screenrow()	eval.txt	/*screenrow()*
script	usr_41.txt	/*script*
script-here	if_perl.txt	/*script-here*
script-local	map.txt	/*script-local*
script-variable	eval.txt	/*script-variable*
scriptnames-dictionary	eval.txt	/*scriptnames-dictionary*
scriptout-changed	version4.txt	/*scriptout-changed*
scroll-binding	scroll.txt	/*scroll-binding*
scroll-cursor	scroll.txt	/*scroll-cursor*
scroll-down	scroll.txt	/*scroll-down*
scroll-horizontal	scroll.txt	/*scroll-horizontal*
scroll-insert	tips.txt	/*scroll-insert*
scroll-mouse-wheel	scroll.txt	/*scroll-mouse-wheel*
scroll-region	term.txt	/*scroll-region*
scroll-smooth	tips.txt	/*scroll-smooth*
scroll-up	scroll.txt	/*scroll-up*
scroll.txt	scroll.txt	/*scroll.txt*
scrollbind-quickadj	scroll.txt	/*scrollbind-quickadj*
scrollbind-relative	scroll.txt	/*scrollbind-relative*
scrolling	scroll.txt	/*scrolling*
scrollstart-variable	eval.txt	/*scrollstart-variable*
sdl.vim	syntax.txt	/*sdl.vim*
search()	eval.txt	/*search()*
search()-sub-match	eval.txt	/*search()-sub-match*
search-commands	pattern.txt	/*search-commands*
search-offset	pattern.txt	/*search-offset*
search-pattern	pattern.txt	/*search-pattern*
search-range	pattern.txt	/*search-range*
search-replace	change.txt	/*search-replace*
searchdecl()	eval.txt	/*searchdecl()*
searchforward-variable	eval.txt	/*searchforward-variable*
searchpair()	eval.txt	/*searchpair()*
searchpairpos()	eval.txt	/*searchpairpos()*
searchpos()	eval.txt	/*searchpos()*
section	motion.txt	/*section*
sed.vim	syntax.txt	/*sed.vim*
self	eval.txt	/*self*
send-money	sponsor.txt	/*send-money*
send-to-menu	gui_w32.txt	/*send-to-menu*
sendto	gui_w32.txt	/*sendto*
sentence	motion.txt	/*sentence*
server-functions	usr_41.txt	/*server-functions*
server2client()	eval.txt	/*server2client()*
serverlist()	eval.txt	/*serverlist()*
servername-variable	eval.txt	/*servername-variable*
session-file	starting.txt	/*session-file*
set-option	options.txt	/*set-option*
set-spc-auto	spell.txt	/*set-spc-auto*
setbufvar()	eval.txt	/*setbufvar()*
setcmdpos()	eval.txt	/*setcmdpos()*
setline()	eval.txt	/*setline()*
setloclist()	eval.txt	/*setloclist()*
setmatches()	eval.txt	/*setmatches()*
setpos()	eval.txt	/*setpos()*
setqflist()	eval.txt	/*setqflist()*
setreg()	eval.txt	/*setreg()*
settabvar()	eval.txt	/*settabvar()*
settabwinvar()	eval.txt	/*settabwinvar()*
setting-guifont	gui.txt	/*setting-guifont*
setting-guitablabel	tabpage.txt	/*setting-guitablabel*
setting-tabline	tabpage.txt	/*setting-tabline*
setuid	change.txt	/*setuid*
setwinvar()	eval.txt	/*setwinvar()*
sftp	pi_netrw.txt	/*sftp*
sgml.vim	syntax.txt	/*sgml.vim*
sgr-mouse	options.txt	/*sgr-mouse*
sh-awk	syntax.txt	/*sh-awk*
sh-embed	syntax.txt	/*sh-embed*
sh.vim	syntax.txt	/*sh.vim*
sha256()	eval.txt	/*sha256()*
shell-window	tips.txt	/*shell-window*
shell_error-variable	eval.txt	/*shell_error-variable*
shellescape()	eval.txt	/*shellescape()*
shift	intro.txt	/*shift*
shift-left-right	change.txt	/*shift-left-right*
shiftwidth()	eval.txt	/*shiftwidth()*
short-name-changed	version4.txt	/*short-name-changed*
showing-menus	gui.txt	/*showing-menus*
sign-commands	sign.txt	/*sign-commands*
sign-intro	sign.txt	/*sign-intro*
sign-support	sign.txt	/*sign-support*
sign.txt	sign.txt	/*sign.txt*
signs	sign.txt	/*signs*
simple-change	change.txt	/*simple-change*
simplify()	eval.txt	/*simplify()*
simulated-command	vi_diff.txt	/*simulated-command*
sin()	eval.txt	/*sin()*
single-repeat	repeat.txt	/*single-repeat*
sinh()	eval.txt	/*sinh()*
skeleton	autocmd.txt	/*skeleton*
slice	eval.txt	/*slice*
slow-fast-terminal	term.txt	/*slow-fast-terminal*
slow-start	starting.txt	/*slow-start*
slow-terminal	term.txt	/*slow-terminal*
sniff	if_sniff.txt	/*sniff*
sniff-commands	if_sniff.txt	/*sniff-commands*
sniff-compiling	if_sniff.txt	/*sniff-compiling*
sniff-intro	if_sniff.txt	/*sniff-intro*
socket-interface	netbeans.txt	/*socket-interface*
sort()	eval.txt	/*sort()*
sorting	change.txt	/*sorting*
soundfold()	eval.txt	/*soundfold()*
space	intro.txt	/*space*
spec-customizing	pi_spec.txt	/*spec-customizing*
spec-how-to-use-it	pi_spec.txt	/*spec-how-to-use-it*
spec-setting-a-map	pi_spec.txt	/*spec-setting-a-map*
spec_chglog_format	pi_spec.txt	/*spec_chglog_format*
spec_chglog_prepend	pi_spec.txt	/*spec_chglog_prepend*
spec_chglog_release_info	pi_spec.txt	/*spec_chglog_release_info*
special-buffers	windows.txt	/*special-buffers*
speed-up	tips.txt	/*speed-up*
spell	spell.txt	/*spell*
spell-ACCENT	spell.txt	/*spell-ACCENT*
spell-AUTHOR	spell.txt	/*spell-AUTHOR*
spell-BAD	spell.txt	/*spell-BAD*
spell-BREAK	spell.txt	/*spell-BREAK*
spell-CHECKCOMPOUNDCASE	spell.txt	/*spell-CHECKCOMPOUNDCASE*
spell-CHECKCOMPOUNDDUP	spell.txt	/*spell-CHECKCOMPOUNDDUP*
spell-CHECKCOMPOUNDPATTERN	spell.txt	/*spell-CHECKCOMPOUNDPATTERN*
spell-CHECKCOMPOUNDREP	spell.txt	/*spell-CHECKCOMPOUNDREP*
spell-CHECKCOMPOUNDTRIPLE	spell.txt	/*spell-CHECKCOMPOUNDTRIPLE*
spell-CIRCUMFIX	spell.txt	/*spell-CIRCUMFIX*
spell-COMMON	spell.txt	/*spell-COMMON*
spell-COMPLEXPREFIXES	spell.txt	/*spell-COMPLEXPREFIXES*
spell-COMPOUND	spell.txt	/*spell-COMPOUND*
spell-COMPOUNDBEGIN	spell.txt	/*spell-COMPOUNDBEGIN*
spell-COMPOUNDEND	spell.txt	/*spell-COMPOUNDEND*
spell-COMPOUNDFIRST	spell.txt	/*spell-COMPOUNDFIRST*
spell-COMPOUNDFLAG	spell.txt	/*spell-COMPOUNDFLAG*
spell-COMPOUNDFORBIDFLAG	spell.txt	/*spell-COMPOUNDFORBIDFLAG*
spell-COMPOUNDMIDDLE	spell.txt	/*spell-COMPOUNDMIDDLE*
spell-COMPOUNDMIN	spell.txt	/*spell-COMPOUNDMIN*
spell-COMPOUNDPERMITFLAG	spell.txt	/*spell-COMPOUNDPERMITFLAG*
spell-COMPOUNDROOT	spell.txt	/*spell-COMPOUNDROOT*
spell-COMPOUNDRULE	spell.txt	/*spell-COMPOUNDRULE*
spell-COMPOUNDRULES	spell.txt	/*spell-COMPOUNDRULES*
spell-COMPOUNDSYLLABLE	spell.txt	/*spell-COMPOUNDSYLLABLE*
spell-COMPOUNDSYLMAX	spell.txt	/*spell-COMPOUNDSYLMAX*
spell-COMPOUNDWORDMAX	spell.txt	/*spell-COMPOUNDWORDMAX*
spell-COPYRIGHT	spell.txt	/*spell-COPYRIGHT*
spell-EMAIL	spell.txt	/*spell-EMAIL*
spell-FLAG	spell.txt	/*spell-FLAG*
spell-FOL	spell.txt	/*spell-FOL*
spell-FORBIDDENWORD	spell.txt	/*spell-FORBIDDENWORD*
spell-HOME	spell.txt	/*spell-HOME*
spell-KEEPCASE	spell.txt	/*spell-KEEPCASE*
spell-KEY	spell.txt	/*spell-KEY*
spell-LANG	spell.txt	/*spell-LANG*
spell-LEMMA_PRESENT	spell.txt	/*spell-LEMMA_PRESENT*
spell-LOW	spell.txt	/*spell-LOW*
spell-MAP	spell.txt	/*spell-MAP*
spell-MAXNGRAMSUGS	spell.txt	/*spell-MAXNGRAMSUGS*
spell-NAME	spell.txt	/*spell-NAME*
spell-NEEDAFFIX	spell.txt	/*spell-NEEDAFFIX*
spell-NEEDCOMPOUND	spell.txt	/*spell-NEEDCOMPOUND*
spell-NOBREAK	spell.txt	/*spell-NOBREAK*
spell-NOSPLITSUGS	spell.txt	/*spell-NOSPLITSUGS*
spell-NOSUGFILE	spell.txt	/*spell-NOSUGFILE*
spell-NOSUGGEST	spell.txt	/*spell-NOSUGGEST*
spell-ONLYINCOMPOUND	spell.txt	/*spell-ONLYINCOMPOUND*
spell-PFX	spell.txt	/*spell-PFX*
spell-PFXPOSTPONE	spell.txt	/*spell-PFXPOSTPONE*
spell-PSEUDOROOT	spell.txt	/*spell-PSEUDOROOT*
spell-RARE	spell.txt	/*spell-RARE*
spell-REP	spell.txt	/*spell-REP*
spell-SAL	spell.txt	/*spell-SAL*
spell-SET	spell.txt	/*spell-SET*
spell-SFX	spell.txt	/*spell-SFX*
spell-SLASH	spell.txt	/*spell-SLASH*
spell-SOFOFROM	spell.txt	/*spell-SOFOFROM*
spell-SOFOTO	spell.txt	/*spell-SOFOTO*
spell-SUGSWITHDOTS	spell.txt	/*spell-SUGSWITHDOTS*
spell-SYLLABLE	spell.txt	/*spell-SYLLABLE*
spell-SYLLABLENUM	spell.txt	/*spell-SYLLABLENUM*
spell-SpellFileMissing	spell.txt	/*spell-SpellFileMissing*
spell-TRY	spell.txt	/*spell-TRY*
spell-UPP	spell.txt	/*spell-UPP*
spell-VERSION	spell.txt	/*spell-VERSION*
spell-WORDCHARS	spell.txt	/*spell-WORDCHARS*
spell-aff-format	spell.txt	/*spell-aff-format*
spell-affix-chars	spell.txt	/*spell-affix-chars*
spell-affix-comment	spell.txt	/*spell-affix-comment*
spell-affix-flags	spell.txt	/*spell-affix-flags*
spell-affix-mbyte	spell.txt	/*spell-affix-mbyte*
spell-affix-not-supported	spell.txt	/*spell-affix-not-supported*
spell-affix-vim	spell.txt	/*spell-affix-vim*
spell-cjk	spell.txt	/*spell-cjk*
spell-compound	spell.txt	/*spell-compound*
spell-dic-format	spell.txt	/*spell-dic-format*
spell-double-scoring	spell.txt	/*spell-double-scoring*
spell-file-format	spell.txt	/*spell-file-format*
spell-functions	usr_41.txt	/*spell-functions*
spell-german	spell.txt	/*spell-german*
spell-load	spell.txt	/*spell-load*
spell-midword	spell.txt	/*spell-midword*
spell-mkspell	spell.txt	/*spell-mkspell*
spell-quickstart	spell.txt	/*spell-quickstart*
spell-remarks	spell.txt	/*spell-remarks*
spell-russian	spell.txt	/*spell-russian*
spell-sug-file	spell.txt	/*spell-sug-file*
spell-syntax	spell.txt	/*spell-syntax*
spell-wordlist-format	spell.txt	/*spell-wordlist-format*
spell-yiddish	spell.txt	/*spell-yiddish*
spell.txt	spell.txt	/*spell.txt*
spellbadword()	eval.txt	/*spellbadword()*
spellfile-cleanup	spell.txt	/*spellfile-cleanup*
spellfile.vim	spell.txt	/*spellfile.vim*
spellsuggest()	eval.txt	/*spellsuggest()*
split()	eval.txt	/*split()*
splitfind	windows.txt	/*splitfind*
splitview	windows.txt	/*splitview*
sponsor	sponsor.txt	/*sponsor*
sponsor-faq	sponsor.txt	/*sponsor-faq*
sponsor.txt	sponsor.txt	/*sponsor.txt*
spoon	os_unix.txt	/*spoon*
spup.vim	syntax.txt	/*spup.vim*
sql-adding-dialects	ft_sql.txt	/*sql-adding-dialects*
sql-completion	ft_sql.txt	/*sql-completion*
sql-completion-columns	ft_sql.txt	/*sql-completion-columns*
sql-completion-customization	ft_sql.txt	/*sql-completion-customization*
sql-completion-dynamic	ft_sql.txt	/*sql-completion-dynamic*
sql-completion-filetypes	ft_sql.txt	/*sql-completion-filetypes*
sql-completion-maps	ft_sql.txt	/*sql-completion-maps*
sql-completion-procedures	ft_sql.txt	/*sql-completion-procedures*
sql-completion-static	ft_sql.txt	/*sql-completion-static*
sql-completion-tables	ft_sql.txt	/*sql-completion-tables*
sql-completion-tutorial	ft_sql.txt	/*sql-completion-tutorial*
sql-completion-views	ft_sql.txt	/*sql-completion-views*
sql-dialects	ft_sql.txt	/*sql-dialects*
sql-macros	ft_sql.txt	/*sql-macros*
sql-matchit	ft_sql.txt	/*sql-matchit*
sql-navigation	ft_sql.txt	/*sql-navigation*
sql-object-motions	ft_sql.txt	/*sql-object-motions*
sql-predefined-objects	ft_sql.txt	/*sql-predefined-objects*
sql-type-default	ft_sql.txt	/*sql-type-default*
sql-types	ft_sql.txt	/*sql-types*
sql.vim	syntax.txt	/*sql.vim*
sqlanywhere	ft_sql.txt	/*sqlanywhere*
sqlanywhere.vim	syntax.txt	/*sqlanywhere.vim*
sqlgettype	ft_sql.txt	/*sqlgettype*
sqlinformix.vim	syntax.txt	/*sqlinformix.vim*
sqlj	ft_sql.txt	/*sqlj*
sqlserver	ft_sql.txt	/*sqlserver*
sqlsettype	ft_sql.txt	/*sqlsettype*
sqrt()	eval.txt	/*sqrt()*
sscanf	eval.txt	/*sscanf*
standard-plugin	usr_05.txt	/*standard-plugin*
standard-plugin-list	help.txt	/*standard-plugin-list*
standout	syntax.txt	/*standout*
star	pattern.txt	/*star*
starstar	editing.txt	/*starstar*
starstar-wildcard	editing.txt	/*starstar-wildcard*
start-of-file	pattern.txt	/*start-of-file*
starting	starting.txt	/*starting*
starting-amiga	starting.txt	/*starting-amiga*
starting.txt	starting.txt	/*starting.txt*
startup	starting.txt	/*startup*
startup-options	starting.txt	/*startup-options*
startup-terminal	term.txt	/*startup-terminal*
static-tag	tagsrch.txt	/*static-tag*
status-line	windows.txt	/*status-line*
statusmsg-variable	eval.txt	/*statusmsg-variable*
sticky-type-checking	eval.txt	/*sticky-type-checking*
str2float()	eval.txt	/*str2float()*
str2nr()	eval.txt	/*str2nr()*
strcasestr()	eval.txt	/*strcasestr()*
strchars()	eval.txt	/*strchars()*
strchr()	eval.txt	/*strchr()*
strcspn()	eval.txt	/*strcspn()*
strdisplaywidth()	eval.txt	/*strdisplaywidth()*
strftime()	eval.txt	/*strftime()*
stridx()	eval.txt	/*stridx()*
string	eval.txt	/*string*
string()	eval.txt	/*string()*
string-functions	usr_41.txt	/*string-functions*
string-match	eval.txt	/*string-match*
strlen()	eval.txt	/*strlen()*
strpart()	eval.txt	/*strpart()*
strpbrk()	eval.txt	/*strpbrk()*
strrchr()	eval.txt	/*strrchr()*
strridx()	eval.txt	/*strridx()*
strspn()	eval.txt	/*strspn()*
strstr()	eval.txt	/*strstr()*
strtrans()	eval.txt	/*strtrans()*
strwidth()	eval.txt	/*strwidth()*
style-changes	develop.txt	/*style-changes*
style-examples	develop.txt	/*style-examples*
style-functions	develop.txt	/*style-functions*
style-names	develop.txt	/*style-names*
style-spaces	develop.txt	/*style-spaces*
style-various	develop.txt	/*style-various*
sub-menu-priority	gui.txt	/*sub-menu-priority*
sub-replace-\=	change.txt	/*sub-replace-\\=*
sub-replace-expression	change.txt	/*sub-replace-expression*
sub-replace-special	change.txt	/*sub-replace-special*
sublist	eval.txt	/*sublist*
submatch()	eval.txt	/*submatch()*
subscribe-maillist	intro.txt	/*subscribe-maillist*
substitute()	eval.txt	/*substitute()*
substitute-CR	version6.txt	/*substitute-CR*
suffixes	cmdline.txt	/*suffixes*
suspend	starting.txt	/*suspend*
swap-exists-choices	usr_11.txt	/*swap-exists-choices*
swap-file	recover.txt	/*swap-file*
swapchoice-variable	eval.txt	/*swapchoice-variable*
swapcommand-variable	eval.txt	/*swapcommand-variable*
swapfile-changed	version4.txt	/*swapfile-changed*
swapname-variable	eval.txt	/*swapname-variable*
sybase	ft_sql.txt	/*sybase*
syn-sync-grouphere	syntax.txt	/*syn-sync-grouphere*
syn-sync-groupthere	syntax.txt	/*syn-sync-groupthere*
syn-sync-linecont	syntax.txt	/*syn-sync-linecont*
synID()	eval.txt	/*synID()*
synIDattr()	eval.txt	/*synIDattr()*
synIDtrans()	eval.txt	/*synIDtrans()*
syncbind	scroll.txt	/*syncbind*
syncolor	syntax.txt	/*syncolor*
synconcealed()	eval.txt	/*synconcealed()*
synload-1	syntax.txt	/*synload-1*
synload-2	syntax.txt	/*synload-2*
synload-3	syntax.txt	/*synload-3*
synload-4	syntax.txt	/*synload-4*
synload-5	syntax.txt	/*synload-5*
synload-6	syntax.txt	/*synload-6*
synstack()	eval.txt	/*synstack()*
syntax	syntax.txt	/*syntax*
syntax-functions	usr_41.txt	/*syntax-functions*
syntax-highlighting	syntax.txt	/*syntax-highlighting*
syntax-loading	syntax.txt	/*syntax-loading*
syntax-printing	usr_06.txt	/*syntax-printing*
syntax.txt	syntax.txt	/*syntax.txt*
syntax_cmd	syntax.txt	/*syntax_cmd*
sys-file-list	help.txt	/*sys-file-list*
sysmouse	term.txt	/*sysmouse*
system()	eval.txt	/*system()*
system-functions	usr_41.txt	/*system-functions*
system-vimrc	starting.txt	/*system-vimrc*
systemlist()	eval.txt	/*systemlist()*
s~	change.txt	/*s~*
t	motion.txt	/*t*
t:	eval.txt	/*t:*
t:var	eval.txt	/*t:var*
t_#2	term.txt	/*t_#2*
t_#4	term.txt	/*t_#4*
t_%1	term.txt	/*t_%1*
t_%i	term.txt	/*t_%i*
t_&8	term.txt	/*t_&8*
t_@7	term.txt	/*t_@7*
t_AB	term.txt	/*t_AB*
t_AF	term.txt	/*t_AF*
t_AL	term.txt	/*t_AL*
t_CS	term.txt	/*t_CS*
t_CV	term.txt	/*t_CV*
t_Ce	term.txt	/*t_Ce*
t_Co	term.txt	/*t_Co*
t_Cs	term.txt	/*t_Cs*
t_DL	term.txt	/*t_DL*
t_EI	term.txt	/*t_EI*
t_F1	term.txt	/*t_F1*
t_F2	term.txt	/*t_F2*
t_F3	term.txt	/*t_F3*
t_F4	term.txt	/*t_F4*
t_F5	term.txt	/*t_F5*
t_F6	term.txt	/*t_F6*
t_F7	term.txt	/*t_F7*
t_F8	term.txt	/*t_F8*
t_F9	term.txt	/*t_F9*
t_IE	term.txt	/*t_IE*
t_IS	term.txt	/*t_IS*
t_K1	term.txt	/*t_K1*
t_K3	term.txt	/*t_K3*
t_K4	term.txt	/*t_K4*
t_K5	term.txt	/*t_K5*
t_K6	term.txt	/*t_K6*
t_K7	term.txt	/*t_K7*
t_K8	term.txt	/*t_K8*
t_K9	term.txt	/*t_K9*
t_KA	term.txt	/*t_KA*
t_KB	term.txt	/*t_KB*
t_KC	term.txt	/*t_KC*
t_KD	term.txt	/*t_KD*
t_KE	term.txt	/*t_KE*
t_KF	term.txt	/*t_KF*
t_KG	term.txt	/*t_KG*
t_KH	term.txt	/*t_KH*
t_KI	term.txt	/*t_KI*
t_KJ	term.txt	/*t_KJ*
t_KK	term.txt	/*t_KK*
t_KL	term.txt	/*t_KL*
t_RI	term.txt	/*t_RI*
t_RV	term.txt	/*t_RV*
t_SI	term.txt	/*t_SI*
t_Sb	term.txt	/*t_Sb*
t_Sf	term.txt	/*t_Sf*
t_WP	term.txt	/*t_WP*
t_WS	term.txt	/*t_WS*
t_ZH	term.txt	/*t_ZH*
t_ZR	term.txt	/*t_ZR*
t_al	term.txt	/*t_al*
t_bc	term.txt	/*t_bc*
t_cd	term.txt	/*t_cd*
t_cdl	version4.txt	/*t_cdl*
t_ce	term.txt	/*t_ce*
t_ci	version4.txt	/*t_ci*
t_cil	version4.txt	/*t_cil*
t_cl	term.txt	/*t_cl*
t_cm	term.txt	/*t_cm*
t_cri	version4.txt	/*t_cri*
t_cs	term.txt	/*t_cs*
t_csc	version4.txt	/*t_csc*
t_cv	version4.txt	/*t_cv*
t_cvv	version4.txt	/*t_cvv*
t_da	term.txt	/*t_da*
t_db	term.txt	/*t_db*
t_dl	term.txt	/*t_dl*
t_ed	version4.txt	/*t_ed*
t_el	version4.txt	/*t_el*
t_f1	version4.txt	/*t_f1*
t_f10	version4.txt	/*t_f10*
t_f2	version4.txt	/*t_f2*
t_f3	version4.txt	/*t_f3*
t_f4	version4.txt	/*t_f4*
t_f5	version4.txt	/*t_f5*
t_f6	version4.txt	/*t_f6*
t_f7	version4.txt	/*t_f7*
t_f8	version4.txt	/*t_f8*
t_f9	version4.txt	/*t_f9*
t_fs	term.txt	/*t_fs*
t_help	version4.txt	/*t_help*
t_il	version4.txt	/*t_il*
t_k1	term.txt	/*t_k1*
t_k2	term.txt	/*t_k2*
t_k3	term.txt	/*t_k3*
t_k4	term.txt	/*t_k4*
t_k5	term.txt	/*t_k5*
t_k6	term.txt	/*t_k6*
t_k7	term.txt	/*t_k7*
t_k8	term.txt	/*t_k8*
t_k9	term.txt	/*t_k9*
t_k;	term.txt	/*t_k;*
t_kB	term.txt	/*t_kB*
t_kD	term.txt	/*t_kD*
t_kI	term.txt	/*t_kI*
t_kN	term.txt	/*t_kN*
t_kP	term.txt	/*t_kP*
t_kb	term.txt	/*t_kb*
t_kd	term.txt	/*t_kd*
t_ke	term.txt	/*t_ke*
t_kh	term.txt	/*t_kh*
t_kl	term.txt	/*t_kl*
t_kr	term.txt	/*t_kr*
t_ks	term.txt	/*t_ks*
t_ku	term.txt	/*t_ku*
t_le	term.txt	/*t_le*
t_mb	term.txt	/*t_mb*
t_md	term.txt	/*t_md*
t_me	term.txt	/*t_me*
t_mr	term.txt	/*t_mr*
t_ms	term.txt	/*t_ms*
t_nd	term.txt	/*t_nd*
t_op	term.txt	/*t_op*
t_se	term.txt	/*t_se*
t_sf1	version4.txt	/*t_sf1*
t_sf10	version4.txt	/*t_sf10*
t_sf2	version4.txt	/*t_sf2*
t_sf3	version4.txt	/*t_sf3*
t_sf4	version4.txt	/*t_sf4*
t_sf5	version4.txt	/*t_sf5*
t_sf6	version4.txt	/*t_sf6*
t_sf7	version4.txt	/*t_sf7*
t_sf8	version4.txt	/*t_sf8*
t_sf9	version4.txt	/*t_sf9*
t_skd	version4.txt	/*t_skd*
t_skl	version4.txt	/*t_skl*
t_skr	version4.txt	/*t_skr*
t_sku	version4.txt	/*t_sku*
t_so	term.txt	/*t_so*
t_sr	term.txt	/*t_sr*
t_star7	term.txt	/*t_star7*
t_tb	version4.txt	/*t_tb*
t_te	term.txt	/*t_te*
t_ti	term.txt	/*t_ti*
t_tp	version4.txt	/*t_tp*
t_ts	term.txt	/*t_ts*
t_ts_old	version4.txt	/*t_ts_old*
t_u7	term.txt	/*t_u7*
t_ue	term.txt	/*t_ue*
t_undo	version4.txt	/*t_undo*
t_us	term.txt	/*t_us*
t_ut	term.txt	/*t_ut*
t_vb	term.txt	/*t_vb*
t_ve	term.txt	/*t_ve*
t_vi	term.txt	/*t_vi*
t_vs	term.txt	/*t_vs*
t_xs	term.txt	/*t_xs*
tab	intro.txt	/*tab*
tab-page	tabpage.txt	/*tab-page*
tab-page-commands	tabpage.txt	/*tab-page-commands*
tab-page-intro	tabpage.txt	/*tab-page-intro*
tab-page-other	tabpage.txt	/*tab-page-other*
tabline-menu	tabpage.txt	/*tabline-menu*
tabpage	tabpage.txt	/*tabpage*
tabpage-variable	eval.txt	/*tabpage-variable*
tabpage.txt	tabpage.txt	/*tabpage.txt*
tabpagebuflist()	eval.txt	/*tabpagebuflist()*
tabpagenr()	eval.txt	/*tabpagenr()*
tabpagewinnr()	eval.txt	/*tabpagewinnr()*
tag	tagsrch.txt	/*tag*
tag-!	tagsrch.txt	/*tag-!*
tag-any-white	tagsrch.txt	/*tag-any-white*
tag-binary-search	tagsrch.txt	/*tag-binary-search*
tag-blocks	motion.txt	/*tag-blocks*
tag-commands	tagsrch.txt	/*tag-commands*
tag-details	tagsrch.txt	/*tag-details*
tag-highlight	syntax.txt	/*tag-highlight*
tag-matchlist	tagsrch.txt	/*tag-matchlist*
tag-old-static	tagsrch.txt	/*tag-old-static*
tag-overloaded	version5.txt	/*tag-overloaded*
tag-preview	tagsrch.txt	/*tag-preview*
tag-priority	tagsrch.txt	/*tag-priority*
tag-regexp	tagsrch.txt	/*tag-regexp*
tag-search	tagsrch.txt	/*tag-search*
tag-security	tagsrch.txt	/*tag-security*
tag-skip-file	tagsrch.txt	/*tag-skip-file*
tag-stack	tagsrch.txt	/*tag-stack*
tagfiles()	eval.txt	/*tagfiles()*
taglist()	eval.txt	/*taglist()*
tags	tagsrch.txt	/*tags*
tags-and-searches	tagsrch.txt	/*tags-and-searches*
tags-file-changed	version5.txt	/*tags-file-changed*
tags-file-format	tagsrch.txt	/*tags-file-format*
tags-option	tagsrch.txt	/*tags-option*
tagsrch.txt	tagsrch.txt	/*tagsrch.txt*
tagstack	tagsrch.txt	/*tagstack*
tan()	eval.txt	/*tan()*
tanh()	eval.txt	/*tanh()*
tar	pi_tar.txt	/*tar*
tar-contents	pi_tar.txt	/*tar-contents*
tar-copyright	pi_tar.txt	/*tar-copyright*
tar-history	pi_tar.txt	/*tar-history*
tar-manual	pi_tar.txt	/*tar-manual*
tar-options	pi_tar.txt	/*tar-options*
tar-usage	pi_tar.txt	/*tar-usage*
tcl	if_tcl.txt	/*tcl*
tcl-beep	if_tcl.txt	/*tcl-beep*
tcl-buffer	if_tcl.txt	/*tcl-buffer*
tcl-buffer-append	if_tcl.txt	/*tcl-buffer-append*
tcl-buffer-cmds	if_tcl.txt	/*tcl-buffer-cmds*
tcl-buffer-command	if_tcl.txt	/*tcl-buffer-command*
tcl-buffer-count	if_tcl.txt	/*tcl-buffer-count*
tcl-buffer-delcmd	if_tcl.txt	/*tcl-buffer-delcmd*
tcl-buffer-delete	if_tcl.txt	/*tcl-buffer-delete*
tcl-buffer-expr	if_tcl.txt	/*tcl-buffer-expr*
tcl-buffer-get	if_tcl.txt	/*tcl-buffer-get*
tcl-buffer-insert	if_tcl.txt	/*tcl-buffer-insert*
tcl-buffer-last	if_tcl.txt	/*tcl-buffer-last*
tcl-buffer-mark	if_tcl.txt	/*tcl-buffer-mark*
tcl-buffer-option	if_tcl.txt	/*tcl-buffer-option*
tcl-buffer-set	if_tcl.txt	/*tcl-buffer-set*
tcl-buffer-windows	if_tcl.txt	/*tcl-buffer-windows*
tcl-bugs	if_tcl.txt	/*tcl-bugs*
tcl-command	if_tcl.txt	/*tcl-command*
tcl-commands	if_tcl.txt	/*tcl-commands*
tcl-dynamic	if_tcl.txt	/*tcl-dynamic*
tcl-ex-commands	if_tcl.txt	/*tcl-ex-commands*
tcl-examples	if_tcl.txt	/*tcl-examples*
tcl-expr	if_tcl.txt	/*tcl-expr*
tcl-linenumbers	if_tcl.txt	/*tcl-linenumbers*
tcl-misc	if_tcl.txt	/*tcl-misc*
tcl-option	if_tcl.txt	/*tcl-option*
tcl-output	if_tcl.txt	/*tcl-output*
tcl-var-current	if_tcl.txt	/*tcl-var-current*
tcl-var-lbase	if_tcl.txt	/*tcl-var-lbase*
tcl-var-line	if_tcl.txt	/*tcl-var-line*
tcl-var-lnum	if_tcl.txt	/*tcl-var-lnum*
tcl-var-range	if_tcl.txt	/*tcl-var-range*
tcl-variables	if_tcl.txt	/*tcl-variables*
tcl-window	if_tcl.txt	/*tcl-window*
tcl-window-buffer	if_tcl.txt	/*tcl-window-buffer*
tcl-window-cmds	if_tcl.txt	/*tcl-window-cmds*
tcl-window-command	if_tcl.txt	/*tcl-window-command*
tcl-window-cursor	if_tcl.txt	/*tcl-window-cursor*
tcl-window-delcmd	if_tcl.txt	/*tcl-window-delcmd*
tcl-window-expr	if_tcl.txt	/*tcl-window-expr*
tcl-window-height	if_tcl.txt	/*tcl-window-height*
tcl-window-option	if_tcl.txt	/*tcl-window-option*
tcsh-style	cmdline.txt	/*tcsh-style*
tcsh.vim	syntax.txt	/*tcsh.vim*
tear-off-menus	gui.txt	/*tear-off-menus*
telnet-CTRL-]	tagsrch.txt	/*telnet-CTRL-]*
temp-file-name	eval.txt	/*temp-file-name*
tempfile	change.txt	/*tempfile*
template	autocmd.txt	/*template*
tempname()	eval.txt	/*tempname()*
term-dependent-settings	term.txt	/*term-dependent-settings*
term-list	syntax.txt	/*term-list*
term.txt	term.txt	/*term.txt*
termcap	term.txt	/*termcap*
termcap-changed	version4.txt	/*termcap-changed*
termcap-colors	term.txt	/*termcap-colors*
termcap-cursor-color	term.txt	/*termcap-cursor-color*
termcap-cursor-shape	term.txt	/*termcap-cursor-shape*
termcap-options	term.txt	/*termcap-options*
termcap-title	term.txt	/*termcap-title*
terminal-colors	os_unix.txt	/*terminal-colors*
terminal-info	term.txt	/*terminal-info*
terminal-options	term.txt	/*terminal-options*
terminfo	term.txt	/*terminfo*
termresponse-variable	eval.txt	/*termresponse-variable*
tex-cchar	syntax.txt	/*tex-cchar*
tex-cole	syntax.txt	/*tex-cole*
tex-conceal	syntax.txt	/*tex-conceal*
tex-error	syntax.txt	/*tex-error*
tex-folding	syntax.txt	/*tex-folding*
tex-math	syntax.txt	/*tex-math*
tex-morecommands	syntax.txt	/*tex-morecommands*
tex-nospell	syntax.txt	/*tex-nospell*
tex-package	syntax.txt	/*tex-package*
tex-runon	syntax.txt	/*tex-runon*
tex-slow	syntax.txt	/*tex-slow*
tex-stopzone	syntax.txt	/*tex-stopzone*
tex-style	syntax.txt	/*tex-style*
tex-sync	syntax.txt	/*tex-sync*
tex-verb	syntax.txt	/*tex-verb*
tex.vim	syntax.txt	/*tex.vim*
text-functions	usr_41.txt	/*text-functions*
text-objects	motion.txt	/*text-objects*
text-objects-changed	version5.txt	/*text-objects-changed*
textlock	eval.txt	/*textlock*
tf.vim	syntax.txt	/*tf.vim*
this_session-variable	eval.txt	/*this_session-variable*
throw-catch	eval.txt	/*throw-catch*
throw-expression	eval.txt	/*throw-expression*
throw-from-catch	eval.txt	/*throw-from-catch*
throw-variables	eval.txt	/*throw-variables*
throwpoint-variable	eval.txt	/*throwpoint-variable*
time-functions	usr_41.txt	/*time-functions*
timestamp	editing.txt	/*timestamp*
timestamps	editing.txt	/*timestamps*
tips	tips.txt	/*tips*
tips.txt	tips.txt	/*tips.txt*
todo	todo.txt	/*todo*
todo.txt	todo.txt	/*todo.txt*
toggle	options.txt	/*toggle*
toggle-revins	version4.txt	/*toggle-revins*
tolower()	eval.txt	/*tolower()*
toolbar-icon	gui.txt	/*toolbar-icon*
toupper()	eval.txt	/*toupper()*
tr()	eval.txt	/*tr()*
trojan-horse	starting.txt	/*trojan-horse*
trunc()	eval.txt	/*trunc()*
try-conditionals	eval.txt	/*try-conditionals*
try-echoerr	eval.txt	/*try-echoerr*
try-finally	eval.txt	/*try-finally*
try-nested	eval.txt	/*try-nested*
try-nesting	eval.txt	/*try-nesting*
tutor	usr_01.txt	/*tutor*
twice	if_cscop.txt	/*twice*
two-engines	pattern.txt	/*two-engines*
type()	eval.txt	/*type()*
type-mistakes	tips.txt	/*type-mistakes*
typecorr-settings	usr_41.txt	/*typecorr-settings*
typecorr.txt	usr_41.txt	/*typecorr.txt*
u	undo.txt	/*u*
uganda	uganda.txt	/*uganda*
uganda.txt	uganda.txt	/*uganda.txt*
undercurl	syntax.txt	/*undercurl*
underline	syntax.txt	/*underline*
undo	undo.txt	/*undo*
undo-blocks	undo.txt	/*undo-blocks*
undo-branches	undo.txt	/*undo-branches*
undo-commands	undo.txt	/*undo-commands*
undo-persistence	undo.txt	/*undo-persistence*
undo-redo	undo.txt	/*undo-redo*
undo-remarks	undo.txt	/*undo-remarks*
undo-tree	undo.txt	/*undo-tree*
undo-two-ways	undo.txt	/*undo-two-ways*
undo.txt	undo.txt	/*undo.txt*
undo_ftplugin	usr_41.txt	/*undo_ftplugin*
undofile()	eval.txt	/*undofile()*
undotree()	eval.txt	/*undotree()*
unicode	mbyte.txt	/*unicode*
uniq()	eval.txt	/*uniq()*
unix	os_unix.txt	/*unix*
unlisted-buffer	windows.txt	/*unlisted-buffer*
up-down-motions	motion.txt	/*up-down-motions*
uppercase	change.txt	/*uppercase*
urxvt-mouse	options.txt	/*urxvt-mouse*
use-cpo-save	usr_41.txt	/*use-cpo-save*
use-visual-cmds	version4.txt	/*use-visual-cmds*
useful-mappings	tips.txt	/*useful-mappings*
usenet	intro.txt	/*usenet*
user-cmd-ambiguous	map.txt	/*user-cmd-ambiguous*
user-commands	map.txt	/*user-commands*
user-functions	eval.txt	/*user-functions*
user-manual	usr_toc.txt	/*user-manual*
using-<Plug>	usr_41.txt	/*using-<Plug>*
using-menus	gui.txt	/*using-menus*
using-scripts	repeat.txt	/*using-scripts*
using-xxd	tips.txt	/*using-xxd*
using_CTRL-V	map.txt	/*using_CTRL-V*
usr_01.txt	usr_01.txt	/*usr_01.txt*
usr_02.txt	usr_02.txt	/*usr_02.txt*
usr_03.txt	usr_03.txt	/*usr_03.txt*
usr_04.txt	usr_04.txt	/*usr_04.txt*
usr_05.txt	usr_05.txt	/*usr_05.txt*
usr_06.txt	usr_06.txt	/*usr_06.txt*
usr_07.txt	usr_07.txt	/*usr_07.txt*
usr_08.txt	usr_08.txt	/*usr_08.txt*
usr_09.txt	usr_09.txt	/*usr_09.txt*
usr_10.txt	usr_10.txt	/*usr_10.txt*
usr_11.txt	usr_11.txt	/*usr_11.txt*
usr_12.txt	usr_12.txt	/*usr_12.txt*
usr_20.txt	usr_20.txt	/*usr_20.txt*
usr_21.txt	usr_21.txt	/*usr_21.txt*
usr_22.txt	usr_22.txt	/*usr_22.txt*
usr_23.txt	usr_23.txt	/*usr_23.txt*
usr_24.txt	usr_24.txt	/*usr_24.txt*
usr_25.txt	usr_25.txt	/*usr_25.txt*
usr_26.txt	usr_26.txt	/*usr_26.txt*
usr_27.txt	usr_27.txt	/*usr_27.txt*
usr_28.txt	usr_28.txt	/*usr_28.txt*
usr_29.txt	usr_29.txt	/*usr_29.txt*
usr_30.txt	usr_30.txt	/*usr_30.txt*
usr_31.txt	usr_31.txt	/*usr_31.txt*
usr_32.txt	usr_32.txt	/*usr_32.txt*
usr_40.txt	usr_40.txt	/*usr_40.txt*
usr_41.txt	usr_41.txt	/*usr_41.txt*
usr_42.txt	usr_42.txt	/*usr_42.txt*
usr_43.txt	usr_43.txt	/*usr_43.txt*
usr_44.txt	usr_44.txt	/*usr_44.txt*
usr_45.txt	usr_45.txt	/*usr_45.txt*
usr_90.txt	usr_90.txt	/*usr_90.txt*
usr_toc.txt	usr_toc.txt	/*usr_toc.txt*
utf-8	mbyte.txt	/*utf-8*
utf-8-char-arg	mbyte.txt	/*utf-8-char-arg*
utf-8-in-xwindows	mbyte.txt	/*utf-8-in-xwindows*
utf-8-typing	mbyte.txt	/*utf-8-typing*
utf8	mbyte.txt	/*utf8*
v	visual.txt	/*v*
v:	eval.txt	/*v:*
v:beval_bufnr	eval.txt	/*v:beval_bufnr*
v:beval_col	eval.txt	/*v:beval_col*
v:beval_lnum	eval.txt	/*v:beval_lnum*
v:beval_text	eval.txt	/*v:beval_text*
v:beval_winnr	eval.txt	/*v:beval_winnr*
v:char	eval.txt	/*v:char*
v:charconvert_from	eval.txt	/*v:charconvert_from*
v:charconvert_to	eval.txt	/*v:charconvert_to*
v:cmdarg	eval.txt	/*v:cmdarg*
v:cmdbang	eval.txt	/*v:cmdbang*
v:count	eval.txt	/*v:count*
v:count1	eval.txt	/*v:count1*
v:ctype	eval.txt	/*v:ctype*
v:dying	eval.txt	/*v:dying*
v:errmsg	eval.txt	/*v:errmsg*
v:exception	eval.txt	/*v:exception*
v:fcs_choice	eval.txt	/*v:fcs_choice*
v:fcs_reason	eval.txt	/*v:fcs_reason*
v:fname_diff	eval.txt	/*v:fname_diff*
v:fname_in	eval.txt	/*v:fname_in*
v:fname_new	eval.txt	/*v:fname_new*
v:fname_out	eval.txt	/*v:fname_out*
v:folddashes	eval.txt	/*v:folddashes*
v:foldend	eval.txt	/*v:foldend*
v:foldlevel	eval.txt	/*v:foldlevel*
v:foldstart	eval.txt	/*v:foldstart*
v:hlsearch	eval.txt	/*v:hlsearch*
v:insertmode	eval.txt	/*v:insertmode*
v:key	eval.txt	/*v:key*
v:lang	eval.txt	/*v:lang*
v:lc_time	eval.txt	/*v:lc_time*
v:lnum	eval.txt	/*v:lnum*
v:mouse_col	eval.txt	/*v:mouse_col*
v:mouse_lnum	eval.txt	/*v:mouse_lnum*
v:mouse_win	eval.txt	/*v:mouse_win*
v:oldfiles	eval.txt	/*v:oldfiles*
v:operator	eval.txt	/*v:operator*
v:prevcount	eval.txt	/*v:prevcount*
v:profiling	eval.txt	/*v:profiling*
v:progname	eval.txt	/*v:progname*
v:progpath	eval.txt	/*v:progpath*
v:register	eval.txt	/*v:register*
v:scrollstart	eval.txt	/*v:scrollstart*
v:searchforward	eval.txt	/*v:searchforward*
v:servername	eval.txt	/*v:servername*
v:shell_error	eval.txt	/*v:shell_error*
v:statusmsg	eval.txt	/*v:statusmsg*
v:swapchoice	eval.txt	/*v:swapchoice*
v:swapcommand	eval.txt	/*v:swapcommand*
v:swapname	eval.txt	/*v:swapname*
v:termresponse	eval.txt	/*v:termresponse*
v:this_session	eval.txt	/*v:this_session*
v:throwpoint	eval.txt	/*v:throwpoint*
v:val	eval.txt	/*v:val*
v:var	eval.txt	/*v:var*
v:version	eval.txt	/*v:version*
v:warningmsg	eval.txt	/*v:warningmsg*
v:windowid	eval.txt	/*v:windowid*
v_!	change.txt	/*v_!*
v_$	visual.txt	/*v_$*
v_:	cmdline.txt	/*v_:*
v_<	change.txt	/*v_<*
v_<BS>	change.txt	/*v_<BS>*
v_<Del>	change.txt	/*v_<Del>*
v_<Esc>	visual.txt	/*v_<Esc>*
v_=	change.txt	/*v_=*
v_>	change.txt	/*v_>*
v_C	change.txt	/*v_C*
v_CTRL-C	visual.txt	/*v_CTRL-C*
v_CTRL-G	visual.txt	/*v_CTRL-G*
v_CTRL-H	change.txt	/*v_CTRL-H*
v_CTRL-O	visual.txt	/*v_CTRL-O*
v_CTRL-V	visual.txt	/*v_CTRL-V*
v_CTRL-Z	starting.txt	/*v_CTRL-Z*
v_CTRL-\_CTRL-G	intro.txt	/*v_CTRL-\\_CTRL-G*
v_CTRL-\_CTRL-N	intro.txt	/*v_CTRL-\\_CTRL-N*
v_CTRL-]	tagsrch.txt	/*v_CTRL-]*
v_D	change.txt	/*v_D*
v_J	change.txt	/*v_J*
v_K	various.txt	/*v_K*
v_O	visual.txt	/*v_O*
v_P	change.txt	/*v_P*
v_R	change.txt	/*v_R*
v_S	change.txt	/*v_S*
v_U	change.txt	/*v_U*
v_V	visual.txt	/*v_V*
v_X	change.txt	/*v_X*
v_Y	change.txt	/*v_Y*
v_a	motion.txt	/*v_a*
v_a'	motion.txt	/*v_a'*
v_a(	motion.txt	/*v_a(*
v_a)	motion.txt	/*v_a)*
v_a<	motion.txt	/*v_a<*
v_a>	motion.txt	/*v_a>*
v_aB	motion.txt	/*v_aB*
v_aW	motion.txt	/*v_aW*
v_a[	motion.txt	/*v_a[*
v_a]	motion.txt	/*v_a]*
v_a`	motion.txt	/*v_a`*
v_ab	motion.txt	/*v_ab*
v_ap	motion.txt	/*v_ap*
v_aquote	motion.txt	/*v_aquote*
v_as	motion.txt	/*v_as*
v_at	motion.txt	/*v_at*
v_aw	motion.txt	/*v_aw*
v_a{	motion.txt	/*v_a{*
v_a}	motion.txt	/*v_a}*
v_b_<	visual.txt	/*v_b_<*
v_b_<_example	visual.txt	/*v_b_<_example*
v_b_>	visual.txt	/*v_b_>*
v_b_>_example	visual.txt	/*v_b_>_example*
v_b_A	visual.txt	/*v_b_A*
v_b_A_example	visual.txt	/*v_b_A_example*
v_b_C	visual.txt	/*v_b_C*
v_b_D	change.txt	/*v_b_D*
v_b_I	visual.txt	/*v_b_I*
v_b_I_example	visual.txt	/*v_b_I_example*
v_b_c	visual.txt	/*v_b_c*
v_b_r	visual.txt	/*v_b_r*
v_b_r_example	visual.txt	/*v_b_r_example*
v_c	change.txt	/*v_c*
v_d	change.txt	/*v_d*
v_g?	change.txt	/*v_g?*
v_gF	editing.txt	/*v_gF*
v_gJ	change.txt	/*v_gJ*
v_gN	visual.txt	/*v_gN*
v_gV	visual.txt	/*v_gV*
v_g]	tagsrch.txt	/*v_g]*
v_g_CTRL-G	editing.txt	/*v_g_CTRL-G*
v_g_CTRL-]	tagsrch.txt	/*v_g_CTRL-]*
v_gf	editing.txt	/*v_gf*
v_gn	visual.txt	/*v_gn*
v_gq	change.txt	/*v_gq*
v_gv	visual.txt	/*v_gv*
v_gw	change.txt	/*v_gw*
v_i	motion.txt	/*v_i*
v_i'	motion.txt	/*v_i'*
v_i(	motion.txt	/*v_i(*
v_i)	motion.txt	/*v_i)*
v_i<	motion.txt	/*v_i<*
v_i>	motion.txt	/*v_i>*
v_iB	motion.txt	/*v_iB*
v_iW	motion.txt	/*v_iW*
v_i[	motion.txt	/*v_i[*
v_i]	motion.txt	/*v_i]*
v_i`	motion.txt	/*v_i`*
v_ib	motion.txt	/*v_ib*
v_ip	motion.txt	/*v_ip*
v_iquote	motion.txt	/*v_iquote*
v_is	motion.txt	/*v_is*
v_it	motion.txt	/*v_it*
v_iw	motion.txt	/*v_iw*
v_i{	motion.txt	/*v_i{*
v_i}	motion.txt	/*v_i}*
v_o	visual.txt	/*v_o*
v_p	change.txt	/*v_p*
v_r	change.txt	/*v_r*
v_s	change.txt	/*v_s*
v_u	change.txt	/*v_u*
v_v	visual.txt	/*v_v*
v_x	change.txt	/*v_x*
v_y	change.txt	/*v_y*
v_~	change.txt	/*v_~*
val-variable	eval.txt	/*val-variable*
valgrind	debug.txt	/*valgrind*
values()	eval.txt	/*values()*
var-functions	usr_41.txt	/*var-functions*
variables	eval.txt	/*variables*
various	various.txt	/*various*
various-cmds	various.txt	/*various-cmds*
various-functions	usr_41.txt	/*various-functions*
various-motions	motion.txt	/*various-motions*
various.txt	various.txt	/*various.txt*
vb.vim	syntax.txt	/*vb.vim*
vba	pi_vimball.txt	/*vba*
verbose	starting.txt	/*verbose*
version-5.1	version5.txt	/*version-5.1*
version-5.2	version5.txt	/*version-5.2*
version-5.3	version5.txt	/*version-5.3*
version-5.4	version5.txt	/*version-5.4*
version-5.5	version5.txt	/*version-5.5*
version-5.6	version5.txt	/*version-5.6*
version-5.7	version5.txt	/*version-5.7*
version-5.8	version5.txt	/*version-5.8*
version-6.1	version6.txt	/*version-6.1*
version-6.2	version6.txt	/*version-6.2*
version-6.3	version6.txt	/*version-6.3*
version-6.4	version6.txt	/*version-6.4*
version-7.0	version7.txt	/*version-7.0*
version-7.1	version7.txt	/*version-7.1*
version-7.2	version7.txt	/*version-7.2*
version-7.3	version7.txt	/*version-7.3*
version-7.4	version7.txt	/*version-7.4*
version-variable	eval.txt	/*version-variable*
version4.txt	version4.txt	/*version4.txt*
version5.txt	version5.txt	/*version5.txt*
version6.txt	version6.txt	/*version6.txt*
version7.0	version7.txt	/*version7.0*
version7.1	version7.txt	/*version7.1*
version7.2	version7.txt	/*version7.2*
version7.3	version7.txt	/*version7.3*
version7.4	version7.txt	/*version7.4*
version7.txt	version7.txt	/*version7.txt*
vi	intro.txt	/*vi*
vi-differences	vi_diff.txt	/*vi-differences*
vi:	options.txt	/*vi:*
vi_diff.txt	vi_diff.txt	/*vi_diff.txt*
view	starting.txt	/*view*
view-diffs	diff.txt	/*view-diffs*
view-file	starting.txt	/*view-file*
views-sessions	starting.txt	/*views-sessions*
vim-additions	vi_diff.txt	/*vim-additions*
vim-announce	intro.txt	/*vim-announce*
vim-arguments	starting.txt	/*vim-arguments*
vim-default-editor	gui_w32.txt	/*vim-default-editor*
vim-dev	intro.txt	/*vim-dev*
vim-mac	intro.txt	/*vim-mac*
vim-modes	intro.txt	/*vim-modes*
vim-modes-intro	intro.txt	/*vim-modes-intro*
vim-multibyte	intro.txt	/*vim-multibyte*
vim-script-intro	usr_41.txt	/*vim-script-intro*
vim-variable	eval.txt	/*vim-variable*
vim.vim	syntax.txt	/*vim.vim*
vim7	version7.txt	/*vim7*
vim:	options.txt	/*vim:*
vimball	pi_vimball.txt	/*vimball*
vimball-contents	pi_vimball.txt	/*vimball-contents*
vimball-extract	pi_vimball.txt	/*vimball-extract*
vimball-history	pi_vimball.txt	/*vimball-history*
vimball-intro	pi_vimball.txt	/*vimball-intro*
vimball-manual	pi_vimball.txt	/*vimball-manual*
vimball-windows	pi_vimball.txt	/*vimball-windows*
vimdev	intro.txt	/*vimdev*
vimdiff	diff.txt	/*vimdiff*
vimfiles	options.txt	/*vimfiles*
viminfo	starting.txt	/*viminfo*
viminfo-!	options.txt	/*viminfo-!*
viminfo-%	options.txt	/*viminfo-%*
viminfo-'	options.txt	/*viminfo-'*
viminfo-/	options.txt	/*viminfo-\/*
viminfo-:	options.txt	/*viminfo-:*
viminfo-<	options.txt	/*viminfo-<*
viminfo-@	options.txt	/*viminfo-@*
viminfo-c	options.txt	/*viminfo-c*
viminfo-encoding	starting.txt	/*viminfo-encoding*
viminfo-errors	starting.txt	/*viminfo-errors*
viminfo-f	options.txt	/*viminfo-f*
viminfo-file	starting.txt	/*viminfo-file*
viminfo-file-marks	starting.txt	/*viminfo-file-marks*
viminfo-file-name	starting.txt	/*viminfo-file-name*
viminfo-h	options.txt	/*viminfo-h*
viminfo-n	options.txt	/*viminfo-n*
viminfo-quote	options.txt	/*viminfo-quote*
viminfo-r	options.txt	/*viminfo-r*
viminfo-read	starting.txt	/*viminfo-read*
viminfo-read-write	starting.txt	/*viminfo-read-write*
viminfo-s	options.txt	/*viminfo-s*
viminfo-write	starting.txt	/*viminfo-write*
vimrc	starting.txt	/*vimrc*
vimrc-filetype	usr_05.txt	/*vimrc-filetype*
vimrc-intro	usr_05.txt	/*vimrc-intro*
vimrc-option-example	starting.txt	/*vimrc-option-example*
vimrc_example.vim	usr_05.txt	/*vimrc_example.vim*
vimtutor	usr_01.txt	/*vimtutor*
virtcol()	eval.txt	/*virtcol()*
visual-block	visual.txt	/*visual-block*
visual-change	visual.txt	/*visual-change*
visual-examples	visual.txt	/*visual-examples*
visual-index	index.txt	/*visual-index*
visual-mode	visual.txt	/*visual-mode*
visual-operators	visual.txt	/*visual-operators*
visual-repeat	visual.txt	/*visual-repeat*
visual-search	visual.txt	/*visual-search*
visual-start	visual.txt	/*visual-start*
visual-use	visual.txt	/*visual-use*
visual.txt	visual.txt	/*visual.txt*
visualmode()	eval.txt	/*visualmode()*
vms	os_vms.txt	/*vms*
vms-authors	os_vms.txt	/*vms-authors*
vms-changes	os_vms.txt	/*vms-changes*
vms-compiling	os_vms.txt	/*vms-compiling*
vms-deploy	os_vms.txt	/*vms-deploy*
vms-download	os_vms.txt	/*vms-download*
vms-gui	os_vms.txt	/*vms-gui*
vms-notes	os_vms.txt	/*vms-notes*
vms-problems	os_vms.txt	/*vms-problems*
vms-started	os_vms.txt	/*vms-started*
vms-usage	os_vms.txt	/*vms-usage*
vote-for-features	sponsor.txt	/*vote-for-features*
votes-counted	sponsor.txt	/*votes-counted*
votes-for-changes	todo.txt	/*votes-for-changes*
vreplace-mode	insert.txt	/*vreplace-mode*
vt100-cursor-keys	term.txt	/*vt100-cursor-keys*
vt100-function-keys	term.txt	/*vt100-function-keys*
w	motion.txt	/*w*
w32-clientserver	remote.txt	/*w32-clientserver*
w32-xpm-support	gui_w32.txt	/*w32-xpm-support*
w:	eval.txt	/*w:*
w:current_syntax	syntax.txt	/*w:current_syntax*
w:quickfix_title	quickfix.txt	/*w:quickfix_title*
w:var	eval.txt	/*w:var*
warningmsg-variable	eval.txt	/*warningmsg-variable*
white-space	pattern.txt	/*white-space*
whitespace	pattern.txt	/*whitespace*
wildcard	editing.txt	/*wildcard*
wildcards	editing.txt	/*wildcards*
wildmenumode()	eval.txt	/*wildmenumode()*
win16-!start	gui_w16.txt	/*win16-!start*
win16-clipboard	gui_w16.txt	/*win16-clipboard*
win16-colors	gui_w16.txt	/*win16-colors*
win16-default-editor	gui_w16.txt	/*win16-default-editor*
win16-dialogs	gui_w16.txt	/*win16-dialogs*
win16-drag-n-drop	gui_w16.txt	/*win16-drag-n-drop*
win16-gui	gui_w16.txt	/*win16-gui*
win16-maximized	gui_w16.txt	/*win16-maximized*
win16-printing	gui_w16.txt	/*win16-printing*
win16-shell	gui_w16.txt	/*win16-shell*
win16-start	gui_w16.txt	/*win16-start*
win16-truetype	gui_w16.txt	/*win16-truetype*
win16-various	gui_w16.txt	/*win16-various*
win32	os_win32.txt	/*win32*
win32-!start	gui_w32.txt	/*win32-!start*
win32-PATH	os_win32.txt	/*win32-PATH*
win32-colors	gui_w32.txt	/*win32-colors*
win32-compiling	os_win32.txt	/*win32-compiling*
win32-curdir	os_win32.txt	/*win32-curdir*
win32-faq	os_win32.txt	/*win32-faq*
win32-gettext	mlang.txt	/*win32-gettext*
win32-gui	gui_w32.txt	/*win32-gui*
win32-hidden-menus	gui.txt	/*win32-hidden-menus*
win32-mouse	os_win32.txt	/*win32-mouse*
win32-open-with-menu	gui_w32.txt	/*win32-open-with-menu*
win32-popup-menu	gui_w32.txt	/*win32-popup-menu*
win32-problems	os_win32.txt	/*win32-problems*
win32-restore	os_win32.txt	/*win32-restore*
win32-startup	os_win32.txt	/*win32-startup*
win32-term	os_win32.txt	/*win32-term*
win32-vimrun	gui_w32.txt	/*win32-vimrun*
win32-win3.1	os_win32.txt	/*win32-win3.1*
win32s	os_win32.txt	/*win32s*
winbufnr()	eval.txt	/*winbufnr()*
wincol()	eval.txt	/*wincol()*
window	windows.txt	/*window*
window-contents	intro.txt	/*window-contents*
window-exit	editing.txt	/*window-exit*
window-functions	usr_41.txt	/*window-functions*
window-move-cursor	windows.txt	/*window-move-cursor*
window-moving	windows.txt	/*window-moving*
window-resize	windows.txt	/*window-resize*
window-size	term.txt	/*window-size*
window-size-functions	usr_41.txt	/*window-size-functions*
window-tag	windows.txt	/*window-tag*
window-variable	eval.txt	/*window-variable*
windowid-variable	eval.txt	/*windowid-variable*
windows	windows.txt	/*windows*
windows-3.1	os_win32.txt	/*windows-3.1*
windows-intro	windows.txt	/*windows-intro*
windows-starting	windows.txt	/*windows-starting*
windows.txt	windows.txt	/*windows.txt*
windows95	os_win32.txt	/*windows95*
winheight()	eval.txt	/*winheight()*
winline()	eval.txt	/*winline()*
winnr()	eval.txt	/*winnr()*
winrestcmd()	eval.txt	/*winrestcmd()*
winrestview()	eval.txt	/*winrestview()*
winsaveview()	eval.txt	/*winsaveview()*
winwidth()	eval.txt	/*winwidth()*
word	motion.txt	/*word*
word-count	editing.txt	/*word-count*
word-motions	motion.txt	/*word-motions*
workbench	starting.txt	/*workbench*
workshop	workshop.txt	/*workshop*
workshop-commands	workshop.txt	/*workshop-commands*
workshop-compiling	workshop.txt	/*workshop-compiling*
workshop-configure	workshop.txt	/*workshop-configure*
workshop-intro	workshop.txt	/*workshop-intro*
workshop-support	workshop.txt	/*workshop-support*
workshop-xpm	workshop.txt	/*workshop-xpm*
workshop.txt	workshop.txt	/*workshop.txt*
wrap-off	intro.txt	/*wrap-off*
write-compiler-plugin	usr_41.txt	/*write-compiler-plugin*
write-device	editing.txt	/*write-device*
write-fail	editing.txt	/*write-fail*
write-filetype-plugin	usr_41.txt	/*write-filetype-plugin*
write-library-script	usr_41.txt	/*write-library-script*
write-local-help	usr_41.txt	/*write-local-help*
write-permissions	editing.txt	/*write-permissions*
write-plugin	usr_41.txt	/*write-plugin*
write-plugin-quickload	usr_41.txt	/*write-plugin-quickload*
write-quit	editing.txt	/*write-quit*
write-readonly	editing.txt	/*write-readonly*
writefile()	eval.txt	/*writefile()*
writing	editing.txt	/*writing*
www	intro.txt	/*www*
x	change.txt	/*x*
x-input-method	mbyte.txt	/*x-input-method*
x-resources	version5.txt	/*x-resources*
x11-clientserver	remote.txt	/*x11-clientserver*
x11-cut-buffer	gui_x11.txt	/*x11-cut-buffer*
x11-selection	gui_x11.txt	/*x11-selection*
xf86conf.vim	syntax.txt	/*xf86conf.vim*
xfontset	mbyte.txt	/*xfontset*
xfree-xterm	syntax.txt	/*xfree-xterm*
xim	mbyte.txt	/*xim*
xim-input-style	mbyte.txt	/*xim-input-style*
xiterm	syntax.txt	/*xiterm*
xml-folding	syntax.txt	/*xml-folding*
xml-omni-datafile	insert.txt	/*xml-omni-datafile*
xml.vim	syntax.txt	/*xml.vim*
xor()	eval.txt	/*xor()*
xpm.vim	syntax.txt	/*xpm.vim*
xterm-8-bit	term.txt	/*xterm-8-bit*
xterm-8bit	term.txt	/*xterm-8bit*
xterm-blink	syntax.txt	/*xterm-blink*
xterm-blinking-cursor	syntax.txt	/*xterm-blinking-cursor*
xterm-clipboard	term.txt	/*xterm-clipboard*
xterm-codes	term.txt	/*xterm-codes*
xterm-color	syntax.txt	/*xterm-color*
xterm-command-server	term.txt	/*xterm-command-server*
xterm-copy-paste	term.txt	/*xterm-copy-paste*
xterm-cursor-keys	term.txt	/*xterm-cursor-keys*
xterm-end-home-keys	term.txt	/*xterm-end-home-keys*
xterm-function-keys	term.txt	/*xterm-function-keys*
xterm-modifier-keys	term.txt	/*xterm-modifier-keys*
xterm-mouse	options.txt	/*xterm-mouse*
xterm-mouse-wheel	scroll.txt	/*xterm-mouse-wheel*
xterm-resize	term.txt	/*xterm-resize*
xterm-save-screen	tips.txt	/*xterm-save-screen*
xterm-screens	tips.txt	/*xterm-screens*
xterm-scroll-region	term.txt	/*xterm-scroll-region*
xterm-shifted-keys	term.txt	/*xterm-shifted-keys*
y	change.txt	/*y*
yank	change.txt	/*yank*
ye-option-gone	version4.txt	/*ye-option-gone*
year-2000	intro.txt	/*year-2000*
your-runtime-dir	usr_43.txt	/*your-runtime-dir*
yy	change.txt	/*yy*
z	index.txt	/*z*
z+	scroll.txt	/*z+*
z-	scroll.txt	/*z-*
z.	scroll.txt	/*z.*
z/OS	os_390.txt	/*z\/OS*
z<CR>	scroll.txt	/*z<CR>*
z<Left>	scroll.txt	/*z<Left>*
z<Right>	scroll.txt	/*z<Right>*
z=	spell.txt	/*z=*
zA	fold.txt	/*zA*
zC	fold.txt	/*zC*
zD	fold.txt	/*zD*
zE	fold.txt	/*zE*
zF	fold.txt	/*zF*
zG	spell.txt	/*zG*
zH	scroll.txt	/*zH*
zL	scroll.txt	/*zL*
zM	fold.txt	/*zM*
zN	fold.txt	/*zN*
zN<CR>	scroll.txt	/*zN<CR>*
zO	fold.txt	/*zO*
zOS	os_390.txt	/*zOS*
zOS-Bugs	os_390.txt	/*zOS-Bugs*
zOS-Motif	os_390.txt	/*zOS-Motif*
zOS-PuTTY	os_390.txt	/*zOS-PuTTY*
zOS-has-ebcdic	os_390.txt	/*zOS-has-ebcdic*
zOS-limitations	os_390.txt	/*zOS-limitations*
zOS-open-source	os_390.txt	/*zOS-open-source*
zR	fold.txt	/*zR*
zW	spell.txt	/*zW*
zX	fold.txt	/*zX*
z^	scroll.txt	/*z^*
za	fold.txt	/*za*
zb	scroll.txt	/*zb*
zc	fold.txt	/*zc*
zd	fold.txt	/*zd*
ze	scroll.txt	/*ze*
zf	fold.txt	/*zf*
zg	spell.txt	/*zg*
zh	scroll.txt	/*zh*
zi	fold.txt	/*zi*
zip	pi_zip.txt	/*zip*
zip-contents	pi_zip.txt	/*zip-contents*
zip-copyright	pi_zip.txt	/*zip-copyright*
zip-extension	pi_zip.txt	/*zip-extension*
zip-history	pi_zip.txt	/*zip-history*
zip-manual	pi_zip.txt	/*zip-manual*
zip-usage	pi_zip.txt	/*zip-usage*
zj	fold.txt	/*zj*
zk	fold.txt	/*zk*
zl	scroll.txt	/*zl*
zm	fold.txt	/*zm*
zn	fold.txt	/*zn*
zo	fold.txt	/*zo*
zr	fold.txt	/*zr*
zs	scroll.txt	/*zs*
zt	scroll.txt	/*zt*
zuG	spell.txt	/*zuG*
zuW	spell.txt	/*zuW*
zug	spell.txt	/*zug*
zuw	spell.txt	/*zuw*
zv	fold.txt	/*zv*
zw	spell.txt	/*zw*
zx	fold.txt	/*zx*
zz	scroll.txt	/*zz*
{	motion.txt	/*{*
{Visual}	intro.txt	/*{Visual}*
{address}	cmdline.txt	/*{address}*
{arglist}	editing.txt	/*{arglist}*
{char1-char2}	intro.txt	/*{char1-char2}*
{event}	autocmd.txt	/*{event}*
{file}	editing.txt	/*{file}*
{group-name}	syntax.txt	/*{group-name}*
{lhs}	map.txt	/*{lhs}*
{motion}	intro.txt	/*{motion}*
{move-around}	visual.txt	/*{move-around}*
{offset}	pattern.txt	/*{offset}*
{pat}	autocmd.txt	/*{pat}*
{rhs}	map.txt	/*{rhs}*
{subject}	helphelp.txt	/*{subject}*
{}	intro.txt	/*{}*
}	motion.txt	/*}*
~	change.txt	/*~*
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    *term.txt*      For Vim version 7.4.  Last change: 2014 May 13


		  VIM REFERENCE MANUAL    by Bram Moolenaar


Terminal information					*terminal-info*

Vim uses information about the terminal you are using to fill the screen and
recognize what keys you hit.  If this information is not correct, the screen
may be messed up or keys may not be recognized.  The actions which have to be
performed on the screen are accomplished by outputting a string of
characters.  Special keys produce a string of characters.  These strings are
stored in the terminal options, see |terminal-options|.

NOTE: Most of this is not used when running the |GUI|.

1. Startup			|startup-terminal|
2. Terminal options		|terminal-options|
3. Window size			|window-size|
4. Slow and fast terminals	|slow-fast-terminal|
5. Using the mouse		|mouse-using|

==============================================================================
1. Startup						*startup-terminal*

When Vim is started a default terminal type is assumed.  For the Amiga this is
a standard CLI window, for MS-DOS the pc terminal, for Unix an ansi terminal.
A few other terminal types are always available, see below |builtin-terms|.

You can give the terminal name with the '-T' Vim argument.  If it is not given
Vim will try to get the name from the TERM environment variable.

				*termcap* *terminfo* *E557* *E558* *E559*
On Unix the terminfo database or termcap file is used.  This is referred to as
"termcap" in all the documentation.  At compile time, when running configure,
the choice whether to use terminfo or termcap is done automatically.  When
running Vim the output of ":version" will show |+terminfo| if terminfo is
used.  Also see |xterm-screens|.

On non-Unix systems a termcap is only available if Vim was compiled with
TERMCAP defined.

					*builtin-terms* *builtin_terms*
Which builtin terminals are available depends on a few defines in feature.h,
which need to be set at compile time:
    define		output of ":version"	terminals builtin	~
NO_BUILTIN_TCAPS	-builtin_terms		none
SOME_BUILTIN_TCAPS	+builtin_terms		most common ones (default)
ALL_BUILTIN_TCAPS	++builtin_terms		all available

You can see a list of available builtin terminals with ":set term=xxx" (when
not running the GUI).  Also see |+builtin_terms|.

If the termcap code is included Vim will try to get the strings for the
terminal you are using from the termcap file and the builtin termcaps.  Both
are always used, if an entry for the terminal you are using is present.  Which
one is used first depends on the 'ttybuiltin' option:

'ttybuiltin' on		1: builtin termcap	2: external termcap
'ttybuiltin' off	1: external termcap	2: builtin termcap

If an option is missing in one of them, it will be obtained from the other
one.  If an option is present in both, the one first encountered is used.

Which external termcap file is used varies from system to system and may
depend on the environment variables "TERMCAP" and "TERMPATH".  See "man
tgetent".

Settings depending on terminal			*term-dependent-settings*

If you want to set options or mappings, depending on the terminal name, you
can do this best in your .vimrc.  Example: >

   if &term == "xterm"
     ... xterm maps and settings ...
   elseif &term =~ "vt10."
     ... vt100, vt102 maps and settings ...
   endif
<
						*raw-terminal-mode*
For normal editing the terminal will be put into "raw" mode.  The strings
defined with 't_ti' and 't_ks' will be sent to the terminal.  Normally this
puts the terminal in a state where the termcap codes are valid and activates
the cursor and function keys.  When Vim exits the terminal will be put back
into the mode it was before Vim started.  The strings defined with 't_te' and
't_ke' will be sent to the terminal.  On the Amiga, with commands that execute
an external command (e.g., "!!"), the terminal will be put into Normal mode
for a moment.  This means that you can stop the output to the screen by
hitting a printing key.  Output resumes when you hit <BS>.

							*cs7-problem*
Note: If the terminal settings are changed after running Vim, you might have
an illegal combination of settings.  This has been reported on Solaris 2.5
with "stty cs8 parenb", which is restored as "stty cs7 parenb".  Use
"stty cs8 -parenb -istrip" instead, this is restored correctly.

Some termcap entries are wrong in the sense that after sending 't_ks' the
cursor keys send codes different from the codes defined in the termcap.  To
avoid this you can set 't_ks' (and 't_ke') to empty strings.  This must be
done during initialization (see |initialization|), otherwise it's too late.

Some termcap entries assume that the highest bit is always reset.  For
example: The cursor-up entry for the Amiga could be ":ku=\E[A:".  But the
Amiga really sends "\233A".  This works fine if the highest bit is reset,
e.g., when using an Amiga over a serial line.  If the cursor keys don't work,
try the entry ":ku=\233A:".

Some termcap entries have the entry ":ku=\E[A:".  But the Amiga really sends
"\233A".  On output "\E[" and "\233" are often equivalent, on input they
aren't.  You will have to change the termcap entry, or change the key code with
the :set command to fix this.

Many cursor key codes start with an <Esc>.  Vim must find out if this is a
single hit of the <Esc> key or the start of a cursor key sequence.  It waits
for a next character to arrive.  If it does not arrive within one second a
single <Esc> is assumed.  On very slow systems this may fail, causing cursor
keys not to work sometimes.  If you discover this problem reset the 'timeout'
option.  Vim will wait for the next character to arrive after an <Esc>.  If
you want to enter a single <Esc> you must type it twice.  Resetting the
'esckeys' option avoids this problem in Insert mode, but you lose the
possibility to use cursor and function keys in Insert mode.

On the Amiga the recognition of window resizing is activated only when the
terminal name is "amiga" or "builtin_amiga".

Some terminals have confusing codes for the cursor keys.  The televideo 925 is
such a terminal.  It sends a CTRL-H for cursor-left.  This would make it
impossible to distinguish a backspace and cursor-left.  To avoid this problem
CTRL-H is never recognized as cursor-left.

					*vt100-cursor-keys* *xterm-cursor-keys*
Other terminals (e.g., vt100 and xterm) have cursor keys that send <Esc>OA,
<Esc>OB, etc.  Unfortunately these are valid commands in insert mode: Stop
insert, Open a new line above the new one, start inserting 'A', 'B', etc.
Instead of performing these commands Vim will erroneously recognize this typed
key sequence as a cursor key movement.  To avoid this and make Vim do what you
want in either case you could use these settings: >
	:set notimeout		" don't timeout on mappings
	:set ttimeout		" do timeout on terminal key codes
	:set timeoutlen=100	" timeout after 100 msec
This requires the key-codes to be sent within 100 msec in order to recognize
them as a cursor key.  When you type you normally are not that fast, so they
are recognized as individual typed commands, even though Vim receives the same
sequence of bytes.

				*vt100-function-keys* *xterm-function-keys*
An xterm can send function keys F1 to F4 in two modes: vt100 compatible or
not.  Because Vim may not know what the xterm is sending, both types of keys
are recognized.  The same happens for the <Home> and <End> keys.
			normal			vt100 ~
	<F1>	t_k1	<Esc>[11~	<xF1>	<Esc>OP	    *<xF1>-xterm*
	<F2>	t_k2	<Esc>[12~	<xF2>	<Esc>OQ	    *<xF2>-xterm*
	<F3>	t_k3	<Esc>[13~	<xF3>	<Esc>OR	    *<xF3>-xterm*
	<F4>	t_k4	<Esc>[14~	<xF4>	<Esc>OS	    *<xF4>-xterm*
	<Home>	t_kh	<Esc>[7~	<xHome>	<Esc>OH	    *<xHome>-xterm*
	<End>	t_@7	<Esc>[4~	<xEnd>	<Esc>OF	    *<xEnd>-xterm*

When Vim starts, <xF1> is mapped to <F1>, <xF2> to <F2> etc.  This means that
by default both codes do the same thing.  If you make a mapping for <xF2>,
because your terminal does have two keys, the default mapping is overwritten,
thus you can use the <F2> and <xF2> keys for something different.

							*xterm-shifted-keys*
Newer versions of xterm support shifted function keys and special keys.  Vim
recognizes most of them.  Use ":set termcap" to check which are supported and
what the codes are.  Mostly these are not in a termcap, they are only
supported by the builtin_xterm termcap.

							*xterm-modifier-keys*
Newer versions of xterm support Alt and Ctrl for most function keys.  To avoid
having to add all combinations of Alt, Ctrl and Shift for every key a special
sequence is recognized at the end of a termcap entry: ";*X".  The "X" can be
any character, often '~' is used.  The ";*" stands for an optional modifier
argument.  ";2" is Shift, ";3" is Alt, ";5" is Ctrl and ";9" is Meta (when
it's different from Alt).  They can be combined.  Examples: >
	:set <F8>=^[[19;*~
	:set <Home>=^[[1;*H
Another speciality about these codes is that they are not overwritten by
another code.  That is to avoid that the codes obtained from xterm directly
|t_RV| overwrite them.
							*xterm-scroll-region*
The default termcap entry for xterm on Sun and other platforms does not
contain the entry for scroll regions.  Add ":cs=\E[%i%d;%dr:" to the xterm
entry in /etc/termcap and everything should work.

							*xterm-end-home-keys*
On some systems (at least on FreeBSD with XFree86 3.1.2) the codes that the
<End> and <Home> keys send contain a <Nul> character.  To make these keys send
the proper key code, add these lines to your ~/.Xdefaults file:

*VT100.Translations:		#override \n\
		<Key>Home: string("0x1b") string("[7~") \n\
		<Key>End: string("0x1b") string("[8~")

						*xterm-8bit* *xterm-8-bit*
Xterm can be run in a mode where it uses 8-bit escape sequences.  The CSI code
is used instead of <Esc>[.  The advantage is that an <Esc> can quickly be
recognized in Insert mode, because it can't be confused with the start of a
special key.
For the builtin termcap entries, Vim checks if the 'term' option contains
"8bit" anywhere.  It then uses 8-bit characters for the termcap entries, the
mouse and a few other things.  You would normally set $TERM in your shell to
"xterm-8bit" and Vim picks this up and adjusts to the 8-bit setting
automatically.
When Vim receives a response to the |t_RV| (request version) sequence and it
starts with CSI, it assumes that the terminal is in 8-bit mode and will
convert all key sequences to their 8-bit variants.

==============================================================================
2. Terminal options		*terminal-options* *termcap-options* *E436*

The terminal options can be set just like normal options.  But they are not
shown with the ":set all" command.  Instead use ":set termcap".

It is always possible to change individual strings by setting the
appropriate option.  For example: >
	:set t_ce=^V^[[K	(CTRL-V, <Esc>, [, K)

{Vi: no terminal options.  You have to exit Vi, edit the termcap entry and
try again}

The options are listed below.  The associated termcap code is always equal to
the last two characters of the option name.  Only one termcap code is
required: Cursor motion, 't_cm'.

The options 't_da', 't_db', 't_ms', 't_xs' represent flags in the termcap.
When the termcap flag is present, the option will be set to "y".  But any
non-empty string means that the flag is set.  An empty string means that the
flag is not set.  't_CS' works like this too, but it isn't a termcap flag.

OUTPUT CODES
	option	meaning	~

	t_AB	set background color (ANSI)			*t_AB* *'t_AB'*
	t_AF	set foreground color (ANSI)			*t_AF* *'t_AF'*
	t_AL	add number of blank lines			*t_AL* *'t_AL'*
	t_al	add new blank line				*t_al* *'t_al'*
	t_bc	backspace character				*t_bc* *'t_bc'*
	t_cd	clear to end of screen				*t_cd* *'t_cd'*
	t_ce	clear to end of line				*t_ce* *'t_ce'*
	t_cl	clear screen					*t_cl* *'t_cl'*
	t_cm	cursor motion (required!)		  *E437* *t_cm* *'t_cm'*
	t_Co	number of colors				*t_Co* *'t_Co'*
	t_CS	if non-empty, cursor relative to scroll region	*t_CS* *'t_CS'*
	t_cs	define scrolling region				*t_cs* *'t_cs'*
	t_CV	define vertical scrolling region		*t_CV* *'t_CV'*
	t_da	if non-empty, lines from above scroll down	*t_da* *'t_da'*
	t_db	if non-empty, lines from below scroll up	*t_db* *'t_db'*
	t_DL	delete number of lines				*t_DL* *'t_DL'*
	t_dl	delete line					*t_dl* *'t_dl'*
	t_fs	set window title end (from status line)		*t_fs* *'t_fs'*
	t_ke	exit "keypad transmit" mode			*t_ke* *'t_ke'*
	t_ks	start "keypad transmit" mode			*t_ks* *'t_ks'*
	t_le	move cursor one char left			*t_le* *'t_le'*
	t_mb	blinking mode					*t_mb* *'t_mb'*
	t_md	bold mode					*t_md* *'t_md'*
	t_me	Normal mode (undoes t_mr, t_mb, t_md and color)	*t_me* *'t_me'*
	t_mr	reverse (invert) mode				*t_mr* *'t_mr'*
								*t_ms* *'t_ms'*
	t_ms	if non-empty, cursor can be moved in standout/inverse mode
	t_nd	non destructive space character			*t_nd* *'t_nd'*
	t_op	reset to original color pair			*t_op* *'t_op'*
	t_RI	cursor number of chars right			*t_RI* *'t_RI'*
	t_Sb	set background color				*t_Sb* *'t_Sb'*
	t_Sf	set foreground color				*t_Sf* *'t_Sf'*
	t_se	standout end					*t_se* *'t_se'*
	t_so	standout mode					*t_so* *'t_so'*
	t_sr	scroll reverse (backward)			*t_sr* *'t_sr'*
	t_te	out of "termcap" mode				*t_te* *'t_te'*
	t_ti	put terminal in "termcap" mode			*t_ti* *'t_ti'*
	t_ts	set window title start (to status line)		*t_ts* *'t_ts'*
	t_ue	underline end					*t_ue* *'t_ue'*
	t_us	underline mode					*t_us* *'t_us'*
	t_Ce	undercurl end					*t_Ce* *'t_Ce'*
	t_Cs	undercurl mode					*t_Cs* *'t_Cs'*
	t_ut	clearing uses the current background color	*t_ut* *'t_ut'*
	t_vb	visual bell					*t_vb* *'t_vb'*
	t_ve	cursor visible					*t_ve* *'t_ve'*
	t_vi	cursor invisible				*t_vi* *'t_vi'*
	t_vs	cursor very visible				*t_vs* *'t_vs'*
								*t_xs* *'t_xs'*
	t_xs	if non-empty, standout not erased by overwriting (hpterm)
	t_ZH	italics mode					*t_ZH* *'t_ZH'*
	t_ZR	italics end					*t_ZR* *'t_ZR'*

Added by Vim (there are no standard codes for these):
	t_IS	set icon text start				*t_IS* *'t_IS'*
	t_IE	set icon text end				*t_IE* *'t_IE'*
	t_WP	set window position (Y, X) in pixels		*t_WP* *'t_WP'*
	t_WS	set window size (height, width) in characters	*t_WS* *'t_WS'*
	t_SI	start insert mode (bar cursor shape)		*t_SI* *'t_SI'*
	t_EI	end insert mode (block cursor shape)		*t_EI* *'t_EI'*
		|termcap-cursor-shape|
	t_RV	request terminal version string (for xterm)	*t_RV* *'t_RV'*
		|xterm-8bit| |v:termresponse| |'ttymouse'| |xterm-codes|
	t_u7	request cursor position (for xterm)		*t_u7* *'t_u7'*
		see |'ambiwidth'|

KEY CODES
Note: Use the <> form if possible

	option	name		meaning	~

	t_ku	<Up>		arrow up			*t_ku* *'t_ku'*
	t_kd	<Down>		arrow down			*t_kd* *'t_kd'*
	t_kr	<Right>		arrow right			*t_kr* *'t_kr'*
	t_kl	<Left>		arrow left			*t_kl* *'t_kl'*
		<xUp>		alternate arrow up		*<xUp>*
		<xDown>		alternate arrow down		*<xDown>*
		<xRight>	alternate arrow right		*<xRight>*
		<xLeft>		alternate arrow left		*<xLeft>*
		<S-Up>		shift arrow up
		<S-Down>	shift arrow down
	t_%i	<S-Right>	shift arrow right		*t_%i* *'t_%i'*
	t_#4	<S-Left>	shift arrow left		*t_#4* *'t_#4'*
	t_k1	<F1>		function key 1			*t_k1* *'t_k1'*
		<xF1>		alternate F1			*<xF1>*
	t_k2	<F2>		function key 2		*<F2>*	*t_k2* *'t_k2'*
		<xF2>		alternate F2			*<xF2>*
	t_k3	<F3>		function key 3		*<F3>*	*t_k3* *'t_k3'*
		<xF3>		alternate F3			*<xF3>*
	t_k4	<F4>		function key 4		*<F4>*	*t_k4* *'t_k4'*
		<xF4>		alternate F4			*<xF4>*
	t_k5	<F5>		function key 5		*<F5>*	*t_k5* *'t_k5'*
	t_k6	<F6>		function key 6		*<F6>*	*t_k6* *'t_k6'*
	t_k7	<F7>		function key 7		*<F7>*	*t_k7* *'t_k7'*
	t_k8	<F8>		function key 8		*<F8>*	*t_k8* *'t_k8'*
	t_k9	<F9>		function key 9		*<F9>*	*t_k9* *'t_k9'*
	t_k;	<F10>		function key 10		*<F10>*	*t_k;* *'t_k;'*
	t_F1	<F11>		function key 11		*<F11>*	*t_F1* *'t_F1'*
	t_F2	<F12>		function key 12		*<F12>*	*t_F2* *'t_F2'*
	t_F3	<F13>		function key 13		*<F13>*	*t_F3* *'t_F3'*
	t_F4	<F14>		function key 14		*<F14>*	*t_F4* *'t_F4'*
	t_F5	<F15>		function key 15		*<F15>*	*t_F5* *'t_F5'*
	t_F6	<F16>		function key 16		*<F16>*	*t_F6* *'t_F6'*
	t_F7	<F17>		function key 17		*<F17>*	*t_F7* *'t_F7'*
	t_F8	<F18>		function key 18		*<F18>*	*t_F8* *'t_F8'*
	t_F9	<F19>		function key 19		*<F19>*	*t_F9* *'t_F9'*
		<S-F1>		shifted function key 1
		<S-xF1>		alternate <S-F1>		*<S-xF1>*
		<S-F2>		shifted function key 2		*<S-F2>*
		<S-xF2>		alternate <S-F2>		*<S-xF2>*
		<S-F3>		shifted function key 3		*<S-F3>*
		<S-xF3>		alternate <S-F3>		*<S-xF3>*
		<S-F4>		shifted function key 4		*<S-F4>*
		<S-xF4>		alternate <S-F4>		*<S-xF4>*
		<S-F5>		shifted function key 5		*<S-F5>*
		<S-F6>		shifted function key 6		*<S-F6>*
		<S-F7>		shifted function key 7		*<S-F7>*
		<S-F8>		shifted function key 8		*<S-F8>*
		<S-F9>		shifted function key 9		*<S-F9>*
		<S-F10>		shifted function key 10		*<S-F10>*
		<S-F11>		shifted function key 11		*<S-F11>*
		<S-F12>		shifted function key 12		*<S-F12>*
	t_%1	<Help>		help key			*t_%1* *'t_%1'*
	t_&8	<Undo>		undo key			*t_&8* *'t_&8'*
	t_kI	<Insert>	insert key			*t_kI* *'t_kI'*
	t_kD	<Del>		delete key			*t_kD* *'t_kD'*
	t_kb	<BS>		backspace key			*t_kb* *'t_kb'*
	t_kB	<S-Tab>		back-tab (shift-tab)  *<S-Tab>*	*t_kB* *'t_kB'*
	t_kh	<Home>		home key			*t_kh* *'t_kh'*
	t_#2	<S-Home>	shifted home key     *<S-Home>*	*t_#2* *'t_#2'*
		<xHome>		alternate home key		*<xHome>*
	t_@7	<End>		end key				*t_@7* *'t_@7'*
	t_*7	<S-End>		shifted end key	*<S-End>* *t_star7* *'t_star7'*
		<xEnd>		alternate end key		*<xEnd>*
	t_kP	<PageUp>	page-up key			*t_kP* *'t_kP'*
	t_kN	<PageDown>	page-down key			*t_kN* *'t_kN'*
	t_K1	<kHome>		keypad home key			*t_K1* *'t_K1'*
	t_K4	<kEnd>		keypad end key			*t_K4* *'t_K4'*
	t_K3	<kPageUp>	keypad page-up key		*t_K3* *'t_K3'*
	t_K5	<kPageDown>	keypad page-down key		*t_K5* *'t_K5'*
	t_K6	<kPlus>		keypad plus key	      *<kPlus>*	*t_K6* *'t_K6'*
	t_K7	<kMinus>	keypad minus key     *<kMinus>*	*t_K7* *'t_K7'*
	t_K8	<kDivide>	keypad divide	    *<kDivide>*	*t_K8* *'t_K8'*
	t_K9	<kMultiply>	keypad multiply   *<kMultiply>*	*t_K9* *'t_K9'*
	t_KA	<kEnter>	keypad enter key     *<kEnter>*	*t_KA* *'t_KA'*
	t_KB	<kPoint>	keypad decimal point *<kPoint>*	*t_KB* *'t_KB'*
	t_KC	<k0>		keypad 0		 *<k0>*	*t_KC* *'t_KC'*
	t_KD	<k1>		keypad 1		 *<k1>*	*t_KD* *'t_KD'*
	t_KE	<k2>		keypad 2		 *<k2>*	*t_KE* *'t_KE'*
	t_KF	<k3>		keypad 3		 *<k3>*	*t_KF* *'t_KF'*
	t_KG	<k4>		keypad 4		 *<k4>*	*t_KG* *'t_KG'*
	t_KH	<k5>		keypad 5		 *<k5>*	*t_KH* *'t_KH'*
	t_KI	<k6>		keypad 6		 *<k6>*	*t_KI* *'t_KI'*
	t_KJ	<k7>		keypad 7		 *<k7>*	*t_KJ* *'t_KJ'*
	t_KK	<k8>		keypad 8		 *<k8>*	*t_KK* *'t_KK'*
	t_KL	<k9>		keypad 9		 *<k9>*	*t_KL* *'t_KL'*
		<Mouse>		leader of mouse code		*<Mouse>*

Note about t_so and t_mr: When the termcap entry "so" is not present the
entry for "mr" is used.  And vice versa.  The same is done for "se" and "me".
If your terminal supports both inversion and standout mode, you can see two
different modes.  If your terminal supports only one of the modes, both will
look the same.

							*keypad-comma*
The keypad keys, when they are not mapped, behave like the equivalent normal
key.  There is one exception: if you have a comma on the keypad instead of a
decimal point, Vim will use a dot anyway.  Use these mappings to fix that: >
	:noremap <kPoint> ,
	:noremap! <kPoint> ,
<							*xterm-codes*
There is a special trick to obtain the key codes which currently only works
for xterm.  When |t_RV| is defined and a response is received which indicates
an xterm with patchlevel 141 or higher, Vim uses special escape sequences to
request the key codes directly from the xterm.  The responses are used to
adjust the various t_ codes.  This avoids the problem that the xterm can
produce different codes, depending on the mode it is in (8-bit, VT102,
VT220, etc.).  The result is that codes like <xF1> are no longer needed.
Note: This is only done on startup.  If the xterm options are changed after
Vim has started, the escape sequences may not be recognized any more.

							*xterm-resize*
Window resizing with xterm only works if the allowWindowOps resource is
enabled.  On some systems and versions of xterm it's disabled by default
because someone thought it would be a security issue.  It's not clear if this
is actually the case.

To overrule the default, put this line in your ~/.Xdefaults or
~/.Xresources:
>
	XTerm*allowWindowOps: 		true

And run "xrdb -merge .Xresources" to make it effective.  You can check the
value with the context menu (right mouse button while CTRL key is pressed),
there should be a tick at allow-window-ops.

							*termcap-colors*
Note about colors: The 't_Co' option tells Vim the number of colors available.
When it is non-zero, the 't_AB' and 't_AF' options are used to set the color.
If one of these is not available, 't_Sb' and 't_Sf' are used.  't_me' is used
to reset to the default colors.

				*termcap-cursor-shape* *termcap-cursor-color*
When Vim enters Insert mode the 't_SI' escape sequence is sent.  When leaving
Insert mode 't_EI' is used.  But only if both are defined.  This can be used
to change the shape or color of the cursor in Insert mode.  These are not
standard termcap/terminfo entries, you need to set them yourself.
Example for an xterm, this changes the color of the cursor: >
    if &term =~ "xterm"
	let &t_SI = "\<Esc>]12;purple\x7"
	let &t_EI = "\<Esc>]12;blue\x7"
    endif
NOTE: When Vim exits the shape for Normal mode will remain.  The shape from
before Vim started will not be restored.
{not available when compiled without the |+cursorshape| feature}

							*termcap-title*
The 't_ts' and 't_fs' options are used to set the window title if the terminal
allows title setting via sending strings.  They are sent before and after the
title string, respectively.  Similar 't_IS' and 't_IE'  are used to set the
icon text.  These are Vim-internal extensions of the Unix termcap, so they
cannot be obtained from an external termcap.  However, the builtin termcap
contains suitable entries for xterm and iris-ansi, so you don't need to set
them here.
							*hpterm*
If inversion or other highlighting does not work correctly, try setting the
't_xs' option to a non-empty string.  This makes the 't_ce' code be used to
remove highlighting from a line.  This is required for "hpterm".  Setting the
'weirdinvert' option has the same effect as making 't_xs' non-empty, and vice
versa.

							*scroll-region*
Some termcaps do not include an entry for 'cs' (scroll region), although the
terminal does support it.  For example: xterm on a Sun.  You can use the
builtin_xterm or define t_cs yourself.  For example: >
	:set t_cs=^V^[[%i%d;%dr
Where ^V is CTRL-V and ^[ is <Esc>.

The vertical scroll region t_CV is not a standard termcap code.  Vim uses it
internally in the GUI.  But it can also be defined for a terminal, if you can
find one that supports it.  The two arguments are the left and right column of
the region which to restrict the scrolling to.  Just like t_cs defines the top
and bottom lines.  Defining t_CV will make scrolling in vertically split
windows a lot faster.  Don't set t_CV when t_da or t_db is set (text isn't
cleared when scrolling).

Unfortunately it is not possible to deduce from the termcap how cursor
positioning should be done when using a scrolling region: Relative to the
beginning of the screen or relative to the beginning of the scrolling region.
Most terminals use the first method.  A known exception is the MS-DOS console
(pcterm).  The 't_CS' option should be set to any string when cursor
positioning is relative to the start of the scrolling region.  It should be
set to an empty string otherwise.  It defaults to "yes" when 'term' is
"pcterm".

Note for xterm users: The shifted cursor keys normally don't work.  You can
	make them work with the xmodmap command and some mappings in Vim.

	Give these commands in the xterm:
		xmodmap -e "keysym Up = Up F13"
		xmodmap -e "keysym Down = Down F16"
		xmodmap -e "keysym Left = Left F18"
		xmodmap -e "keysym Right = Right F19"

	And use these mappings in Vim:
		:map <t_F3> <S-Up>
		:map! <t_F3> <S-Up>
		:map <t_F6> <S-Down>
		:map! <t_F6> <S-Down>
		:map <t_F8> <S-Left>
		:map! <t_F8> <S-Left>
		:map <t_F9> <S-Right>
		:map! <t_F9> <S-Right>

Instead of, say, <S-Up> you can use any other command that you want to use the
shift-cursor-up key for.  (Note: To help people that have a Sun keyboard with
left side keys F14 is not used because it is confused with the undo key; F15
is not used, because it does a window-to-front; F17 is not used, because it
closes the window.  On other systems you can probably use them.)

==============================================================================
3. Window size						*window-size*

[This is about the size of the whole window Vim is using, not a window that is
created with the ":split" command.]

If you are running Vim on an Amiga and the terminal name is "amiga" or
"builtin_amiga", the amiga-specific window resizing will be enabled.  On Unix
systems three methods are tried to get the window size:

- an ioctl call (TIOCGSIZE or TIOCGWINSZ, depends on your system)
- the environment variables "LINES" and "COLUMNS"
- from the termcap entries "li" and "co"

If everything fails a default size of 24 lines and 80 columns is assumed.  If
a window-resize signal is received the size will be set again.  If the window
size is wrong you can use the 'lines' and 'columns' options to set the
correct values.

One command can be used to set the screen size:

						*:mod* *:mode* *E359* *E362*
:mod[e] [mode]

Without argument this only detects the screen size and redraws the screen.
With MS-DOS it is possible to switch screen mode.  [mode] can be one of these
values:
	"bw40"		40 columns black&white
	"c40"		40 columns color
	"bw80"		80 columns black&white
	"c80"		80 columns color (most people use this)
	"mono"		80 columns monochrome
	"c4350"		43 or 50 lines EGA/VGA mode
	number		mode number to use, depends on your video card

==============================================================================
4. Slow and fast terminals			*slow-fast-terminal*
						*slow-terminal*

If you have a fast terminal you may like to set the 'ruler' option.  The
cursor position is shown in the status line.  If you are using horizontal
scrolling ('wrap' option off) consider setting 'sidescroll' to a small
number.

If you have a slow terminal you may want to reset the 'showcmd' option.
The command characters will not be shown in the status line.  If the terminal
scrolls very slowly, set the 'scrolljump' to 5 or so.  If the cursor is moved
off the screen (e.g., with "j") Vim will scroll 5 lines at a time.  Another
possibility is to reduce the number of lines that Vim uses with the command
"z{height}<CR>".

If the characters from the terminal are arriving with more than 1 second
between them you might want to set the 'timeout' and/or 'ttimeout' option.
See the "Options" chapter |options|.

If your terminal does not support a scrolling region, but it does support
insert/delete line commands, scrolling with multiple windows may make the
lines jump up and down.  If you don't want this set the 'ttyfast' option.
This will redraw the window instead of scroll it.

If your terminal scrolls very slowly, but redrawing is not slow, set the
'ttyscroll' option to a small number, e.g., 3.  This will make Vim redraw the
screen instead of scrolling, when there are more than 3 lines to be scrolled.

If you are using a color terminal that is slow, use this command: >
	hi NonText cterm=NONE ctermfg=NONE
This avoids that spaces are sent when they have different attributes.  On most
terminals you can't see this anyway.

If you are using Vim over a slow serial line, you might want to try running
Vim inside the "screen" program.  Screen will optimize the terminal I/O quite
a bit.

If you are testing termcap options, but you cannot see what is happening,
you might want to set the 'writedelay' option.  When non-zero, one character
is sent to the terminal at a time (does not work for MS-DOS).  This makes the
screen updating a lot slower, making it possible to see what is happening.

==============================================================================
5. Using the mouse					*mouse-using*

This section is about using the mouse on a terminal or a terminal window.  How
to use the mouse in a GUI window is explained in |gui-mouse|.  For scrolling
with a mouse wheel see |scroll-mouse-wheel|.

Don't forget to enable the mouse with this command: >
	:set mouse=a
Otherwise Vim won't recognize the mouse in all modes (See 'mouse').

Currently the mouse is supported for Unix in an xterm window, in a *BSD
console with |sysmouse|, in a Linux console (with GPM |gpm-mouse|), for
MS-DOS and in a Windows console.
Mouse clicks can be used to position the cursor, select an area and paste.

These characters in the 'mouse' option tell in which situations the mouse will
be used by Vim:
		n	Normal mode
		v	Visual mode
		i	Insert mode
		c	Command-line mode
		h	all previous modes when in a help file
		a	all previous modes
		r	for |hit-enter| prompt

The default for 'mouse' is empty, the mouse is not used.  Normally you would
do: >
	:set mouse=a
to start using the mouse (this is equivalent to setting 'mouse' to "nvich").
If you only want to use the mouse in a few modes or also want to use it for
the two questions you will have to concatenate the letters for those modes.
For example: >
	:set mouse=nv
Will make the mouse work in Normal mode and Visual mode. >
	:set mouse=h
Will make the mouse work in help files only (so you can use "g<LeftMouse>" to
jump to tags).

Whether the selection that is started with the mouse is in Visual mode or
Select mode depends on whether "mouse" is included in the 'selectmode'
option.

In an xterm, with the currently active mode included in the 'mouse' option,
normal mouse clicks are used by Vim, mouse clicks with the shift or ctrl key
pressed go to the xterm.  With the currently active mode not included in
'mouse' all mouse clicks go to the xterm.

							*xterm-clipboard*
In the Athena and Motif GUI versions, when running in a terminal and there is
access to the X-server (DISPLAY is set), the copy and paste will behave like
in the GUI.  If not, the middle mouse button will insert the unnamed register.
In that case, here is how you copy and paste a piece of text:

Copy/paste with the mouse and Visual mode ('mouse' option must be set, see
above):
1. Press left mouse button on first letter of text, move mouse pointer to last
   letter of the text and release the button.  This will start Visual mode and
   highlight the selected area.
2. Press "y" to yank the Visual text in the unnamed register.
3. Click the left mouse button at the insert position.
4. Click the middle mouse button.

Shortcut: If the insert position is on the screen at the same time as the
Visual text, you can do 2, 3 and 4 all in one: Click the middle mouse button
at the insert position.

Note: When the |-X| command line argument is used, Vim will not connect to the
X server and copy/paste to the X clipboard (selection) will not work.  Use the
shift key with the mouse buttons to let the xterm do the selection.

							*xterm-command-server*
When the X-server clipboard is available, the command server described in
|x11-clientserver| can be enabled with the --servername command line argument.

							*xterm-copy-paste*
NOTE: In some (older) xterms, it's not possible to move the cursor past column
95 or 223.  This is an xterm problem, not Vim's.  Get a newer xterm
|color-xterm|.  Also see |'ttymouse'|.

Copy/paste in xterm with (current mode NOT included in 'mouse'):
1. Press left mouse button on first letter of text, move mouse pointer to last
   letter of the text and release the button.
2. Use normal Vim commands to put the cursor at the insert position.
3. Press "a" to start Insert mode.
4. Click the middle mouse button.
5. Press ESC to end Insert mode.
(The same can be done with anything in 'mouse' if you keep the shift key
pressed while using the mouse.)

Note: if you lose the 8th bit when pasting (special characters are translated
into other characters), you may have to do "stty cs8 -istrip -parenb" in your
shell before starting Vim.

Thus in an xterm the shift and ctrl keys cannot be used with the mouse.  Mouse
commands requiring the CTRL modifier can be simulated by typing the "g" key
before using the mouse:
	"g<LeftMouse>"	is "<C-LeftMouse>	(jump to tag under mouse click)
	"g<RightMouse>" is "<C-RightMouse>	("CTRL-T")

					*mouse-mode-table* *mouse-overview*
A short overview of what the mouse buttons do, when 'mousemodel' is "extend":

Normal Mode:
event	      position	   selection	  change  action	~
	       cursor			  window		~
<LeftMouse>     yes	     end	    yes
<C-LeftMouse>   yes	     end	    yes	   "CTRL-]" (2)
<S-LeftMouse>   yes	  no change	    yes	   "*" (2)    *<S-LeftMouse>*
<LeftDrag>      yes	start or extend (1) no		      *<LeftDrag>*
<LeftRelease>   yes	start or extend (1) no
<MiddleMouse>   yes	  if not active     no	   put
<MiddleMouse>   yes	  if active	    no	   yank and put
<RightMouse>    yes	start or extend     yes
<A-RightMouse>  yes start or extend blockw. yes		      *<A-RightMouse>*
<S-RightMouse>  yes	   no change	    yes	   "#" (2)    *<S-RightMouse>*
<C-RightMouse>  no	   no change	    no	   "CTRL-T"
<RightDrag>     yes	    extend	    no		      *<RightDrag>*
<RightRelease>  yes	    extend	    no		      *<RightRelease>*

Insert or Replace Mode:
event	      position	   selection	  change  action	~
	       cursor			  window		~
<LeftMouse>     yes     (cannot be active)  yes
<C-LeftMouse>   yes     (cannot be active)  yes	   "CTRL-O^]" (2)
<S-LeftMouse>   yes     (cannot be active)  yes	   "CTRL-O*" (2)
<LeftDrag>      yes     start or extend (1) no	   like CTRL-O (1)
<LeftRelease>   yes     start or extend (1) no	   like CTRL-O (1)
<MiddleMouse>   no      (cannot be active)  no	   put register
<RightMouse>    yes     start or extend	    yes	   like CTRL-O
<A-RightMouse>  yes start or extend blockw. yes
<S-RightMouse>  yes     (cannot be active)  yes	   "CTRL-O#" (2)
<C-RightMouse>  no	(cannot be active)  no	   "CTRL-O CTRL-T"

In a help window:
event	      position	   selection	  change  action	~
	       cursor			  window		~
<2-LeftMouse>   yes     (cannot be active)  no	   "^]" (jump to help tag)

When 'mousemodel' is "popup", these are different:

Normal Mode:
event	      position	   selection	  change  action	~
	       cursor			  window		~
<S-LeftMouse>	yes	start or extend (1) no
<A-LeftMouse>   yes start or extend blockw. no		      *<A-LeftMouse>*
<RightMouse>	no	popup menu	    no

Insert or Replace Mode:
event	      position	   selection	  change  action	~
	       cursor			  window		~
<S-LeftMouse>   yes     start or extend (1) no	   like CTRL-O (1)
<A-LeftMouse>   yes start or extend blockw. no
<RightMouse>    no	popup menu	    no

(1) only if mouse pointer moved since press
(2) only if click is in same buffer

Clicking the left mouse button causes the cursor to be positioned.  If the
click is in another window that window is made the active window.  When
editing the command-line the cursor can only be positioned on the
command-line.  When in Insert mode Vim remains in Insert mode.  If 'scrolloff'
is set, and the cursor is positioned within 'scrolloff' lines from the window
border, the text is scrolled.

A selection can be started by pressing the left mouse button on the first
character, moving the mouse to the last character, then releasing the mouse
button.  You will not always see the selection until you release the button,
only in some versions (GUI, MS-DOS, WIN32) will the dragging be shown
immediately.  Note that you can make the text scroll by moving the mouse at
least one character in the first/last line in the window when 'scrolloff' is
non-zero.

In Normal, Visual and Select mode clicking the right mouse button causes the
Visual area to be extended.  When 'mousemodel' is "popup", the left button has
to be used while keeping the shift key pressed.  When clicking in a window
which is editing another buffer, the Visual or Select mode is stopped.

In Normal, Visual and Select mode clicking the right mouse button with the alt
key pressed causes the Visual area to become blockwise.  When 'mousemodel' is
"popup" the left button has to be used with the alt key.  Note that this won't
work on systems where the window manager consumes the mouse events when the
alt key is pressed (it may move the window).

							*double-click*
Double, triple and quadruple clicks are supported when the GUI is active,
for MS-DOS and Win32, and for an xterm (if the gettimeofday() function is
available).  For selecting text, extra clicks extend the selection:
	click		select ~
	double		word or % match		*<2-LeftMouse>*
	triple		line			*<3-LeftMouse>*
	quadruple	rectangular block	*<4-LeftMouse>*
Exception: In a Help window a double click jumps to help for the word that is
clicked on.
A double click on a word selects that word.  'iskeyword' is used to specify
which characters are included in a word.  A double click on a character
that has a match selects until that match (like using "v%").  If the match is
an #if/#else/#endif block, the selection becomes linewise.
For MS-DOS and xterm the time for double clicking can be set with the
'mousetime' option.  For the other systems this time is defined outside of
Vim.
An example, for using a double click to jump to the tag under the cursor: >
	:map <2-LeftMouse> :exe "tag ". expand("<cword>")<CR>

Dragging the mouse with a double click (button-down, button-up, button-down
and then drag) will result in whole words to be selected.  This continues
until the button is released, at which point the selection is per character
again.

							*gpm-mouse*
The GPM mouse is only supported when the |+mouse_gpm| feature was enabled at
compile time.  The GPM mouse driver (Linux console) does not support quadruple
clicks.

In Insert mode, when a selection is started, Vim goes into Normal mode
temporarily.  When Visual or Select mode ends, it returns to Insert mode.
This is like using CTRL-O in Insert mode.  Select mode is used when the
'selectmode' option contains "mouse".
							*sysmouse*
The sysmouse is only supported when the |+mouse_sysmouse| feature was enabled
at compile time.  The sysmouse driver (*BSD console) does not support keyboard
modifiers.

							*drag-status-line*
When working with several windows, the size of the windows can be changed by
dragging the status line with the mouse.  Point the mouse at a status line,
press the left button, move the mouse to the new position of the status line,
release the button.  Just clicking the mouse in a status line makes that window
the current window, without moving the cursor.  If by selecting a window it
will change position or size, the dragging of the status line will look
confusing, but it will work (just try it).

					*<MiddleRelease>* *<MiddleDrag>*
Mouse clicks can be mapped.  The codes for mouse clicks are:
     code	    mouse button	      normal action	~
 <LeftMouse>	 left pressed		    set cursor position
 <LeftDrag>	 left moved while pressed   extend selection
 <LeftRelease>	 left released		    set selection end
 <MiddleMouse>	 middle pressed		    paste text at cursor position
 <MiddleDrag>	 middle moved while pressed -
 <MiddleRelease> middle released	    -
 <RightMouse>	 right pressed		    extend selection
 <RightDrag>	 right moved while pressed  extend selection
 <RightRelease>  right released		    set selection end
 <X1Mouse>	 X1 button pressed	    -			*X1Mouse*
 <X1Drag>	 X1 moved while pressed	    -			*X1Drag*
 <X1Release>	 X1 button release	    -			*X1Release*
 <X2Mouse>	 X2 button pressed	    -			*X2Mouse*
 <X2Drag>	 X2 moved while pressed     -			*X2Drag*
 <X2Release>	 X2 button release	    -			*X2Release*

The X1 and X2 buttons refer to the extra buttons found on some mice.  The
'Microsoft Explorer' mouse has these buttons available to the right thumb.
Currently X1 and X2 only work on Win32 environments.

Examples: >
	:noremap <MiddleMouse> <LeftMouse><MiddleMouse>
Paste at the position of the middle mouse button click (otherwise the paste
would be done at the cursor position). >

	:noremap <LeftRelease> <LeftRelease>y
Immediately yank the selection, when using Visual mode.

Note the use of ":noremap" instead of "map" to avoid a recursive mapping.
>
	:map <X1Mouse> <C-O>
	:map <X2Mouse> <C-I>
Map the X1 and X2 buttons to go forwards and backwards in the jump list, see
|CTRL-O| and |CTRL-I|.

						*mouse-swap-buttons*
To swap the meaning of the left and right mouse buttons: >
	:noremap	<LeftMouse>	<RightMouse>
	:noremap	<LeftDrag>	<RightDrag>
	:noremap	<LeftRelease>	<RightRelease>
	:noremap	<RightMouse>	<LeftMouse>
	:noremap	<RightDrag>	<LeftDrag>
	:noremap	<RightRelease>	<LeftRelease>
	:noremap	g<LeftMouse>	<C-RightMouse>
	:noremap	g<RightMouse>	<C-LeftMouse>
	:noremap!	<LeftMouse>	<RightMouse>
	:noremap!	<LeftDrag>	<RightDrag>
	:noremap!	<LeftRelease>	<RightRelease>
	:noremap!	<RightMouse>	<LeftMouse>
	:noremap!	<RightDrag>	<LeftDrag>
	:noremap!	<RightRelease>	<LeftRelease>
<
 vim:tw=78:ts=8:ft=help:norl:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    " Vim support file to detect file types
"
" Maintainer:	Bram Moolenaar <Bram@vim.org>
" Last Change:	2014 Jul 09

" Listen very carefully, I will say this only once
if exists("did_load_filetypes")
  finish
endif
let did_load_filetypes = 1

" Line continuation is used here, remove 'C' from 'cpoptions'
let s:cpo_save = &cpo
set cpo&vim

augroup filetypedetect

" Ignored extensions
if exists("*fnameescape")
au BufNewFile,BufRead ?\+.orig,?\+.bak,?\+.old,?\+.new,?\+.dpkg-dist,?\+.dpkg-old,?\+.dpkg-new,?\+.dpkg-bak,?\+.rpmsave,?\+.rpmnew
	\ exe "doau filetypedetect BufRead " . fnameescape(expand("<afile>:r"))
au BufNewFile,BufRead *~
	\ let s:name = expand("<afile>") |
	\ let s:short = substitute(s:name, '\~$', '', '') |
	\ if s:name != s:short && s:short != "" |
	\   exe "doau filetypedetect BufRead " . fnameescape(s:short) |
	\ endif |
	\ unlet! s:name s:short
au BufNewFile,BufRead ?\+.in
	\ if expand("<afile>:t") != "configure.in" |
	\   exe "doau filetypedetect BufRead " . fnameescape(expand("<afile>:r")) |
	\ endif
elseif &verbose > 0
  echomsg "Warning: some filetypes will not be recognized because this version of Vim does not have fnameescape()"
endif

" Pattern used to match file names which should not be inspected.
" Currently finds compressed files.
if !exists("g:ft_ignore_pat")
  let g:ft_ignore_pat = '\.\(Z\|gz\|bz2\|zip\|tgz\)$'
endif

" Function used for patterns that end in a star: don't set the filetype if the
" file name matches ft_ignore_pat.
func! s:StarSetf(ft)
  if expand("<amatch>") !~ g:ft_ignore_pat
    exe 'setf ' . a:ft
  endif
endfunc

" Abaqus or Trasys
au BufNewFile,BufRead *.inp			call s:Check_inp()

func! s:Check_inp()
  if getline(1) =~ '^\*'
    setf abaqus
  else
    let n = 1
    if line("$") > 500
      let nmax = 500
    else
      let nmax = line("$")
    endif
    while n <= nmax
      if getline(n) =~? "^header surface data"
	setf trasys
	break
      endif
      let n = n + 1
    endwhile
  endif
endfunc

" A-A-P recipe
au BufNewFile,BufRead *.aap			setf aap

" A2ps printing utility
au BufNewFile,BufRead */etc/a2ps.cfg,*/etc/a2ps/*.cfg,a2psrc,.a2psrc setf a2ps

" ABAB/4
au BufNewFile,BufRead *.abap			setf abap

" ABC music notation
au BufNewFile,BufRead *.abc			setf abc

" ABEL
au BufNewFile,BufRead *.abl			setf abel

" AceDB
au BufNewFile,BufRead *.wrm			setf acedb

" Ada (83, 9X, 95)
au BufNewFile,BufRead *.adb,*.ads,*.ada		setf ada
if has("vms")
  au BufNewFile,BufRead *.gpr,*.ada_m,*.adc	setf ada
else
  au BufNewFile,BufRead *.gpr			setf ada
endif

" AHDL
au BufNewFile,BufRead *.tdf			setf ahdl

" AMPL
au BufNewFile,BufRead *.run			setf ampl

" Ant
au BufNewFile,BufRead build.xml			setf ant

" Arduino
au BufNewFile,BufRead *.ino,*.pde		setf arduino

" Apache style config file
au BufNewFile,BufRead proftpd.conf*		call s:StarSetf('apachestyle')

" Apache config file
au BufNewFile,BufRead .htaccess,*/etc/httpd/*.conf		setf apache

" XA65 MOS6510 cross assembler
au BufNewFile,BufRead *.a65			setf a65

" Applescript
au BufNewFile,BufRead *.scpt			setf applescript

" Applix ELF
au BufNewFile,BufRead *.am
	\ if expand("<afile>") !~? 'Makefile.am\>' | setf elf | endif

" ALSA configuration
au BufNewFile,BufRead .asoundrc,*/usr/share/alsa/alsa.conf,*/etc/asound.conf setf alsaconf

" Arc Macro Language
au BufNewFile,BufRead *.aml			setf aml

" APT config file
au BufNewFile,BufRead apt.conf		       setf aptconf
au BufNewFile,BufRead */.aptitude/config       setf aptconf
au BufNewFile,BufRead */etc/apt/apt.conf.d/{[-_[:alnum:]]\+,[-_.[:alnum:]]\+.conf} setf aptconf

" Arch Inventory file
au BufNewFile,BufRead .arch-inventory,=tagging-method	setf arch

" ART*Enterprise (formerly ART-IM)
au BufNewFile,BufRead *.art			setf art

" AsciiDoc
au BufNewFile,BufRead *.asciidoc		setf asciidoc

" ASN.1
au BufNewFile,BufRead *.asn,*.asn1		setf asn

" Active Server Pages (with Visual Basic Script)
au BufNewFile,BufRead *.asa
	\ if exists("g:filetype_asa") |
	\   exe "setf " . g:filetype_asa |
	\ else |
	\   setf aspvbs |
	\ endif

" Active Server Pages (with Perl or Visual Basic Script)
au BufNewFile,BufRead *.asp
	\ if exists("g:filetype_asp") |
	\   exe "setf " . g:filetype_asp |
	\ elseif getline(1) . getline(2) . getline(3) =~? "perlscript" |
	\   setf aspperl |
	\ else |
	\   setf aspvbs |
	\ endif

" Grub (must be before catch *.lst)
au BufNewFile,BufRead */boot/grub/menu.lst,*/boot/grub/grub.conf,*/etc/grub.conf setf grub

" Assembly (all kinds)
" *.lst is not pure assembly, it has two extra columns (address, byte codes)
au BufNewFile,BufRead *.asm,*.[sS],*.[aA],*.mac,*.lst	call s:FTasm()

" This function checks for the kind of assembly that is wanted by the user, or
" can be detected from the first five lines of the file.
func! s:FTasm()
  " make sure b:asmsyntax exists
  if !exists("b:asmsyntax")
    let b:asmsyntax = ""
  endif

  if b:asmsyntax == ""
    call s:FTasmsyntax()
  endif

  " if b:asmsyntax still isn't set, default to asmsyntax or GNU
  if b:asmsyntax == ""
    if exists("g:asmsyntax")
      let b:asmsyntax = g:asmsyntax
    else
      let b:asmsyntax = "asm"
    endif
  endif

  exe "setf " . fnameescape(b:asmsyntax)
endfunc

func! s:FTasmsyntax()
  " see if file contains any asmsyntax=foo overrides. If so, change
  " b:asmsyntax appropriately
  let head = " ".getline(1)." ".getline(2)." ".getline(3)." ".getline(4).
	\" ".getline(5)." "
  let match = matchstr(head, '\sasmsyntax=\zs[a-zA-Z0-9]\+\ze\s')
  if match != ''
    let b:asmsyntax = match
  elseif ((head =~? '\.title') || (head =~? '\.ident') || (head =~? '\.macro') || (head =~? '\.subtitle') || (head =~? '\.library'))
    let b:asmsyntax = "vmasm"
  endif
endfunc

" Macro (VAX)
au BufNewFile,BufRead *.mar			setf vmasm

" Atlas
au BufNewFile,BufRead *.atl,*.as		setf atlas

" Autoit v3
au BufNewFile,BufRead *.au3			setf autoit

" Autohotkey
au BufNewFile,BufRead *.ahk			setf autohotkey

" Automake
au BufNewFile,BufRead [mM]akefile.am,GNUmakefile.am	setf automake

" Autotest .at files are actually m4
au BufNewFile,BufRead *.at			setf m4

" Avenue
au BufNewFile,BufRead *.ave			setf ave

" Awk
au BufNewFile,BufRead *.awk			setf awk

" B
au BufNewFile,BufRead *.mch,*.ref,*.imp		setf b

" BASIC or Visual Basic
au BufNewFile,BufRead *.bas			call s:FTVB("basic")

" Check if one of the first five lines contains "VB_Name".  In that case it is
" probably a Visual Basic file.  Otherwise it's assumed to be "alt" filetype.
func! s:FTVB(alt)
  if getline(1).getline(2).getline(3).getline(4).getline(5) =~? 'VB_Name\|Begin VB\.\(Form\|MDIForm\|UserControl\)'
    setf vb
  else
    exe "setf " . a:alt
  endif
endfunc

" Visual Basic Script (close to Visual Basic) or Visual Basic .NET
au BufNewFile,BufRead *.vb,*.vbs,*.dsm,*.ctl	setf vb

" IBasic file (similar to QBasic)
au BufNewFile,BufRead *.iba,*.ibi		setf ibasic

" FreeBasic file (similar to QBasic)
au BufNewFile,BufRead *.fb,*.bi			setf freebasic

" Batch file for MSDOS.
au BufNewFile,BufRead *.bat,*.sys		setf dosbatch
" *.cmd is close to a Batch file, but on OS/2 Rexx files also use *.cmd.
au BufNewFile,BufRead *.cmd
	\ if getline(1) =~ '^/\*' | setf rexx | else | setf dosbatch | endif

" Batch file for 4DOS
au BufNewFile,BufRead *.btm			call s:FTbtm()
func! s:FTbtm()
  if exists("g:dosbatch_syntax_for_btm") && g:dosbatch_syntax_for_btm
    setf dosbatch
  else
    setf btm
  endif
endfunc

" BC calculator
au BufNewFile,BufRead *.bc			setf bc

" BDF font
au BufNewFile,BufRead *.bdf			setf bdf

" BibTeX bibliography database file
au BufNewFile,BufRead *.bib			setf bib

" BibTeX Bibliography Style
au BufNewFile,BufRead *.bst			setf bst

" BIND configuration
au BufNewFile,BufRead named.conf,rndc.conf	setf named

" BIND zone
au BufNewFile,BufRead named.root		setf bindzone
au BufNewFile,BufRead *.db			call s:BindzoneCheck('')

func! s:BindzoneCheck(default)
  if getline(1).getline(2).getline(3).getline(4) =~ '^; <<>> DiG [0-9.]\+ <<>>\|BIND.*named\|$ORIGIN\|$TTL\|IN\s\+SOA'
    setf bindzone
  elseif a:default != ''
    exe 'setf ' . a:default
  endif
endfunc

" Blank
au BufNewFile,BufRead *.bl			setf blank

" Blkid cache file
au BufNewFile,BufRead */etc/blkid.tab,*/etc/blkid.tab.old   setf xml

" C or lpc
au BufNewFile,BufRead *.c			call s:FTlpc()

func! s:FTlpc()
  if exists("g:lpc_syntax_for_c")
    let lnum = 1
    while lnum <= 12
      if getline(lnum) =~# '^\(//\|inherit\|private\|protected\|nosave\|string\|object\|mapping\|mixed\)'
	setf lpc
	return
      endif
      let lnum = lnum + 1
    endwhile
  endif
  setf c
endfunc

" Calendar
au BufNewFile,BufRead calendar			setf calendar

" C#
au BufNewFile,BufRead *.cs			setf cs

" CSDL
au BufNewFile,BufRead *.csdl			setf csdl

" Cabal
au BufNewFile,BufRead *.cabal			setf cabal

" Cdrdao TOC
au BufNewFile,BufRead *.toc			setf cdrtoc

" Cdrdao config
au BufNewFile,BufRead */etc/cdrdao.conf,*/etc/defaults/cdrdao,*/etc/default/cdrdao,.cdrdao	setf cdrdaoconf

" Cfengine
au BufNewFile,BufRead cfengine.conf		setf cfengine

" ChaiScript
au BufRead,BufNewFile *.chai			setf chaiscript

" Comshare Dimension Definition Language
au BufNewFile,BufRead *.cdl			setf cdl

" Conary Recipe
au BufNewFile,BufRead *.recipe			setf conaryrecipe

" Controllable Regex Mutilator
au BufNewFile,BufRead *.crm			setf crm

" Cyn++
au BufNewFile,BufRead *.cyn			setf cynpp

" Cynlib
" .cc and .cpp files can be C++ or Cynlib.
au BufNewFile,BufRead *.cc
	\ if exists("cynlib_syntax_for_cc")|setf cynlib|else|setf cpp|endif
au BufNewFile,BufRead *.cpp
	\ if exists("cynlib_syntax_for_cpp")|setf cynlib|else|setf cpp|endif

" C++
au BufNewFile,BufRead *.cxx,*.c++,*.hh,*.hxx,*.hpp,*.ipp,*.moc,*.tcc,*.inl setf cpp
if has("fname_case")
  au BufNewFile,BufRead *.C,*.H setf cpp
endif

" .h files can be C, Ch C++, ObjC or ObjC++.
" Set c_syntax_for_h if you want C, ch_syntax_for_h if you want Ch. ObjC is
" detected automatically.
au BufNewFile,BufRead *.h			call s:FTheader()

func! s:FTheader()
  if match(getline(1, min([line("$"), 200])), '^@\(interface\|end\|class\)') > -1
    if exists("g:c_syntax_for_h")
      setf objc
    else
      setf objcpp
    endif
  elseif exists("g:c_syntax_for_h")
    setf c
  elseif exists("g:ch_syntax_for_h")
    setf ch
  else
    setf cpp
  endif
endfunc

" Ch (CHscript)
au BufNewFile,BufRead *.chf			setf ch

" TLH files are C++ headers generated by Visual C++'s #import from typelibs
au BufNewFile,BufRead *.tlh			setf cpp

" Cascading Style Sheets
au BufNewFile,BufRead *.css			setf css

" Century Term Command Scripts (*.cmd too)
au BufNewFile,BufRead *.con			setf cterm

" Changelog
au BufNewFile,BufRead changelog.Debian,changelog.dch,NEWS.Debian,NEWS.dch
					\	setf debchangelog

au BufNewFile,BufRead [cC]hange[lL]og
	\  if getline(1) =~ '; urgency='
	\|   setf debchangelog
	\| else
	\|   setf changelog
	\| endif

au BufNewFile,BufRead NEWS
	\  if getline(1) =~ '; urgency='
	\|   setf debchangelog
	\| endif

" CHILL
au BufNewFile,BufRead *..ch			setf chill

" Changes for WEB and CWEB or CHILL
au BufNewFile,BufRead *.ch			call s:FTchange()

" This function checks if one of the first ten lines start with a '@'.  In
" that case it is probably a change file.
" If the first line starts with # or ! it's probably a ch file.
" If a line has "main", "include", "//" ir "/*" it's probably ch.
" Otherwise CHILL is assumed.
func! s:FTchange()
  let lnum = 1
  while lnum <= 10
    if getline(lnum)[0] == '@'
      setf change
      return
    endif
    if lnum == 1 && (getline(1)[0] == '#' || getline(1)[0] == '!')
      setf ch
      return
    endif
    if getline(lnum) =~ "MODULE"
      setf chill
      return
    endif
    if getline(lnum) =~ 'main\s*(\|#\s*include\|//'
      setf ch
      return
    endif
    let lnum = lnum + 1
  endwhile
  setf chill
endfunc

" ChordPro
au BufNewFile,BufRead *.chopro,*.crd,*.cho,*.crdpro,*.chordpro	setf chordpro

" Clean
au BufNewFile,BufRead *.dcl,*.icl		setf clean

" Clever
au BufNewFile,BufRead *.eni			setf cl

" Clever or dtd
au BufNewFile,BufRead *.ent			call s:FTent()

func! s:FTent()
  " This function checks for valid cl syntax in the first five lines.
  " Look for either an opening comment, '#', or a block start, '{".
  " If not found, assume SGML.
  let lnum = 1
  while lnum < 6
    let line = getline(lnum)
    if line =~ '^\s*[#{]'
      setf cl
      return
    elseif line !~ '^\s*$'
      " Not a blank line, not a comment, and not a block start,
      " so doesn't look like valid cl code.
      break
    endif
    let lnum = lnum + 1
  endw
  setf dtd
endfunc

" Clipper (or FoxPro; could also be eviews)
au BufNewFile,BufRead *.prg
	\ if exists("g:filetype_prg") |
	\   exe "setf " . g:filetype_prg |
	\ else |
	\   setf clipper |
	\ endif

" Clojure
au BufNewFile,BufRead *.clj,*.cljs		setf clojure

" Cmake
au BufNewFile,BufRead CMakeLists.txt,*.cmake,*.cmake.in		setf cmake

" Cmusrc
au BufNewFile,BufRead */.cmus/{autosave,rc,command-history,*.theme} setf cmusrc
au BufNewFile,BufRead */cmus/{rc,*.theme}			setf cmusrc

" Cobol
au BufNewFile,BufRead *.cbl,*.cob,*.lib	setf cobol
"   cobol or zope form controller python script? (heuristic)
au BufNewFile,BufRead *.cpy
	\ if getline(1) =~ '^##' |
	\   setf python |
	\ else |
	\   setf cobol |
	\ endif

" Coco/R
au BufNewFile,BufRead *.atg			setf coco

" Cold Fusion
au BufNewFile,BufRead *.cfm,*.cfi,*.cfc		setf cf

" Configure scripts
au BufNewFile,BufRead configure.in,configure.ac setf config

" CUDA  Cumpute Unified Device Architecture
au BufNewFile,BufRead *.cu			setf cuda

" WildPackets EtherPeek Decoder
au BufNewFile,BufRead *.dcd			setf dcd

" Enlightenment configuration files
au BufNewFile,BufRead *enlightenment/*.cfg	setf c

" Eterm
au BufNewFile,BufRead *Eterm/*.cfg		setf eterm

" Euphoria 3 or 4
au BufNewFile,BufRead *.eu,*.ew,*.ex,*.exu,*.exw  call s:EuphoriaCheck()
if has("fname_case")
   au BufNewFile,BufRead *.EU,*.EW,*.EX,*.EXU,*.EXW  call s:EuphoriaCheck()
endif

func! s:EuphoriaCheck()
  if exists('g:filetype_euphoria')
    exe 'setf ' . g:filetype_euphoria
  else
    setf euphoria3
  endif
endfunc

" Lynx config files
au BufNewFile,BufRead lynx.cfg			setf lynx

" Quake
au BufNewFile,BufRead *baseq[2-3]/*.cfg,*id1/*.cfg	setf quake
au BufNewFile,BufRead *quake[1-3]/*.cfg			setf quake

" Quake C
au BufNewFile,BufRead *.qc			setf c

" Configure files
au BufNewFile,BufRead *.cfg			setf cfg

" Cucumber
au BufNewFile,BufRead *.feature			setf cucumber

" Communicating Sequential Processes
au BufNewFile,BufRead *.csp,*.fdr		setf csp

" CUPL logic description and simulation
au BufNewFile,BufRead *.pld			setf cupl
au BufNewFile,BufRead *.si			setf cuplsim

" Debian Control
au BufNewFile,BufRead */debian/control		setf debcontrol
au BufNewFile,BufRead control
	\  if getline(1) =~ '^Source:'
	\|   setf debcontrol
	\| endif

" Debian Sources.list
au BufNewFile,BufRead */etc/apt/sources.list		setf debsources
au BufNewFile,BufRead */etc/apt/sources.list.d/*.list	setf debsources

" Deny hosts
au BufNewFile,BufRead denyhosts.conf		setf denyhosts

" dnsmasq(8) configuration files
au BufNewFile,BufRead */etc/dnsmasq.conf	setf dnsmasq

" ROCKLinux package description
au BufNewFile,BufRead *.desc			setf desc

" the D language or dtrace
au BufNewFile,BufRead *.d			call s:DtraceCheck()

func! s:DtraceCheck()
  let lines = getline(1, min([line("$"), 100]))
  if match(lines, '^module\>\|^import\>') > -1
    " D files often start with a module and/or import statement.
    setf d
  elseif match(lines, '^#!\S\+dtrace\|#pragma\s\+D\s\+option\|:\S\{-}:\S\{-}:') > -1
    setf dtrace
  else
    setf d
  endif
endfunc

" Desktop files
au BufNewFile,BufRead *.desktop,.directory	setf desktop

" Dict config
au BufNewFile,BufRead dict.conf,.dictrc		setf dictconf

" Dictd config
au BufNewFile,BufRead dictd.conf		setf dictdconf

" Diff files
au BufNewFile,BufRead *.diff,*.rej,*.patch	setf diff

" Dircolors
au BufNewFile,BufRead .dir_colors,.dircolors,*/etc/DIR_COLORS	setf dircolors

" Diva (with Skill) or InstallShield
au BufNewFile,BufRead *.rul
	\ if getline(1).getline(2).getline(3).getline(4).getline(5).getline(6) =~? 'InstallShield' |
	\   setf ishd |
	\ else |
	\   setf diva |
	\ endif

" DCL (Digital Command Language - vms) or DNS zone file
au BufNewFile,BufRead *.com			call s:BindzoneCheck('dcl')

" DOT
au BufNewFile,BufRead *.dot			setf dot

" Dylan - lid files
au BufNewFile,BufRead *.lid			setf dylanlid

" Dylan - intr files (melange)
au BufNewFile,BufRead *.intr			setf dylanintr

" Dylan
au BufNewFile,BufRead *.dylan			setf dylan

" Microsoft Module Definition
au BufNewFile,BufRead *.def			setf def

" Dracula
au BufNewFile,BufRead *.drac,*.drc,*lvs,*lpe	setf dracula

" Datascript
au BufNewFile,BufRead *.ds			setf datascript

" dsl
au BufNewFile,BufRead *.dsl			setf dsl

" DTD (Document Type Definition for XML)
au BufNewFile,BufRead *.dtd			setf dtd

" DTS/DSTI (device tree files)
au BufNewFile,BufRead *.dts,*.dtsi		setf dts

" EDIF (*.edf,*.edif,*.edn,*.edo)
au BufNewFile,BufRead *.ed\(f\|if\|n\|o\)	setf edif

" Embedix Component Description
au BufNewFile,BufRead *.ecd			setf ecd

" Eiffel or Specman or Euphoria
au BufNewFile,BufRead *.e,*.E			call s:FTe()

" Elinks configuration
au BufNewFile,BufRead */etc/elinks.conf,*/.elinks/elinks.conf	setf elinks

func! s:FTe()
  if exists('g:filetype_euphoria')
    exe 'setf ' . g:filetype_euphoria
  else
    let n = 1
    while n < 100 && n < line("$")
      if getline(n) =~ "^\\s*\\(<'\\|'>\\)\\s*$"
        setf specman
        return
      endif
      let n = n + 1
    endwhile
    setf eiffel
  endif
endfunc

" ERicsson LANGuage; Yaws is erlang too
au BufNewFile,BufRead *.erl,*.hrl,*.yaws	setf erlang

" Elm Filter Rules file
au BufNewFile,BufRead filter-rules		setf elmfilt

" ESMTP rc file
au BufNewFile,BufRead *esmtprc			setf esmtprc

" ESQL-C
au BufNewFile,BufRead *.ec,*.EC			setf esqlc

" Esterel
au BufNewFile,BufRead *.strl			setf esterel

" Essbase script
au BufNewFile,BufRead *.csc			setf csc

" Exim
au BufNewFile,BufRead exim.conf			setf exim

" Expect
au BufNewFile,BufRead *.exp			setf expect

" Exports
au BufNewFile,BufRead exports			setf exports

" Falcon
au BufNewFile,BufRead *.fal			setf falcon

" Fantom
au BufNewFile,BufRead *.fan,*.fwt		setf fan

" Factor
au BufNewFile,BufRead *.factor			setf factor

" Fetchmail RC file
au BufNewFile,BufRead .fetchmailrc		setf fetchmail

" FlexWiki - disabled, because it has side effects when a .wiki file
" is not actually FlexWiki
"au BufNewFile,BufRead *.wiki			setf flexwiki

" Focus Executable
au BufNewFile,BufRead *.fex,*.focexec		setf focexec

" Focus Master file (but not for auto.master)
au BufNewFile,BufRead auto.master		setf conf
au BufNewFile,BufRead *.mas,*.master		setf master

" Forth
au BufNewFile,BufRead *.fs,*.ft			setf forth

" Reva Forth
au BufNewFile,BufRead *.frt			setf reva

" Fortran
if has("fname_case")
  au BufNewFile,BufRead *.F,*.FOR,*.FPP,*.FTN,*.F77,*.F90,*.F95,*.F03,*.F08	 setf fortran
endif
au BufNewFile,BufRead   *.f,*.for,*.fortran,*.fpp,*.ftn,*.f77,*.f90,*.f95,*.f03,*.f08  setf fortran

" Framescript
au BufNewFile,BufRead *.fsl			setf framescript

" FStab
au BufNewFile,BufRead fstab,mtab		setf fstab

" GDB command files
au BufNewFile,BufRead .gdbinit			setf gdb

" GDMO
au BufNewFile,BufRead *.mo,*.gdmo		setf gdmo

" Gedcom
au BufNewFile,BufRead *.ged,lltxxxxx.txt	setf gedcom

" Git
au BufNewFile,BufRead *.git/COMMIT_EDITMSG	setf gitcommit
au BufNewFile,BufRead *.git/MERGE_MSG		setf gitcommit
au BufNewFile,BufRead *.git/config,.gitconfig,.gitmodules setf gitconfig
au BufNewFile,BufRead *.git/modules/*/COMMIT_EDITMSG setf gitcommit
au BufNewFile,BufRead *.git/modules/*/config	setf gitconfig
au BufNewFile,BufRead */.config/git/config	setf gitconfig
au BufNewFile,BufRead git-rebase-todo		setf gitrebase
au BufNewFile,BufRead .msg.[0-9]*
      \ if getline(1) =~ '^From.*# This line is ignored.$' |
      \   setf gitsendemail |
      \ endif
au BufNewFile,BufRead *.git/*
      \ if getline(1) =~ '^\x\{40\}\>\|^ref: ' |
      \   setf git |
      \ endif

" Gkrellmrc
au BufNewFile,BufRead gkrellmrc,gkrellmrc_?	setf gkrellmrc

" GP scripts (2.0 and onward)
au BufNewFile,BufRead *.gp,.gprc		setf gp

" GPG
au BufNewFile,BufRead */.gnupg/options		setf gpg
au BufNewFile,BufRead */.gnupg/gpg.conf		setf gpg
au BufNewFile,BufRead */usr/*/gnupg/options.skel setf gpg

" gnash(1) configuration files
au BufNewFile,BufRead gnashrc,.gnashrc,gnashpluginrc,.gnashpluginrc setf gnash

" Gitolite
au BufNewFile,BufRead gitolite.conf		setf gitolite
au BufNewFile,BufRead */gitolite-admin/conf/*	call s:StarSetf('gitolite')
au BufNewFile,BufRead {,.}gitolite.rc,example.gitolite.rc	setf perl

" Gnuplot scripts
au BufNewFile,BufRead *.gpi			setf gnuplot

" GrADS scripts
au BufNewFile,BufRead *.gs			setf grads

" Gretl
au BufNewFile,BufRead *.gretl			setf gretl

" Groovy
au BufNewFile,BufRead *.groovy			setf groovy

" GNU Server Pages
au BufNewFile,BufRead *.gsp			setf gsp

" Group file
au BufNewFile,BufRead */etc/group,*/etc/group-,*/etc/group.edit,*/etc/gshadow,*/etc/gshadow-,*/etc/gshadow.edit,*/var/backups/group.bak,*/var/backups/gshadow.bak  setf group

" GTK RC
au BufNewFile,BufRead .gtkrc,gtkrc		setf gtkrc

" Haml
au BufNewFile,BufRead *.haml			setf haml

" Hamster Classic | Playground files
au BufNewFile,BufRead *.hsc,*.hsm		setf hamster

" Haskell
au BufNewFile,BufRead *.hs,*.hs-boot		setf haskell
au BufNewFile,BufRead *.lhs			setf lhaskell
au BufNewFile,BufRead *.chs			setf chaskell

" Haste
au BufNewFile,BufRead *.ht			setf haste
au BufNewFile,BufRead *.htpp			setf hastepreproc

" Hercules
au BufNewFile,BufRead *.vc,*.ev,*.rs,*.sum,*.errsum	setf hercules

" HEX (Intel)
au BufNewFile,BufRead *.hex,*.h32		setf hex

" Tilde (must be before HTML)
au BufNewFile,BufRead *.t.html			setf tilde

" HTML (.shtml and .stm for server side)
au BufNewFile,BufRead *.html,*.htm,*.shtml,*.stm  call s:FThtml()

" Distinguish between HTML, XHTML and Django
func! s:FThtml()
  let n = 1
  while n < 10 && n < line("$")
    if getline(n) =~ '\<DTD\s\+XHTML\s'
      setf xhtml
      return
    endif
    if getline(n) =~ '{%\s*\(extends\|block\|load\)\>'
      setf htmldjango
      return
    endif
    let n = n + 1
  endwhile
  setf html
endfunc

" HTML with Ruby - eRuby
au BufNewFile,BufRead *.erb,*.rhtml		setf eruby

" HTML with M4
au BufNewFile,BufRead *.html.m4			setf htmlm4

" HTML Cheetah template
au BufNewFile,BufRead *.tmpl			setf htmlcheetah

" Host config
au BufNewFile,BufRead */etc/host.conf		setf hostconf

" Hosts access
au BufNewFile,BufRead */etc/hosts.allow,*/etc/hosts.deny  setf hostsaccess

" Hyper Builder
au BufNewFile,BufRead *.hb			setf hb

" Httest
au BufNewFile,BufRead *.htt,*.htb		setf httest

" Icon
au BufNewFile,BufRead *.icn			setf icon

" IDL (Interface Description Language)
au BufNewFile,BufRead *.idl			call s:FTidl()

" Distinguish between standard IDL and MS-IDL
func! s:FTidl()
  let n = 1
  while n < 50 && n < line("$")
    if getline(n) =~ '^\s*import\s\+"\(unknwn\|objidl\)\.idl"'
      setf msidl
      return
    endif
    let n = n + 1
  endwhile
  setf idl
endfunc

" Microsoft IDL (Interface Description Language)  Also *.idl
" MOF = WMI (Windows Management Instrumentation) Managed Object Format
au BufNewFile,BufRead *.odl,*.mof		setf msidl

" Icewm menu
au BufNewFile,BufRead */.icewm/menu		setf icemenu

" Indent profile (must come before IDL *.pro!)
au BufNewFile,BufRead .indent.pro		setf indent
au BufNewFile,BufRead indent.pro		call s:ProtoCheck('indent')

" IDL (Interactive Data Language)
au BufNewFile,BufRead *.pro			call s:ProtoCheck('idlang')

" Distinguish between "default" and Cproto prototype file. */
func! s:ProtoCheck(default)
  " Cproto files have a comment in the first line and a function prototype in
  " the second line, it always ends in ";".  Indent files may also have
  " comments, thus we can't match comments to see the difference.
  " IDL files can have a single ';' in the second line, require at least one
  " chacter before the ';'.
  if getline(2) =~ '.;$'
    setf cpp
  else
    exe 'setf ' . a:default
  endif
endfunc


" Indent RC
au BufNewFile,BufRead indentrc			setf indent

" Inform
au BufNewFile,BufRead *.inf,*.INF		setf inform

" Initng
au BufNewFile,BufRead */etc/initng/*/*.i,*.ii	setf initng

" Innovation Data Processing
au BufRead,BufNewFile upstream.dat\c,upstream.*.dat\c,*.upstream.dat\c 	setf upstreamdat
au BufRead,BufNewFile upstream.log\c,upstream.*.log\c,*.upstream.log\c 	setf upstreamlog
au BufRead,BufNewFile upstreaminstall.log\c,upstreaminstall.*.log\c,*.upstreaminstall.log\c setf upstreaminstalllog
au BufRead,BufNewFile usserver.log\c,usserver.*.log\c,*.usserver.log\c 	setf usserverlog
au BufRead,BufNewFile usw2kagt.log\c,usw2kagt.*.log\c,*.usw2kagt.log\c 	setf usw2kagtlog

" Ipfilter
au BufNewFile,BufRead ipf.conf,ipf6.conf,ipf.rules	setf ipfilter

" Informix 4GL (source - canonical, include file, I4GL+M4 preproc.)
au BufNewFile,BufRead *.4gl,*.4gh,*.m4gl	setf fgl

" .INI file for MSDOS
au BufNewFile,BufRead *.ini			setf dosini

" SysV Inittab
au BufNewFile,BufRead inittab			setf inittab

" Inno Setup
au BufNewFile,BufRead *.iss			setf iss

" J
au BufNewFile,BufRead *.ijs			setf j

" JAL
au BufNewFile,BufRead *.jal,*.JAL		setf jal

" Jam
au BufNewFile,BufRead *.jpl,*.jpr		setf jam

" Java
au BufNewFile,BufRead *.java,*.jav		setf java

" JavaCC
au BufNewFile,BufRead *.jj,*.jjt		setf javacc

" JavaScript, ECMAScript
au BufNewFile,BufRead *.js,*.javascript,*.es,*.jsx,*.json   setf javascript

" Java Server Pages
au BufNewFile,BufRead *.jsp			setf jsp

" Java Properties resource file (note: doesn't catch font.properties.pl)
au BufNewFile,BufRead *.properties,*.properties_??,*.properties_??_??	setf jproperties
au BufNewFile,BufRead *.properties_??_??_*	call s:StarSetf('jproperties')

" Jess
au BufNewFile,BufRead *.clp			setf jess

" Jgraph
au BufNewFile,BufRead *.jgr			setf jgraph

" Jovial
au BufNewFile,BufRead *.jov,*.j73,*.jovial	setf jovial

" Kixtart
au BufNewFile,BufRead *.kix			setf kix

" Kimwitu[++]
au BufNewFile,BufRead *.k			setf kwt

" Kivy
au BufNewFile,BufRead *.kv			setf kivy

" KDE script
au BufNewFile,BufRead *.ks			setf kscript

" Kconfig
au BufNewFile,BufRead Kconfig,Kconfig.debug	setf kconfig

" Lace (ISE)
au BufNewFile,BufRead *.ace,*.ACE		setf lace

" Latte
au BufNewFile,BufRead *.latte,*.lte		setf latte

" Limits
au BufNewFile,BufRead */etc/limits,*/etc/*limits.conf,*/etc/*limits.d/*.conf	setf limits

" LambdaProlog (*.mod too, see Modsim)
au BufNewFile,BufRead *.sig			setf lprolog

" LDAP LDIF
au BufNewFile,BufRead *.ldif			setf ldif

" Ld loader
au BufNewFile,BufRead *.ld			setf ld

" Lex
au BufNewFile,BufRead *.lex,*.l,*.lxx,*.l++	setf lex

" Libao
au BufNewFile,BufRead */etc/libao.conf,*/.libao	setf libao

" Libsensors
au BufNewFile,BufRead */etc/sensors.conf,*/etc/sensors3.conf	setf sensors

" LFTP
au BufNewFile,BufRead lftp.conf,.lftprc,*lftp/rc	setf lftp

" Lifelines (or Lex for C++!)
au BufNewFile,BufRead *.ll			setf lifelines

" Lilo: Linux loader
au BufNewFile,BufRead lilo.conf			setf lilo

" Lisp (*.el = ELisp, *.cl = Common Lisp, *.jl = librep Lisp)
if has("fname_case")
  au BufNewFile,BufRead *.lsp,*.lisp,*.el,*.cl,*.jl,*.L,.emacs,.sawfishrc setf lisp
else
  au BufNewFile,BufRead *.lsp,*.lisp,*.el,*.cl,*.jl,.emacs,.sawfishrc setf lisp
endif

" SBCL implementation of Common Lisp
au BufNewFile,BufRead sbclrc,.sbclrc		setf lisp

" Liquid
au BufNewFile,BufRead *.liquid			setf liquid

" Lite
au BufNewFile,BufRead *.lite,*.lt		setf lite

" LiteStep RC files
au BufNewFile,BufRead */LiteStep/*/*.rc		setf litestep

" Login access
au BufNewFile,BufRead */etc/login.access	setf loginaccess

" Login defs
au BufNewFile,BufRead */etc/login.defs		setf logindefs

" Logtalk
au BufNewFile,BufRead *.lgt			setf logtalk

" LOTOS
au BufNewFile,BufRead *.lot,*.lotos		setf lotos

" Lout (also: *.lt)
au BufNewFile,BufRead *.lou,*.lout		setf lout

" Lua
au BufNewFile,BufRead *.lua			setf lua

" Linden Scripting Language (Second Life)
au BufNewFile,BufRead *.lsl			setf lsl

" Lynx style file (or LotusScript!)
au BufNewFile,BufRead *.lss			setf lss

" M4
au BufNewFile,BufRead *.m4
	\ if expand("<afile>") !~? 'html.m4$\|fvwm2rc' | setf m4 | endif

" MaGic Point
au BufNewFile,BufRead *.mgp			setf mgp

" Mail (for Elm, trn, mutt, muttng, rn, slrn)
au BufNewFile,BufRead snd.\d\+,.letter,.letter.\d\+,.followup,.article,.article.\d\+,pico.\d\+,mutt{ng,}-*-\w\+,mutt[[:alnum:]_-]\\\{6\},ae\d\+.txt,/tmp/SLRN[0-9A-Z.]\+,*.eml setf mail

" Mail aliases
au BufNewFile,BufRead */etc/mail/aliases,*/etc/aliases	setf mailaliases

" Mailcap configuration file
au BufNewFile,BufRead .mailcap,mailcap		setf mailcap

" Makefile
au BufNewFile,BufRead *[mM]akefile,*.mk,*.mak,*.dsp setf make

" MakeIndex
au BufNewFile,BufRead *.ist,*.mst		setf ist

" Mallard
au BufNewFile,BufRead *.page			setf mallard

" Manpage
au BufNewFile,BufRead *.man			setf man

" Man config
au BufNewFile,BufRead */etc/man.conf,man.config	setf manconf

" Maple V
au BufNewFile,BufRead *.mv,*.mpl,*.mws		setf maple

" Map (UMN mapserver config file)
au BufNewFile,BufRead *.map			setf map

" Markdown
au BufNewFile,BufRead *.markdown,*.mdown,*.mkd,*.mkdn,*.mdwn,README.md  setf markdown

" Mason
au BufNewFile,BufRead *.mason,*.mhtml		setf mason

" Matlab or Objective C
au BufNewFile,BufRead *.m			call s:FTm()

func! s:FTm()
  let n = 1
  while n < 10
    let line = getline(n)
    if line =~ '^\s*\(#\s*\(include\|import\)\>\|/\*\|//\)'
      setf objc
      return
    endif
    if line =~ '^\s*%'
      setf matlab
      return
    endif
    if line =~ '^\s*(\*'
      setf mma
      return
    endif
    let n = n + 1
  endwhile
  if exists("g:filetype_m")
    exe "setf " . g:filetype_m
  else
    setf matlab
  endif
endfunc

" Mathematica notebook
au BufNewFile,BufRead *.nb			setf mma

" Maya Extension Language
au BufNewFile,BufRead *.mel			setf mel

" Mercurial (hg) commit file
au BufNewFile,BufRead hg-editor-*.txt		setf hgcommit

" Mercurial config (looks like generic config file)
au BufNewFile,BufRead *.hgrc,*hgrc		setf cfg

" Messages (logs mostly)
au BufNewFile,BufRead */log/{auth,cron,daemon,debug,kern,lpr,mail,messages,news/news,syslog,user}{,.log,.err,.info,.warn,.crit,.notice}{,.[0-9]*,-[0-9]*} setf messages

" Metafont
au BufNewFile,BufRead *.mf			setf mf

" MetaPost
au BufNewFile,BufRead *.mp			setf mp

" MGL
au BufNewFile,BufRead *.mgl			setf mgl

" MIX - Knuth assembly
au BufNewFile,BufRead *.mix,*.mixal		setf mix

" MMIX or VMS makefile
au BufNewFile,BufRead *.mms			call s:FTmms()

" Symbian meta-makefile definition (MMP)
au BufNewFile,BufRead *.mmp			setf mmp

func! s:FTmms()
  let n = 1
  while n < 10
    let line = getline(n)
    if line =~ '^\s*\(%\|//\)' || line =~ '^\*'
      setf mmix
      return
    endif
    if line =~ '^\s*#'
      setf make
      return
    endif
    let n = n + 1
  endwhile
  setf mmix
endfunc


" Modsim III (or LambdaProlog)
au BufNewFile,BufRead *.mod
	\ if getline(1) =~ '\<module\>' |
	\   setf lprolog |
	\ else |
	\   setf modsim3 |
	\ endif

" Modula 2
au BufNewFile,BufRead *.m2,*.DEF,*.MOD,*.md,*.mi setf modula2

" Modula 3 (.m3, .i3, .mg, .ig)
au BufNewFile,BufRead *.[mi][3g]		setf modula3

" Monk
au BufNewFile,BufRead *.isc,*.monk,*.ssc,*.tsc	setf monk

" MOO
au BufNewFile,BufRead *.moo			setf moo

" Modconf
au BufNewFile,BufRead */etc/modules.conf,*/etc/modules,*/etc/conf.modules setf modconf

" Mplayer config
au BufNewFile,BufRead mplayer.conf,*/.mplayer/config	setf mplayerconf

" Moterola S record
au BufNewFile,BufRead *.s19,*.s28,*.s37		setf srec

" Mrxvtrc
au BufNewFile,BufRead mrxvtrc,.mrxvtrc		setf mrxvtrc

" Msql
au BufNewFile,BufRead *.msql			setf msql

" Mysql
au BufNewFile,BufRead *.mysql			setf mysql

" Mutt setup files (must be before catch *.rc)
au BufNewFile,BufRead */etc/Muttrc.d/*		call s:StarSetf('muttrc')

" M$ Resource files
au BufNewFile,BufRead *.rc,*.rch		setf rc

" MuPAD source
au BufRead,BufNewFile *.mu			setf mupad

" Mush
au BufNewFile,BufRead *.mush			setf mush

" Mutt setup file (also for Muttng)
au BufNewFile,BufRead Mutt{ng,}rc		setf muttrc

" Nano
au BufNewFile,BufRead */etc/nanorc,.nanorc	setf nanorc

" Nastran input/DMAP
"au BufNewFile,BufRead *.dat			setf nastran

" Natural
au BufNewFile,BufRead *.NS[ACGLMNPS]		setf natural

" Netrc
au BufNewFile,BufRead .netrc			setf netrc

" Ninja file
au BufNewFile,BufRead *.ninja			setf ninja

" Novell netware batch files
au BufNewFile,BufRead *.ncf			setf ncf

" Nroff/Troff (*.ms and *.t are checked below)
au BufNewFile,BufRead *.me
	\ if expand("<afile>") != "read.me" && expand("<afile>") != "click.me" |
	\   setf nroff |
	\ endif
au BufNewFile,BufRead *.tr,*.nr,*.roff,*.tmac,*.mom	setf nroff
au BufNewFile,BufRead *.[1-9]			call s:FTnroff()

" This function checks if one of the first five lines start with a dot.  In
" that case it is probably an nroff file: 'filetype' is set and 1 is returned.
func! s:FTnroff()
  if getline(1)[0] . getline(2)[0] . getline(3)[0] . getline(4)[0] . getline(5)[0] =~ '\.'
    setf nroff
    return 1
  endif
  return 0
endfunc

" Nroff or Objective C++
au BufNewFile,BufRead *.mm			call s:FTmm()

func! s:FTmm()
  let n = 1
  while n < 10
    let line = getline(n)
    if line =~ '^\s*\(#\s*\(include\|import\)\>\|/\*\)'
      setf objcpp
      return
    endif
    let n = n + 1
  endwhile
  setf nroff
endfunc

" Not Quite C
au BufNewFile,BufRead *.nqc			setf nqc

" NSIS
au BufNewFile,BufRead *.nsi,*.nsh		setf nsis

" OCAML
au BufNewFile,BufRead *.ml,*.mli,*.mll,*.mly,.ocamlinit	setf ocaml

" Occam
au BufNewFile,BufRead *.occ			setf occam

" Omnimark
au BufNewFile,BufRead *.xom,*.xin		setf omnimark

" OpenROAD
au BufNewFile,BufRead *.or			setf openroad

" OPL
au BufNewFile,BufRead *.[Oo][Pp][Ll]		setf opl

" Oracle config file
au BufNewFile,BufRead *.ora			setf ora

" Packet filter conf
au BufNewFile,BufRead pf.conf			setf pf

" Pam conf
au BufNewFile,BufRead */etc/pam.conf		setf pamconf

" PApp
au BufNewFile,BufRead *.papp,*.pxml,*.pxsl	setf papp

" Password file
au BufNewFile,BufRead */etc/passwd,*/etc/passwd-,*/etc/passwd.edit,*/etc/shadow,*/etc/shadow-,*/etc/shadow.edit,*/var/backups/passwd.bak,*/var/backups/shadow.bak setf passwd

" Pascal (also *.p)
au BufNewFile,BufRead *.pas			setf pascal

" Delphi project file
au BufNewFile,BufRead *.dpr			setf pascal

" PDF
au BufNewFile,BufRead *.pdf			setf pdf

" Perl
if has("fname_case")
  au BufNewFile,BufRead *.pl,*.PL		call s:FTpl()
else
  au BufNewFile,BufRead *.pl			call s:FTpl()
endif
au BufNewFile,BufRead *.plx,*.al		setf perl
au BufNewFile,BufRead *.p6,*.pm6		setf perl6

func! s:FTpl()
  if exists("g:filetype_pl")
    exe "setf " . g:filetype_pl
  else
    " recognize Prolog by specific text in the first non-empty line
    " require a blank after the '%' because Perl uses "%list" and "%translate"
    let l = getline(nextnonblank(1))
    if l =~ '\<prolog\>' || l =~ '^\s*\(%\+\(\s\|$\)\|/\*\)' || l =~ ':-'
      setf prolog
    else
      setf perl
    endif
  endif
endfunc

" Perl, XPM or XPM2
au BufNewFile,BufRead *.pm
	\ if getline(1) =~ "XPM2" |
	\   setf xpm2 |
	\ elseif getline(1) =~ "XPM" |
	\   setf xpm |
	\ else |
	\   setf perl |
	\ endif

" Perl POD
au BufNewFile,BufRead *.pod			setf pod

" Php, php3, php4, etc.
" Also Phtml (was used for PHP 2 in the past)
" Also .ctp for Cake template file
au BufNewFile,BufRead *.php,*.php\d,*.phtml,*.ctp	setf php

" Pike
au BufNewFile,BufRead *.pike,*.lpc,*.ulpc,*.pmod setf pike

" Pinfo config
au BufNewFile,BufRead */etc/pinforc,*/.pinforc	setf pinfo

" Palm Resource compiler
au BufNewFile,BufRead *.rcp			setf pilrc

" Pine config
au BufNewFile,BufRead .pinerc,pinerc,.pinercex,pinercex		setf pine

" PL/1, PL/I
au BufNewFile,BufRead *.pli,*.pl1		setf pli

" PL/M (also: *.inp)
au BufNewFile,BufRead *.plm,*.p36,*.pac		setf plm

" PL/SQL
au BufNewFile,BufRead *.pls,*.plsql		setf plsql

" PLP
au BufNewFile,BufRead *.plp			setf plp

" PO and PO template (GNU gettext)
au BufNewFile,BufRead *.po,*.pot		setf po

" Postfix main config
au BufNewFile,BufRead main.cf			setf pfmain

" PostScript (+ font files, encapsulated PostScript, Adobe Illustrator)
au BufNewFile,BufRead *.ps,*.pfa,*.afm,*.eps,*.epsf,*.epsi,*.ai	  setf postscr

" PostScript Printer Description
au BufNewFile,BufRead *.ppd			setf ppd

" Povray
au BufNewFile,BufRead *.pov			setf pov

" Povray configuration
au BufNewFile,BufRead .povrayrc			setf povini

" Povray, PHP or assembly
au BufNewFile,BufRead *.inc			call s:FTinc()

func! s:FTinc()
  if exists("g:filetype_inc")
    exe "setf " . g:filetype_inc
  else
    let lines = getline(1).getline(2).getline(3)
    if lines =~? "perlscript"
      setf aspperl
    elseif lines =~ "<%"
      setf aspvbs
    elseif lines =~ "<?"
      setf php
    else
      call s:FTasmsyntax()
      if exists("b:asmsyntax")
	exe "setf " . fnameescape(b:asmsyntax)
      else
	setf pov
      endif
    endif
  endif
endfunc

" Printcap and Termcap
au BufNewFile,BufRead *printcap
	\ let b:ptcap_type = "print" | setf ptcap
au BufNewFile,BufRead *termcap
	\ let b:ptcap_type = "term" | setf ptcap

" PCCTS / ANTRL
"au BufNewFile,BufRead *.g			setf antrl
au BufNewFile,BufRead *.g			setf pccts

" PPWizard
au BufNewFile,BufRead *.it,*.ih			setf ppwiz

" Obj 3D file format
" TODO: is there a way to avoid MS-Windows Object files?
au BufNewFile,BufRead *.obj			setf obj

" Oracle Pro*C/C++
au BufNewFile,BufRead *.pc			setf proc

" Privoxy actions file
au BufNewFile,BufRead *.action			setf privoxy

" Procmail
au BufNewFile,BufRead .procmail,.procmailrc	setf procmail

" Progress or CWEB
au BufNewFile,BufRead *.w			call s:FTprogress_cweb()

func! s:FTprogress_cweb()
  if exists("g:filetype_w")
    exe "setf " . g:filetype_w
    return
  endif
  if getline(1) =~ '&ANALYZE' || getline(3) =~ '&GLOBAL-DEFINE'
    setf progress
  else
    setf cweb
  endif
endfunc

" Progress or assembly
au BufNewFile,BufRead *.i			call s:FTprogress_asm()

func! s:FTprogress_asm()
  if exists("g:filetype_i")
    exe "setf " . g:filetype_i
    return
  endif
  " This function checks for an assembly comment the first ten lines.
  " If not found, assume Progress.
  let lnum = 1
  while lnum <= 10 && lnum < line('$')
    let line = getline(lnum)
    if line =~ '^\s*;' || line =~ '^\*'
      call s:FTasm()
      return
    elseif line !~ '^\s*$' || line =~ '^/\*'
      " Not an empty line: Doesn't look like valid assembly code.
      " Or it looks like a Progress /* comment
      break
    endif
    let lnum = lnum + 1
  endw
  setf progress
endfunc

" Progress or Pascal
au BufNewFile,BufRead *.p			call s:FTprogress_pascal()

func! s:FTprogress_pascal()
  if exists("g:filetype_p")
    exe "setf " . g:filetype_p
    return
  endif
  " This function checks for valid Pascal syntax in the first ten lines.
  " Look for either an opening comment or a program start.
  " If not found, assume Progress.
  let lnum = 1
  while lnum <= 10 && lnum < line('$')
    let line = getline(lnum)
    if line =~ '^\s*\(program\|unit\|procedure\|function\|const\|type\|var\)\>'
	\ || line =~ '^\s*{' || line =~ '^\s*(\*'
      setf pascal
      return
    elseif line !~ '^\s*$' || line =~ '^/\*'
      " Not an empty line: Doesn't look like valid Pascal code.
      " Or it looks like a Progress /* comment
      break
    endif
    let lnum = lnum + 1
  endw
  setf progress
endfunc


" Software Distributor Product Specification File (POSIX 1387.2-1995)
au BufNewFile,BufRead *.psf			setf psf
au BufNewFile,BufRead INDEX,INFO
	\ if getline(1) =~ '^\s*\(distribution\|installed_software\|root\|bundle\|product\)\s*$' |
	\   setf psf |
	\ endif

" Prolog
au BufNewFile,BufRead *.pdb			setf prolog

" Promela
au BufNewFile,BufRead *.pml			setf promela

" Google protocol buffers
au BufNewFile,BufRead *.proto			setf proto

" Protocols
au BufNewFile,BufRead */etc/protocols		setf protocols

" Pyrex
au BufNewFile,BufRead *.pyx,*.pxd		setf pyrex

" Python
au BufNewFile,BufRead *.py,*.pyw		setf python

" Quixote (Python-based web framework)
au BufNewFile,BufRead *.ptl			setf python

" Radiance
au BufNewFile,BufRead *.rad,*.mat		setf radiance

" Ratpoison config/command files
au BufNewFile,BufRead .ratpoisonrc,ratpoisonrc	setf ratpoison

" RCS file
au BufNewFile,BufRead *\,v			setf rcs

" Readline
au BufNewFile,BufRead .inputrc,inputrc		setf readline

" Registry for MS-Windows
au BufNewFile,BufRead *.reg
	\ if getline(1) =~? '^REGEDIT[0-9]*\s*$\|^Windows Registry Editor Version \d*\.\d*\s*$' | setf registry | endif

" Renderman Interface Bytestream
au BufNewFile,BufRead *.rib			setf rib

" Rexx
au BufNewFile,BufRead *.rex,*.orx,*.rxo,*.rxj,*.jrexx,*.rexxj,*.rexx,*.testGroup,*.testUnit	setf rexx

" R (Splus)
if has("fname_case")
  au BufNewFile,BufRead *.s,*.S			setf r
else
  au BufNewFile,BufRead *.s			setf r
endif

" R Help file
if has("fname_case")
  au BufNewFile,BufRead *.rd,*.Rd		setf rhelp
else
  au BufNewFile,BufRead *.rd			setf rhelp
endif

" R noweb file
if has("fname_case")
  au BufNewFile,BufRead *.Rnw,*.rnw,*.Snw,*.snw		setf rnoweb
else
  au BufNewFile,BufRead *.rnw,*.snw			setf rnoweb
endif

" R Markdown file
if has("fname_case")
  au BufNewFile,BufRead *.Rmd,*.rmd,*.Smd,*.smd		setf rmd
else
  au BufNewFile,BufRead *.rmd,*.smd			setf rmd
endif

" R reStructuredText file
if has("fname_case")
  au BufNewFile,BufRead *.Rrst,*.rrst,*.Srst,*.srst	setf rrst
else
  au BufNewFile,BufRead *.rrst,*.srst			setf rrst
endif

" Rexx, Rebol or R
au BufNewFile,BufRead *.r,*.R			call s:FTr()

func! s:FTr()
  let max = line("$") > 50 ? 50 : line("$")

  for n in range(1, max)
    " Rebol is easy to recognize, check for that first
    if getline(n) =~? '\<REBOL\>'
      setf rebol
      return
    endif
  endfor

  for n in range(1, max)
    " R has # comments
    if getline(n) =~ '^\s*#'
      setf r
      return
    endif
    " Rexx has /* comments */
    if getline(n) =~ '^\s*/\*'
      setf rexx
      return
    endif
  endfor

  " Nothing recognized, use user default or assume Rexx
  if exists("g:filetype_r")
    exe "setf " . g:filetype_r
  else
    " Rexx used to be the default, but R appears to be much more popular.
    setf r
  endif
endfunc

" Remind
au BufNewFile,BufRead .reminders,*.remind,*.rem		setf remind

" Resolv.conf
au BufNewFile,BufRead resolv.conf		setf resolv

" Relax NG Compact
au BufNewFile,BufRead *.rnc			setf rnc

" Relax NG XML
au BufNewFile,BufRead *.rng			setf rng

" RPL/2
au BufNewFile,BufRead *.rpl			setf rpl

" Robots.txt
au BufNewFile,BufRead robots.txt		setf robots

" Rpcgen
au BufNewFile,BufRead *.x			setf rpcgen

" reStructuredText Documentation Format
au BufNewFile,BufRead *.rst			setf rst

" RTF
au BufNewFile,BufRead *.rtf			setf rtf

" Interactive Ruby shell
au BufNewFile,BufRead .irbrc,irbrc		setf ruby

" Ruby
au BufNewFile,BufRead *.rb,*.rbw		setf ruby

" RubyGems
au BufNewFile,BufRead *.gemspec			setf ruby

" Rackup
au BufNewFile,BufRead *.ru			setf ruby

" Bundler
au BufNewFile,BufRead Gemfile			setf ruby

" Ruby on Rails
au BufNewFile,BufRead *.builder,*.rxml,*.rjs	setf ruby

" Rantfile and Rakefile is like Ruby
au BufNewFile,BufRead [rR]antfile,*.rant,[rR]akefile,*.rake	setf ruby

" S-lang (or shader language, or SmallLisp)
au BufNewFile,BufRead *.sl			setf slang

" Samba config
au BufNewFile,BufRead smb.conf			setf samba

" SAS script
au BufNewFile,BufRead *.sas			setf sas

" Sass
au BufNewFile,BufRead *.sass			setf sass

" Sather
au BufNewFile,BufRead *.sa			setf sather

" Scilab
au BufNewFile,BufRead *.sci,*.sce		setf scilab

" SCSS
au BufNewFile,BufRead *.scss			setf scss

" SD: Streaming Descriptors
au BufNewFile,BufRead *.sd			setf sd

" SDL
au BufNewFile,BufRead *.sdl,*.pr		setf sdl

" sed
au BufNewFile,BufRead *.sed			setf sed

" Sieve (RFC 3028)
au BufNewFile,BufRead *.siv			setf sieve

" Sendmail
au BufNewFile,BufRead sendmail.cf		setf sm

" Sendmail .mc files are actually m4.  Could also be MS Message text file.
au BufNewFile,BufRead *.mc			call s:McSetf()

func! s:McSetf()
  " Rely on the file to start with a comment.
  " MS message text files use ';', Sendmail files use '#' or 'dnl'
  for lnum in range(1, min([line("$"), 20]))
    let line = getline(lnum)
    if line =~ '^\s*\(#\|dnl\)'
      setf m4  " Sendmail .mc file
      return
    elseif line =~ '^\s*;'
      setf msmessages  " MS Message text file
      return
    endif
  endfor
  setf m4  " Default: Sendmail .mc file
endfunc

" Services
au BufNewFile,BufRead */etc/services		setf services

" Service Location config
au BufNewFile,BufRead */etc/slp.conf		setf slpconf

" Service Location registration
au BufNewFile,BufRead */etc/slp.reg		setf slpreg

" Service Location SPI
au BufNewFile,BufRead */etc/slp.spi		setf slpspi

" Setserial config
au BufNewFile,BufRead */etc/serial.conf		setf setserial

" SGML
au BufNewFile,BufRead *.sgm,*.sgml
	\ if getline(1).getline(2).getline(3).getline(4).getline(5) =~? 'linuxdoc' |
	\   setf sgmllnx |
	\ elseif getline(1) =~ '<!DOCTYPE.*DocBook' || getline(2) =~ '<!DOCTYPE.*DocBook' |
	\   let b:docbk_type = "sgml" |
	\   let b:docbk_ver = 4 |
	\   setf docbk |
	\ else |
	\   setf sgml |
	\ endif

" SGMLDECL
au BufNewFile,BufRead *.decl,*.dcl,*.dec
	\ if getline(1).getline(2).getline(3) =~? '^<!SGML' |
	\    setf sgmldecl |
	\ endif

" SGML catalog file
au BufNewFile,BufRead catalog			setf catalog
au BufNewFile,BufRead sgml.catalog*		call s:StarSetf('catalog')

" Shell scripts (sh, ksh, bash, bash2, csh); Allow .profile_foo etc.
" Gentoo ebuilds are actually bash scripts
au BufNewFile,BufRead .bashrc*,bashrc,bash.bashrc,.bash_profile*,.bash_logout*,*.bash,*.ebuild call SetFileTypeSH("bash")
au BufNewFile,BufRead .kshrc*,*.ksh call SetFileTypeSH("ksh")
au BufNewFile,BufRead */etc/profile,.profile*,*.sh,*.env call SetFileTypeSH(getline(1))

" Also called from scripts.vim.
func! SetFileTypeSH(name)
  if expand("<amatch>") =~ g:ft_ignore_pat
    return
  endif
  if a:name =~ '\<csh\>'
    " Some .sh scripts contain #!/bin/csh.
    call SetFileTypeShell("csh")
    return
  elseif a:name =~ '\<tcsh\>'
    " Some .sh scripts contain #!/bin/tcsh.
    call SetFileTypeShell("tcsh")
    return
  elseif a:name =~ '\<zsh\>'
    " Some .sh scripts contain #!/bin/zsh.
    call SetFileTypeShell("zsh")
    return
  elseif a:name =~ '\<ksh\>'
    let b:is_kornshell = 1
    if exists("b:is_bash")
      unlet b:is_bash
    endif
    if exists("b:is_sh")
      unlet b:is_sh
    endif
  elseif exists("g:bash_is_sh") || a:name =~ '\<bash\>' || a:name =~ '\<bash2\>'
    let b:is_bash = 1
    if exists("b:is_kornshell")
      unlet b:is_kornshell
    endif
    if exists("b:is_sh")
      unlet b:is_sh
    endif
  elseif a:name =~ '\<sh\>'
    let b:is_sh = 1
    if exists("b:is_kornshell")
      unlet b:is_kornshell
    endif
    if exists("b:is_bash")
      unlet b:is_bash
    endif
  endif
  call SetFileTypeShell("sh")
endfunc

" For shell-like file types, check for an "exec" command hidden in a comment,
" as used for Tcl.
" Also called from scripts.vim, thus can't be local to this script.
func! SetFileTypeShell(name)
  if expand("<amatch>") =~ g:ft_ignore_pat
    return
  endif
  let l = 2
  while l < 20 && l < line("$") && getline(l) =~ '^\s*\(#\|$\)'
    " Skip empty and comment lines.
    let l = l + 1
  endwhile
  if l < line("$") && getline(l) =~ '\s*exec\s' && getline(l - 1) =~ '^\s*#.*\\$'
    " Found an "exec" line after a comment with continuation
    let n = substitute(getline(l),'\s*exec\s\+\([^ ]*/\)\=', '', '')
    if n =~ '\<tclsh\|\<wish'
      setf tcl
      return
    endif
  endif
  exe "setf " . a:name
endfunc

" tcsh scripts
au BufNewFile,BufRead .tcshrc*,*.tcsh,tcsh.tcshrc,tcsh.login	call SetFileTypeShell("tcsh")

" csh scripts, but might also be tcsh scripts (on some systems csh is tcsh)
au BufNewFile,BufRead .login*,.cshrc*,csh.cshrc,csh.login,csh.logout,*.csh,.alias  call s:CSH()

func! s:CSH()
  if exists("g:filetype_csh")
    call SetFileTypeShell(g:filetype_csh)
  elseif &shell =~ "tcsh"
    call SetFileTypeShell("tcsh")
  else
    call SetFileTypeShell("csh")
  endif
endfunc

" Z-Shell script
au BufNewFile,BufRead .zprofile,*/etc/zprofile,.zfbfmarks  setf zsh
au BufNewFile,BufRead .zsh*,.zlog*,.zcompdump*  call s:StarSetf('zsh')
au BufNewFile,BufRead *.zsh			setf zsh

" Scheme
au BufNewFile,BufRead *.scm,*.ss,*.rkt		setf scheme

" Screen RC
au BufNewFile,BufRead .screenrc,screenrc	setf screen

" Simula
au BufNewFile,BufRead *.sim			setf simula

" SINDA
au BufNewFile,BufRead *.sin,*.s85		setf sinda

" SiSU
au BufNewFile,BufRead *.sst,*.ssm,*.ssi,*.-sst,*._sst setf sisu
au BufNewFile,BufRead *.sst.meta,*.-sst.meta,*._sst.meta setf sisu

" SKILL
au BufNewFile,BufRead *.il,*.ils,*.cdf		setf skill

" SLRN
au BufNewFile,BufRead .slrnrc			setf slrnrc
au BufNewFile,BufRead *.score			setf slrnsc

" Smalltalk (and TeX)
au BufNewFile,BufRead *.st			setf st
au BufNewFile,BufRead *.cls
	\ if getline(1) =~ '^%' |
	\  setf tex |
	\ elseif getline(1)[0] == '#' && getline(1) =~ 'rexx' |
	\  setf rexx |
	\ else |
	\  setf st |
	\ endif

" Smarty templates
au BufNewFile,BufRead *.tpl			setf smarty

" SMIL or XML
au BufNewFile,BufRead *.smil
	\ if getline(1) =~ '<?\s*xml.*?>' |
	\   setf xml |
	\ else |
	\   setf smil |
	\ endif

" SMIL or SNMP MIB file
au BufNewFile,BufRead *.smi
	\ if getline(1) =~ '\<smil\>' |
	\   setf smil |
	\ else |
	\   setf mib |
	\ endif

" SMITH
au BufNewFile,BufRead *.smt,*.smith		setf smith

" Snobol4 and spitbol
au BufNewFile,BufRead *.sno,*.spt		setf snobol4

" SNMP MIB files
au BufNewFile,BufRead *.mib,*.my		setf mib

" Snort Configuration
au BufNewFile,BufRead *.hog,snort.conf,vision.conf	setf hog
au BufNewFile,BufRead *.rules			call s:FTRules()

let s:ft_rules_udev_rules_pattern = '^\s*\cudev_rules\s*=\s*"\([^"]\{-1,}\)/*".*'
func! s:FTRules()
  let path = expand('<amatch>:p')
  if path =~ '^/\(etc/udev/\%(rules\.d/\)\=.*\.rules\|lib/udev/\%(rules\.d/\)\=.*\.rules\)$'
    setf udevrules
    return
  endif
  if path =~ '^/etc/ufw/'
    setf conf  " Better than hog
    return
  endif
  try
    let config_lines = readfile('/etc/udev/udev.conf')
  catch /^Vim\%((\a\+)\)\=:E484/
    setf hog
    return
  endtry
  let dir = expand('<amatch>:p:h')
  for line in config_lines
    if line =~ s:ft_rules_udev_rules_pattern
      let udev_rules = substitute(line, s:ft_rules_udev_rules_pattern, '\1', "")
      if dir == udev_rules
        setf udevrules
      endif
      break
    endif
  endfor
  setf hog
endfunc


" Spec (Linux RPM)
au BufNewFile,BufRead *.spec			setf spec

" Speedup (AspenTech plant simulator)
au BufNewFile,BufRead *.speedup,*.spdata,*.spd	setf spup

" Slice
au BufNewFile,BufRead *.ice			setf slice

" Spice
au BufNewFile,BufRead *.sp,*.spice		setf spice

" Spyce
au BufNewFile,BufRead *.spy,*.spi		setf spyce

" Squid
au BufNewFile,BufRead squid.conf		setf squid

" SQL for Oracle Designer
au BufNewFile,BufRead *.tyb,*.typ,*.tyc,*.pkb,*.pks	setf sql

" SQL
au BufNewFile,BufRead *.sql			call s:SQL()

func! s:SQL()
  if exists("g:filetype_sql")
    exe "setf " . g:filetype_sql
  else
    setf sql
  endif
endfunc

" SQLJ
au BufNewFile,BufRead *.sqlj			setf sqlj

" SQR
au BufNewFile,BufRead *.sqr,*.sqi		setf sqr

" OpenSSH configuration
au BufNewFile,BufRead ssh_config,*/.ssh/config	setf sshconfig

" OpenSSH server configuration
au BufNewFile,BufRead sshd_config		setf sshdconfig

" Stata
au BufNewFile,BufRead *.ado,*.class,*.do,*.imata,*.mata   setf stata

" SMCL
au BufNewFile,BufRead *.hlp,*.ihlp,*.smcl	setf smcl

" Stored Procedures
au BufNewFile,BufRead *.stp			setf stp

" Standard ML
au BufNewFile,BufRead *.sml			setf sml

" Sratus VOS command macro
au BufNewFile,BufRead *.cm			setf voscm

" Sysctl
au BufNewFile,BufRead */etc/sysctl.conf,*/etc/sysctl.d/*.conf	setf sysctl

" Synopsys Design Constraints
au BufNewFile,BufRead *.sdc			setf sdc

" Sudoers
au BufNewFile,BufRead */etc/sudoers,sudoers.tmp	setf sudoers

" SVG (Scalable Vector Graphics)
au BufNewFile,BufRead *.svg			setf svg

" If the file has an extension of 't' and is in a directory 't' or 'xt' then
" it is almost certainly a Perl test file.
" If the first line starts with '#' and contains 'perl' it's probably a Perl
" file.
" (Slow test) If a file contains a 'use' statement then it is almost certainly
" a Perl file.
func! s:FTperl()
  let dirname = expand("%:p:h:t")
  if expand("%:e") == 't' && (dirname == 't' || dirname == 'xt')
    setf perl
    return 1
  endif
  if getline(1)[0] == '#' && getline(1) =~ 'perl'
    setf perl
    return 1
  endif
  if search('^use\s\s*\k', 'nc', 30)
    setf perl
    return 1
  endif
  return 0
endfunc

" Tads (or Nroff or Perl test file)
au BufNewFile,BufRead *.t
	\ if !s:FTnroff() && !s:FTperl() | setf tads | endif

" Tags
au BufNewFile,BufRead tags			setf tags

" TAK
au BufNewFile,BufRead *.tak			setf tak

" Task
au BufRead,BufNewFile {pending,completed,undo}.data  setf taskdata
au BufRead,BufNewFile *.task			setf taskedit

" Tcl (JACL too)
au BufNewFile,BufRead *.tcl,*.tk,*.itcl,*.itk,*.jacl	setf tcl

" TealInfo
au BufNewFile,BufRead *.tli			setf tli

" Telix Salt
au BufNewFile,BufRead *.slt			setf tsalt

" Terminfo
au BufNewFile,BufRead *.ti			setf terminfo

" TeX
au BufNewFile,BufRead *.latex,*.sty,*.dtx,*.ltx,*.bbl	setf tex
au BufNewFile,BufRead *.tex			call s:FTtex()

" Choose context, plaintex, or tex (LaTeX) based on these rules:
" 1. Check the first line of the file for "%&<format>".
" 2. Check the first 1000 non-comment lines for LaTeX or ConTeXt keywords.
" 3. Default to "latex" or to g:tex_flavor, can be set in user's vimrc.
func! s:FTtex()
  let firstline = getline(1)
  if firstline =~ '^%&\s*\a\+'
    let format = tolower(matchstr(firstline, '\a\+'))
    let format = substitute(format, 'pdf', '', '')
    if format == 'tex'
      let format = 'plain'
    endif
  else
    " Default value, may be changed later:
    let format = exists("g:tex_flavor") ? g:tex_flavor : 'plain'
    " Save position, go to the top of the file, find first non-comment line.
    let save_cursor = getpos('.')
    call cursor(1,1)
    let firstNC = search('^\s*[^[:space:]%]', 'c', 1000)
    if firstNC " Check the next thousand lines for a LaTeX or ConTeXt keyword.
      let lpat = 'documentclass\>\|usepackage\>\|begin{\|newcommand\>\|renewcommand\>'
      let cpat = 'start\a\+\|setup\a\+\|usemodule\|enablemode\|enableregime\|setvariables\|useencoding\|usesymbols\|stelle\a\+\|verwende\a\+\|stel\a\+\|gebruik\a\+\|usa\a\+\|imposta\a\+\|regle\a\+\|utilisemodule\>'
      let kwline = search('^\s*\\\%(' . lpat . '\)\|^\s*\\\(' . cpat . '\)',
			      \ 'cnp', firstNC + 1000)
      if kwline == 1	" lpat matched
	let format = 'latex'
      elseif kwline == 2	" cpat matched
	let format = 'context'
      endif		" If neither matched, keep default set above.
      " let lline = search('^\s*\\\%(' . lpat . '\)', 'cn', firstNC + 1000)
      " let cline = search('^\s*\\\%(' . cpat . '\)', 'cn', firstNC + 1000)
      " if cline > 0
      "   let format = 'context'
      " endif
      " if lline > 0 && (cline == 0 || cline > lline)
      "   let format = 'tex'
      " endif
    endif " firstNC
    call setpos('.', save_cursor)
  endif " firstline =~ '^%&\s*\a\+'

  " Translation from formats to file types.  TODO:  add AMSTeX, RevTex, others?
  if format == 'plain'
    setf plaintex
  elseif format == 'context'
    setf context
  else " probably LaTeX
    setf tex
  endif
  return
endfunc

" ConTeXt
au BufNewFile,BufRead tex/context/*/*.tex,*.mkii,*.mkiv   setf context

" Texinfo
au BufNewFile,BufRead *.texinfo,*.texi,*.txi	setf texinfo

" TeX configuration
au BufNewFile,BufRead texmf.cnf			setf texmf

" Tidy config
au BufNewFile,BufRead .tidyrc,tidyrc		setf tidy

" TF mud client
au BufNewFile,BufRead *.tf,.tfrc,tfrc		setf tf

" TPP - Text Presentation Program
au BufNewFile,BufReadPost *.tpp			setf tpp

" Treetop
au BufRead,BufNewFile *.treetop			setf treetop

" Trustees
au BufNewFile,BufRead trustees.conf		setf trustees

" TSS - Geometry
au BufNewFile,BufReadPost *.tssgm		setf tssgm

" TSS - Optics
au BufNewFile,BufReadPost *.tssop		setf tssop

" TSS - Command Line (temporary)
au BufNewFile,BufReadPost *.tsscl		setf tsscl

" TWIG files
au BufNewFile,BufReadPost *.twig		setf twig

" Motif UIT/UIL files
au BufNewFile,BufRead *.uit,*.uil		setf uil

" Udev conf
au BufNewFile,BufRead */etc/udev/udev.conf	setf udevconf

" Udev permissions
au BufNewFile,BufRead */etc/udev/permissions.d/*.permissions setf udevperm
"
" Udev symlinks config
au BufNewFile,BufRead */etc/udev/cdsymlinks.conf	setf sh

" UnrealScript
au BufNewFile,BufRead *.uc			setf uc

" Updatedb
au BufNewFile,BufRead */etc/updatedb.conf	setf updatedb

" Upstart (init(8)) config files
au BufNewFile,BufRead */usr/share/upstart/*.conf	       setf upstart
au BufNewFile,BufRead */usr/share/upstart/*.override	       setf upstart
au BufNewFile,BufRead */etc/init/*.conf,*/etc/init/*.override  setf upstart
au BufNewFile,BufRead */.init/*.conf,*/.init/*.override        setf upstart
au BufNewFile,BufRead */.config/upstart/*.conf		       setf upstart
au BufNewFile,BufRead */.config/upstart/*.override	       setf upstart

" Vera
au BufNewFile,BufRead *.vr,*.vri,*.vrh		setf vera

" Verilog HDL
au BufNewFile,BufRead *.v			setf verilog

" Verilog-AMS HDL
au BufNewFile,BufRead *.va,*.vams		setf verilogams

" SystemVerilog
au BufNewFile,BufRead *.sv,*.svh		setf systemverilog

" VHDL
au BufNewFile,BufRead *.hdl,*.vhd,*.vhdl,*.vbe,*.vst  setf vhdl
au BufNewFile,BufRead *.vhdl_[0-9]*		call s:StarSetf('vhdl')

" Vim script
au BufNewFile,BufRead *.vim,*.vba,.exrc,_exrc	setf vim

" Viminfo file
au BufNewFile,BufRead .viminfo,_viminfo		setf viminfo

" Virata Config Script File or Drupal module
au BufRead,BufNewFile *.hw,*.module,*.pkg
	\ if getline(1) =~ '<?php' |
	\   setf php |
	\ else |
	\   setf virata |
	\ endif

" Visual Basic (also uses *.bas) or FORM
au BufNewFile,BufRead *.frm			call s:FTVB("form")

" SaxBasic is close to Visual Basic
au BufNewFile,BufRead *.sba			setf vb

" Vgrindefs file
au BufNewFile,BufRead vgrindefs			setf vgrindefs

" VRML V1.0c
au BufNewFile,BufRead *.wrl			setf vrml

" Webmacro
au BufNewFile,BufRead *.wm			setf webmacro

" Wget config
au BufNewFile,BufRead .wgetrc,wgetrc		setf wget

" Website MetaLanguage
au BufNewFile,BufRead *.wml			setf wml

" Winbatch
au BufNewFile,BufRead *.wbt			setf winbatch

" WSML
au BufNewFile,BufRead *.wsml			setf wsml

" WvDial
au BufNewFile,BufRead wvdial.conf,.wvdialrc	setf wvdial

" CVS RC file
au BufNewFile,BufRead .cvsrc			setf cvsrc

" CVS commit file
au BufNewFile,BufRead cvs\d\+			setf cvs

" WEB (*.web is also used for Winbatch: Guess, based on expecting "%" comment
" lines in a WEB file).
au BufNewFile,BufRead *.web
	\ if getline(1)[0].getline(2)[0].getline(3)[0].getline(4)[0].getline(5)[0] =~ "%" |
	\   setf web |
	\ else |
	\   setf winbatch |
	\ endif

" Windows Scripting Host and Windows Script Component
au BufNewFile,BufRead *.ws[fc]			setf wsh

" XHTML
au BufNewFile,BufRead *.xhtml,*.xht		setf xhtml

" X Pixmap (dynamically sets colors, use BufEnter to make it work better)
au BufEnter *.xpm
	\ if getline(1) =~ "XPM2" |
	\   setf xpm2 |
	\ else |
	\   setf xpm |
	\ endif
au BufEnter *.xpm2				setf xpm2

" XFree86 config
au BufNewFile,BufRead XF86Config
	\ if getline(1) =~ '\<XConfigurator\>' |
	\   let b:xf86conf_xfree86_version = 3 |
	\ endif |
	\ setf xf86conf
au BufNewFile,BufRead */xorg.conf.d/*.conf
	\ let b:xf86conf_xfree86_version = 4 |
	\ setf xf86conf

" Xorg config
au BufNewFile,BufRead xorg.conf,xorg.conf-4	let b:xf86conf_xfree86_version = 4 | setf xf86conf

" Xinetd conf
au BufNewFile,BufRead */etc/xinetd.conf		setf xinetd

" XS Perl extension interface language
au BufNewFile,BufRead *.xs			setf xs

" X resources file
au BufNewFile,BufRead .Xdefaults,.Xpdefaults,.Xresources,xdm-config,*.ad setf xdefaults

" Xmath
au BufNewFile,BufRead *.msc,*.msf		setf xmath
au BufNewFile,BufRead *.ms
	\ if !s:FTnroff() | setf xmath | endif

" XML  specific variants: docbk and xbl
au BufNewFile,BufRead *.xml			call s:FTxml()

func! s:FTxml()
  let n = 1
  while n < 100 && n < line("$")
    let line = getline(n)
    " DocBook 4 or DocBook 5.
    let is_docbook4 = line =~ '<!DOCTYPE.*DocBook'
    let is_docbook5 = line =~ ' xmlns="http://docbook.org/ns/docbook"'
    if is_docbook4 || is_docbook5
      let b:docbk_type = "xml"
      if is_docbook5
	let b:docbk_ver = 5
      else
	let b:docbk_ver = 4
      endif
      setf docbk
      return
    endif
    if line =~ 'xmlns:xbl="http://www.mozilla.org/xbl"'
      setf xbl
      return
    endif
    let n += 1
  endwhile
  setf xml
endfunc

" XMI (holding UML models) is also XML
au BufNewFile,BufRead *.xmi			setf xml

" CSPROJ files are Visual Studio.NET's XML-based project config files
au BufNewFile,BufRead *.csproj,*.csproj.user	setf xml

" Qt Linguist translation source and Qt User Interface Files are XML
au BufNewFile,BufRead *.ts,*.ui			setf xml

" TPM's are RDF-based descriptions of TeX packages (Nikolai Weibull)
au BufNewFile,BufRead *.tpm			setf xml

" Xdg menus
au BufNewFile,BufRead */etc/xdg/menus/*.menu	setf xml

" ATI graphics driver configuration
au BufNewFile,BufRead fglrxrc			setf xml

" XLIFF (XML Localisation Interchange File Format) is also XML
au BufNewFile,BufRead *.xlf			setf xml
au BufNewFile,BufRead *.xliff			setf xml

" XML User Interface Language
au BufNewFile,BufRead *.xul			setf xml

" X11 xmodmap (also see below)
au BufNewFile,BufRead *Xmodmap			setf xmodmap

" Xquery
au BufNewFile,BufRead *.xq,*.xql,*.xqm,*.xquery,*.xqy	setf xquery

" XSD
au BufNewFile,BufRead *.xsd			setf xsd

" Xslt
au BufNewFile,BufRead *.xsl,*.xslt		setf xslt

" Yacc
au BufNewFile,BufRead *.yy,*.yxx,*.y++		setf yacc

" Yacc or racc
au BufNewFile,BufRead *.y			call s:FTy()

func! s:FTy()
  let n = 1
  while n < 100 && n < line("$")
    let line = getline(n)
    if line =~ '^\s*%'
      setf yacc
      return
    endif
    if getline(n) =~ '^\s*\(#\|class\>\)' && getline(n) !~ '^\s*#\s*include'
      setf racc
      return
    endif
    let n = n + 1
  endwhile
  setf yacc
endfunc


" Yaml
au BufNewFile,BufRead *.yaml,*.yml		setf yaml

" yum conf (close enough to dosini)
au BufNewFile,BufRead */etc/yum.conf		setf dosini

" Zimbu
au BufNewFile,BufRead *.zu			setf zimbu

" Zope
"   dtml (zope dynamic template markup language), pt (zope page template),
"   cpt (zope form controller page template)
au BufNewFile,BufRead *.dtml,*.pt,*.cpt		call s:FThtml()
"   zsql (zope sql method)
au BufNewFile,BufRead *.zsql			call s:SQL()

" Z80 assembler asz80
au BufNewFile,BufRead *.z8a			setf z8a

augroup END


" Source the user-specified filetype file, for backwards compatibility with
" Vim 5.x.
if exists("myfiletypefile") && filereadable(expand(myfiletypefile))
  execute "source " . myfiletypefile
endif


" Check for "*" after loading myfiletypefile, so that scripts.vim is only used
" when there are no matching file name extensions.
" Don't do this for compressed files.
augroup filetypedetect
au BufNewFile,BufRead *
	\ if !did_filetype() && expand("<amatch>") !~ g:ft_ignore_pat
	\ | runtime! scripts.vim | endif
au StdinReadPost * if !did_filetype() | runtime! scripts.vim | endif


" Extra checks for when no filetype has been detected now.  Mostly used for
" patterns that end in "*".  E.g., "zsh*" matches "zsh.vim", but that's a Vim
" script file.
" Most of these should call s:StarSetf() to avoid names ending in .gz and the
" like are used.

" More Apache config files
au BufNewFile,BufRead access.conf*,apache.conf*,apache2.conf*,httpd.conf*,srm.conf*	call s:StarSetf('apache')
au BufNewFile,BufRead */etc/apache2/*.conf*,*/etc/apache2/conf.*/*,*/etc/apache2/mods-*/*,*/etc/apache2/sites-*/*,*/etc/httpd/conf.d/*.conf*		call s:StarSetf('apache')

" Asterisk config file
au BufNewFile,BufRead *asterisk/*.conf*		call s:StarSetf('asterisk')
au BufNewFile,BufRead *asterisk*/*voicemail.conf* call s:StarSetf('asteriskvm')

" Bazaar version control
au BufNewFile,BufRead bzr_log.*			setf bzr

" BIND zone
au BufNewFile,BufRead */named/db.*,*/bind/db.*	call s:StarSetf('bindzone')

" Calendar
au BufNewFile,BufRead */.calendar/*,
	\*/share/calendar/*/calendar.*,*/share/calendar/calendar.*
	\					call s:StarSetf('calendar')

" Changelog
au BufNewFile,BufRead [cC]hange[lL]og*
	\ if getline(1) =~ '; urgency='
	\|  call s:StarSetf('debchangelog')
	\|else
	\|  call s:StarSetf('changelog')
	\|endif

" Crontab
au BufNewFile,BufRead crontab,crontab.*,*/etc/cron.d/*		call s:StarSetf('crontab')

" dnsmasq(8) configuration
au BufNewFile,BufRead */etc/dnsmasq.d/*		call s:StarSetf('dnsmasq')

" Dracula
au BufNewFile,BufRead drac.*			call s:StarSetf('dracula')

" Fvwm
au BufNewFile,BufRead */.fvwm/*			call s:StarSetf('fvwm')
au BufNewFile,BufRead *fvwmrc*,*fvwm95*.hook
	\ let b:fvwm_version = 1 | call s:StarSetf('fvwm')
au BufNewFile,BufRead *fvwm2rc*
	\ if expand("<afile>:e") == "m4"
	\|  call s:StarSetf('fvwm2m4')
	\|else
	\|  let b:fvwm_version = 2 | call s:StarSetf('fvwm')
	\|endif

" Gedcom
au BufNewFile,BufRead */tmp/lltmp*		call s:StarSetf('gedcom')

" GTK RC
au BufNewFile,BufRead .gtkrc*,gtkrc*		call s:StarSetf('gtkrc')

" Jam
au BufNewFile,BufRead Prl*.*,JAM*.*		call s:StarSetf('jam')

" Jargon
au! BufNewFile,BufRead *jarg*
	\ if getline(1).getline(2).getline(3).getline(4).getline(5) =~? 'THIS IS THE JARGON FILE'
	\|  call s:StarSetf('jargon')
	\|endif

" Kconfig
au BufNewFile,BufRead Kconfig.*			call s:StarSetf('kconfig')

" Lilo: Linux loader
au BufNewFile,BufRead lilo.conf*		call s:StarSetf('lilo')

" Logcheck
au BufNewFile,BufRead */etc/logcheck/*.d*/*	call s:StarSetf('logcheck')

" Makefile
au BufNewFile,BufRead [mM]akefile*		call s:StarSetf('make')

" Ruby Makefile
au BufNewFile,BufRead [rR]akefile*		call s:StarSetf('ruby')

" Mail (also matches muttrc.vim, so this is below the other checks)
au BufNewFile,BufRead mutt[[:alnum:]._-]\\\{6\}	setf mail

" Modconf
au BufNewFile,BufRead */etc/modutils/*
	\ if executable(expand("<afile>")) != 1
	\|  call s:StarSetf('modconf')
	\|endif
au BufNewFile,BufRead */etc/modprobe.*		call s:StarSetf('modconf')

" Mutt setup file
au BufNewFile,BufRead .mutt{ng,}rc*,*/.mutt{ng,}/mutt{ng,}rc*	call s:StarSetf('muttrc')
au BufNewFile,BufRead mutt{ng,}rc*,Mutt{ng,}rc*		call s:StarSetf('muttrc')

" Nroff macros
au BufNewFile,BufRead tmac.*			call s:StarSetf('nroff')

" Pam conf
au BufNewFile,BufRead */etc/pam.d/*		call s:StarSetf('pamconf')

" Printcap and Termcap
au BufNewFile,BufRead *printcap*
	\ if !did_filetype()
	\|  let b:ptcap_type = "print" | call s:StarSetf('ptcap')
	\|endif
au BufNewFile,BufRead *termcap*
	\ if !did_filetype()
	\|  let b:ptcap_type = "term" | call s:StarSetf('ptcap')
	\|endif

" ReDIF
" Only used when the .rdf file was not detected to be XML.
au BufRead,BufNewFile *.rdf			call s:Redif()
func! s:Redif()
  let lnum = 1
  while lnum <= 5 && lnum < line('$')
    if getline(lnum) =~ "^\ctemplate-type:"
      setf redif
      return
    endif
    let lnum = lnum + 1
  endwhile
endfunc

" Remind
au BufNewFile,BufRead .reminders*		call s:StarSetf('remind')

" Vim script
au BufNewFile,BufRead *vimrc*			call s:StarSetf('vim')

" Subversion commit file
au BufNewFile,BufRead svn-commit*.tmp		setf svn

" X resources file
au BufNewFile,BufRead Xresources*,*/app-defaults/*,*/Xresources/* call s:StarSetf('xdefaults')

" XFree86 config
au BufNewFile,BufRead XF86Config-4*
	\ let b:xf86conf_xfree86_version = 4 | call s:StarSetf('xf86conf')
au BufNewFile,BufRead XF86Config*
	\ if getline(1) =~ '\<XConfigurator\>'
	\|  let b:xf86conf_xfree86_version = 3
	\|endif
	\|call s:StarSetf('xf86conf')

" X11 xmodmap
au BufNewFile,BufRead *xmodmap*			call s:StarSetf('xmodmap')

" Xinetd conf
au BufNewFile,BufRead */etc/xinetd.d/*		call s:StarSetf('xinetd')

" yum conf (close enough to dosini)
au BufNewFile,BufRead */etc/yum.repos.d/*	call s:StarSetf('dosini')

" Z-Shell script
au BufNewFile,BufRead zsh*,zlog*		call s:StarSetf('zsh')


" Plain text files, needs to be far down to not override others.  This avoids
" the "conf" type being used if there is a line starting with '#'.
au BufNewFile,BufRead *.txt,*.text,README	setf text


" Use the filetype detect plugins.  They may overrule any of the previously
" detected filetypes.
runtime! ftdetect/*.vim

" NOTE: The above command could have ended the filetypedetect autocmd group
" and started another one. Let's make sure it has ended to get to a consistent
" state.
augroup END

" Generic configuration file (check this last, it's just guessing!)
au filetypedetect BufNewFile,BufRead,StdinReadPost *
	\ if !did_filetype() && expand("<amatch>") !~ g:ft_ignore_pat
	\    && (getline(1) =~ '^#' || getline(2) =~ '^#' || getline(3) =~ '^#'
	\	|| getline(4) =~ '^#' || getline(5) =~ '^#') |
	\   setf conf |
	\ endif


" If the GUI is already running, may still need to install the Syntax menu.
" Don't do it when the 'M' flag is included in 'guioptions'.
if has("menu") && has("gui_running")
      \ && !exists("did_install_syntax_menu") && &guioptions !~# "M"
  source <sfile>:p:h/menu.vim
endif

" Function called for testing all functions defined here.  These are
" script-local, thus need to be executed here.
" Returns a string with error messages (hopefully empty).
func! TestFiletypeFuncs(testlist)
  let output = ''
  for f in a:testlist
    try
      exe f
    catch
      let output = output . "\n" . f . ": " . v:exception
    endtry
  endfor
  return output
endfunc

" Restore 'cpoptions'
let &cpo = s:cpo_save
unlet s:cpo_save
                                                                                                                                                                                                           " Vim support file to switch off detection of file types
"
" Maintainer:	Bram Moolenaar <Bram@vim.org>
" Last change:	2001 Jun 11

if exists("did_load_filetypes")
  unlet did_load_filetypes
endif

" Remove all autocommands in the filetypedetect group
silent! au! filetypedetect *
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               " Vim support file to switch on loading indent files for file types
"
" Maintainer:	Bram Moolenaar <Bram@vim.org>
" Last Change:	2008 Feb 22

if exists("did_indent_on")
  finish
endif
let did_indent_on = 1

augroup filetypeindent
  au FileType * call s:LoadIndent()
  func! s:LoadIndent()
    if exists("b:undo_indent")
      exe b:undo_indent
      unlet! b:undo_indent b:did_indent
    endif
    let s = expand("<amatch>")
    if s != ""
      if exists("b:did_indent")
	unlet b:did_indent
      endif

      " When there is a dot it is used to separate filetype names.  Thus for
      " "aaa.bbb" load "indent/aaa.vim" and then "indent/bbb.vim".
      for name in split(s, '\.')
	exe 'runtime! indent/' . name . '.vim'
      endfor
    endif
  endfunc
augroup END
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        " Vim support file to switch off loading indent files for file types
"
" Maintainer:	Bram Moolenaar <Bram@vim.org>
" Last Change:	2001 Jun 11

if exists("did_indent_on")
  unlet did_indent_on
endif

" Remove all autocommands in the filetypeindent group
silent! au! filetypeindent *
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             P   .   =   ..  Q  matchparen.vim                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          " Vim plugin for showing matching parens
" Maintainer:  Bram Moolenaar <Bram@vim.org>
" Last Change: 2014 Jul 09

" Exit quickly when:
" - this plugin was already loaded (or disabled)
" - when 'compatible' is set
" - the "CursorMoved" autocmd event is not available.
if exists("g:loaded_matchparen") || &cp || !exists("##CursorMoved")
  finish
endif
let g:loaded_matchparen = 1

if !exists("g:matchparen_timeout")
  let g:matchparen_timeout = 300
endif
if !exists("g:matchparen_insert_timeout")
  let g:matchparen_insert_timeout = 60
endif

augroup matchparen
  " Replace all matchparen autocommands
  autocmd! CursorMoved,CursorMovedI,WinEnter * call s:Highlight_Matching_Pair()
  if exists('##TextChanged')
    autocmd! TextChanged,TextChangedI * call s:Highlight_Matching_Pair()
  endif
augroup END

" Skip the rest if it was already done.
if exists("*s:Highlight_Matching_Pair")
  finish
endif

let s:cpo_save = &cpo
set cpo-=C

" The function that is invoked (very often) to define a ":match" highlighting
" for any matching paren.
function! s:Highlight_Matching_Pair()
  " Remove any previous match.
  if exists('w:paren_hl_on') && w:paren_hl_on
    silent! call matchdelete(3)
    let w:paren_hl_on = 0
  endif

  " Avoid that we remove the popup menu.
  " Return when there are no colors (looks like the cursor jumps).
  if pumvisible() || (&t_Co < 8 && !has("gui_running"))
    return
  endif

  " Get the character under the cursor and check if it's in 'matchpairs'.
  let c_lnum = line('.')
  let c_col = col('.')
  let before = 0

  let text = getline(c_lnum)
  let c = text[c_col - 1]
  let plist = split(&matchpairs, '.\zs[:,]')
  let i = index(plist, c)
  if i < 0
    " not found, in Insert mode try character before the cursor
    if c_col > 1 && (mode() == 'i' || mode() == 'R')
      let before = 1
      let c = text[c_col - 2]
      let i = index(plist, c)
    endif
    if i < 0
      " not found, nothing to do
      return
    endif
  endif

  " Figure out the arguments for searchpairpos().
  if i % 2 == 0
    let s_flags = 'nW'
    let c2 = plist[i + 1]
  else
    let s_flags = 'nbW'
    let c2 = c
    let c = plist[i - 1]
  endif
  if c == '['
    let c = '\['
    let c2 = '\]'
  endif

  " Find the match.  When it was just before the cursor move it there for a
  " moment.
  if before > 0
    let save_cursor = getcurpos()
    call cursor(c_lnum, c_col - before)
  endif

  " When not in a string or comment ignore matches inside them.
  " We match "escape" for special items, such as lispEscapeSpecial.
  let s_skip ='synIDattr(synID(line("."), col("."), 0), "name") ' .
	\ '=~?  "string\\|character\\|singlequote\\|escape\\|comment"'
  execute 'if' s_skip '| let s_skip = 0 | endif'

  " Limit the search to lines visible in the window.
  let stoplinebottom = line('w$')
  let stoplinetop = line('w0')
  if i % 2 == 0
    let stopline = stoplinebottom
  else
    let stopline = stoplinetop
  endif

  " Limit the search time to 300 msec to avoid a hang on very long lines.
  " This fails when a timeout is not supported.
  if mode() == 'i' || mode() == 'R'
    let timeout = exists("b:matchparen_insert_timeout") ? b:matchparen_insert_timeout : g:matchparen_insert_timeout
  else
    let timeout = exists("b:matchparen_timeout") ? b:matchparen_timeout : g:matchparen_timeout
  endif
  try
    let [m_lnum, m_col] = searchpairpos(c, '', c2, s_flags, s_skip, stopline, timeout)
  catch /E118/
    " Can't use the timeout, restrict the stopline a bit more to avoid taking
    " a long time on closed folds and long lines.
    " The "viewable" variables give a range in which we can scroll while
    " keeping the cursor at the same position.
    " adjustedScrolloff accounts for very large numbers of scrolloff.
    let adjustedScrolloff = min([&scrolloff, (line('w$') - line('w0')) / 2])
    let bottom_viewable = min([line('$'), c_lnum + &lines - adjustedScrolloff - 2])
    let top_viewable = max([1, c_lnum-&lines+adjustedScrolloff + 2])
    " one of these stoplines will be adjusted below, but the current values are
    " minimal boundaries within the current window
    if i % 2 == 0
      if has("byte_offset") && has("syntax_items") && &smc > 0
	let stopbyte = min([line2byte("$"), line2byte(".") + col(".") + &smc * 2])
	let stopline = min([bottom_viewable, byte2line(stopbyte)])
      else
	let stopline = min([bottom_viewable, c_lnum + 100])
      endif
      let stoplinebottom = stopline
    else
      if has("byte_offset") && has("syntax_items") && &smc > 0
	let stopbyte = max([1, line2byte(".") + col(".") - &smc * 2])
	let stopline = max([top_viewable, byte2line(stopbyte)])
      else
	let stopline = max([top_viewable, c_lnum - 100])
      endif
      let stoplinetop = stopline
    endif
    let [m_lnum, m_col] = searchpairpos(c, '', c2, s_flags, s_skip, stopline)
  endtry

  if before > 0
    call setpos('.', save_cursor)
  endif

  " If a match is found setup match highlighting.
  if m_lnum > 0 && m_lnum >= stoplinetop && m_lnum <= stoplinebottom 
    if exists('*matchaddpos')
      call matchaddpos('MatchParen', [[c_lnum, c_col - before], [m_lnum, m_col]], 10, 3)
    else
      exe '3match MatchParen /\(\%' . c_lnum . 'l\%' . (c_col - before) .
	    \ 'c\)\|\(\%' . m_lnum . 'l\%' . m_col . 'c\)/'
    endif
    let w:paren_hl_on = 1
  endif
endfunction

" Define commands that will disable and enable the plugin.
command! NoMatchParen windo silent! call matchdelete(3) | unlet! g:loaded_matchparen |
	  \ au! matchparen
command! DoMatchParen runtime plugin/matchparen.vim | windo doau CursorMoved

let &cpo = s:cpo_save
unlet s:cpo_save
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 0  " Vim support file to detect file types in scripts
"
" Maintainer:	Bram Moolenaar <Bram@vim.org>
" Last change:	2013 May 24

" This file is called by an autocommand for every file that has just been
" loaded into a buffer.  It checks if the type of file can be recognized by
" the file contents.  The autocommand is in $VIMRUNTIME/filetype.vim.


" Only do the rest when the FileType autocommand has not been triggered yet.
if did_filetype()
  finish
endif

" Load the user defined scripts file first
" Only do this when the FileType autocommand has not been triggered yet
if exists("myscriptsfile") && filereadable(expand(myscriptsfile))
  execute "source " . myscriptsfile
  if did_filetype()
    finish
  endif
endif

" Line continuation is used here, remove 'C' from 'cpoptions'
let s:cpo_save = &cpo
set cpo&vim

let s:line1 = getline(1)

if s:line1 =~ "^#!"
  " A script that starts with "#!".

  " Check for a line like "#!/usr/bin/env VAR=val bash".  Turn it into
  " "#!/usr/bin/bash" to make matching easier.
  if s:line1 =~ '^#!\s*\S*\<env\s'
    let s:line1 = substitute(s:line1, '\S\+=\S\+', '', 'g')
    let s:line1 = substitute(s:line1, '\<env\s\+', '', '')
  endif

  " Get the program name.
  " Only accept spaces in PC style paths: "#!c:/program files/perl [args]".
  " If the word env is used, use the first word after the space:
  " "#!/usr/bin/env perl [path/args]"
  " If there is no path use the first word: "#!perl [path/args]".
  " Otherwise get the last word after a slash: "#!/usr/bin/perl [path/args]".
  if s:line1 =~ '^#!\s*\a:[/\\]'
    let s:name = substitute(s:line1, '^#!.*[/\\]\(\i\+\).*', '\1', '')
  elseif s:line1 =~ '^#!.*\<env\>'
    let s:name = substitute(s:line1, '^#!.*\<env\>\s\+\(\i\+\).*', '\1', '')
  elseif s:line1 =~ '^#!\s*[^/\\ ]*\>\([^/\\]\|$\)'
    let s:name = substitute(s:line1, '^#!\s*\([^/\\ ]*\>\).*', '\1', '')
  else
    let s:name = substitute(s:line1, '^#!\s*\S*[/\\]\(\i\+\).*', '\1', '')
  endif

  " tcl scripts may have #!/bin/sh in the first line and "exec wish" in the
  " third line.  Suggested by Steven Atkinson.
  if getline(3) =~ '^exec wish'
    let s:name = 'wish'
  endif

  " Bourne-like shell scripts: bash bash2 ksh ksh93 sh
  if s:name =~ '^\(bash\d*\|\|ksh\d*\|sh\)\>'
    call SetFileTypeSH(s:line1)	" defined in filetype.vim

    " csh scripts
  elseif s:name =~ '^csh\>'
    if exists("g:filetype_csh")
      call SetFileTypeShell(g:filetype_csh)
    else
      call SetFileTypeShell("csh")
    endif

    " tcsh scripts
  elseif s:name =~ '^tcsh\>'
    call SetFileTypeShell("tcsh")

    " Z shell scripts
  elseif s:name =~ '^zsh\>'
    set ft=zsh

    " TCL scripts
  elseif s:name =~ '^\(tclsh\|wish\|expectk\|itclsh\|itkwish\)\>'
    set ft=tcl

    " Expect scripts
  elseif s:name =~ '^expect\>'
    set ft=expect

    " Gnuplot scripts
  elseif s:name =~ '^gnuplot\>'
    set ft=gnuplot

    " Makefiles
  elseif s:name =~ 'make\>'
    set ft=make

    " Lua
  elseif s:name =~ 'lua'
    set ft=lua

    " Perl 6
  elseif s:name =~ 'perl6'
    set ft=perl6

    " Perl
  elseif s:name =~ 'perl'
    set ft=perl

    " PHP
  elseif s:name =~ 'php'
    set ft=php

    " Python
  elseif s:name =~ 'python'
    set ft=python

    " Groovy
  elseif s:name =~ '^groovy\>'
    set ft=groovy

    " Ruby
  elseif s:name =~ 'ruby'
    set ft=ruby

    " BC calculator
  elseif s:name =~ '^bc\>'
    set ft=bc

    " sed
  elseif s:name =~ 'sed\>'
    set ft=sed

    " OCaml-scripts
  elseif s:name =~ 'ocaml'
    set ft=ocaml

    " Awk scripts
  elseif s:name =~ 'awk\>'
    set ft=awk

    " Website MetaLanguage
  elseif s:name =~ 'wml'
    set ft=wml

    " Scheme scripts
  elseif s:name =~ 'scheme'
    set ft=scheme

    " CFEngine scripts
  elseif s:name =~ 'cfengine'
    set ft=cfengine

    " Erlang scripts
  elseif s:name =~ 'escript'
    set ft=erlang

  endif
  unlet s:name

else
  " File does not start with "#!".

  let s:line2 = getline(2)
  let s:line3 = getline(3)
  let s:line4 = getline(4)
  let s:line5 = getline(5)

  " Bourne-like shell scripts: sh ksh bash bash2
  if s:line1 =~ '^:$'
    call SetFileTypeSH(s:line1)	" defined in filetype.vim

    " Z shell scripts
  elseif s:line1 =~ '^#compdef\>' || s:line1 =~ '^#autoload\>' ||
        \ "\n".s:line1."\n".s:line2."\n".s:line3."\n".s:line4."\n".s:line5 =~ '\n\s*emulate\s\+\%(-[LR]\s\+\)\=[ckz]\=sh\>'
    set ft=zsh

  " ELM Mail files
  elseif s:line1 =~ '^From \([a-zA-Z][a-zA-Z_0-9\.=-]*\(@[^ ]*\)\=\|-\) .* \(19\|20\)\d\d$'
    set ft=mail

    " Mason
  elseif s:line1 =~ '^<[%&].*>'
    set ft=mason

    " Vim scripts (must have '" vim' as the first line to trigger this)
  elseif s:line1 =~ '^" *[vV]im$'
    set ft=vim

    " MOO
  elseif s:line1 =~ '^\*\* LambdaMOO Database, Format Version \%([1-3]\>\)\@!\d\+ \*\*$'
    set ft=moo

    " Diff file:
    " - "diff" in first line (context diff)
    " - "Only in " in first line
    " - "--- " in first line and "+++ " in second line (unified diff).
    " - "*** " in first line and "--- " in second line (context diff).
    " - "# It was generated by makepatch " in the second line (makepatch diff).
    " - "Index: <filename>" in the first line (CVS file)
    " - "=== ", line of "=", "---", "+++ " (SVK diff)
    " - "=== ", "--- ", "+++ " (bzr diff, common case)
    " - "=== (removed|added|renamed|modified)" (bzr diff, alternative)
    " - "# HG changeset patch" in first line (Mercurial export format)
  elseif s:line1 =~ '^\(diff\>\|Only in \|\d\+\(,\d\+\)\=[cda]\d\+\>\|# It was generated by makepatch \|Index:\s\+\f\+\r\=$\|===== \f\+ \d\+\.\d\+ vs edited\|==== //\f\+#\d\+\|# HG changeset patch\)'
	\ || (s:line1 =~ '^--- ' && s:line2 =~ '^+++ ')
	\ || (s:line1 =~ '^\* looking for ' && s:line2 =~ '^\* comparing to ')
	\ || (s:line1 =~ '^\*\*\* ' && s:line2 =~ '^--- ')
	\ || (s:line1 =~ '^=== ' && ((s:line2 =~ '^=\{66\}' && s:line3 =~ '^--- ' && s:line4 =~ '^+++') || (s:line2 =~ '^--- ' && s:line3 =~ '^+++ ')))
	\ || (s:line1 =~ '^=== \(removed\|added\|renamed\|modified\)')
    set ft=diff

    " PostScript Files (must have %!PS as the first line, like a2ps output)
  elseif s:line1 =~ '^%![ \t]*PS'
    set ft=postscr

    " M4 scripts: Guess there is a line that starts with "dnl".
  elseif s:line1 =~ '^\s*dnl\>'
	\ || s:line2 =~ '^\s*dnl\>'
	\ || s:line3 =~ '^\s*dnl\>'
	\ || s:line4 =~ '^\s*dnl\>'
	\ || s:line5 =~ '^\s*dnl\>'
    set ft=m4

    " AmigaDos scripts
  elseif $TERM == "amiga"
	\ && (s:line1 =~ "^;" || s:line1 =~ '^\.[bB][rR][aA]')
    set ft=amiga

    " SiCAD scripts (must have procn or procd as the first line to trigger this)
  elseif s:line1 =~? '^ *proc[nd] *$'
    set ft=sicad

    " Purify log files start with "****  Purify"
  elseif s:line1 =~ '^\*\*\*\*  Purify'
    set ft=purifylog

    " XML
  elseif s:line1 =~ '<?\s*xml.*?>'
    set ft=xml

    " XHTML (e.g.: PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN")
  elseif s:line1 =~ '\<DTD\s\+XHTML\s'
    set ft=xhtml

    " HTML (e.g.: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN")
  elseif s:line1 =~? '\<DOCTYPE\s\+html\>'
    set ft=html

    " PDF
  elseif s:line1 =~ '^%PDF-'
    set ft=pdf

    " XXD output
  elseif s:line1 =~ '^\x\{7}: \x\{2} \=\x\{2} \=\x\{2} \=\x\{2} '
    set ft=xxd

    " RCS/CVS log output
  elseif s:line1 =~ '^RCS file:' || s:line2 =~ '^RCS file:'
    set ft=rcslog

    " CVS commit
  elseif s:line2 =~ '^CVS:' || getline("$") =~ '^CVS: '
    set ft=cvs

    " Prescribe
  elseif s:line1 =~ '^!R!'
    set ft=prescribe

    " Send-pr
  elseif s:line1 =~ '^SEND-PR:'
    set ft=sendpr

    " SNNS files
  elseif s:line1 =~ '^SNNS network definition file'
    set ft=snnsnet
  elseif s:line1 =~ '^SNNS pattern definition file'
    set ft=snnspat
  elseif s:line1 =~ '^SNNS result file'
    set ft=snnsres

    " Virata
  elseif s:line1 =~ '^%.\{-}[Vv]irata'
	\ || s:line2 =~ '^%.\{-}[Vv]irata'
	\ || s:line3 =~ '^%.\{-}[Vv]irata'
	\ || s:line4 =~ '^%.\{-}[Vv]irata'
	\ || s:line5 =~ '^%.\{-}[Vv]irata'
    set ft=virata

    " Strace
  elseif s:line1 =~ '^\(\[pid \d\+\] \)\=[0-9:.]* *execve(' || s:line1 =~ '^__libc_start_main'
    set ft=strace

    " VSE JCL
  elseif s:line1 =~ '^\* $$ JOB\>' || s:line1 =~ '^// *JOB\>'
    set ft=vsejcl

    " TAK and SINDA
  elseif s:line4 =~ 'K & K  Associates' || s:line2 =~ 'TAK 2000'
    set ft=takout
  elseif s:line3 =~ 'S Y S T E M S   I M P R O V E D '
    set ft=sindaout
  elseif getline(6) =~ 'Run Date: '
    set ft=takcmp
  elseif getline(9) =~ 'Node    File  1'
    set ft=sindacmp

    " DNS zone files
  elseif s:line1.s:line2.s:line3.s:line4 =~ '^; <<>> DiG [0-9.]\+ <<>>\|BIND.*named\|$ORIGIN\|$TTL\|IN\s\+SOA'
    set ft=bindzone

    " BAAN
  elseif s:line1 =~ '|\*\{1,80}' && s:line2 =~ 'VRC '
	\ || s:line2 =~ '|\*\{1,80}' && s:line3 =~ 'VRC '
    set ft=baan

  " Valgrind
  elseif s:line1 =~ '^==\d\+== valgrind' || s:line3 =~ '^==\d\+== Using valgrind'
    set ft=valgrind

  " Renderman Interface Bytestream
  elseif s:line1 =~ '^##RenderMan'
    set ft=rib

  " Scheme scripts
  elseif s:line1 =~ 'exec\s\+\S*scheme' || s:line2 =~ 'exec\s\+\S*scheme'
    set ft=scheme

  " Git output
  elseif s:line1 =~ '^\(commit\|tree\|object\) \x\{40\}\>\|^tag \S\+$'
    set ft=git

  " Logcat
  elseif s:line1 == '--------- beginning of /dev/log/system'
    set ft=logcat

   " Gprof (gnu profiler)
   elseif s:line1 == 'Flat profile:'
     \ && s:line2 == ''
     \ && s:line3 =~ '^Each sample counts as .* seconds.$'
     set ft=gprof

  " Erlang terms
  " (See also: http://www.gnu.org/software/emacs/manual/html_node/emacs/Choosing-Modes.html#Choosing-Modes)
  elseif s:line1 =~? '-\*-.*erlang.*-\*-'
    set ft=erlang

  " CVS diff
  else
    let s:lnum = 1
    while getline(s:lnum) =~ "^? " && s:lnum < line("$")
      let s:lnum += 1
    endwhile
    if getline(s:lnum) =~ '^Index:\s\+\f\+$'
      set ft=diff

      " locale input files: Formal Definitions of Cultural Conventions
      " filename must be like en_US, fr_FR@euro or en_US.UTF-8
    elseif expand("%") =~ '\a\a_\a\a\($\|[.@]\)\|i18n$\|POSIX$\|translit_'
      let s:lnum = 1
      while s:lnum < 100 && s:lnum < line("$")
	if getline(s:lnum) =~ '^LC_\(IDENTIFICATION\|CTYPE\|COLLATE\|MONETARY\|NUMERIC\|TIME\|MESSAGES\|PAPER\|TELEPHONE\|MEASUREMENT\|NAME\|ADDRESS\)$'
	  setf fdcc
	  break
	endif
	let s:lnum += 1
      endwhile
    endif
    unlet s:lnum

  endif

  unlet s:line2 s:line3 s:line4 s:line5

endif

" Restore 'cpoptions'
let &cpo = s:cpo_save

unlet s:cpo_save s:line1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   S   .   =   ..  T   awk.vim U   c.vim   V   conf.vimW   
config.vim  X   context.vim Y   cpp.vim Z   css.vim [   diff.vim\   doxygen.vim ]   dtd.vim ^   
gitcommit.vim   _   help.vim`   html.vima   java.vimb   javascript.vim  c   
logcat.vim  d   
manual.vim  e   sh.vim  f   syncolor.vimg   synload.vim h   
syntax.vim  i   vb.vim  j   vim.vim k  Hxml.vim                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 " Vim syntax file
" Language:	awk, nawk, gawk, mawk
" Maintainer:	Antonio Colombo <azc100@gmail.com>
" Last Change:	2012 May 18

" AWK  ref.  is: Alfred V. Aho, Brian W. Kernighan, Peter J. Weinberger
" The AWK Programming Language, Addison-Wesley, 1988

" GAWK ref. is: Arnold D. Robbins
" Effective AWK Programming, Third Edition, O'Reilly, 2001

" MAWK is a "new awk" meaning it implements AWK ref.
" mawk conforms to the Posix 1003.2 (draft 11.3)
" definition of the AWK language which contains a few features
" not described in the AWK book, and mawk provides a small number of extensions.

" TODO:
" Dig into the commented out syntax expressions below.

" For version 5.x: Clear all syntax items
" For version 6.x: Quit when a syntax file was already loaded
if version < 600
  syn clear
elseif exists("b:current_syntax")
  finish
endif

let s:cpo_save = &cpo
set cpo&vim

" A bunch of useful Awk keywords
" AWK  ref. p. 188
syn keyword awkStatement	break continue delete exit
syn keyword awkStatement	function getline next
syn keyword awkStatement	print printf return
" GAWK ref. p. 117
syn keyword awkStatement	nextfile
" AWK  ref. p. 42, GAWK ref. p. 142-166
syn keyword awkFunction	atan2 close cos exp fflush int log rand sin sqrt srand
syn keyword awkFunction	gsub index length match split sprintf sub
syn keyword awkFunction	substr system
" GAWK ref. p. 142-166
syn keyword awkFunction	asort gensub mktime strftime strtonum systime
syn keyword awkFunction	tolower toupper
syn keyword awkFunction	and or xor compl lshift rshift
syn keyword awkFunction	dcgettext bindtextdomain

syn keyword awkConditional	if else
syn keyword awkRepeat	while for

syn keyword awkTodo		contained TODO

syn keyword awkPatterns	BEGIN END
" AWK  ref. p. 36
syn keyword awkVariables	ARGC ARGV FILENAME FNR FS NF NR
syn keyword awkVariables	OFMT OFS ORS RLENGTH RS RSTART SUBSEP
" GAWK ref. p. 120-126
syn keyword awkVariables	ARGIND BINMODE CONVFMT ENVIRON ERRNO
syn keyword awkVariables	FIELDWIDTHS IGNORECASE LINT PROCINFO
syn keyword awkVariables	RT RLENGTH TEXTDOMAIN

syn keyword awkRepeat	do

" Octal format character.
syn match   awkSpecialCharacter display contained "\\[0-7]\{1,3\}"
syn keyword awkStatement	func nextfile
" Hex   format character.
syn match   awkSpecialCharacter display contained "\\x[0-9A-Fa-f]\+"

syn match   awkFieldVars	"\$\d\+"

"catch errors caused by wrong parenthesis
syn region	awkParen	transparent start="(" end=")" contains=ALLBUT,awkParenError,awkSpecialCharacter,awkArrayElement,awkArrayArray,awkTodo,awkRegExp,awkBrktRegExp,awkBrackets,awkCharClass
syn match	awkParenError	display ")"
syn match	awkInParen	display contained "[{}]"

" 64 lines for complex &&'s, and ||'s in a big "if"
syn sync ccomment awkParen maxlines=64

" Search strings & Regular Expressions therein.
syn region  awkSearch	oneline start="^[ \t]*/"ms=e start="\(,\|!\=\~\)[ \t]*/"ms=e skip="\\\\\|\\/" end="/" contains=awkBrackets,awkRegExp,awkSpecialCharacter
syn region  awkBrackets	contained start="\[\^\]\="ms=s+2 start="\[[^\^]"ms=s+1 end="\]"me=e-1 contains=awkBrktRegExp,awkCharClass
syn region  awkSearch	oneline start="[ \t]*/"hs=e skip="\\\\\|\\/" end="/" contains=awkBrackets,awkRegExp,awkSpecialCharacter

syn match   awkCharClass	contained "\[:[^:\]]*:\]"
syn match   awkBrktRegExp	contained "\\.\|.\-[^]]"
syn match   awkRegExp	contained "/\^"ms=s+1
syn match   awkRegExp	contained "\$/"me=e-1
syn match   awkRegExp	contained "[?.*{}|+]"

" String and Character constants
" Highlight special characters (those which have a backslash) differently
syn region  awkString	start=+"+  skip=+\\\\\|\\"+  end=+"+  contains=@Spell,awkSpecialCharacter,awkSpecialPrintf
syn match   awkSpecialCharacter contained "\\."

" Some of these combinations may seem weird, but they work.
syn match   awkSpecialPrintf	contained "%[-+ #]*\d*\.\=\d*[cdefgiosuxEGX%]"

" Numbers, allowing signs (both -, and +)
" Integer number.
syn match  awkNumber		display "[+-]\=\<\d\+\>"
" Floating point number.
syn match  awkFloat		display "[+-]\=\<\d\+\.\d+\>"
" Floating point number, starting with a dot.
syn match  awkFloat		display "[+-]\=\<.\d+\>"
syn case ignore
"floating point number, with dot, optional exponent
syn match  awkFloat	display "\<\d\+\.\d*\(e[-+]\=\d\+\)\=\>"
"floating point number, starting with a dot, optional exponent
syn match  awkFloat	display "\.\d\+\(e[-+]\=\d\+\)\=\>"
"floating point number, without dot, with exponent
syn match  awkFloat	display "\<\d\+e[-+]\=\d\+\>"
syn case match

"syn match  awkIdentifier	"\<[a-zA-Z_][a-zA-Z0-9_]*\>"

" Arithmetic operators: +, and - take care of ++, and --
"syn match   awkOperator	"+\|-\|\*\|/\|%\|="
"syn match   awkOperator	"+=\|-=\|\*=\|/=\|%="
"syn match   awkOperator	"^\|^="

" Comparison expressions.
"syn match   awkExpression	"==\|>=\|=>\|<=\|=<\|\!="
"syn match   awkExpression	"\~\|\!\~"
"syn match   awkExpression	"?\|:"
"syn keyword awkExpression	in

" Boolean Logic (OR, AND, NOT)
"syn match  awkBoolLogic	"||\|&&\|\!"

" This is overridden by less-than & greater-than.
" Put this above those to override them.
" Put this in a 'match "\<printf\=\>.*;\="' to make it not override
" less/greater than (most of the time), but it won't work yet because
" keywords always have precedence over match & region.
" File I/O: (print foo, bar > "filename") & for nawk (getline < "filename")
"syn match  awkFileIO		contained ">"
"syn match  awkFileIO		contained "<"

" Expression separators: ';' and ','
syn match  awkSemicolon	";"
syn match  awkComma		","

syn match  awkComment	"#.*" contains=@Spell,awkTodo

syn match  awkLineSkip	"\\$"

" Highlight array element's (recursive arrays allowed).
" Keeps nested array names' separate from normal array elements.
" Keeps numbers separate from normal array elements (variables).
syn match  awkArrayArray	contained "[^][, \t]\+\["me=e-1
syn match  awkArrayElement      contained "[^][, \t]\+"
syn region awkArray		transparent start="\[" end="\]" contains=awkArray,awkArrayElement,awkArrayArray,awkNumber,awkFloat

" 10 should be enough.
" (for the few instances where it would be more than "oneline")
syn sync ccomment awkArray maxlines=10

" define the default highlighting
" For version 5.7 and earlier: only when not done already
" For version 5.8 and later: only when an item doesn't have highlighting yet
if version >= 508 || !exists("did_awk_syn_inits")
  if version < 508
    let did_awk_syn_inits = 1
    command -nargs=+ HiLink hi link <args>
  else
    command -nargs=+ HiLink hi def link <args>
  endif

  HiLink awkConditional		Conditional
  HiLink awkFunction		Function
  HiLink awkRepeat		Repeat
  HiLink awkStatement		Statement

  HiLink awkString		String
  HiLink awkSpecialPrintf	Special
  HiLink awkSpecialCharacter	Special

  HiLink awkSearch		String
  HiLink awkBrackets		awkRegExp
  HiLink awkBrktRegExp		awkNestRegExp
  HiLink awkCharClass		awkNestRegExp
  HiLink awkNestRegExp		Keyword
  HiLink awkRegExp		Special

  HiLink awkNumber		Number
  HiLink awkFloat		Float

  HiLink awkFileIO		Special
  "HiLink awkOperator		Special
  "HiLink awkExpression		Special
  HiLink awkBoolLogic		Special

  HiLink awkPatterns		Special
  HiLink awkVariables		Special
  HiLink awkFieldVars		Special

  HiLink awkLineSkip		Special
  HiLink awkSemicolon		Special
  HiLink awkComma		Special
  "HiLink awkIdentifier		Identifier

  HiLink awkComment		Comment
  HiLink awkTodo		Todo

  " Change this if you want nested array names to be highlighted.
  HiLink awkArrayArray		awkArray
  HiLink awkArrayElement	Special

  HiLink awkParenError		awkError
  HiLink awkInParen		awkError
  HiLink awkError		Error

  delcommand HiLink
endif

let b:current_syntax = "awk"

let &cpo = s:cpo_save
unlet s:cpo_save

" vim: ts=8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            p  " Vim syntax file
" Language:	C
" Maintainer:	Bram Moolenaar <Bram@vim.org>
" Last Change:	2014 May 26

" Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax")
  finish
endif

let s:cpo_save = &cpo
set cpo&vim

let s:ft = matchstr(&ft, '^\([^.]\)\+')

" A bunch of useful C keywords
syn keyword	cStatement	goto break return continue asm
syn keyword	cLabel		case default
syn keyword	cConditional	if else switch
syn keyword	cRepeat		while for do

syn keyword	cTodo		contained TODO FIXME XXX

" It's easy to accidentally add a space after a backslash that was intended
" for line continuation.  Some compilers allow it, which makes it
" unpredictable and should be avoided.
syn match	cBadContinuation contained "\\\s\+$"

" cCommentGroup allows adding matches for special things in comments
syn cluster	cCommentGroup	contains=cTodo,cBadContinuation

" String and Character constants
" Highlight special characters (those which have a backslash) differently
syn match	cSpecial	display contained "\\\(x\x\+\|\o\{1,3}\|.\|$\)"
if !exists("c_no_utf")
  syn match	cSpecial	display contained "\\\(u\x\{4}\|U\x\{8}\)"
endif
if exists("c_no_cformat")
  syn region	cString		start=+L\="+ skip=+\\\\\|\\"+ end=+"+ contains=cSpecial,@Spell extend
  " cCppString: same as cString, but ends at end of line
  if !exists("cpp_no_cpp11") " ISO C++11
    syn region cCppString	start=+\(L\|u\|u8\|U\|R\|LR\|u8R\|uR\|UR\)\="+ skip=+\\\\\|\\"\|\\$+ excludenl end=+"+ end='$' contains=cSpecial,cFormat,@Spell
  else
    syn region cCppString	start=+L\="+ skip=+\\\\\|\\"\|\\$+ excludenl end=+"+ end='$' contains=cSpecial,cFormat,@Spell
  endif
  syn region	cCppOut2	contained start="0" end="^\s*\(%:\|#\)\s*\(endif\>\|else\>\|elif\>\)" contains=cSpaceError,cCppSkip
  syn region	cCppSkip	contained start="^\s*\(%:\|#\)\s*\(if\>\|ifdef\>\|ifndef\>\)" skip="\\$" end="^\s*\(%:\|#\)\s*endif\>" contains=cSpaceError,cCppSkip
else
  if !exists("c_no_c99") " ISO C99
    syn match	cFormat		display "%\(\d\+\$\)\=[-+' #0*]*\(\d*\|\*\|\*\d\+\$\)\(\.\(\d*\|\*\|\*\d\+\$\)\)\=\([hlLjzt]\|ll\|hh\)\=\([aAbdiuoxXDOUfFeEgGcCsSpn]\|\[\^\=.[^]]*\]\)" contained
  else
    syn match	cFormat		display "%\(\d\+\$\)\=[-+' #0*]*\(\d*\|\*\|\*\d\+\$\)\(\.\(\d*\|\*\|\*\d\+\$\)\)\=\([hlL]\|ll\)\=\([bdiuoxXDOUfeEgGcCsSpn]\|\[\^\=.[^]]*\]\)" contained
  endif
  syn match	cFormat		display "%%" contained
  syn region	cString		start=+L\="+ skip=+\\\\\|\\"+ end=+"+ contains=cSpecial,cFormat,@Spell extend
  " cCppString: same as cString, but ends at end of line
  syn region	cCppString	start=+L\="+ skip=+\\\\\|\\"\|\\$+ excludenl end=+"+ end='$' contains=cSpecial,cFormat,@Spell
endif

syn match	cCharacter	"L\='[^\\]'"
syn match	cCharacter	"L'[^']*'" contains=cSpecial
if exists("c_gnu")
  syn match	cSpecialError	"L\='\\[^'\"?\\abefnrtv]'"
  syn match	cSpecialCharacter "L\='\\['\"?\\abefnrtv]'"
else
  syn match	cSpecialError	"L\='\\[^'\"?\\abfnrtv]'"
  syn match	cSpecialCharacter "L\='\\['\"?\\abfnrtv]'"
endif
syn match	cSpecialCharacter display "L\='\\\o\{1,3}'"
syn match	cSpecialCharacter display "'\\x\x\{1,2}'"
syn match	cSpecialCharacter display "L'\\x\x\+'"

if !exists("c_no_c11") " ISO C11
  if exists("c_no_cformat")
    syn region	cString		start=+\%(U\|u8\=\)"+ skip=+\\\\\|\\"+ end=+"+ contains=cSpecial,@Spell extend
  else
    syn region	cString		start=+\%(U\|u8\=\)"+ skip=+\\\\\|\\"+ end=+"+ contains=cSpecial,cFormat,@Spell extend
  endif
  syn match	cCharacter	"[Uu]'[^\\]'"
  syn match	cCharacter	"[Uu]'[^']*'" contains=cSpecial
  if exists("c_gnu")
    syn match	cSpecialError	"[Uu]'\\[^'\"?\\abefnrtv]'"
    syn match	cSpecialCharacter "[Uu]'\\['\"?\\abefnrtv]'"
  else
    syn match	cSpecialError	"[Uu]'\\[^'\"?\\abfnrtv]'"
    syn match	cSpecialCharacter "[Uu]'\\['\"?\\abfnrtv]'"
  endif
  syn match	cSpecialCharacter display "[Uu]'\\\o\{1,3}'"
  syn match	cSpecialCharacter display "[Uu]'\\x\x\+'"
endif

"when wanted, highlight trailing white space
if exists("c_space_errors")
  if !exists("c_no_trail_space_error")
    syn match	cSpaceError	display excludenl "\s\+$"
  endif
  if !exists("c_no_tab_space_error")
    syn match	cSpaceError	display " \+\t"me=e-1
  endif
endif

" This should be before cErrInParen to avoid problems with #define ({ xxx })
if exists("c_curly_error")
  syn match cCurlyError "}"
  syn region	cBlock		start="{" end="}" contains=ALLBUT,cBadBlock,cCurlyError,@cParenGroup,cErrInParen,cCppParen,cErrInBracket,cCppBracket,cCppString,@Spell fold
else
  syn region	cBlock		start="{" end="}" transparent fold
endif

"catch errors caused by wrong parenthesis and brackets
" also accept <% for {, %> for }, <: for [ and :> for ] (C99)
" But avoid matching <::.
syn cluster	cParenGroup	contains=cParenError,cIncluded,cSpecial,cCommentSkip,cCommentString,cComment2String,@cCommentGroup,cCommentStartError,cUserLabel,cBitField,cOctalZero,@cCppOutInGroup,cFormat,cNumber,cFloat,cOctal,cOctalError,cNumbersCom
if exists("c_no_curly_error")
  if s:ft ==# 'cpp' && !exists("cpp_no_cpp11")
    syn region	cParen		transparent start='(' end=')' contains=ALLBUT,@cParenGroup,cCppParen,cCppString,@Spell
    " cCppParen: same as cParen but ends at end-of-line; used in cDefine
    syn region	cCppParen	transparent start='(' skip='\\$' excludenl end=')' end='$' contained contains=ALLBUT,@cParenGroup,cParen,cString,@Spell
    syn match	cParenError	display ")"
    syn match	cErrInParen	display contained "^^<%\|^%>"
  else
    syn region	cParen		transparent start='(' end=')' end='}'me=s-1 contains=ALLBUT,cBlock,@cParenGroup,cCppParen,cCppString,@Spell
    " cCppParen: same as cParen but ends at end-of-line; used in cDefine
    syn region	cCppParen	transparent start='(' skip='\\$' excludenl end=')' end='$' contained contains=ALLBUT,@cParenGroup,cParen,cString,@Spell
    syn match	cParenError	display ")"
    syn match	cErrInParen	display contained "^[{}]\|^<%\|^%>"
  endif
elseif exists("c_no_bracket_error")
  if s:ft ==# 'cpp' && !exists("cpp_no_cpp11")
    syn region	cParen		transparent start='(' end=')' contains=ALLBUT,@cParenGroup,cCppParen,cCppString,@Spell
    " cCppParen: same as cParen but ends at end-of-line; used in cDefine
    syn region	cCppParen	transparent start='(' skip='\\$' excludenl end=')' end='$' contained contains=ALLBUT,@cParenGroup,cParen,cString,@Spell
    syn match	cParenError	display ")"
    syn match	cErrInParen	display contained "<%\|%>"
  else
    syn region	cParen		transparent start='(' end=')' end='}'me=s-1 contains=ALLBUT,cBlock,@cParenGroup,cCppParen,cCppString,@Spell
    " cCppParen: same as cParen but ends at end-of-line; used in cDefine
    syn region	cCppParen	transparent start='(' skip='\\$' excludenl end=')' end='$' contained contains=ALLBUT,@cParenGroup,cParen,cString,@Spell
    syn match	cParenError	display ")"
    syn match	cErrInParen	display contained "[{}]\|<%\|%>"
  endif
else
  if s:ft ==# 'cpp' && !exists("cpp_no_cpp11")
    syn region	cParen		transparent start='(' end=')' contains=ALLBUT,@cParenGroup,cCppParen,cErrInBracket,cCppBracket,cCppString,@Spell
    " cCppParen: same as cParen but ends at end-of-line; used in cDefine
    syn region	cCppParen	transparent start='(' skip='\\$' excludenl end=')' end='$' contained contains=ALLBUT,@cParenGroup,cErrInBracket,cParen,cBracket,cString,@Spell
    syn match	cParenError	display "[\])]"
    syn match	cErrInParen	display contained "<%\|%>"
    syn region	cBracket	transparent start='\[\|<::\@!' end=']\|:>' contains=ALLBUT,@cParenGroup,cErrInParen,cCppParen,cCppBracket,cCppString,@Spell
  else
    syn region	cParen		transparent start='(' end=')' end='}'me=s-1 contains=ALLBUT,cBlock,@cParenGroup,cCppParen,cErrInBracket,cCppBracket,cCppString,@Spell
    " cCppParen: same as cParen but ends at end-of-line; used in cDefine
    syn region	cCppParen	transparent start='(' skip='\\$' excludenl end=')' end='$' contained contains=ALLBUT,@cParenGroup,cErrInBracket,cParen,cBracket,cString,@Spell
    syn match	cParenError	display "[\])]"
    syn match	cErrInParen	display contained "[\]{}]\|<%\|%>"
    syn region	cBracket	transparent start='\[\|<::\@!' end=']\|:>' end='}'me=s-1 contains=ALLBUT,cBlock,@cParenGroup,cErrInParen,cCppParen,cCppBracket,cCppString,@Spell
  endif
  " cCppBracket: same as cParen but ends at end-of-line; used in cDefine
  syn region	cCppBracket	transparent start='\[\|<::\@!' skip='\\$' excludenl end=']\|:>' end='$' contained contains=ALLBUT,@cParenGroup,cErrInParen,cParen,cBracket,cString,@Spell
  syn match	cErrInBracket	display contained "[);{}]\|<%\|%>"
endif

if s:ft ==# 'c' || exists("cpp_no_cpp11")
  syn region	cBadBlock	keepend start="{" end="}" contained containedin=cParen,cBracket,cBadBlock transparent fold
endif

"integer number, or floating point number without a dot and with "f".
syn case ignore
syn match	cNumbers	display transparent "\<\d\|\.\d" contains=cNumber,cFloat,cOctalError,cOctal
" Same, but without octal error (for comments)
syn match	cNumbersCom	display contained transparent "\<\d\|\.\d" contains=cNumber,cFloat,cOctal
syn match	cNumber		display contained "\d\+\(u\=l\{0,2}\|ll\=u\)\>"
"hex number
syn match	cNumber		display contained "0x\x\+\(u\=l\{0,2}\|ll\=u\)\>"
" Flag the first zero of an octal number as something special
syn match	cOctal		display contained "0\o\+\(u\=l\{0,2}\|ll\=u\)\>" contains=cOctalZero
syn match	cOctalZero	display contained "\<0"
syn match	cFloat		display contained "\d\+f"
"floating point number, with dot, optional exponent
syn match	cFloat		display contained "\d\+\.\d*\(e[-+]\=\d\+\)\=[fl]\="
"floating point number, starting with a dot, optional exponent
syn match	cFloat		display contained "\.\d\+\(e[-+]\=\d\+\)\=[fl]\=\>"
"floating point number, without dot, with exponent
syn match	cFloat		display contained "\d\+e[-+]\=\d\+[fl]\=\>"
if !exists("c_no_c99")
  "hexadecimal floating point number, optional leading digits, with dot, with exponent
  syn match	cFloat		display contained "0x\x*\.\x\+p[-+]\=\d\+[fl]\=\>"
  "hexadecimal floating point number, with leading digits, optional dot, with exponent
  syn match	cFloat		display contained "0x\x\+\.\=p[-+]\=\d\+[fl]\=\>"
endif

" flag an octal number with wrong digits
syn match	cOctalError	display contained "0\o*[89]\d*"
syn case match

if exists("c_comment_strings")
  " A comment can contain cString, cCharacter and cNumber.
  " But a "*/" inside a cString in a cComment DOES end the comment!  So we
  " need to use a special type of cString: cCommentString, which also ends on
  " "*/", and sees a "*" at the start of the line as comment again.
  " Unfortunately this doesn't very well work for // type of comments :-(
  syn match	cCommentSkip	contained "^\s*\*\($\|\s\+\)"
  syn region cCommentString	contained start=+L\=\\\@<!"+ skip=+\\\\\|\\"+ end=+"+ end=+\*/+me=s-1 contains=cSpecial,cCommentSkip
  syn region cComment2String	contained start=+L\=\\\@<!"+ skip=+\\\\\|\\"+ end=+"+ end="$" contains=cSpecial
  syn region  cCommentL	start="//" skip="\\$" end="$" keepend contains=@cCommentGroup,cComment2String,cCharacter,cNumbersCom,cSpaceError,@Spell
  if exists("c_no_comment_fold")
    " Use "extend" here to have preprocessor lines not terminate halfway a
    " comment.
    syn region cComment	matchgroup=cCommentStart start="/\*" end="\*/" contains=@cCommentGroup,cCommentStartError,cCommentString,cCharacter,cNumbersCom,cSpaceError,@Spell extend
  else
    syn region cComment	matchgroup=cCommentStart start="/\*" end="\*/" contains=@cCommentGroup,cCommentStartError,cCommentString,cCharacter,cNumbersCom,cSpaceError,@Spell fold extend
  endif
else
  syn region	cCommentL	start="//" skip="\\$" end="$" keepend contains=@cCommentGroup,cSpaceError,@Spell
  if exists("c_no_comment_fold")
    syn region	cComment	matchgroup=cCommentStart start="/\*" end="\*/" contains=@cCommentGroup,cCommentStartError,cSpaceError,@Spell extend
  else
    syn region	cComment	matchgroup=cCommentStart start="/\*" end="\*/" contains=@cCommentGroup,cCommentStartError,cSpaceError,@Spell fold extend
  endif
endif
" keep a // comment separately, it terminates a preproc. conditional
syn match	cCommentError	display "\*/"
syn match	cCommentStartError display "/\*"me=e-1 contained

syn keyword	cOperator	sizeof
if exists("c_gnu")
  syn keyword	cStatement	__asm__
  syn keyword	cOperator	typeof __real__ __imag__
endif
syn keyword	cType		int long short char void
syn keyword	cType		signed unsigned float double
if !exists("c_no_ansi") || exists("c_ansi_typedefs")
  syn keyword   cType		size_t ssize_t off_t wchar_t ptrdiff_t sig_atomic_t fpos_t
  syn keyword   cType		clock_t time_t va_list jmp_buf FILE DIR div_t ldiv_t
  syn keyword   cType		mbstate_t wctrans_t wint_t wctype_t
endif
if !exists("c_no_c99") " ISO C99
  syn keyword	cType		_Bool bool _Complex complex _Imaginary imaginary
  syn keyword	cType		int8_t int16_t int32_t int64_t
  syn keyword	cType		uint8_t uint16_t uint32_t uint64_t
  syn keyword	cType		int_least8_t int_least16_t int_least32_t int_least64_t
  syn keyword	cType		uint_least8_t uint_least16_t uint_least32_t uint_least64_t
  syn keyword	cType		int_fast8_t int_fast16_t int_fast32_t int_fast64_t
  syn keyword	cType		uint_fast8_t uint_fast16_t uint_fast32_t uint_fast64_t
  syn keyword	cType		intptr_t uintptr_t
  syn keyword	cType		intmax_t uintmax_t
endif
if exists("c_gnu")
  syn keyword	cType		__label__ __complex__ __volatile__
endif

syn keyword	cStructure	struct union enum typedef
syn keyword	cStorageClass	static register auto volatile extern const
if exists("c_gnu")
  syn keyword	cStorageClass	inline __attribute__
endif
if !exists("c_no_c99")
  syn keyword	cStorageClass	inline restrict
endif
if !exists("c_no_c11")
  syn keyword	cStorageClass	_Alignas alignas
  syn keyword	cOperator	_Alignof alignof
  syn keyword	cStorageClass	_Atomic
  syn keyword	cOperator	_Generic
  syn keyword	cStorageClass	_Noreturn noreturn
  syn keyword	cOperator	_Static_assert static_assert
  syn keyword	cStorageClass	_Thread_local thread_local
  syn keyword   cType		char16_t char32_t
endif

if !exists("c_no_ansi") || exists("c_ansi_constants") || exists("c_gnu")
  if exists("c_gnu")
    syn keyword cConstant __GNUC__ __FUNCTION__ __PRETTY_FUNCTION__ __func__
  endif
  syn keyword cConstant __LINE__ __FILE__ __DATE__ __TIME__ __STDC__
  syn keyword cConstant __STDC_VERSION__
  syn keyword cConstant CHAR_BIT MB_LEN_MAX MB_CUR_MAX
  syn keyword cConstant UCHAR_MAX UINT_MAX ULONG_MAX USHRT_MAX
  syn keyword cConstant CHAR_MIN INT_MIN LONG_MIN SHRT_MIN
  syn keyword cConstant CHAR_MAX INT_MAX LONG_MAX SHRT_MAX
  syn keyword cConstant SCHAR_MIN SINT_MIN SLONG_MIN SSHRT_MIN
  syn keyword cConstant SCHAR_MAX SINT_MAX SLONG_MAX SSHRT_MAX
  if !exists("c_no_c99")
    syn keyword cConstant __func__
    syn keyword cConstant LLONG_MIN LLONG_MAX ULLONG_MAX
    syn keyword cConstant INT8_MIN INT16_MIN INT32_MIN INT64_MIN
    syn keyword cConstant INT8_MAX INT16_MAX INT32_MAX INT64_MAX
    syn keyword cConstant UINT8_MAX UINT16_MAX UINT32_MAX UINT64_MAX
    syn keyword cConstant INT_LEAST8_MIN INT_LEAST16_MIN INT_LEAST32_MIN INT_LEAST64_MIN
    syn keyword cConstant INT_LEAST8_MAX INT_LEAST16_MAX INT_LEAST32_MAX INT_LEAST64_MAX
    syn keyword cConstant UINT_LEAST8_MAX UINT_LEAST16_MAX UINT_LEAST32_MAX UINT_LEAST64_MAX
    syn keyword cConstant INT_FAST8_MIN INT_FAST16_MIN INT_FAST32_MIN INT_FAST64_MIN
    syn keyword cConstant INT_FAST8_MAX INT_FAST16_MAX INT_FAST32_MAX INT_FAST64_MAX
    syn keyword cConstant UINT_FAST8_MAX UINT_FAST16_MAX UINT_FAST32_MAX UINT_FAST64_MAX
    syn keyword cConstant INTPTR_MIN INTPTR_MAX UINTPTR_MAX
    syn keyword cConstant INTMAX_MIN INTMAX_MAX UINTMAX_MAX
    syn keyword cConstant PTRDIFF_MIN PTRDIFF_MAX SIG_ATOMIC_MIN SIG_ATOMIC_MAX
    syn keyword cConstant SIZE_MAX WCHAR_MIN WCHAR_MAX WINT_MIN WINT_MAX
  endif
  syn keyword cConstant FLT_RADIX FLT_ROUNDS
  syn keyword cConstant FLT_DIG FLT_MANT_DIG FLT_EPSILON
  syn keyword cConstant DBL_DIG DBL_MANT_DIG DBL_EPSILON
  syn keyword cConstant LDBL_DIG LDBL_MANT_DIG LDBL_EPSILON
  syn keyword cConstant FLT_MIN FLT_MAX FLT_MIN_EXP FLT_MAX_EXP
  syn keyword cConstant FLT_MIN_10_EXP FLT_MAX_10_EXP
  syn keyword cConstant DBL_MIN DBL_MAX DBL_MIN_EXP DBL_MAX_EXP
  syn keyword cConstant DBL_MIN_10_EXP DBL_MAX_10_EXP
  syn keyword cConstant LDBL_MIN LDBL_MAX LDBL_MIN_EXP LDBL_MAX_EXP
  syn keyword cConstant LDBL_MIN_10_EXP LDBL_MAX_10_EXP
  syn keyword cConstant HUGE_VAL CLOCKS_PER_SEC NULL
  syn keyword cConstant LC_ALL LC_COLLATE LC_CTYPE LC_MONETARY
  syn keyword cConstant LC_NUMERIC LC_TIME
  syn keyword cConstant SIG_DFL SIG_ERR SIG_IGN
  syn keyword cConstant SIGABRT SIGFPE SIGILL SIGHUP SIGINT SIGSEGV SIGTERM
  " Add POSIX signals as well...
  syn keyword cConstant SIGABRT SIGALRM SIGCHLD SIGCONT SIGFPE SIGHUP
  syn keyword cConstant SIGILL SIGINT SIGKILL SIGPIPE SIGQUIT SIGSEGV
  syn keyword cConstant SIGSTOP SIGTERM SIGTRAP SIGTSTP SIGTTIN SIGTTOU
  syn keyword cConstant SIGUSR1 SIGUSR2
  syn keyword cConstant _IOFBF _IOLBF _IONBF BUFSIZ EOF WEOF
  syn keyword cConstant FOPEN_MAX FILENAME_MAX L_tmpnam
  syn keyword cConstant SEEK_CUR SEEK_END SEEK_SET
  syn keyword cConstant TMP_MAX stderr stdin stdout
  syn keyword cConstant EXIT_FAILURE EXIT_SUCCESS RAND_MAX
  " POSIX 2001
  syn keyword cConstant SIGBUS SIGPOLL SIGPROF SIGSYS SIGURG
  syn keyword cConstant SIGVTALRM SIGXCPU SIGXFSZ
  " Add POSIX errors as well
  syn keyword cConstant E2BIG EACCES EAGAIN EBADF EBADMSG EBUSY
  syn keyword cConstant ECANCELED ECHILD EDEADLK EDOM EEXIST EFAULT
  syn keyword cConstant EFBIG EILSEQ EINPROGRESS EINTR EINVAL EIO EISDIR
  syn keyword cConstant EMFILE EMLINK EMSGSIZE ENAMETOOLONG ENFILE ENODEV
  syn keyword cConstant ENOENT ENOEXEC ENOLCK ENOMEM ENOSPC ENOSYS
  syn keyword cConstant ENOTDIR ENOTEMPTY ENOTSUP ENOTTY ENXIO EPERM
  syn keyword cConstant EPIPE ERANGE EROFS ESPIPE ESRCH ETIMEDOUT EXDEV
  " math.h
  syn keyword cConstant M_E M_LOG2E M_LOG10E M_LN2 M_LN10 M_PI M_PI_2 M_PI_4
  syn keyword cConstant M_1_PI M_2_PI M_2_SQRTPI M_SQRT2 M_SQRT1_2
endif
if !exists("c_no_c99") " ISO C99
  syn keyword cConstant true false
endif

" Accept %: for # (C99)
syn region	cPreCondit	start="^\s*\(%:\|#\)\s*\(if\|ifdef\|ifndef\|elif\)\>" skip="\\$" end="$" keepend contains=cComment,cCommentL,cCppString,cCharacter,cCppParen,cParenError,cNumbers,cCommentError,cSpaceError
syn match	cPreConditMatch	display "^\s*\(%:\|#\)\s*\(else\|endif\)\>"
if !exists("c_no_if0")
  syn cluster	cCppOutInGroup	contains=cCppInIf,cCppInElse,cCppInElse2,cCppOutIf,cCppOutIf2,cCppOutElse,cCppInSkip,cCppOutSkip
  syn region	cCppOutWrapper	start="^\s*\(%:\|#\)\s*if\s\+0\+\s*\($\|//\|/\*\|&\)" end=".\@=\|$" contains=cCppOutIf,cCppOutElse,@NoSpell fold
  syn region	cCppOutIf	contained start="0\+" matchgroup=cCppOutWrapper end="^\s*\(%:\|#\)\s*endif\>" contains=cCppOutIf2,cCppOutElse
  if !exists("c_no_if0_fold")
    syn region	cCppOutIf2	contained matchgroup=cCppOutWrapper start="0\+" end="^\s*\(%:\|#\)\s*\(else\>\|elif\s\+\(0\+\s*\($\|//\|/\*\|&\)\)\@!\|endif\>\)"me=s-1 contains=cSpaceError,cCppOutSkip,@Spell fold
  else
    syn region	cCppOutIf2	contained matchgroup=cCppOutWrapper start="0\+" end="^\s*\(%:\|#\)\s*\(else\>\|elif\s\+\(0\+\s*\($\|//\|/\*\|&\)\)\@!\|endif\>\)"me=s-1 contains=cSpaceError,cCppOutSkip,@Spell
  endif
  syn region	cCppOutElse	contained matchgroup=cCppOutWrapper start="^\s*\(%:\|#\)\s*\(else\|elif\)" end="^\s*\(%:\|#\)\s*endif\>"me=s-1 contains=TOP,cPreCondit
  syn region	cCppInWrapper	start="^\s*\(%:\|#\)\s*if\s\+0*[1-9]\d*\s*\($\|//\|/\*\||\)" end=".\@=\|$" contains=cCppInIf,cCppInElse fold
  syn region	cCppInIf	contained matchgroup=cCppInWrapper start="\d\+" end="^\s*\(%:\|#\)\s*endif\>" contains=TOP,cPreCondit
  if !exists("c_no_if0_fold")
    syn region	cCppInElse	contained start="^\s*\(%:\|#\)\s*\(else\>\|elif\s\+\(0*[1-9]\d*\s*\($\|//\|/\*\||\)\)\@!\)" end=".\@=\|$" containedin=cCppInIf contains=cCppInElse2 fold
  else
    syn region	cCppInElse	contained start="^\s*\(%:\|#\)\s*\(else\>\|elif\s\+\(0*[1-9]\d*\s*\($\|//\|/\*\||\)\)\@!\)" end=".\@=\|$" containedin=cCppInIf contains=cCppInElse2
  endif
  syn region	cCppInElse2	contained matchgroup=cCppInWrapper start="^\s*\(%:\|#\)\s*\(else\|elif\)\([^/]\|/[^/*]\)*" end="^\s*\(%:\|#\)\s*endif\>"me=s-1 contains=cSpaceError,cCppOutSkip,@Spell
  syn region	cCppOutSkip	contained start="^\s*\(%:\|#\)\s*\(if\>\|ifdef\>\|ifndef\>\)" skip="\\$" end="^\s*\(%:\|#\)\s*endif\>" contains=cSpaceError,cCppOutSkip
  syn region	cCppInSkip	contained matchgroup=cCppInWrapper start="^\s*\(%:\|#\)\s*\(if\s\+\(\d\+\s*\($\|//\|/\*\||\|&\)\)\@!\|ifdef\>\|ifndef\>\)" skip="\\$" end="^\s*\(%:\|#\)\s*endif\>" containedin=cCppOutElse,cCppInIf,cCppInSkip contains=TOP,cPreProc
endif
syn region	cIncluded	display contained start=+"+ skip=+\\\\\|\\"+ end=+"+
syn match	cIncluded	display contained "<[^>]*>"
syn match	cInclude	display "^\s*\(%:\|#\)\s*include\>\s*["<]" contains=cIncluded
"syn match cLineSkip	"\\$"
syn cluster	cPreProcGroup	contains=cPreCondit,cIncluded,cInclude,cDefine,cErrInParen,cErrInBracket,cUserLabel,cSpecial,cOctalZero,cCppOutWrapper,cCppInWrapper,@cCppOutInGroup,cFormat,cNumber,cFloat,cOctal,cOctalError,cNumbersCom,cString,cCommentSkip,cCommentString,cComment2String,@cCommentGroup,cCommentStartError,cParen,cBracket,cMulti,cBadBlock
syn region	cDefine		start="^\s*\(%:\|#\)\s*\(define\|undef\)\>" skip="\\$" end="$" keepend contains=ALLBUT,@cPreProcGroup,@Spell
syn region	cPreProc	start="^\s*\(%:\|#\)\s*\(pragma\>\|line\>\|warning\>\|warn\>\|error\>\)" skip="\\$" end="$" keepend contains=ALLBUT,@cPreProcGroup,@Spell

" Highlight User Labels
syn cluster	cMultiGroup	contains=cIncluded,cSpecial,cCommentSkip,cCommentString,cComment2String,@cCommentGroup,cCommentStartError,cUserCont,cUserLabel,cBitField,cOctalZero,cCppOutWrapper,cCppInWrapper,@cCppOutInGroup,cFormat,cNumber,cFloat,cOctal,cOctalError,cNumbersCom,cCppParen,cCppBracket,cCppString
if s:ft ==# 'c' || exists("cpp_no_cpp11")
  syn region	cMulti		transparent start='?' skip='::' end=':' contains=ALLBUT,@cMultiGroup,@Spell
endif
" Avoid matching foo::bar() in C++ by requiring that the next char is not ':'
syn cluster	cLabelGroup	contains=cUserLabel
syn match	cUserCont	display "^\s*\I\i*\s*:$" contains=@cLabelGroup
syn match	cUserCont	display ";\s*\I\i*\s*:$" contains=@cLabelGroup
syn match	cUserCont	display "^\s*\I\i*\s*:[^:]"me=e-1 contains=@cLabelGroup
syn match	cUserCont	display ";\s*\I\i*\s*:[^:]"me=e-1 contains=@cLabelGroup

syn match	cUserLabel	display "\I\i*" contained

" Avoid recognizing most bitfields as labels
syn match	cBitField	display "^\s*\I\i*\s*:\s*[1-9]"me=e-1 contains=cType
syn match	cBitField	display ";\s*\I\i*\s*:\s*[1-9]"me=e-1 contains=cType

if exists("c_minlines")
  let b:c_minlines = c_minlines
else
  if !exists("c_no_if0")
    let b:c_minlines = 50	" #if 0 constructs can be long
  else
    let b:c_minlines = 15	" mostly for () constructs
  endif
endif
if exists("c_curly_error")
  syn sync fromstart
else
  exec "syn sync ccomment cComment minlines=" . b:c_minlines
endif

" Define the default highlighting.
" Only used when an item doesn't have highlighting yet
hi def link cFormat		cSpecial
hi def link cCppString		cString
hi def link cCommentL		cComment
hi def link cCommentStart	cComment
hi def link cLabel		Label
hi def link cUserLabel		Label
hi def link cConditional	Conditional
hi def link cRepeat		Repeat
hi def link cCharacter		Character
hi def link cSpecialCharacter	cSpecial
hi def link cNumber		Number
hi def link cOctal		Number
hi def link cOctalZero		PreProc	 " link this to Error if you want
hi def link cFloat		Float
hi def link cOctalError		cError
hi def link cParenError		cError
hi def link cErrInParen		cError
hi def link cErrInBracket	cError
hi def link cCommentError	cError
hi def link cCommentStartError	cError
hi def link cSpaceError		cError
hi def link cSpecialError	cError
hi def link cCurlyError		cError
hi def link cOperator		Operator
hi def link cStructure		Structure
hi def link cStorageClass	StorageClass
hi def link cInclude		Include
hi def link cPreProc		PreProc
hi def link cDefine		Macro
hi def link cIncluded		cString
hi def link cError		Error
hi def link cStatement		Statement
hi def link cCppInWrapper	cCppOutWrapper
hi def link cCppOutWrapper	cPreCondit
hi def link cPreConditMatch	cPreCondit
hi def link cPreCondit		PreCondit
hi def link cType		Type
hi def link cConstant		Constant
hi def link cCommentString	cString
hi def link cComment2String	cString
hi def link cCommentSkip	cComment
hi def link cString		String
hi def link cComment		Comment
hi def link cSpecial		SpecialChar
hi def link cTodo		Todo
hi def link cBadContinuation	Error
hi def link cCppOutSkip		cCppOutIf2
hi def link cCppInElse2		cCppOutIf2
hi def link cCppOutIf2		cCppOut2  " Old syntax group for #if 0 body
hi def link cCppOut2		cCppOut  " Old syntax group for #if of #if 0
hi def link cCppOut		Comment

let b:current_syntax = "c"

unlet s:ft

let &cpo = s:cpo_save
unlet s:cpo_save
" vim: ts=8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          " Vim syntax file
" Language:	generic configure file
" Maintainer:	Bram Moolenaar <Bram@vim.org>
" Last Change:	2005 Jun 20

" Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax")
  finish
endif

syn keyword	confTodo	contained TODO FIXME XXX
" Avoid matching "text#text", used in /etc/disktab and /etc/gettytab
syn match	confComment	"^#.*" contains=confTodo
syn match	confComment	"\s#.*"ms=s+1 contains=confTodo
syn region	confString	start=+"+ skip=+\\\\\|\\"+ end=+"+ oneline
syn region	confString	start=+'+ skip=+\\\\\|\\'+ end=+'+ oneline

" Define the default highlighting.
" Only used when an item doesn't have highlighting yet
hi def link confComment	Comment
hi def link confTodo	Todo
hi def link confString	String

let b:current_syntax = "conf"

" vim: ts=8 sw=2
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        " Vim syntax file
" Language:		configure.in script: M4 with sh
" Maintainer:	Christian Hammesr <ch@lathspell.westend.com>
" Last Change:	2008 Sep 03

" Well, I actually even do not know much about m4. This explains why there
" is probably very much missing here, yet !
" But I missed a good hilighting when editing my GNU autoconf/automake
" script, so I wrote this quick and dirty patch.


" For version 5.x: Clear all syntax items
" For version 6.x: Quit when a syntax file was already loaded
if version < 600
  syntax clear
elseif exists("b:current_syntax")
  finish
endif

" define the config syntax
syn match   configdelimiter "[()\[\];,]"
syn match   configoperator  "[=|&\*\+\<\>]"
syn match   configcomment   "\(dnl.*\)\|\(#.*\)"
syn match   configfunction  "\<[A-Z_][A-Z0-9_]*\>"
syn match   confignumber    "[-+]\=\<\d\+\(\.\d*\)\=\>"
syn keyword configkeyword   if then else fi test for in do done
syn keyword configspecial   cat rm eval
syn region  configstring    start=+"+ skip=+\\"+ end=+"+
syn region  configstring    start=+'+ skip=+\\'+ end=+'+
syn region  configstring    start=+`+ skip=+\\'+ end=+`+

" Define the default highlighting.
" For version 5.7 and earlier: only when not done already
" For version 5.8 and later: only when an item doesn't have highlighting yet
if version >= 508 || !exists("did_config_syntax_inits")
  if version < 508
    let did_config_syntax_inits = 1
    command -nargs=+ HiLink hi link <args>
  else
    command -nargs=+ HiLink hi def link <args>
  endif

  HiLink configdelimiter Delimiter
  HiLink configoperator  Operator
  HiLink configcomment   Comment
  HiLink configfunction  Function
  HiLink confignumber    Number
  HiLink configkeyword   Keyword
  HiLink configspecial   Special
  HiLink configstring    String

  delcommand HiLink
endif

let b:current_syntax = "config"

" vim: ts=4
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 " Vim syntax file
" Language:         ConTeXt typesetting engine
" Maintainer:       Nikolai Weibull <now@bitwi.se>
" Latest Revision:  2006-08-10

if exists("b:current_syntax")
  finish
endif

runtime! syntax/plaintex.vim
unlet b:current_syntax

let s:cpo_save = &cpo
set cpo&vim

if !exists('g:context_include')
  let g:context_include = ['mp', 'javascript', 'xml']
endif

syn spell   toplevel

syn match   contextBlockDelim display '\\\%(start\|stop\)\a\+'
                              \ contains=@NoSpell

syn region  contextEscaped    display matchgroup=contextPreProc
                              \ start='\\type\z(\A\)' end='\z1'
syn region  contextEscaped    display matchgroup=contextPreProc
                              \ start='\\type\={' end='}'
syn region  contextEscaped    display matchgroup=contextPreProc
                              \ start='\\type\=<<' end='>>'
syn region  contextEscaped    matchgroup=contextPreProc
                              \ start='\\start\z(\a*\%(typing\|typen\)\)'
                              \ end='\\stop\z1' contains=plaintexComment keepend
syn region  contextEscaped    display matchgroup=contextPreProc
                              \ start='\\\h\+Type{' end='}'
syn region  contextEscaped    display matchgroup=contextPreProc
                              \ start='\\Typed\h\+{' end='}'

syn match   contextBuiltin    display contains=@NoSpell
      \ '\\\%(unprotect\|protect\|unexpanded\)' 

syn match   contextPreProc    '^\s*\\\%(start\|stop\)\=\%(component\|environment\|project\|product\).*$'
                              \ contains=@NoSpell

if index(g:context_include, 'mp') != -1
  syn include @mpTop          syntax/mp.vim
  unlet b:current_syntax

  syn region  contextMPGraphic  transparent matchgroup=contextBlockDelim
                                \ start='\\start\z(\a*MPgraphic\|MP\%(page\|inclusions\|run\)\).*'
                                \ end='\\stop\z1'
                                \ contains=@mpTop
endif

" TODO: also need to implement this for \\typeC or something along those
" lines.
function! s:include_syntax(name, group)
  if index(g:context_include, a:name) != -1
    execute 'syn include @' . a:name . 'Top' 'syntax/' . a:name . '.vim'
    unlet b:current_syntax
    execute 'syn region context' . a:group . 'Code'
          \ 'transparent matchgroup=contextBlockDelim'
          \ 'start=+\\start' . a:group . '+ end=+\\stop' . a:group . '+'
          \ 'contains=@' . a:name . 'Top'
  endif
endfunction

call s:include_syntax('c', 'C')
call s:include_syntax('ruby', 'Ruby')
call s:include_syntax('javascript', 'JS')
call s:include_syntax('xml', 'XML')

syn match   contextSectioning '\\chapter\>' contains=@NoSpell
syn match   contextSectioning '\\\%(sub\)*section\>' contains=@NoSpell

syn match   contextSpecial    '\\crlf\>\|\\par\>\|-\{2,3}\||[<>/]\=|'
                              \ contains=@NoSpell
syn match   contextSpecial    /\\[`'"]/
syn match   contextSpecial    +\\char\%(\d\{1,3}\|'\o\{1,3}\|"\x\{1,2}\)\>+
                              \ contains=@NoSpell
syn match   contextSpecial    '\^\^.'
syn match   contextSpecial    '`\%(\\.\|\^\^.\|.\)'

syn match   contextStyle      '\\\%(em\|ss\|hw\|cg\|mf\)\>'
                              \ contains=@NoSpell
syn match   contextFont       '\\\%(CAP\|Cap\|cap\|Caps\|kap\|nocap\)\>'
                              \ contains=@NoSpell
syn match   contextFont       '\\\%(Word\|WORD\|Words\|WORDS\)\>'
                              \ contains=@NoSpell
syn match   contextFont       '\\\%(vi\{1,3}\|ix\|xi\{0,2}\)\>'
                              \ contains=@NoSpell
syn match   contextFont       '\\\%(tf\|b[si]\|s[cl]\|os\)\%(xx\|[xabcd]\)\=\>'
                              \ contains=@NoSpell

hi def link contextBlockDelim Keyword
hi def link contextBuiltin    Keyword
hi def link contextDelimiter  Delimiter
hi def link contextPreProc    PreProc
hi def link contextSectioning PreProc
hi def link contextSpecial    Special
hi def link contextType       Type
hi def link contextStyle      contextType
hi def link contextFont       contextType

let b:current_syntax = "context"

let &cpo = s:cpo_save
unlet s:cpo_save
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                " Vim syntax file
" Language:	C++
" Current Maintainer:	vim-jp (https://github.com/vim-jp/cpp-vim)
" Previous Maintainer:	Ken Shan <ccshan@post.harvard.edu>
" Last Change:	2014 May 14

" For version 5.x: Clear all syntax items
" For version 6.x: Quit when a syntax file was already loaded
if version < 600
  syntax clear
elseif exists("b:current_syntax")
  finish
endif

" Read the C syntax to start with
if version < 600
  so <sfile>:p:h/c.vim
else
  runtime! syntax/c.vim
  unlet b:current_syntax
endif

" C++ extensions
syn keyword cppStatement	new delete this friend using
syn keyword cppAccess		public protected private
syn keyword cppType		inline virtual explicit export bool wchar_t
syn keyword cppExceptions	throw try catch
syn keyword cppOperator		operator typeid
syn keyword cppOperator		and bitor or xor compl bitand and_eq or_eq xor_eq not not_eq
syn match cppCast		"\<\(const\|static\|dynamic\|reinterpret\)_cast\s*<"me=e-1
syn match cppCast		"\<\(const\|static\|dynamic\|reinterpret\)_cast\s*$"
syn keyword cppStorageClass	mutable
syn keyword cppStructure	class typename template namespace
syn keyword cppBoolean		true false

" C++ 11 extensions
if !exists("cpp_no_cpp11")
  syn keyword cppType		override final
  syn keyword cppExceptions	noexcept
  syn keyword cppStorageClass	constexpr decltype
  syn keyword cppConstant	nullptr
  syn region cppRawString       matchgroup=cppRawDelimiter start=+\%(u8\|[uLU]\)\=R"\z([[:alnum:]_{}[\]#<>%:;.?*\+\-/\^&|~!=,"']\{,16}\)(+ end=+)\z1"+ contains=@Spell
endif

" The minimum and maximum operators in GNU C++
syn match cppMinMax "[<>]?"

" Default highlighting
if version >= 508 || !exists("did_cpp_syntax_inits")
  if version < 508
    let did_cpp_syntax_inits = 1
    command -nargs=+ HiLink hi link <args>
  else
    command -nargs=+ HiLink hi def link <args>
  endif
  HiLink cppAccess		cppStatement
  HiLink cppCast		cppStatement
  HiLink cppExceptions		Exception
  HiLink cppOperator		Operator
  HiLink cppStatement		Statement
  HiLink cppType		Type
  HiLink cppStorageClass	StorageClass
  HiLink cppStructure		Structure
  HiLink cppBoolean		Boolean
  HiLink cppConstant		Constant
  HiLink cppRawDelimiter	Delimiter
  HiLink cppRawString		String
  delcommand HiLink
endif

let b:current_syntax = "cpp"

" vim: ts=8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 " Vim syntax file
" Language:     Cascading Style Sheets
" Previous Contributor List:
"               Claudio Fleiner <claudio@fleiner.com> (Maintainer)
"               Yeti            (Add full CSS2, HTML4 support)
"               Nikolai Weibull (Add CSS2 support)
" Maintainer:   Jules Wang      <w.jq0722@gmail.com>
" URL:          https://github.com/JulesWang/css.vim
" Last Change:  2013 Nov.27

" For version 5.x: Clear all syntax items
" For version 6.x: Quit when a syntax file was already loaded
if !exists("main_syntax")
  if version < 600
    syntax clear
  elseif exists("b:current_syntax")
    finish
  endif
  let main_syntax = 'css'
elseif exists("b:current_syntax") && b:current_syntax == "css"
  finish
endif

let s:cpo_save = &cpo
set cpo&vim

syn case ignore

" All HTML4 tags
syn keyword cssTagName abbr acronym address applet area a b base
syn keyword cssTagName basefont bdo big blockquote body br button
syn keyword cssTagName caption center cite code col colgroup dd del
syn keyword cssTagName dfn dir div dl dt em fieldset font form frame
syn keyword cssTagName frameset h1 h2 h3 h4 h5 h6 head hr html img i
syn keyword cssTagName iframe img input ins isindex kbd label legend li
syn keyword cssTagName link map menu meta noframes noscript ol optgroup
syn keyword cssTagName option p param pre q s samp script select small
syn keyword cssTagName span strike strong style sub sup table tbody td
syn keyword cssTagName textarea tfoot th thead title tr tt ul u var
syn keyword cssTagName object svg

" 34 HTML5 tags
syn keyword cssTagName article aside audio bdi canvas command data
syn keyword cssTagName datalist details dialog embed figcaption figure footer
syn keyword cssTagName header hgroup keygen main mark menuitem meter nav
syn keyword cssTagName output progress rt rp ruby section
syn keyword cssTagName source summary time track video wbr

" Tags not supported in HTML5
syn keyword cssDeprecated acronym applet basefont big center dir
syn keyword cssDeprecated font frame frameset noframes strike tt

syn match cssTagName "\*"

" selectors
syn match cssSelectorOp "[,>+~]"
syn match cssSelectorOp2 "[~|^$*]\?=" contained
syn region cssAttributeSelector matchgroup=cssSelectorOp start="\[" end="]" contains=cssUnicodeEscape,cssSelectorOp2,cssStringQ,cssStringQQ

" .class and #id
syn match cssClassName "\.[A-Za-z][A-Za-z0-9_-]\+" contains=cssClassNameDot
syn match cssClassNameDot contained '\.'

try
syn match cssIdentifier "#[A-Za-z-_@][A-Za-z-0-9_@-]*"
catch /^.*/
syn match cssIdentifier "#[A-Za-z_@][A-Za-z0-9_@-]*"
endtry

" digits
syn match cssValueInteger contained "[-+]\=\d\+" contains=cssUnitDecorators
syn match cssValueNumber contained "[-+]\=\d\+\(\.\d*\)\=" contains=cssUnitDecorators
syn match cssValueLength contained "[-+]\=\d\+\(\.\d*\)\=\(%\|mm\|cm\|in\|pt\|pc\|em\|ex\|px\|rem\|dpi\|dppx\|dpcm\)" contains=cssUnitDecorators
syn match cssValueAngle contained "[-+]\=\d\+\(\.\d*\)\=\(deg\|grad\|rad\)" contains=cssUnitDecorators
syn match cssValueTime contained "+\=\d\+\(\.\d*\)\=\(ms\|s\)" contains=cssUnitDecorators
syn match cssValueFrequency contained "+\=\d\+\(\.\d*\)\=\(Hz\|kHz\)" contains=cssUnitDecorators


syn match cssIncludeKeyword /@\(-[a-z]+-\)\=\(media\|keyframes\|import\|charset\|namespace\|page\)/ contained
" @media
syn region cssInclude start=/@media\>/ end=/\ze{/ skipwhite skipnl contains=cssMediaProp,cssValueLength,cssMediaKeyword,cssValueInteger,cssMediaAttr,cssVendor,cssMediaType,cssIncludeKeyword,cssMediaComma,cssComment nextgroup=cssMediaBlock
syn keyword cssMediaType contained screen print aural braille embossed handheld projection tty tv speech all contained skipwhite skipnl
syn keyword cssMediaKeyword only not and contained
syn region cssMediaBlock transparent matchgroup=cssBraces start='{' end='}' contains=css.*Attr,css.*Prop,cssComment,cssValue.*,cssColor,cssURL,cssImportant,cssError,cssStringQ,cssStringQQ,cssFunction,cssUnicodeEscape,cssVendor,cssDefinition,cssTagName,cssClassName,cssIdentifier,cssPseudoClass,cssSelectorOp,cssSelectorOp2,cssAttributeSelector fold
syn match cssMediaComma "," skipwhite skipnl contained

" Reference: http://www.w3.org/TR/css3-mediaqueries/
syn keyword cssMediaProp contained width height orientation scan grid
syn match cssMediaProp contained /\(\(device\)-\)\=aspect-ratio/
syn match cssMediaProp contained /\(\(max\|min\)-\)\=device-pixel-ratio/
syn match cssMediaProp contained /\(\(max\|min\)-\)\=device-\(height\|width\)/
syn match cssMediaProp contained /\(\(max\|min\)-\)\=\(height\|width\|resolution\|monochrome\|color\(-index\)\=\)/
syn keyword cssMediaAttr contained portrait landscape progressive interlace

" @page
" http://www.w3.org/TR/css3-page/
syn match cssPage "@page\>[^{]*{\@=" contains=cssPagePseudo,cssIncludeKeyword nextgroup=cssPageWrap transparent skipwhite skipnl
syn match cssPagePseudo /:\(left\|right\|first\|blank\)/ contained skipwhite skipnl
syn region cssPageWrap contained transparent matchgroup=cssBraces start="{" end="}" contains=cssPageMargin,cssPageProp,cssAttrRegion,css.*Prop,cssComment,cssValue.*,cssColor,cssURL,cssImportant,cssError,cssStringQ,cssStringQQ,cssFunction,cssUnicodeEscape,cssVendor,cssDefinition,cssHacks
syn match cssPageMargin /@\(\(top\|left\|right\|bottom\)-\(left\|center\|right\|middle\|bottom\)\)\(-corner\)\=/ contained nextgroup=cssDefinition skipwhite skipnl
syn keyword cssPageProp contained content size
" http://www.w3.org/TR/CSS2/page.html#break-inside
syn keyword cssPageProp contained orphans widows

" @keyframe
" http://www.w3.org/TR/css3-animations/#keyframes
syn match cssKeyFrame "@\(-[a-z]+-\)\=keyframes\>[^{]*{\@=" nextgroup=cssKeyFrameWrap contains=cssVendor,cssIncludeKeyword skipwhite skipnl transparent
syn region cssKeyFrameWrap contained transparent matchgroup=cssBraces start="{" end="}" contains=cssKeyFrameSelector
syn match cssKeyFrameSelector /\(\d*%\|from\|to\)\=/  contained skipwhite skipnl nextgroup=cssDefinition

" @import
syn region cssInclude start=/@import\>/    end=/\ze;/ transparent contains=cssStringQ,cssStringQQ,cssUnicodeEscape,cssComment,cssIncludeKeyword,cssURL,cssMediaProp,cssValueLength,cssMediaKeyword,cssValueInteger,cssMediaAttr,cssVendor,cssMediaType
syn region cssInclude start=/@charset\>/   end=/\ze;/ transparent contains=cssStringQ,cssStringQQ,cssUnicodeEscape,cssComment,cssIncludeKeyword
syn region cssInclude start=/@namespace\>/ end=/\ze;/ transparent contains=cssStringQ,cssStringQQ,cssUnicodeEscape,cssComment,cssIncludeKeyword

" @font-face
" http://www.w3.org/TR/css3-fonts/#at-font-face-rule
syn match cssFontDescriptor "@font-face\>" nextgroup=cssFontDescriptorBlock skipwhite skipnl
syn region cssFontDescriptorBlock contained transparent matchgroup=cssBraces start="{" end="}" contains=cssComment,cssError,cssUnicodeEscape,cssFontProp,cssFontAttr,cssCommonAttr,cssStringQ,cssStringQQ,cssFontDescriptorProp,cssValue.*,cssFontDescriptorFunction,cssUnicodeRange,cssFontDescriptorAttr
"syn match cssFontDescriptorProp contained "\<\(unicode-range\|unit-per-em\|panose-1\|cap-height\|x-height\|definition-src\)\>"
"syn keyword cssFontDescriptorProp contained src stemv stemh slope ascent descent widths bbox baseline centerline mathline topline
syn keyword cssFontDescriptorProp contained src
syn match cssFontDescriptorProp contained "\<unicode-range\>"
syn keyword cssFontDescriptorAttr contained all
syn region cssFontDescriptorFunction contained matchgroup=cssFunctionName start="\<\(uri\|url\|local\|format\)\s*(" end=")" contains=cssStringQ,cssStringQQ oneline keepend
syn match cssUnicodeRange contained "U+[0-9A-Fa-f?]\+"
syn match cssUnicodeRange contained "U+\x\+-\x\+"

" The 16 basic color names
syn keyword cssColor contained aqua black blue fuchsia gray green lime maroon navy olive purple red silver teal yellow

" 130 more color names
syn keyword cssColor contained aliceblue antiquewhite aquamarine azure
syn keyword cssColor contained beige bisque blanchedalmond blueviolet brown burlywood
syn keyword cssColor contained cadetblue chartreuse chocolate coral cornflowerblue cornsilk crimson cyan
syn match cssColor contained /dark\(blue\|cyan\|goldenrod\|gray\|green\|grey\|khaki\)/
syn match cssColor contained /dark\(magenta\|olivegreen\|orange\|orchid\|red\|salmon\|seagreen\)/
syn match cssColor contained /darkslate\(blue\|gray\|grey\)/
syn match cssColor contained /dark\(turquoise\|violet\)/
syn keyword cssColor contained deeppink deepskyblue dimgray dimgrey dodgerblue firebrick
syn keyword cssColor contained floralwhite forestgreen gainsboro ghostwhite gold
syn keyword cssColor contained goldenrod greenyellow grey honeydew hotpink
syn keyword cssColor contained indianred indigo ivory khaki lavender lavenderblush lawngreen
syn keyword cssColor contained lemonchiffon limegreen linen magenta
syn match cssColor contained /light\(blue\|coral\|cyan\|goldenrodyellow\|gray\|green\)/
syn match cssColor contained /light\(grey\|pink\|salmon\|seagreen\|skyblue\|yellow\)/
syn match cssColor contained /light\(slategray\|slategrey\|steelblue\)/
syn match cssColor contained /medium\(aquamarine\|blue\|orchid\|purple\|seagreen\)/
syn match cssColor contained /medium\(slateblue\|springgreen\|turquoise\|violetred\)/
syn keyword cssColor contained midnightblue mintcream mistyrose moccasin navajowhite
syn keyword cssColor contained oldlace olivedrab orange orangered orchid
syn match cssColor contained /pale\(goldenrod\|green\|turquoise\|violetred\)/
syn keyword cssColor contained papayawhip peachpuff peru pink plum powderblue
syn keyword cssColor contained rosybrown royalblue saddlebrown salmon sandybrown
syn keyword cssColor contained seagreen seashell sienna skyblue slateblue
syn keyword cssColor contained slategray slategrey snow springgreen steelblue tan
syn keyword cssColor contained thistle tomato turquoise violet wheat
syn keyword cssColor contained whitesmoke yellowgreen

" FIXME: These are actually case-insensitive too, but (a) specs recommend using
" mixed-case (b) it's hard to highlight the word `Background' correctly in
" all situations
syn case match
syn keyword cssColor contained ActiveBorder ActiveCaption AppWorkspace ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText Background
syn case ignore

syn match cssImportant contained "!\s*important\>"

syn match cssColor contained "\<transparent\>"
syn match cssColor contained "\<white\>"
syn match cssColor contained "#[0-9A-Fa-f]\{3\}\>" contains=cssUnitDecorators
syn match cssColor contained "#[0-9A-Fa-f]\{6\}\>" contains=cssUnitDecorators

syn region cssURL contained matchgroup=cssFunctionName start="\<url\s*(" end=")" oneline extend
syn region cssFunction contained matchgroup=cssFunctionName start="\<\(rgb\|clip\|attr\|counter\|rect\|cubic-bezier\|steps\)\s*(" end=")" oneline  contains=cssValueInteger,cssValueNumber,cssValueLength,cssFunctionComma
syn region cssFunction contained matchgroup=cssFunctionName start="\<\(rgba\|hsl\|hsla\|color-stop\|from\|to\)\s*(" end=")" oneline  contains=cssColor,cssValueInteger,cssValueNumber,cssValueLength,cssFunctionComma,cssFunction
syn region cssFunction contained matchgroup=cssFunctionName start="\<\(linear-\|radial-\)\=\gradient\s*(" end=")" oneline  contains=cssColor,cssValueInteger,cssValueNumber,cssValueLength,cssFunction,cssGradientAttr,cssFunctionComma
syn region cssFunction contained matchgroup=cssFunctionName start="\<\(matrix\(3d\)\=\|scale\(3d\|X\|Y\|Z\)\=\|translate\(3d\|X\|Y\|Z\)\=\|skew\(X\|Y\)\=\|rotate\(3d\|X\|Y\|Z\)\=\|perspective\)\s*(" end=")" oneline contains=cssValueInteger,cssValueNumber,cssValueLength,cssValueAngle,cssFunctionComma
syn keyword cssGradientAttr contained top bottom left right cover center middle ellipse at
syn match cssFunctionComma contained ","

" Common Prop and Attr
syn keyword cssCommonAttr contained auto none inherit all default normal
syn keyword cssCommonAttr contained top bottom center stretch hidden visible
"------------------------------------------------
" CSS Animations
" http://www.w3.org/TR/css3-animations/
syn match cssAnimationProp contained "\<animation\(-\(delay\|direction\|duration\|fill-mode\|name\|play-state\|timing-function\|iteration-count\)\)\=\>"

" animation-direction attributes
syn keyword cssAnimationAttr contained alternate reverse
syn match cssAnimationAttr contained "\<alternate-reverse\>"

" animation-fill-mode attributes
syn keyword cssAnimationAttr contained forwards backwards both

" animation-play-state attributes
syn keyword cssAnimationAttr contained running paused
"------------------------------------------------
"  CSS Backgrounds and Borders Module Level 3
"  http://www.w3.org/TR/css3-background/
syn match cssBackgroundProp contained "\<background\(-\(attachment\|clip\|color\|image\|origin\|position\|repeat\|size\)\)\=\>"
" background-attachment attributes
syn keyword cssBackgroundAttr contained scroll fixed local

" background-position attributes
syn keyword cssBackgroundAttr contained left center right top bottom

" background-repeat attributes
syn match cssBackgroundAttr contained "\<no-repeat\>"
syn match cssBackgroundAttr contained "\<repeat\(-[xy]\)\=\>"
syn keyword cssBackgroundAttr contained space round

" background-size attributes
syn keyword cssBackgroundAttr contained cover contain

syn match cssBorderProp contained "\<border\(-\(top\|right\|bottom\|left\)\)\=\(-\(width\|color\|style\)\)\=\>"
syn match cssBorderProp contained "\<border\(-\(top\|bottom\)-\(left\|right\)\)\=-radius\>"
syn match cssBorderProp contained "\<border-image\(-\(outset\|repeat\|slice\|source\|width\)\)\=\>"
syn match cssBorderProp contained "\<box-decoration-break\>"
syn match cssBorderProp contained "\<box-shadow\>"

" border-image attributes
syn keyword cssBorderAttr contained stretch round space fill

" border-style attributes
syn keyword cssBorderAttr contained dotted dashed solid double groove ridge inset outset

" border-width attributes
syn keyword cssBorderAttr contained thin thick medium

" box-decoration-break attributes
syn keyword cssBorderAttr contained clone slice
"------------------------------------------------

syn match cssBoxProp contained "\<padding\(-\(top\|right\|bottom\|left\)\)\=\>"
syn match cssBoxProp contained "\<margin\(-\(top\|right\|bottom\|left\)\)\=\>"
syn match cssBoxProp contained "\<overflow\(-\(x\|y\|style\)\)\=\>"
syn match cssBoxProp contained "\<rotation\(-point\)\=\>"
syn keyword cssBoxAttr contained visible hidden scroll auto
syn match cssBoxAttr contained "\<no-\(display\|content\)\>"

syn keyword cssColorProp contained opacity
syn match cssColorProp contained "\<color-profile\>"
syn match cssColorProp contained "\<rendering-intent\>"


syn match cssDimensionProp contained "\<\(min\|max\)-\(width\|height\)\>"
syn keyword cssDimensionProp contained height
syn keyword cssDimensionProp contained width

" shadow and sizing are in other property groups
syn match cssFlexibleBoxProp contained "\<box-\(align\|direction\|flex\|ordinal-group\|orient\|pack\|shadow\|sizing\)\>"
syn keyword cssFlexibleBoxAttr contained start end baseline
syn keyword cssFlexibleBoxAttr contained reverse
syn keyword cssFlexibleBoxAttr contained single mulitple
syn keyword cssFlexibleBoxAttr contained horizontal
syn match cssFlexibleBoxAttr contained "\<vertical\(-align\)\@!\>" "escape vertical-align
syn match cssFlexibleBoxAttr contained "\<\(inline\|block\)-axis\>"

" CSS Fonts Module Level 3
" http://www.w3.org/TR/css-fonts-3/
syn match cssFontProp contained "\<font\(-\(family\|\|feature-settings\|kerning\|language-override\|size\(-adjust\)\=\|stretch\|style\|synthesis\|variant\(-\(alternates\|caps\|east-asian\|ligatures\|numeric\|position\)\)\=\|weight\)\)\=\>"
" font attributes
syn keyword cssFontAttr contained icon menu caption
syn match cssFontAttr contained "\<small-\(caps\|caption\)\>"
syn match cssFontAttr contained "\<message-box\>"
syn match cssFontAttr contained "\<status-bar\>"
syn keyword cssFontAttr contained larger smaller
syn match cssFontAttr contained "\<\(x\{1,2\}-\)\=\(large\|small\)\>"

" font-family attributes
syn match cssFontAttr contained "\<\(sans-\)\=serif\>"
syn keyword cssFontAttr contained Antiqua Arial Black Book Charcoal Comic Courier Dingbats Gadget Geneva Georgia Grande Helvetica Impact Linotype Lucida MS Monaco Neue New Palatino Roboto Roman Symbol Tahoma Times Trebuchet Unicode Verdana Webdings Wingdings York Zapf
syn keyword cssFontAttr contained cursive fantasy monospace

" font-feature-settings attributes
syn keyword cssFontAttr contained on off

" font-stretch attributes
syn match cssFontAttr contained "\<\(\(ultra\|extra\|semi\)-\)\=\(condensed\|expanded\)\>"

" font-style attributes
syn keyword cssFontAttr contained italic oblique

" font-variant-caps attributes
syn match cssFontAttr contained "\<\(all-\)\=\(small-\|petite-\|titling-\)caps\>"
syn keyword cssFontAttr contained unicase

" font-weight attributes
syn keyword cssFontAttr contained bold bolder lighter
"------------------------------------------------

" Webkit specific property/attributes
syn match cssFontProp contained "\<font-smooth\>"
syn match cssFontAttr contained "\<\(subpixel-\)\=\antialiased\>"


" CSS Multi-column Layout Module
" http://www.w3.org/TR/css3-multicol/
syn match cssMultiColumnProp contained "\<break-\(after\|before\|inside\)\>"
syn match cssMultiColumnProp contained "\<column-\(count\|fill\|gap\|rule\(-\(color\|style\|width\)\)\=\|span\|width\)\>"
syn keyword cssMultiColumnProp contained columns
syn keyword cssMultiColumnAttr contained balance medium
syn keyword cssMultiColumnAttr contained always avoid left right page column
syn match cssMultiColumnAttr contained "\<avoid-\(page\|column\)\>"

" http://www.w3.org/TR/css3-break/#page-break
syn match cssMultiColumnProp contained "\<page\(-break-\(before\|after\|inside\)\)\=\>"

" TODO find following items in w3c docs.
syn keyword cssGeneratedContentProp contained quotes crop
syn match cssGeneratedContentProp contained "\<counter-\(reset\|increment\)\>"
syn match cssGeneratedContentProp contained "\<move-to\>"
syn match cssGeneratedContentProp contained "\<page-policy\>"
syn match cssGeneratedContentAttr contained "\<\(no-\)\=\(open\|close\)-quote\>"

syn match cssGridProp contained "\<grid-\(columns\|rows\)\>"

syn match cssHyerlinkProp contained "\<target\(-\(name\|new\|position\)\)\=\>"

syn match cssListProp contained "\<list-style\(-\(type\|position\|image\)\)\=\>"
syn match cssListAttr contained "\<\(lower\|upper\)-\(roman\|alpha\|greek\|latin\)\>"
syn match cssListAttr contained "\<\(hiragana\|katakana\)\(-iroha\)\=\>"
syn match cssListAttr contained "\<\(decimal\(-leading-zero\)\=\|cjk-ideographic\)\>"
syn keyword cssListAttr contained disc circle square hebrew armenian georgian
syn keyword cssListAttr contained inside outside

syn keyword cssPositioningProp contained bottom clear clip display float left
syn keyword cssPositioningProp contained position right top visibility
syn match cssPositioningProp contained "\<z-index\>"
syn keyword cssPositioningAttr contained block compact
syn match cssPositioningAttr contained "\<table\(-\(row-group\|\(header\|footer\)-group\|row\|column\(-group\)\=\|cell\|caption\)\)\=\>"
syn keyword cssPositioningAttr contained left right both
syn match cssPositioningAttr contained "\<list-item\>"
syn match cssPositioningAttr contained "\<inline\(-\(block\|box\|table\)\)\=\>"
syn keyword cssPositioningAttr contained static relative absolute fixed

syn keyword cssPrintAttr contained landscape portrait crop cross always avoid

syn match cssTableProp contained "\<\(caption-side\|table-layout\|border-collapse\|border-spacing\|empty-cells\)\>"
syn keyword cssTableAttr contained fixed collapse separate show hide once always


syn keyword cssTextProp contained color direction
syn match cssTextProp "\<\(\(word\|letter\)-spacing\|text\(-\(decoration\|transform\|align\|index\|shadow\)\)\=\|vertical-align\|unicode-bidi\|line-height\)\>"
syn match cssTextProp contained "\<text-\(justify\|outline\|warp\|align-last\|size-adjust\|rendering\|stroke\|indent\)\>"
syn match cssTextProp contained "\<word-\(break\|\wrap\)\>"
syn match cssTextProp contained "\<white-space\>"
syn match cssTextProp contained "\<hanging-punctuation\>"
syn match cssTextProp contained "\<punctuation-trim\>"
syn match cssTextAttr contained "\<line-through\>"
syn match cssTextAttr contained "\<\(text-\)\=\(top\|bottom\)\>"
syn keyword cssTextAttr contained ltr rtl embed nowrap
syn keyword cssTextAttr contained underline overline blink sub super middle
syn keyword cssTextAttr contained capitalize uppercase lowercase
syn keyword cssTextAttr contained justify baseline sub super
syn keyword cssTextAttr contained optimizeLegibility optimizeSpeed
syn match cssTextAttr contained "\<pre\(-\(line\|wrap\)\)\=\>"
syn match cssTextAttr contained "\<\(allow\|force\)-end\>"
syn keyword cssTextAttr contained start end adjacent
syn match cssTextAttr contained "\<inter-\(word\|ideographic\|cluster\)\>"
syn keyword cssTextAttr contained distribute kashida first last
syn keyword cssTextAttr contained clip ellipsis unrestricted suppress
syn match cssTextAttr contained "\<break-all\>"
syn match cssTextAttr contained "\<break-word\>"
syn keyword cssTextAttr contained hyphenate
syn match cssTextAttr contained "\<bidi-override\>"

syn match cssTransformProp contained "\<transform\(-\(origin\|style\)\)\=\>"
syn match cssTransformProp contained "\<perspective\(-origin\)\=\>"
syn match cssTransformProp contained "\<backface-visibility\>"

" CSS Transitions
" http://www.w3.org/TR/css3-transitions/
syn match cssTransitionProp contained "\<transition\(-\(delay\|duration\|property\|timing-function\)\)\=\>"

" transition-time-function attributes
syn match cssTransitionAttr contained "\<linear\(-gradient\)\@!\>"
syn match cssTransitionAttr contained "\<ease\(-\(in-out\|out\|in\)\)\=\>"
syn match cssTransitionAttr contained "\<step\(-start\|-end\)\=\>"
"------------------------------------------------
" CSS Basic User Interface Module Level 3 (CSS3 UI)
" http://www.w3.org/TR/css3-ui/
syn match cssUIProp contained "\<box-sizing\>"
syn match cssUIAttr contained "\<\(content\|padding\|border\)\(-box\)\=\>"

syn keyword cssUIProp contained cursor
syn match cssUIAttr contained "\<\(\([ns]\=[ew]\=\)\|col\|row\|nesw\|nwse\)-resize\>"
syn keyword cssUIAttr contained crosshair help move pointer alias copy
syn keyword cssUIAttr contained progress wait text cell move
syn match cssUIAttr contained "\<context-menu\>"
syn match cssUIAttr contained "\<no-drop\>"
syn match cssUIAttr contained "\<not-allowed\>"
syn match cssUIAttr contained "\<all-scroll\>"
syn match cssUIAttr contained "\<\(vertical-\)\=text\>"
syn match cssUIAttr contained "\<zoom\(-in\|-out\)\=\>"

syn match cssUIProp contained "\<ime-mode\>"
syn keyword cssUIAttr contained active inactive disabled

syn match cssUIProp contained "\<nav-\(down\|index\|left\|right\|up\)\=\>"
syn match cssUIProp contained "\<outline\(-\(width\|style\|color\|offset\)\)\=\>"
syn keyword cssUIAttr contained invert

syn keyword cssUIProp contained icon resize
syn keyword cssUIAttr contained both horizontal vertical

syn match cssUIProp contained "\<text-overflow\>"
syn keyword cssUIAttr contained clip ellipsis

" Already highlighted Props: font content
"------------------------------------------------
" Webkit/iOS specific attributes
syn match cssUIAttr contained '\(preserve-3d\)'
" IE specific attributes
syn match cssIEUIAttr contained '\(bicubic\)'

" Webkit/iOS specific properties
syn match cssUIProp contained '\(tap-highlight-color\|user-select\|touch-callout\)'
" IE specific properties
syn match cssIEUIProp contained '\(interpolation-mode\|zoom\|filter\)'

" Webkit/Firebox specific properties/attributes
syn keyword cssUIProp contained appearance
syn keyword cssUIAttr contained window button field icon document menu


syn match cssAuralProp contained "\<\(pause\|cue\)\(-\(before\|after\)\)\=\>"
syn match cssAuralProp contained "\<\(play-during\|speech-rate\|voice-family\|pitch\(-range\)\=\|speak\(-\(punctuation\|numeral\|header\)\)\=\)\>"
syn keyword cssAuralProp contained volume during azimuth elevation stress richness
syn match cssAuralAttr contained "\<\(x-\)\=\(soft\|loud\)\>"
syn keyword cssAuralAttr contained silent
syn match cssAuralAttr contained "\<spell-out\>"
syn keyword cssAuralAttr contained non mix
syn match cssAuralAttr contained "\<\(left\|right\)-side\>"
syn match cssAuralAttr contained "\<\(far\|center\)-\(left\|center\|right\)\>"
syn keyword cssAuralAttr contained leftwards rightwards behind
syn keyword cssAuralAttr contained below level above lower higher
syn match cssAuralAttr contained "\<\(x-\)\=\(slow\|fast\|low\|high\)\>"
syn keyword cssAuralAttr contained faster slower
syn keyword cssAuralAttr contained male female child code digits continuous

" mobile text
syn match cssMobileTextProp contained "\<text-size-adjust\>"



syn match cssBraces contained "[{}]"
syn match cssError contained "{@<>"
syn region cssDefinition transparent matchgroup=cssBraces start='{' end='}' contains=cssAttrRegion,css.*Prop,cssComment,cssValue.*,cssColor,cssURL,cssImportant,cssError,cssStringQ,cssStringQQ,cssFunction,cssUnicodeEscape,cssVendor,cssDefinition,cssHacks keepend fold
syn match cssBraceError "}"
syn match cssAttrComma ","

" Pseudo class
" http://www.w3.org/TR/css3-selectors/
syn match cssPseudoClass ":[A-Za-z0-9_-]*" contains=cssNoise,cssPseudoClassId,cssUnicodeEscape,cssVendor,cssPseudoClassFn
syn keyword cssPseudoClassId contained link visited active hover before after left right
syn keyword cssPseudoClassId contained root empty target enable disabled checked invalid
syn match cssPseudoClassId contained "\<first-\(line\|letter\)\>"
syn match cssPseudoClassId contained "\<\(first\|last\|only\)-\(of-type\|child\)\>"
syn region cssPseudoClassFn contained matchgroup=cssFunctionName start="\<\(not\|lang\|\(nth\|nth-last\)-\(of-type\|child\)\)(" end=")"
" ------------------------------------
" Vendor specific properties
syn match cssPseudoClassId contained  "\<selection\>"
syn match cssPseudoClassId contained  "\<focus\(-inner\)\=\>"
syn match cssPseudoClassId contained  "\<\(input-\)\=placeholder\>"


" Comment
syn region cssComment start="/\*" end="\*/" contains=@Spell fold

syn match cssUnicodeEscape "\\\x\{1,6}\s\?"
syn match cssSpecialCharQQ +\\\\\|\\"+ contained
syn match cssSpecialCharQ +\\\\\|\\'+ contained
syn region cssStringQQ start=+"+ skip=+\\\\\|\\"+ end=+"+ contains=cssUnicodeEscape,cssSpecialCharQQ
syn region cssStringQ start=+'+ skip=+\\\\\|\\'+ end=+'+ contains=cssUnicodeEscape,cssSpecialCharQ

" Vendor Prefix
syn match cssVendor contained "\(-\(webkit\|moz\|o\|ms\)-\)"

" Various CSS Hack characters
" In earlier versions of IE (6 and 7), one can prefix property names
" with a _ or * to isolate those definitions to particular versions of IE
" This is purely decorative and therefore we assign to the same highlight
" group to cssVendor, for more information:
" http://www.paulirish.com/2009/browser-specific-css-hacks/
syn match cssHacks contained /\(_\|*\)/

" Misc highlight groups
syntax match cssUnitDecorators /\(#\|-\|%\|mm\|cm\|in\|pt\|pc\|em\|ex\|px\|rem\|dpi\|dppx\|dpcm\|Hz\|kHz\|s\|ms\|deg\|grad\|rad\)/ contained
syntax match cssNoise contained /\(:\|;\|\/\)/

" Attr Enhance
" Some keywords are both Prop and Attr, so we have to handle them
syn region cssAttrRegion start=/:/ end=/;/ contained keepend contains=css.*Attr,cssColor,cssImportant,cssValue.*,cssFunction,cssString.*,cssURL,cssComment,cssUnicodeEscape,cssVendor,cssError,cssAttrComma,cssNoise

" Hack for transition
" The 'transition' Prop has Props after ':'.
syn region cssAttrRegion start=/transition\s*:/ end=/;/ contained keepend contains=css.*Prop,css.*Attr,cssColor,cssImportant,cssValue.*,cssFunction,cssString.*,cssURL,cssComment,cssUnicodeEscape,cssVendor,cssError,cssAttrComma,cssNoise


if main_syntax == "css"
  syn sync minlines=10
endif

" Define the default highlighting.
" For version 5.7 and earlier: only when not done already
" For version 5.8 and later: only when an item doesn't have highlighting yet
if version >= 508 || !exists("did_css_syn_inits")
  if version < 508
    let did_css_syn_inits = 1
    command -nargs=+ HiLink hi link <args>
  else
    command -nargs=+ HiLink hi def link <args>
  endif

  HiLink cssComment Comment
  HiLink cssVendor Comment
  HiLink cssHacks Comment
  HiLink cssTagName Statement
  HiLink cssDeprecated Error
  HiLink cssSelectorOp Special
  HiLink cssSelectorOp2 Special
  HiLink cssAttrComma Special

  HiLink cssAnimationProp cssProp
  HiLink cssBackgroundProp cssProp
  HiLink cssBorderProp cssProp
  HiLink cssBoxProp cssProp
  HiLink cssColorProp cssProp
  HiLink cssContentForPagedMediaProp cssProp
  HiLink cssDimensionProp cssProp
  HiLink cssFlexibleBoxProp cssProp
  HiLink cssFontProp cssProp
  HiLink cssGeneratedContentProp cssProp
  HiLink cssGridProp cssProp
  HiLink cssHyerlinkProp cssProp
  HiLink cssLineboxProp cssProp
  HiLink cssListProp cssProp
  HiLink cssMarqueeProp cssProp
  HiLink cssMultiColumnProp cssProp
  HiLink cssPagedMediaProp cssProp
  HiLink cssPositioningProp cssProp
  HiLink cssPrintProp cssProp
  HiLink cssRubyProp cssProp
  HiLink cssSpeechProp cssProp
  HiLink cssTableProp cssProp
  HiLink cssTextProp cssProp
  HiLink cssTransformProp cssProp
  HiLink cssTransitionProp cssProp
  HiLink cssUIProp cssProp
  HiLink cssIEUIProp cssProp
  HiLink cssAuralProp cssProp
  HiLink cssRenderProp cssProp
  HiLink cssMobileTextProp cssProp

  HiLink cssAnimationAttr cssAttr
  HiLink cssBackgroundAttr cssAttr
  HiLink cssBorderAttr cssAttr
  HiLink cssBoxAttr cssAttr
  HiLink cssContentForPagedMediaAttr cssAttr
  HiLink cssDimensionAttr cssAttr
  HiLink cssFlexibleBoxAttr cssAttr
  HiLink cssFontAttr cssAttr
  HiLink cssGeneratedContentAttr cssAttr
  HiLink cssGridAttr cssAttr
  HiLink cssHyerlinkAttr cssAttr
  HiLink cssLineboxAttr cssAttr
  HiLink cssListAttr cssAttr
  HiLink cssMarginAttr cssAttr
  HiLink cssMarqueeAttr cssAttr
  HiLink cssMultiColumnAttr cssAttr
  HiLink cssPaddingAttr cssAttr
  HiLink cssPagedMediaAttr cssAttr
  HiLink cssPositioningAttr cssAttr
  HiLink cssGradientAttr cssAttr
  HiLink cssPrintAttr cssAttr
  HiLink cssRubyAttr cssAttr
  HiLink cssSpeechAttr cssAttr
  HiLink cssTableAttr cssAttr
  HiLink cssTextAttr cssAttr
  HiLink cssTransformAttr cssAttr
  HiLink cssTransitionAttr cssAttr
  HiLink cssUIAttr cssAttr
  HiLink cssIEUIAttr cssAttr
  HiLink cssAuralAttr cssAttr
  HiLink cssRenderAttr cssAttr
  HiLink cssCommonAttr cssAttr

  HiLink cssPseudoClassId PreProc
  HiLink cssPseudoClassLang Constant
  HiLink cssValueLength Number
  HiLink cssValueInteger Number
  HiLink cssValueNumber Number
  HiLink cssValueAngle Number
  HiLink cssValueTime Number
  HiLink cssValueFrequency Number
  HiLink cssFunction Constant
  HiLink cssURL String
  HiLink cssFunctionName Function
  HiLink cssFunctionComma Function
  HiLink cssColor Constant
  HiLink cssIdentifier Function
  HiLink cssInclude Include
  HiLink cssIncludeKeyword atKeyword
  HiLink cssImportant Special
  HiLink cssBraces Function
  HiLink cssBraceError Error
  HiLink cssError Error
  HiLink cssUnicodeEscape Special
  HiLink cssStringQQ String
  HiLink cssStringQ String
  HiLink cssAttributeSelector String
  HiLink cssMedia atKeyword
  HiLink cssMediaType Special
  HiLink cssMediaComma Normal
  HiLink cssMediaKeyword Statement
  HiLink cssMediaProp cssProp
  HiLink cssMediaAttr cssAttr
  HiLink cssPage atKeyword
  HiLink cssPagePseudo PreProc
  HiLink cssPageMargin atKeyword
  HiLink cssPageProp cssProp
  HiLink cssKeyFrame atKeyword
  HiLink cssKeyFrameSelector Constant
  HiLink cssFontDescriptor Special
  HiLink cssFontDescriptorFunction Constant
  HiLink cssFontDescriptorProp cssProp
  HiLink cssFontDescriptorAttr cssAttr
  HiLink cssUnicodeRange Constant
  HiLink cssClassName Function
  HiLink cssClassNameDot Function
  HiLink cssProp StorageClass
  HiLink cssAttr Constant
  HiLink cssUnitDecorators Number
  HiLink cssNoise Noise
  HiLink atKeyword Comment
  delcommand HiLink
endif

let b:current_syntax = "css"

if main_syntax == 'css'
  unlet main_syntax
endif

let &cpo = s:cpo_save
unlet s:cpo_save
" vim: ts=8

                                                                                                                                                                                                                                                                                                                      P  " Vim syntax file
" Language:	Diff (context or unified)
" Maintainer:	Bram Moolenaar <Bram@vim.org>
"               Translations by Jakson Alves de Aquino.
" Last Change:	2013 Oct 06

" Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax")
  finish
endif
scriptencoding utf-8

syn match diffOnly	"^Only in .*"
syn match diffIdentical	"^Files .* and .* are identical$"
syn match diffDiffer	"^Files .* and .* differ$"
syn match diffBDiffer	"^Binary files .* and .* differ$"
syn match diffIsA	"^File .* is a .* while file .* is a .*"
syn match diffNoEOL	"^\\ No newline at end of file .*"
syn match diffCommon	"^Common subdirectories: .*"

" ca
syn match diffOnly	"^Només a .*"
syn match diffIdentical	"^Els fitxers .* i .* són idèntics$"
syn match diffDiffer	"^Els fitxers .* i .* difereixen$"
syn match diffBDiffer	"^Els fitxers .* i .* difereixen$"
syn match diffIsA	"^El fitxer .* és un .* mentre que el fitxer .* és un .*"
syn match diffNoEOL	"^\\ No hi ha cap caràcter de salt de línia al final del fitxer"
syn match diffCommon	"^Subdirectoris comuns: .* i .*"

" cs
syn match diffOnly	"^Pouze v .*"
syn match diffIdentical	"^Soubory .* a .* jsou identické$"
syn match diffDiffer	"^Soubory .* a .* jsou různé$"
syn match diffBDiffer	"^Binární soubory .* a .* jsou rozdílné$"
syn match diffBDiffer	"^Soubory .* a .* jsou různé$"
syn match diffIsA	"^Soubor .* je .* pokud soubor .* je .*"
syn match diffNoEOL	"^\\ Chybí znak konce řádku na konci souboru"
syn match diffCommon	"^Společné podadresáře: .* a .*"

" da
syn match diffOnly	"^Kun i .*"
syn match diffIdentical	"^Filerne .* og .* er identiske$"
syn match diffDiffer	"^Filerne .* og .* er forskellige$"
syn match diffBDiffer	"^Binære filer .* og .* er forskellige$"
syn match diffIsA	"^Filen .* er en .* mens filen .* er en .*"
syn match diffNoEOL	"^\\ Intet linjeskift ved filafslutning"
syn match diffCommon	"^Identiske underkataloger: .* og .*"

" de
syn match diffOnly	"^Nur in .*"
syn match diffIdentical	"^Dateien .* und .* sind identisch.$"
syn match diffDiffer	"^Dateien .* und .* sind verschieden.$"
syn match diffBDiffer	"^Binärdateien .* and .* sind verschieden.$"
syn match diffBDiffer	"^Binärdateien .* und .* sind verschieden.$"
syn match diffIsA	"^Datei .* ist ein .* während Datei .* ein .* ist.$"
syn match diffNoEOL	"^\\ Kein Zeilenumbruch am Dateiende."
syn match diffCommon	"^Gemeinsame Unterverzeichnisse: .* und .*.$"

" el
syn match diffOnly	"^Μόνο στο .*"
syn match diffIdentical	"^Τα αρχεία .* καί .* είναι πανομοιότυπα$"
syn match diffDiffer	"^Τα αρχεία .* και .* διαφέρουν$"
syn match diffBDiffer	"^Τα αρχεία .* και .* διαφέρουν$"
syn match diffIsA	"^Το αρχείο .* είναι .* ενώ το αρχείο .* είναι .*"
syn match diffNoEOL	"^\\ Δεν υπάρχει χαρακτήρας νέας γραμμής στο τέλος του αρχείου"
syn match diffCommon	"^Οι υποκατάλογοι .* και .* είναι ταυτόσημοι$"

" eo
syn match diffOnly	"^Nur en .*"
syn match diffIdentical	"^Dosieroj .* kaj .* estas samaj$"
syn match diffDiffer	"^Dosieroj .* kaj .* estas malsamaj$"
syn match diffBDiffer	"^Dosieroj .* kaj .* estas malsamaj$"
syn match diffIsA	"^Dosiero .* estas .*, dum dosiero .* estas .*"
syn match diffNoEOL	"^\\ Mankas linifino ĉe fino de dosiero"
syn match diffCommon	"^Komunaj subdosierujoj: .* kaj .*"

" es
syn match diffOnly	"^Sólo en .*"
syn match diffIdentical	"^Los ficheros .* y .* son idénticos$"
syn match diffDiffer	"^Los ficheros .* y .* son distintos$"
syn match diffBDiffer	"^Los ficheros binarios .* y .* son distintos$"
syn match diffIsA	"^El fichero .* es un .* mientras que el .* es un .*"
syn match diffNoEOL	"^\\ No hay ningún carácter de nueva línea al final del fichero"
syn match diffCommon	"^Subdirectorios comunes: .* y .*"

" fi
syn match diffOnly	"^Vain hakemistossa .*"
syn match diffIdentical	"^Tiedostot .* ja .* ovat identtiset$"
syn match diffDiffer	"^Tiedostot .* ja .* eroavat$"
syn match diffBDiffer	"^Binääritiedostot .* ja .* eroavat$"
syn match diffIsA	"^Tiedosto .* on .*, kun taas tiedosto .* on .*"
syn match diffNoEOL	"^\\ Ei rivinvaihtoa tiedoston lopussa"
syn match diffCommon	"^Yhteiset alihakemistot: .* ja .*"

" fr
syn match diffOnly	"^Seulement dans .*"
syn match diffIdentical	"^Les fichiers .* et .* sont identiques.*"
syn match diffDiffer	"^Les fichiers .* et .* sont différents.*"
syn match diffBDiffer	"^Les fichiers binaires .* et .* sont différents.*"
syn match diffIsA	"^Le fichier .* est un .* alors que le fichier .* est un .*"
syn match diffNoEOL	"^\\ Pas de fin de ligne à la fin du fichier.*"
syn match diffCommon	"^Les sous-répertoires .* et .* sont identiques.*"

" ga
syn match diffOnly	"^I .* amháin: .*"
syn match diffIdentical	"^Is comhionann iad na comhaid .* agus .*"
syn match diffDiffer	"^Tá difríocht idir na comhaid .* agus .*"
syn match diffBDiffer	"^Tá difríocht idir na comhaid .* agus .*"
syn match diffIsA	"^Tá comhad .* ina .* ach tá comhad .* ina .*"
syn match diffNoEOL	"^\\ Gan líne nua ag an chomhadchríoch"
syn match diffCommon	"^Fochomhadlanna i gcoitianta: .* agus .*"

" gl
syn match diffOnly	"^Só en .*"
syn match diffIdentical	"^Os ficheiros .* e .* son idénticos$"
syn match diffDiffer	"^Os ficheiros .* e .* son diferentes$"
syn match diffBDiffer	"^Os ficheiros binarios .* e .* son diferentes$"
syn match diffIsA	"^O ficheiro .* é un .* mentres que o ficheiro .* é un .*"
syn match diffNoEOL	"^\\ Non hai un salto de liña na fin da liña"
syn match diffCommon	"^Subdirectorios comúns: .* e .*"

" he
syn match diffOnly	"^.*-ב קר אצמנ .*"
syn match diffIdentical	"^םיהז םניה .*-ו .* םיצבקה$"
syn match diffDiffer	"^הזמ הז םינוש `.*'-ו `.*' םיצבקה$"
syn match diffBDiffer	"^הזמ הז םינוש `.*'-ו `.*' םיירניב םיצבק$"
syn match diffIsA	"^.* .*-ל .* .* תוושהל ןתינ אל$"
syn match diffNoEOL	"^\\ ץבוקה ףוסב השדח-הרוש ות רסח"
syn match diffCommon	"^.*-ו .* :תוהז תויקית-תת$"

" hr
syn match diffOnly	"^Samo u .*"
syn match diffIdentical	"^Datoteke .* i .* su identične$"
syn match diffDiffer	"^Datoteke .* i .* se razlikuju$"
syn match diffBDiffer	"^Binarne datoteke .* i .* se razlikuju$"
syn match diffIsA	"^Datoteka .* je .*, a datoteka .* je .*"
syn match diffNoEOL	"^\\ Nema novog retka na kraju datoteke"
syn match diffCommon	"^Uobičajeni poddirektoriji: .* i .*"

" hu
syn match diffOnly	"^Csak .* -ben: .*"
syn match diffIdentical	"^.* és .* fájlok azonosak$"
syn match diffDiffer	"^A(z) .* és a(z) .* fájlok különböznek$"
syn match diffBDiffer	"^A(z) .* és a(z) .* fájlok különböznek$"
syn match diffIsA	"^A(z) .* fájl egy .*, viszont a(z) .* fájl egy .*"
syn match diffNoEOL	"^\\ Nincs újsor a fájl végén"
syn match diffCommon	"^Közös alkönyvtárak: .* és .*"

" id
syn match diffOnly	"^Hanya dalam .*"
syn match diffIdentical	"^File .* dan .* identik$"
syn match diffDiffer	"^Berkas .* dan .* berbeda$"
syn match diffBDiffer	"^File biner .* dan .* berbeda$"
syn match diffIsA	"^File .* adalah .* sementara file .* adalah .*"
syn match diffNoEOL	"^\\ Tidak ada baris-baru di akhir dari berkas"
syn match diffCommon	"^Subdirektori sama: .* dan .*"

" it
syn match diffOnly	"^Solo in .*"
syn match diffIdentical	"^I file .* e .* sono identici$"
syn match diffDiffer	"^I file .* e .* sono diversi$"
syn match diffBDiffer	"^I file .* e .* sono diversi$"
syn match diffBDiffer	"^I file binari .* e .* sono diversi$"
syn match diffIsA	"^File .* è un .* mentre file .* è un .*"
syn match diffNoEOL	"^\\ Manca newline alla fine del file"
syn match diffCommon	"^Sottodirectory in comune: .* e .*"

" ja
syn match diffOnly	"^.*だけに発見: .*"
syn match diffIdentical	"^ファイル.*と.*は同一$"
syn match diffDiffer	"^ファイル.*と.*は違います$"
syn match diffBDiffer	"^バイナリー・ファイル.*と.*は違います$"
syn match diffIsA	"^ファイル.*は.*、ファイル.*は.*"
syn match diffNoEOL	"^\\ ファイル末尾に改行がありません"
syn match diffCommon	"^共通の下位ディレクトリー: .*と.*"

" ja DiffUtils 3.3
syn match diffOnly	"^.* のみに存在: .*"
syn match diffIdentical	"^ファイル .* と .* は同一です$"
syn match diffDiffer	"^ファイル .* と .* は異なります$"
syn match diffBDiffer	"^バイナリーファイル .* と.* は異なります$"
syn match diffIsA	"^ファイル .* は .* です。一方、ファイル .* は .* です$"
syn match diffNoEOL	"^\\ ファイル末尾に改行がありません"
syn match diffCommon	"^共通のサブディレクトリー: .* と .*"

" lv
syn match diffOnly	"^Tikai iekš .*"
syn match diffIdentical	"^Fails .* un .* ir identiski$"
syn match diffDiffer	"^Faili .* un .* atšķiras$"
syn match diffBDiffer	"^Faili .* un .* atšķiras$"
syn match diffBDiffer	"^Binārie faili .* un .* atšķiras$"
syn match diffIsA	"^Fails .* ir .* kamēr fails .* ir .*"
syn match diffNoEOL	"^\\ Nav jaunu rindu faila beigās"
syn match diffCommon	"^Kopējās apakšdirektorijas: .* un .*"

" ms
syn match diffOnly	"^Hanya dalam .*"
syn match diffIdentical	"^Fail .* dan .* adalah serupa$"
syn match diffDiffer	"^Fail .* dan .* berbeza$"
syn match diffBDiffer	"^Fail .* dan .* berbeza$"
syn match diffIsA	"^Fail .* adalah .* manakala fail .* adalah .*"
syn match diffNoEOL	"^\\ Tiada baris baru pada penghujung fail"
syn match diffCommon	"^Subdirektori umum: .* dan .*"

" nl
syn match diffOnly	"^Alleen in .*"
syn match diffIdentical	"^Bestanden .* en .* zijn identiek$"
syn match diffDiffer	"^Bestanden .* en .* zijn verschillend$"
syn match diffBDiffer	"^Bestanden .* en .* zijn verschillend$"
syn match diffBDiffer	"^Binaire bestanden .* en .* zijn verschillend$"
syn match diffIsA	"^Bestand .* is een .* terwijl bestand .* een .* is$"
syn match diffNoEOL	"^\\ Geen regeleindeteken (LF) aan einde van bestand"
syn match diffCommon	"^Gemeenschappelijke submappen: .* en .*"

" pl
syn match diffOnly	"^Tylko w .*"
syn match diffIdentical	"^Pliki .* i .* są identyczne$"
syn match diffDiffer	"^Pliki .* i .* różnią się$"
syn match diffBDiffer	"^Pliki .* i .* różnią się$"
syn match diffBDiffer	"^Binarne pliki .* i .* różnią się$"
syn match diffIsA	"^Plik .* jest .*, podczas gdy plik .* jest .*"
syn match diffNoEOL	"^\\ Brak znaku nowej linii na końcu pliku"
syn match diffCommon	"^Wspólne podkatalogi: .* i .*"

" pt_BR
syn match diffOnly	"^Somente em .*"
syn match diffOnly	"^Apenas em .*"
syn match diffIdentical	"^Os aquivos .* e .* são idênticos$"
syn match diffDiffer	"^Os arquivos .* e .* são diferentes$"
syn match diffBDiffer	"^Os arquivos binários .* e .* são diferentes$"
syn match diffIsA	"^O arquivo .* é .* enquanto o arquivo .* é .*"
syn match diffNoEOL	"^\\ Falta o caracter nova linha no final do arquivo"
syn match diffCommon	"^Subdiretórios idênticos: .* e .*"

" ro
syn match diffOnly	"^Doar în .*"
syn match diffIdentical	"^Fişierele .* şi .* sunt identice$"
syn match diffDiffer	"^Fişierele .* şi .* diferă$"
syn match diffBDiffer	"^Fişierele binare .* şi .* diferă$"
syn match diffIsA	"^Fişierul .* este un .* pe când fişierul .* este un .*.$"
syn match diffNoEOL	"^\\ Nici un element de linie nouă la sfârşitul fişierului"
syn match diffCommon	"^Subdirectoare comune: .* şi .*.$"

" ru
syn match diffOnly	"^Только в .*"
syn match diffIdentical	"^Файлы .* и .* идентичны$"
syn match diffDiffer	"^Файлы .* и .* различаются$"
syn match diffBDiffer	"^Файлы .* и .* различаются$"
syn match diffIsA	"^Файл .* это .*, тогда как файл .* -- .*"
syn match diffNoEOL	"^\\ В конце файла нет новой строки"
syn match diffCommon	"^Общие подкаталоги: .* и .*"

" sr
syn match diffOnly	"^Само у .*"
syn match diffIdentical	"^Датотеке „.*“ и „.*“ се подударају$"
syn match diffDiffer	"^Датотеке .* и .* различите$"
syn match diffBDiffer	"^Бинарне датотеке .* и .* различите$"
syn match diffIsA	"^Датотека „.*“ је „.*“ док је датотека „.*“ „.*“$"
syn match diffNoEOL	"^\\ Без новог реда на крају датотеке"
syn match diffCommon	"^Заједнички поддиректоријуми: .* и .*"

" sv
syn match diffOnly	"^Endast i .*"
syn match diffIdentical	"^Filerna .* och .* är lika$"
syn match diffDiffer	"^Filerna .* och .* skiljer$"
syn match diffBDiffer	"^Filerna .* och .* skiljer$"
syn match diffIsA	"^Fil .* är en .* medan fil .* är en .*"
syn match diffBDiffer	"^De binära filerna .* och .* skiljer$"
syn match diffIsA	"^Filen .* är .* medan filen .* är .*"
syn match diffNoEOL	"^\\ Ingen nyrad vid filslut"
syn match diffCommon	"^Lika underkataloger: .* och .*"

" tr
syn match diffOnly	"^Yalnızca .*'da: .*"
syn match diffIdentical	"^.* ve .* dosyaları birbirinin aynı$"
syn match diffDiffer	"^.* ve .* dosyaları birbirinden farklı$"
syn match diffBDiffer	"^.* ve .* dosyaları birbirinden farklı$"
syn match diffBDiffer	"^İkili .* ve .* birbirinden farklı$"
syn match diffIsA	"^.* dosyası, bir .*, halbuki .* dosyası bir .*"
syn match diffNoEOL	"^\\ Dosya sonunda yenisatır yok."
syn match diffCommon	"^Ortak alt dizinler: .* ve .*"

" uk
syn match diffOnly	"^Лише у .*"
syn match diffIdentical	"^Файли .* та .* ідентичні$"
syn match diffDiffer	"^Файли .* та .* відрізняються$"
syn match diffBDiffer	"^Файли .* та .* відрізняються$"
syn match diffBDiffer	"^Двійкові файли .* та .* відрізняються$"
syn match diffIsA	"^Файл .* це .*, тоді як файл .* -- .*"
syn match diffNoEOL	"^\\ Наприкінці файлу немає нового рядка"
syn match diffCommon	"^Спільні підкаталоги: .* та .*"

" vi
syn match diffOnly	"^Chỉ trong .*"
syn match diffIdentical	"^Hai tập tin .* và .* là bằng nhau.$"
syn match diffIdentical	"^Cả .* và .* là cùng một tập tin$"
syn match diffDiffer	"^Hai tập tin .* và .* là khác nhau.$"
syn match diffBDiffer	"^Hai tập tin nhị phân .* và .* khác nhau$"
syn match diffIsA	"^Tập tin .* là một .* trong khi tập tin .* là một .*.$"
syn match diffBDiffer	"^Hai tập tin .* và .* là khác nhau.$"
syn match diffIsA	"^Tập tin .* là một .* còn tập tin .* là một .*.$"
syn match diffNoEOL	"^\\ Không có ký tự dòng mới tại kêt thức tập tin."
syn match diffCommon	"^Thư mục con chung: .* và .*"

" zh_CN
syn match diffOnly	"^只在 .* 存在：.*"
syn match diffIdentical	"^檔案 .* 和 .* 相同$"
syn match diffDiffer	"^文件 .* 和 .* 不同$"
syn match diffBDiffer	"^文件 .* 和 .* 不同$"
syn match diffIsA	"^文件 .* 是.*而文件 .* 是.*"
syn match diffNoEOL	"^\\ 文件尾没有 newline 字符"
syn match diffCommon	"^.* 和 .* 有共同的子目录$"

" zh_TW
syn match diffOnly	"^只在 .* 存在：.*"
syn match diffIdentical	"^檔案 .* 和 .* 相同$"
syn match diffDiffer	"^檔案 .* 與 .* 不同$"
syn match diffBDiffer	"^二元碼檔 .* 與 .* 不同$"
syn match diffIsA	"^檔案 .* 是.*而檔案 .* 是.*"
syn match diffNoEOL	"^\\ 檔案末沒有 newline 字元"
syn match diffCommon	"^.* 和 .* 有共同的副目錄$"


syn match diffRemoved	"^-.*"
syn match diffRemoved	"^<.*"
syn match diffAdded	"^+.*"
syn match diffAdded	"^>.*"
syn match diffChanged	"^! .*"

syn match diffSubname	" @@..*"ms=s+3 contained
syn match diffLine	"^@.*" contains=diffSubname
syn match diffLine	"^\<\d\+\>.*"
syn match diffLine	"^\*\*\*\*.*"
syn match diffLine	"^---$"

"Some versions of diff have lines like "#c#" and "#d#" (where # is a number)
syn match diffLine	"^\d\+\(,\d\+\)\=[cda]\d\+\>.*"

syn match diffFile	"^diff\>.*"
syn match diffFile	"^+++ .*"
syn match diffFile	"^Index: .*"
syn match diffFile	"^==== .*"
syn match diffOldFile	"^\*\*\* .*"
syn match diffNewFile	"^--- .*"

syn match diffComment	"^#.*"

" Define the default highlighting.
" Only used when an item doesn't have highlighting yet
hi def link diffOldFile		diffFile
hi def link diffNewFile		diffFile
hi def link diffFile		Type
hi def link diffOnly		Constant
hi def link diffIdentical	Constant
hi def link diffDiffer		Constant
hi def link diffBDiffer		Constant
hi def link diffIsA		Constant
hi def link diffNoEOL		Constant
hi def link diffCommon		Constant
hi def link diffRemoved		Special
hi def link diffChanged		PreProc
hi def link diffAdded		Identifier
hi def link diffLine		Statement
hi def link diffSubname		PreProc
hi def link diffComment		Comment

let b:current_syntax = "diff"

" vim: ts=8 sw=2
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     	     " DoxyGen syntax hilighting extension for c/c++/idl/java
" Language:     doxygen on top of c, cpp, idl, java, php
" Maintainer:   Michael Geddes <vimmer@frog.wheelycreek.net>
" Author:       Michael Geddes
" Last Change:  Jan 2009 (\tparam by Domnique Pelle, Aug 2013)
" Version:      1.23
"
" Copyright 2004-2008 Michael Geddes
" Please feel free to use, modify & distribute all or part of this script,
" providing this copyright message remains.
" I would appreciate being acknowledged in any derived scripts, and would
" appreciate and welcome any updates, modifications or suggestions.

" NOTE:  Comments welcome!
"
" There are two variables that control the syntax highlighting produced by this
" script:
" doxygen_enhanced_colour  - Use the (non-standard) original colours designed
"                            for this highlighting.
" doxygen_my_rendering     - Disable the HTML bold/italic/underline rendering.
"
" A brief description without '.' or '!' will cause the end comment
" character to be marked as an error.  You can define the colour of this using
" the highlight doxygenErrorComment.
" A \link without an \endlink will cause an error highlight on the end-comment.
" This is defined by doxygenLinkError
"
" The variable g:doxygen_codeword_font can be set to the guifont for marking \c
" words - a 'typewriter' like font normally. Spaces must be escaped.  It can
" also be set to any highlight attribute. Alternatively, a highlight for doxygenCodeWord
" can be used to override it.
"
" By default, highlighting is done assuming you have the JAVADOC_AUTOBRIEF
" setting turned on in your Doxygen configuration.  If you don't, you
" can set the variable g:doxygen_javadoc_autobrief to 0 to have the
" highlighting more accurately reflect the way Doxygen will interpret your
" comments.
"
" Support for cpp, c, idl, doxygen and php.
"
" Special thanks to:  Wu Yongwei, Toby Allsopp
"

if exists('b:suppress_doxygen')
  unlet b:suppress_doxygen
  finish
endif

if exists('b:current_syntax') && b:current_syntax =~ 'doxygen' && !exists('doxygen_debug_script')
  finish
endif

let s:cpo_save = &cpo
try
  set cpo&vim

  " Start of Doxygen syntax hilighting:
  "

  " C/C++ Style line comments
  syn region doxygenComment start=+/\*\(\*/\)\@![*!]+  end=+\*/+ contains=doxygenSyncStart,doxygenStart,doxygenTODO keepend fold containedin=phpRegion
  syn region doxygenCommentL start=+//[/!]<\@!+me=e-1 end=+$+ contains=doxygenStartL,@Spell keepend skipwhite skipnl nextgroup=doxygenComment2 fold containedin=phpRegion
  syn region doxygenCommentL start=+//[/!]<+me=e-2 end=+$+ contains=doxygenStartL,@Spell keepend skipwhite skipnl fold containedin=phpRegion
  syn region doxygenCommentL start=+//@\ze[{}]+ end=+$+ contains=doxygenGroupDefine,doxygenGroupDefineSpecial,@Spell fold containedin=phpRegion

  " Single line brief followed by multiline comment.
  syn region doxygenComment2 start=+/\*\(\*/\)\@![*!]+ end=+\*/+ contained contains=doxygenSyncStart2,doxygenStart2,doxygenTODO keepend fold
  " This helps with sync-ing as for some reason, syncing behaves differently to a normal region, and the start pattern does not get matched.
  syn match doxygenSyncStart2 +[^*/]+ contained nextgroup=doxygenBody,doxygenPrev,doxygenStartSpecial,doxygenSkipComment,doxygenStartSkip2 skipwhite skipnl

  " Skip empty lines at the start for when comments start on the 2nd/3rd line.
  syn match doxygenStartSkip2 +^\s*\*[^/]+me=e-1 contained nextgroup=doxygenBody,doxygenStartSpecial,doxygenStartSkip skipwhite skipnl
  syn match doxygenStartSkip2 +^\s*\*$+ contained nextgroup=doxygenBody,doxygenStartSpecial,,doxygenStartSkip skipwhite skipnl
  syn match doxygenStart2 +/\*[*!]+ contained nextgroup=doxygenBody,doxygenPrev,doxygenStartSpecial,doxygenStartSkip2 skipwhite skipnl


  " Match the Starting pattern (effectively creating the start of a BNF)
  if !exists('g:doxygen_javadoc_autobrief') || g:doxygen_javadoc_autobrief
    syn match doxygenStart +/\*[*!]+ contained nextgroup=doxygenBrief,doxygenPrev,doxygenFindBriefSpecial,doxygenStartSpecial,doxygenStartSkip,doxygenPage skipwhite skipnl
    syn match doxygenStartL +//[/!]+ contained nextgroup=doxygenPrevL,doxygenBriefL,doxygenSpecial skipwhite
    " Match the first sentence as a brief comment
    if ! exists('g:doxygen_end_punctuation')
      let g:doxygen_end_punctuation='[.]'
    endif

    exe 'syn region doxygenBrief contained start=+[\\@]\([npcbea]\>\|em\>\|ref\>\|link\>\|f\$\|[$\\&<>#]\)\|[^ \t\\@*]+ start=+\(^\s*\)\@<!\*/\@!+ start=+\<\k+ skip=+'.doxygen_end_punctuation.'\S\@=+ end=+'.doxygen_end_punctuation.'+ end=+\(\s*\(\n\s*\*\=\s*\)[@\\]\([npcbea]\>\|em\>\|ref\>\|link\>\|f\$\|[$\\&<>#]\)\@!\)\@=+ contains=doxygenSmallSpecial,doxygenContinueComment,doxygenBriefEndComment,doxygenFindBriefSpecial,doxygenSmallSpecial,@doxygenHtmlGroup,doxygenTODO,doxygenHyperLink,doxygenHashLink,@Spell  skipnl nextgroup=doxygenBody'

    syn match doxygenBriefEndComment +\*/+ contained

    exe 'syn region doxygenBriefL start=+@\k\@!\|[\\@]\([npcbea]\>\|em\>\|ref\>\|link\>\|f\$\|[$\\&<>#]\)\|[^ \t\\@]+ start=+\<+ skip=+'.doxygen_end_punctuation.'\S+ end=+'.doxygen_end_punctuation.'\|$+ contained contains=doxygenSmallSpecial,doxygenHyperLink,doxygenHashLink,@doxygenHtmlGroup,@Spell keepend'
    syn match doxygenPrevL +<+ contained  nextgroup=doxygenBriefL,doxygenSpecial skipwhite
  else
    syn match doxygenStart +/\*[*!]+ contained nextgroup=doxygenBody,doxygenPrev,doxygenFindBriefSpecial,doxygenStartSpecial,doxygenStartSkip,doxygenPage skipwhite skipnl
    syn match doxygenStartL +//[/!]+ contained nextgroup=doxygenPrevL,doxygenLine,doxygenSpecial skipwhite
    syn region doxygenLine start=+@\k\@!\|[\\@]\([npcbea]\>\|em\>\|ref\>\|link\>\|f\$\|[$\\&<>#]\)\|[^ \t\\@<]+ start=+\<+ end='$' contained contains=doxygenSmallSpecial,doxygenHyperLink,doxygenHashLink,@doxygenHtmlGroup,@Spell keepend
    syn match doxygenPrevL +<+ contained  nextgroup=doxygenLine,doxygenSpecial skipwhite

  endif

  " This helps with sync-ing as for some reason, syncing behaves differently to a normal region, and the start pattern does not get matched.
  syn match doxygenSyncStart +\ze[^*/]+ contained nextgroup=doxygenBrief,doxygenPrev,doxygenStartSpecial,doxygenFindBriefSpecial,doxygenStartSkip,doxygenPage skipwhite skipnl

  syn region doxygenBriefLine contained start=+\<\k+ end=+\(\n\s*\*\=\s*\([@\\]\([npcbea]\>\|em\>\|ref\>\|link\>\|f\$\|[$\\&<>#]\)\@!\)\|\s*$\)\@=+ contains=doxygenContinueComment,doxygenFindBriefSpecial,doxygenSmallSpecial,@doxygenHtmlGroup,doxygenTODO,doxygenHyperLink,doxygenHashLink,@Spell  skipwhite keepend

  " Match a '<' for applying a comment to the previous element.
  syn match doxygenPrev +<+ contained nextgroup=doxygenBrief,doxygenBody,doxygenSpecial,doxygenStartSkip skipwhite

if exists("c_comment_strings")
  " These are anti-Doxygen comments.  If there are more than two asterisks or 3 '/'s
  " then turn the comments back into normal C comments.
  syn region cComment start="/\*\*\*" end="\*/" contains=@cCommentGroup,cCommentString,cCharacter,cNumbersCom,cSpaceError
  syn region cCommentL start="////" skip="\\$" end="$" contains=@cCommentGroup,cComment2String,cCharacter,cNumbersCom,cSpaceError
else
  syn region cComment start="/\*\*\*" end="\*/" contains=@cCommentGroup,cSpaceError
  syn region cCommentL start="////" skip="\\$" end="$" contains=@cCommentGroup,cSpaceError
endif

  " Special commands at the start of the area:  starting with '@' or '\'
  syn region doxygenStartSpecial contained start=+[@\\]\([npcbea]\>\|em\>\|ref\>\|link\>\|f\$\|[$\\&<>#]\)\@!+ end=+$+ end=+\*/+me=s-1,he=s-1  contains=doxygenSpecial nextgroup=doxygenSkipComment skipnl keepend
  syn match doxygenSkipComment contained +^\s*\*/\@!+ nextgroup=doxygenBrief,doxygenStartSpecial,doxygenFindBriefSpecial,doxygenPage skipwhite

  "syn region doxygenBodyBit contained start=+$+

  " The main body of a doxygen comment.
  syn region doxygenBody contained start=+\(/\*[*!]\)\@<!<\|[^<]\|$+ matchgroup=doxygenEndComment end=+\*/+re=e-2,me=e-2 contains=doxygenContinueComment,doxygenTODO,doxygenSpecial,doxygenSmallSpecial,doxygenHyperLink,doxygenHashLink,@doxygenHtmlGroup,@Spell

  " These allow the skipping of comment continuation '*' characters.
  syn match doxygenContinueComment contained +^\s*\*/\@!\s*+

  " Catch a Brief comment without punctuation - flag it as an error but
  " make sure the end comment is picked up also.
  syn match doxygenErrorComment contained +\*/+


  " Skip empty lines at the start for when comments start on the 2nd/3rd line.
  if !exists('g:doxygen_javadoc_autobrief') || g:doxygen_javadoc_autobrief
    syn match doxygenStartSkip +^\s*\*[^/]+me=e-1 contained nextgroup=doxygenBrief,doxygenStartSpecial,doxygenFindBriefSpecial,doxygenStartSkip,doxygenPage skipwhite skipnl
    syn match doxygenStartSkip +^\s*\*$+ contained nextgroup=doxygenBrief,doxygenStartSpecial,doxygenFindBriefSpecial,doxygenStartSkip,doxygenPage skipwhite skipnl
  else
    syn match doxygenStartSkip +^\s*\*[^/]+me=e-1 contained nextgroup=doxygenStartSpecial,doxygenFindBriefSpecial,doxygenStartSkip,doxygenPage,doxygenBody skipwhite skipnl
    syn match doxygenStartSkip +^\s*\*$+ contained nextgroup=doxygenStartSpecial,doxygenFindBriefSpecial,doxygenStartSkip,doxygenPage,doxygenBody skipwhite skipnl
  endif

  " Match an [@\]brief so that it moves to body-mode.
  "
  "
  " syn match doxygenBriefLine  contained
  syn match doxygenBriefSpecial contained +[@\\]+ nextgroup=doxygenBriefWord skipwhite
  syn region doxygenFindBriefSpecial start=+[@\\]brief\>+ end=+\(\n\s*\*\=\s*\([@\\]\([npcbea]\>\|em\>\|ref\>\|link\>\|f\$\|[$\\&<>#]\)\@!\)\|\s*$\)\@=+ keepend contains=doxygenBriefSpecial nextgroup=doxygenBody keepend skipwhite skipnl contained


  " Create the single word matching special identifiers.

  fun! s:DxyCreateSmallSpecial( kword, name )

    let mx='[-:0-9A-Za-z_%=&+*/!~>|]\@<!\([-0-9A-Za-z_%=+*/!~>|#]\+[-0-9A-Za-z_%=+*/!~>|]\@!\|\\[\\<>&.]@\|[.,][0-9a-zA-Z_]\@=\|::\|([^)]*)\|&[0-9a-zA-Z]\{2,7};\)\+'
    exe 'syn region doxygenSpecial'.a:name.'Word contained start=+'.a:kword.'+ end=+\(\_s\+'.mx.'\)\@<=[-a-zA-Z_0-9+*/^%|~!=&\\]\@!+ skipwhite contains=doxygenContinueComment,doxygen'.a:name.'Word'
    exe 'syn match doxygen'.a:name.'Word contained "\_s\@<='.mx.'" contains=doxygenHtmlSpecial,@Spell keepend'
  endfun
  call s:DxyCreateSmallSpecial('p', 'Code')
  call s:DxyCreateSmallSpecial('c', 'Code')
  call s:DxyCreateSmallSpecial('b', 'Bold')
  call s:DxyCreateSmallSpecial('e', 'Emphasised')
  call s:DxyCreateSmallSpecial('em', 'Emphasised')
  call s:DxyCreateSmallSpecial('a', 'Argument')
  call s:DxyCreateSmallSpecial('ref', 'Ref')
  delfun s:DxyCreateSmallSpecial

  syn match doxygenSmallSpecial contained +[@\\]\(\<[npcbea]\>\|\<em\>\|\<ref\>\|\<link\>\|f\$\|[$\\&<>#]\)\@=+ nextgroup=doxygenOtherLink,doxygenHyperLink,doxygenHashLink,doxygenFormula,doxygenSymbol,doxygenSpecial.*Word

  " Now for special characters
  syn match doxygenSpecial contained +[@\\]\(\<[npcbea]\>\|\<em\>\|\<ref\|\<link\>\>\|\<f\$\|[$\\&<>#]\)\@!+ nextgroup=doxygenParam,doxygenRetval,doxygenBriefWord,doxygenBold,doxygenBOther,doxygenOther,doxygenOtherTODO,doxygenOtherWARN,doxygenOtherBUG,doxygenPage,doxygenGroupDefine,doxygenCodeRegion,doxygenVerbatimRegion,doxygenDotRegion
  " doxygenOtherLink,doxygenSymbol,doxygenFormula,doxygenErrorSpecial,doxygenSpecial.*Word
  "
  syn match doxygenGroupDefine contained +@\@<=[{}]+
  syn match doxygenGroupDefineSpecial contained +@\ze[{}]+

  syn match doxygenErrorSpecial contained +\s+

  " Match parameters and retvals (highlighting the first word as special).
  syn match doxygenParamDirection contained "\v\[(\s*in>((]\s*\[|\s*,\s*)out>)=|out>((]\s*\[|\s*,\s*)in>)=)\]" nextgroup=doxygenParamName skipwhite
  syn keyword doxygenParam contained param tparam nextgroup=doxygenParamName,doxygenParamDirection skipwhite
  syn match doxygenParamName contained +[A-Za-z0-9_:]\++ nextgroup=doxygenSpecialMultilineDesc skipwhite
  syn keyword doxygenRetval contained retval throw exception nextgroup=doxygenParamName skipwhite

  " Match one line identifiers.
  syn keyword doxygenOther contained addindex anchor
  \ dontinclude endhtmlonly endlatexonly showinitializer hideinitializer
  \ example htmlonly image include ingroup internal latexonly line
  \ overload relates relatesalso sa skip skipline
  \ until verbinclude version addtogroup htmlinclude copydoc dotfile
  \ xmlonly endxmlonly
  \ nextgroup=doxygenSpecialOnelineDesc

  syn region doxygenCodeRegion contained matchgroup=doxygenOther start=+\<code\>+ matchgroup=doxygenOther end=+[\\@]\@<=\<endcode\>+ contains=doxygenCodeRegionSpecial,doxygenContinueComment,doxygenErrorComment,@NoSpell
  syn match doxygenCodeRegionSpecial contained +[\\@]\(endcode\>\)\@=+

  syn region doxygenVerbatimRegion contained matchgroup=doxygenOther start=+\<verbatim\>+ matchgroup=doxygenOther end=+[\\@]\@<=\<endverbatim\>+ contains=doxygenVerbatimRegionSpecial,doxygenContinueComment,doxygenErrorComment,@NoSpell
  syn match doxygenVerbatimRegionSpecial contained +[\\@]\(endverbatim\>\)\@=+

  if exists('b:current_syntax') 
    let b:doxygen_syntax_save=b:current_syntax
    unlet b:current_syntax
  endif

  syn include @Dotx syntax/dot.vim

  if exists('b:doxygen_syntax_save') 
    let b:current_syntax=b:doxygen_syntax_save
    unlet b:doxygen_syntax_save
  else
    unlet b:current_syntax
  endif

  syn region doxygenDotRegion contained matchgroup=doxygenOther start=+\<dot\>+ matchgroup=doxygenOther end=+[\\@]\@<=\<enddot\>+ contains=doxygenDotRegionSpecial,doxygenErrorComment,doxygenContinueComment,@NoSpell,@Dotx
  syn match doxygenDotRegionSpecial contained +[\\@]\(enddot\>\)\@=+

  " Match single line identifiers.
  syn keyword doxygenBOther contained class enum file fn mainpage interface
  \ namespace struct typedef union var def name
  \ nextgroup=doxygenSpecialTypeOnelineDesc

  syn keyword doxygenOther contained par nextgroup=doxygenHeaderLine
  syn region doxygenHeaderLine start=+.+ end=+^+ contained skipwhite nextgroup=doxygenSpecialMultilineDesc

  syn keyword doxygenOther contained arg author date deprecated li return returns see invariant note post pre remarks since test nextgroup=doxygenSpecialMultilineDesc
  syn keyword doxygenOtherTODO contained todo attention nextgroup=doxygenSpecialMultilineDesc
  syn keyword doxygenOtherWARN contained warning nextgroup=doxygenSpecialMultilineDesc
  syn keyword doxygenOtherBUG contained bug nextgroup=doxygenSpecialMultilineDesc

  " Handle \link, \endlink, highlighting the link-to and the link text bits separately.
  syn region doxygenOtherLink matchgroup=doxygenOther start=+\<link\>+ end=+[\@]\@<=endlink\>+ contained contains=doxygenLinkWord,doxygenContinueComment,doxygenLinkError,doxygenEndlinkSpecial
  syn match doxygenEndlinkSpecial contained +[\\@]\zeendlink\>+

  syn match doxygenLinkWord "[_a-zA-Z:#()][_a-z0-9A-Z:#()]*\>" contained skipnl nextgroup=doxygenLinkRest,doxygenContinueLinkComment
  syn match doxygenLinkRest +[^*@\\]\|\*/\@!\|[@\\]\(endlink\>\)\@!+ contained skipnl nextgroup=doxygenLinkRest,doxygenContinueLinkComment
  syn match doxygenContinueLinkComment contained +^\s*\*\=[^/]+me=e-1 nextgroup=doxygenLinkRest
  syn match doxygenLinkError "\*/" contained
  " #Link hilighting.
  syn match doxygenHashLink /\([a-zA-Z_][0-9a-zA-Z_]*\)\?#\(\.[0-9a-zA-Z_]\@=\|[a-zA-Z0-9_]\+\|::\|()\)\+/ contained contains=doxygenHashSpecial
  syn match doxygenHashSpecial /#/ contained
  syn match doxygenHyperLink /\(\s\|^\s*\*\?\)\@<=\(http\|https\|ftp\):\/\/[-0-9a-zA-Z_?&=+#%/.!':;@~]\+/ contained

  " Handle \page.  This does not use doxygenBrief.
  syn match doxygenPage "[\\@]page\>"me=s+1 contained skipwhite nextgroup=doxygenPagePage
  syn keyword doxygenPagePage page contained skipwhite nextgroup=doxygenPageIdent
  syn region doxygenPageDesc  start=+.\++ end=+$+ contained skipwhite contains=doxygenSmallSpecial,@doxygenHtmlGroup keepend skipwhite skipnl nextgroup=doxygenBody
  syn match doxygenPageIdent "\<[a-zA-Z_0-9]\+\>" contained nextgroup=doxygenPageDesc

  " Handle section
  syn keyword doxygenOther defgroup section subsection subsubsection weakgroup contained skipwhite nextgroup=doxygenSpecialIdent
  syn region doxygenSpecialSectionDesc  start=+.\++ end=+$+ contained skipwhite contains=doxygenSmallSpecial,@doxygenHtmlGroup keepend skipwhite skipnl nextgroup=doxygenContinueComment
  syn match doxygenSpecialIdent "\<[a-zA-Z_0-9]\+\>" contained nextgroup=doxygenSpecialSectionDesc

  " Does the one-line description for the one-line type identifiers.
  syn region doxygenSpecialTypeOnelineDesc  start=+.\++ end=+$+ contained skipwhite contains=doxygenSmallSpecial,@doxygenHtmlGroup keepend
  syn region doxygenSpecialOnelineDesc  start=+.\++ end=+$+ contained skipwhite contains=doxygenSmallSpecial,@doxygenHtmlGroup keepend

  " Handle the multiline description for the multiline type identifiers.
  " Continue until an 'empty' line (can contain a '*' continuation) or until the
  " next whole-line @ command \ command.
  syn region doxygenSpecialMultilineDesc  start=+.\++ skip=+^\s*\(\*/\@!\s*\)\=\(\<\|[@\\]\<\([npcbea]\>\|em\>\|ref\|link\>\>\|f\$\|[$\\&<>#]\)\|[^ \t\\@*]\)+ end=+^+ contained contains=doxygenSpecialContinueComment,doxygenSmallSpecial,doxygenHyperLink,doxygenHashLink,@doxygenHtmlGroup,@Spell  skipwhite keepend
  syn match doxygenSpecialContinueComment contained +^\s*\*/\@!\s*+ nextgroup=doxygenSpecial skipwhite

  " Handle special cases  'bold' and 'group'
  syn keyword doxygenBold contained bold nextgroup=doxygenSpecialHeading
  syn keyword doxygenBriefWord contained brief nextgroup=doxygenBriefLine skipwhite
  syn match doxygenSpecialHeading +.\++ contained skipwhite
  syn keyword doxygenGroup contained group nextgroup=doxygenGroupName skipwhite
  syn keyword doxygenGroupName contained +\k\++ nextgroup=doxygenSpecialOnelineDesc skipwhite

  " Handle special symbol identifiers  @$, @\, @$ etc
  syn match doxygenSymbol contained +[$\\&<>#n]+

  " Simplistic handling of formula regions
  syn region doxygenFormula contained matchgroup=doxygenFormulaEnds start=+f\$+ end=+[@\\]f\$+ contains=doxygenFormulaSpecial,doxygenFormulaOperator
  syn match doxygenFormulaSpecial contained +[@\\]\(f[^$]\|[^f]\)+me=s+1 nextgroup=doxygenFormulaKeyword,doxygenFormulaEscaped
  syn match doxygenFormulaEscaped contained "."
  syn match doxygenFormulaKeyword contained  "[a-z]\+"
  syn match doxygenFormulaOperator contained +[_^]+

  syn region doxygenFormula contained matchgroup=doxygenFormulaEnds start=+f\[+ end=+[@\\]f]+ contains=doxygenFormulaSpecial,doxygenFormulaOperator,doxygenAtom
  syn region doxygenAtom contained transparent matchgroup=doxygenFormulaOperator start=+{+ end=+}+ contains=doxygenAtom,doxygenFormulaSpecial,doxygenFormulaOperator

  " Add TODO hilighting.
  syn keyword doxygenTODO contained TODO README XXX FIXME

  " Supported HTML subset.  Not perfect, but okay.
  syn case ignore
  syn region doxygenHtmlTag contained matchgroup=doxygenHtmlCh start=+\v\</=\ze([biuap]|em|strong|img|br|center|code|dfn|d[ldt]|hr|h[0-3]|li|[ou]l|pre|small|sub|sup|table|tt|var|caption|src|alt|longdesc|name|height|width|usemap|ismap|href|type)>+ skip=+\\<\|\<\k\+=\("[^"]*"\|'[^']*\)+ end=+>+ contains=doxygenHtmlCmd,doxygenContinueComment,doxygenHtmlVar
  syn keyword doxygenHtmlCmd contained b i em strong u img a br p center code dfn dl dd dt hr h1 h2 h3 li ol ul pre small sub sup table tt var caption nextgroup=doxygenHtmlVar skipwhite
  syn keyword doxygenHtmlVar contained src alt longdesc name height width usemap ismap href type nextgroup=doxygenHtmlEqu skipwhite
  syn match doxygenHtmlEqu contained +=+ nextgroup=doxygenHtmlExpr skipwhite
  syn match doxygenHtmlExpr contained +"\(\\.\|[^"]\)*"\|'\(\\.\|[^']\)*'+ nextgroup=doxygenHtmlVar skipwhite
  syn case match
  syn match doxygenHtmlSpecial contained "&\(copy\|quot\|[AEIOUYaeiouy]uml\|[AEIOUYaeiouy]acute\|[AEIOUaeiouy]grave\|[AEIOUaeiouy]circ\|[ANOano]tilde\|szlig\|[Aa]ring\|nbsp\|gt\|lt\|amp\);"

  syn cluster doxygenHtmlGroup contains=doxygenHtmlCode,doxygenHtmlBold,doxygenHtmlUnderline,doxygenHtmlItalic,doxygenHtmlSpecial,doxygenHtmlTag,doxygenHtmlLink

  syn cluster doxygenHtmlTop contains=@Spell,doxygenHtmlSpecial,doxygenHtmlTag,doxygenContinueComment
  " Html Support
  syn region doxygenHtmlLink contained start=+<[aA]\>\s*\(\n\s*\*\s*\)\=\(\(name\|href\)=\("[^"]*"\|'[^']*'\)\)\=\s*>+ end=+</[aA]>+me=e-4 contains=@doxygenHtmlTop
  hi link doxygenHtmlLink Underlined

  syn region doxygenHtmlBold contained start="\c<b\>" end="\c</b>"me=e-4 contains=@doxygenHtmlTop,doxygenHtmlBoldUnderline,doxygenHtmlBoldItalic,@Spell
  syn region doxygenHtmlBold contained start="\c<strong\>" end="\c</strong>"me=e-9 contains=@doxygenHtmlTop,doxygenHtmlBoldUnderline,doxygenHtmlBoldItalic,@Spell
  syn region doxygenHtmlBoldUnderline contained start="\c<u\>" end="\c</u>"me=e-4 contains=@doxygenHtmlTop,doxygenHtmlBoldUnderlineItalic,@Spell
  syn region doxygenHtmlBoldItalic contained start="\c<i\>" end="\c</i>"me=e-4 contains=@doxygenHtmlTop,doxygenHtmlBoldItalicUnderline,@Spell
  syn region doxygenHtmlBoldItalic contained start="\c<em\>" end="\c</em>"me=e-5 contains=@doxygenHtmlTop,doxygenHtmlBoldItalicUnderline,@Spell
  syn region doxygenHtmlBoldUnderlineItalic contained start="\c<i\>" end="\c</i>"me=e-4 contains=@doxygenHtmlTop,@Spell
  syn region doxygenHtmlBoldUnderlineItalic contained start="\c<em\>" end="\c</em>"me=e-5 contains=@doxygenHtmlTop,@Spell
  syn region doxygenHtmlBoldItalicUnderline contained start="\c<u\>" end="\c</u>"me=e-4 contains=@doxygenHtmlTop,doxygenHtmlBoldUnderlineItalic,@Spell

  syn region doxygenHtmlUnderline contained start="\c<u\>" end="\c</u>"me=e-4 contains=@doxygenHtmlTop,doxygenHtmlUnderlineBold,doxygenHtmlUnderlineItalic,@Spell
  syn region doxygenHtmlUnderlineBold contained start="\c<b\>" end="\c</b>"me=e-4 contains=@doxygenHtmlTop,doxygenHtmlUnderlineBoldItalic,@Spell
  syn region doxygenHtmlUnderlineBold contained start="\c<strong\>" end="\c</strong>"me=e-9 contains=@doxygenHtmlTop,doxygenHtmlUnderlineBoldItalic,@Spell
  syn region doxygenHtmlUnderlineItalic contained start="\c<i\>" end="\c</i>"me=e-4 contains=@doxygenHtmlTop,htmUnderlineItalicBold,@Spell
  syn region doxygenHtmlUnderlineItalic contained start="\c<em\>" end="\c</em>"me=e-5 contains=@doxygenHtmlTop,htmUnderlineItalicBold,@Spell
  syn region doxygenHtmlUnderlineItalicBold contained start="\c<b\>" end="\c</b>"me=e-4 contains=@doxygenHtmlTop,@Spell
  syn region doxygenHtmlUnderlineItalicBold contained start="\c<strong\>" end="\c</strong>"me=e-9 contains=@doxygenHtmlTop,@Spell
  syn region doxygenHtmlUnderlineBoldItalic contained start="\c<i\>" end="\c</i>"me=e-4 contains=@doxygenHtmlTop,@Spell
  syn region doxygenHtmlUnderlineBoldItalic contained start="\c<em\>" end="\c</em>"me=e-5 contains=@doxygenHtmlTop,@Spell

  syn region doxygenHtmlItalic contained start="\c<i\>" end="\c</i>"me=e-4 contains=@doxygenHtmlTop,doxygenHtmlItalicBold,doxygenHtmlItalicUnderline,@Spell
  syn region doxygenHtmlItalic contained start="\c<em\>" end="\c</em>"me=e-5 contains=@doxygenHtmlTop,@Spell
  syn region doxygenHtmlItalicBold contained start="\c<b\>" end="\c</b>"me=e-4 contains=@doxygenHtmlTop,doxygenHtmlItalicBoldUnderline,@Spell
  syn region doxygenHtmlItalicBold contained start="\c<strong\>" end="\c</strong>"me=e-9 contains=@doxygenHtmlTop,doxygenHtmlItalicBoldUnderline,@Spell
  syn region doxygenHtmlItalicBoldUnderline contained start="\c<u\>" end="\c</u>"me=e-4 contains=@doxygenHtmlTop,@Spell
  syn region doxygenHtmlItalicUnderline contained start="\c<u\>" end="\c</u>"me=e-4 contains=@doxygenHtmlTop,doxygenHtmlItalicUnderlineBold,@Spell
  syn region doxygenHtmlItalicUnderlineBold contained start="\c<b\>" end="\c</b>"me=e-4 contains=@doxygenHtmlTop,@Spell
  syn region doxygenHtmlItalicUnderlineBold contained start="\c<strong\>" end="\c</strong>"me=e-9 contains=@doxygenHtmlTop,@Spell

  syn region doxygenHtmlCode contained start="\c<code\>" end="\c</code>"me=e-7 contains=@doxygenHtmlTop,@NoSpell

  " Prevent the doxygen contained matches from leaking into the c/rc groups.
  syn cluster cParenGroup add=doxygen.*
  syn cluster cParenGroup remove=doxygenComment,doxygenCommentL
  syn cluster cPreProcGroup add=doxygen.*
  syn cluster cMultiGroup add=doxygen.*
  syn cluster rcParenGroup add=doxygen.*
  syn cluster rcParenGroup remove=doxygenComment,doxygenCommentL
  syn cluster rcGroup add=doxygen.*

  let s:my_syncolor=0
  if !exists(':SynColor') 
    command -nargs=+ SynColor hi def <args>
    let s:my_syncolor=1
  endif

  let s:my_synlink=0
  if !exists(':SynLink')
    command -nargs=+ SynLink hi def link <args>
    let s:my_synlink=1
  endif

  try
    "let did_doxygen_syntax_inits = &background
    hi doxygen_Dummy guifg=black

    fun! s:Doxygen_Hilights_Base()
      SynLink doxygenHtmlSpecial Special
      SynLink doxygenHtmlVar Type
      SynLink doxygenHtmlExpr String

      SynLink doxygenSmallSpecial SpecialChar

      SynLink doxygenSpecialCodeWord doxygenSmallSpecial
      SynLink doxygenSpecialBoldWord doxygenSmallSpecial
      SynLink doxygenSpecialEmphasisedWord doxygenSmallSpecial
      SynLink doxygenSpecialArgumentWord doxygenSmallSpecial

      " SynColor doxygenFormulaKeyword cterm=bold ctermfg=DarkMagenta guifg=DarkMagenta gui=bold
      SynLink doxygenFormulaKeyword Keyword
      "SynColor doxygenFormulaEscaped  ctermfg=DarkMagenta guifg=DarkMagenta gui=bold
      SynLink doxygenFormulaEscaped Special
      SynLink doxygenFormulaOperator Operator
      SynLink doxygenFormula Statement
      SynLink doxygenSymbol Constant
      SynLink doxygenSpecial Special
      SynLink doxygenFormulaSpecial Special
      "SynColor doxygenFormulaSpecial ctermfg=DarkBlue guifg=DarkBlue
    endfun
    call s:Doxygen_Hilights_Base()

    fun! s:Doxygen_Hilights()
      " Pick a sensible default for 'codeword'.
      let font=''
      if exists('g:doxygen_codeword_font')
        if g:doxygen_codeword_font !~ '\<\k\+='
          let font='font='.g:doxygen_codeword_font
        else
          let font=g:doxygen_codeword_font
        endif
      else
        " Try and pick a font (only some platforms have been tested).
        if has('gui_running')
          if has('gui_gtk2')
            if &guifont == ''
              let font="font='FreeSerif 12'"
            else
              let font="font='".substitute(&guifont, '^.\{-}\([0-9]\+\)$', 'FreeSerif \1','')."'"
            endif

          elseif has('gui_win32') || has('gui_win16') || has('gui_win95')

            if exists('g:doxygen_use_bitsream_vera')  && g:doxygen_use_bitsream_vera
              let font_base='Bitstream_Vera_Sans_Mono'
            else
              let font_base='Lucida_Console'
            endif
            if &guifont == ''
              let font='font='.font_base.':h10'
            else
              let font='font='.matchstr(substitute(&guifont, '^[^:]*', font_base,''),'[^,]*')
            endif
          elseif has('gui_athena') || has('gui_gtk') || &guifont=~'^\(-[^-]\+\)\{14}'
            if &guifont == ''
              let font='font=-b&h-lucidatypewriter-medium-r-normal-*-*-140-*-*-m-*-iso8859-1'
            else
            " let font='font='.substitute(&guifont,'^\(-[^-]\+\)\{7}-\([0-9]\+\).*', '-b\&h-lucidatypewriter-medium-r-normal-*-*-\2-*-*-m-*-iso8859-1','')
            " The above line works, but it is hard to expect the combination of
            " the two fonts will look good.
            endif
          elseif has('gui_kde')
            " let font='font=Bitstream\ Vera\ Sans\ Mono/12/-1/5/50/0/0/0/0/0'
          endif
        endif
      endif
      if font=='' | let font='gui=bold' | endif
      exe 'SynColor doxygenCodeWord             term=bold cterm=bold '.font
      if (exists('g:doxygen_enhanced_color') && g:doxygen_enhanced_color) || (exists('g:doxygen_enhanced_colour') && g:doxygen_enhanced_colour)
        if &background=='light'
          SynColor doxygenComment ctermfg=DarkRed guifg=DarkRed
          SynColor doxygenBrief cterm=bold ctermfg=Cyan guifg=DarkBlue gui=bold
          SynColor doxygenBody ctermfg=DarkBlue guifg=DarkBlue
          SynColor doxygenSpecialTypeOnelineDesc cterm=bold ctermfg=DarkRed guifg=firebrick3 gui=bold
          SynColor doxygenBOther cterm=bold ctermfg=DarkMagenta guifg=#aa50aa gui=bold
          SynColor doxygenParam ctermfg=DarkGray guifg=#aa50aa
          SynColor doxygenParamName cterm=italic ctermfg=DarkBlue guifg=DeepSkyBlue4 gui=italic,bold
          SynColor doxygenSpecialOnelineDesc cterm=bold ctermfg=DarkCyan guifg=DodgerBlue3 gui=bold
          SynColor doxygenSpecialHeading cterm=bold ctermfg=DarkBlue guifg=DeepSkyBlue4 gui=bold
          SynColor doxygenPrev ctermfg=DarkGreen guifg=DarkGreen
        else
          SynColor doxygenComment ctermfg=LightRed guifg=LightRed
          SynColor doxygenBrief cterm=bold ctermfg=Cyan ctermbg=darkgrey guifg=LightBlue gui=Bold,Italic
          SynColor doxygenBody ctermfg=Cyan guifg=LightBlue
          SynColor doxygenSpecialTypeOnelineDesc cterm=bold ctermfg=Red guifg=firebrick3 gui=bold
          SynColor doxygenBOther cterm=bold ctermfg=Magenta guifg=#aa50aa gui=bold
          SynColor doxygenParam ctermfg=LightGray guifg=LightGray
          SynColor doxygenParamName cterm=italic ctermfg=LightBlue guifg=LightBlue gui=italic,bold
          SynColor doxygenSpecialOnelineDesc cterm=bold ctermfg=LightCyan guifg=LightCyan gui=bold
          SynColor doxygenSpecialHeading cterm=bold ctermfg=LightBlue guifg=LightBlue gui=bold
          SynColor doxygenPrev ctermfg=LightGreen guifg=LightGreen
        endif
      else
        SynLink doxygenComment SpecialComment
        SynLink doxygenBrief Statement
        SynLink doxygenBody Comment
        SynLink doxygenSpecialTypeOnelineDesc Statement
        SynLink doxygenBOther Constant
        SynLink doxygenParam SpecialComment
        SynLink doxygenParamName Underlined
        SynLink doxygenSpecialOnelineDesc Statement
        SynLink doxygenSpecialHeading Statement
        SynLink doxygenPrev SpecialComment
      endif
    endfun

    call s:Doxygen_Hilights()

    " This is still a proposal, but won't do any harm.
    aug doxygengroup
    au!
    au Syntax UserColor_reset nested call s:Doxygen_Hilights_Base()
    au Syntax UserColor_{on,reset,enable} nested call s:Doxygen_Hilights()
    aug END


    SynLink doxygenBody                   Comment
    SynLink doxygenLine                   doxygenBody
    SynLink doxygenTODO                   Todo
    SynLink doxygenOtherTODO              Todo
    SynLink doxygenOtherWARN              Todo
    SynLink doxygenOtherBUG               Todo

    SynLink doxygenErrorSpecial           Error
    SynLink doxygenErrorEnd               Error
    SynLink doxygenErrorComment           Error
    SynLink doxygenLinkError              Error
    SynLink doxygenBriefSpecial           doxygenSpecial
    SynLink doxygenHashSpecial            doxygenSpecial
    SynLink doxygenGroupDefineSpecial     doxygenSpecial
    SynLink doxygenEndlinkSpecial         doxygenSpecial
    SynLink doxygenCodeRegionSpecial      doxygenSpecial
    SynLink doxygenVerbatimRegionSpecial  doxygenSpecial
    SynLink doxygenDotRegionSpecial       doxygenSpecial
    SynLink doxygenGroupDefine            doxygenParam

    SynLink doxygenSpecialMultilineDesc   doxygenSpecialOnelineDesc
    SynLink doxygenFormulaEnds            doxygenSpecial
    SynLink doxygenBold                   doxygenParam
    SynLink doxygenBriefWord              doxygenParam
    SynLink doxygenRetval                 doxygenParam
    SynLink doxygenOther                  doxygenParam
    SynLink doxygenStart                  doxygenComment
    SynLink doxygenStart2                 doxygenStart
    SynLink doxygenComment2               doxygenComment
    SynLink doxygenCommentL               doxygenComment
    SynLink doxygenContinueComment        doxygenComment
    SynLink doxygenSpecialContinueComment doxygenComment
    SynLink doxygenSkipComment            doxygenComment
    SynLink doxygenEndComment             doxygenComment
    SynLink doxygenStartL                 doxygenComment
    SynLink doxygenBriefEndComment        doxygenComment
    SynLink doxygenPrevL                  doxygenPrev
    SynLink doxygenBriefL                 doxygenBrief
    SynLink doxygenBriefLine              doxygenBrief
    SynLink doxygenHeaderLine             doxygenSpecialHeading
    SynLink doxygenStartSkip              doxygenContinueComment
    SynLink doxygenLinkWord               doxygenParamName
    SynLink doxygenLinkRest               doxygenSpecialMultilineDesc
    SynLink doxygenHyperLink              doxygenLinkWord
    SynLink doxygenHashLink               doxygenLinkWord

    SynLink doxygenPage                   doxygenSpecial
    SynLink doxygenPagePage               doxygenBOther
    SynLink doxygenPageIdent              doxygenParamName
    SynLink doxygenPageDesc               doxygenSpecialTypeOnelineDesc

    SynLink doxygenSpecialIdent           doxygenPageIdent
    SynLink doxygenSpecialSectionDesc     doxygenSpecialMultilineDesc

    SynLink doxygenSpecialRefWord         doxygenOther
    SynLink doxygenRefWord                doxygenPageIdent
    SynLink doxygenContinueLinkComment    doxygenComment

    SynLink doxygenHtmlCh                 Function
    SynLink doxygenHtmlCmd                Statement
    SynLink doxygenHtmlBoldItalicUnderline     doxygenHtmlBoldUnderlineItalic
    SynLink doxygenHtmlUnderlineBold           doxygenHtmlBoldUnderline
    SynLink doxygenHtmlUnderlineItalicBold     doxygenHtmlBoldUnderlineItalic
    SynLink doxygenHtmlUnderlineBoldItalic     doxygenHtmlBoldUnderlineItalic
    SynLink doxygenHtmlItalicUnderline         doxygenHtmlUnderlineItalic
    SynLink doxygenHtmlItalicBold              doxygenHtmlBoldItalic
    SynLink doxygenHtmlItalicBoldUnderline     doxygenHtmlBoldUnderlineItalic
    SynLink doxygenHtmlItalicUnderlineBold     doxygenHtmlBoldUnderlineItalic
    SynLink doxygenHtmlLink                    Underlined

    SynLink doxygenParamDirection              StorageClass


    if !exists("doxygen_my_rendering") && !exists("html_my_rendering")
      SynColor doxygenBoldWord             term=bold cterm=bold gui=bold
      SynColor doxygenEmphasisedWord       term=italic cterm=italic gui=italic
      SynLink  doxygenArgumentWord         doxygenEmphasisedWord
      SynLink  doxygenHtmlCode             doxygenCodeWord
      SynLink  doxygenHtmlBold             doxygenBoldWord
      SynColor doxygenHtmlBoldUnderline       term=bold,underline cterm=bold,underline gui=bold,underline
      SynColor doxygenHtmlBoldItalic          term=bold,italic cterm=bold,italic gui=bold,italic
      SynColor doxygenHtmlBoldUnderlineItalic term=bold,italic,underline cterm=bold,italic,underline gui=bold,italic,underline
      SynColor doxygenHtmlUnderline        term=underline cterm=underline gui=underline
      SynColor doxygenHtmlUnderlineItalic  term=italic,underline cterm=italic,underline gui=italic,underline
      SynColor doxygenHtmlItalic           term=italic cterm=italic gui=italic
    endif

  finally
    if s:my_synlink | delcommand SynLink | endif
    if s:my_syncolor | delcommand SynColor | endif
  endtry

  if &syntax=='idl'
    syn cluster idlCommentable add=doxygenComment,doxygenCommentL
  endif

  "syn sync clear
  "syn sync maxlines=500
  "syn sync minlines=50
  syn sync match doxygenComment groupthere cComment "/\@<!/\*"
  syn sync match doxygenSyncComment grouphere doxygenComment "/\@<!/\*[*!]"
  "syn sync match doxygenSyncComment grouphere doxygenComment "/\*[*!]" contains=doxygenStart,doxygenTODO keepend
  syn sync match doxygenSyncEndComment groupthere NONE "\*/"

  if !exists('b:current_syntax')
    let b:current_syntax = "doxygen"
  else
    let b:current_syntax = b:current_syntax.'.doxygen'
  endif

finally
  let &cpo = s:cpo_save
  unlet s:cpo_save
endtry

" vim:et sw=2 sts=2
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          " Vim syntax file
" Language:	DTD (Document Type Definition for XML)
" Maintainer:	Johannes Zellner <johannes@zellner.org>
"		Author and previous maintainer:
"		Daniel Amyot <damyot@site.uottawa.ca>
" Last Change:	Tue, 27 Apr 2004 14:54:59 CEST
" Filenames:	*.dtd
"
" REFERENCES:
"   http://www.w3.org/TR/html40/
"   http://www.w3.org/TR/NOTE-html-970421
"
" TODO:
"   - improve synchronizing.

if exists("b:current_syntax")
    finish
endif
let s:dtd_cpo_save = &cpo
set cpo&vim

if !exists("dtd_ignore_case")
    " I prefer having the case takes into consideration.
    syn case match
else
    syn case ignore
endif


" the following line makes the opening <! and
" closing > highlighted using 'dtdFunction'.
"
" PROVIDES: @dtdTagHook
"
syn region dtdTag matchgroup=dtdFunction
    \ start=+<!+ end=+>+ matchgroup=NONE
    \ contains=dtdTag,dtdTagName,dtdError,dtdComment,dtdString,dtdAttrType,dtdAttrDef,dtdEnum,dtdParamEntityInst,dtdParamEntityDecl,dtdCard,@dtdTagHook

if !exists("dtd_no_tag_errors")
    " mark everything as an error which starts with a <!
    " and is not overridden later. If this is annoying,
    " it can be switched off by setting the variable
    " dtd_no_tag_errors.
    syn region dtdError contained start=+<!+lc=2 end=+>+
endif

" if this is a html like comment hightlight also
" the opening <! and the closing > as Comment.
syn region dtdComment		start=+<![ \t]*--+ end=+-->+ contains=dtdTodo,@Spell


" proper DTD comment
syn region dtdComment contained start=+--+ end=+--+ contains=dtdTodo,@Spell


" Start tags (keywords). This is contained in dtdFunction.
" Note that everything not contained here will be marked
" as error.
syn match dtdTagName contained +<!\(ATTLIST\|DOCTYPE\|ELEMENT\|ENTITY\|NOTATION\|SHORTREF\|USEMAP\|\[\)+lc=2,hs=s+2


" wildcards and operators
syn match  dtdCard contained "|"
syn match  dtdCard contained ","
" evenutally overridden by dtdEntity
syn match  dtdCard contained "&"
syn match  dtdCard contained "?"
syn match  dtdCard contained "\*"
syn match  dtdCard contained "+"

" ...and finally, special cases.
syn match  dtdCard      "ANY"
syn match  dtdCard      "EMPTY"

if !exists("dtd_no_param_entities")

    " highlight parameter entity declarations
    " and instances. Note that the closing `;'
    " is optional.

    " instances
    syn region dtdParamEntityInst oneline matchgroup=dtdParamEntityPunct
	\ start="%[-_a-zA-Z0-9.]\+"he=s+1,rs=s+1
	\ skip=+[-_a-zA-Z0-9.]+
	\ end=";\|\>"
	\ matchgroup=NONE contains=dtdParamEntityPunct
    syn match  dtdParamEntityPunct contained "\."

    " declarations
    " syn region dtdParamEntityDecl oneline matchgroup=dtdParamEntityDPunct start=+<!ENTITY % +lc=8 skip=+[-_a-zA-Z0-9.]+ matchgroup=NONE end="\>" contains=dtdParamEntityDPunct
    syn match dtdParamEntityDecl +<!ENTITY % [-_a-zA-Z0-9.]*+lc=8 contains=dtdParamEntityDPunct
    syn match  dtdParamEntityDPunct contained "%\|\."

endif

" &entities; compare with xml
syn match   dtdEntity		      "&[^; \t]*;" contains=dtdEntityPunct
syn match   dtdEntityPunct  contained "[&.;]"

" Strings are between quotes
syn region dtdString    start=+"+ skip=+\\\\\|\\"+  end=+"+ contains=dtdAttrDef,dtdAttrType,dtdEnum,dtdParamEntityInst,dtdEntity,dtdCard
syn region dtdString    start=+'+ skip=+\\\\\|\\'+  end=+'+ contains=dtdAttrDef,dtdAttrType,dtdEnum,dtdParamEntityInst,dtdEntity,dtdCard

" Enumeration of elements or data between parenthesis
"
" PROVIDES: @dtdEnumHook
"
syn region dtdEnum matchgroup=dtdType start="(" end=")" matchgroup=NONE contains=dtdEnum,dtdParamEntityInst,dtdCard,@dtdEnumHook

"Attribute types
syn keyword dtdAttrType NMTOKEN  ENTITIES  NMTOKENS  ID  CDATA
syn keyword dtdAttrType IDREF  IDREFS
" ENTITY has to treated special for not overriding <!ENTITY
syn match   dtdAttrType +[^!]\<ENTITY+

"Attribute Definitions
syn match  dtdAttrDef   "#REQUIRED"
syn match  dtdAttrDef   "#IMPLIED"
syn match  dtdAttrDef   "#FIXED"

syn case match
" define some common keywords to mark TODO
" and important sections inside comments.
syn keyword dtdTodo contained TODO FIXME XXX

syn sync lines=250

" Define the default highlighting.
" For version 5.7 and earlier: only when not done already
" For version 5.8 and later: only when an item doesn't have highlighting yet
if version >= 508 || !exists("did_dtd_syn_inits")
    if version < 508
	let did_dtd_syn_inits = 1
	command -nargs=+ HiLink hi link <args>
    else
	command -nargs=+ HiLink hi def link <args>
    endif

    " The default highlighting.
    HiLink dtdFunction		Function
    HiLink dtdTag		Normal
    HiLink dtdType		Type
    HiLink dtdAttrType		dtdType
    HiLink dtdAttrDef		dtdType
    HiLink dtdConstant		Constant
    HiLink dtdString		dtdConstant
    HiLink dtdEnum		dtdConstant
    HiLink dtdCard		dtdFunction

    HiLink dtdEntity		Statement
    HiLink dtdEntityPunct	dtdType
    HiLink dtdParamEntityInst	dtdConstant
    HiLink dtdParamEntityPunct	dtdType
    HiLink dtdParamEntityDecl	dtdType
    HiLink dtdParamEntityDPunct dtdComment

    HiLink dtdComment		Comment
    HiLink dtdTagName		Statement
    HiLink dtdError		Error
    HiLink dtdTodo		Todo

    delcommand HiLink
endif

let &cpo = s:dtd_cpo_save
unlet s:dtd_cpo_save

let b:current_syntax = "dtd"

" vim: ts=8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       " Vim syntax file
" Language:	git commit file
" Maintainer:	Tim Pope <vimNOSPAM@tpope.org>
" Filenames:	*.git/COMMIT_EDITMSG
" Last Change:	2013 May 30

if exists("b:current_syntax")
  finish
endif

syn case match
syn sync minlines=50

if has("spell")
  syn spell toplevel
endif

syn include @gitcommitDiff syntax/diff.vim
syn region gitcommitDiff start=/\%(^diff --\%(git\|cc\|combined\) \)\@=/ end=/^\%(diff --\|$\|#\)\@=/ fold contains=@gitcommitDiff

syn match   gitcommitFirstLine	"\%^[^#].*"  nextgroup=gitcommitBlank skipnl
syn match   gitcommitSummary	"^.\{0,50\}" contained containedin=gitcommitFirstLine nextgroup=gitcommitOverflow contains=@Spell
syn match   gitcommitOverflow	".*" contained contains=@Spell
syn match   gitcommitBlank	"^[^#].*" contained contains=@Spell
syn match   gitcommitComment	"^#.*"
syn match   gitcommitHead	"^\%(#   .*\n\)\+#$" contained transparent
syn match   gitcommitOnBranch	"\%(^# \)\@<=On branch" contained containedin=gitcommitComment nextgroup=gitcommitBranch skipwhite
syn match   gitcommitOnBranch	"\%(^# \)\@<=Your branch .\{-\} '" contained containedin=gitcommitComment nextgroup=gitcommitBranch skipwhite
syn match   gitcommitBranch	"[^ ']\+" contained
syn match   gitcommitNoBranch	"\%(^# \)\@<=Not currently on any branch." contained containedin=gitcommitComment
syn match   gitcommitHeader	"\%(^# \)\@<=.*:$"	contained containedin=gitcommitComment
syn region  gitcommitAuthor	matchgroup=gitCommitHeader start=/\%(^# \)\@<=\%(Author\|Committer\):/ end=/$/ keepend oneline contained containedin=gitcommitComment transparent
syn match   gitcommitNoChanges	"\%(^# \)\@<=No changes$" contained containedin=gitcommitComment

syn region  gitcommitUntracked	start=/^# Untracked files:/ end=/^#$\|^#\@!/ contains=gitcommitHeader,gitcommitHead,gitcommitUntrackedFile fold
syn match   gitcommitUntrackedFile  "\t\@<=.*"	contained

syn region  gitcommitDiscarded	start=/^# Change\%(s not staged for commit\|d but not updated\):/ end=/^#$\|^#\@!/ contains=gitcommitHeader,gitcommitHead,gitcommitDiscardedType fold
syn region  gitcommitSelected	start=/^# Changes to be committed:/ end=/^#$\|^#\@!/ contains=gitcommitHeader,gitcommitHead,gitcommitSelectedType fold
syn region  gitcommitUnmerged	start=/^# Unmerged paths:/ end=/^#$\|^#\@!/ contains=gitcommitHeader,gitcommitHead,gitcommitUnmergedType fold

syn match   gitcommitDiscardedType	"\t\@<=[a-z][a-z ]*[a-z]: "he=e-2	contained containedin=gitcommitComment nextgroup=gitcommitDiscardedFile skipwhite
syn match   gitcommitSelectedType	"\t\@<=[a-z][a-z ]*[a-z]: "he=e-2	contained containedin=gitcommitComment nextgroup=gitcommitSelectedFile skipwhite
syn match   gitcommitUnmergedType	"\t\@<=[a-z][a-z ]*[a-z]: "he=e-2	contained containedin=gitcommitComment nextgroup=gitcommitUnmergedFile skipwhite
syn match   gitcommitDiscardedFile	".\{-\}\%($\| -> \)\@=" contained nextgroup=gitcommitDiscardedArrow
syn match   gitcommitSelectedFile	".\{-\}\%($\| -> \)\@=" contained nextgroup=gitcommitSelectedArrow
syn match   gitcommitUnmergedFile	".\{-\}\%($\| -> \)\@=" contained nextgroup=gitcommitSelectedArrow
syn match   gitcommitDiscardedArrow	" -> " contained nextgroup=gitcommitDiscardedFile
syn match   gitcommitSelectedArrow	" -> " contained nextgroup=gitcommitSelectedFile
syn match   gitcommitUnmergedArrow	" -> " contained nextgroup=gitcommitSelectedFile

syn match   gitcommitWarning		"\%^[^#].*: needs merge$" nextgroup=gitcommitWarning skipnl
syn match   gitcommitWarning		"^[^#].*: needs merge$" nextgroup=gitcommitWarning skipnl contained
syn match   gitcommitWarning		"^\%(no changes added to commit\|nothing \%(added \)\=to commit\)\>.*\%$"

hi def link gitcommitSummary		Keyword
hi def link gitcommitComment		Comment
hi def link gitcommitUntracked		gitcommitComment
hi def link gitcommitDiscarded		gitcommitComment
hi def link gitcommitSelected		gitcommitComment
hi def link gitcommitUnmerged		gitcommitComment
hi def link gitcommitOnBranch		Comment
hi def link gitcommitBranch		Special
hi def link gitcommitNoBranch		gitCommitBranch
hi def link gitcommitDiscardedType	gitcommitType
hi def link gitcommitSelectedType	gitcommitType
hi def link gitcommitUnmergedType	gitcommitType
hi def link gitcommitType		Type
hi def link gitcommitNoChanges		gitcommitHeader
hi def link gitcommitHeader		PreProc
hi def link gitcommitUntrackedFile	gitcommitFile
hi def link gitcommitDiscardedFile	gitcommitFile
hi def link gitcommitSelectedFile	gitcommitFile
hi def link gitcommitUnmergedFile	gitcommitFile
hi def link gitcommitFile		Constant
hi def link gitcommitDiscardedArrow	gitcommitArrow
hi def link gitcommitSelectedArrow	gitcommitArrow
hi def link gitcommitUnmergedArrow	gitcommitArrow
hi def link gitcommitArrow		gitcommitComment
"hi def link gitcommitOverflow		Error
hi def link gitcommitBlank		Error

let b:current_syntax = "gitcommit"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    " Vim syntax file
" Language:	Vim help file
" Maintainer:	Bram Moolenaar (Bram@vim.org)
" Last Change:	2014 Feb 12

" Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax")
  finish
endif

let s:cpo_save = &cpo
set cpo&vim

syn match helpHeadline		"^[-A-Z .][-A-Z0-9 .()]*[ \t]\+\*"me=e-1
syn match helpSectionDelim	"^===.*===$"
syn match helpSectionDelim	"^---.*--$"
if has("conceal")
  syn region helpExample	matchgroup=helpIgnore start=" >$" start="^>$" end="^[^ \t]"me=e-1 end="^<" concealends
else
  syn region helpExample	matchgroup=helpIgnore start=" >$" start="^>$" end="^[^ \t]"me=e-1 end="^<"
endif
if has("ebcdic")
  syn match helpHyperTextJump	"\\\@<!|[^"*|]\+|" contains=helpBar
  syn match helpHyperTextEntry	"\*[^"*|]\+\*\s"he=e-1 contains=helpStar
  syn match helpHyperTextEntry	"\*[^"*|]\+\*$" contains=helpStar
else
  syn match helpHyperTextJump	"\\\@<!|[#-)!+-~]\+|" contains=helpBar
  syn match helpHyperTextEntry	"\*[#-)!+-~]\+\*\s"he=e-1 contains=helpStar
  syn match helpHyperTextEntry	"\*[#-)!+-~]\+\*$" contains=helpStar
endif
if has("conceal")
  syn match helpBar		contained "|" conceal
  syn match helpBacktick	contained "`" conceal
  syn match helpStar		contained "\*" conceal
else
  syn match helpBar		contained "|"
  syn match helpBacktick	contained "`"
  syn match helpStar		contained "\*"
endif
syn match helpNormal		"|.*====*|"
syn match helpNormal		"|||"
syn match helpNormal		":|vim:|"	" for :help modeline
syn match helpVim		"\<Vim version [0-9][0-9.a-z]*"
syn match helpVim		"VIM REFERENCE.*"
syn match helpOption		"'[a-z]\{2,\}'"
syn match helpOption		"'t_..'"
syn match helpCommand		"`[^` \t]\+`"hs=s+1,he=e-1 contains=helpBacktick
syn match helpHeader		"\s*\zs.\{-}\ze\s\=\~$" nextgroup=helpIgnore
syn match helpGraphic		".* \ze`$" nextgroup=helpIgnore
if has("conceal")
  syn match helpIgnore		"." contained conceal
else
  syn match helpIgnore		"." contained
endif
syn keyword helpNote		note Note NOTE note: Note: NOTE: Notes Notes:
syn match helpSpecial		"\<N\>"
syn match helpSpecial		"\<N\.$"me=e-1
syn match helpSpecial		"\<N\.\s"me=e-2
syn match helpSpecial		"(N\>"ms=s+1
syn match helpSpecial		"\[N]"
" avoid highlighting N  N in help.txt
syn match helpSpecial		"N  N"he=s+1
syn match helpSpecial		"Nth"me=e-2
syn match helpSpecial		"N-1"me=e-2
syn match helpSpecial		"{[-a-zA-Z0-9'"*+/:%#=[\]<>.,]\+}"
syn match helpSpecial		"\s\[[-a-z^A-Z0-9_]\{2,}]"ms=s+1
syn match helpSpecial		"<[-a-zA-Z0-9_]\+>"
syn match helpSpecial		"<[SCM]-.>"
syn match helpNormal		"<---*>"
syn match helpSpecial		"\[range]"
syn match helpSpecial		"\[line]"
syn match helpSpecial		"\[count]"
syn match helpSpecial		"\[offset]"
syn match helpSpecial		"\[cmd]"
syn match helpSpecial		"\[num]"
syn match helpSpecial		"\[+num]"
syn match helpSpecial		"\[-num]"
syn match helpSpecial		"\[+cmd]"
syn match helpSpecial		"\[++opt]"
syn match helpSpecial		"\[arg]"
syn match helpSpecial		"\[arguments]"
syn match helpSpecial		"\[ident]"
syn match helpSpecial		"\[addr]"
syn match helpSpecial		"\[group]"
syn match helpSpecial		"CTRL-."
syn match helpSpecial		"CTRL-Break"
syn match helpSpecial		"CTRL-PageUp"
syn match helpSpecial		"CTRL-PageDown"
syn match helpSpecial		"CTRL-Insert"
syn match helpSpecial		"CTRL-Del"
syn match helpSpecial		"CTRL-{char}"
syn region helpNotVi		start="{Vi[: ]" start="{not" start="{only" end="}" contains=helpLeadBlank,helpHyperTextJump
syn match helpLeadBlank		"^\s\+" contained

" Highlight group items in their own color.
syn match helpComment		"\t[* ]Comment\t\+[a-z].*"
syn match helpConstant		"\t[* ]Constant\t\+[a-z].*"
syn match helpString		"\t[* ]String\t\+[a-z].*"
syn match helpCharacter		"\t[* ]Character\t\+[a-z].*"
syn match helpNumber		"\t[* ]Number\t\+[a-z].*"
syn match helpBoolean		"\t[* ]Boolean\t\+[a-z].*"
syn match helpFloat		"\t[* ]Float\t\+[a-z].*"
syn match helpIdentifier	"\t[* ]Identifier\t\+[a-z].*"
syn match helpFunction		"\t[* ]Function\t\+[a-z].*"
syn match helpStatement		"\t[* ]Statement\t\+[a-z].*"
syn match helpConditional	"\t[* ]Conditional\t\+[a-z].*"
syn match helpRepeat		"\t[* ]Repeat\t\+[a-z].*"
syn match helpLabel		"\t[* ]Label\t\+[a-z].*"
syn match helpOperator		"\t[* ]Operator\t\+["a-z].*"
syn match helpKeyword		"\t[* ]Keyword\t\+[a-z].*"
syn match helpException		"\t[* ]Exception\t\+[a-z].*"
syn match helpPreProc		"\t[* ]PreProc\t\+[a-z].*"
syn match helpInclude		"\t[* ]Include\t\+[a-z].*"
syn match helpDefine		"\t[* ]Define\t\+[a-z].*"
syn match helpMacro		"\t[* ]Macro\t\+[a-z].*"
syn match helpPreCondit		"\t[* ]PreCondit\t\+[a-z].*"
syn match helpType		"\t[* ]Type\t\+[a-z].*"
syn match helpStorageClass	"\t[* ]StorageClass\t\+[a-z].*"
syn match helpStructure		"\t[* ]Structure\t\+[a-z].*"
syn match helpTypedef		"\t[* ]Typedef\t\+[Aa-z].*"
syn match helpSpecial		"\t[* ]Special\t\+[a-z].*"
syn match helpSpecialChar	"\t[* ]SpecialChar\t\+[a-z].*"
syn match helpTag		"\t[* ]Tag\t\+[a-z].*"
syn match helpDelimiter		"\t[* ]Delimiter\t\+[a-z].*"
syn match helpSpecialComment	"\t[* ]SpecialComment\t\+[a-z].*"
syn match helpDebug		"\t[* ]Debug\t\+[a-z].*"
syn match helpUnderlined	"\t[* ]Underlined\t\+[a-z].*"
syn match helpError		"\t[* ]Error\t\+[a-z].*"
syn match helpTodo		"\t[* ]Todo\t\+[a-z].*"

syn match helpURL `\v<(((https?|ftp|gopher)://|(mailto|file|news):)[^' 	<>"]+|(www|web|w3)[a-z0-9_-]*\.[a-z0-9._-]+\.[^' 	<>"]+)[a-zA-Z0-9/]`

" Additionally load a language-specific syntax file "help_ab.vim".
let s:i = match(expand("%"), '\.\a\ax$')
if s:i > 0
  exe "runtime syntax/help_" . strpart(expand("%"), s:i + 1, 2) . ".vim"
endif

" Italian
if v:lang =~ '\<IT\>' || v:lang =~ '_IT\>' || v:lang =~? "italian"
  syn keyword helpNote		nota Nota NOTA nota: Nota: NOTA: notare Notare NOTARE notare: Notare: NOTARE:
  syn match helpSpecial		"Nma"me=e-2
  syn match helpSpecial		"Nme"me=e-2
  syn match helpSpecial		"Nmi"me=e-2
  syn match helpSpecial		"Nmo"me=e-2
  syn match helpSpecial		"\[interv.]"
  syn region helpNotVi		start="{non" start="{solo" start="{disponibile" end="}" contains=helpLeadBlank,helpHyperTextJump
endif

syn sync minlines=40


" Define the default highlighting.
" Only used when an item doesn't have highlighting yet
hi def link helpIgnore		Ignore
hi def link helpHyperTextJump	Identifier
hi def link helpBar		Ignore
hi def link helpBacktick	Ignore
hi def link helpStar		Ignore
hi def link helpHyperTextEntry	String
hi def link helpHeadline	Statement
hi def link helpHeader		PreProc
hi def link helpSectionDelim	PreProc
hi def link helpVim		Identifier
hi def link helpCommand		Comment
hi def link helpExample		Comment
hi def link helpOption		Type
hi def link helpNotVi		Special
hi def link helpSpecial		Special
hi def link helpNote		Todo

hi def link helpComment		Comment
hi def link helpConstant	Constant
hi def link helpString		String
hi def link helpCharacter	Character
hi def link helpNumber		Number
hi def link helpBoolean		Boolean
hi def link helpFloat		Float
hi def link helpIdentifier	Identifier
hi def link helpFunction	Function
hi def link helpStatement	Statement
hi def link helpConditional	Conditional
hi def link helpRepeat		Repeat
hi def link helpLabel		Label
hi def link helpOperator	Operator
hi def link helpKeyword		Keyword
hi def link helpException	Exception
hi def link helpPreProc		PreProc
hi def link helpInclude		Include
hi def link helpDefine		Define
hi def link helpMacro		Macro
hi def link helpPreCondit	PreCondit
hi def link helpType		Type
hi def link helpStorageClass	StorageClass
hi def link helpStructure	Structure
hi def link helpTypedef		Typedef
hi def link helpSpecialChar	SpecialChar
hi def link helpTag		Tag
hi def link helpDelimiter	Delimiter
hi def link helpSpecialComment	SpecialComment
hi def link helpDebug		Debug
hi def link helpUnderlined	Underlined
hi def link helpError		Error
hi def link helpTodo		Todo
hi def link helpURL		String

let b:current_syntax = "help"

let &cpo = s:cpo_save
unlet s:cpo_save
" vim: ts=8 sw=2
                                                                                                                                                                                                                                                                                @  " Vim syntax file
" Language:	HTML
" Maintainer:	Claudio Fleiner <claudio@fleiner.com>
" URL:		http://www.fleiner.com/vim/syntax/html.vim
" Last Change:	2012 Oct 05

" Please check :help html.vim for some comments and a description of the options

" For version 5.x: Clear all syntax items
" For version 6.x: Quit when a syntax file was already loaded
if !exists("main_syntax")
  if version < 600
    syntax clear
  elseif exists("b:current_syntax")
    finish
  endif
  let main_syntax = 'html'
endif

let s:cpo_save = &cpo
set cpo&vim

" don't use standard HiLink, it will not work with included syntax files
if version < 508
  command! -nargs=+ HtmlHiLink hi link <args>
else
  command! -nargs=+ HtmlHiLink hi def link <args>
endif

syntax spell toplevel

syn case ignore

" mark illegal characters
syn match htmlError "[<>&]"


" tags
syn region  htmlString   contained start=+"+ end=+"+ contains=htmlSpecialChar,javaScriptExpression,@htmlPreproc
syn region  htmlString   contained start=+'+ end=+'+ contains=htmlSpecialChar,javaScriptExpression,@htmlPreproc
syn match   htmlValue    contained "=[\t ]*[^'" \t>][^ \t>]*"hs=s+1   contains=javaScriptExpression,@htmlPreproc
syn region  htmlEndTag             start=+</+      end=+>+ contains=htmlTagN,htmlTagError
syn region  htmlTag                start=+<[^/]+   end=+>+ fold contains=htmlTagN,htmlString,htmlArg,htmlValue,htmlTagError,htmlEvent,htmlCssDefinition,@htmlPreproc,@htmlArgCluster
syn match   htmlTagN     contained +<\s*[-a-zA-Z0-9]\++hs=s+1 contains=htmlTagName,htmlSpecialTagName,@htmlTagNameCluster
syn match   htmlTagN     contained +</\s*[-a-zA-Z0-9]\++hs=s+2 contains=htmlTagName,htmlSpecialTagName,@htmlTagNameCluster
syn match   htmlTagError contained "[^>]<"ms=s+1


" tag names
syn keyword htmlTagName contained address applet area a base basefont
syn keyword htmlTagName contained big blockquote br caption center
syn keyword htmlTagName contained cite code dd dfn dir div dl dt font
syn keyword htmlTagName contained form hr html img
syn keyword htmlTagName contained input isindex kbd li link map menu
syn keyword htmlTagName contained meta ol option param pre p samp span
syn keyword htmlTagName contained select small strike sub sup
syn keyword htmlTagName contained table td textarea th tr tt ul var xmp
syn match htmlTagName contained "\<\(b\|i\|u\|h[1-6]\|em\|strong\|head\|body\|title\)\>"

" new html 4.0 tags
syn keyword htmlTagName contained abbr acronym bdo button col label
syn keyword htmlTagName contained colgroup del fieldset iframe ins legend
syn keyword htmlTagName contained object optgroup q s tbody tfoot thead

" legal arg names
syn keyword htmlArg contained action
syn keyword htmlArg contained align alink alt archive background bgcolor
syn keyword htmlArg contained border bordercolor cellpadding
syn keyword htmlArg contained cellspacing checked class clear code codebase color
syn keyword htmlArg contained cols colspan content coords enctype face
syn keyword htmlArg contained gutter height hspace id
syn keyword htmlArg contained link lowsrc marginheight
syn keyword htmlArg contained marginwidth maxlength method name prompt
syn keyword htmlArg contained rel rev rows rowspan scrolling selected shape
syn keyword htmlArg contained size src start target text type url
syn keyword htmlArg contained usemap ismap valign value vlink vspace width wrap
syn match   htmlArg contained "\<\(http-equiv\|href\|title\)="me=e-1

" Netscape extensions
syn keyword htmlTagName contained frame noframes frameset nobr blink
syn keyword htmlTagName contained layer ilayer nolayer spacer
syn keyword htmlArg     contained frameborder noresize pagex pagey above below
syn keyword htmlArg     contained left top visibility clip id noshade
syn match   htmlArg     contained "\<z-index\>"

" Microsoft extensions
syn keyword htmlTagName contained marquee

" html 4.0 arg names
syn match   htmlArg contained "\<\(accept-charset\|label\)\>"
syn keyword htmlArg contained abbr accept accesskey axis char charoff charset
syn keyword htmlArg contained cite classid codetype compact data datetime
syn keyword htmlArg contained declare defer dir disabled for frame
syn keyword htmlArg contained headers hreflang lang language longdesc
syn keyword htmlArg contained multiple nohref nowrap object profile readonly
syn keyword htmlArg contained rules scheme scope span standby style
syn keyword htmlArg contained summary tabindex valuetype version

" special characters
syn match htmlSpecialChar "&#\=[0-9A-Za-z]\{1,8};"

" Comments (the real ones or the old netscape ones)
if exists("html_wrong_comments")
  syn region htmlComment                start=+<!--+    end=+--\s*>+ contains=@Spell
else
  syn region htmlComment                start=+<!+      end=+>+   contains=htmlCommentPart,htmlCommentError,@Spell
  syn match  htmlCommentError contained "[^><!]"
  syn region htmlCommentPart  contained start=+--+      end=+--\s*+  contains=@htmlPreProc,@Spell
endif
syn region htmlComment                  start=+<!DOCTYPE+ keepend end=+>+

" server-parsed commands
syn region htmlPreProc start=+<!--#+ end=+-->+ contains=htmlPreStmt,htmlPreError,htmlPreAttr
syn match htmlPreStmt contained "<!--#\(config\|echo\|exec\|fsize\|flastmod\|include\|printenv\|set\|if\|elif\|else\|endif\|geoguide\)\>"
syn match htmlPreError contained "<!--#\S*"ms=s+4
syn match htmlPreAttr contained "\w\+=[^"]\S\+" contains=htmlPreProcAttrError,htmlPreProcAttrName
syn region htmlPreAttr contained start=+\w\+="+ skip=+\\\\\|\\"+ end=+"+ contains=htmlPreProcAttrName keepend
syn match htmlPreProcAttrError contained "\w\+="he=e-1
syn match htmlPreProcAttrName contained "\(expr\|errmsg\|sizefmt\|timefmt\|var\|cgi\|cmd\|file\|virtual\|value\)="he=e-1

if !exists("html_no_rendering")
  " rendering
  syn cluster htmlTop contains=@Spell,htmlTag,htmlEndTag,htmlSpecialChar,htmlPreProc,htmlComment,htmlLink,javaScript,@htmlPreproc

  syn region htmlBold start="<b\>" end="</b>"me=e-4 contains=@htmlTop,htmlBoldUnderline,htmlBoldItalic
  syn region htmlBold start="<strong\>" end="</strong>"me=e-9 contains=@htmlTop,htmlBoldUnderline,htmlBoldItalic
  syn region htmlBoldUnderline contained start="<u\>" end="</u>"me=e-4 contains=@htmlTop,htmlBoldUnderlineItalic
  syn region htmlBoldItalic contained start="<i\>" end="</i>"me=e-4 contains=@htmlTop,htmlBoldItalicUnderline
  syn region htmlBoldItalic contained start="<em\>" end="</em>"me=e-5 contains=@htmlTop,htmlBoldItalicUnderline
  syn region htmlBoldUnderlineItalic contained start="<i\>" end="</i>"me=e-4 contains=@htmlTop
  syn region htmlBoldUnderlineItalic contained start="<em\>" end="</em>"me=e-5 contains=@htmlTop
  syn region htmlBoldItalicUnderline contained start="<u\>" end="</u>"me=e-4 contains=@htmlTop,htmlBoldUnderlineItalic

  syn region htmlUnderline start="<u\>" end="</u>"me=e-4 contains=@htmlTop,htmlUnderlineBold,htmlUnderlineItalic
  syn region htmlUnderlineBold contained start="<b\>" end="</b>"me=e-4 contains=@htmlTop,htmlUnderlineBoldItalic
  syn region htmlUnderlineBold contained start="<strong\>" end="</strong>"me=e-9 contains=@htmlTop,htmlUnderlineBoldItalic
  syn region htmlUnderlineItalic contained start="<i\>" end="</i>"me=e-4 contains=@htmlTop,htmlUnderlineItalicBold
  syn region htmlUnderlineItalic contained start="<em\>" end="</em>"me=e-5 contains=@htmlTop,htmlUnderlineItalicBold
  syn region htmlUnderlineItalicBold contained start="<b\>" end="</b>"me=e-4 contains=@htmlTop
  syn region htmlUnderlineItalicBold contained start="<strong\>" end="</strong>"me=e-9 contains=@htmlTop
  syn region htmlUnderlineBoldItalic contained start="<i\>" end="</i>"me=e-4 contains=@htmlTop
  syn region htmlUnderlineBoldItalic contained start="<em\>" end="</em>"me=e-5 contains=@htmlTop

  syn region htmlItalic start="<i\>" end="</i>"me=e-4 contains=@htmlTop,htmlItalicBold,htmlItalicUnderline
  syn region htmlItalic start="<em\>" end="</em>"me=e-5 contains=@htmlTop
  syn region htmlItalicBold contained start="<b\>" end="</b>"me=e-4 contains=@htmlTop,htmlItalicBoldUnderline
  syn region htmlItalicBold contained start="<strong\>" end="</strong>"me=e-9 contains=@htmlTop,htmlItalicBoldUnderline
  syn region htmlItalicBoldUnderline contained start="<u\>" end="</u>"me=e-4 contains=@htmlTop
  syn region htmlItalicUnderline contained start="<u\>" end="</u>"me=e-4 contains=@htmlTop,htmlItalicUnderlineBold
  syn region htmlItalicUnderlineBold contained start="<b\>" end="</b>"me=e-4 contains=@htmlTop
  syn region htmlItalicUnderlineBold contained start="<strong\>" end="</strong>"me=e-9 contains=@htmlTop

  syn match htmlLeadingSpace "^\s\+" contained
  syn region htmlLink start="<a\>\_[^>]*\<href\>" end="</a>"me=e-4 contains=@Spell,htmlTag,htmlEndTag,htmlSpecialChar,htmlPreProc,htmlComment,htmlLeadingSpace,javaScript,@htmlPreproc
  syn region htmlH1 start="<h1\>" end="</h1>"me=e-5 contains=@htmlTop
  syn region htmlH2 start="<h2\>" end="</h2>"me=e-5 contains=@htmlTop
  syn region htmlH3 start="<h3\>" end="</h3>"me=e-5 contains=@htmlTop
  syn region htmlH4 start="<h4\>" end="</h4>"me=e-5 contains=@htmlTop
  syn region htmlH5 start="<h5\>" end="</h5>"me=e-5 contains=@htmlTop
  syn region htmlH6 start="<h6\>" end="</h6>"me=e-5 contains=@htmlTop
  syn region htmlHead start="<head\>" end="</head>"me=e-7 end="<body\>"me=e-5 end="<h[1-6]\>"me=e-3 contains=htmlTag,htmlEndTag,htmlSpecialChar,htmlPreProc,htmlComment,htmlLink,htmlTitle,javaScript,cssStyle,@htmlPreproc
  syn region htmlTitle start="<title\>" end="</title>"me=e-8 contains=htmlTag,htmlEndTag,htmlSpecialChar,htmlPreProc,htmlComment,javaScript,@htmlPreproc
endif

syn keyword htmlTagName         contained noscript
syn keyword htmlSpecialTagName  contained script style
if main_syntax != 'java' || exists("java_javascript")
  " JAVA SCRIPT
  syn include @htmlJavaScript syntax/javascript.vim
  unlet b:current_syntax
  syn region  javaScript start=+<script\_[^>]*>+ keepend end=+</script>+me=s-1 contains=@htmlJavaScript,htmlCssStyleComment,htmlScriptTag,@htmlPreproc
  syn region  htmlScriptTag     contained start=+<script+ end=+>+ fold contains=htmlTagN,htmlString,htmlArg,htmlValue,htmlTagError,htmlEvent
  HtmlHiLink htmlScriptTag htmlTag

  " html events (i.e. arguments that include javascript commands)
  if exists("html_extended_events")
    syn region htmlEvent        contained start=+\<on\a\+\s*=[\t ]*'+ end=+'+ contains=htmlEventSQ
    syn region htmlEvent        contained start=+\<on\a\+\s*=[\t ]*"+ end=+"+ contains=htmlEventDQ
  else
    syn region htmlEvent        contained start=+\<on\a\+\s*=[\t ]*'+ end=+'+ keepend contains=htmlEventSQ
    syn region htmlEvent        contained start=+\<on\a\+\s*=[\t ]*"+ end=+"+ keepend contains=htmlEventDQ
  endif
  syn region htmlEventSQ        contained start=+'+ms=s+1 end=+'+me=s-1 contains=@htmlJavaScript
  syn region htmlEventDQ        contained start=+"+ms=s+1 end=+"+me=s-1 contains=@htmlJavaScript
  HtmlHiLink htmlEventSQ htmlEvent
  HtmlHiLink htmlEventDQ htmlEvent

  " a javascript expression is used as an arg value
  syn region  javaScriptExpression contained start=+&{+ keepend end=+};+ contains=@htmlJavaScript,@htmlPreproc
endif

if main_syntax != 'java' || exists("java_vb")
  " VB SCRIPT
  syn include @htmlVbScript syntax/vb.vim
  unlet b:current_syntax
  syn region  javaScript start=+<script \_[^>]*language *=\_[^>]*vbscript\_[^>]*>+ keepend end=+</script>+me=s-1 contains=@htmlVbScript,htmlCssStyleComment,htmlScriptTag,@htmlPreproc
endif

syn cluster htmlJavaScript      add=@htmlPreproc

if main_syntax != 'java' || exists("java_css")
  " embedded style sheets
  syn keyword htmlArg           contained media
  syn include @htmlCss syntax/css.vim
  unlet b:current_syntax
  syn region cssStyle start=+<style+ keepend end=+</style>+ contains=@htmlCss,htmlTag,htmlEndTag,htmlCssStyleComment,@htmlPreproc
  syn match htmlCssStyleComment contained "\(<!--\|-->\)"
  syn region htmlCssDefinition matchgroup=htmlArg start='style="' keepend matchgroup=htmlString end='"' contains=css.*Attr,css.*Prop,cssComment,cssLength,cssColor,cssURL,cssImportant,cssError,cssString,@htmlPreproc
  HtmlHiLink htmlStyleArg htmlString
endif

if main_syntax == "html"
  " synchronizing (does not always work if a comment includes legal
  " html tags, but doing it right would mean to always start
  " at the first line, which is too slow)
  syn sync match htmlHighlight groupthere NONE "<[/a-zA-Z]"
  syn sync match htmlHighlight groupthere javaScript "<script"
  syn sync match htmlHighlightSkip "^.*['\"].*$"
  syn sync minlines=10
endif

" The default highlighting.
if version >= 508 || !exists("did_html_syn_inits")
  if version < 508
    let did_html_syn_inits = 1
  endif
  HtmlHiLink htmlTag                     Function
  HtmlHiLink htmlEndTag                  Identifier
  HtmlHiLink htmlArg                     Type
  HtmlHiLink htmlTagName                 htmlStatement
  HtmlHiLink htmlSpecialTagName          Exception
  HtmlHiLink htmlValue                     String
  HtmlHiLink htmlSpecialChar             Special
  
  if !exists("html_no_rendering")
    HtmlHiLink htmlH1                      Title
    HtmlHiLink htmlH2                      htmlH1
    HtmlHiLink htmlH3                      htmlH2
    HtmlHiLink htmlH4                      htmlH3
    HtmlHiLink htmlH5                      htmlH4
    HtmlHiLink htmlH6                      htmlH5
    HtmlHiLink htmlHead                    PreProc
    HtmlHiLink htmlTitle                   Title
    HtmlHiLink htmlBoldItalicUnderline     htmlBoldUnderlineItalic
    HtmlHiLink htmlUnderlineBold           htmlBoldUnderline
    HtmlHiLink htmlUnderlineItalicBold     htmlBoldUnderlineItalic
    HtmlHiLink htmlUnderlineBoldItalic     htmlBoldUnderlineItalic
    HtmlHiLink htmlItalicUnderline         htmlUnderlineItalic
    HtmlHiLink htmlItalicBold              htmlBoldItalic
    HtmlHiLink htmlItalicBoldUnderline     htmlBoldUnderlineItalic
    HtmlHiLink htmlItalicUnderlineBold     htmlBoldUnderlineItalic
    HtmlHiLink htmlLink                    Underlined
    HtmlHiLink htmlLeadingSpace            None
    if !exists("html_my_rendering")
      hi def htmlBold                term=bold cterm=bold gui=bold
      hi def htmlBoldUnderline       term=bold,underline cterm=bold,underline gui=bold,underline
      hi def htmlBoldItalic          term=bold,italic cterm=bold,italic gui=bold,italic
      hi def htmlBoldUnderlineItalic term=bold,italic,underline cterm=bold,italic,underline gui=bold,italic,underline
      hi def htmlUnderline           term=underline cterm=underline gui=underline
      hi def htmlUnderlineItalic     term=italic,underline cterm=italic,underline gui=italic,underline
      hi def htmlItalic              term=italic cterm=italic gui=italic
    endif
  endif
  
  HtmlHiLink htmlPreStmt            PreProc
  HtmlHiLink htmlPreError           Error
  HtmlHiLink htmlPreProc            PreProc
  HtmlHiLink htmlPreAttr            String
  HtmlHiLink htmlPreProcAttrName    PreProc
  HtmlHiLink htmlPreProcAttrError   Error
  HtmlHiLink htmlSpecial            Special
  HtmlHiLink htmlSpecialChar        Special
  HtmlHiLink htmlString             String
  HtmlHiLink htmlStatement          Statement
  HtmlHiLink htmlComment            Comment
  HtmlHiLink htmlCommentPart        Comment
  HtmlHiLink htmlValue              String
  HtmlHiLink htmlCommentError       htmlError
  HtmlHiLink htmlTagError           htmlError
  HtmlHiLink htmlEvent              javaScript
  HtmlHiLink htmlError              Error
  
  HtmlHiLink javaScript             Special
  HtmlHiLink javaScriptExpression   javaScript
  HtmlHiLink htmlCssStyleComment    Comment
  HtmlHiLink htmlCssDefinition      Special
endif

delcommand HtmlHiLink

let b:current_syntax = "html"

if main_syntax == 'html'
  unlet main_syntax
endif

let &cpo = s:cpo_save
unlet s:cpo_save
" vim: ts=8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      P  " Vim syntax file
" Language:	Java
" Maintainer:	Claudio Fleiner <claudio@fleiner.com>
" URL:		http://www.fleiner.com/vim/syntax/java.vim
" Last Change:	2012 Oct 05

" Please check :help java.vim for comments on some of the options available.

" Quit when a syntax file was already loaded
if !exists("main_syntax")
  if version < 600
    syntax clear
  elseif exists("b:current_syntax")
    finish
  endif
  " we define it here so that included files can test for it
  let main_syntax='java'
  syn region javaFold start="{" end="}" transparent fold
endif

let s:cpo_save = &cpo
set cpo&vim

" don't use standard HiLink, it will not work with included syntax files
if version < 508
  command! -nargs=+ JavaHiLink hi link <args>
else
  command! -nargs=+ JavaHiLink hi def link <args>
endif

" some characters that cannot be in a java program (outside a string)
syn match javaError "[\\@`]"
syn match javaError "<<<\|\.\.\|=>\|||=\|&&=\|[^-]->\|\*\/"

syn match javaOK "\.\.\."

" use separate name so that it can be deleted in javacc.vim
syn match   javaError2 "#\|=<"
JavaHiLink javaError2 javaError



" keyword definitions
syn keyword javaExternal	native package
syn match javaExternal		"\<import\>\(\s\+static\>\)\?"
syn keyword javaError		goto const
syn keyword javaConditional	if else switch
syn keyword javaRepeat		while for do
syn keyword javaBoolean		true false
syn keyword javaConstant	null
syn keyword javaTypedef		this super
syn keyword javaOperator	new instanceof
syn keyword javaType		boolean char byte short int long float double
syn keyword javaType		void
syn keyword javaStatement	return
syn keyword javaStorageClass	static synchronized transient volatile final strictfp serializable
syn keyword javaExceptions	throw try catch finally
syn keyword javaAssert		assert
syn keyword javaMethodDecl	synchronized throws
syn keyword javaClassDecl	extends implements interface
" to differentiate the keyword class from MyClass.class we use a match here
syn match   javaTypedef		"\.\s*\<class\>"ms=s+1
syn keyword javaClassDecl	enum
syn match   javaClassDecl	"^class\>"
syn match   javaClassDecl	"[^.]\s*\<class\>"ms=s+1
syn match   javaAnnotation	"@\([_$a-zA-Z][_$a-zA-Z0-9]*\.\)*[_$a-zA-Z][_$a-zA-Z0-9]*\>"
syn match   javaClassDecl	"@interface\>"
syn keyword javaBranch		break continue nextgroup=javaUserLabelRef skipwhite
syn match   javaUserLabelRef	"\k\+" contained
syn match   javaVarArg		"\.\.\."
syn keyword javaScopeDecl	public protected private abstract

if exists("java_highlight_java_lang_ids")
  let java_highlight_all=1
endif
if exists("java_highlight_all")  || exists("java_highlight_java")  || exists("java_highlight_java_lang") 
  " java.lang.*
  syn match javaLangClass "\<System\>"
  syn keyword javaR_JavaLang NegativeArraySizeException ArrayStoreException IllegalStateException RuntimeException IndexOutOfBoundsException UnsupportedOperationException ArrayIndexOutOfBoundsException ArithmeticException ClassCastException EnumConstantNotPresentException StringIndexOutOfBoundsException IllegalArgumentException IllegalMonitorStateException IllegalThreadStateException NumberFormatException NullPointerException TypeNotPresentException SecurityException
  syn cluster javaTop add=javaR_JavaLang
  syn cluster javaClasses add=javaR_JavaLang
  JavaHiLink javaR_JavaLang javaR_Java
  syn keyword javaC_JavaLang Process RuntimePermission StringKeySet CharacterData01 Class ThreadLocal ThreadLocalMap CharacterData0E Package Character StringCoding Long ProcessImpl ProcessEnvironment Short AssertionStatusDirectives 1PackageInfoProxy UnicodeBlock InheritableThreadLocal AbstractStringBuilder StringEnvironment ClassLoader ConditionalSpecialCasing CharacterDataPrivateUse StringBuffer StringDecoder Entry StringEntry WrappedHook StringBuilder StrictMath State ThreadGroup Runtime CharacterData02 MethodArray Object CharacterDataUndefined Integer Gate Boolean Enum Variable Subset StringEncoder Void Terminator CharsetSD IntegerCache CharacterCache Byte CharsetSE Thread SystemClassLoaderAction CharacterDataLatin1 StringValues StackTraceElement Shutdown ShortCache String ConverterSD ByteCache Lock EnclosingMethodInfo Math Float Value Double SecurityManager LongCache ProcessBuilder StringEntrySet Compiler Number UNIXProcess ConverterSE ExternalData CaseInsensitiveComparator CharacterData00 NativeLibrary
  syn cluster javaTop add=javaC_JavaLang
  syn cluster javaClasses add=javaC_JavaLang
  JavaHiLink javaC_JavaLang javaC_Java
  syn keyword javaE_JavaLang IncompatibleClassChangeError InternalError UnknownError ClassCircularityError AssertionError ThreadDeath IllegalAccessError NoClassDefFoundError ClassFormatError UnsupportedClassVersionError NoSuchFieldError VerifyError ExceptionInInitializerError InstantiationError LinkageError NoSuchMethodError Error UnsatisfiedLinkError StackOverflowError AbstractMethodError VirtualMachineError OutOfMemoryError
  syn cluster javaTop add=javaE_JavaLang
  syn cluster javaClasses add=javaE_JavaLang
  JavaHiLink javaE_JavaLang javaE_Java
  syn keyword javaX_JavaLang CloneNotSupportedException Exception NoSuchMethodException IllegalAccessException NoSuchFieldException Throwable InterruptedException ClassNotFoundException InstantiationException
  syn cluster javaTop add=javaX_JavaLang
  syn cluster javaClasses add=javaX_JavaLang
  JavaHiLink javaX_JavaLang javaX_Java

  JavaHiLink javaR_Java javaR_
  JavaHiLink javaC_Java javaC_
  JavaHiLink javaE_Java javaE_
  JavaHiLink javaX_Java javaX_
  JavaHiLink javaX_		     javaExceptions
  JavaHiLink javaR_		     javaExceptions
  JavaHiLink javaE_		     javaExceptions
  JavaHiLink javaC_		     javaConstant

  syn keyword javaLangObject clone equals finalize getClass hashCode
  syn keyword javaLangObject notify notifyAll toString wait
  JavaHiLink javaLangObject		     javaConstant
  syn cluster javaTop add=javaLangObject
endif

if filereadable(expand("<sfile>:p:h")."/javaid.vim")
  source <sfile>:p:h/javaid.vim
endif

if exists("java_space_errors")
  if !exists("java_no_trail_space_error")
    syn match	javaSpaceError	"\s\+$"
  endif
  if !exists("java_no_tab_space_error")
    syn match	javaSpaceError	" \+\t"me=e-1
  endif
endif

syn region  javaLabelRegion	transparent matchgroup=javaLabel start="\<case\>" matchgroup=NONE end=":" contains=javaNumber,javaCharacter
syn match   javaUserLabel	"^\s*[_$a-zA-Z][_$a-zA-Z0-9_]*\s*:"he=e-1 contains=javaLabel
syn keyword javaLabel		default

" highlighting C++ keywords as errors removed, too many people find it
" annoying.  Was: if !exists("java_allow_cpp_keywords")

" The following cluster contains all java groups except the contained ones
syn cluster javaTop add=javaExternal,javaError,javaError,javaBranch,javaLabelRegion,javaLabel,javaConditional,javaRepeat,javaBoolean,javaConstant,javaTypedef,javaOperator,javaType,javaType,javaStatement,javaStorageClass,javaAssert,javaExceptions,javaMethodDecl,javaClassDecl,javaClassDecl,javaClassDecl,javaScopeDecl,javaError,javaError2,javaUserLabel,javaLangObject,javaAnnotation,javaVarArg


" Comments
syn keyword javaTodo		 contained TODO FIXME XXX
if exists("java_comment_strings")
  syn region  javaCommentString    contained start=+"+ end=+"+ end=+$+ end=+\*/+me=s-1,he=s-1 contains=javaSpecial,javaCommentStar,javaSpecialChar,@Spell
  syn region  javaComment2String   contained start=+"+	end=+$\|"+  contains=javaSpecial,javaSpecialChar,@Spell
  syn match   javaCommentCharacter contained "'\\[^']\{1,6\}'" contains=javaSpecialChar
  syn match   javaCommentCharacter contained "'\\''" contains=javaSpecialChar
  syn match   javaCommentCharacter contained "'[^\\]'"
  syn cluster javaCommentSpecial add=javaCommentString,javaCommentCharacter,javaNumber
  syn cluster javaCommentSpecial2 add=javaComment2String,javaCommentCharacter,javaNumber
endif
syn region  javaComment		 start="/\*"  end="\*/" contains=@javaCommentSpecial,javaTodo,@Spell
syn match   javaCommentStar	 contained "^\s*\*[^/]"me=e-1
syn match   javaCommentStar	 contained "^\s*\*$"
syn match   javaLineComment	 "//.*" contains=@javaCommentSpecial2,javaTodo,@Spell
JavaHiLink javaCommentString javaString
JavaHiLink javaComment2String javaString
JavaHiLink javaCommentCharacter javaCharacter

syn cluster javaTop add=javaComment,javaLineComment

if !exists("java_ignore_javadoc") && main_syntax != 'jsp'
  syntax case ignore
  " syntax coloring for javadoc comments (HTML)
  syntax include @javaHtml <sfile>:p:h/html.vim
  unlet b:current_syntax
  " HTML enables spell checking for all text that is not in a syntax item. This
  " is wrong for Java (all identifiers would be spell-checked), so it's undone
  " here.
  syntax spell default

  syn region  javaDocComment	start="/\*\*"  end="\*/" keepend contains=javaCommentTitle,@javaHtml,javaDocTags,javaDocSeeTag,javaTodo,@Spell
  syn region  javaCommentTitle	contained matchgroup=javaDocComment start="/\*\*"   matchgroup=javaCommentTitle keepend end="\.$" end="\.[ \t\r<&]"me=e-1 end="[^{]@"me=s-2,he=s-1 end="\*/"me=s-1,he=s-1 contains=@javaHtml,javaCommentStar,javaTodo,@Spell,javaDocTags,javaDocSeeTag

  syn region javaDocTags	 contained start="{@\(code\|link\|linkplain\|inherit[Dd]oc\|doc[rR]oot\|value\)" end="}"
  syn match  javaDocTags	 contained "@\(param\|exception\|throws\|since\)\s\+\S\+" contains=javaDocParam
  syn match  javaDocParam	 contained "\s\S\+"
  syn match  javaDocTags	 contained "@\(version\|author\|return\|deprecated\|serial\|serialField\|serialData\)\>"
  syn region javaDocSeeTag	 contained matchgroup=javaDocTags start="@see\s\+" matchgroup=NONE end="\_."re=e-1 contains=javaDocSeeTagParam
  syn match  javaDocSeeTagParam  contained @"\_[^"]\+"\|<a\s\+\_.\{-}</a>\|\(\k\|\.\)*\(#\k\+\((\_[^)]\+)\)\=\)\=@ extend
  syntax case match
endif

" match the special comment /**/
syn match   javaComment		 "/\*\*/"

" Strings and constants
syn match   javaSpecialError	 contained "\\."
syn match   javaSpecialCharError contained "[^']"
syn match   javaSpecialChar	 contained "\\\([4-9]\d\|[0-3]\d\d\|[\"\\'ntbrf]\|u\x\{4\}\)"
syn region  javaString		start=+"+ end=+"+ end=+$+ contains=javaSpecialChar,javaSpecialError,@Spell
" next line disabled, it can cause a crash for a long line
"syn match   javaStringError	  +"\([^"\\]\|\\.\)*$+
syn match   javaCharacter	 "'[^']*'" contains=javaSpecialChar,javaSpecialCharError
syn match   javaCharacter	 "'\\''" contains=javaSpecialChar
syn match   javaCharacter	 "'[^\\]'"
syn match   javaNumber		 "\<\(0[0-7]*\|0[xX]\x\+\|\d\+\)[lL]\=\>"
syn match   javaNumber		 "\(\<\d\+\.\d*\|\.\d\+\)\([eE][-+]\=\d\+\)\=[fFdD]\="
syn match   javaNumber		 "\<\d\+[eE][-+]\=\d\+[fFdD]\=\>"
syn match   javaNumber		 "\<\d\+\([eE][-+]\=\d\+\)\=[fFdD]\>"

" unicode characters
syn match   javaSpecial "\\u\d\{4\}"

syn cluster javaTop add=javaString,javaCharacter,javaNumber,javaSpecial,javaStringError

if exists("java_highlight_functions")
  if java_highlight_functions == "indent"
    syn match  javaFuncDef "^\(\t\| \{8\}\)[_$a-zA-Z][_$a-zA-Z0-9_. \[\]]*([^-+*/()]*)" contains=javaScopeDecl,javaType,javaStorageClass,@javaClasses
    syn region javaFuncDef start=+^\(\t\| \{8\}\)[$_a-zA-Z][$_a-zA-Z0-9_. \[\]]*([^-+*/()]*,\s*+ end=+)+ contains=javaScopeDecl,javaType,javaStorageClass,@javaClasses
    syn match  javaFuncDef "^  [$_a-zA-Z][$_a-zA-Z0-9_. \[\]]*([^-+*/()]*)" contains=javaScopeDecl,javaType,javaStorageClass,@javaClasses
    syn region javaFuncDef start=+^  [$_a-zA-Z][$_a-zA-Z0-9_. \[\]]*([^-+*/()]*,\s*+ end=+)+ contains=javaScopeDecl,javaType,javaStorageClass,@javaClasses
  else
    " This line catches method declarations at any indentation>0, but it assumes
    " two things:
    "	1. class names are always capitalized (ie: Button)
    "	2. method names are never capitalized (except constructors, of course)
    syn region javaFuncDef start=+^\s\+\(\(public\|protected\|private\|static\|abstract\|final\|native\|synchronized\)\s\+\)*\(\(void\|boolean\|char\|byte\|short\|int\|long\|float\|double\|\([A-Za-z_][A-Za-z0-9_$]*\.\)*[A-Z][A-Za-z0-9_$]*\)\(<[^>]*>\)\=\(\[\]\)*\s\+[a-z][A-Za-z0-9_$]*\|[A-Z][A-Za-z0-9_$]*\)\s*([^0-9]+ end=+)+ contains=javaScopeDecl,javaType,javaStorageClass,javaComment,javaLineComment,@javaClasses
  endif
  syn match  javaBraces  "[{}]"
  syn cluster javaTop add=javaFuncDef,javaBraces
endif

if exists("java_highlight_debug")

  " Strings and constants
  syn match   javaDebugSpecial		contained "\\\d\d\d\|\\."
  syn region  javaDebugString		contained start=+"+  end=+"+  contains=javaDebugSpecial
  syn match   javaDebugStringError	+"\([^"\\]\|\\.\)*$+
  syn match   javaDebugCharacter	contained "'[^\\]'"
  syn match   javaDebugSpecialCharacter contained "'\\.'"
  syn match   javaDebugSpecialCharacter contained "'\\''"
  syn match   javaDebugNumber		contained "\<\(0[0-7]*\|0[xX]\x\+\|\d\+\)[lL]\=\>"
  syn match   javaDebugNumber		contained "\(\<\d\+\.\d*\|\.\d\+\)\([eE][-+]\=\d\+\)\=[fFdD]\="
  syn match   javaDebugNumber		contained "\<\d\+[eE][-+]\=\d\+[fFdD]\=\>"
  syn match   javaDebugNumber		contained "\<\d\+\([eE][-+]\=\d\+\)\=[fFdD]\>"
  syn keyword javaDebugBoolean		contained true false
  syn keyword javaDebugType		contained null this super
  syn region javaDebugParen  start=+(+ end=+)+ contained contains=javaDebug.*,javaDebugParen

  " to make this work you must define the highlighting for these groups
  syn match javaDebug "\<System\.\(out\|err\)\.print\(ln\)*\s*("me=e-1 contains=javaDebug.* nextgroup=javaDebugParen
  syn match javaDebug "\<p\s*("me=e-1 contains=javaDebug.* nextgroup=javaDebugParen
  syn match javaDebug "[A-Za-z][a-zA-Z0-9_]*\.printStackTrace\s*("me=e-1 contains=javaDebug.* nextgroup=javaDebugParen
  syn match javaDebug "\<trace[SL]\=\s*("me=e-1 contains=javaDebug.* nextgroup=javaDebugParen

  syn cluster javaTop add=javaDebug

  if version >= 508 || !exists("did_c_syn_inits")
    JavaHiLink javaDebug		 Debug
    JavaHiLink javaDebugString		 DebugString
    JavaHiLink javaDebugStringError	 javaError
    JavaHiLink javaDebugType		 DebugType
    JavaHiLink javaDebugBoolean		 DebugBoolean
    JavaHiLink javaDebugNumber		 Debug
    JavaHiLink javaDebugSpecial		 DebugSpecial
    JavaHiLink javaDebugSpecialCharacter DebugSpecial
    JavaHiLink javaDebugCharacter	 DebugString
    JavaHiLink javaDebugParen		 Debug

    JavaHiLink DebugString		 String
    JavaHiLink DebugSpecial		 Special
    JavaHiLink DebugBoolean		 Boolean
    JavaHiLink DebugType		 Type
  endif
endif

if exists("java_mark_braces_in_parens_as_errors")
  syn match javaInParen		 contained "[{}]"
  JavaHiLink javaInParen	javaError
  syn cluster javaTop add=javaInParen
endif

" catch errors caused by wrong parenthesis
syn region  javaParenT	transparent matchgroup=javaParen  start="("  end=")" contains=@javaTop,javaParenT1
syn region  javaParenT1 transparent matchgroup=javaParen1 start="(" end=")" contains=@javaTop,javaParenT2 contained
syn region  javaParenT2 transparent matchgroup=javaParen2 start="(" end=")" contains=@javaTop,javaParenT  contained
syn match   javaParenError	 ")"
" catch errors caused by wrong square parenthesis
syn region  javaParenT	transparent matchgroup=javaParen  start="\["  end="\]" contains=@javaTop,javaParenT1
syn region  javaParenT1 transparent matchgroup=javaParen1 start="\[" end="\]" contains=@javaTop,javaParenT2 contained
syn region  javaParenT2 transparent matchgroup=javaParen2 start="\[" end="\]" contains=@javaTop,javaParenT  contained
syn match   javaParenError	 "\]"

JavaHiLink javaParenError	javaError

if !exists("java_minlines")
  let java_minlines = 10
endif
exec "syn sync ccomment javaComment minlines=" . java_minlines

" The default highlighting.
if version >= 508 || !exists("did_java_syn_inits")
  if version < 508
    let did_java_syn_inits = 1
  endif
  JavaHiLink javaFuncDef		Function
  JavaHiLink javaVarArg			Function
  JavaHiLink javaBraces			Function
  JavaHiLink javaBranch			Conditional
  JavaHiLink javaUserLabelRef		javaUserLabel
  JavaHiLink javaLabel			Label
  JavaHiLink javaUserLabel		Label
  JavaHiLink javaConditional		Conditional
  JavaHiLink javaRepeat			Repeat
  JavaHiLink javaExceptions		Exception
  JavaHiLink javaAssert			Statement
  JavaHiLink javaStorageClass		StorageClass
  JavaHiLink javaMethodDecl		javaStorageClass
  JavaHiLink javaClassDecl		javaStorageClass
  JavaHiLink javaScopeDecl		javaStorageClass
  JavaHiLink javaBoolean		Boolean
  JavaHiLink javaSpecial		Special
  JavaHiLink javaSpecialError		Error
  JavaHiLink javaSpecialCharError	Error
  JavaHiLink javaString			String
  JavaHiLink javaCharacter		Character
  JavaHiLink javaSpecialChar		SpecialChar
  JavaHiLink javaNumber			Number
  JavaHiLink javaError			Error
  JavaHiLink javaStringError		Error
  JavaHiLink javaStatement		Statement
  JavaHiLink javaOperator		Operator
  JavaHiLink javaComment		Comment
  JavaHiLink javaDocComment		Comment
  JavaHiLink javaLineComment		Comment
  JavaHiLink javaConstant		Constant
  JavaHiLink javaTypedef		Typedef
  JavaHiLink javaTodo			Todo
  JavaHiLink javaAnnotation		PreProc

  JavaHiLink javaCommentTitle		SpecialComment
  JavaHiLink javaDocTags		Special
  JavaHiLink javaDocParam		Function
  JavaHiLink javaDocSeeTagParam		Function
  JavaHiLink javaCommentStar		javaComment

  JavaHiLink javaType			Type
  JavaHiLink javaExternal		Include

  JavaHiLink htmlComment		Special
  JavaHiLink htmlCommentPart		Special
  JavaHiLink javaSpaceError		Error
endif

delcommand JavaHiLink

let b:current_syntax = "java"

if main_syntax == 'java'
  unlet main_syntax
endif

let b:spell_options="contained"
let &cpo = s:cpo_save
unlet s:cpo_save

" vim: ts=8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        " Vim syntax file
" Language:	JavaScript
" Maintainer:	Claudio Fleiner <claudio@fleiner.com>
" Updaters:	Scott Shattuck (ss) <ss@technicalpursuit.com>
" URL:		http://www.fleiner.com/vim/syntax/javascript.vim
" Changes:	(ss) added keywords, reserved words, and other identifiers
"		(ss) repaired several quoting and grouping glitches
"		(ss) fixed regex parsing issue with multiple qualifiers [gi]
"		(ss) additional factoring of keywords, globals, and members
" Last Change:	2012 Oct 05
" 		2013 Jun 12: adjusted javaScriptRegexpString (Kevin Locke)

" For version 5.x: Clear all syntax items
" For version 6.x: Quit when a syntax file was already loaded
" tuning parameters:
" unlet javaScript_fold

if !exists("main_syntax")
  if version < 600
    syntax clear
  elseif exists("b:current_syntax")
    finish
  endif
  let main_syntax = 'javascript'
elseif exists("b:current_syntax") && b:current_syntax == "javascript"
  finish
endif

let s:cpo_save = &cpo
set cpo&vim

" Drop fold if it set but vim doesn't support it.
if version < 600 && exists("javaScript_fold")
  unlet javaScript_fold
endif


syn keyword javaScriptCommentTodo      TODO FIXME XXX TBD contained
syn match   javaScriptLineComment      "\/\/.*" contains=@Spell,javaScriptCommentTodo
syn match   javaScriptCommentSkip      "^[ \t]*\*\($\|[ \t]\+\)"
syn region  javaScriptComment	       start="/\*"  end="\*/" contains=@Spell,javaScriptCommentTodo
syn match   javaScriptSpecial	       "\\\d\d\d\|\\."
syn region  javaScriptStringD	       start=+"+  skip=+\\\\\|\\"+  end=+"\|$+	contains=javaScriptSpecial,@htmlPreproc
syn region  javaScriptStringS	       start=+'+  skip=+\\\\\|\\'+  end=+'\|$+	contains=javaScriptSpecial,@htmlPreproc

syn match   javaScriptSpecialCharacter "'\\.'"
syn match   javaScriptNumber	       "-\=\<\d\+L\=\>\|0[xX][0-9a-fA-F]\+\>"
syn region  javaScriptRegexpString     start=+/[^/*]+me=e-1 skip=+\\\\\|\\/+ end=+/[gim]\{0,2\}\s*$+ end=+/[gim]\{0,2\}\s*[;.,)\]}]+me=e-1 contains=@htmlPreproc oneline

syn keyword javaScriptConditional	if else switch
syn keyword javaScriptRepeat		while for do in
syn keyword javaScriptBranch		break continue
syn keyword javaScriptOperator		new delete instanceof typeof
syn keyword javaScriptType		Array Boolean Date Function Number Object String RegExp
syn keyword javaScriptStatement		return with
syn keyword javaScriptBoolean		true false
syn keyword javaScriptNull		null undefined
syn keyword javaScriptIdentifier	arguments this var let
syn keyword javaScriptLabel		case default
syn keyword javaScriptException		try catch finally throw
syn keyword javaScriptMessage		alert confirm prompt status
syn keyword javaScriptGlobal		self window top parent
syn keyword javaScriptMember		document event location 
syn keyword javaScriptDeprecated	escape unescape
syn keyword javaScriptReserved		abstract boolean byte char class const debugger double enum export extends final float goto implements import int interface long native package private protected public short static super synchronized throws transient volatile 

if exists("javaScript_fold")
    syn match	javaScriptFunction	"\<function\>"
    syn region	javaScriptFunctionFold	start="\<function\>.*[^};]$" end="^\z1}.*$" transparent fold keepend

    syn sync match javaScriptSync	grouphere javaScriptFunctionFold "\<function\>"
    syn sync match javaScriptSync	grouphere NONE "^}"

    setlocal foldmethod=syntax
    setlocal foldtext=getline(v:foldstart)
else
    syn keyword javaScriptFunction	function
    syn match	javaScriptBraces	   "[{}\[\]]"
    syn match	javaScriptParens	   "[()]"
endif

syn sync fromstart
syn sync maxlines=100

if main_syntax == "javascript"
  syn sync ccomment javaScriptComment
endif

" Define the default highlighting.
" For version 5.7 and earlier: only when not done already
" For version 5.8 and later: only when an item doesn't have highlighting yet
if version >= 508 || !exists("did_javascript_syn_inits")
  if version < 508
    let did_javascript_syn_inits = 1
    command -nargs=+ HiLink hi link <args>
  else
    command -nargs=+ HiLink hi def link <args>
  endif
  HiLink javaScriptComment		Comment
  HiLink javaScriptLineComment		Comment
  HiLink javaScriptCommentTodo		Todo
  HiLink javaScriptSpecial		Special
  HiLink javaScriptStringS		String
  HiLink javaScriptStringD		String
  HiLink javaScriptCharacter		Character
  HiLink javaScriptSpecialCharacter	javaScriptSpecial
  HiLink javaScriptNumber		javaScriptValue
  HiLink javaScriptConditional		Conditional
  HiLink javaScriptRepeat		Repeat
  HiLink javaScriptBranch		Conditional
  HiLink javaScriptOperator		Operator
  HiLink javaScriptType			Type
  HiLink javaScriptStatement		Statement
  HiLink javaScriptFunction		Function
  HiLink javaScriptBraces		Function
  HiLink javaScriptError		Error
  HiLink javaScrParenError		javaScriptError
  HiLink javaScriptNull			Keyword
  HiLink javaScriptBoolean		Boolean
  HiLink javaScriptRegexpString		String

  HiLink javaScriptIdentifier		Identifier
  HiLink javaScriptLabel		Label
  HiLink javaScriptException		Exception
  HiLink javaScriptMessage		Keyword
  HiLink javaScriptGlobal		Keyword
  HiLink javaScriptMember		Keyword
  HiLink javaScriptDeprecated		Exception 
  HiLink javaScriptReserved		Keyword
  HiLink javaScriptDebug		Debug
  HiLink javaScriptConstant		Label

  delcommand HiLink
endif

let b:current_syntax = "javascript"
if main_syntax == 'javascript'
  unlet main_syntax
endif
let &cpo = s:cpo_save
unlet s:cpo_save

" vim: ts=8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         " Vim syntax file
" Language:         logcat
" Maintainer:       Naseer Ahmed <naseer.ahmed@gmail.com>
" Latest Revision:  2014-07-06 <tpruvot@github>

if exists("b:current_syntax")
    finish
endif

" Define colors
hi def LogF_color ctermfg=white guifg=white ctermbg=red guibg=red
hi def LogE_color ctermfg=red guifg=red
hi def LogW_color ctermfg=brown guifg=brown
hi def LogI_color ctermfg=darkgreen guifg=darkgreen
hi def LogD_color ctermfg=blue guifg=blue
hi def LogV_color ctermfg=gray guifg=gray

syn match LogF 'F/.*' 
syn match LogE 'E/.*' 
syn match LogW 'W/.*' 
syn match LogI 'I/.*' 
syn match LogD 'D/.*' 
syn match LogV 'V/.*' 

hi def link LogF LogF_color
hi def link LogE LogE_color
hi def link LogW LogW_color
hi def link LogI LogI_color
hi def link LogD LogD_color
hi def link LogV LogV_color

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            " Vim syntax support file
" Maintainer:	Bram Moolenaar <Bram@vim.org>
" Last Change:	2008 Jan 26

" This file is used for ":syntax manual".
" It installs the Syntax autocommands, but no the FileType autocommands.

if !has("syntax")
  finish
endif

" Load the Syntax autocommands and set the default methods for highlighting.
if !exists("syntax_on")
  so <sfile>:p:h/synload.vim
endif

let syntax_manual = 1

" Remove the connection between FileType and Syntax autocommands.
if exists('#syntaxset')
  au! syntaxset FileType
endif

" If the GUI is already running, may still need to install the FileType menu.
" Don't do it when the 'M' flag is included in 'guioptions'.
if has("menu") && has("gui_running") && !exists("did_install_syntax_menu") && &guioptions !~# 'M'
  source $VIMRUNTIME/menu.vim
endif
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
     " Vim syntax file
" Language:		shell (sh) Korn shell (ksh) bash (sh)
" Maintainer:		Charles E. Campbell  <NdrOchipS@PcampbellAfamily.Mbiz>
" Previous Maintainer:	Lennart Schultz <Lennart.Schultz@ecmwf.int>
" Last Change:		Mar 20, 2014
" Version:		132
" URL:		http://mysite.verizon.net/astronaut/vim/index.html#vimlinks_syntax
" For options and settings, please use:	:help ft-sh-syntax
" This file includes many ideas from ?ric Brunet (eric.brunet@ens.fr)

" For version 5.x: Clear all syntax items {{{1
" For version 6.x: Quit when a syntax file was already loaded
if version < 600
  syntax clear
elseif exists("b:current_syntax")
  finish
endif

" AFAICT "." should be considered part of the iskeyword.  Using iskeywords in
" syntax is dicey, so the following code permits the user to
"  g:sh_isk set to a string	: specify iskeyword.
"  g:sh_noisk exists	: don't change iskeyword
"  g:sh_noisk does not exist	: (default) append "." to iskeyword
if exists("g:sh_isk") && type(g:sh_isk) == 1	" user specifying iskeyword
 exe "setl isk=".g:sh_isk
elseif !exists("g:sh_noisk")		" optionally prevent appending '.' to iskeyword
 setl isk+=.
endif

" trying to answer the question: which shell is /bin/sh, really?
" If the user has not specified any of g:is_kornshell, g:is_bash, g:is_posix, g:is_sh, then guess.
if !exists("g:is_kornshell") && !exists("g:is_bash") && !exists("g:is_posix") && !exists("g:is_sh")
 let s:shell = ""
 if executable("/bin/sh")
  let s:shell = resolve("/bin/sh")
 elseif executable("/usr/bin/sh")
  let s:shell = resolve("/usr/bin/sh")
 endif
 if     s:shell =~ 'bash$'
  let g:is_bash= 1
 elseif s:shell =~ 'ksh$'
  let g:is_kornshell = 1
 elseif s:shell =~ 'dash$'
  let g:is_posix = 1
 endif
 unlet s:shell
endif

" handling /bin/sh with is_kornshell/is_sh {{{1
" b:is_sh is set when "#! /bin/sh" is found;
" However, it often is just a masquerade by bash (typically Linux)
" or kornshell (typically workstations with Posix "sh").
" So, when the user sets "g:is_bash", "g:is_kornshell",
" or "g:is_posix", a b:is_sh is converted into b:is_bash/b:is_kornshell,
" respectively.
if !exists("b:is_kornshell") && !exists("b:is_bash")
  if exists("g:is_posix") && !exists("g:is_kornshell")
   let g:is_kornshell= g:is_posix
  endif
  if exists("g:is_kornshell")
    let b:is_kornshell= 1
    if exists("b:is_sh")
      unlet b:is_sh
    endif
  elseif exists("g:is_bash")
    let b:is_bash= 1
    if exists("b:is_sh")
      unlet b:is_sh
    endif
  else
    let b:is_sh= 1
  endif
endif

" set up default g:sh_fold_enabled {{{1
if !exists("g:sh_fold_enabled")
 let g:sh_fold_enabled= 0
elseif g:sh_fold_enabled != 0 && !has("folding")
 let g:sh_fold_enabled= 0
 echomsg "Ignoring g:sh_fold_enabled=".g:sh_fold_enabled."; need to re-compile vim for +fold support"
endif
if !exists("s:sh_fold_functions")
 let s:sh_fold_functions= and(g:sh_fold_enabled,1)
endif
if !exists("s:sh_fold_heredoc")
 let s:sh_fold_heredoc  = and(g:sh_fold_enabled,2)
endif
if !exists("s:sh_fold_ifdofor")
 let s:sh_fold_ifdofor  = and(g:sh_fold_enabled,4)
endif
if g:sh_fold_enabled && &fdm == "manual"
 " Given that	the	user provided g:sh_fold_enabled
 " 	AND	g:sh_fold_enabled is manual (usual default)
 " 	implies	a desire for syntax-based folding
 setl fdm=syntax
endif

" sh syntax is case sensitive {{{1
syn case match

" Clusters: contains=@... clusters {{{1
"==================================
syn cluster shErrorList	contains=shDoError,shIfError,shInError,shCaseError,shEsacError,shCurlyError,shParenError,shTestError,shOK
if exists("b:is_kornshell")
 syn cluster ErrorList add=shDTestError
endif
syn cluster shArithParenList	contains=shArithmetic,shCaseEsac,shDeref,shDerefSimple,shEcho,shEscape,shNumber,shOperator,shPosnParm,shExSingleQuote,shExDoubleQuote,shRedir,shSingleQuote,shDoubleQuote,shStatement,shVariable,shAlias,shTest,shCtrlSeq,shSpecial,shParen,bashSpecialVariables,bashStatement
syn cluster shArithList	contains=@shArithParenList,shParenError
syn cluster shCaseEsacList	contains=shCaseStart,shCase,shCaseBar,shCaseIn,shComment,shDeref,shDerefSimple,shCaseCommandSub,shCaseExSingleQuote,shCaseSingleQuote,shCaseDoubleQuote,shCtrlSeq,@shErrorList,shStringSpecial,shCaseRange
syn cluster shCaseList	contains=@shCommandSubList,shCaseEsac,shColon,shCommandSub,shComment,shDo,shEcho,shExpr,shFor,shHereDoc,shIf,shRedir,shSetList,shSource,shStatement,shVariable,shCtrlSeq
"syn cluster shColonList	contains=@shCaseList
syn cluster shCommandSubList	contains=shArithmetic,shDeref,shDerefSimple,shEcho,shEscape,shNumber,shOption,shPosnParm,shExSingleQuote,shSingleQuote,shExDoubleQuote,shDoubleQuote,shStatement,shVariable,shSubSh,shAlias,shTest,shCtrlSeq,shSpecial,shCmdParenRegion
syn cluster shCurlyList	contains=shNumber,shComma,shDeref,shDerefSimple,shDerefSpecial
syn cluster shDblQuoteList	contains=shCommandSub,shDeref,shDerefSimple,shEscape,shPosnParm,shCtrlSeq,shSpecial
syn cluster shDerefList	contains=shDeref,shDerefSimple,shDerefVar,shDerefSpecial,shDerefWordError,shDerefPPS
syn cluster shDerefVarList	contains=shDerefOp,shDerefVarArray,shDerefOpError
syn cluster shEchoList	contains=shArithmetic,shCommandSub,shDeref,shDerefSimple,shEscape,shExpr,shExSingleQuote,shExDoubleQuote,shSingleQuote,shDoubleQuote,shCtrlSeq,shEchoQuote
syn cluster shExprList1	contains=shCharClass,shNumber,shOperator,shExSingleQuote,shExDoubleQuote,shSingleQuote,shDoubleQuote,shExpr,shDblBrace,shDeref,shDerefSimple,shCtrlSeq
syn cluster shExprList2	contains=@shExprList1,@shCaseList,shTest
syn cluster shFunctionList	contains=@shCommandSubList,shCaseEsac,shColon,shCommandSub,shComment,shDo,shEcho,shExpr,shFor,shHereDoc,shIf,shOption,shRedir,shSetList,shSource,shStatement,shVariable,shOperator,shCtrlSeq
if exists("b:is_kornshell") || exists("b:is_bash")
 syn cluster shFunctionList	add=shRepeat
 syn cluster shFunctionList	add=shDblBrace,shDblParen
endif
syn cluster shHereBeginList	contains=@shCommandSubList
syn cluster shHereList	contains=shBeginHere,shHerePayload
syn cluster shHereListDQ	contains=shBeginHere,@shDblQuoteList,shHerePayload
syn cluster shIdList	contains=shCommandSub,shWrapLineOperator,shSetOption,shDeref,shDerefSimple,shRedir,shExSingleQuote,shExDoubleQuote,shSingleQuote,shDoubleQuote,shExpr,shCtrlSeq,shStringSpecial,shAtExpr
syn cluster shIfList	contains=@shLoopList,shDblBrace,shDblParen,shFunctionKey,shFunctionOne,shFunctionTwo
syn cluster shLoopList	contains=@shCaseList,shTestOpr,shExpr,shDblBrace,shConditional,shCaseEsac,shTest,@shErrorList,shSet,shOption
syn cluster shSubShList	contains=@shCommandSubList,shCaseEsac,shColon,shCommandSub,shComment,shDo,shEcho,shExpr,shFor,shIf,shRedir,shSetList,shSource,shStatement,shVariable,shCtrlSeq,shOperator
syn cluster shTestList	contains=shCharClass,shComment,shCommandSub,shDeref,shDerefSimple,shExDoubleQuote,shDoubleQuote,shExpr,shNumber,shOperator,shExSingleQuote,shSingleQuote,shTestOpr,shTest,shCtrlSeq
" Echo: {{{1
" ====
" This one is needed INSIDE a CommandSub, so that `echo bla` be correct
syn region shEcho matchgroup=shStatement start="\<echo\>"  skip="\\$" matchgroup=shEchoDelim end="$" matchgroup=NONE end="[<>;&|()`]"me=e-1 end="\d[<>]"me=e-2 end="\s#"me=e-2 contains=@shEchoList skipwhite nextgroup=shQuickComment
syn region shEcho matchgroup=shStatement start="\<print\>" skip="\\$" matchgroup=shEchoDelim end="$" matchgroup=NONE end="[<>;&|()`]"me=e-1 end="\d[<>]"me=e-2 end="\s#"me=e-2 contains=@shEchoList skipwhite nextgroup=shQuickComment
syn match  shEchoQuote contained	'\%(\\\\\)*\\["`'()]'

" This must be after the strings, so that ... \" will be correct
syn region shEmbeddedEcho contained matchgroup=shStatement start="\<print\>" skip="\\$" matchgroup=shEchoDelim end="$" matchgroup=NONE end="[<>;&|`)]"me=e-1 end="\d[<>]"me=e-2 end="\s#"me=e-2 contains=shNumber,shExSingleQuote,shSingleQuote,shDeref,shDerefSimple,shSpecialVar,shOperator,shExDoubleQuote,shDoubleQuote,shCharClass,shCtrlSeq

" Alias: {{{1
" =====
if exists("b:is_kornshell") || exists("b:is_bash")
 syn match shStatement "\<alias\>"
 syn region shAlias matchgroup=shStatement start="\<alias\>\s\+\(\h[-._[:alnum:]]\+\)\@="  skip="\\$" end="\>\|`"
 syn region shAlias matchgroup=shStatement start="\<alias\>\s\+\(\h[-._[:alnum:]]\+=\)\@=" skip="\\$" end="="
endif

" Error Codes: {{{1
" ============
if !exists("g:sh_no_error")
 syn match	shDoError	"\<done\>"
 syn match	shIfError	"\<fi\>"
 syn match	shInError	"\<in\>"
 syn match	shCaseError	";;"
 syn match	shEsacError	"\<esac\>"
 syn match	shCurlyError	"}"
 syn match	shParenError	")"
 syn match	shOK	'\.\(done\|fi\|in\|esac\)'
 if exists("b:is_kornshell")
   syn match	shDTestError	"]]"
 endif
 syn match	shTestError	"]"
endif

" Options: {{{1
" ====================
syn match   shOption	"\s\zs[-+][-_a-zA-Z0-9#]\+"
syn match   shOption	"\s\zs--[^ \t$`'"|);]\+"

" File Redirection Highlighted As Operators: {{{1
"===========================================
syn match      shRedir	"\d\=>\(&[-0-9]\)\="
syn match      shRedir	"\d\=>>-\="
syn match      shRedir	"\d\=<\(&[-0-9]\)\="
syn match      shRedir	"\d<<-\="

" Operators: {{{1
" ==========
syn match   shOperator	"<<\|>>"		contained
syn match   shOperator	"[!&;|]"		contained
syn match   shOperator	"\[[[^:]\|\]]"		contained
syn match   shOperator	"!\=="		skipwhite nextgroup=shPattern
syn match   shPattern	"\<\S\+\())\)\@="	contained contains=shExSingleQuote,shSingleQuote,shExDoubleQuote,shDoubleQuote,shDeref

" Subshells: {{{1
" ==========
syn region shExpr  transparent matchgroup=shExprRegion  start="{" end="}"		contains=@shExprList2 nextgroup=shMoreSpecial
syn region shSubSh transparent matchgroup=shSubShRegion start="[^(]\zs(" end=")"	contains=@shSubShList nextgroup=shMoreSpecial

" Tests: {{{1
"=======
syn region shExpr	matchgroup=shRange start="\[" skip=+\\\\\|\\$\|\[+ end="\]" contains=@shTestList,shSpecial
syn region shTest	transparent matchgroup=shStatement start="\<test\s" skip=+\\\\\|\\$+ matchgroup=NONE end="[;&|]"me=e-1 end="$" contains=@shExprList1
syn match  shTestOpr	contained	"<=\|>=\|!=\|==\|-.\>\|-\(nt\|ot\|ef\|eq\|ne\|lt\|le\|gt\|ge\)\>\|[!<>]"
syn match  shTestOpr	contained	'=' skipwhite nextgroup=shTestDoubleQuote,shTestSingleQuote,shTestPattern
syn match  shTestPattern	contained	'\w\+'
syn match  shTestDoubleQuote	contained	'\%(\%(\\\\\)*\\\)\@<!"[^"]*"'
syn match  shTestSingleQuote	contained	'\\.'
syn match  shTestSingleQuote	contained	"'[^']*'"
if exists("b:is_kornshell") || exists("b:is_bash")
 syn region  shDblBrace matchgroup=Delimiter start="\[\[" skip=+\\\\\|\\$+ end="\]\]"	contains=@shTestList
 syn region  shDblParen matchgroup=Delimiter start="((" skip=+\\\\\|\\$+ end="))"	contains=@shTestList
endif

" Character Class In Range: {{{1
" =========================
syn match   shCharClass	contained	"\[:\(backspace\|escape\|return\|xdigit\|alnum\|alpha\|blank\|cntrl\|digit\|graph\|lower\|print\|punct\|space\|upper\|tab\):\]"

" Loops: do, if, while, until {{{1
" ======
if s:sh_fold_ifdofor
 syn region shDo	fold transparent matchgroup=shConditional start="\<do\>" matchgroup=shConditional end="\<done\>" contains=@shLoopList
 syn region shIf	fold transparent matchgroup=shConditional start="\<if\_s" matchgroup=shConditional skip=+-fi\>+ end="\<;\_s*then\>" end="\<fi\>"   contains=@shIfList
 syn region shFor	fold matchgroup=shLoop start="\<for\ze\_s\s*\%(((\)\@!" end="\<in\_s" end="\<do\>"me=e-2	contains=@shLoopList,shDblParen skipwhite nextgroup=shCurlyIn
else
 syn region shDo	transparent matchgroup=shConditional start="\<do\>" matchgroup=shConditional end="\<done\>" contains=@shLoopList
 syn region shIf	transparent matchgroup=shConditional start="\<if\_s" matchgroup=shConditional skip=+-fi\>+ end="\<;\_s*then\>" end="\<fi\>"   contains=@shIfList
 syn region shFor	matchgroup=shLoop start="\<for\ze\_s\s*\%(((\)\@!" end="\<in\>" end="\<do\>"me=e-2	contains=@shLoopList,shDblParen skipwhite nextgroup=shCurlyIn
 syn match  shForPP	'\<for\>\ze\_s*(('
endif
if exists("b:is_kornshell") || exists("b:is_bash")
 syn cluster shCaseList	add=shRepeat
 syn cluster shFunctionList	add=shRepeat
 syn region shRepeat   matchgroup=shLoop   start="\<while\_s" end="\<in\_s" end="\<do\>"me=e-2	contains=@shLoopList,shDblParen,shDblBrace
 syn region shRepeat   matchgroup=shLoop   start="\<until\_s" end="\<in\_s" end="\<do\>"me=e-2	contains=@shLoopList,shDblParen,shDblBrace
 syn region shCaseEsac matchgroup=shConditional start="\<select\s" matchgroup=shConditional end="\<in\>" end="\<do\>" contains=@shLoopList
else
 syn region shRepeat   matchgroup=shLoop   start="\<while\_s" end="\<do\>"me=e-2		contains=@shLoopList
 syn region shRepeat   matchgroup=shLoop   start="\<until\_s" end="\<do\>"me=e-2		contains=@shLoopList
endif
syn region shCurlyIn   contained	matchgroup=Delimiter start="{" end="}" contains=@shCurlyList
syn match  shComma     contained	","

" Case: case...esac {{{1
" ====
syn match   shCaseBar	contained skipwhite "\(^\|[^\\]\)\(\\\\\)*\zs|"		nextgroup=shCase,shCaseStart,shCaseBar,shComment,shCaseExSingleQuote,shCaseSingleQuote,shCaseDoubleQuote
syn match   shCaseStart	contained skipwhite skipnl "("			nextgroup=shCase,shCaseBar
if s:sh_fold_ifdofor
 syn region  shCase	fold contained skipwhite skipnl matchgroup=shSnglCase start="\%(\\.\|[^#$()'" \t]\)\{-}\zs)"  end=";;" end="esac"me=s-1 contains=@shCaseList nextgroup=shCaseStart,shCase,shComment
 syn region  shCaseEsac	fold matchgroup=shConditional start="\<case\>" end="\<esac\>"	contains=@shCaseEsacList
else
 syn region  shCase	contained skipwhite skipnl matchgroup=shSnglCase start="\%(\\.\|[^#$()'" \t]\)\{-}\zs)"  end=";;" end="esac"me=s-1 contains=@shCaseList nextgroup=shCaseStart,shCase,shComment
 syn region  shCaseEsac	matchgroup=shConditional start="\<case\>" end="\<esac\>"	contains=@shCaseEsacList
endif
syn keyword shCaseIn	contained skipwhite skipnl in			nextgroup=shCase,shCaseStart,shCaseBar,shComment,shCaseExSingleQuote,shCaseSingleQuote,shCaseDoubleQuote
if exists("b:is_bash")
 syn region  shCaseExSingleQuote	matchgroup=shQuote start=+\$'+ skip=+\\\\\|\\.+ end=+'+	contains=shStringSpecial,shSpecial	skipwhite skipnl nextgroup=shCaseBar	contained
elseif !exists("g:sh_no_error")
 syn region  shCaseExSingleQuote	matchgroup=Error start=+\$'+ skip=+\\\\\|\\.+ end=+'+	contains=shStringSpecial	skipwhite skipnl nextgroup=shCaseBar	contained
endif
syn region  shCaseSingleQuote	matchgroup=shQuote start=+'+ end=+'+		contains=shStringSpecial		skipwhite skipnl nextgroup=shCaseBar	contained
syn region  shCaseDoubleQuote	matchgroup=shQuote start=+"+ skip=+\\\\\|\\.+ end=+"+	contains=@shDblQuoteList,shStringSpecial	skipwhite skipnl nextgroup=shCaseBar	contained
syn region  shCaseCommandSub	start=+`+ skip=+\\\\\|\\.+ end=+`+		contains=@shCommandSubList		skipwhite skipnl nextgroup=shCaseBar	contained
if exists("b:is_bash")
 syn region  shCaseRange	matchgroup=Delimiter start=+\[+ skip=+\\\\+ end=+\]+	contained	contains=shCharClass
 syn match   shCharClass	'\[:\%(alnum\|alpha\|ascii\|blank\|cntrl\|digit\|graph\|lower\|print\|punct\|space\|upper\|word\|or\|xdigit\):\]'			contained
else
 syn region  shCaseRange	matchgroup=Delimiter start=+\[+ skip=+\\\\+ end=+\]+	contained
endif
" Misc: {{{1
"======
syn match   shWrapLineOperator "\\$"
syn region  shCommandSub   start="`" skip="\\\\\|\\." end="`"	contains=@shCommandSubList
syn match   shEscape	contained	'\%(^\)\@!\%(\\\\\)*\\.'

" $() and $(()): {{{1
" $(..) is not supported by sh (Bourne shell).  However, apparently
" some systems (HP?) have as their /bin/sh a (link to) Korn shell
" (ie. Posix compliant shell).  /bin/ksh should work for those
" systems too, however, so the following syntax will flag $(..) as
" an Error under /bin/sh.  By consensus of vimdev'ers!
if exists("b:is_kornshell") || exists("b:is_bash")
 syn region shCommandSub matchgroup=shCmdSubRegion start="\$("  skip='\\\\\|\\.' end=")"  contains=@shCommandSubList
 syn region shArithmetic matchgroup=shArithRegion  start="\$((" skip='\\\\\|\\.' end="))" contains=@shArithList
 syn region shArithmetic matchgroup=shArithRegion  start="\$\[" skip='\\\\\|\\.' end="\]" contains=@shArithList
 syn match  shSkipInitWS contained	"^\s\+"
elseif !exists("g:sh_no_error")
 syn region shCommandSub matchgroup=Error start="\$(" end=")" contains=@shCommandSubList
endif
syn region shCmdParenRegion matchgroup=shCmdSubRegion start="(" skip='\\\\\|\\.' end=")"	contains=@shCommandSubList

if exists("b:is_bash")
 syn cluster shCommandSubList add=bashSpecialVariables,bashStatement
 syn cluster shCaseList add=bashAdminStatement,bashStatement
 syn keyword bashSpecialVariables contained auto_resume BASH BASH_ALIASES BASH_ALIASES BASH_ARGC BASH_ARGC BASH_ARGV BASH_ARGV BASH_CMDS BASH_CMDS BASH_COMMAND BASH_COMMAND BASH_ENV BASH_EXECUTION_STRING BASH_EXECUTION_STRING BASH_LINENO BASH_LINENO BASHOPTS BASHOPTS BASHPID BASHPID BASH_REMATCH BASH_REMATCH BASH_SOURCE BASH_SOURCE BASH_SUBSHELL BASH_SUBSHELL BASH_VERSINFO BASH_VERSION BASH_XTRACEFD BASH_XTRACEFD CDPATH COLUMNS COLUMNS COMP_CWORD COMP_CWORD COMP_KEY COMP_KEY COMP_LINE COMP_LINE COMP_POINT COMP_POINT COMPREPLY COMPREPLY COMP_TYPE COMP_TYPE COMP_WORDBREAKS COMP_WORDBREAKS COMP_WORDS COMP_WORDS COPROC COPROC DIRSTACK EMACS EMACS ENV ENV EUID FCEDIT FIGNORE FUNCNAME FUNCNAME FUNCNEST FUNCNEST GLOBIGNORE GROUPS histchars HISTCMD HISTCONTROL HISTFILE HISTFILESIZE HISTIGNORE HISTSIZE HISTTIMEFORMAT HISTTIMEFORMAT HOME HOSTFILE HOSTNAME HOSTTYPE IFS IGNOREEOF INPUTRC LANG LC_ALL LC_COLLATE LC_CTYPE LC_CTYPE LC_MESSAGES LC_NUMERIC LC_NUMERIC LINENO LINES LINES MACHTYPE MAIL MAILCHECK MAILPATH MAPFILE MAPFILE OLDPWD OPTARG OPTERR OPTIND OSTYPE PATH PIPESTATUS POSIXLY_CORRECT POSIXLY_CORRECT PPID PROMPT_COMMAND PS1 PS2 PS3 PS4 PWD RANDOM READLINE_LINE READLINE_LINE READLINE_POINT READLINE_POINT REPLY SECONDS SHELL SHELL SHELLOPTS SHLVL TIMEFORMAT TIMEOUT TMPDIR TMPDIR UID
 syn keyword bashStatement chmod clear complete du egrep expr fgrep find gnufind gnugrep grep less ls mkdir mv rm rmdir rpm sed sleep sort strip tail touch
 syn keyword bashAdminStatement daemon killall killproc nice reload restart start status stop
 syn keyword bashStatement	command compgen
endif

if exists("b:is_kornshell")
 syn cluster shCommandSubList add=kshSpecialVariables,kshStatement
 syn cluster shCaseList add=kshStatement
 syn keyword kshSpecialVariables contained CDPATH COLUMNS EDITOR ENV ERRNO FCEDIT FPATH HISTFILE HISTSIZE HOME IFS LINENO LINES MAIL MAILCHECK MAILPATH OLDPWD OPTARG OPTIND PATH PPID PS1 PS2 PS3 PS4 PWD RANDOM REPLY SECONDS SHELL TMOUT VISUAL
 syn keyword kshStatement cat chmod clear cp du egrep expr fgrep find grep killall less ls mkdir mv nice printenv rm rmdir sed sort strip stty tail touch tput
 syn keyword kshStatement command setgroups setsenv
endif

syn match   shSource	"^\.\s"
syn match   shSource	"\s\.\s"
"syn region  shColon	start="^\s*:" end="$" end="\s#"me=e-2 contains=@shColonList
"syn region  shColon	start="^\s*\zs:" end="$" end="\s#"me=e-2
syn match   shColon	'^\s*\zs:'

" String And Character Constants: {{{1
"================================
syn match   shNumber	"-\=\<\d\+\>#\="
syn match   shCtrlSeq	"\\\d\d\d\|\\[abcfnrtv0]"		contained
if exists("b:is_bash")
 syn match   shSpecial	"\\\o\o\o\|\\x\x\x\|\\c[^"]\|\\[abefnrtv]"	contained
endif
if exists("b:is_bash")
 syn region  shExSingleQuote	matchgroup=shQuote start=+\$'+ skip=+\\\\\|\\.+ end=+'+	contains=shStringSpecial,shSpecial
 syn region  shExDoubleQuote	matchgroup=shQuote start=+\$"+ skip=+\\\\\|\\.\|\\"+ end=+"+	contains=@shDblQuoteList,shStringSpecial,shSpecial
elseif !exists("g:sh_no_error")
 syn region  shExSingleQuote	matchGroup=Error start=+\$'+ skip=+\\\\\|\\.+ end=+'+	contains=shStringSpecial
 syn region  shExDoubleQuote	matchGroup=Error start=+\$"+ skip=+\\\\\|\\.+ end=+"+	contains=shStringSpecial
endif
syn region  shSingleQuote	matchgroup=shQuote start=+'+ end=+'+		contains=@Spell
syn region  shDoubleQuote	matchgroup=shQuote start=+\%(\%(\\\\\)*\\\)\@<!"+ skip=+\\"+ end=+"+	contains=@shDblQuoteList,shStringSpecial,@Spell
syn match   shStringSpecial	"[^[:print:] \t]"	contained
syn match   shStringSpecial	"\%(\\\\\)*\\[\\"'`$()#]"
"syn match   shSpecial	"[^\\]\zs\%(\\\\\)*\\[\\"'`$()#]"	nextgroup=shMoreSpecial,shComment
syn match   shSpecial	"[^\\]\zs\%(\\\\\)*\\[\\"'`$()#]"	nextgroup=shMoreSpecial
syn match   shSpecial	"^\%(\\\\\)*\\[\\"'`$()#]"		nextgroup=shComment
syn match   shMoreSpecial	"\%(\\\\\)*\\[\\"'`$()#]" 	contained	nextgroup=shMoreSpecial

" Comments: {{{1
"==========
syn cluster	shCommentGroup	contains=shTodo,@Spell
syn keyword	shTodo	contained		COMBAK FIXME TODO XXX
syn match	shComment		"^\s*\zs#.*$"	contains=@shCommentGroup
syn match	shComment		"\s\zs#.*$"	contains=@shCommentGroup
syn match	shComment	contained	"#.*$"	contains=@shCommentGroup
syn match	shQuickComment	contained	"#.*$"

" Here Documents: {{{1
" =========================================
if version < 600
 syn region shHereDoc matchgroup=shRedir01 start="<<\s*\**END[a-zA-Z_0-9]*\**" 		matchgroup=shRedir01 end="^END[a-zA-Z_0-9]*$"	contains=@shDblQuoteList
 syn region shHereDoc matchgroup=shRedir02 start="<<-\s*\**END[a-zA-Z_0-9]*\**"		matchgroup=shRedir02 end="^\s*END[a-zA-Z_0-9]*$"	contains=@shDblQuoteList
 syn region shHereDoc matchgroup=shRedir03 start="<<\s*\**EOF\**"		matchgroup=shRedir03	end="^EOF$"	contains=@shDblQuoteList
 syn region shHereDoc matchgroup=shRedir04 start="<<-\s*\**EOF\**"		matchgroup=shRedir04	end="^\s*EOF$"	contains=@shDblQuoteList
 syn region shHereDoc matchgroup=shRedir05 start="<<\s*\**\.\**"		matchgroup=shRedir05	end="^\.$"	contains=@shDblQuoteList
 syn region shHereDoc matchgroup=shRedir06 start="<<-\s*\**\.\**"		matchgroup=shRedir06	end="^\s*\.$"	contains=@shDblQuoteList

elseif s:sh_fold_heredoc
 syn region shHereDoc matchgroup=shRedir07 fold start="<<\s*\z([^ \t|]*\)"		matchgroup=shRedir07 end="^\z1\s*$"	contains=@shDblQuoteList
 syn region shHereDoc matchgroup=shRedir08 fold start="<<\s*\"\z([^ \t|]*\)\""		matchgroup=shRedir08 end="^\z1\s*$"
 syn region shHereDoc matchgroup=shRedir09 fold start="<<\s*'\z([^ \t|]*\)'"		matchgroup=shRedir09 end="^\z1\s*$"
 syn region shHereDoc matchgroup=shRedir10 fold start="<<-\s*\z([^ \t|]*\)"		matchgroup=shRedir10 end="^\s*\z1\s*$"	contains=@shDblQuoteList
 syn region shHereDoc matchgroup=shRedir11 fold start="<<-\s*\"\z([^ \t|]*\)\""		matchgroup=shRedir11 end="^\s*\z1\s*$"
 syn region shHereDoc matchgroup=shRedir12 fold start="<<-\s*'\z([^ \t|]*\)'"		matchgroup=shRedir12 end="^\s*\z1\s*$"
 syn region shHereDoc matchgroup=shRedir13 fold start="<<\s*\\\_$\_s*\z([^ \t|]*\)"	matchgroup=shRedir13 end="^\z1\s*$"
 syn region shHereDoc matchgroup=shRedir14 fold start="<<\s*\\\_$\_s*\"\z([^ \t|]*\)\""	matchgroup=shRedir14 end="^\z1\s*$"
 syn region shHereDoc matchgroup=shRedir15 fold start="<<-\s*\\\_$\_s*'\z([^ \t|]*\)'"	matchgroup=shRedir15 end="^\s*\z1\s*$"
 syn region shHereDoc matchgroup=shRedir16 fold start="<<-\s*\\\_$\_s*\z([^ \t|]*\)"	matchgroup=shRedir16 end="^\s*\z1\s*$"
 syn region shHereDoc matchgroup=shRedir17 fold start="<<-\s*\\\_$\_s*\"\z([^ \t|]*\)\""	matchgroup=shRedir17 end="^\s*\z1\s*$"
 syn region shHereDoc matchgroup=shRedir18 fold start="<<\s*\\\_$\_s*'\z([^ \t|]*\)'"	matchgroup=shRedir18 end="^\z1\s*$"
 syn region shHereDoc matchgroup=shRedir19 fold start="<<\\\z([^ \t|]*\)"		matchgroup=shRedir19 end="^\z1\s*$"

else
 syn region shHereDoc matchgroup=shRedir20 start="<<\s*\\\=\z([^ \t|]*\)"		matchgroup=shRedir20 end="^\z1\s*$"	contains=@shDblQuoteList
 syn region shHereDoc matchgroup=shRedir21 start="<<\s*\"\z([^ \t|]*\)\""		matchgroup=shRedir21 end="^\z1\s*$"
 syn region shHereDoc matchgroup=shRedir22 start="<<-\s*\z([^ \t|]*\)"		matchgroup=shRedir22 end="^\s*\z1\s*$"	contains=@shDblQuoteList
 syn region shHereDoc matchgroup=shRedir23 start="<<-\s*'\z([^ \t|]*\)'"		matchgroup=shRedir23 end="^\s*\z1\s*$"
 syn region shHereDoc matchgroup=shRedir24 start="<<\s*'\z([^ \t|]*\)'"		matchgroup=shRedir24 end="^\z1\s*$"
 syn region shHereDoc matchgroup=shRedir25 start="<<-\s*\"\z([^ \t|]*\)\""		matchgroup=shRedir25 end="^\s*\z1\s*$"
 syn region shHereDoc matchgroup=shRedir26 start="<<\s*\\\_$\_s*\z([^ \t|]*\)"		matchgroup=shRedir26 end="^\z1\s*$"
 syn region shHereDoc matchgroup=shRedir27 start="<<-\s*\\\_$\_s*\z([^ \t|]*\)"		matchgroup=shRedir27 end="^\s*\z1\s*$"
 syn region shHereDoc matchgroup=shRedir28 start="<<-\s*\\\_$\_s*'\z([^ \t|]*\)'"	matchgroup=shRedir28 end="^\s*\z1\s*$"
 syn region shHereDoc matchgroup=shRedir29 start="<<\s*\\\_$\_s*'\z([^ \t|]*\)'"	matchgroup=shRedir29 end="^\z1\s*$"
 syn region shHereDoc matchgroup=shRedir30 start="<<\s*\\\_$\_s*\"\z([^ \t|]*\)\""	matchgroup=shRedir30 end="^\z1\s*$"
 syn region shHereDoc matchgroup=shRedir31 start="<<-\s*\\\_$\_s*\"\z([^ \t|]*\)\""	matchgroup=shRedir31 end="^\s*\z1\s*$"
 syn region shHereDoc matchgroup=shRedir32 start="<<\\\z([^ \t|]*\)"		matchgroup=shRedir32 end="^\z1\s*$"
endif

" Here Strings: {{{1
" =============
" available for: bash; ksh (really should be ksh93 only) but not if its a posix
if exists("b:is_bash") || (exists("b:is_kornshell") && !exists("g:is_posix"))
 syn match shRedir "<<<"	skipwhite	nextgroup=shCmdParenRegion
endif

" Identifiers: {{{1
"=============
syn match  shSetOption	"\s\zs[-+][a-zA-Z0-9]\+\>"	contained
syn match  shVariable	"\<\([bwglsav]:\)\=[a-zA-Z0-9.!@_%+,]*\ze="	nextgroup=shSetIdentifier
syn match  shSetIdentifier	"="		contained	nextgroup=shCmdParenRegion,shPattern,shDeref,shDerefSimple,shDoubleQuote,shExDoubleQuote,shSingleQuote,shExSingleQuote
syn region shAtExpr	contained	start="@(" end=")" contains=@shIdList
if exists("b:is_bash")
 syn region shSetList oneline matchgroup=shSet start="\<\(declare\|typeset\|local\|export\|unset\)\>\ze[^/]" end="$"	matchgroup=shSetListDelim end="\ze[}|);&]" matchgroup=NONE end="\ze\s\+#\|="	contains=@shIdList
 syn region shSetList oneline matchgroup=shSet start="\<set\>\ze[^/]" end="\ze[;|)]\|$"			matchgroup=shSetListDelim end="\ze[}|);&]" matchgroup=NONE end="\ze\s\+="	contains=@shIdList
elseif exists("b:is_kornshell")
 syn region shSetList oneline matchgroup=shSet start="\<\(typeset\|export\|unset\)\>\ze[^/]" end="$"		matchgroup=shSetListDelim end="\ze[}|);&]" matchgroup=NONE end="\ze\s\+[#=]"	contains=@shIdList
 syn region shSetList oneline matchgroup=shSet start="\<set\>\ze[^/]" end="$"				matchgroup=shSetListDelim end="\ze[}|);&]" matchgroup=NONE end="\ze\s\+[#=]"	contains=@shIdList
else
 syn region shSetList oneline matchgroup=shSet start="\<\(set\|export\|unset\)\>\ze[^/]" end="$"		matchgroup=shSetListDelim end="\ze[}|);&]" matchgroup=NONE end="\ze\s\+[#=]"	contains=@shIdList
endif

" Functions: {{{1
if !exists("g:is_posix")
 syn keyword shFunctionKey function	skipwhite skipnl nextgroup=shFunctionTwo
endif

if exists("b:is_bash")
 if s:sh_fold_functions
  syn region shFunctionOne fold	matchgroup=shFunction start="^\s*\h[-a-zA-Z_0-9]*\s*()\_s*{"	end="}"	contains=@shFunctionList			skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
  syn region shFunctionTwo fold	matchgroup=shFunction start="\h[-a-zA-Z_0-9]*\s*\%(()\)\=\_s*{"	end="}"	contains=shFunctionKey,@shFunctionList contained	skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
 else
  syn region shFunctionOne	matchgroup=shFunction start="^\s*\h[-a-zA-Z_0-9]*\s*()\_s*{"	end="}"	contains=@shFunctionList
  syn region shFunctionTwo	matchgroup=shFunction start="\h[-a-zA-Z_0-9]*\s*\%(()\)\=\_s*{"	end="}"	contains=shFunctionKey,@shFunctionList contained
 endif
else
 if s:sh_fold_functions
  syn region shFunctionOne fold	matchgroup=shFunction start="^\s*\h\w*\s*()\_s*{" end="}"	contains=@shFunctionList			skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
  syn region shFunctionTwo fold	matchgroup=shFunction start="\h\w*\s*\%(()\)\=\_s*{"	end="}"	contains=shFunctionKey,@shFunctionList contained	skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
 else
  syn region shFunctionOne	matchgroup=shFunction start="^\s*\h\w*\s*()\_s*{"	end="}"	contains=@shFunctionList
  syn region shFunctionTwo	matchgroup=shFunction start="\h\w*\s*\%(()\)\=\_s*{"	end="}"	contains=shFunctionKey,@shFunctionList contained
 endif
endif

" Parameter Dereferencing: {{{1
" ========================
syn match  shDerefSimple	"\$\%(\k\+\|\d\)"
syn region shDeref	matchgroup=PreProc start="\${" end="}"	contains=@shDerefList,shDerefVarArray
if !exists("g:sh_no_error")
 syn match  shDerefWordError	"[^}$[]"	contained
endif
syn match  shDerefSimple	"\$[-#*@!?]"
syn match  shDerefSimple	"\$\$"
if exists("b:is_bash") || exists("b:is_kornshell")
 syn region shDeref	matchgroup=PreProc start="\${##\=" end="}"	contains=@shDerefList
 syn region shDeref	matchgroup=PreProc start="\${\$\$" end="}"	contains=@shDerefList
endif

" bash: ${!prefix*} and ${#parameter}: {{{1
" ====================================
if exists("b:is_bash")
 syn region shDeref	matchgroup=PreProc start="\${!" end="\*\=}"	contains=@shDerefList,shDerefOp
 syn match  shDerefVar	contained	"{\@<=!\k\+"		nextgroup=@shDerefVarList
endif

syn match  shDerefSpecial	contained	"{\@<=[-*@?0]"		nextgroup=shDerefOp,shDerefOpError
syn match  shDerefSpecial	contained	"\({[#!]\)\@<=[[:alnum:]*@_]\+"	nextgroup=@shDerefVarList,shDerefOp
syn match  shDerefVar	contained	"{\@<=\k\+"		nextgroup=@shDerefVarList

" sh ksh bash : ${var[... ]...}  array reference: {{{1
syn region  shDerefVarArray	contained	matchgroup=shDeref start="\[" end="]"	contains=@shCommandSubList nextgroup=shDerefOp,shDerefOpError

" Special ${parameter OPERATOR word} handling: {{{1
" sh ksh bash : ${parameter:-word}	word is default value
" sh ksh bash : ${parameter:=word}	assign word as default value
" sh ksh bash : ${parameter:?word}	display word if parameter is null
" sh ksh bash : ${parameter:+word}	use word if parameter is not null, otherwise nothing
"    ksh bash : ${parameter#pattern}	remove small left  pattern
"    ksh bash : ${parameter##pattern}	remove large left  pattern
"    ksh bash : ${parameter%pattern}	remove small right pattern
"    ksh bash : ${parameter%%pattern}	remove large right pattern
"        bash : ${parameter^pattern}	Case modification
"        bash : ${parameter^^pattern}	Case modification
"        bash : ${parameter,pattern}	Case modification
"        bash : ${parameter,,pattern}	Case modification
syn cluster shDerefPatternList	contains=shDerefPattern,shDerefString
if !exists("g:sh_no_error")
 syn match shDerefOpError	contained	":[[:punct:]]"
endif
syn match  shDerefOp	contained	":\=[-=?]"	nextgroup=@shDerefPatternList
syn match  shDerefOp	contained	":\=+"	nextgroup=@shDerefPatternList
if exists("b:is_bash") || exists("b:is_kornshell")
 syn match  shDerefOp	contained	"#\{1,2}"	nextgroup=@shDerefPatternList
 syn match  shDerefOp	contained	"%\{1,2}"	nextgroup=@shDerefPatternList
 syn match  shDerefPattern	contained	"[^{}]\+"	contains=shDeref,shDerefSimple,shDerefPattern,shDerefString,shCommandSub,shDerefEscape nextgroup=shDerefPattern
 syn region shDerefPattern	contained	start="{" end="}"	contains=shDeref,shDerefSimple,shDerefString,shCommandSub nextgroup=shDerefPattern
 syn match  shDerefEscape	contained	'\%(\\\\\)*\\.'
endif
if exists("b:is_bash")
 syn match  shDerefOp	contained	"[,^]\{1,2}"	nextgroup=@shDerefPatternList
endif
syn region shDerefString	contained	matchgroup=shDerefDelim start=+\%(\\\)\@<!'+ end=+'+		contains=shStringSpecial
syn region shDerefString	contained	matchgroup=shDerefDelim start=+\%(\\\)\@<!"+ skip=+\\"+ end=+"+	contains=@shDblQuoteList,shStringSpecial
syn match  shDerefString	contained	"\\["']"	nextgroup=shDerefPattern

if exists("b:is_bash")
 " bash : ${parameter:offset}
 " bash : ${parameter:offset:length}
 syn region shDerefOp	contained	start=":[$[:alnum:]_]"me=e-1 end=":"me=e-1 end="}"me=e-1 contains=@shCommandSubList nextgroup=shDerefPOL
 syn match  shDerefPOL	contained	":[^}]\+"	contains=@shCommandSubList

 " bash : ${parameter//pattern/string}
 " bash : ${parameter//pattern}
 syn match  shDerefPPS	contained	'/\{1,2}'	nextgroup=shDerefPPSleft
 syn region shDerefPPSleft	contained	start='.'	skip=@\%(\\\\\)*\\/@ matchgroup=shDerefOp	end='/' end='\ze}' nextgroup=shDerefPPSright contains=@shCommandSubList
 syn region shDerefPPSright	contained	start='.'	skip=@\%(\\\\\)\+@		end='\ze}'	contains=@shCommandSubList
endif

" Arithmetic Parenthesized Expressions: {{{1
"syn region shParen matchgroup=shArithRegion start='[^$]\zs(\%(\ze[^(]\|$\)' end=')' contains=@shArithParenList
syn region shParen matchgroup=shArithRegion start='\$\@!(\%(\ze[^(]\|$\)' end=')' contains=@shArithParenList

" Useful sh Keywords: {{{1
" ===================
syn keyword shStatement break cd chdir continue eval exec exit kill newgrp pwd read readonly return shift test trap ulimit umask wait
syn keyword shConditional contained elif else then
if !exists("g:sh_no_error")
 syn keyword shCondError elif else then
endif

" Useful ksh Keywords: {{{1
" ====================
if exists("b:is_kornshell") || exists("b:is_bash")
 syn keyword shStatement autoload bg false fc fg functions getopts hash history integer jobs let nohup printf r stop suspend times true type unalias whence
 if exists("g:is_posix")
  syn keyword shStatement command
 else
  syn keyword shStatement time
 endif

" Useful bash Keywords: {{{1
" =====================
 if exists("b:is_bash")
  syn keyword shStatement bind builtin dirs disown enable help local logout popd pushd shopt source
 else
  syn keyword shStatement login newgrp
 endif
endif

" Synchronization: {{{1
" ================
if !exists("sh_minlines")
  let sh_minlines = 200
endif
if !exists("sh_maxlines")
  let sh_maxlines = 2 * sh_minlines
endif
exec "syn sync minlines=" . sh_minlines . " maxlines=" . sh_maxlines
syn sync match shCaseEsacSync	grouphere	shCaseEsac	"\<case\>"
syn sync match shCaseEsacSync	groupthere	shCaseEsac	"\<esac\>"
syn sync match shDoSync	grouphere	shDo	"\<do\>"
syn sync match shDoSync	groupthere	shDo	"\<done\>"
syn sync match shForSync	grouphere	shFor	"\<for\>"
syn sync match shForSync	groupthere	shFor	"\<in\>"
syn sync match shIfSync	grouphere	shIf	"\<if\>"
syn sync match shIfSync	groupthere	shIf	"\<fi\>"
syn sync match shUntilSync	grouphere	shRepeat	"\<until\>"
syn sync match shWhileSync	grouphere	shRepeat	"\<while\>"

" Default Highlighting: {{{1
" =====================
hi def link shArithRegion	shShellVariables
hi def link shAtExpr	shSetList
hi def link shBeginHere	shRedir
hi def link shCaseBar	shConditional
hi def link shCaseCommandSub	shCommandSub
hi def link shCaseDoubleQuote	shDoubleQuote
hi def link shCaseIn	shConditional
hi def link shQuote	shOperator
hi def link shCaseSingleQuote	shSingleQuote
hi def link shCaseStart	shConditional
hi def link shCmdSubRegion	shShellVariables
hi def link shColon	shComment
hi def link shDerefOp	shOperator
hi def link shDerefPOL	shDerefOp
hi def link shDerefPPS	shDerefOp
hi def link shDeref	shShellVariables
hi def link shDerefDelim	shOperator
hi def link shDerefSimple	shDeref
hi def link shDerefSpecial	shDeref
hi def link shDerefString	shDoubleQuote
hi def link shDerefVar	shDeref
hi def link shDoubleQuote	shString
hi def link shEcho	shString
hi def link shEchoDelim	shOperator
hi def link shEchoQuote	shString
hi def link shForPP	shLoop
hi def link shEmbeddedEcho	shString
hi def link shEscape	shCommandSub
hi def link shExDoubleQuote	shDoubleQuote
hi def link shExSingleQuote	shSingleQuote
hi def link shFunction	Function
hi def link shHereDoc	shString
hi def link shHerePayload	shHereDoc
hi def link shLoop	shStatement
hi def link shMoreSpecial	shSpecial
hi def link shOption	shCommandSub
hi def link shPattern	shString
hi def link shParen	shArithmetic
hi def link shPosnParm	shShellVariables
hi def link shQuickComment	shComment
hi def link shRange	shOperator
hi def link shRedir	shOperator
hi def link shSetListDelim	shOperator
hi def link shSetOption	shOption
hi def link shSingleQuote	shString
hi def link shSource	shOperator
hi def link shStringSpecial	shSpecial
hi def link shStringSpecial	Unique
hi def link shSubShRegion	shOperator
hi def link shTestOpr	shConditional
hi def link shTestPattern	shString
hi def link shTestDoubleQuote	shString
hi def link shTestSingleQuote	shString
hi def link shVariable	shSetList
hi def link shWrapLineOperator	shOperator

if exists("b:is_bash")
  hi def link bashAdminStatement	shStatement
  hi def link bashSpecialVariables	shShellVariables
  hi def link bashStatement		shStatement
  hi def link shFunctionParen		Delimiter
  hi def link shFunctionDelim		Delimiter
  hi def link shCharClass		shSpecial
endif
if exists("b:is_kornshell")
  hi def link kshSpecialVariables	shShellVariables
  hi def link kshStatement		shStatement
  hi def link shFunctionParen		Delimiter
endif

if !exists("g:sh_no_error")
 hi def link shCaseError		Error
 hi def link shCondError		Error
 hi def link shCurlyError		Error
 hi def link shDerefError		Error
 hi def link shDerefOpError		Error
 hi def link shDerefWordError		Error
 hi def link shDoError		Error
 hi def link shEsacError		Error
 hi def link shIfError		Error
 hi def link shInError		Error
 hi def link shParenError		Error
 hi def link shTestError		Error
 if exists("b:is_kornshell")
   hi def link shDTestError		Error
 endif
endif

hi def link shArithmetic		Special
hi def link shCharClass		Identifier
hi def link shSnglCase		Statement
hi def link shCommandSub		Special
hi def link shComment		Comment
hi def link shConditional		Conditional
hi def link shCtrlSeq		Special
hi def link shExprRegion		Delimiter
hi def link shFunctionKey		Function
hi def link shFunctionName		Function
hi def link shNumber		Number
hi def link shOperator		Operator
hi def link shRepeat		Repeat
hi def link shSet		Statement
hi def link shSetList		Identifier
hi def link shShellVariables		PreProc
hi def link shSpecial		Special
hi def link shStatement		Statement
hi def link shString		String
hi def link shTodo		Todo
hi def link shAlias		Identifier
hi def link shRedir01		shRedir
hi def link shRedir02		shRedir
hi def link shRedir03		shRedir
hi def link shRedir04		shRedir
hi def link shRedir05		shRedir
hi def link shRedir06		shRedir
hi def link shRedir07		shRedir
hi def link shRedir08		shRedir
hi def link shRedir09		shRedir
hi def link shRedir10		shRedir
hi def link shRedir11		shRedir
hi def link shRedir12		shRedir
hi def link shRedir13		shRedir
hi def link shRedir14		shRedir
hi def link shRedir15		shRedir
hi def link shRedir16		shRedir
hi def link shRedir17		shRedir
hi def link shRedir18		shRedir
hi def link shRedir19		shRedir
hi def link shRedir20		shRedir
hi def link shRedir21		shRedir
hi def link shRedir22		shRedir
hi def link shRedir23		shRedir
hi def link shRedir24		shRedir
hi def link shRedir25		shRedir
hi def link shRedir26		shRedir
hi def link shRedir27		shRedir
hi def link shRedir28		shRedir
hi def link shRedir29		shRedir
hi def link shRedir30		shRedir
hi def link shRedir31		shRedir
hi def link shRedir32		shRedir

" Set Current Syntax: {{{1
" ===================
if exists("b:is_bash")
 let b:current_syntax = "bash"
elseif exists("b:is_kornshell")
 let b:current_syntax = "ksh"
else
 let b:current_syntax = "sh"
endif

" vim: ts=16 fdm=marker
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        " Vim syntax support file
" Maintainer:	Bram Moolenaar <Bram@vim.org>
" Last Change:	2001 Sep 12

" This file sets up the default methods for highlighting.
" It is loaded from "synload.vim" and from Vim for ":syntax reset".
" Also used from init_highlight().

if !exists("syntax_cmd") || syntax_cmd == "on"
  " ":syntax on" works like in Vim 5.7: set colors but keep links
  command -nargs=* SynColor hi <args>
  command -nargs=* SynLink hi link <args>
else
  if syntax_cmd == "enable"
    " ":syntax enable" keeps any existing colors
    command -nargs=* SynColor hi def <args>
    command -nargs=* SynLink hi def link <args>
  elseif syntax_cmd == "reset"
    " ":syntax reset" resets all colors to the default
    command -nargs=* SynColor hi <args>
    command -nargs=* SynLink hi! link <args>
  else
    " User defined syncolor file has already set the colors.
    finish
  endif
endif

" Many terminals can only use six different colors (plus black and white).
" Therefore the number of colors used is kept low. It doesn't look nice with
" too many colors anyway.
" Careful with "cterm=bold", it changes the color to bright for some terminals.
" There are two sets of defaults: for a dark and a light background.
if &background == "dark"
  SynColor Comment	term=bold cterm=NONE ctermfg=Cyan ctermbg=NONE gui=NONE guifg=#80a0ff guibg=NONE
  SynColor Constant	term=underline cterm=NONE ctermfg=Magenta ctermbg=NONE gui=NONE guifg=#ffa0a0 guibg=NONE
  SynColor Special	term=bold cterm=NONE ctermfg=LightRed ctermbg=NONE gui=NONE guifg=Orange guibg=NONE
  SynColor Identifier	term=underline cterm=bold ctermfg=Cyan ctermbg=NONE gui=NONE guifg=#40ffff guibg=NONE
  SynColor Statement	term=bold cterm=NONE ctermfg=Yellow ctermbg=NONE gui=bold guifg=#ffff60 guibg=NONE
  SynColor PreProc	term=underline cterm=NONE ctermfg=LightBlue ctermbg=NONE gui=NONE guifg=#ff80ff guibg=NONE
  SynColor Type		term=underline cterm=NONE ctermfg=LightGreen ctermbg=NONE gui=bold guifg=#60ff60 guibg=NONE
  SynColor Underlined	term=underline cterm=underline ctermfg=LightBlue gui=underline guifg=#80a0ff
  SynColor Ignore	term=NONE cterm=NONE ctermfg=black ctermbg=NONE gui=NONE guifg=bg guibg=NONE
else
  SynColor Comment	term=bold cterm=NONE ctermfg=DarkBlue ctermbg=NONE gui=NONE guifg=Blue guibg=NONE
  SynColor Constant	term=underline cterm=NONE ctermfg=DarkRed ctermbg=NONE gui=NONE guifg=Magenta guibg=NONE
  SynColor Special	term=bold cterm=NONE ctermfg=DarkMagenta ctermbg=NONE gui=NONE guifg=SlateBlue guibg=NONE
  SynColor Identifier	term=underline cterm=NONE ctermfg=DarkCyan ctermbg=NONE gui=NONE guifg=DarkCyan guibg=NONE
  SynColor Statement	term=bold cterm=NONE ctermfg=Brown ctermbg=NONE gui=bold guifg=Brown guibg=NONE
  SynColor PreProc	term=underline cterm=NONE ctermfg=DarkMagenta ctermbg=NONE gui=NONE guifg=Purple guibg=NONE
  SynColor Type		term=underline cterm=NONE ctermfg=DarkGreen ctermbg=NONE gui=bold guifg=SeaGreen guibg=NONE
  SynColor Underlined	term=underline cterm=underline ctermfg=DarkMagenta gui=underline guifg=SlateBlue
  SynColor Ignore	term=NONE cterm=NONE ctermfg=white ctermbg=NONE gui=NONE guifg=bg guibg=NONE
endif
SynColor Error		term=reverse cterm=NONE ctermfg=White ctermbg=Red gui=NONE guifg=White guibg=Red
SynColor Todo		term=standout cterm=NONE ctermfg=Black ctermbg=Yellow gui=NONE guifg=Blue guibg=Yellow

" Common groups that link to default highlighting.
" You can specify other highlighting easily.
SynLink String		Constant
SynLink Character	Constant
SynLink Number		Constant
SynLink Boolean		Constant
SynLink Float		Number
SynLink Function	Identifier
SynLink Conditional	Statement
SynLink Repeat		Statement
SynLink Label		Statement
SynLink Operator	Statement
SynLink Keyword		Statement
SynLink Exception	Statement
SynLink Include		PreProc
SynLink Define		PreProc
SynLink Macro		PreProc
SynLink PreCondit	PreProc
SynLink StorageClass	Type
SynLink Structure	Type
SynLink Typedef		Type
SynLink Tag		Special
SynLink SpecialChar	Special
SynLink Delimiter	Special
SynLink SpecialComment	Special
SynLink Debug		Special

delcommand SynColor
delcommand SynLink
          " Vim syntax support file
" Maintainer:	Bram Moolenaar <Bram@vim.org>
" Last Change:	2012 Sep 25

" This file sets up for syntax highlighting.
" It is loaded from "syntax.vim" and "manual.vim".
" 1. Set the default highlight groups.
" 2. Install Syntax autocommands for all the available syntax files.

if !has("syntax")
  finish
endif

" let others know that syntax has been switched on
let syntax_on = 1

" Set the default highlighting colors.  Use a color scheme if specified.
if exists("colors_name")
  exe "colors " . colors_name
else
  runtime! syntax/syncolor.vim
endif

" Line continuation is used here, remove 'C' from 'cpoptions'
let s:cpo_save = &cpo
set cpo&vim

" First remove all old syntax autocommands.
au! Syntax

au Syntax *		call s:SynSet()

fun! s:SynSet()
  " clear syntax for :set syntax=OFF  and any syntax name that doesn't exist
  syn clear
  if exists("b:current_syntax")
    unlet b:current_syntax
  endif

  let s = expand("<amatch>")
  if s == "ON"
    " :set syntax=ON
    if &filetype == ""
      echohl ErrorMsg
      echo "filetype unknown"
      echohl None
    endif
    let s = &filetype
  elseif s == "OFF"
    let s = ""
  endif

  if s != ""
    " Load the syntax file(s).  When there are several, separated by dots,
    " load each in sequence.
    for name in split(s, '\.')
      exe "runtime! syntax/" . name . ".vim syntax/" . name . "/*.vim"
    endfor
  endif
endfun


" Handle adding doxygen to other languages (C, C++, C#, IDL)
au Syntax c,cpp,cs,idl,php
	\ if (exists('b:load_doxygen_syntax') && b:load_doxygen_syntax)
	\	|| (exists('g:load_doxygen_syntax') && g:load_doxygen_syntax)
	\   | runtime! syntax/doxygen.vim
	\ | endif


" Source the user-specified syntax highlighting file
if exists("mysyntaxfile") && filereadable(expand(mysyntaxfile))
  execute "source " . mysyntaxfile
endif

" Restore 'cpoptions'
let &cpo = s:cpo_save
unlet s:cpo_save
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          " Vim syntax support file
" Maintainer:	Bram Moolenaar <Bram@vim.org>
" Last Change:	2001 Sep 04

" This file is used for ":syntax on".
" It installs the autocommands and starts highlighting for all buffers.

if !has("syntax")
  finish
endif

" If Syntax highlighting appears to be on already, turn it off first, so that
" any leftovers are cleared.
if exists("syntax_on") || exists("syntax_manual")
  so <sfile>:p:h/nosyntax.vim
endif

" Load the Syntax autocommands and set the default methods for highlighting.
runtime syntax/synload.vim

" Load the FileType autocommands if not done yet.
if exists("did_load_filetypes")
  let s:did_ft = 1
else
  filetype on
  let s:did_ft = 0
endif

" Set up the connection between FileType and Syntax autocommands.
" This makes the syntax automatically set when the file type is detected.
augroup syntaxset
  au! FileType *	exe "set syntax=" . expand("<amatch>")
augroup END


" Execute the syntax autocommands for the each buffer.
" If the filetype wasn't detected yet, do that now.
" Always do the syntaxset autocommands, for buffers where the 'filetype'
" already was set manually (e.g., help buffers).
doautoall syntaxset FileType
if !s:did_ft
  doautoall filetypedetect BufRead
endif
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         `  " Vim syntax file
" Language:	Visual Basic
" Maintainer:	Tim Chase <vb.vim@tim.thechases.com>
" Former Maintainer:	Robert M. Cortopassi <cortopar@mindspring.com>
"	(tried multiple times to contact, but email bounced)
" Last Change:
"   2005 May 25  Synched with work by Thomas Barthel
"   2004 May 30  Added a few keywords

" This was thrown together after seeing numerous requests on the
" VIM and VIM-DEV mailing lists.  It is by no means complete.
" Send comments, suggestions and requests to the maintainer.

" For version 5.x: Clear all syntax items
" For version 6.x: Quit when a syntax file was already loaded
if version < 600
	syntax clear
elseif exists("b:current_syntax")
	finish
endif

" VB is case insensitive
syn case ignore

syn keyword vbConditional If Then ElseIf Else Select Case

syn keyword vbOperator AddressOf And ByRef ByVal Eqv Imp In
syn keyword vbOperator Is Like Mod Not Or To Xor

syn match vbOperator "[()+.,\-/*=&]"
syn match vbOperator "[<>]=\="
syn match vbOperator "<>"
syn match vbOperator "\s\+_$"

syn keyword vbBoolean  True False
syn keyword vbConst Null Nothing

syn keyword vbRepeat Do For ForEach Loop Next
syn keyword vbRepeat Step To Until Wend While

syn keyword vbEvents AccessKeyPress Activate ActiveRowChanged
syn keyword vbEvents AfterAddFile AfterChangeFileName AfterCloseFile
syn keyword vbEvents AfterColEdit AfterColUpdate AfterDelete
syn keyword vbEvents AfterInsert AfterLabelEdit AfterRemoveFile
syn keyword vbEvents AfterUpdate AfterWriteFile AmbientChanged
syn keyword vbEvents ApplyChanges Associate AsyncProgress
syn keyword vbEvents AsyncReadComplete AsyncReadProgress AxisActivated
syn keyword vbEvents AxisLabelActivated AxisLabelSelected
syn keyword vbEvents AxisLabelUpdated AxisSelected AxisTitleActivated
syn keyword vbEvents AxisTitleSelected AxisTitleUpdated AxisUpdated
syn keyword vbEvents BeforeClick BeforeColEdit BeforeColUpdate
syn keyword vbEvents BeforeConnect BeforeDelete BeforeInsert
syn keyword vbEvents BeforeLabelEdit BeforeLoadFile BeforeUpdate
syn keyword vbEvents BeginRequest BeginTrans ButtonClick
syn keyword vbEvents ButtonCompleted ButtonDropDown ButtonGotFocus
syn keyword vbEvents ButtonLostFocus CallbackKeyDown Change Changed
syn keyword vbEvents ChartActivated ChartSelected ChartUpdated Click
syn keyword vbEvents Close CloseQuery CloseUp ColEdit ColResize
syn keyword vbEvents Collapse ColumnClick CommitTrans Compare
syn keyword vbEvents ConfigChageCancelled ConfigChanged
syn keyword vbEvents ConfigChangedCancelled Connect ConnectionRequest
syn keyword vbEvents CurrentRecordChanged DECommandAdded
syn keyword vbEvents DECommandPropertyChanged DECommandRemoved
syn keyword vbEvents DEConnectionAdded DEConnectionPropertyChanged
syn keyword vbEvents DEConnectionRemoved DataArrival DataChanged
syn keyword vbEvents DataUpdated DateClicked DblClick Deactivate
syn keyword vbEvents DevModeChange DeviceArrival DeviceOtherEvent
syn keyword vbEvents DeviceQueryRemove DeviceQueryRemoveFailed
syn keyword vbEvents DeviceRemoveComplete DeviceRemovePending
syn keyword vbEvents Disconnect DisplayChanged Dissociate
syn keyword vbEvents DoGetNewFileName Done DonePainting DownClick
syn keyword vbEvents DragDrop DragOver DropDown EditProperty EditQuery
syn keyword vbEvents EndRequest EnterCell EnterFocus ExitFocus Expand
syn keyword vbEvents FontChanged FootnoteActivated FootnoteSelected
syn keyword vbEvents FootnoteUpdated Format FormatSize GotFocus
syn keyword vbEvents HeadClick HeightChanged Hide InfoMessage
syn keyword vbEvents IniProperties InitProperties Initialize
syn keyword vbEvents ItemActivated ItemAdded ItemCheck ItemClick
syn keyword vbEvents ItemReloaded ItemRemoved ItemRenamed
syn keyword vbEvents ItemSeletected KeyDown KeyPress KeyUp LeaveCell
syn keyword vbEvents LegendActivated LegendSelected LegendUpdated
syn keyword vbEvents LinkClose LinkError LinkExecute LinkNotify
syn keyword vbEvents LinkOpen Load LostFocus MouseDown MouseMove
syn keyword vbEvents MouseUp NodeCheck NodeClick OLECompleteDrag
syn keyword vbEvents OLEDragDrop OLEDragOver OLEGiveFeedback OLESetData
syn keyword vbEvents OLEStartDrag ObjectEvent ObjectMove OnAddNew
syn keyword vbEvents OnComm Paint PanelClick PanelDblClick PathChange
syn keyword vbEvents PatternChange PlotActivated PlotSelected
syn keyword vbEvents PlotUpdated PointActivated PointLabelActivated
syn keyword vbEvents PointLabelSelected PointLabelUpdated PointSelected
syn keyword vbEvents PointUpdated PowerQuerySuspend PowerResume
syn keyword vbEvents PowerStatusChanged PowerSuspend ProcessTag
syn keyword vbEvents ProcessingTimeout QueryChangeConfig QueryClose
syn keyword vbEvents QueryComplete QueryCompleted QueryTimeout
syn keyword vbEvents QueryUnload ReadProperties RepeatedControlLoaded
syn keyword vbEvents RepeatedControlUnloaded Reposition
syn keyword vbEvents RequestChangeFileName RequestWriteFile Resize
syn keyword vbEvents ResultsChanged RetainedProject RollbackTrans
syn keyword vbEvents RowColChange RowCurrencyChange RowResize
syn keyword vbEvents RowStatusChanged Scroll SelChange SelectionChanged
syn keyword vbEvents SendComplete SendProgress SeriesActivated
syn keyword vbEvents SeriesSelected SeriesUpdated SettingChanged Show
syn keyword vbEvents SplitChange Start StateChanged StatusUpdate
syn keyword vbEvents SysColorsChanged Terminate TimeChanged Timer
syn keyword vbEvents TitleActivated TitleSelected TitleUpdated
syn keyword vbEvents UnboundAddData UnboundDeleteRow
syn keyword vbEvents UnboundGetRelativeBookmark UnboundReadData
syn keyword vbEvents UnboundWriteData Unformat Unload UpClick Updated
syn keyword vbEvents UserEvent Validate ValidationError
syn keyword vbEvents VisibleRecordChanged WillAssociate WillChangeData
syn keyword vbEvents WillDissociate WillExecute WillUpdateRows
syn keyword vbEvents WriteProperties


syn keyword vbFunction Abs Array Asc AscB AscW Atn Avg BOF CBool CByte
syn keyword vbFunction CCur CDate CDbl CInt CLng CSng CStr CVDate CVErr
syn keyword vbFunction CVar CallByName Cdec Choose Chr ChrB ChrW Command
syn keyword vbFunction Cos Count CreateObject CurDir DDB Date DateAdd
syn keyword vbFunction DateDiff DatePart DateSerial DateValue Day Dir
syn keyword vbFunction DoEvents EOF Environ Error Exp FV FileAttr
syn keyword vbFunction FileDateTime FileLen FilterFix Fix Format
syn keyword vbFunction FormatCurrency FormatDateTime FormatNumber
syn keyword vbFunction FormatPercent FreeFile GetAllStrings GetAttr
syn keyword vbFunction GetAutoServerSettings GetObject GetSetting Hex
syn keyword vbFunction Hour IIf IMEStatus IPmt InStr Input InputB
syn keyword vbFunction InputBox InstrB Int IsArray IsDate IsEmpty IsError
syn keyword vbFunction IsMissing IsNull IsNumeric IsObject Join LBound
syn keyword vbFunction LCase LOF LTrim Left LeftB Len LenB LoadPicture
syn keyword vbFunction LoadResData LoadResPicture LoadResString Loc Log
syn keyword vbFunction MIRR Max Mid MidB Min Minute Month MonthName
syn keyword vbFunction MsgBox NPV NPer Now Oct PPmt PV Partition Pmt
syn keyword vbFunction QBColor RGB RTrim Rate Replace Right RightB Rnd
syn keyword vbFunction Round SLN SYD Second Seek Sgn Shell Sin Space Spc
syn keyword vbFunction Split Sqr StDev StDevP Str StrComp StrConv
syn keyword vbFunction StrReverse String Sum Switch Tab Tan Time
syn keyword vbFunction TimeSerial TimeValue Timer Trim TypeName UBound
syn keyword vbFunction UCase Val Var VarP VarType Weekday WeekdayName
syn keyword vbFunction Year

syn keyword vbMethods AboutBox Accept Activate Add AddCustom AddFile
syn keyword vbMethods AddFromFile AddFromGuid AddFromString
syn keyword vbMethods AddFromTemplate AddItem AddNew AddToAddInToolbar
syn keyword vbMethods AddToolboxProgID Append AppendAppendChunk
syn keyword vbMethods AppendChunk Arrange Assert AsyncRead BatchUpdate
syn keyword vbMethods BeginQueryEdit BeginTrans Bind BuildPath
syn keyword vbMethods CanPropertyChange Cancel CancelAsyncRead
syn keyword vbMethods CancelBatch CancelUpdate CaptureImage CellText
syn keyword vbMethods CellValue Circle Clear ClearFields ClearSel
syn keyword vbMethods ClearSelCols ClearStructure Clone Close Cls
syn keyword vbMethods ColContaining CollapseAll ColumnSize CommitTrans
syn keyword vbMethods CompactDatabase Compose Connect Copy CopyFile
syn keyword vbMethods CopyFolder CopyQueryDef Count CreateDatabase
syn keyword vbMethods CreateDragImage CreateEmbed CreateField
syn keyword vbMethods CreateFolder CreateGroup CreateIndex CreateLink
syn keyword vbMethods CreatePreparedStatement CreatePropery CreateQuery
syn keyword vbMethods CreateQueryDef CreateRelation CreateTableDef
syn keyword vbMethods CreateTextFile CreateToolWindow CreateUser
syn keyword vbMethods CreateWorkspace Customize Cut Delete
syn keyword vbMethods DeleteColumnLabels DeleteColumns DeleteFile
syn keyword vbMethods DeleteFolder DeleteLines DeleteRowLabels
syn keyword vbMethods DeleteRows DeselectAll DesignerWindow DoVerb Drag
syn keyword vbMethods Draw DriveExists Edit EditCopy EditPaste EndDoc
syn keyword vbMethods EnsureVisible EstablishConnection Execute Exists
syn keyword vbMethods Expand Export ExportReport ExtractIcon Fetch
syn keyword vbMethods FetchVerbs FileExists Files FillCache Find
syn keyword vbMethods FindFirst FindItem FindLast FindNext FindPrevious
syn keyword vbMethods FolderExists Forward GetAbsolutePathName
syn keyword vbMethods GetBaseName GetBookmark GetChunk GetClipString
syn keyword vbMethods GetData GetDrive GetDriveName GetFile GetFileName
syn keyword vbMethods GetFirstVisible GetFolder GetFormat GetHeader
syn keyword vbMethods GetLineFromChar GetNumTicks GetParentFolderName
syn keyword vbMethods GetRows GetSelectedPart GetSelection
syn keyword vbMethods GetSpecialFolder GetTempName GetText
syn keyword vbMethods GetVisibleCount GoBack GoForward Hide HitTest
syn keyword vbMethods HoldFields Idle Import InitializeLabels Insert
syn keyword vbMethods InsertColumnLabels InsertColumns InsertFile
syn keyword vbMethods InsertLines InsertObjDlg InsertRowLabels
syn keyword vbMethods InsertRows Item Keys KillDoc Layout Line Lines
syn keyword vbMethods LinkExecute LinkPoke LinkRequest LinkSend Listen
syn keyword vbMethods LoadFile LoadResData LoadResPicture LoadResString
syn keyword vbMethods LogEvent MakeCompileFile MakeCompiledFile
syn keyword vbMethods MakeReplica MoreResults Move MoveData MoveFile
syn keyword vbMethods MoveFirst MoveFolder MoveLast MoveNext
syn keyword vbMethods MovePrevious NavigateTo NewPage NewPassword
syn keyword vbMethods NextRecordset OLEDrag OnAddinsUpdate OnConnection
syn keyword vbMethods OnDisconnection OnStartupComplete Open
syn keyword vbMethods OpenAsTextStream OpenConnection OpenDatabase
syn keyword vbMethods OpenQueryDef OpenRecordset OpenResultset OpenURL
syn keyword vbMethods Overlay PSet PaintPicture PastSpecialDlg Paste
syn keyword vbMethods PeekData Play Point PopulatePartial PopupMenu
syn keyword vbMethods Print PrintForm PrintReport PropertyChanged Quit
syn keyword vbMethods Raise RandomDataFill RandomFillColumns
syn keyword vbMethods RandomFillRows ReFill Read ReadAll ReadFromFile
syn keyword vbMethods ReadLine ReadProperty Rebind Refresh RefreshLink
syn keyword vbMethods RegisterDatabase ReleaseInstance Reload Remove
syn keyword vbMethods RemoveAddInFromToolbar RemoveAll RemoveItem Render
syn keyword vbMethods RepairDatabase ReplaceLine Reply ReplyAll Requery
syn keyword vbMethods ResetCustom ResetCustomLabel ResolveName
syn keyword vbMethods RestoreToolbar Resync Rollback RollbackTrans
syn keyword vbMethods RowBookmark RowContaining RowTop Save SaveAs
syn keyword vbMethods SaveFile SaveToFile SaveToOle1File SaveToolbar
syn keyword vbMethods Scale ScaleX ScaleY Scroll SelPrint SelectAll
syn keyword vbMethods SelectPart Send SendData Set SetAutoServerSettings
syn keyword vbMethods SetData SetFocus SetOption SetSelection SetSize
syn keyword vbMethods SetText SetViewport Show ShowColor ShowFont
syn keyword vbMethods ShowHelp ShowOpen ShowPrinter ShowSave
syn keyword vbMethods ShowWhatsThis SignOff SignOn Size Skip SkipLine
syn keyword vbMethods Span Split SplitContaining StartLabelEdit
syn keyword vbMethods StartLogging Stop Synchronize Tag TextHeight
syn keyword vbMethods TextWidth ToDefaults Trace TwipsToChartPart
syn keyword vbMethods TypeByChartType URLFor Update UpdateControls
syn keyword vbMethods UpdateRecord UpdateRow Upto ValidateControls Value
syn keyword vbMethods WhatsThisMode Write WriteBlankLines WriteLine
syn keyword vbMethods WriteProperty WriteTemplate ZOrder
syn keyword vbMethods rdoCreateEnvironment rdoRegisterDataSource

syn keyword vbStatement Alias AppActivate As Base Beep Begin Call ChDir
syn keyword vbStatement ChDrive Close Const Date Declare DefBool DefByte
syn keyword vbStatement DefCur DefDate DefDbl DefDec DefInt DefLng DefObj
syn keyword vbStatement DefSng DefStr DefVar Deftype DeleteSetting Dim Do
syn keyword vbStatement Each ElseIf End Enum Erase Error Event Exit
syn keyword vbStatement Explicit FileCopy For ForEach Function Get GoSub
syn keyword vbStatement GoTo Gosub Implements Kill LSet Let Lib LineInput
syn keyword vbStatement Load Lock Loop Mid MkDir Name Next On OnError Open
syn keyword vbStatement Option Preserve Private Property Public Put RSet
syn keyword vbStatement RaiseEvent Randomize ReDim Redim Rem Reset Resume
syn keyword vbStatement Return RmDir SavePicture SaveSetting Seek SendKeys
syn keyword vbStatement Sendkeys Set SetAttr Static Step Stop Sub Time
syn keyword vbStatement Type Unload Unlock Until Wend While Width With
syn keyword vbStatement Write

syn keyword vbKeyword As Binary ByRef ByVal Date Empty Error Friend Get
syn keyword vbKeyword Input Is Len Lock Me Mid New Nothing Null On
syn keyword vbKeyword Option Optional ParamArray Print Private Property
syn keyword vbKeyword Public PublicNotCreateable OnNewProcessSingleUse
syn keyword vbKeyword InSameProcessMultiUse GlobalMultiUse Resume Seek
syn keyword vbKeyword Set Static Step String Time WithEvents

syn keyword vbTodo contained	TODO

"Datatypes
syn keyword vbTypes Boolean Byte Currency Date Decimal Double Empty
syn keyword vbTypes Integer Long Object Single String Variant

"VB defined values
syn keyword vbDefine dbBigInt dbBinary dbBoolean dbByte dbChar
syn keyword vbDefine dbCurrency dbDate dbDecimal dbDouble dbFloat
syn keyword vbDefine dbGUID dbInteger dbLong dbLongBinary dbMemo
syn keyword vbDefine dbNumeric dbSingle dbText dbTime dbTimeStamp
syn keyword vbDefine dbVarBinary

"VB defined values
syn keyword vbDefine vb3DDKShadow vb3DFace vb3DHighlight vb3DLight
syn keyword vbDefine vb3DShadow vbAbort vbAbortRetryIgnore
syn keyword vbDefine vbActiveBorder vbActiveTitleBar vbAlias
syn keyword vbDefine vbApplicationModal vbApplicationWorkspace
syn keyword vbDefine vbAppTaskManager vbAppWindows vbArchive vbArray
syn keyword vbDefine vbBack vbBinaryCompare vbBlack vbBlue vbBoolean
syn keyword vbDefine vbButtonFace vbButtonShadow vbButtonText vbByte
syn keyword vbDefine vbCalGreg vbCalHijri vbCancel vbCr vbCritical
syn keyword vbDefine vbCrLf vbCurrency vbCyan vbDatabaseCompare
syn keyword vbDefine vbDataObject vbDate vbDecimal vbDefaultButton1
syn keyword vbDefine vbDefaultButton2 vbDefaultButton3 vbDefaultButton4
syn keyword vbDefine vbDesktop vbDirectory vbDouble vbEmpty vbError
syn keyword vbDefine vbExclamation vbFirstFourDays vbFirstFullWeek
syn keyword vbDefine vbFirstJan1 vbFormCode vbFormControlMenu
syn keyword vbDefine vbFormFeed vbFormMDIForm vbFriday vbFromUnicode
syn keyword vbDefine vbGrayText vbGreen vbHidden vbHide vbHighlight
syn keyword vbDefine vbHighlightText vbHiragana vbIgnore vbIMEAlphaDbl
syn keyword vbDefine vbIMEAlphaSng vbIMEDisable vbIMEHiragana
syn keyword vbDefine vbIMEKatakanaDbl vbIMEKatakanaSng vbIMEModeAlpha
syn keyword vbDefine vbIMEModeAlphaFull vbIMEModeDisable
syn keyword vbDefine vbIMEModeHangul vbIMEModeHangulFull
syn keyword vbDefine vbIMEModeHiragana vbIMEModeKatakana
syn keyword vbDefine vbIMEModeKatakanaHalf vbIMEModeNoControl
syn keyword vbDefine vbIMEModeOff vbIMEModeOn vbIMENoOp vbIMEOff
syn keyword vbDefine vbIMEOn vbInactiveBorder vbInactiveCaptionText
syn keyword vbDefine vbInactiveTitleBar vbInfoBackground vbInformation
syn keyword vbDefine vbInfoText vbInteger vbKatakana vbKey0 vbKey1
syn keyword vbDefine vbKey2 vbKey3 vbKey4 vbKey5 vbKey6 vbKey7 vbKey8
syn keyword vbDefine vbKey9 vbKeyA vbKeyAdd vbKeyB vbKeyBack vbKeyC
syn keyword vbDefine vbKeyCancel vbKeyCapital vbKeyClear vbKeyControl
syn keyword vbDefine vbKeyD vbKeyDecimal vbKeyDelete vbKeyDivide
syn keyword vbDefine vbKeyDown vbKeyE vbKeyEnd vbKeyEscape vbKeyExecute
syn keyword vbDefine vbKeyF vbKeyF1 vbKeyF10 vbKeyF11 vbKeyF12 vbKeyF13
syn keyword vbDefine vbKeyF14 vbKeyF15 vbKeyF16 vbKeyF2 vbKeyF3 vbKeyF4
syn keyword vbDefine vbKeyF5 vbKeyF6 vbKeyF7 vbKeyF8 vbKeyF9 vbKeyG
syn keyword vbDefine vbKeyH vbKeyHelp vbKeyHome vbKeyI vbKeyInsert
syn keyword vbDefine vbKeyJ vbKeyK vbKeyL vbKeyLButton vbKeyLeft vbKeyM
syn keyword vbDefine vbKeyMButton vbKeyMenu vbKeyMultiply vbKeyN
syn keyword vbDefine vbKeyNumlock vbKeyNumpad0 vbKeyNumpad1
syn keyword vbDefine vbKeyNumpad2 vbKeyNumpad3 vbKeyNumpad4
syn keyword vbDefine vbKeyNumpad5 vbKeyNumpad6 vbKeyNumpad7
syn keyword vbDefine vbKeyNumpad8 vbKeyNumpad9 vbKeyO vbKeyP
syn keyword vbDefine vbKeyPageDown vbKeyPageUp vbKeyPause vbKeyPrint
syn keyword vbDefine vbKeyQ vbKeyR vbKeyRButton vbKeyReturn vbKeyRight
syn keyword vbDefine vbKeyS vbKeySelect vbKeySeparator vbKeyShift
syn keyword vbDefine vbKeySnapshot vbKeySpace vbKeySubtract vbKeyT
syn keyword vbDefine vbKeyTab vbKeyU vbKeyUp vbKeyV vbKeyW vbKeyX
syn keyword vbDefine vbKeyY vbKeyZ vbLf vbLong vbLowerCase vbMagenta
syn keyword vbDefine vbMaximizedFocus vbMenuBar vbMenuText
syn keyword vbDefine vbMinimizedFocus vbMinimizedNoFocus vbMonday
syn keyword vbDefine vbMsgBox vbMsgBoxHelpButton vbMsgBoxRight
syn keyword vbDefine vbMsgBoxRtlReading vbMsgBoxSetForeground
syn keyword vbDefine vbMsgBoxText vbNarrow vbNewLine vbNo vbNormal
syn keyword vbDefine vbNormalFocus vbNormalNoFocus vbNull vbNullChar
syn keyword vbDefine vbNullString vbObject vbObjectError vbOK
syn keyword vbDefine vbOKCancel vbOKOnly vbProperCase vbQuestion
syn keyword vbDefine vbReadOnly vbRed vbRetry vbRetryCancel vbSaturday
syn keyword vbDefine vbScrollBars vbSingle vbString vbSunday vbSystem
syn keyword vbDefine vbSystemModal vbTab vbTextCompare vbThursday
syn keyword vbDefine vbTitleBarText vbTuesday vbUnicode vbUpperCase
syn keyword vbDefine vbUseSystem vbUseSystemDayOfWeek vbVariant
syn keyword vbDefine vbVerticalTab vbVolume vbWednesday vbWhite vbWide
syn keyword vbDefine vbWindowBackground vbWindowFrame vbWindowText
syn keyword vbDefine vbYellow vbYes vbYesNo vbYesNoCancel

"Numbers
"integer number, or floating point number without a dot.
syn match vbNumber "\<\d\+\>"
"floating point number, with dot
syn match vbNumber "\<\d\+\.\d*\>"
"floating point number, starting with a dot
syn match vbNumber "\.\d\+\>"
"syn match  vbNumber		"{[[:xdigit:]-]\+}\|&[hH][[:xdigit:]]\+&"
"syn match  vbNumber		":[[:xdigit:]]\+"
"syn match  vbNumber		"[-+]\=\<\d\+\>"
syn match  vbFloat		"[-+]\=\<\d\+[eE][\-+]\=\d\+"
syn match  vbFloat		"[-+]\=\<\d\+\.\d*\([eE][\-+]\=\d\+\)\="
syn match  vbFloat		"[-+]\=\<\.\d\+\([eE][\-+]\=\d\+\)\="

" String and Character contstants
syn region  vbString		start=+"+  end=+"\|$+
syn region  vbComment		start="\(^\|\s\)REM\s" end="$" contains=vbTodo
syn region  vbComment		start="\(^\|\s\)\'"   end="$" contains=vbTodo
syn match   vbLineNumber	"^\d\+\(\s\|$\)"
syn match   vbTypeSpecifier  "[a-zA-Z0-9][\$%&!#]"ms=s+1
syn match   vbTypeSpecifier  "#[a-zA-Z0-9]"me=e-1

" Define the default highlighting.
" For version 5.7 and earlier: only when not done already
" For version 5.8 and later: only when an item doesn't have highlighting yet
if version >= 508 || !exists("did_vb_syntax_inits")
	if version < 508
		let did_vb_syntax_inits = 1
		command -nargs=+ HiLink hi link <args>
	else
		command -nargs=+ HiLink hi def link <args>
	endif

	HiLink vbBoolean		Boolean
	HiLink vbLineNumber		Comment
	HiLink vbComment		Comment
	HiLink vbConditional	Conditional
	HiLink vbConst			Constant
	HiLink vbDefine			Constant
	HiLink vbError			Error
	HiLink vbFunction		Identifier
	HiLink vbIdentifier		Identifier
	HiLink vbNumber			Number
	HiLink vbFloat			Float
	HiLink vbMethods		PreProc
	HiLink vbOperator		Operator
	HiLink vbRepeat			Repeat
	HiLink vbString			String
	HiLink vbStatement		Statement
	HiLink vbKeyword		Statement
	HiLink vbEvents			Special
	HiLink vbTodo			Todo
	HiLink vbTypes			Type
	HiLink vbTypeSpecifier	Type

	delcommand HiLink
endif

let b:current_syntax = "vb"

" vim: ts=8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         " Vim syntax file
" Language:	Vim 7.4 script
" Maintainer:	Charles E. Campbell <NdrOchipS@PcampbellAfamily.Mbiz>
" Last Change:	Mar 20, 2014
" Version:	7.4-27
" Automatically generated keyword lists: {{{1

" Quit when a syntax file was already loaded {{{2
if exists("b:current_syntax")
  finish
endif
let s:keepcpo= &cpo
set cpo&vim

" vimTodo: contains common special-notices for comments {{{2
" Use the vimCommentGroup cluster to add your own.
syn cluster vimCommentGroup	contains=vimTodo,@Spell

" regular vim commands {{{2
syn keyword vimCommand contained	a arga[dd] ar[gs] bd[elete] bN[ext] breakd[el] bufdo cabc[lear] cat[ch] cex[pr] c[hange] cla[st] cnew[er] cNf[ile] con cp[revious] cuna[bbrev] del deletep delm[arks] diffp[atch] dig[raphs] do e echon endf endw[hile] f[ile] fin[d] folddoc[losed] fu[nction] gvim helpt[ags] iabc[lear] intro k l lan lc[d] lefta[bove] lg[etfile] lla[st] lnew[er] lNf[ile] lockv[ar] ls lvimgrepa[dd] mat[ch] mk[exrc] mo n n[ext] o ownsyntax perld[o] pre[serve] promptf[ind] ptl[ast] ptr[ewind] py3do qa[ll] r[ead] redr[aw] retu[rn] rub[y] rv[iminfo] sba[ll] sbN[ext] scripte[ncoding] setf[iletype] sh[ell] sim[alt] sm[ap] sni[ff] sor[t] spelli[nfo] spr[evious] start st[op] sunmenu syn ta tabf[ind] tabnew tabr[ewind] tcld[o] tj[ump] tN tr tu[nmenu] undoj[oin] uns[ilent] ve[rsion] vimgrepa[dd] vs[plit] winc[md] wN[ext] ws[verb] x[it] xnoremenu
syn keyword vimCommand contained	ab argd[elete] argu[ment] bel[owright] bo[tright] breakl[ist] b[uffer] cad cb[uffer] cf[ile] changes cl[ist] cn[ext] col[der] conf[irm] cq[uit] cw[indow] delc[ommand] deletl delp diffpu[t] dir doau ea e[dit] endfo[r] ene[w] files fini[sh] foldd[oopen] g h hi if is[earch] keepa la lan[guage] lch[dir] lex[pr] lgr[ep] lli[st] lne[xt] lo lol[der] lt[ag] lw[indow] menut mks[ession] mod[e] nbc[lose] nmapc[lear] ol[dfiles] p po[p] prev[ious] promptr[epl] ptn pts[elect] pydo q[uit] rec[over] redraws[tatus] rew[ind] rubyd[o] sal[l] sbf[irst] sbp[revious] scrip[tnames] setg[lobal] si sl sme sno[magic] so[urce] spellr[epall] sre[wind] startg[replace] stopi[nsert] sus[pend] sync tab tabfir[st] tabn[ext] tabs tclf[ile] tl[ast] tn[ext] tr[ewind] u undol[ist] up[date] vert[ical] vi[sual] w windo wp[revious] wundo xmapc[lear] xunme
syn keyword vimCommand contained	abc[lear] argdo as[cii] bf[irst] bp[revious] br[ewind] buffers caddb[uffer] cc cfir[st] chd[ir] clo[se] cN[ext] colo[rscheme] con[tinue] cr[ewind] d delel deletp dep diffs[plit] di[splay] dp earlier el[se] endfun ex filet fir[st] foldo[pen] go[to] ha[rdcopy] hid[e] ij[ump] isp[lit] keepalt lad la[st] lcl[ose] lf[ile] lgrepa[dd] lmak[e] lN[ext] loadk lop[en] lua ma menut[ranslate] mksp[ell] m[ove] nb[key] noa omapc[lear] pc[lose] popu p[rint] ps[earch] ptN pu[t] pyf[ile] quita[ll] red reg[isters] ri[ght] rubyf[ile] san[dbox] sbl[ast] sbr[ewind] scs setl[ocal] sig sla[st] smenu snoreme spe spellu[ndo] st star[tinsert] sts[elect] sv[iew] syncbind tabc[lose] tabl[ast] tabN[ext] ta[g] te[aroff] tm tN[ext] try un unh[ide] v vi viu[sage] wa[ll] winp[os] wq wv[iminfo] xme xunmenu
syn keyword vimCommand contained	abo[veleft] arge[dit] au bl[ast] br bro[wse] bun[load] cad[dexpr] ccl[ose] cgetb[uffer] che[ckpath] cmapc[lear] cnf com cope[n] cs de delep delf di difft[his] dj[ump] dr[op] ec elsei[f] endf[unction] exi[t] filetype fix[del] for gr[ep] h[elp] his[tory] il[ist] iuna[bbrev] keepj[umps] laddb[uffer] lat lcs lfir[st] lh[elpgrep] lmapc[lear] lnf loadkeymap lpf[ile] luado mak[e] mes mkv mz nbs[tart] noautocmd on[ly] pe popu[p] pro pta[g] ptn[ext] pw[d] py[thon] r redi[r] res[ize] rightb[elow] rundo sa[rgument] sbm[odified] sb[uffer] scscope sf[ind] sign sl[eep] sn[ext] snoremenu spelld[ump] spellw[rong] sta[g] startr[eplace] sun[hide] sw[apname] syntime tabd[o] tabm[ove] tabo[nly] tags tf[irst] tm[enu] to[pleft] ts[elect] una[bbreviate] unl ve vie[w] vmapc[lear] wh[ile] win[size] wqa[ll] x xmenu xwininfo
syn keyword vimCommand contained	al[l] argg[lobal] bad[d] bm[odified] brea[k] bu bw[ipeout] caddf[ile] cd cgete[xpr] checkt[ime] cn cNf comc[lear] co[py] cscope debug d[elete] delf[unction] diffg[et] diffu[pdate] dl ds[earch] echoe[rr] em[enu] en[dif] exu[sage] fin fo[ld] fu grepa[dd] helpf[ind] i imapc[lear] j[oin] kee[pmarks] lad[dexpr] later lcscope lgetb[uffer] l[ist] lN lNf lo[adview] lp[revious] luafile ma[rk] messages mkvie[w] mzf[ile] ne noh[lsearch] o[pen] ped[it] pp[op] profd[el] ptf[irst] ptN[ext] py python3 re red[o] ret[ab] ru ru[ntime] sav[eas] sbn[ext] scrip se[t] sfir[st] sil[ent] sm[agic] sN[ext] so spe[llgood] sp[lit] star stj[ump] sunme sy t tabe[dit] tabN tabp[revious] tc[l] th[row] tn tp[revious] tu u[ndo] unlo[ckvar] verb[ose] vim[grep] vne[w] win wn[ext] w[rite] xa[ll] xnoreme y[ank]
syn keyword vimCommand contained	ar argl[ocal] ba[ll] bn[ext] breaka[dd] buf c cal[l] ce[nter] cg[etfile] cl cN cnf[ile] comp[iler] cpf[ile] cstag debugg[reedy] deletel dell diffo[ff] dig dli[st] dsp[lit] echom[sg] en endt[ry] f fina[lly] foldc[lose] fun gui helpg[rep] ia in ju[mps] keepp[atterns] laddf[ile] lb[uffer] le[ft] lgete[xpr] ll lne lnf[ile] loc[kmarks] lr[ewind] lv[imgrep] marks mk mkv[imrc] mz[scheme] new nu[mber] opt[ions] pe[rl] pr prof[ile] ptj[ump] ptp[revious] py3 q 
syn match   vimCommand contained	"\<z[-+^.=]\="
syn keyword vimStdPlugin contained	DiffOrig Man N[ext] P[rint] S TOhtml XMLent XMLns 

" vimOptions are caught only when contained in a vimSet {{{2
syn keyword vimOption contained	acd ambiwidth arabicshape autowriteall backupdir bdlay binary breakat bufhidden cd ci cinw co commentstring confirm cpoptions cscoperelative csre cursorcolumn delcombine diffopt ea efm ep et fdc fdo ffs filetype fo foldlevelstart formatexpr ft gfw gtt guipty hh hkmap ic imaf iminsert includeexpr inf isident key langmap lines lmap ma matchtime mco ml modeline mousefocus mousetime nrformats ofu para pdev pi previewwindow printmbfont qe relativenumber rightleftcmd ru sbr scrolloff selection shellcmdflag shellxescape showbreak si smartcase softtabstop spelllang sps sta su swb synmaxcol tagbsearch tbi termencoding thesaurus titlestring tpm ttm ttytype undodir ut vfile vop wcm whichwrap wildignore winaltkeys winminwidth wmnu write
syn keyword vimOption contained	ai ambw ari aw backupext beval biosk brk buflisted cdpath cin cinwords cocu compatible consk cpt cscopetag cst cursorline dex digraph ead ei equalalways eventignore fde fdt fic fillchars foldclose foldmarker formatlistpat gcr ghr guicursor guitablabel hi hkmapp icon imak ims incsearch infercase isk keymap langmenu linespace loadplugins macatsui maxcombine mef mls modelines mousehide mp nu omnifunc paragraphs penc pm printdevice printoptions quoteescape remap rl ruf sc scrollopt selectmode shellpipe shellxquote showcmd sidescroll smartindent sol spellsuggest sr stal sua swf syntax taglength tbidi terse tildeop tl tr tty tw undofile vb vi wa wd wi wildignorecase window winwidth wmw writeany
syn keyword vimOption contained	akm anti arshape awa backupskip bex bioskey browsedir buftype cedit cindent clipboard cole complete conskey crb cscopetagorder csto cwh dg dip eadirection ek equalprg ex fdi fen fileencoding fk foldcolumn foldmethod formatoptions gd go guifont guitabtooltip hid hkp iconstring imc imsearch inde insertmode iskeyword keymodel laststatus lisp lpl magic maxfuncdepth menuitems mm modifiable mousem mps number opendevice paste pex pmbcs printencoding prompt rdt report rlc ruler scb scs sessionoptions shellquote shiftround showfulltag sidescrolloff smarttab sp spf srr startofline suffixes switchbuf ta tagrelative tbis textauto timeout tm ts ttybuiltin tx undolevels vbs viewdir wak weirdinvert wic wildmenu winfixheight wiv wop writebackup
syn keyword vimOption contained	al antialias autochdir background balloondelay bexpr bk bs casemap cf cink cmdheight colorcolumn completefunc copyindent cryptmethod cscopeverbose csverb debug dict dir eb enc errorbells expandtab fdl fenc fileencodings fkmap foldenable foldminlines formatprg gdefault gp guifontset helpfile hidden hl ignorecase imcmdline imsf indentexpr is isp keywordprg lazyredraw lispwords ls makeef maxmapdepth mfd mmd modified mousemodel msm numberwidth operatorfunc pastetoggle pexpr pmbfn printexpr pt re restorescreen rnu rulerformat scr sect sft shellredir shiftwidth showmatch siso smc spc spl ss statusline suffixesadd sws tabline tags tbs textmode timeoutlen to tsl ttyfast uc undoreload vdir viewoptions warn wfh wig wildmode winfixwidth wiw wrap writedelay
syn keyword vimOption contained	aleph ar autoindent backspace ballooneval bg bkc bsdir cb cfu cinkeys cmdwinheight columns completeopt cot cscopepathcomp cspc cuc deco dictionary directory ed encoding errorfile exrc fdls fencs fileformat flp foldexpr foldnestmax fp gfm grepformat guifontwide helpheight highlight hlg im imd imstatusfunc indentkeys isf isprint km lbr list lsp makeprg maxmem mh mmp more mouses mzq nuw opfunc patchexpr pfn popt printfont pumheight readonly revins ro runtimepath scroll sections sh shellslash shm showmode sj smd spell splitbelow ssl stl sw sxe tabpagemax tagstack tenc textwidth title toolbar tsr ttym udf updatecount ve viminfo wb wfw wildchar wildoptions winheight wm wrapmargin ws
syn keyword vimOption contained	allowrevins arab autoread backup balloonexpr bh bl bsk cc ch cino cmp com concealcursor cp cscopeprg csprg cul def diff display edcompatible endofline errorformat fcl fdm fex fileformats fml foldignore foldopen fs gfn grepprg guiheadroom helplang history hls imactivatefunc imdisable inc indk isfname joinspaces kmp lcs listchars lw mat maxmempattern mis mmt mouse mouseshape mzquantum odev osfiletype patchmode ph preserveindent printheader pvh redrawtime ri rs sb scrollbind secure shcf shelltemp shortmess showtabline slm sn spellcapcheck splitright ssop stmp swapfile sxq tabstop tal term tf titlelen toolbariconsize ttimeout ttymouse udir updatetime verbose virtualedit wc wh wildcharm wim winminheight wmh wrapscan ww
syn keyword vimOption contained	altkeymap arabic autowrite backupcopy bdir bin bomb bt ccv charconvert cinoptions cms comments conceallevel cpo cscopequickfix csqf cursorbind define diffexpr dy ef eol esckeys fcs fdn ff fileignorecase fmr foldlevel foldtext fsync gfs gtl guioptions hf hk hlsearch imactivatekey imi include inex isi js kp linebreak lm lz matchpairs maxmemtot mkspellmem mod mousef mouset nf oft pa path pheader previewheight printmbcharset pvw regexpengine rightleft rtp sbo scrolljump sel shell shelltype shortname shq sm so spellfile spr st sts swapsync syn tag tb termbidi tgst titleold top ttimeoutlen ttyscroll ul ur verbosefile visualbell 

" vimOptions: These are the turn-off setting variants {{{2
syn keyword vimOption contained	noacd noallowrevins noantialias noarabic noarshape noautoread noaw noballooneval nobinary nobk nobuflisted nocin noconfirm nocopyindent nocscoperelative nocsre nocuc nocursorcolumn nodelcombine nodigraph noed noendofline noerrorbells noex nofen nofk nogd nohid nohkmap nohkp nohlsearch noicon noim noimcmdline noimdisable noinf noinsertmode nojoinspaces nolazyredraw nolinebreak nolist nolpl noma nomagic noml nomodeline nomodified nomousef nomousehide nonumber noopendevice nopi nopreviewwindow nopvw norelativenumber norestorescreen nori norl noro noru nosb noscb noscs nosft noshelltemp noshortname noshowfulltag noshowmode nosm nosmartindent nosmd nosol nosplitbelow nospr nossl nostartofline noswapfile nota notagrelative notbi notbs noterse notextmode notgst notimeout noto notr nottybuiltin notx noundofile novisualbell nowarn noweirdinvert nowfw nowildignorecase nowinfixheight nowiv nowrap nowrite nowritebackup
syn keyword vimOption contained	noai noaltkeymap noar noarabicshape noautochdir noautowrite noawa nobeval nobiosk nobl nocf nocindent noconsk nocp nocscopetag nocst nocul nocursorline nodg noea noedcompatible noeol noesckeys noexpandtab nofic nofkmap nogdefault nohidden nohkmapp nohls noic noignorecase noimc noimd noincsearch noinfercase nois nojs nolbr nolisp noloadplugins nolz nomacatsui nomh nomod nomodifiable nomore nomousefocus nonu noodev nopaste nopreserveindent noprompt noreadonly noremap norevins norightleft nornu nors noruler nosc noscrollbind nosecure noshellslash noshiftround noshowcmd noshowmatch nosi nosmartcase nosmarttab nosn nospell nosplitright nosr nosta nostmp noswf notagbsearch notagstack notbidi notermbidi notextauto notf notildeop notitle notop nottimeout nottyfast noudf novb nowa nowb nowfh nowic nowildmenu nowinfixwidth nowmnu nowrapscan nowriteany nows
syn keyword vimOption contained	noakm noanti noarab noari noautoindent noautowriteall nobackup nobin nobioskey nobomb noci nocompatible noconskey nocrb nocscopeverbose nocsverb nocursorbind nodeco nodiff noeb noek noequalalways noet noexrc nofileignorecase nofoldenable noguipty nohk 

" vimOptions: These are the invertible variants {{{2
syn keyword vimOption contained	invacd invallowrevins invantialias invarabic invarshape invautoread invaw invballooneval invbinary invbk invbuflisted invcin invconfirm invcopyindent invcscoperelative invcsre invcuc invcursorcolumn invdelcombine invdigraph inved invendofline inverrorbells invex invfen invfk invgd invhid invhkmap invhkp invhlsearch invicon invim invimcmdline invimdisable invinf invinsertmode invjoinspaces invlazyredraw invlinebreak invlist invlpl invma invmagic invml invmodeline invmodified invmousef invmousehide invnumber invopendevice invpi invpreviewwindow invpvw invrelativenumber invrestorescreen invri invrl invro invru invsb invscb invscs invsft invshelltemp invshortname invshowfulltag invshowmode invsm invsmartindent invsmd invsol invsplitbelow invspr invssl invstartofline invswapfile invta invtagrelative invtbi invtbs invterse invtextmode invtgst invtimeout invto invtr invttybuiltin invtx invundofile invvisualbell invwarn invweirdinvert invwfw invwildignorecase invwinfixheight invwiv invwrap invwrite invwritebackup
syn keyword vimOption contained	invai invaltkeymap invar invarabicshape invautochdir invautowrite invawa invbeval invbiosk invbl invcf invcindent invconsk invcp invcscopetag invcst invcul invcursorline invdg invea invedcompatible inveol invesckeys invexpandtab invfic invfkmap invgdefault invhidden invhkmapp invhls invic invignorecase invimc invimd invincsearch invinfercase invis invjs invlbr invlisp invloadplugins invlz invmacatsui invmh invmod invmodifiable invmore invmousefocus invnu invodev invpaste invpreserveindent invprompt invreadonly invremap invrevins invrightleft invrnu invrs invruler invsc invscrollbind invsecure invshellslash invshiftround invshowcmd invshowmatch invsi invsmartcase invsmarttab invsn invspell invsplitright invsr invsta invstmp invswf invtagbsearch invtagstack invtbidi invtermbidi invtextauto invtf invtildeop invtitle invtop invttimeout invttyfast invudf invvb invwa invwb invwfh invwic invwildmenu invwinfixwidth invwmnu invwrapscan invwriteany invws
syn keyword vimOption contained	invakm invanti invarab invari invautoindent invautowriteall invbackup invbin invbioskey invbomb invci invcompatible invconskey invcrb invcscopeverbose invcsverb invcursorbind invdeco invdiff inveb invek invequalalways invet invexrc invfileignorecase invfoldenable invguipty invhk 

" termcap codes (which can also be set) {{{2
syn keyword vimOption contained	t_AB t_al t_bc t_ce t_cl t_Co t_Cs t_CS t_CV t_da t_db t_dl t_DL t_EI t_F1 t_F2 t_F3 t_F4 t_F5 t_F6 t_F7 t_F8 t_F9 t_fs t_IE t_IS t_k1 t_K1 t_k2 t_k3 t_K3 t_k4 t_K4 t_k5 t_K5 t_k6 t_K6 t_k7 t_K7 t_k8 t_K8 t_k9 t_K9 t_KA t_kb t_kB t_KB t_KC t_kd t_kD t_KD t_ke t_KE t_KF t_KG t_kh t_KH t_kI t_KI t_KJ t_KK t_kl t_KL t_kN t_kP t_kr t_ks t_ku t_le t_mb t_md t_me t_mr t_ms t_nd t_op t_RI t_RV t_Sb t_se t_Sf t_SI t_so t_sr t_te t_ti t_ts t_u7 t_ue t_us t_ut t_vb t_ve t_vi t_vs t_WP t_WS t_xs t_ZH t_ZR
syn keyword vimOption contained	t_AF t_AL t_cd t_Ce t_cm t_cs 
syn match   vimOption contained	"t_%1"
syn match   vimOption contained	"t_#2"
syn match   vimOption contained	"t_#4"
syn match   vimOption contained	"t_@7"
syn match   vimOption contained	"t_*7"
syn match   vimOption contained	"t_&8"
syn match   vimOption contained	"t_%i"
syn match   vimOption contained	"t_k;"

" unsupported settings: these are supported by vi but don't do anything in vim {{{2
syn keyword vimErrSetting contained	hardtabs ht w1200 w300 w9600 

" AutoCmd Events {{{2
syn case ignore
syn keyword vimAutoEvent contained	BufAdd BufCreate BufDelete BufEnter BufFilePost BufFilePre BufHidden BufLeave BufNew BufNewFile BufRead BufReadCmd BufReadPost BufReadPre BufUnload BufWinEnter BufWinLeave BufWipeout BufWrite BufWriteCmd BufWritePost BufWritePre Cmd-event CmdwinEnter CmdwinLeave ColorScheme CompleteDone CursorHold CursorHoldI CursorMoved CursorMovedI EncodingChanged FileAppendCmd FileAppendPost FileAppendPre FileChangedRO FileChangedShell FileChangedShellPost FileEncoding FileReadCmd FileReadPost FileReadPre FileType FileWriteCmd FileWritePost FileWritePre FilterReadPost FilterReadPre FilterWritePost FilterWritePre FocusGained FocusLost FuncUndefined GUIEnter GUIFailed InsertChange InsertCharPre InsertEnter InsertLeave MenuPopup QuickFixCmdPost QuickFixCmdPre QuitPre RemoteReply SessionLoadPost ShellCmdPost ShellFilterPost SourceCmd SourcePre SpellFileMissing StdinReadPost StdinReadPre SwapExists Syntax TabEnter TabLeave TermChanged TermResponse TextChanged TextChangedI User UserGettingBored VimEnter VimLeave VimLeavePre VimResized WinEnter WinLeave 

" Highlight commonly used Groupnames {{{2
syn keyword vimGroup contained	Comment Constant String Character Number Boolean Float Identifier Function Statement Conditional Repeat Label Operator Keyword Exception PreProc Include Define Macro PreCondit Type StorageClass Structure Typedef Special SpecialChar Tag Delimiter SpecialComment Debug Underlined Ignore Error Todo 

" Default highlighting groups {{{2
syn keyword vimHLGroup contained	ColorColumn Cursor CursorColumn CursorIM CursorLine CursorLineNr DiffAdd DiffChange DiffDelete DiffText Directory ErrorMsg FoldColumn Folded IncSearch LineNr MatchParen Menu ModeMsg MoreMsg NonText Normal Pmenu PmenuSbar PmenuSel PmenuThumb Question Scrollbar Search SignColumn SpecialKey SpellBad SpellCap SpellLocal SpellRare StatusLine StatusLineNC TabLine TabLineFill TabLineSel Title Tooltip VertSplit Visual VisualNOS WarningMsg WildMenu 
syn match vimHLGroup contained	"Conceal"
syn case match

" Function Names {{{2
syn keyword vimFuncName contained	abs and argidx atan browsedir bufloaded bufwinnr byteidxcomp changenr clearmatches complete_add copy count deepcopy diff_filler escape executable expand feedkeys filter float2nr fnameescape foldclosedend foldtextresult garbagecollect getbufvar getcmdline getcwd getfsize getline getpid getreg gettabwinvar getwinvar has hasmapto histget hlID indent inputdialog inputsave invert items len line localtime luaeval mapcheck matcharg matchlist min mzeval or prevnonblank py3eval readfile remote_expr remote_read rename reverse screenchar search searchpairpos serverlist setcmdpos setloclist setpos setreg settabwinvar sha256 shiftwidth sin sort spellbadword split str2float strchars strftime string strpart strtrans submatch synconcealed synIDattr synstack tabpagebuflist tabpagewinnr taglist tanh tolower tr type undotree virtcol wildmenumode wincol winline winrestcmd winsaveview writefile
syn keyword vimFuncName contained	acos append argv atan2 bufexists bufname byte2line call char2nr col complete_check cos cscope_connection delete diff_hlID eval exists expr8 filereadable finddir floor fnamemodify foldlevel foreground get getchar getcmdpos getfontname getftime getloclist getpos getregtype getwinposx glob has_key histadd histnr hostname index inputlist inputsecret isdirectory join libcall line2byte log map match matchdelete matchstr mkdir nextnonblank pathshorten printf pyeval reltime remote_foreground remote_send repeat round screencol searchdecl searchpos setbufvar setline setmatches setqflist settabvar setwinvar shellescape simplify sinh soundfold spellsuggest sqrt str2nr strdisplaywidth stridx strlen strridx strwidth substitute synID synIDtrans system tabpagenr tagfiles tan tempname toupper trunc undofile values visualmode winbufnr winheight winnr winrestview winwidth xor
syn keyword vimFuncName contained	add argc asin browse buflisted bufnr byteidx ceil cindent complete confirm cosh cursor did_filetype empty eventhandler exp extend filewritable findfile fmod foldclosed foldtext function getbufline getcharmod getcmdtype getfperm getftype getmatches getqflist gettabvar getwinposy globpath haslocaldir histdel hlexists iconv input inputrestore insert islocked keys libcallnr lispindent log10 maparg matchadd matchend max mode nr2char pow pumvisible range reltimestr remote_peek remove resolve screenattr screenrow searchpair server2client 

"--- syntax here and above generated by mkvimvim ---
" Special Vim Highlighting (not automatic) {{{1

" commands not picked up by the generator (due to non-standard format)
syn keyword vimCommand contained	py3

" Deprecated variable options {{{2
if exists("g:vim_minlines")
 let g:vimsyn_minlines= g:vim_minlines
endif
if exists("g:vim_maxlines")
 let g:vimsyn_maxlines= g:vim_maxlines
endif
if exists("g:vimsyntax_noerror")
 let g:vimsyn_noerror= g:vimsyntax_noerror
endif

" Numbers {{{2
" =======
syn match vimNumber	"\<\d\+\%(\.\d\+\%([eE][+-]\=\d\+\)\=\)\=" skipwhite nextgroup=vimGlobal,vimSubst,vimCommand
syn match vimNumber	"-\d\+\%(\.\d\+\%([eE][+-]\=\d\+\)\=\)\="  skipwhite nextgroup=vimGlobal,vimSubst,vimCommand
syn match vimNumber	"\<0[xX]\x\+"
syn match vimNumber	"#\x\{6}"

" All vimCommands are contained by vimIsCommands. {{{2
syn match vimCmdSep	"[:|]\+"	skipwhite nextgroup=vimAddress,vimAutoCmd,vimCommand,vimExtCmd,vimFilter,vimLet,vimMap,vimMark,vimSet,vimSyntax,vimUserCmd
syn match vimIsCommand	"\<\h\w*\>"	contains=vimCommand
syn match vimVar        contained	"\<\h[a-zA-Z0-9#_]*\>"
syn match vimVar		"\<[bwglsav]:\h[a-zA-Z0-9#_]*\>"
syn match vimFBVar      contained   "\<[bwglsav]:\h[a-zA-Z0-9#_]*\>"
syn keyword vimCommand  contained	in

" Insertions And Appends: insert append {{{2
" =======================
syn region vimInsert	matchgroup=vimCommand start="^[: \t]*\(\d\+\(,\d\+\)\=\)\=a\%[ppend]$"	matchgroup=vimCommand end="^\.$""
syn region vimInsert	matchgroup=vimCommand start="^[: \t]*\(\d\+\(,\d\+\)\=\)\=c\%[hange]$"	matchgroup=vimCommand end="^\.$""
syn region vimInsert	matchgroup=vimCommand start="^[: \t]*\(\d\+\(,\d\+\)\=\)\=i\%[nsert]$"	matchgroup=vimCommand end="^\.$""

" Behave! {{{2
" =======
syn match   vimBehave	"\<be\%[have]\>" skipwhite nextgroup=vimBehaveModel,vimBehaveError
syn keyword vimBehaveModel contained	mswin	xterm
if !exists("g:vimsyn_noerror") && !exists("g:vimsyn_nobehaveerror")
 syn match   vimBehaveError contained	"[^ ]\+"
endif

" Filetypes {{{2
" =========
syn match   vimFiletype	"\<filet\%[ype]\(\s\+\I\i*\)*"	skipwhite contains=vimFTCmd,vimFTOption,vimFTError
if !exists("g:vimsyn_noerror") && !exists("g:vimsyn_vimFTError")
 syn match   vimFTError  contained	"\I\i*"
endif
syn keyword vimFTCmd    contained	filet[ype]
syn keyword vimFTOption contained	detect indent off on plugin

" Augroup : vimAugroupError removed because long augroups caused sync'ing problems. {{{2
" ======= : Trade-off: Increasing synclines with slower editing vs augroup END error checking.
syn cluster vimAugroupList	contains=vimIsCommand,vimCommand,vimUserCmd,vimExecute,vimNotFunc,vimFuncName,vimFunction,vimFunctionError,vimLineComment,vimSpecFile,vimOper,vimNumber,vimOperParen,vimComment,vimString,vimSubst,vimMark,vimRegister,vimAddress,vimFilter,vimCmplxRepeat,vimComment,vimLet,vimSet,vimAutoCmd,vimRegion,vimSynLine,vimNotation,vimCtrlChar,vimFuncVar,vimContinue
if exists("g:vimsyn_folding") && g:vimsyn_folding =~ 'a'
 syn region  vimAugroup	fold start="\<aug\%[roup]\>\s\+\h\w*" end="\<aug\%[roup]\>\s\+[eE][nN][dD]\>"	contains=vimAugroupKey,vimAutoCmd,@vimAugroupList keepend
else
 syn region  vimAugroup	start="\<aug\%[roup]\>\s\+\h\w*" end="\<aug\%[roup]\>\s\+[eE][nN][dD]\>"	contains=vimAugroupKey,vimAutoCmd,@vimAugroupList keepend
endif
syn match   vimAugroup	"aug\%[roup]!" contains=vimAugroupKey
if !exists("g:vimsyn_noerror") && !exists("g:vimsyn_noaugrouperror")
 syn match   vimAugroupError	"\<aug\%[roup]\>\s\+[eE][nN][dD]\>"
endif
syn keyword vimAugroupKey contained	aug[roup]

" Operators: {{{2
" =========
" COMBAK: vimOperParen used to have "oneline"
syn cluster	vimOperGroup	contains=vimEnvvar,vimFunc,vimFuncVar,vimOper,vimOperParen,vimNumber,vimString,vimRegister,vimContinue
syn match	vimOper	"\(==\|!=\|>=\|<=\|=\~\|!\~\|>\|<\|=\)[?#]\{0,2}"	skipwhite nextgroup=vimString,vimSpecFile
syn match	vimOper	"||\|&&\|[-+.]"	skipwhite nextgroup=vimString,vimSpecFile
syn region	vimOperParen 	matchgroup=vimParenSep	start="(" end=")" contains=@vimOperGroup
syn region	vimOperParen	matchgroup=vimSep	start="{" end="}" contains=@vimOperGroup nextgroup=vimVar,vimFuncVar
if !exists("g:vimsyn_noerror") && !exists("g:vimsyn_noopererror")
 syn match	vimOperError	")"
endif

" Functions : Tag is provided for those who wish to highlight tagged functions {{{2
" =========
syn cluster	vimFuncList	contains=vimCommand,vimFunctionError,vimFuncKey,Tag,vimFuncSID
syn cluster	vimFuncBodyList	contains=vimAbb,vimAddress,vimAugroupKey,vimAutoCmd,vimCmplxRepeat,vimComment,vimComment,vimContinue,vimCtrlChar,vimEcho,vimEchoHL,vimExecute,vimIf,vimIsCommand,vimFBVar,vimFunc,vimFunction,vimFuncVar,vimHighlight,vimIsCommand,vimLet,vimLineComment,vimMap,vimMark,vimNorm,vimNotation,vimNotFunc,vimNumber,vimOper,vimOperParen,vimRegion,vimRegister,vimSet,vimSpecFile,vimString,vimSubst,vimSynLine,vimUnmap,vimUserCommand
syn match	vimFunction	"\<fu\%[nction]!\=\s\+\%(<[sS][iI][dD]>\|[sSgGbBwWtTlL]:\)\=\%(\i\|[#.]\|{.\{-1,}}\)*\ze\s*("	contains=@vimFuncList nextgroup=vimFuncBody

if exists("g:vimsyn_folding") && g:vimsyn_folding =~ 'f'
 syn region	vimFuncBody  contained	fold start="\ze("	matchgroup=vimCommand end="\<\(endf\>\|endfu\%[nction]\>\)"		contains=@vimFuncBodyList
else
 syn region	vimFuncBody  contained	start="\ze("	matchgroup=vimCommand end="\<\(endf\>\|endfu\%[nction]\>\)"		contains=@vimFuncBodyList
endif
syn match	vimFuncVar   contained	"a:\(\h\w*\|\d\+\)"
syn match	vimFuncSID   contained	"\c<sid>\|\<s:"
syn keyword	vimFuncKey   contained	fu[nction]
syn match	vimFuncBlank contained	"\s\+"

syn keyword	vimPattern   contained	start	skip	end

" Special Filenames, Modifiers, Extension Removal: {{{2
" ===============================================
syn match	vimSpecFile	"<c\(word\|WORD\)>"	nextgroup=vimSpecFileMod,vimSubst
syn match	vimSpecFile	"<\([acs]file\|amatch\|abuf\)>"	nextgroup=vimSpecFileMod,vimSubst
syn match	vimSpecFile	"\s%[ \t:]"ms=s+1,me=e-1	nextgroup=vimSpecFileMod,vimSubst
syn match	vimSpecFile	"\s%$"ms=s+1	nextgroup=vimSpecFileMod,vimSubst
syn match	vimSpecFile	"\s%<"ms=s+1,me=e-1	nextgroup=vimSpecFileMod,vimSubst
syn match	vimSpecFile	"#\d\+\|[#%]<\>"	nextgroup=vimSpecFileMod,vimSubst
syn match	vimSpecFileMod	"\(:[phtre]\)\+"	contained

" User-Specified Commands: {{{2
" =======================
syn cluster	vimUserCmdList	contains=vimAddress,vimSyntax,vimHighlight,vimAutoCmd,vimCmplxRepeat,vimComment,vimCtrlChar,vimEscapeBrace,vimFilter,vimFunc,vimFuncName,vimFunction,vimFunctionError,vimIsCommand,vimMark,vimNotation,vimNumber,vimOper,vimRegion,vimRegister,vimLet,vimSet,vimSetEqual,vimSetString,vimSpecFile,vimString,vimSubst,vimSubstRep,vimSubstRange,vimSynLine
syn keyword	vimUserCommand	contained	com[mand]
syn match	vimUserCmd	"\<com\%[mand]!\=\>.*$"	contains=vimUserAttrb,vimUserCommand,@vimUserCmdList
syn match	vimUserAttrb	contained	"-n\%[args]=[01*?+]"	contains=vimUserAttrbKey,vimOper
syn match	vimUserAttrb	contained	"-com\%[plete]="	contains=vimUserAttrbKey,vimOper nextgroup=vimUserAttrbCmplt,vimUserCmdError
syn match	vimUserAttrb	contained	"-ra\%[nge]\(=%\|=\d\+\)\="	contains=vimNumber,vimOper,vimUserAttrbKey
syn match	vimUserAttrb	contained	"-cou\%[nt]=\d\+"	contains=vimNumber,vimOper,vimUserAttrbKey
syn match	vimUserAttrb	contained	"-bang\=\>"	contains=vimOper,vimUserAttrbKey
syn match	vimUserAttrb	contained	"-bar\>"	contains=vimOper,vimUserAttrbKey
syn match	vimUserAttrb	contained	"-re\%[gister]\>"	contains=vimOper,vimUserAttrbKey
if !exists("g:vimsyn_noerror") && !exists("g:vimsyn_nousercmderror")
 syn match	vimUserCmdError	contained	"\S\+\>"
endif
syn case ignore
syn keyword	vimUserAttrbKey   contained	bar	ban[g]	cou[nt]	ra[nge] com[plete]	n[args]	re[gister]
syn keyword	vimUserAttrbCmplt contained	augroup buffer color command compiler cscope dir environment event expression file file_in_path filetype function help highlight locale mapping menu option shellcmd sign syntax tag tag_listfiles var
syn keyword	vimUserAttrbCmplt contained	custom customlist nextgroup=vimUserAttrbCmpltFunc,vimUserCmdError
syn match	vimUserAttrbCmpltFunc contained	",\%([sS]:\|<[sS][iI][dD]>\)\=\%(\h\w*\%(#\h\w*\)\+\|\h\w*\)"hs=s+1 nextgroup=vimUserCmdError

syn case match
syn match	vimUserAttrbCmplt contained	"custom,\u\w*"

" Lower Priority Comments: after some vim commands... {{{2
" =======================
syn match	vimComment	excludenl +\s"[^\-:.%#=*].*$+lc=1	contains=@vimCommentGroup,vimCommentString
syn match	vimComment	+\<endif\s\+".*$+lc=5	contains=@vimCommentGroup,vimCommentString
syn match	vimComment	+\<else\s\+".*$+lc=4	contains=@vimCommentGroup,vimCommentString
syn region	vimCommentString	contained oneline start='\S\s\+"'ms=e	end='"'

" Environment Variables: {{{2
" =====================
syn match	vimEnvvar	"\$\I\i*"
syn match	vimEnvvar	"\${\I\i*}"

" In-String Specials: {{{2
" Try to catch strings, if nothing else matches (therefore it must precede the others!)
"  vimEscapeBrace handles ["]  []"] (ie. "s don't terminate string inside [])
syn region	vimEscapeBrace	oneline   contained transparent start="[^\\]\(\\\\\)*\[\zs\^\=\]\=" skip="\\\\\|\\\]" end="]"me=e-1
syn match	vimPatSepErr	contained	"\\)"
syn match	vimPatSep	contained	"\\|"
syn region	vimPatSepZone	oneline   contained   matchgroup=vimPatSepZ start="\\%\=\ze(" skip="\\\\" end="\\)\|[^\]['"]"	contains=@vimStringGroup
syn region	vimPatRegion	contained transparent matchgroup=vimPatSepR start="\\[z%]\=(" end="\\)"	contains=@vimSubstList oneline
syn match	vimNotPatSep	contained	"\\\\"
syn cluster	vimStringGroup	contains=vimEscapeBrace,vimPatSep,vimNotPatSep,vimPatSepErr,vimPatSepZone,@Spell
syn region	vimString	oneline keepend	start=+[^:a-zA-Z>!\\@]"+lc=1 skip=+\\\\\|\\"+ end=+"+	contains=@vimStringGroup
syn region	vimString	oneline keepend	start=+[^:a-zA-Z>!\\@]'+lc=1 end=+'+
syn region	vimString	oneline	start=+=!+lc=1	skip=+\\\\\|\\!+ end=+!+	contains=@vimStringGroup
syn region	vimString	oneline	start="=+"lc=1	skip="\\\\\|\\+" end="+"	contains=@vimStringGroup
syn region	vimString	oneline	start="\s/\s*\A"lc=1 skip="\\\\\|\\+" end="/"	contains=@vimStringGroup
syn match	vimString	contained	+"[^"]*\\$+	skipnl nextgroup=vimStringCont
syn match	vimStringCont	contained	+\(\\\\\|.\)\{-}[^\\]"+

" Substitutions: {{{2
" =============
syn cluster	vimSubstList	contains=vimPatSep,vimPatRegion,vimPatSepErr,vimSubstTwoBS,vimSubstRange,vimNotation
syn cluster	vimSubstRepList	contains=vimSubstSubstr,vimSubstTwoBS,vimNotation
syn cluster	vimSubstList	add=vimCollection
syn match	vimSubst	"\(:\+\s*\|^\s*\||\s*\)\<\%(s\%[ubstitute]\|sm\%[agic]\|sno\%[magic]\)[:[:alpha:]]\@!" nextgroup=vimSubstPat
syn match	vimSubst	"s\%[ubstitute][:#[:alpha:]]\@!"	nextgroup=vimSubstPat contained
syn match	vimSubst	"/\zss\%[ubstitute]\ze/"	nextgroup=vimSubstPat
syn match	vimSubst1       contained	"s\%[ubstitute]\>"	nextgroup=vimSubstPat
syn region	vimSubstPat     contained	matchgroup=vimSubstDelim start="\z([^a-zA-Z( \t[\]&]\)"rs=s+1 skip="\\\\\|\\\z1" end="\z1"re=e-1,me=e-1	 contains=@vimSubstList	nextgroup=vimSubstRep4	oneline
syn region	vimSubstRep4    contained	matchgroup=vimSubstDelim start="\z(.\)" skip="\\\\\|\\\z1" end="\z1" matchgroup=vimNotation end="<[cC][rR]>" contains=@vimSubstRepList	nextgroup=vimSubstFlagErr	oneline
syn region	vimCollection   contained transparent	start="\\\@<!\[" skip="\\\[" end="\]"	contains=vimCollClass
syn match	vimCollClassErr contained	"\[:.\{-\}:\]"
syn match	vimCollClass    contained transparent	"\[:\(alnum\|alpha\|blank\|cntrl\|digit\|graph\|lower\|print\|punct\|space\|upper\|xdigit\|return\|tab\|escape\|backspace\):\]"
syn match	vimSubstSubstr  contained	"\\z\=\d"
syn match	vimSubstTwoBS   contained	"\\\\"
syn match	vimSubstFlagErr contained	"[^< \t\r|]\+" contains=vimSubstFlags
syn match	vimSubstFlags   contained	"[&cegiIpr]\+"

" 'String': {{{2
syn match	vimString	"[^(,]'[^']\{-}\zs'"

" Marks, Registers, Addresses, Filters: {{{2
syn match	vimMark	"'[a-zA-Z0-9]\ze[-+,!]"	nextgroup=vimOper,vimMarkNumber,vimSubst
syn match	vimMark	"'[<>]\ze[-+,!]"		nextgroup=vimOper,vimMarkNumber,vimSubst
syn match	vimMark	",\zs'[<>]\ze"		nextgroup=vimOper,vimMarkNumber,vimSubst
syn match	vimMark	"[!,:]\zs'[a-zA-Z0-9]"	nextgroup=vimOper,vimMarkNumber,vimSubst
syn match	vimMark	"\<norm\%[al]\s\zs'[a-zA-Z0-9]"	nextgroup=vimOper,vimMarkNumber,vimSubst
syn match	vimMarkNumber	"[-+]\d\+"		nextgroup=vimSubst contained contains=vimOper
syn match	vimPlainMark contained	"'[a-zA-Z0-9]"

syn match	vimRegister	'[^,;[{]\zs"[a-zA-Z0-9.%#:_\-/]\ze[^a-zA-Z_":0-9]'
syn match	vimRegister	'\<norm\s\+\zs"[a-zA-Z0-9]'
syn match	vimRegister	'\<normal\s\+\zs"[a-zA-Z0-9]'
syn match	vimRegister	'@"'
syn match	vimPlainRegister contained	'"[a-zA-Z0-9\-:.%#*+=]'

syn match	vimAddress	",\zs[.$]"	skipwhite nextgroup=vimSubst1
syn match	vimAddress	"%\ze\a"	skipwhite nextgroup=vimString,vimSubst1

syn match	vimFilter contained	"^!.\{-}\(|\|$\)"		contains=vimSpecFile
syn match	vimFilter contained	"\A!.\{-}\(|\|$\)"ms=s+1	contains=vimSpecFile,vimFunction,vimFuncName,vimOperParen

" Complex repeats (:h complex-repeat) {{{2
syn match	vimCmplxRepeat	'[^a-zA-Z_/\\()]q[0-9a-zA-Z"]\>'lc=1
syn match	vimCmplxRepeat	'@[0-9a-z".=@:]\ze\($\|[^a-zA-Z]\>\)'

" Set command and associated set-options (vimOptions) with comment {{{2
syn region	vimSet		matchgroup=vimCommand start="\<\%(setl\%[ocal]\|setg\%[lobal]\|se\%[t]\)\>" skip="\%(\\\\\)*\\." end="$" matchgroup=vimNotation end="<[cC][rR]>" keepend oneline contains=vimSetEqual,vimOption,vimErrSetting,vimComment,vimSetString,vimSetMod
syn region	vimSetEqual	contained	start="[=:]\|[-+^]=" skip="\\\\\|\\\s" end="[| \t]\|$"me=e-1 contains=vimCtrlChar,vimSetSep,vimNotation,vimEnvvar oneline
syn region	vimSetString	contained	start=+="+hs=s+1	skip=+\\\\\|\\"+  end=+"+	contains=vimCtrlChar
syn match	vimSetSep	contained	"[,:]"
syn match	vimSetMod	contained	"&vim\=\|[!&?<]\|all&"

" Let {{{2
" ===
syn keyword	vimLet	let	unl[et]	skipwhite nextgroup=vimVar,vimFuncVar

" Abbreviations {{{2
" =============
syn keyword vimAbb	ab[breviate] ca[bbrev] inorea[bbrev] cnorea[bbrev] norea[bbrev] ia[bbrev] skipwhite nextgroup=vimMapMod,vimMapLhs

" Autocmd {{{2
" =======
syn match	vimAutoEventList	contained	"\(!\s\+\)\=\(\a\+,\)*\a\+"	contains=vimAutoEvent nextgroup=vimAutoCmdSpace
syn match	vimAutoCmdSpace	contained	"\s\+"	nextgroup=vimAutoCmdSfxList
syn match	vimAutoCmdSfxList	contained	"\S*"
syn keyword	vimAutoCmd	au[tocmd] do[autocmd] doautoa[ll]	skipwhite nextgroup=vimAutoEventList

" Echo and Execute -- prefer strings! {{{2
" ================
syn region	vimEcho	oneline excludenl matchgroup=vimCommand start="\<ec\%[ho]\>" skip="\(\\\\\)*\\|" end="$\||" contains=vimFunc,vimFuncVar,vimString,vimVar
syn region	vimExecute	oneline excludenl matchgroup=vimCommand start="\<exe\%[cute]\>" skip="\(\\\\\)*\\|" end="$\||\|<[cC][rR]>" contains=vimFuncVar,vimIsCommand,vimOper,vimNotation,vimOperParen,vimString,vimVar
syn match	vimEchoHL	"echohl\="	skipwhite nextgroup=vimGroup,vimHLGroup,vimEchoHLNone
syn case ignore
syn keyword	vimEchoHLNone	none
syn case match

" Maps {{{2
" ====
syn match	vimMap		"\<map\>!\=\ze\s*[^(]" skipwhite nextgroup=vimMapMod,vimMapLhs
syn keyword	vimMap		cm[ap] cno[remap] im[ap] ino[remap] lm[ap] ln[oremap] nm[ap] nn[oremap] no[remap] om[ap] ono[remap] smap snor[emap] vm[ap] vn[oremap] xm[ap] xn[oremap] skipwhite nextgroup=vimMapBang,vimMapMod,vimMapLhs
syn keyword	vimMap		mapc[lear] smapc[lear]
syn keyword	vimUnmap		cu[nmap] iu[nmap] lu[nmap] nun[map] ou[nmap] sunm[ap] unm[ap] unm[ap] vu[nmap] xu[nmap] skipwhite nextgroup=vimMapBang,vimMapMod,vimMapLhs
syn match	vimMapLhs	contained	"\S\+"			contains=vimNotation,vimCtrlChar skipwhite nextgroup=vimMapRhs
syn match	vimMapBang	contained	"!"			skipwhite nextgroup=vimMapMod,vimMapLhs
syn match	vimMapMod	contained	"\c<\(buffer\|expr\|\(local\)\=leader\|plug\|script\|sid\|unique\|silent\)\+>" contains=vimMapModKey,vimMapModErr skipwhite nextgroup=vimMapMod,vimMapLhs
syn match	vimMapRhs	contained	".*" contains=vimNotation,vimCtrlChar	skipnl nextgroup=vimMapRhsExtend
syn match	vimMapRhsExtend	contained	"^\s*\\.*$"			contains=vimNotation,vimCtrlChar,vimContinue	skipnl nextgroup=vimMapRhsExtend
syn case ignore
syn keyword	vimMapModKey	contained	buffer	expr	leader	localleader	plug	script	sid	silent	unique
syn case match

" Menus {{{2
" =====
syn cluster	vimMenuList contains=vimMenuBang,vimMenuPriority,vimMenuName,vimMenuMod
syn keyword	vimCommand	am[enu] an[oremenu] aun[menu] cme[nu] cnoreme[nu] cunme[nu] ime[nu] inoreme[nu] iunme[nu] me[nu] nme[nu] nnoreme[nu] noreme[nu] nunme[nu] ome[nu] onoreme[nu] ounme[nu] unme[nu] vme[nu] vnoreme[nu] vunme[nu] skipwhite nextgroup=@vimMenuList
syn match	vimMenuName	"[^ \t\\<]\+"	contained nextgroup=vimMenuNameMore,vimMenuMap
syn match	vimMenuPriority	"\d\+\(\.\d\+\)*"	contained skipwhite nextgroup=vimMenuName
syn match	vimMenuNameMore	"\c\\\s\|<tab>\|\\\."	contained nextgroup=vimMenuName,vimMenuNameMore contains=vimNotation
syn match	vimMenuMod    contained	"\c<\(script\|silent\)\+>"  skipwhite contains=vimMapModKey,vimMapModErr nextgroup=@vimMenuList
syn match	vimMenuMap	"\s"	contained skipwhite nextgroup=vimMenuRhs
syn match	vimMenuRhs	".*$"	contained contains=vimString,vimComment,vimIsCommand
syn match	vimMenuBang	"!"	contained skipwhite nextgroup=@vimMenuList

" Angle-Bracket Notation (tnx to Michael Geddes) {{{2
" ======================
syn case ignore
syn match	vimNotation	"\(\\\|<lt>\)\=<\([scamd]-\)\{0,4}x\=\(f\d\{1,2}\|[^ \t:]\|cr\|lf\|linefeed\|return\|k\=del\%[ete]\|bs\|backspace\|tab\|esc\|right\|left\|help\|undo\|insert\|ins\|k\=home\|k\=end\|kplus\|kminus\|kdivide\|kmultiply\|kenter\|kpoint\|space\|k\=\(page\)\=\(\|down\|up\|k\d\>\)\)>" contains=vimBracket
syn match	vimNotation	"\(\\\|<lt>\)\=<\([scam2-4]-\)\{0,4}\(right\|left\|middle\)\(mouse\)\=\(drag\|release\)\=>"	contains=vimBracket
syn match	vimNotation	"\(\\\|<lt>\)\=<\(bslash\|plug\|sid\|space\|bar\|nop\|nul\|lt\)>"		contains=vimBracket
syn match	vimNotation	'\(\\\|<lt>\)\=<C-R>[0-9a-z"%#:.\-=]'he=e-1			contains=vimBracket
syn match	vimNotation	'\(\\\|<lt>\)\=<\%(q-\)\=\(line[12]\|count\|bang\|reg\|args\|f-args\|lt\)>'	contains=vimBracket
syn match	vimNotation	"\(\\\|<lt>\)\=<\([cas]file\|abuf\|amatch\|cword\|cWORD\|client\)>"		contains=vimBracket
syn match	vimBracket contained	"[\\<>]"
syn case match

" User Function Highlighting {{{2
" (following Gautam Iyer's suggestion)
" ==========================
syn match vimFunc		"\%(\%([sSgGbBwWtTlL]:\|<[sS][iI][dD]>\)\=\%([a-zA-Z0-9_]\+\.\)*\I[a-zA-Z0-9_.]*\)\ze\s*("		contains=vimFuncName,vimUserFunc,vimExecute
syn match vimUserFunc contained	"\%(\%([sSgGbBwWtTlL]:\|<[sS][iI][dD]>\)\=\%([a-zA-Z0-9_]\+\.\)*\I[a-zA-Z0-9_.]*\)\|\<\u[a-zA-Z0-9.]*\>\|\<if\>"	contains=vimNotation
syn match vimNotFunc	"\<if\>\|\<el\%[seif]\>\|\<return\>\|\<while\>"

" Errors And Warnings: {{{2
" ====================
if !exists("g:vimsyn_noerror") && !exists("g:vimsyn_novimfunctionerror")
 syn match	vimFunctionError	"\s\zs[a-z0-9]\i\{-}\ze\s*("			contained contains=vimFuncKey,vimFuncBlank
" syn match	vimFunctionError	"\s\zs\%(<[sS][iI][dD]>\|[sSgGbBwWtTlL]:\)[0-9]\i\{-}\ze\s*("	contained contains=vimFuncKey,vimFuncBlank
 syn match	vimElseIfErr	"\<else\s\+if\>"
 syn match	vimBufnrWarn	/\<bufnr\s*(\s*["']\.['"]\s*)/
endif

" Norm {{{2
" ====
syn match	vimNorm		"\<norm\%[al]!\=" skipwhite nextgroup=vimNormCmds
syn match	vimNormCmds contained	".*$"

" Syntax {{{2
"=======
syn match	vimGroupList	contained	"@\=[^ \t,]*"	contains=vimGroupSpecial,vimPatSep
syn match	vimGroupList	contained	"@\=[^ \t,]*,"	nextgroup=vimGroupList contains=vimGroupSpecial,vimPatSep
syn keyword	vimGroupSpecial	contained	ALL	ALLBUT	CONTAINED	TOP
if !exists("g:vimsyn_noerror") && !exists("g:vimsyn_novimsynerror")
 syn match	vimSynError	contained	"\i\+"
 syn match	vimSynError	contained	"\i\+="	nextgroup=vimGroupList
endif
syn match	vimSynContains	contained	"\<contain\(s\|edin\)="	nextgroup=vimGroupList
syn match	vimSynKeyContainedin	contained	"\<containedin="	nextgroup=vimGroupList
syn match	vimSynNextgroup	contained	"nextgroup="	nextgroup=vimGroupList

syn match	vimSyntax	"\<sy\%[ntax]\>"	contains=vimCommand skipwhite nextgroup=vimSynType,vimComment
syn match	vimAuSyntax	contained	"\s+sy\%[ntax]"	contains=vimCommand skipwhite nextgroup=vimSynType,vimComment
syn cluster vimFuncBodyList add=vimSyntax

" Syntax: case {{{2
syn keyword	vimSynType	contained	case	skipwhite nextgroup=vimSynCase,vimSynCaseError
if !exists("g:vimsyn_noerror") && !exists("g:vimsyn_novimsyncaseerror")
 syn match	vimSynCaseError	contained	"\i\+"
endif
syn keyword	vimSynCase	contained	ignore	match

" Syntax: clear {{{2
syn keyword	vimSynType	contained	clear	skipwhite nextgroup=vimGroupList

" Syntax: cluster {{{2
syn keyword	vimSynType	contained	cluster	skipwhite nextgroup=vimClusterName
syn region	vimClusterName	contained	matchgroup=vimGroupName start="\h\w*" skip="\\\\\|\\|" matchgroup=vimSep end="$\||" contains=vimGroupAdd,vimGroupRem,vimSynContains,vimSynError
syn match	vimGroupAdd	contained	"add="	nextgroup=vimGroupList
syn match	vimGroupRem	contained	"remove="	nextgroup=vimGroupList
syn cluster vimFuncBodyList add=vimSynType,vimGroupAdd,vimGroupRem

" Syntax: include {{{2
syn keyword	vimSynType	contained	include	skipwhite nextgroup=vimGroupList
syn cluster vimFuncBodyList add=vimSynType

" Syntax: keyword {{{2
syn cluster	vimSynKeyGroup	contains=vimSynNextgroup,vimSynKeyOpt,vimSynKeyContainedin
syn keyword	vimSynType	contained	keyword	skipwhite nextgroup=vimSynKeyRegion
syn region	vimSynKeyRegion	contained oneline keepend	matchgroup=vimGroupName start="\h\w*" skip="\\\\\|\\|" matchgroup=vimSep end="|\|$" contains=@vimSynKeyGroup
syn match	vimSynKeyOpt	contained	"\<\(conceal\|contained\|transparent\|skipempty\|skipwhite\|skipnl\)\>"
syn cluster vimFuncBodyList add=vimSynType

" Syntax: match {{{2
syn cluster	vimSynMtchGroup	contains=vimMtchComment,vimSynContains,vimSynError,vimSynMtchOpt,vimSynNextgroup,vimSynRegPat,vimNotation
syn keyword	vimSynType	contained	match	skipwhite nextgroup=vimSynMatchRegion
syn region	vimSynMatchRegion	contained keepend	matchgroup=vimGroupName start="\h\w*" matchgroup=vimSep end="|\|$" contains=@vimSynMtchGroup
syn match	vimSynMtchOpt	contained	"\<\(conceal\|transparent\|contained\|excludenl\|skipempty\|skipwhite\|display\|extend\|skipnl\|fold\)\>"
if has("conceal")
 syn match	vimSynMtchOpt	contained	"\<cchar="	nextgroup=vimSynMtchCchar
 syn match	vimSynMtchCchar	contained	"\S"
endif
syn cluster vimFuncBodyList add=vimSynMtchGroup

" Syntax: off and on {{{2
syn keyword	vimSynType	contained	enable	list	manual	off	on	reset

" Syntax: region {{{2
syn cluster	vimSynRegPatGroup	contains=vimPatSep,vimNotPatSep,vimSynPatRange,vimSynNotPatRange,vimSubstSubstr,vimPatRegion,vimPatSepErr,vimNotation
syn cluster	vimSynRegGroup	contains=vimSynContains,vimSynNextgroup,vimSynRegOpt,vimSynReg,vimSynMtchGrp
syn keyword	vimSynType	contained	region	skipwhite nextgroup=vimSynRegion
syn region	vimSynRegion	contained keepend	matchgroup=vimGroupName start="\h\w*" skip="\\\\\|\\|" end="|\|$" contains=@vimSynRegGroup
syn match	vimSynRegOpt	contained	"\<\(conceal\(ends\)\=\|transparent\|contained\|excludenl\|skipempty\|skipwhite\|display\|keepend\|oneline\|extend\|skipnl\|fold\)\>"
syn match	vimSynReg	contained	"\(start\|skip\|end\)="he=e-1	nextgroup=vimSynRegPat
syn match	vimSynMtchGrp	contained	"matchgroup="	nextgroup=vimGroup,vimHLGroup
syn region	vimSynRegPat	contained extend	start="\z([-`~!@#$%^&*_=+;:'",./?]\)"  skip="\\\\\|\\\z1"  end="\z1"  contains=@vimSynRegPatGroup skipwhite nextgroup=vimSynPatMod,vimSynReg
syn match	vimSynPatMod	contained	"\(hs\|ms\|me\|hs\|he\|rs\|re\)=[se]\([-+]\d\+\)\="
syn match	vimSynPatMod	contained	"\(hs\|ms\|me\|hs\|he\|rs\|re\)=[se]\([-+]\d\+\)\=," nextgroup=vimSynPatMod
syn match	vimSynPatMod	contained	"lc=\d\+"
syn match	vimSynPatMod	contained	"lc=\d\+," nextgroup=vimSynPatMod
syn region	vimSynPatRange	contained	start="\["	skip="\\\\\|\\]"   end="]"
syn match	vimSynNotPatRange	contained	"\\\\\|\\\["
syn match	vimMtchComment	contained	'"[^"]\+$'
syn cluster vimFuncBodyList add=vimSynType

" Syntax: sync {{{2
" ============
syn keyword vimSynType	contained	sync	skipwhite	nextgroup=vimSyncC,vimSyncLines,vimSyncMatch,vimSyncError,vimSyncLinebreak,vimSyncLinecont,vimSyncRegion
if !exists("g:vimsyn_noerror") && !exists("g:vimsyn_novimsyncerror")
 syn match	vimSyncError	contained	"\i\+"
endif
syn keyword	vimSyncC	contained	ccomment	clear	fromstart
syn keyword	vimSyncMatch	contained	match	skipwhite	nextgroup=vimSyncGroupName
syn keyword	vimSyncRegion	contained	region	skipwhite	nextgroup=vimSynReg
syn match	vimSyncLinebreak	contained	"\<linebreaks="	skipwhite	nextgroup=vimNumber
syn keyword	vimSyncLinecont	contained	linecont	skipwhite	nextgroup=vimSynRegPat
syn match	vimSyncLines	contained	"\(min\|max\)\=lines="	nextgroup=vimNumber
syn match	vimSyncGroupName	contained	"\h\w*"	skipwhite	nextgroup=vimSyncKey
syn match	vimSyncKey	contained	"\<groupthere\|grouphere\>"	skipwhite nextgroup=vimSyncGroup
syn match	vimSyncGroup	contained	"\h\w*"	skipwhite	nextgroup=vimSynRegPat,vimSyncNone
syn keyword	vimSyncNone	contained	NONE

" Additional IsCommand, here by reasons of precedence {{{2
" ====================
syn match	vimIsCommand	"<Bar>\s*\a\+"	transparent contains=vimCommand,vimNotation

" Highlighting {{{2
" ============
syn cluster	vimHighlightCluster		contains=vimHiLink,vimHiClear,vimHiKeyList,vimComment
if !exists("g:vimsyn_noerror") && !exists("g:vimsyn_novimhictermerror")
 syn match	vimHiCtermError	contained	"[^0-9]\i*"
endif
syn match	vimHighlight	"\<hi\%[ghlight]\>"	skipwhite nextgroup=vimHiBang,@vimHighlightCluster
syn match	vimHiBang	contained	"!"	skipwhite nextgroup=@vimHighlightCluster

syn match	vimHiGroup	contained	"\i\+"
syn case ignore
syn keyword	vimHiAttrib	contained	none bold inverse italic reverse standout underline undercurl
syn keyword	vimFgBgAttrib	contained	none bg background fg foreground
syn case match
syn match	vimHiAttribList	contained	"\i\+"	contains=vimHiAttrib
syn match	vimHiAttribList	contained	"\i\+,"he=e-1	contains=vimHiAttrib nextgroup=vimHiAttribList
syn case ignore
syn keyword	vimHiCtermColor	contained	black blue brown cyan darkblue darkcyan darkgray darkgreen darkgrey darkmagenta darkred darkyellow gray green grey lightblue lightcyan lightgray lightgreen lightgrey lightmagenta lightred magenta red white yellow
syn match	vimHiCtermColor	contained	"\<color\d\{1,3}\>"

syn case match
syn match	vimHiFontname	contained	"[a-zA-Z\-*]\+"
syn match	vimHiGuiFontname	contained	"'[a-zA-Z\-* ]\+'"
syn match	vimHiGuiRgb	contained	"#\x\{6}"

" Highlighting: hi group key=arg ... {{{2
syn cluster	vimHiCluster contains=vimGroup,vimHiGroup,vimHiTerm,vimHiCTerm,vimHiStartStop,vimHiCtermFgBg,vimHiGui,vimHiGuiFont,vimHiGuiFgBg,vimHiKeyError,vimNotation
syn region	vimHiKeyList	contained oneline start="\i\+" skip="\\\\\|\\|" end="$\||"	contains=@vimHiCluster
if !exists("g:vimsyn_noerror") && !exists("g:vimsyn_vimhikeyerror")
 syn match	vimHiKeyError	contained	"\i\+="he=e-1
endif
syn match	vimHiTerm	contained	"\cterm="he=e-1		nextgroup=vimHiAttribList
syn match	vimHiStartStop	contained	"\c\(start\|stop\)="he=e-1	nextgroup=vimHiTermcap,vimOption
syn match	vimHiCTerm	contained	"\ccterm="he=e-1		nextgroup=vimHiAttribList
syn match	vimHiCtermFgBg	contained	"\ccterm[fb]g="he=e-1	nextgroup=vimHiNmbr,vimHiCtermColor,vimFgBgAttrib,vimHiCtermError
syn match	vimHiGui	contained	"\cgui="he=e-1		nextgroup=vimHiAttribList
syn match	vimHiGuiFont	contained	"\cfont="he=e-1		nextgroup=vimHiFontname
syn match	vimHiGuiFgBg	contained	"\cgui\%([fb]g\|sp\)="he=e-1	nextgroup=vimHiGroup,vimHiGuiFontname,vimHiGuiRgb,vimFgBgAttrib
syn match	vimHiTermcap	contained	"\S\+"		contains=vimNotation
syn match	vimHiNmbr	contained	'\d\+'

" Highlight: clear {{{2
syn keyword	vimHiClear	contained	clear	nextgroup=vimHiGroup

" Highlight: link {{{2
syn region	vimHiLink	contained oneline matchgroup=vimCommand start="\(\<hi\%[ghlight]\s\+\)\@<=\(\(def\%[ault]\s\+\)\=link\>\|\<def\>\)" end="$"	contains=vimHiGroup,vimGroup,vimHLGroup,vimNotation
syn cluster vimFuncBodyList add=vimHiLink

" Control Characters {{{2
" ==================
syn match	vimCtrlChar	"[--]"

" Beginners - Patterns that involve ^ {{{2
" =========
syn match	vimLineComment	+^[ \t:]*".*$+	contains=@vimCommentGroup,vimCommentString,vimCommentTitle
syn match	vimCommentTitle	'"\s*\%([sS]:\|\h\w*#\)\=\u\w*\(\s\+\u\w*\)*:'hs=s+1	contained contains=vimCommentTitleLeader,vimTodo,@vimCommentGroup
syn match	vimContinue	"^\s*\\"
syn region	vimString	start="^\s*\\\z(['"]\)" skip='\\\\\|\\\z1' end="\z1" oneline keepend contains=@vimStringGroup,vimContinue
syn match	vimCommentTitleLeader	'"\s\+'ms=s+1	contained

" Searches And Globals: {{{2
" ====================
syn match	vimSearch	'^\s*[/?].*'		contains=vimSearchDelim
syn match	vimSearchDelim	'^\s*\zs[/?]\|[/?]$'	contained
syn region	vimGlobal	matchgroup=Statement start='\<g\%[lobal]!\=/'  skip='\\.' end='/'	skipwhite nextgroup=vimSubst
syn region	vimGlobal	matchgroup=Statement start='\<v\%[global]!\=/' skip='\\.' end='/'	skipwhite nextgroup=vimSubst

" Scripts  : perl,ruby : Benoit Cerrina {{{2
" =======    python,tcl: Johannes Zellner
"            lua

" Allows users to specify the type of embedded script highlighting
" they want:  (perl/python/ruby/tcl support)
"   g:vimsyn_embed == 0   : don't embed any scripts
"   g:vimsyn_embed ~= 'l' : embed lua      (but only if vim supports it)
"   g:vimsyn_embed ~= 'm' : embed mzscheme (but only if vim supports it)
"   g:vimsyn_embed ~= 'p' : embed perl     (but only if vim supports it)
"   g:vimsyn_embed ~= 'P' : embed python   (but only if vim supports it)
"   g:vimsyn_embed ~= 'r' : embed ruby     (but only if vim supports it)
"   g:vimsyn_embed ~= 't' : embed tcl      (but only if vim supports it)
if !exists("g:vimsyn_embed")
 let g:vimsyn_embed= "lmpPr"
endif

" [-- lua --] {{{3
let s:luapath= fnameescape(expand("<sfile>:p:h")."/lua.vim")
if !filereadable(s:luapath)
 for s:luapath in split(globpath(&rtp,"syntax/lua.vim"),"\n")
  if filereadable(fnameescape(s:luapath))
   let s:luapath= fnameescape(s:luapath)
   break
  endif
 endfor
endif
if (g:vimsyn_embed =~ 'l' && has("lua")) && filereadable(s:luapath)
 unlet! b:current_syntax
 exe "syn include @vimLuaScript ".s:luapath
 if exists("g:vimsyn_folding") && g:vimsyn_folding =~ 'l'
  syn region vimLuaRegion fold matchgroup=vimScriptDelim start=+lua\s*<<\s*\z(.*\)$+ end=+^\z1$+	contains=@vimLuaScript
  syn region vimLuaRegion fold matchgroup=vimScriptDelim start=+lua\s*<<\s*$+ end=+\.$+		contains=@vimLuaScript
 else
  syn region vimLuaRegion matchgroup=vimScriptDelim start=+lua\s*<<\s*\z(.*\)$+ end=+^\z1$+	contains=@vimLuaScript
  syn region vimLuaRegion matchgroup=vimScriptDelim start=+lua\s*<<\s*$+ end=+\.$+		contains=@vimLuaScript
 endif
 syn cluster vimFuncBodyList	add=vimLuaRegion
else
 syn region vimEmbedError start=+lua\s*<<\s*\z(.*\)$+ end=+^\z1$+
 syn region vimEmbedError start=+lua\s*<<\s*$+ end=+\.$+
endif
unlet s:luapath

" [-- perl --] {{{3
let s:perlpath= fnameescape(expand("<sfile>:p:h")."/perl.vim")
if !filereadable(s:perlpath)
 for s:perlpath in split(globpath(&rtp,"syntax/perl.vim"),"\n")
  if filereadable(fnameescape(s:perlpath))
   let s:perlpath= fnameescape(s:perlpath)
   break
  endif
 endfor
endif
if (g:vimsyn_embed =~ 'p' && has("perl")) && filereadable(s:perlpath)
 unlet! b:current_syntax
 exe "syn include @vimPerlScript ".s:perlpath
 if exists("g:vimsyn_folding") && g:vimsyn_folding =~ 'p'
  syn region vimPerlRegion fold matchgroup=vimScriptDelim start=+pe\%[rl]\s*<<\s*\z(.*\)$+ end=+^\z1$+	contains=@vimPerlScript
  syn region vimPerlRegion fold matchgroup=vimScriptDelim start=+pe\%[rl]\s*<<\s*$+ end=+\.$+	contains=@vimPerlScript
 else
  syn region vimPerlRegion matchgroup=vimScriptDelim start=+pe\%[rl]\s*<<\s*\z(.*\)$+ end=+^\z1$+	contains=@vimPerlScript
  syn region vimPerlRegion matchgroup=vimScriptDelim start=+pe\%[rl]\s*<<\s*$+ end=+\.$+		contains=@vimPerlScript
 endif
 syn cluster vimFuncBodyList	add=vimPerlRegion
else
 syn region vimEmbedError start=+pe\%[rl]\s*<<\s*\z(.*\)$+ end=+^\z1$+
 syn region vimEmbedError start=+pe\%[rl]\s*<<\s*$+ end=+\.$+
endif
unlet s:perlpath

" [-- ruby --] {{{3
let s:rubypath= fnameescape(expand("<sfile>:p:h")."/ruby.vim")
if !filereadable(s:rubypath)
 for s:rubypath in split(globpath(&rtp,"syntax/ruby.vim"),"\n")
  if filereadable(fnameescape(s:rubypath))
   let s:rubypath= fnameescape(s:rubypath)
   break
  endif
 endfor
endif
if (g:vimsyn_embed =~ 'r' && has("ruby")) && filereadable(s:rubypath)
 unlet! b:current_syntax
 exe "syn include @vimRubyScript ".s:rubypath
 if exists("g:vimsyn_folding") && g:vimsyn_folding =~ 'r'
  syn region vimRubyRegion fold matchgroup=vimScriptDelim start=+rub[y]\s*<<\s*\z(.*\)$+ end=+^\z1$+	contains=@vimRubyScript
 else
  syn region vimRubyRegion matchgroup=vimScriptDelim start=+rub[y]\s*<<\s*\z(.*\)$+ end=+^\z1$+	contains=@vimRubyScript
 endif
 syn region vimRubyRegion matchgroup=vimScriptDelim start=+rub[y]\s*<<\s*$+ end=+\.$+		contains=@vimRubyScript
 syn cluster vimFuncBodyList	add=vimRubyRegion
else
 syn region vimEmbedError start=+rub[y]\s*<<\s*\z(.*\)$+ end=+^\z1$+
 syn region vimEmbedError start=+rub[y]\s*<<\s*$+ end=+\.$+
endif
unlet s:rubypath

" [-- python --] {{{3
let s:pythonpath= fnameescape(expand("<sfile>:p:h")."/python.vim")
if !filereadable(s:pythonpath)
 for s:pythonpath in split(globpath(&rtp,"syntax/python.vim"),"\n")
  if filereadable(fnameescape(s:pythonpath))
   let s:pythonpath= fnameescape(s:pythonpath)
   break
  endif
 endfor
endif
if g:vimsyn_embed =~ 'P' && (has("python") || has("python3")) && filereadable(s:pythonpath)
 unlet! b:current_syntax
 exe "syn include @vimPythonScript ".s:pythonpath
 if exists("g:vimsyn_folding") && g:vimsyn_folding =~ 'P'
  syn region vimPythonRegion fold matchgroup=vimScriptDelim start=+py\%[thon]3\=\s*<<\s*\z(.*\)$+ end=+^\z1$+	contains=@vimPythonScript
  syn region vimPythonRegion fold matchgroup=vimScriptDelim start=+py\%[thon]3\=\s*<<\s*$+ end=+\.$+		contains=@vimPythonScript
 else
  syn region vimPythonRegion matchgroup=vimScriptDelim start=+py\%[thon]3\=\s*<<\s*\z(.*\)$+ end=+^\z1$+		contains=@vimPythonScript
  syn region vimPythonRegion matchgroup=vimScriptDelim start=+py\%[thon]3\=\s*<<\s*$+ end=+\.$+		contains=@vimPythonScript
 endif
 syn cluster vimFuncBodyList	add=vimPythonRegion
else
 syn region vimEmbedError start=+py\%[thon]3\=\s*<<\s*\z(.*\)$+ end=+^\z1$+
 syn region vimEmbedError start=+py\%[thon]3\=\s*<<\s*$+ end=+\.$+
endif
unlet s:pythonpath

" [-- tcl --] {{{3
if has("win32") || has("win95") || has("win64") || has("win16")
 " apparently has("tcl") has been hanging vim on some windows systems with cygwin
 let s:trytcl= (&shell !~ '\<\%(bash\>\|4[nN][tT]\|\<zsh\)\>\%(\.exe\)\=$')
else
 let s:trytcl= 1
endif
if s:trytcl
 let s:tclpath= fnameescape(expand("<sfile>:p:h")."/tcl.vim")
 if !filereadable(s:tclpath)
  for s:tclpath in split(globpath(&rtp,"syntax/tcl.vim"),"\n")
   if filereadable(fnameescape(s:tclpath))
    let s:tclpath= fnameescape(s:tclpath)
    break
   endif
  endfor
 endif
 if (g:vimsyn_embed =~ 't' && has("tcl")) && filereadable(s:tclpath)
  unlet! b:current_syntax
  exe "syn include @vimTclScript ".s:tclpath
  if exists("g:vimsyn_folding") && g:vimsyn_folding =~ 't'
   syn region vimTclRegion fold matchgroup=vimScriptDelim start=+tc[l]\=\s*<<\s*\z(.*\)$+ end=+^\z1$+	contains=@vimTclScript
   syn region vimTclRegion fold matchgroup=vimScriptDelim start=+tc[l]\=\s*<<\s*$+ end=+\.$+	contains=@vimTclScript
  else
   syn region vimTclRegion matchgroup=vimScriptDelim start=+tc[l]\=\s*<<\s*\z(.*\)$+ end=+^\z1$+	contains=@vimTclScript
   syn region vimTclRegion matchgroup=vimScriptDelim start=+tc[l]\=\s*<<\s*$+ end=+\.$+		contains=@vimTclScript
  endif
  syn cluster vimFuncBodyList	add=vimTclScript
 else
  syn region vimEmbedError start=+tc[l]\=\s*<<\s*\z(.*\)$+ end=+^\z1$+
  syn region vimEmbedError start=+tc[l]\=\s*<<\s*$+ end=+\.$+
 endif
 unlet s:tclpath
else
 syn region vimEmbedError start=+tc[l]\=\s*<<\s*\z(.*\)$+ end=+^\z1$+
 syn region vimEmbedError start=+tc[l]\=\s*<<\s*$+ end=+\.$+
endif
unlet s:trytcl

" [-- mzscheme --] {{{3
let s:mzschemepath= fnameescape(expand("<sfile>:p:h")."/scheme.vim")
if !filereadable(s:mzschemepath)
 for s:mzschemepath in split(globpath(&rtp,"syntax/mzscheme.vim"),"\n")
  if filereadable(fnameescape(s:mzschemepath))
   let s:mzschemepath= fnameescape(s:mzschemepath)
   break
  endif
 endfor
endif
if (g:vimsyn_embed =~ 'm' && has("mzscheme")) && filereadable(s:mzschemepath)
 unlet! b:current_syntax
 let iskKeep= &isk
 exe "syn include @vimMzSchemeScript ".s:mzschemepath
 let &isk= iskKeep
 if exists("g:vimsyn_folding") && g:vimsyn_folding =~ 'm'
  syn region vimMzSchemeRegion fold matchgroup=vimScriptDelim start=+mz\%[scheme]\s*<<\s*\z(.*\)$+ end=+^\z1$+	contains=@vimMzSchemeScript
  syn region vimMzSchemeRegion fold matchgroup=vimScriptDelim start=+mz\%[scheme]\s*<<\s*$+ end=+\.$+		contains=@vimMzSchemeScript
 else
  syn region vimMzSchemeRegion matchgroup=vimScriptDelim start=+mz\%[scheme]\s*<<\s*\z(.*\)$+ end=+^\z1$+		contains=@vimMzSchemeScript
  syn region vimMzSchemeRegion matchgroup=vimScriptDelim start=+mz\%[scheme]\s*<<\s*$+ end=+\.$+		contains=@vimMzSchemeScript
 endif
 syn cluster vimFuncBodyList	add=vimMzSchemeRegion
else
 syn region vimEmbedError start=+mz\%[scheme]\s*<<\s*\z(.*\)$+ end=+^\z1$+
 syn region vimEmbedError start=+mz\%[scheme]\s*<<\s*$+ end=+\.$+
endif
unlet s:mzschemepath

" Synchronize (speed) {{{2
"============
if exists("g:vimsyn_minlines")
 exe "syn sync minlines=".g:vimsyn_minlines
endif
if exists("g:vimsyn_maxlines")
 exe "syn sync maxlines=".g:vimsyn_maxlines
else
 syn sync maxlines=60
endif
syn sync linecont	"^\s\+\\"
syn sync match vimAugroupSyncA	groupthere NONE	"\<aug\%[roup]\>\s\+[eE][nN][dD]"

" ====================
" Highlighting Settings {{{2
" ====================


if !exists("g:vimsyn_noerror")
 hi def link vimBehaveError	vimError
 hi def link vimCollClassErr	vimError
 hi def link vimErrSetting	vimError
 hi def link vimEmbedError	vimError
 hi def link vimFTError	vimError
 hi def link vimFunctionError	vimError
 hi def link vimFunc         	vimError
 hi def link vimHiAttribList	vimError
 hi def link vimHiCtermError	vimError
 hi def link vimHiKeyError	vimError
 hi def link vimKeyCodeError	vimError
 hi def link vimMapModErr	vimError
 hi def link vimSubstFlagErr	vimError
 hi def link vimSynCaseError	vimError
 hi def link vimBufnrWarn	vimWarn
endif

hi def link vimAbb	vimCommand
hi def link vimAddress	vimMark
hi def link vimAugroupKey	vimCommand
hi def link vimAuHighlight	vimHighlight
hi def link vimAutoCmdOpt	vimOption
hi def link vimAutoCmd	vimCommand
hi def link vimAutoEvent	Type
hi def link vimAutoSet	vimCommand
hi def link vimBehaveModel	vimBehave
hi def link vimBehave	vimCommand
hi def link vimBracket	Delimiter
hi def link vimCmplxRepeat	SpecialChar
hi def link vimCommand	Statement
hi def link vimComment	Comment
hi def link vimCommentString	vimString
hi def link vimCommentTitle	PreProc
hi def link vimCondHL	vimCommand
hi def link vimContinue	Special
hi def link vimCtrlChar	SpecialChar
hi def link vimEchoHLNone	vimGroup
hi def link vimEchoHL	vimCommand
hi def link vimElseIfErr	Error
hi def link vimElseif	vimCondHL
hi def link vimEnvvar	PreProc
hi def link vimError	Error
hi def link vimFBVar	vimVar
hi def link vimFgBgAttrib	vimHiAttrib
hi def link vimFold	Folded
hi def link vimFTCmd	vimCommand
hi def link vimFTOption	vimSynType
hi def link vimFuncKey	vimCommand
hi def link vimFuncName	Function
hi def link vimFuncSID	Special
hi def link vimFuncVar	Identifier
hi def link vimGroupAdd	vimSynOption
hi def link vimGroupName	vimGroup
hi def link vimGroupRem	vimSynOption
hi def link vimGroupSpecial	Special
hi def link vimGroup	Type
hi def link vimHiAttrib	PreProc
hi def link vimHiClear	vimHighlight
hi def link vimHiCtermFgBg	vimHiTerm
hi def link vimHiCTerm	vimHiTerm
hi def link vimHighlight	vimCommand
hi def link vimHiGroup	vimGroupName
hi def link vimHiGuiFgBg	vimHiTerm
hi def link vimHiGuiFont	vimHiTerm
hi def link vimHiGuiRgb	vimNumber
hi def link vimHiGui	vimHiTerm
hi def link vimHiNmbr	Number
hi def link vimHiStartStop	vimHiTerm
hi def link vimHiTerm	Type
hi def link vimHLGroup	vimGroup
hi def link vimHLMod	PreProc
hi def link vimInsert	vimString
hi def link vimKeyCode	vimSpecFile
hi def link vimKeyword	Statement
hi def link vimLet	vimCommand
hi def link vimLineComment	vimComment
hi def link vimMapBang	vimCommand
hi def link vimMapModKey	vimFuncSID
hi def link vimMapMod	vimBracket
hi def link vimMap	vimCommand
hi def link vimMark	Number
hi def link vimMarkNumber	vimNumber
hi def link vimMenuMod	vimMapMod
hi def link vimMenuNameMore	vimMenuName
hi def link vimMenuName	PreProc
hi def link vimMtchComment	vimComment
hi def link vimNorm	vimCommand
hi def link vimNotation	Special
hi def link vimNotFunc	vimCommand
hi def link vimNotPatSep	vimString
hi def link vimNumber	Number
hi def link vimOperError	Error
hi def link vimOper	Operator
hi def link vimOption	PreProc
hi def link vimParenSep	Delimiter
hi def link vimPatSepErr	vimPatSep
hi def link vimPatSepR	vimPatSep
hi def link vimPatSep	SpecialChar
hi def link vimPatSepZone	vimString
hi def link vimPatSepZ	vimPatSep
hi def link vimPattern	Type
hi def link vimPlainMark	vimMark
hi def link vimPlainRegister	vimRegister
hi def link vimRegister	SpecialChar
hi def link vimScriptDelim	Comment
hi def link vimSearchDelim	Statement
hi def link vimSearch	vimString
hi def link vimSep	Delimiter
hi def link vimSetMod	vimOption
hi def link vimSetSep	Statement
hi def link vimSetString	vimString
hi def link vimSpecFile	Identifier
hi def link vimSpecFileMod	vimSpecFile
hi def link vimSpecial	Type
hi def link vimStatement	Statement
hi def link vimStringCont	vimString
hi def link vimString	String
hi def link vimSubst1	vimSubst
hi def link vimSubstDelim	Delimiter
hi def link vimSubstFlags	Special
hi def link vimSubstSubstr	SpecialChar
hi def link vimSubstTwoBS	vimString
hi def link vimSubst	vimCommand
hi def link vimSynCaseError	Error
hi def link vimSynCase	Type
hi def link vimSyncC	Type
hi def link vimSyncError	Error
hi def link vimSyncGroupName	vimGroupName
hi def link vimSyncGroup	vimGroupName
hi def link vimSyncKey	Type
hi def link vimSyncNone	Type
hi def link vimSynContains	vimSynOption
hi def link vimSynError	Error
hi def link vimSynKeyContainedin	vimSynContains
hi def link vimSynKeyOpt	vimSynOption
hi def link vimSynMtchGrp	vimSynOption
hi def link vimSynMtchOpt	vimSynOption
hi def link vimSynNextgroup	vimSynOption
hi def link vimSynNotPatRange	vimSynRegPat
hi def link vimSynOption	Special
hi def link vimSynPatRange	vimString
hi def link vimSynRegOpt	vimSynOption
hi def link vimSynRegPat	vimString
hi def link vimSynReg	Type
hi def link vimSyntax	vimCommand
hi def link vimSynType	vimSpecial
hi def link vimTodo	Todo
hi def link vimUnmap	vimMap
hi def link vimUserAttrbCmpltFunc	Special
hi def link vimUserAttrbCmplt	vimSpecial
hi def link vimUserAttrbKey	vimOption
hi def link vimUserAttrb	vimSpecial
hi def link vimUserCmdError	Error
hi def link vimUserCommand	vimCommand
hi def link vimUserFunc	Normal
hi def link vimVar	Identifier
hi def link vimWarn	WarningMsg

" Current Syntax Variable: {{{2
let b:current_syntax = "vim"

" ---------------------------------------------------------------------
" Cleanup: {{{1
let &cpo = s:keepcpo
unlet s:keepcpo
" vim:ts=18  fdm=marker
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          0  " Vim syntax file
" Language:	XML
" Maintainer:	Johannes Zellner <johannes@zellner.org>
"		Author and previous maintainer:
"		Paul Siegmann <pauls@euronet.nl>
" Last Change:	2013 Jun 07
" Filenames:	*.xml
" $Id: xml.vim,v 1.3 2006/04/11 21:32:00 vimboss Exp $

" CONFIGURATION:
"   syntax folding can be turned on by
"
"      let g:xml_syntax_folding = 1
"
"   before the syntax file gets loaded (e.g. in ~/.vimrc).
"   This might slow down syntax highlighting significantly,
"   especially for large files.
"
" CREDITS:
"   The original version was derived by Paul Siegmann from
"   Claudio Fleiner's html.vim.
"
" REFERENCES:
"   [1] http://www.w3.org/TR/2000/REC-xml-20001006
"   [2] http://www.w3.org/XML/1998/06/xmlspec-report-19980910.htm
"
"   as <hirauchi@kiwi.ne.jp> pointed out according to reference [1]
"
"   2.3 Common Syntactic Constructs
"   [4]    NameChar    ::=    Letter | Digit | '.' | '-' | '_' | ':' | CombiningChar | Extender
"   [5]    Name        ::=    (Letter | '_' | ':') (NameChar)*
"
" NOTE:
"   1) empty tag delimiters "/>" inside attribute values (strings)
"      confuse syntax highlighting.
"   2) for large files, folding can be pretty slow, especially when
"      loading a file the first time and viewoptions contains 'folds'
"      so that folds of previous sessions are applied.
"      Don't use 'foldmethod=syntax' in this case.


" Quit when a syntax file was already loaded
if exists("b:current_syntax")
    finish
endif

let s:xml_cpo_save = &cpo
set cpo&vim

syn case match

" mark illegal characters
syn match xmlError "[<&]"

" strings (inside tags) aka VALUES
"
" EXAMPLE:
"
" <tag foo.attribute = "value">
"                      ^^^^^^^
syn region  xmlString contained start=+"+ end=+"+ contains=xmlEntity,@Spell display
syn region  xmlString contained start=+'+ end=+'+ contains=xmlEntity,@Spell display


" punctuation (within attributes) e.g. <tag xml:foo.attribute ...>
"                                              ^   ^
" syn match   xmlAttribPunct +[-:._]+ contained display
syn match   xmlAttribPunct +[:.]+ contained display

" no highlighting for xmlEqual (xmlEqual has no highlighting group)
syn match   xmlEqual +=+ display


" attribute, everything before the '='
"
" PROVIDES: @xmlAttribHook
"
" EXAMPLE:
"
" <tag foo.attribute = "value">
"      ^^^^^^^^^^^^^
"
syn match   xmlAttrib
    \ +[-'"<]\@1<!\<[a-zA-Z:_][-.0-9a-zA-Z:_]*\>\%(['">]\@!\|$\)+
    \ contained
    \ contains=xmlAttribPunct,@xmlAttribHook
    \ display


" namespace spec
"
" PROVIDES: @xmlNamespaceHook
"
" EXAMPLE:
"
" <xsl:for-each select = "lola">
"  ^^^
"
if exists("g:xml_namespace_transparent")
syn match   xmlNamespace
    \ +\(<\|</\)\@2<=[^ /!?<>"':]\+[:]\@=+
    \ contained
    \ contains=@xmlNamespaceHook
    \ transparent
    \ display
else
syn match   xmlNamespace
    \ +\(<\|</\)\@2<=[^ /!?<>"':]\+[:]\@=+
    \ contained
    \ contains=@xmlNamespaceHook
    \ display
endif


" tag name
"
" PROVIDES: @xmlTagHook
"
" EXAMPLE:
"
" <tag foo.attribute = "value">
"  ^^^
"
syn match   xmlTagName
    \ +<\@1<=[^ /!?<>"']\++
    \ contained
    \ contains=xmlNamespace,xmlAttribPunct,@xmlTagHook
    \ display


if exists('g:xml_syntax_folding')

    " start tag
    " use matchgroup=xmlTag to skip over the leading '<'
    "
    " PROVIDES: @xmlStartTagHook
    "
    " EXAMPLE:
    "
    " <tag id="whoops">
    " s^^^^^^^^^^^^^^^e
    "
    syn region   xmlTag
	\ matchgroup=xmlTag start=+<[^ /!?<>"']\@=+
	\ matchgroup=xmlTag end=+>+
	\ contained
	\ contains=xmlError,xmlTagName,xmlAttrib,xmlEqual,xmlString,@xmlStartTagHook


    " highlight the end tag
    "
    " PROVIDES: @xmlTagHook
    " (should we provide a separate @xmlEndTagHook ?)
    "
    " EXAMPLE:
    "
    " </tag>
    " ^^^^^^
    "
    syn match   xmlEndTag
	\ +</[^ /!?<>"']\+>+
	\ contained
	\ contains=xmlNamespace,xmlAttribPunct,@xmlTagHook


    " tag elements with syntax-folding.
    " NOTE: NO HIGHLIGHTING -- highlighting is done by contained elements
    "
    " PROVIDES: @xmlRegionHook
    "
    " EXAMPLE:
    "
    " <tag id="whoops">
    "   <!-- comment -->
    "   <another.tag></another.tag>
    "   <empty.tag/>
    "   some data
    " </tag>
    "
    syn region   xmlRegion
	\ start=+<\z([^ /!?<>"']\+\)+
	\ skip=+<!--\_.\{-}-->+
	\ end=+</\z1\_\s\{-}>+
	\ matchgroup=xmlEndTag end=+/>+
	\ fold
	\ contains=xmlTag,xmlEndTag,xmlCdata,xmlRegion,xmlComment,xmlEntity,xmlProcessing,@xmlRegionHook,@Spell
	\ keepend
	\ extend

else

    " no syntax folding:
    " - contained attribute removed
    " - xmlRegion not defined
    "
    syn region   xmlTag
	\ matchgroup=xmlTag start=+<[^ /!?<>"']\@=+
	\ matchgroup=xmlTag end=+>+
	\ contains=xmlError,xmlTagName,xmlAttrib,xmlEqual,xmlString,@xmlStartTagHook

    syn match   xmlEndTag
	\ +</[^ /!?<>"']\+>+
	\ contains=xmlNamespace,xmlAttribPunct,@xmlTagHook

endif


" &entities; compare with dtd
syn match   xmlEntity                 "&[^; \t]*;" contains=xmlEntityPunct
syn match   xmlEntityPunct  contained "[&.;]"

if exists('g:xml_syntax_folding')

    " The real comments (this implements the comments as defined by xml,
    " but not all xml pages actually conform to it. Errors are flagged.
    syn region  xmlComment
	\ start=+<!+
	\ end=+>+
	\ contains=xmlCommentStart,xmlCommentError
	\ extend
	\ fold

else

    " no syntax folding:
    " - fold attribute removed
    "
    syn region  xmlComment
	\ start=+<!+
	\ end=+>+
	\ contains=xmlCommentStart,xmlCommentError
	\ extend

endif

syn match xmlCommentStart   contained "<!" nextgroup=xmlCommentPart
syn keyword xmlTodo         contained TODO FIXME XXX
syn match   xmlCommentError contained "[^><!]"
syn region  xmlCommentPart
    \ start=+--+
    \ end=+--+
    \ contained
    \ contains=xmlTodo,@xmlCommentHook,@Spell


" CData sections
"
" PROVIDES: @xmlCdataHook
"
syn region    xmlCdata
    \ start=+<!\[CDATA\[+
    \ end=+]]>+
    \ contains=xmlCdataStart,xmlCdataEnd,@xmlCdataHook,@Spell
    \ keepend
    \ extend

" using the following line instead leads to corrupt folding at CDATA regions
" syn match    xmlCdata      +<!\[CDATA\[\_.\{-}]]>+  contains=xmlCdataStart,xmlCdataEnd,@xmlCdataHook
syn match    xmlCdataStart +<!\[CDATA\[+  contained contains=xmlCdataCdata
syn keyword  xmlCdataCdata CDATA          contained
syn match    xmlCdataEnd   +]]>+          contained


" Processing instructions
" This allows "?>" inside strings -- good idea?
syn region  xmlProcessing matchgroup=xmlProcessingDelim start="<?" end="?>" contains=xmlAttrib,xmlEqual,xmlString


if exists('g:xml_syntax_folding')

    " DTD -- we use dtd.vim here
    syn region  xmlDocType matchgroup=xmlDocTypeDecl
	\ start="<!DOCTYPE"he=s+2,rs=s+2 end=">"
	\ fold
	\ contains=xmlDocTypeKeyword,xmlInlineDTD,xmlString
else

    " no syntax folding:
    " - fold attribute removed
    "
    syn region  xmlDocType matchgroup=xmlDocTypeDecl
	\ start="<!DOCTYPE"he=s+2,rs=s+2 end=">"
	\ contains=xmlDocTypeKeyword,xmlInlineDTD,xmlString

endif

syn keyword xmlDocTypeKeyword contained DOCTYPE PUBLIC SYSTEM
syn region  xmlInlineDTD contained matchgroup=xmlDocTypeDecl start="\[" end="]" contains=@xmlDTD
if exists('g:xml_syntax_folding')
    syn include @xmlDTD <sfile>:p:h/dtd.vim
    unlet b:current_syntax
endif

" synchronizing
" TODO !!! to be improved !!!

syn sync match xmlSyncDT grouphere  xmlDocType +\_.\(<!DOCTYPE\)\@=+
" syn sync match xmlSyncDT groupthere  NONE       +]>+

if exists('g:xml_syntax_folding')
    syn sync match xmlSync grouphere   xmlRegion  +\_.\(<[^ /!?<>"']\+\)\@=+
    " syn sync match xmlSync grouphere  xmlRegion "<[^ /!?<>"']*>"
    syn sync match xmlSync groupthere  xmlRegion  +</[^ /!?<>"']\+>+
endif

syn sync minlines=100


" The default highlighting.
hi def link xmlTodo		Todo
hi def link xmlTag		Function
hi def link xmlTagName		Function
hi def link xmlEndTag		Identifier
if !exists("g:xml_namespace_transparent")
    hi def link xmlNamespace	Tag
endif
hi def link xmlEntity		Statement
hi def link xmlEntityPunct	Type

hi def link xmlAttribPunct	Comment
hi def link xmlAttrib		Type

hi def link xmlString		String
hi def link xmlComment		Comment
hi def link xmlCommentStart	xmlComment
hi def link xmlCommentPart	Comment
hi def link xmlCommentError	Error
hi def link xmlError		Error

hi def link xmlProcessingDelim	Comment
hi def link xmlProcessing	Type

hi def link xmlCdata		String
hi def link xmlCdataCdata	Statement
hi def link xmlCdataStart	Type
hi def link xmlCdataEnd		Type

hi def link xmlDocTypeDecl	Function
hi def link xmlDocTypeKeyword	Statement
hi def link xmlInlineDTD	Function

let b:current_syntax = "xml"

let &cpo = s:xml_cpo_save
unlet s:xml_cpo_save

" vim: ts=8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       l   .   9   ..  m  tzdata                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                tzdata2014a      uL EAfrica/Abidjan                                     Africa/Accra                                 z    Africa/Addis_Ababa                            ˀAfrica/Algiers                               6Africa/Asmara                                 ˀAfrica/Asmera                                 ˀAfrica/Bamako                             q       Africa/Bangui                             A    6Africa/Banjul                                    Africa/Bissau                                    Africa/Blantyre                           	    m Africa/Brazzaville                        
%    6Africa/Bujumbura                          
    m Africa/Cairo                              N  m m Africa/Casablanca                               Africa/Ceuta                              :   6Africa/Conakry                            !;       Africa/Dakar                              "       Africa/Dar_es_Salaam                      "    ˀAfrica/Djibouti                           #    ˀAfrica/Douala                             $?    6Africa/El_Aaiun                           $      Africa/Freetown                           *      Africa/Gaborone                           -Z    m Africa/Harare                             .D    m Africa/Johannesburg                       .    m Africa/Juba                               0   ˀAfrica/Kampala                            /    ˀAfrica/Khartoum                           0   ˀAfrica/Kigali                             3p    m Africa/Kinshasa                           4
    6Africa/Lagos                              4    6Africa/Libreville                         56    6Africa/Lome                               5       Africa/Luanda                             6^    6Africa/Lubumbashi                         7    m Africa/Lusaka                             7    m Africa/Malabo                             89    6Africa/Maputo                             8    m Africa/Maseru                             9    m Africa/Mbabane                            :e    m Africa/Mogadishu                          ;    ˀAfrica/Monrovia                           ;       Africa/Nairobi                            <    ˀAfrica/Ndjamena                           =    6Africa/Niamey                             >n    6Africa/Nouakchott                         ?O       Africa/Ouagadougou                        @       Africa/Porto-Novo                         @    6Africa/Sao_Tome                           A~       Africa/Timbuktu                           q       Africa/Tripoli                            B+   m Africa/Tunis                              D   6Africa/Windhoek                           GX   6America/Adak                              Ml  	1گ America/Anchorage                         V  	6America/Anguilla                            $F America/Antigua                           _   $F America/Araguaina                         `  r[4America/Argentina/Buenos_Aires            d  %[4America/Argentina/Catamarca               h,  ?[4America/Argentina/ComodRivadavia          h,  ?[4America/Argentina/Cordoba                 lk  ?[4America/Argentina/Jujuy                   p  ?[4America/Argentina/La_Rioja                t  M[4America/Argentina/Mendoza                 y6  [[4America/Argentina/Rio_Gallegos            }  ?[4America/Argentina/Salta                     #[4America/Argentina/San_Juan                  M[4America/Argentina/San_Luis                @  i[4America/Argentina/Tucuman                   [[4America/Argentina/Ushuaia                   ?[4America/Aruba                                $F America/Asuncion                          C  $F America/Atikokan                          '  ?WAmerica/Atka                              Ml  	1گ America/Bahia                             f  [4America/Bahia_Banderas                    d  i America/Barbados                          z  J$F America/Belem                               >[4America/Belize                              i America/Blanc-Sablon                        $F America/Boa_Vista                           v$F America/Bogota                            S   WAmerica/Boise                             :  	IzAmerica/Buenos_Aires                      d  %[4America/Cambridge_Bay                       zAmerica/Campo_Grande                      Ǉ  $F America/Cancun                            X  i America/Caracas                              America/Catamarca                         h,  ?[4America/Cayenne                              [4America/Cayman                            ֜   WAmerica/Chicago                           M  
i America/Chihuahua                         $  zAmerica/Coral_Harbour                     '  ?WAmerica/Cordoba                           lk  ?[4America/Costa_Rica                          ;i America/Creston                           3   zAmerica/Cuiaba                              $F America/Curacao                              $F America/Danmarkshavn                      i      America/Dawson                            %  H America/Dawson_Creek                      8  	zAmerica/Denver                           A  	{zAmerica/Detroit                          
  WAmerica/Dominica                            $F America/Edmonton                         V  	TzAmerica/Eirunepe                           WAmerica/El_Salvador                      "8   i America/Ensenada                         4#  	&H America/Fort_Wayne                       }  qWAmerica/Fortaleza                        #$  [4America/Glace_Bay                        %  $F America/Godthab                          .~   h[4America/Goose_Bay                        N  i$F America/Grand_Turk                       [O  OWAmerica/Grenada                             $F America/Guadeloupe                          $F America/Guatemala                        b  $i America/Guayaquil                        c   WAmerica/Guyana                           ds   $F America/Halifax                          es  
`$F America/Havana                           r  	kWAmerica/Hermosillo                       |>  zAmerica/Indiana/Indianapolis             }  qWAmerica/Indiana/Knox                     W  	[i America/Indiana/Marengo                    WAmerica/Indiana/Petersburg               [  _WAmerica/Indiana/Tell_City                  i America/Indiana/Vevay                    G  uWAmerica/Indiana/Vincennes                  WAmerica/Indiana/Winamac                  I  WAmerica/Indianapolis                     }  qWAmerica/Inuvik                           *  zzAmerica/Iqaluit                            WAmerica/Jamaica                          t  WAmerica/Jujuy                             p  ?[4America/Juneau                           U  	 America/Kentucky/Louisville              u  
WAmerica/Kentucky/Monticello              8  	WAmerica/Knox_IN                          W  	[i America/Kralendijk                           $F America/La_Paz                           W   $F America/Lima                             0  WAmerica/Los_Angeles                        H America/Louisville                       u  
WAmerica/Lower_Princes                        $F America/Maceio                             [4America/Managua                            i America/Manaus                           I  Z$F America/Marigot                             $F America/Martinique                          $F America/Matamoros                          zi America/Mazatlan                           zAmerica/Mendoza                           y6  [[4America/Menominee                          i America/Merida                             i America/Metlakatla                       U  H America/Mexico_City                      "  Di America/Miquelon                         f  [4America/Moncton                          !  A$F America/Monterrey                        .-  zi America/Montevideo                       3  F[4America/Montreal                         ;  
WAmerica/Montserrat                          $F America/Nassau                           I  WAmerica/New_York                         R`  
WAmerica/Nipigon                          `  9WAmerica/Nome                             hX  	.America/Noronha                          q  # America/North_Dakota/Beulah              tP  	;i America/North_Dakota/Center              }  	;i America/North_Dakota/New_Salem             	;i America/Ojinaga                            zAmerica/Panama                              WAmerica/Pangnirtung                        WAmerica/Paramaribo                         &[4America/Phoenix                            GzAmerica/Port-au-Prince                     WAmerica/Port_of_Spain                       $F America/Porto_Acre                          rWAmerica/Porto_Velho                      N  >$F America/Puerto_Rico                         $F America/Rainy_River                      q  9i America/Rankin_Inlet                       li America/Recife                             [4America/Regina                             i America/Resolute                           li America/Rio_Branco                          rWAmerica/Rosario                           lk  ?[4America/Santa_Isabel                     ʒ  	&H America/Santarem                         Ӹ  d[4America/Santiago                           $$F America/Santo_Domingo                    '  $F America/Sao_Paulo                          [4America/Scoresbysund                       wAmerica/Shiprock                         A  	{zAmerica/Sitka                            >  	America/St_Barthelemy                       $F America/St_Johns                         R  &?@America/St_Kitts                            $F America/St_Lucia                            $F America/St_Thomas                           $F America/St_Vincent                          $F America/Swift_Current                    "x  0i America/Tegucigalpa                      $  i America/Thule                            %  $F America/Thunder_Bay                      +  WAmerica/Tijuana                          4#  	&H America/Toronto                          =I  
WAmerica/Tortola                             $F America/Vancouver                        J  ;H America/Virgin                              $F America/Whitehorse                       V  H America/Winnipeg                         ^,  1i America/Yakutat                          i]  America/Yellowknife                      rM  zAntarctica/Casey                         y   t Antarctica/Davis                         z  Antarctica/DumontDUrville                |   %Q Antarctica/Macquarie                     |  \?Antarctica/Mawson                           Antarctica/McMurdo                       Z  	. Antarctica/Palmer                        y  ":$F Antarctica/Rothera                          [4Antarctica/South_Pole                    Z  	. Antarctica/Syowa                         R    ˀAntarctica/Vostok                           I Arctic/Longyearbyen                         6Asia/Aden                                    ˀAsia/Almaty                              /  I Asia/Amman                                 ! m Asia/Anadyr                              u  . Asia/Aqtau                                 XAsia/Aqtobe                              \  Asia/Ashgabat                            j  Asia/Ashkhabad                           j  Asia/Baghdad                                ˀAsia/Bahrain                                 ˀAsia/Baku                                   ۺ Asia/Bangkok                                Asia/Beirut                                e m Asia/Bishkek                             -  I Asia/Brunei                              D   t Asia/Calcutta                              	.Asia/Choibalsan                            zt Asia/Chongqing                           y  t Asia/Chungking                           y  t Asia/Colombo                               [.Asia/Dacca                               [  lI Asia/Damascus                            Y  	 m Asia/Dhaka                               [  lI Asia/Dili                                  bAsia/Dubai                                   ۺ Asia/Dushanbe                            	{  UAsia/Gaza                                  #S m Asia/Harbin                              /#  t Asia/Hebron                              0  #o m Asia/Ho_Chi_Minh                         TQ   Asia/Hong_Kong                           U@  t Asia/Hovd                                Y  BAsia/Irkutsk                             ]	  bAsia/Istanbul                            4'  
 m Asia/Jakarta                             a  XAsia/Jayapura                            c   bAsia/Jerusalem                           c  # m Asia/Kabul                                   1@Asia/Kamchatka                             . Asia/Karachi                               Asia/Kashgar                               t Asia/Kathmandu                           .   ;`Asia/Katmandu                            .   ;`Asia/Khandyga                              %Q Asia/Kolkata                               	.Asia/Krasnoyarsk                           t Asia/Kuala_Lumpur                          tt Asia/Kuching                                t Asia/Kuwait                                  ˀAsia/Macao                                 
t Asia/Macau                                 
t Asia/Magadan                               . Asia/Makassar                            2   t Asia/Manila                              ,  ?t Asia/Muscat                              k    ۺ Asia/Nicosia                                m Asia/Novokuznetsk                          Asia/Novosibirsk                           Asia/Omsk                                :  Asia/Oral                                  >Asia/Phnom_Penh                             Asia/Pontianak                             iAsia/Pyongyang                           ^   bAsia/Qatar                               P    ˀAsia/Qyzylorda                             ,I Asia/Rangoon                             ?  e@Asia/Riyadh                              B    ˀAsia/Saigon                              TQ   Asia/Sakhalin                              \?Asia/Samarkand                           ь  Asia/Seoul                               1  |bAsia/Shanghai                            խ  t Asia/Singapore                           B  t Asia/Taipei                                t Asia/Tashkent                            ۨ  Asia/Tbilisi                             C  L ۺ Asia/Tehran                                V BAsia/Tel_Aviv                            c  # m Asia/Thimbu                                 I Asia/Thimphu                                I Asia/Tokyo                                 KbAsia/Ujung_Pandang                       2   t Asia/Ulaanbaatar                           Bt Asia/Ulan_Bator                            Bt Asia/Urumqi                              5  t Asia/Ust-Nera                              \?Asia/Vientiane                              Asia/Vladivostok                         z  \?Asia/Yakutsk                               %Q Asia/Yekaterinburg                         I Asia/Yerevan                                ۺ Atlantic/Azores                          y  
Atlantic/Bermuda                           $F Atlantic/Canary                            k    Atlantic/Cape_Verde                      %0   Atlantic/Faeroe                          &       Atlantic/Faroe                           &       Atlantic/Jan_Mayen                          6Atlantic/Madeira                         -7  
|    Atlantic/Reykjavik                       :  u    Atlantic/South_Georgia                   ?(   # Atlantic/St_Helena                       ?       Atlantic/Stanley                         @d  [4Australia/ACT                              %Q Australia/Adelaide                       E  	Australia/Brisbane                       M  %Q Australia/Broken_Hill                    OO  	Australia/Canberra                         %Q Australia/Currie                         X  %Q Australia/Darwin                         `   	Australia/Eucla                          a  Australia/Hobart                         cq  %Q Australia/LHI                            nK  @@Australia/Lindeman                       lh  %Q Australia/Lord_Howe                      nK  @@Australia/Melbourne                      uh  %Q Australia/NSW                              %Q Australia/North                          `   	Australia/Perth                          }  t Australia/Queensland                     M  %Q Australia/South                          E  	Australia/Sydney                           %Q Australia/Tasmania                       cq  %Q Australia/Victoria                       uh  %Q Australia/West                           }  t Australia/Yancowinna                     OO  	Brazil/Acre                                 rWBrazil/DeNoronha                         q  # Brazil/East                                [4Brazil/West                              I  Z$F CET                                      .  6 6CST6CDT                                  d  i Canada/Atlantic                          es  
`$F Canada/Central                           ^,  1i Canada/East-Saskatchewan                   i Canada/Eastern                           =I  
WCanada/Mountain                          V  	TzCanada/Newfoundland                      R  &?@Canada/Pacific                           J  ;H Canada/Saskatchewan                        i Canada/Yukon                             V  H Chile/Continental                          $$F Chile/EasterIsland                       l  #i Cuba                                     r  	kWEET                                      Z  T m EST                                         vWEST5EDT                                  $  WEgypt                                     N  m m Eire                                     $  
    Etc/GMT                                     v    Etc/GMT+0                                   v    Etc/GMT+1                                   ~Etc/GMT+10                                  گ Etc/GMT+11                                  Etc/GMT+12                                  l Etc/GMT+2                                   ~# Etc/GMT+3                                   ~[4Etc/GMT+4                                   ~$F Etc/GMT+5                                   ~WEtc/GMT+6                                   ~i Etc/GMT+7                                
   ~zEtc/GMT+8                                   ~H Etc/GMT+9                                   ~Etc/GMT-0                                   v    Etc/GMT-1                                    6Etc/GMT-10                                  %Q Etc/GMT-11                                  \?Etc/GMT-12                               	   . Etc/GMT-13                                  Etc/GMT-14                                   Etc/GMT-2                                    m Etc/GMT-3                                    ˀEtc/GMT-4                                    ۺ Etc/GMT-5                                   Etc/GMT-6                                   I Etc/GMT-7                                
   Etc/GMT-8                                   t Etc/GMT-9                                   bEtc/GMT0                                    v    Etc/Greenwich                               v    Etc/UCT                                     v    Etc/UTC                                      v    Etc/Universal                                v    Etc/Zulu                                     v    Europe/Amsterdam                         v  e 6Europe/Andorra                              6Europe/Athens                            ʘ   m Europe/Belfast                           Z$  M    Europe/Belgrade                          ]   6Europe/Berlin                              	 6Europe/Bratislava                           6Europe/Brussels                             6Europe/Bucharest                         m   m Europe/Budapest                             	g 6Europe/Busingen                          ,  d 6Europe/Chisinau                          g  	g m Europe/Copenhagen                        
  V 6Europe/Dublin                            $  
    Europe/Gibraltar                             6Europe/Guernsey                          Z$  M    Europe/Helsinki                          ,  [ m Europe/Isle_of_Man                       Z$  M    Europe/Istanbul                          4'  
 m Europe/Jersey                            Z$  M    Europe/Kaliningrad                       >   ˀEurope/Kiev                              D   m Europe/Lisbon                            L  
o    Europe/Ljubljana                         ]   6Europe/London                            Z$  M    Europe/Luxembourg                        hq   6Europe/Madrid                            t  
! 6Europe/Malta                             ~"  
+ 6Europe/Mariehamn                         ,  [ m Europe/Minsk                             M  0 ˀEurope/Monaco                            }  o 6Europe/Moscow                               ۺ Europe/Nicosia                              m Europe/Oslo                                 6Europe/Paris                             E   6Europe/Podgorica                         ]   6Europe/Prague                               6Europe/Riga                                 m Europe/Rome                              -  
\ 6Europe/Samara                            Ή  " ۺ Europe/San_Marino                        -  
\ 6Europe/Sarajevo                          ]   6Europe/Simferopol                        ӫ  A m Europe/Skopje                            ]   6Europe/Sofia                               8 m Europe/Stockholm                         $  d 6Europe/Tallinn                              m Europe/Tirane                              $ 6Europe/Tiraspol                          g  	g m Europe/Uzhgorod                          +   m Europe/Vaduz                             ,  d 6Europe/Vatican                           -  
\ 6Europe/Vienna                            H   6Europe/Vilnius                             } m Europe/Volgograd                         h   ۺ Europe/Warsaw                            *  
w 6Europe/Zagreb                            ]   6Europe/Zaporozhye                        $  % m Europe/Zurich                            ,  d 6GB                                       Z$  M    GB-Eire                                  Z$  M    GMT                                         v    GMT+0                                       v    GMT-0                                       v    GMT0                                        v    Greenwich                                   v    HST                                      4*   wگ Hongkong                                 U@  t Iceland                                  :  u    Indian/Antananarivo                      4    ˀIndian/Chagos                            5   I Indian/Christmas                         6?   Indian/Cocos                             6   e@Indian/Comoro                            7Z    ˀIndian/Kerguelen                         7   Indian/Mahe                              8    ۺ Indian/Maldives                          91   Indian/Mauritius                         9    ۺ Indian/Mayotte                           :    ˀIndian/Reunion                           ;o    ۺ Iran                                       V BIsrael                                   c  # m Jamaica                                  t  WJapan                                      KbKwajalein                                   . Libya                                     B+   m MET                                      <  6 6MST                                      DB   vzMST7MDT                                  D  zMexico/BajaNorte                         4#  	&H Mexico/BajaSur                             zMexico/General                           "  Di NZ                                       Z  	. NZ-CHAT                                  d]  `Navajo                                   A  	{zPRC                                      խ  t PST8PDT                                  M  H Pacific/Apia                             V  7Pacific/Auckland                         Z  	. Pacific/Chatham                          d]  `Pacific/Chuuk                            l?   %Q Pacific/Easter                           l  #i Pacific/Efate                              \?Pacific/Enderbury                           Pacific/Fakaofo                             Pacific/Fiji                             3  . Pacific/Funafuti                            . Pacific/Galapagos                        J   i Pacific/Gambier                             Pacific/Guadalcanal                         \?Pacific/Guam                             L   %Q Pacific/Honolulu                            گ Pacific/Johnston                            گ Pacific/Kiritimati                       
    Pacific/Kosrae                              \?Pacific/Kwajalein                           . Pacific/Majuro                           h   . Pacific/Marquesas                           &@Pacific/Midway                             Pacific/Nauru                               . Pacific/Niue                                Pacific/Norfolk                          y   wPacific/Noumea                           /  ,\?Pacific/Pago_Pago                        [  "Pacific/Palau                            }   bPacific/Pitcairn                         	   H Pacific/Pohnpei                             \?Pacific/Ponape                              \?Pacific/Port_Moresby                     J   %Q Pacific/Rarotonga                          $گ Pacific/Saipan                              %Q Pacific/Samoa                            [  "Pacific/Tahiti                              گ Pacific/Tarawa                           Ŗ   . Pacific/Tongatapu                        &  9Pacific/Truk                             l?   %Q Pacific/Wake                             _   . Pacific/Wallis                              . Pacific/Yap                              l?   %Q Poland                                   *  
w 6Portugal                                 L  
o    ROC                                        t ROK                                      1  |bSingapore                                B  t Turkey                                   4'  
 m UCT                                         v    US/Alaska                                 V  	6US/Aleutian                               Ml  	1گ US/Arizona                                 GzUS/Central                                M  
i US/East-Indiana                          }  qWUS/Eastern                               R`  
WUS/Hawaii                                   گ US/Indiana-Starke                        W  	[i US/Michigan                              
  WUS/Mountain                              A  	{zUS/Pacific                                 H US/Samoa                                 [  "UTC                                          v    Universal                                    v    W-SU                                        ۺ WET                                      |  Q    Zulu                                         v    TZif2                                  H8       LMT GMT     TZif2                                  H8       LMT GMT     
GMT0
TZif2                                  
0fLzP.- ͭ`ŮP ǐ rʴLSP̕ 5          	LMT GHST GMT       TZif2                                  
0fLzP.- ͭ`ŮP ǐ rʴLSP̕ 5          	LMT GHST GMT       
GMT0
TZif2                                  	  $h    *0 ADMT EAT     TZif2                                  
C  $H    $h   *0 	LMT ADMT EAT       
EAT-3
TZif2                            !      `POGx,ppHp*`.zL5ppX	ϒ4Њ  rN$pKp \xC
 DxZ hYvCpfB_|O_   1         	     	   
     PMT WEST WET CEST CET             TZif2                            "      kI`POGx,ppHp*`.zL5ppX	ϒ4Њ  rN$pKp \    x    C    
     D    xZ     hY    vCp    fB    _|    O_       1        
     
        LMT PMT WEST WET CEST CET               
CET-1
TZif2                                  	  $h    *0 ADMT EAT     TZif2                                  Ci  $t    $t   $h   *0 
LMT AMT ADMT EAT         
EAT-3
TZif2                                           LMT GMT WAT       TZif2                                           LMT GMT WAT       
GMT0
TZif2                                  }  l     LMT WAT     TZif2                                  }  l     LMT WAT     
WAT-1
TZif2                                  *'6d  d       LMT BMT WAT GMT         TZif2                                  *'6d  d       LMT BMT WAT GMT         
GMT0
TZif2                                  ē	gad        LMT WAT GMT       TZif2                                  ē    	gad        LMT WAT GMT       
GMT0
TZif2                                  Fð         LMT CAT     TZif2                                  Fð         LMT CAT     
CAT-2
TZif2                                  ,  T     LMT WAT     TZif2                                  ,  T     LMT WAT     
WAT-1
TZif2                                        CAT   TZif2                                  i        LMT CAT     
CAT-2
TZif2                            z      	ȓ{ˮ`)ͬϏfЩyф`ҊP6c`-P``m  ﰳpy%ZY sp;Up6E p 9۾p  %gYpI ap+ CՀ$Ep	 
x
<
1p dt(pU\ np7 OPH p{< pp4 g p!a "z\p#D  $b'p%%S&<p' ((纀* {*?+p,s -./0k12J3_4*5?6
7(`7P9`9ӱP:`;P<|`=uP>^`?sWP@zA\sBq\C<UDQ>EPF1 FjPHHIJPK`LaLXLP                                               *0       *0     EEST EET       TZif2                            {      
}Mȓ{ˮ`)ͬϏfЩyф`ҊP6c`-P``m  ﰳpy%ZY sp;Up6E p 9۾p      %    g    Yp    I     ap    +     C    Հ    $Ep    	     
x    
<            
1p         d    t(    p    U\     np    7     OP            H     p    {    <         pp    4         g     p    !a     "z\p    #D      $b'p    %%S    &<p    '     (    (纀    * {    *?    +p    ,s     -    .    /    0k    1    2J    3_    4*    5?    6
    7(`    7P    9`    9ӱP    :`    ;P    <|`    =uP    >^`    ?sWP    @z    A\s    Bq\    C<U    DQ>    EP    F1     FjP    H    H    I    JP    K`    La    LX    LP  U    *0    	  *0    	LMT EEST EET         

TZif2                            e      QXpҡ25 '%r@pkm aG
?pQ'p oHAH"pJ# JpKL]pMN4OPP1 PgQ|QˠRRlsS7zSs S  TLUU\U& U V,7V>WV*W}XT X Y(ݠYPjY6 ZZ[#[ \ \ϕ \" ] ^ ^H ^ _ `_ `t ` a}b? bHbpc]ڠdC?e=fgg hiȇjbkil mKna oh-pC qQJ rf% s1, tF u v/#v xx yz {ɠ|Р} ~y|         	   
LMT WEST WET CET         TZif2                            i      QXpҡ25 '%r@p    k    m         aG    
?    p    Q    'p         o    HA    H"p    J#     Jp    K    L]p    M    N4    O    P    P1     Pg    Q|    Qˠ    R    Rls    S7z    Ss     S      TLU    U\    U&     U     V,7    V>    WV*    W}    XT     X     Y(ݠ    YPj    Y6     Z    Z    [#    [     \     \ϕ     \"     ]     ^     ^H     ^     _     `_     `t     `     a}    b?     bH    bp    c]ڠ    dC?    e=    f    g    g     h    iȇ    jb    ki    l     mK    na     oh-    pC     qQJ     rf%     s1,     tF     u     v/#    v     x    x     y    z     {ɠ    |Р    }     ~y    |    Y    Nˠ    vX    w          	   
LMT WEST WET CET         
WET0WEST,M3.5.0,M10.5.0/3
TZif2                            ~      upn`p_ɧ#Opkp"pᑀ%r@pkm aG
?pQ'p | lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y                          	   
   	WET WEST CET CEST         TZif2                                  ~6upn`p_ɧ#Opkp"pᑀ%r@p    k    m         aG    
?    p    Q    'p             |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y                       
      
LMT WET WEST CET CEST           
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                                  \0$        LMT GMT WAT       TZif2                                  \0$        LMT GMT WAT       
GMT0
TZif2                                  ;        LMT WAT GMT       TZif2                                  ;        LMT WAT GMT       
GMT0
TZif2                                  Ӭ֝f  $    *0   & LMT EAT BEAUT       TZif2                                  Ӭ֝f  $    *0   & LMT EAT BEAUT       
EAT-3
TZif2                                    (t    *0 LMT EAT     TZif2                                    (t    *0 LMT EAT     
EAT-3
TZif2                                  h  	     LMT WAT     TZif2                                  h  	     LMT WAT     
WAT-1
TZif2                            Z      HѰ aG
?pQ'pHAH"pJ# JpKL]pMN4OPP1 PgQ|QˠRRlsS7zSs S  TLUU\U& U V,7V>WV*W}XT X Y(ݠYPjY6 ZZ[#[ \ \ϕ \" ] ^ ^H ^ _ `_ `t ` a}b? bHbpc]ڠdC?e=fgg hiȇjbkil mKna oh-pC qQJ rf% s1, tF u v/#v xx yz {ɠ|Р} ~y|          
LMT WAT WEST WET         TZif2                            ^      H    Ѱ         aG    
?    p    Q    'p    HA    H"p    J#     Jp    K    L]p    M    N4    O    P    P1     Pg    Q|    Qˠ    R    Rls    S7z    Ss     S      TLU    U\    U&     U     V,7    V>    WV*    W}    XT     X     Y(ݠ    YPj    Y6     Z    Z    [#    [     \     \ϕ     \"     ]     ^     ^H     ^     _     `_     `t     `     a}    b?     bH    bp    c]ڠ    dC?    e=    f    g    g     h    iȇ    jb    ki    l     mK    na     oh-    pC     qQJ     rf%     s1,     tF     u     v/#    v     x    x     y    z     {ɠ    |Р    }     ~y    |    Y    Nˠ    vX    w           
LMT WAT WEST WET         
WET0WEST,M3.5.0,M10.5.0/3
TZif2                                  2l80ӽt0´UĖ$60wX%Y;0D̽|S̼p4 #plqp٠ RӀ4p  P 	       
     	FMT SLST WAT GMT             TZif2                                  Zz2l80ӽt0´UĖ$60wX%Y;0D̽|S̼p4 #plqp٠ RӀ4p   P 
            
LMT FMT SLST WAT GMT               
GMT0
TZif2                                  FhΎn~Qp          *0	SAST CAT CAST       TZif2                                  `p4FhΎn~Qp  L         	  *0
LMT SAST CAT CAST         
CAT-2
TZif2                                  Fd        LMT CAT     TZif2                                  Fd        LMT CAT     
CAT-2
TZif2                                  Fḫ͞opΎn~Qp      *0      SAST       TZif2                                  	m{A@Fḫ͞opΎn~Qp  @       *0    LMT SAST         
SAST-2
TZif2                                  ֝GT  d    *0   #(   & 
LMT EAT BEAT BEAUT         TZif2                                  ֝GT  d    *0   #(   & 
LMT EAT BEAT BEAUT         
EAT-3
TZif2                            "        z4P}[g`~=@` P B	 S
 $
PP
?`sP`gh`J+H`+_P(`o`PKPm~8E       *0    	  *0 
LMT CAST CAT EAT         TZif2                            "                z4P    }    [g    `~    =    @`     P     B    	 S    
 $    
P        P    
    ?    `    sP    `    g    h`    J+    H`    +_P    (`        o`    P        KP    m    ~    8E       *0    	  *0 
LMT CAST CAT EAT         
EAT-3
TZif2                                  P  0      LMT CAT     TZif2                                  P  0      LMT CAT     
CAT-2
TZif2                                       WAT   TZif2                                  xM,  X     LMT WAT     
WAT-1
TZif2                                  QP  0     LMT WAT     TZif2                                  QP  0     LMT WAT     
WAT-1
TZif2                                  慤       LMT WAT     TZif2                                  慤       LMT WAT     
WAT-1
TZif2                                         GMT   TZif2                                  o+\  $       LMT GMT     
GMT0
TZif2                                  xL  4     AOT WAT     TZif2                                  mI6xL  h    4    LMT AOT WAT       
WAT-1
TZif2                                        CAT   TZif2                                  xM!@        LMT CAT     
CAT-2
TZif2                                  F        LMT CAT     TZif2                                  F        LMT CAT     
CAT-2
TZif2                                  D  <          LMT GMT WAT       TZif2                                  D  <          LMT GMT WAT       
WAT-1
TZif2                                  F        LMT CAT     TZif2                                  F        LMT CAT     
CAT-2
TZif2                                  	FʸΎn~Qp          *0LMT SAST       TZif2                                  	FʸΎn~Qp          *0LMT SAST       
SAST-2
TZif2                                  	FX  (      LMT SAST     TZif2                                  	FX  (      LMT SAST     
SAST-2
TZif2                                  	PJ   *0    #( EAT BEAT     TZif2                                  
pdPJ  *    *0   #( LMT EAT BEAT       
EAT-3
TZif2                                  _la        MMT LRT GMT       TZif2                                  Zz_l    a         LMT MMT LRT GMT         
GMT0
TZif2                                  ǑG/  "    *0   #(   & 
LMT EAT BEAT BEAUT         TZif2                                  ǑG/  "    *0   #(   & 
LMT EAT BEAT BEAUT         
EAT-3
TZif2                                  
dfqp&`          LMT WAT WAST       TZif2                                  
d    fqp    &`          LMT WAT WAST       
WAT-1
TZif2                                  挄Ɛ0             LMT WAT GMT         TZif2                                  挄Ɛ0             LMT WAT GMT         
WAT-1
TZif2                                  tȐ        LMT GMT WAT       TZif2                                  tȐ        LMT GMT WAT       
GMT0
TZif2                                         LMT GMT     TZif2                                         LMT GMT     
GMT0
TZif2                                    t          LMT GMT WAT       TZif2                                    t          LMT GMT WAT       
WAT-1
TZif2                                  p       LMT GMT     TZif2                                  ^<0  P  p       LMT GMT       
GMT0
TZif2                                   $ݻ#`xe/?pNB`p+*_`̯`zp` pJp!a~"Rp#D$4%%7`&@2N`3D6p45jP QTـRi  \        	    
LMT CEST CET EET         TZif2                                   $ݻ#`xe/?pN    B`    p    +    *    _`    ̯    `    z        p    `     pJp    !a~    "Rp    #D    $4    %%7`    &@    2N`    3D6p    45j    P     QTـ    Ri  \        	    
LMT CEST CET EET         
EET-2
TZif2                            !      
`PO:X`"T˭iKͩ ̰΢5 ϒ4ЉrN`
pdtp":#<($,%
&<p''pBt
C< D%ECFɐG#GI  1        	   	   PMT CEST CET         TZif2                            "      YF`PO:X`"T˭iKͩ ̰΢5 ϒ4ЉrN`    
    p    d    tp    ":    #<(    $,    %
    &<p    ''p    Bt
    C<     D%    EC    Fɐ    G#    G    I  	    1       
   
   LMT PMT CEST CET           
CET-1
TZif2                            \      Fḫ͞op&-.i/} 0H1g2(3F45&ɀ5ސ778捀9:o;< =qf>n ?Z@oP A:eBO2 CGD/ D)F FGH'IJ	KրLMNb͐OwPBQ` R"S@ TU { UW ] WrX? YTZ! [6\=]k^_T4`ia4bHcd(ŀdڐf fӼg hiѦ jk l|mj n\oqL p<aqZhrCs:Jt_u,uAvw#xyzҀ{| }n~ M          *0    
      SWAT SAST CAT WAST             TZif2                            ]      m{KxFḫ͞op    &    -    .i    /}     0H    1g    2(    3F    4    5&ɀ    5ސ    7    7    8捀    9    :o    ;    <     =qf    >n     ?Z    @oP     A:e    BO2     CG    D/     D)    F     F    G    H'    I    J	    Kր    L    M    Nb͐    Ow    PB    Q`     R"    S@     T    U {     U    W ]     Wr    X?     YT    Z!     [6    \=    ]k    ^    _T4    `i    a4    bH    c    d(ŀ    dڐ    f     fӼ    g     h    iѦ     j    k     l|    mj     n\    oqL     p<a    qZh    rC    s:J    t_    u,    uA    v    w#    x    y    zҀ    {    |     }n    ~     M           	  *0	          LMT SWAT SAST CAT WAST               
WAT-1WAST,M9.1.0,M4.1.0
TZif2                                  #ˉD#paP@UqPT@ SP6@x5PqRaQQ4A31m		P
@
@P@Py@iPY@I~P9a@)`P"}	BP_+" P32 vG@!ٰ"V)@#j0$6@%J0&@'*0'	)
0)*~0+,Ӛ-.|/~0^1g@2s@3G@4S"5'r@637T@8!086@90:@;0<4=0>?0@oAŰBOCdD/EDE@G-0G@I
0I@Jj0KLֆM|NhO\PJQ<uRv,SWTVT9V5VV@X
0X8@Y0Z@[0\@]0^d@_0`Mab-cgd
eGueg'Wg͂i9idjk@l80mvc@n0oVE@p0q6'@ro0s	@tO0t%v8ܰvxxyz{؂|~}d~^F eP  s`s`eP s`s` ps` NST NWT NPT BST BDT AHST HADT HAST               TZif2                  
   
          
   '?}Z^ˉD#paP@UqPT@     SP    6@    x5P    qR    aQ    Q4    A3    1    m    	    	P    
        @    
    @    P    @    P    y@    iP    Y@    I~P    9a@    )`P    "}    	BP    _    +"     P    3    2                 vG@    !ٰ    "V)@    #j0    $6@    %J0    &@    '*0    '	    )
0    )    *~0    +    ,Ӛ    -    .|    /~    0^    1g@    2s@    3G@    4S"    5'r@    63    7T@    8!0    86@    90    :@    ;0    <4    =0    >    ?0    @o    AŰ    BO    Cd    D/    ED    E@    G-0    G@    I
0    I@    Jj0    K    Lֆ    M|    Nh    O\    PJ    Q<u    Rv,    SW    TV    T9    V5    VV@    X
0    X8@    Y0    Z@    [0    \@    ]0    ^d@    _0    `M    a    b-    cg    d
    eGu    e    g'W    g͂    i9    id    j    k@    l80    mvc@    n0    oVE@    p0    q6'@    ro0    s	@    tO0    t%    v8ܰ    v    x    x    y    z    {؂    |~    }d    ~^    F																																																							    Zb  eP s`s`eP s`s` ps` "LMT NST NWT NPT BST BDT AHST HADT HAST                   
HAST10HADT,M3.2.0,M11.1.0
TZif2                                  &ˉ6#paB0Gc@F0 E@(0x'@qDaCQ&A%1_		@
̰0
0@0@y0i@Yq0Ip@9S0)R@"o	4@Q+B%$ v90!ˠ"V0#j $50%J &0'* ')
 )ݰ*p +,ӌ-.n/~0P1g02s23G04S5'd0627F08 8(09 :
0; <&= >? @oABO̰CdD/ED{E0G- G0I
z I0J\ KLxM|NZO\P<Q<gRvSITV T+V5VH0X X*0Y Z0[ \0] ^d0_ `Mab-ΰcgd
eGge풰g'Igti+iVj
ks0l* mvU0n oV70p q60ro s0tO tv8Πvxx۰yz{t|~}V~^8 s`  pp	s` pp p !CAT CAWT CAPT AHST AHDT YST AKDT AKST               TZif2                  
   
          
   *?}AHˉ6#paB0Gc@F0     E@    (0    x'@    qD    aC    Q&    A%    1    _    	    	@    
̰        0    
    0    @    0    @    y0    i@    Yq0    Ip@    9S0    )R@    "o    	4@    Q    +    B    %    $                 v90    !ˠ    "V0    #j     $50    %J     &0    '*     '    )
     )ݰ    *p     +    ,ӌ    -    .n    /~    0P    1g0    2s2    3G0    4S    5'd0    62    7F0    8     8(0    9     :
0    ;     <&    =     >    ?     @o    A    BO̰    Cd    D/    ED{    E0    G-     G0    I
z     I0    J\     K    Lx    M|    NZ    O\    P<    Q<g    Rv    SI    TV     T+    V5    VH0    X     X*0    Y     Z0    [     \0    ]     ^d0    _     `M    a    b-ΰ    cg    d
    eGg    e풰    g'I    gt    i+    iV    j
    ks0    l*     mvU0    n     oV70    p     q60    ro     s0    tO     t    v8Π    v    x    x۰    y    z    {t    |~    }V    ~^    8																																																							    sx  s` pp
s` pp  p %LMT CAT CAWT CAPT AHST AHDT YST AKDT AKST                   
AKST9AKDT,M3.2.0,M11.1.0
TZif2                                  73BP    LMT EST AST       TZif2                                  73BP    LMT EST AST       
AST4
TZif2                            3      
t0I@40t 800ܹY 0ޛ ݚ0T3 ^ d0Q,0 
Ұ0}Ɏ0xנ5 3Ϡ!i0"Ƞ#X#p %7% 0y01M2W 3j 48T04 6 06h7ư8 90:,;<o=đ0>NPe0Q 9   	LMT BRST BRT       TZif2                            3      
t0I@40t 800ܹY 0ޛ ݚ0T3 ^ d0Q,0 
Ұ0}    Ɏ0    xנ    5     3Ϡ    !i0    "Ƞ    #X    #p     %7    %     0y0    1M    2W     3j     48T0    4     6 0    6h    7ư    8     90    :,    ;    <o    =đ0    >N    Pe0    Q 9   	LMT BRST BRT       
BRT3
TZif2                            <      
0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@J$o#$%7%v'!0'X) 0):*0+W 7ư8*Gw	G HIa     CMT ART ARST           TZif2                            =      rL0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@    J    $o    #    $    %7    %v    '!0    'X    ) 0    ):    *0    +W     7ư    8*    Gw	    G     H    Ia 4     LMT CMT ART ARST             
ART3
TZif2                            <      0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@J$o#$%7%v'!0'X) @):*0+W 7ư8*@0@Gw	G      
CMT ART ARST WART             TZif2                            =      r,0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@    J    $o    #    $    %7    %v    '!0    'X    ) @    ):    *0    +W     7ư    8*    @0    @    Gw	    G T      LMT CMT ART ARST WART               
ART3
TZif2                            <      0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@J$o#$%7%v'!0'X) @):*0+W 7ư8*Gw	G HIa      
CMT ART ARST WART             TZif2                            =      r0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@    J    $o    #    $    %7    %v    '!0    'X    ) @    ):    *0    +W     7ư    8*    Gw	    G     H    Ia       LMT CMT ART ARST WART               
ART3
TZif2                            :      0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@J$o#$%7%v'*W'۰(@):*0+W 7ư8*Gw	G      
CMT ART ARST WART WARST               TZif2                            ;      r0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@    J    $o    #    $    %7    %v    '*W    '۰    (@    ):    *0    +W     7ư    8*    Gw	    G       LMT CMT ART ARST WART WARST                 
ART3
TZif2                            =      0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@J$o#$%7%v'!0'͵(&&@) 0):*0+W 7ư8*@0@Gw	G      
CMT ART ARST WART             TZif2                            >      r,0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@    J    $o    #    $    %7    %v    '!0    '͵    (&&@    ) 0    ):    *0    +W     7ư    8*    @0    @    Gw	    G T      LMT CMT ART ARST WART               
ART3
TZif2                            <      0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@J$o#$%7%v'4@'ð(g)H*@+W 7ư8*@AV>Gw	G      
CMT ART ARST WART WARST               TZif2                            =      r0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@    J    $o    #    $    %7    %v    '4@    'ð    (g    )H    *@    +W     7ư    8*    @    AV>    Gw	    G |      LMT CMT ART ARST WART WARST                 
ART3
TZif2                            <      0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@J$o#$%7%v'!0'X) 0):*0+W 7ư8*@0@Gw	G      
CMT ART ARST WART             TZif2                            =      rd0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@    J    $o    #    $    %7    %v    '!0    'X    ) 0    ):    *0    +W     7ư    8*    @0    @    Gw	    G       LMT CMT ART ARST WART               
ART3
TZif2                            :      0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@J$o#$%7%v'!0'X) @):*0+W 7ư8*Gw	G      
CMT ART ARST WART             TZif2                            ;      r0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@    J    $o    #    $    %7    %v    '!0    'X    ) @    ):    *0    +W     7ư    8*    Gw	    G ¬      LMT CMT ART ARST WART               
ART3
TZif2                            =      0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@J$o#$%7%v'!0'͵(&&@) 0):*0+W 7ư8*@A0@Gw	G      
CMT ART ARST WART             TZif2                            >      r0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@    J    $o    #    $    %7    %v    '!0    '͵    (&&@    ) 0    ):    *0    +W     7ư    8*    @    A0@    Gw	    G       LMT CMT ART ARST WART               
ART3
TZif2                            =      0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@J$o#$%7%'4@'ð(G7ư8*@A0@Gw	GGRHv@I4JX@     
CMT ART ARST WART WARST               TZif2                            >      r0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@    J    $o    #    $    %7    %    '4@    'ð    (G    7ư    8*    @    A0@    Gw	    G    GR    Hv@    I4    JX@      LMT CMT ART ARST WART WARST                 
ART3
TZif2                            >      0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@J$o#$%7%v'!0'X) @):*0+W 7ư8*@0@@Gw	G HIa      
CMT ART ARST WART             TZif2                            ?      r0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@    J    $o    #    $    %7    %v    '!0    'X    ) @    ):    *0    +W     7ư    8*    @0    @@    Gw	    G     H    Ia       LMT CMT ART ARST WART               
ART3
TZif2                            <      0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@J$o#$%7%v'!0'X) 0):*0+W 7ư8*@N0@Gw	G      
CMT ART ARST WART             TZif2                            =      r0{R@ɰ@p0}@0x
@Z@;0~`@*0A70ȁ@MM0ΰ)5Cd=0l02@柰C0w@65S0R@504@    J    $o    #    $    %7    %v    '!0    'X    ) 0    ):    *0    +W     7ư    8*    @N0    @    Gw	    G       LMT CMT ART ARST WART               
ART3
TZif2                                  
+@
tʰ
x0-@Z1t`dCU@FȰ8@'0L	/@c0۳08l@O0 p!a@"S#DX@$4;0%A;@&n'@'0(@)H*Ͻ+	0,@-p./O0n@16h02W.347406678Ͱ9ֶ:;@<0=q>0?Z@@oz0Aq@B3CQ@DE1@EpGGRHI4JڒK;0LM0NO0Pp@QNl0RP@S.N0T0@U00V@VLW@X.Yh@Z[\]f^v԰_yH`_0aY*b?0c9d0ee0g@gy0h@i[0j@kwl@mYn@oh;pjqHrJs't*su0v
Uv0w7x0yz0{6@|0}@~p0r@    AMT PYT PYST         TZif2                                  i    +@        
t    ʰ        
x0    -@    Z1    t`    dC    U@    FȰ    8@    '0    L    	/    @    c0    ۳    0    8        l@    O0         p    !a@    "S    #DX@    $4;0    %A;@    &n    '@    '0    (@    )H    *Ͻ    +	0    ,@    -p    .    /O    0n@    16h0    2W.    3    47    40    6    6    7    8Ͱ    9ֶ    :    ;@    <0    =q    >0    ?Z@    @oz0    Aq@    B3    CQ@    D    E1@    Ep    G    GR    H    I4    Jڒ    K;0    L    M0    N    O0    Pp@    QNl0    RP@    S.N0    T0@    U00    V@    VL    W@    X.    Yh@    Z    [    \    ]f    ^v԰    _yH    `_0    aY*    b?0    c9    d0    e    e0    g@    gy0    h@    i[0    j@    kw    l@    mY    n@    oh;    pj    qH    rJ    s'    t*s    u0    v
U    v0    w7    x0    y    z0    {6@    |0    }@    ~p0    r@     LMT AMT PYT PYST           
PYT4PYST,M10.1.0/0,M3.4.0/0
TZif2                                  pW`ˈ#pa	     CDT CST CWT CPT EST         TZif2                                  rdpW`ˈ#pa	    LMT CDT CST CWT CPT EST           
EST5
TZif2                            =      
kI@40t 800ܹY 0ޛ ݚ0T3 ^ d0Q,0 
Ұ0}Ɏ0xנ5 3Ϡ!i0"Ƞ#X#p %7% '!0') 0) *
+k2,0-f .0/F 0y01M2W 3j 48T04 6 06h7ư8 90:,;<o=đ0>NNHOI    	LMT BRST BRT       TZif2                            =      
kI@40t 800ܹY 0ޛ ݚ0T3 ^ d0Q,0 
Ұ0}    Ɏ0    xנ    5     3Ϡ    !i0    "Ƞ    #X    #p     %7    %     '!0    '    ) 0    )     *
    +k2    ,0    -f     .0    /F     0y0    1M    2W     3j     48T0    4     6 0    6h    7ư    8     90    :,    ;    <o    =đ0    >N    NH    OI    	LMT BRST BRT       
BRT3
TZif2                            ]      pnfV`C`6`q`ؑ  p1g2s3Gf4R5'H62ڀ7*8 89 :; <
= >? @oΐABOCd}D/ED_FtG$AGI#IsJKULM) NOx PQa'RlSA	TLU V,}W ̀XpXீY|pZ[^p\ ]@p^ _"p`ir a~>bIT c^ d)6 e>fRgg4hijݨklpmڀnpoqppqZ rfkps: tFMpu v/iv xKxa y-zC {|_}~AT     LMT MST CST PST MDT CDT             TZif2                            ]      pnfV`C`6`q`ؑ      p    1g    2s    3Gf    4R    5'H    62ڀ    7*    8     8    9     :    ;     <
    =     >    ?     @oΐ    A    BO    Cd}    D/    ED_    Ft    G$A    G    I#    Is    J    KU    L    M)     N    Ox     P    Qa'    Rl    SA	    TL    U     V,}    W ̀    Xp    Xீ    Y|p    Z    [^p    \     ]@p    ^     _"p    `ir     a~>    bIT     c^     d)6     e>    fR    g    g4    h    i    jݨ    k    lp    mڀ    np    oq    pp    qZ     rfkp    s:     tFMp    u     v/i    v     xK    xa     y-    zC     {    |_    }    ~A    T     LMT MST CST PST MDT CDT             
CST6CDT,M4.1.0,M10.5.0
TZif2                            
      y$帅c  tnvTP_`0>P    LMT BMT ADT AST         TZif2                            
      y$c                  tn    v    TP    _`    0>P    LMT BMT ADT AST         
AST4
TZif2                                  
ttI@40t 800ܹY 0ޛ ݚ0T3 ^ d0Q,0 
Ұ0}Ɏ0xנ5 3Ϡ!i0"ȠҌ   	LMT BRST BRT       TZif2                                  
ttI@40t 800ܹY 0ޛ ݚ0T3 ^ d0Q,0 
Ұ0}    Ɏ0    xנ    5     3Ϡ    !i0    "ȠҌ   	LMT BRST BRT       
BRT3
TZif2                            7      ^ٰ;EQء.nX^PX>2X'`X`X`جǤ`vخ`Vذh`6زpشPf|ض0HߙX*฿{Xຟ]X)`?X`_!X`?Xx`(X`8`!ɧsːXUpXb`Paq`7PP   	
LMT CHDT CST CDT         TZif2                            7      ^ٰ;EQ.nX^PX>2X'`X`X`Ǥ`v`Vh`6pPf|0HߙX*{X]X)`?X`_!X`?Xx`(X`8`!ɧsːXUpX    b`    P    aq`    7PP   	
LMT CHDT CST CDT         
CST6
TZif2                                  `Pˈ`#p`   ADT AST AWT APT       TZif2                                  ^=9`Pˈ`#p`t   LMT ADT AST AWT APT         
AST4
TZif2                            !      
WNB@ނ08@@ܹg0#@ޛ0ݨ@TA0
l0r@,Q:@0
@ɜ@xC 3ݰ!w@"ְ7809@9    	LMT AMST AMT       TZif2                            !      
WNB@ނ08@@ܹg0#@ޛ0ݨ@TA0
l0r@,Q:@0
@    ɜ@    x    C     3ݰ    !w@    "ְ    7    80    9@    9    	LMT AMST AMT       
AMT4
TZif2                                  
XUp*sP+]@   	BMT COST COT       TZif2                                  ^4XUp    *sP    +]@    
LMT BMT COST COT         
COT5
TZif2                                  H*FL ˉ#pa uX W: 9   wqaP@0ހ		
ࡐٿ 
  ye idYG IF9) )("E	
'&	̀ v!"U#j $5%J &'* 'ߐ)
r )*T +,p-.R/~g041g2s3Gf4R5'H62ڀ7*8 89 :;ۻ <
= >? @oΐABOCd}D/ED_EG-| GӧI
^ IJ@ KL\M|N>O\iP Q<KRvS-TUTV5ƀV,X XY Z[ާ \] ^d_k `MАab-cgid
eGKevg'-gXii:jkWl mv9n oVp q5ro stO tv8vݐxxyvz{X|~}:~^e     PDT PST MWT MPT MST MDT           TZif2                                  ^H*FL ˉ#pa uX W: 9               w    q    a    P    @    0ހ        	    	    
    ࡐ    ٿ     
                      ye     id    YG     IF    9)     )(    "E    	
    '    &    	                ̀     v    !    "U    #j     $5    %J     &    '*     'ߐ    )
r     )    *T     +    ,p    -    .R    /~g    04    1g    2s    3Gf    4R    5'H    62ڀ    7*    8     8    9     :    ;ۻ     <
    =     >    ?     @oΐ    A    BO    Cd}    D/    ED_    E    G-|     Gӧ    I
^     I    J@     K    L\    M|    N>    O\i    P     Q<K    Rv    S-    TU    T    V5ƀ    V,    X     X    Y     Z    [ާ     \    ]     ^d    _k     `MА    a    b-    cgi    d
    eGK    ev    g'-    gX    i    i:    j    kW    l     mv9    n     oV    p     q5    ro     s    tO     t    v8    vݐ    x    x    yv    z    {X    |~    }:    ~^e        LMT PDT PST MWT MPT MST MDT             
MST7MDT,M3.2.0,M11.1.0
TZif2                  	   	       {   	   %̀ˉ#pa /Zp(idYG IF9) )("E	
'&	̀ v!"U#j $5%J &'* 'ߐ)
r )*T +,p-.R/~g041g2s3Gf4R5'H62ڀ7*8 8 9:P:;ۻ <
= >? @oΐABOCd}D/ED_EG-| GӧI
^ IJ@ KL\M|N>O\iP Q<KRvS-TUTV5ƀV,X XY Z[ާ \] ^d_k `MАab-cgid
eGKevg'-gXii:jkWl mv9n oVp q5ro stO tv8vݐxxyvz{X|~}:~^e         !zzz MWT MPT MST MDDT MDT CDT CST EST                 TZif2                  	   	       {   	   %̀ˉ#pa /Zp(    id    YG     IF    9)     )(    "E    	
    '    &    	                ̀     v    !    "U    #j     $5    %J     &    '*     'ߐ    )
r     )    *T     +    ,p    -    .R    /~g    04    1g    2s    3Gf    4R    5'H    62ڀ    7*    8     8     9    :P    :    ;ۻ     <
    =     >    ?     @oΐ    A    BO    Cd}    D/    ED_    E    G-|     Gӧ    I
^     I    J@     K    L\    M|    N>    O\i    P     Q<K    Rv    S-    TU    T    V5ƀ    V,    X     X    Y     Z    [ާ     \    ]     ^d    _k     `MА    a    b-    cgi    d
    eGK    ev    g'-    gX    i    i:    j    kW    l     mv9    n     oV    p     q5    ro     s    tO     t    v8    vݐ    x    x    yv    z    {X    |~    }:    ~^e             !zzz MWT MPT MST MDDT MDT CDT CST EST                 
MST7MDT,M3.2.0,M11.1.0
TZif2                                  
z4WNB@ނ08@@ܹg0#@ޛ0ݨ@TA0
l0r@,Q:@0
@ɜ@xC 3ݰ!w@"ְ#X#~0%8 %0'!@') @)0*+k@,@-f0.@/F00@1[2W.3x048b@406 -@6v7809@::;
<o=ğ@>N?@@.A@B0CQ@C0EMaEG@G0HI0JڒKLtM`NVOI0Ps@Q GRcU@S )TC7@TF0V#@V(0X@X
0Y@Z0[\h0]^H0_`1̰akbcKc0e+cerg@gThb@iq0jD@kzS0l&@mZ50n@o:0p}$q0r]r0t<tٽ0vvٰwx0y܎z{ū@|b}@~K0o@   	LMT AMST AMT       TZif2                                  
z4WNB@ނ08@@ܹg0#@ޛ0ݨ@TA0
l0r@,Q:@0
@    ɜ@    x    C     3ݰ    !w@    "ְ    #X    #~0    %8     %0    '!@    '    ) @    )0    *    +k@    ,@    -f0    .@    /F0    0@    1[    2W.    3x0    48b@    40    6 -@    6v    7    80    9@    ::    ;
    <o    =ğ@    >N    ?@    @.    A@    B0    CQ@    C0    EMa    E    G@    G0    H    I0    Jڒ    K    Lt    M`    NV    OI0    Ps@    Q G    RcU@    S )    TC7@    TF0    V#@    V(0    X@    X
0    Y@    Z0    [    \h0    ]    ^H0    _    `1̰    ak    b    cK    c0    e+c    er    g@    gT    hb@    iq0    jD@    kzS0    l&@    mZ50    n@    o:0    p}$    q0    r]    r0    t<    tٽ0    v    vٰ    w    x0    y܎    z    {ū@    |b    }@    ~K0    o@    +~0    eQ@   	LMT AMST AMT       
AMT4AMST,M10.3.0/0,M2.3.0/0
TZif2                            W      ``1gg2r`3GI4R`5'+5 `62p7 88 9:;<=>ހ?p@oApBOCdopD/EDQpFfG$3pG IpIe JpKG LM) NOx PQa'RlSA	TLU V,}W ̀XpXீY|pZ[^p\ ]@p^ _"p`ir a~>bIT c^ d)6 e>fRgg4hijݨklpmڀnpoqppqZ rfkps: tFMpu v/iv xKxa y-zC {|_}~A    LMT CST EDT EST CDT           TZif2                            W      `    `    1gg    2r`    3GI    4R`    5'+    5 `    62p    7     8    8     9    :    ;    <    =    >ހ    ?p    @o    Ap    BO    Cdop    D/    EDQp    Ff    G$3p    G     Ip    Ie     Jp    KG     L    M)     N    Ox     P    Qa'    Rl    SA	    TL    U     V,}    W ̀    Xp    Xீ    Y|p    Z    [^p    \     ]@p    ^     _"p    `ir     a~>    bIT     c^     d)6     e>    fR    g    g4    h    i    jݨ    k    lp    mڀ    np    oq    pp    qZ     rfkp    s:     tFMp    u     v/i    v     xK    xa     y-    zC     {    |_    }    ~A        LMT CST EDT EST CDT           
CST6CDT,M4.1.0,M10.5.0
TZif2                                  ,<HG[pD    CMT VET       TZif2                                  i@,<H    G[p@  D   LMT CMT VET         
VET4:30
TZif2                                  +5    LMT GFT       TZif2                                  +5    LMT GFT       
GFT3
TZif2                                     KMT EST     TZif2                                  i'    LMT KMT EST       
EST5
TZif2                                  ,ppt EҀcS p3  ޕ wa YC ~;_gXp|AG:p\#'p<p瀹p p  Z <p Odn /fMH-lep
NGpˈ#pa	u @U  5   sޗݩp޾y߉rp[iTp~=I6p^W<G< 7'      pppo_pO?ip/h(Jgg II ++ 
 
 w qpaPp@0p'	p	 
pٰ
u tt yViV Y8I8 9) "7p ppp܀p v !p"U #j$5 %J& '*'р)
c)޳*E+,bp-w.Dp/~Y0&p1gv 2sp3GX 4Rp5': 62p7 88 9: ;۬<=>ހ?p@oApBOCdopD/EDQpE G-mGә I
OI{ J1KLNpM|yN0pO\[PpQ<=RupSTUpTV5pV XX  YZ [ޘ\ ]z^d _\`Maypb-cg[pd
eG=pehg'pgJipi,jpkI lmv+ noV
 pq5 ros tOtv8pvπxpxyhpz{Jp|~u},p~^Wp                                                                                                                      CDT CST EST CWT CPT         TZif2                                  ^,ppt EҀcS p3  ޕ wa YC ~;_gXp|AG:p\#'p<pp p  Z <p Odn /fMH-lep
NGpˈ#pa	u @U  5   sޗݩp޾y߉rp[iTp~=I6p^W<G< 7'      pppo_pO?ip/h(Jgg II ++ 
     
         w     qp    a    Pp    @    0p    '    	p    	     
p        ٰ    
u             t    t     yV    iV     Y8    I8     9    )     "7p         p        p        p    ܀    p     v     !p    "U     #j    $5     %J    &     '*    'р    )
c    )޳    *E    +    ,bp    -w    .Dp    /~Y    0&p    1gv     2sp    3GX     4Rp    5':     62p    7     8    8     9    :     ;۬    <    =    >ހ    ?p    @o    Ap    BO    Cdop    D/    EDQp    E     G-m    Gә     I
O    I{     J1    K    LNp    M|y    N0p    O\[    Pp    Q<=    Rup    S    TUp    T    V5p    V     X    X      Y    Z     [ޘ    \     ]z    ^d     _\    `M    ayp    b-    cg[p    d
    eG=p    eh    g'p    gJ    ip    i,    jp    kI     l    mv+     n    oV
     p    q5     ro    s     tO    t    v8p    vπ    xp    x    yhp    z    {Jp    |~u    },p    ~^W    p    LMT CDT CST EST CWT CPT           
CST6CDT,M3.2.0,M11.1.0
TZif2                            Z      pnfV`C`6`1gv 2sp3GX 4Rp5'H62ڀ7*8 89 :; <
= >? @oΐABOCd}D/ED_FtG$AGI#IsJKUL" M7N OxP Qa5Rl SATL U V, W ېXXཐYZ[l\]N^_0`ia~M bIbc^/ d)De> f`g gBh i$jݷ klӀmnoqʐpqZrfys:tF[uv/x vxZ xoy< zQ{ |m}  ~O     LMT MST CST CDT MDT           TZif2                            Z      pnfV`C`6`    1gv     2sp    3GX     4Rp    5'H    62ڀ    7*    8     8    9     :    ;     <
    =     >    ?     @oΐ    A    BO    Cd}    D/    ED_    Ft    G$A    G    I#    Is    J    KU    L"     M7    N     Ox    P     Qa5    Rl     SA    TL     U     V,     W ې    X    Xཐ    Y    Z    [l    \    ]N    ^    _0    `i    a~M     bIb    c^/     d)D    e>     f`    g     gB    h     i$    jݷ     k    lӀ    m    n    oqʐ    p    qZ    rfy    s:    tF[    u    v/x     v    xZ     xo    y<     zQ    {     |m    }      ~O         LMT MST CST CDT MDT           
MST7MDT,M4.1.0,M10.5.0
TZif2                            	      
M6I`nP+`PP'`(n)w`)3   	SJMT CDT CST       TZif2                            
      i*MM    6I`    nP    +`    PP    '`    (n    )w`    )3  3 	 
LMT SJMT CDT CST         
CST6
TZif2                                  Kp;     MST PST     TZif2                                  ^=pKp;     LMT MST PST       
MST7
TZif2                            ~      
{WNB@ނ08@@ܹg0#@ޛ0ݨ@TA0
l0r@,Q:@0
@ɜ@xC 3ݰ!w@"ְ#X#~0%8 %0'!@') @)0*+k@,@-f0.@/F00@1[2W.3x048b@406 -@6v7809@::;
<o=ğ@>NA@B0CQ@C0EMaEG@G0HI0JڒKLtM`NVOI0Ps@Q GRcU@S )TC7@TF0V#@V(0X@X
0Y@Z0[\h0]^H0_`1̰akbcKc0e+cerg@gThb@iq0jD@kzS0l&@mZ50n@o:0p}$q0r]r0t<tٽ0vvٰwx0y܎z{ū@|b}@~K0o@l   	LMT AMST AMT       TZif2                                  
{WNB@ނ08@@ܹg0#@ޛ0ݨ@TA0
l0r@,Q:@0
@    ɜ@    x    C     3ݰ    !w@    "ְ    #X    #~0    %8     %0    '!@    '    ) @    )0    *    +k@    ,@    -f0    .@    /F0    0@    1[    2W.    3x0    48b@    40    6 -@    6v    7    80    9@    ::    ;
    <o    =ğ@    >N    A@    B0    CQ@    C0    EMa    E    G@    G0    H    I0    Jڒ    K    Lt    M`    NV    OI0    Ps@    Q G    RcU@    S )    TC7@    TF0    V#@    V(0    X@    X
0    Y@    Z0    [    \h0    ]    ^H0    _    `1̰    ak    b    cK    c0    e+c    er    g@    gT    hb@    iq0    jD@    kzS0    l&@    mZ50    n@    o:0    p}$    q0    r]    r0    t<    tٽ0    v    vٰ    w    x0    y܎    z    {ū@    |b    }@    ~K0    o@    +~0    eQ@l   	LMT AMST AMT       
AMT4AMST,M10.3.0/0,M2.3.0/0
TZif2                                  .#H]    LMT ANT AST       TZif2                                  .#H]    LMT ANT AST       
AST4
TZif2                            "      I M|P3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d0N0         
LMT WGT WGST GMT         TZif2                            "      I     M|P    3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    0N0         
LMT WGT WGST GMT         
GMT0
TZif2                            ~      ˰#Ҁˉ(#pa4 /v(0ir YUIT 97)6 "S	 54ې v+ !"V
 #j$5 %J& '*')
)Ϡ*b+,~-.`/~u0B1g 2s$3Gt 4S5'V 6278 88 9: ;<=>?@oܠABOCdD/EDmE G-Gӵ I
lI JNKLjM|NLO\wP.Q<YRvS;TUTV5ԐV: XX YZ [޵\ ]^d _y`Mޠab-cgwd
eGYe턠g';gfiiHjke lmvG noV) pq6 ros tOt	v8vxx͠yz{f|~}H~^s*   p  YDT YST YWT YPT YDDT PST PDT             TZif2                                  !}˰#Ҁˉ(#pa4 /v(    0    ir     YU    IT     97    )6     "S    	     5    4                    ې     v+     !    "V
     #j    $5     %J    &     '*    '    )
    )Ϡ    *b    +    ,~    -    .`    /~u    0B    1g     2s$    3Gt     4S    5'V     62    78     8    8     9    :     ;    <    =    >    ?    @oܠ    A    BO    Cd    D/    EDm    E     G-    Gӵ     I
l    I     JN    K    Lj    M|    NL    O\w    P.    Q<Y    Rv    S;    TU    T    V5Ԑ    V:     X    X     Y    Z     [޵    \     ]    ^d     _y    `Mޠ    a    b-    cgw    d
    eGY    e턠    g';    gf    i    iH    j    ke     l    mvG     n    oV)     p    q6     ro    s     tO    t	    v8    v    x    x͠    y    z    {f    |~    }H    ~^s    *}L  p  LMT YDT YST YWT YPT YDDT PST PDT               
PST8PDT,M3.2.0,M11.1.0
TZif2                            9      ˉ#pa&U  5   Ѡ޳ݩ޾߉wip~YIR^;)4GX Q': 3   qޠo_O?/(f fe HG * ) x q(a'                              PDT PST PWT PPT MST         TZif2                            :      ^=t8ˉ#pa&U  5   Ѡ޳ݩ޾߉wip~YIR^;)4GX Q': 3   qޠo_O?/(f fe HG *     )         x     q(    a'    H    LMT PDT PST PWT PPT MST           
MST7
TZif2                                  :逢e Eˉ#pa /v( Xv uX W: 9   wqaP@0ހ5		
ࡐٿ 
  ye idYG IF9) )("E	
'&	̀ v!"U#j $5%J &'* 'ߐ)
r )*T +,p-.R/~g041g2s3Gf4R5'H62ڀ7*8 89 :;ۻ <
= >? @oΐABOCd}D/ED_EG-| GӧI
^ IJ@ KL\M|N>O\iP Q<KRvS-TUTV5ƀV,X XY Z[ާ \] ^d_k `MАab-cgid
eGKevg'-gXii:jkWl mv9n oVp q5ro stO tv8vݐxxyvz{X|~}:~^e                                                                               MDT MST MWT MPT       TZif2                                  ^:e Eˉ#pa /v( Xv uX W: 9               w    q    a    P    @    0ހ    5    	    	    
    ࡐ    ٿ     
                      ye     id    YG     IF    9)     )(    "E    	
    '    &    	                ̀     v    !    "U    #j     $5    %J     &    '*     'ߐ    )
r     )    *T     +    ,p    -    .R    /~g    04    1g    2s    3Gf    4R    5'H    62ڀ    7*    8     8    9     :    ;ۻ     <
    =     >    ?     @oΐ    A    BO    Cd}    D/    ED_    E    G-|     Gӧ    I
^     I    J@     K    L\    M|    N>    O\i    P     Q<K    Rv    S-    TU    T    V5ƀ    V,    X     X    Y     Z    [ާ     \    ]     ^d    _k     `MА    a    b-    cgi    d
    eGK    ev    g'-    gX    i    i:    j    kW    l     mv9    n     oV    p     q5    ro     s    tO     t    v8    vݐ    x    x    yv    z    {X    |~    }:    ~^e       LMT MDT MST MWT MPT         
MST7MDT,M3.2.0,M11.1.0
TZif2                                  "[< ˈp#p`5 3p;@p0`p	`
 p
`p٢
gpfeyHiGY*I)9)")``
p`p`p` v !`"U#j$5%J&'*s'p)
U)ޥp*7+p,T`-ip.6`/~Kp0`1gg2r`3GI4R`5'+62`7
889:;۞<p=>p?b@opA`BOpCda`D/vpEDC`EG-_GӊI
AIlJ#KpL@`M|kpN"`O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `%    LMT CST EST EWT EPT EDT           TZif2                                  "[< ˈp#p`5 3p;    @p    0`    p    	`    
 p    
`    p    ٢    
gp            f    e    yH    iG    Y*    I)    9    )    ")`        `    
p    `    p    `    p    `     v     !`    "U    #j    $5    %J    &    '*s    'p    )
U    )ޥp    *7    +p    ,T`    -ip    .6`    /~Kp    0`    1gg    2r`    3GI    4R`    5'+    62`    7
    8    8    9    :    ;۞    <p    =    >p    ?b    @op    A`    BOp    Cda`    D/vp    EDC`    E    G-_    Gӊ    I
A    Il    J#    Kp    L@`    M|kp    N"`    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `%    LMT CST EST EWT EPT EDT           
EST5EDT,M3.2.0,M11.1.0
TZif2                                  ҅萣 jʐ5ÀS3 ˉ#pa U  uX 9 aP@0ހ ݐ	
 
ࡐٿ 
  ye idYG IF9) )("E	
'&	̀ v!"U#j $5%J &'* 'ߐ)
r )*T +,p-.R/~g041g2s3Gf4R5'H62ڀ7*8 89 :;ۻ <
= >? @oΐABOCd}D/ED_EG-| GӧI
^ IJ@ KL\M|N>O\iP Q<KRvS-TUTV5ƀV,X XY Z[ާ \] ^d_k `MАab-cgid
eGKevg'-gXii:jkWl mv9n oVp q5ro stO tv8vݐxxyvz{X|~}:~^e   LMT MDT MST MWT MPT         TZif2                                  ҅ jʐ5ÀS3 ˉ#pa U  uX 9     a    P    @    0ހ     ݐ    	    
     
    ࡐ    ٿ     
                      ye     id    YG     IF    9)     )(    "E    	
    '    &    	                ̀     v    !    "U    #j     $5    %J     &    '*     'ߐ    )
r     )    *T     +    ,p    -    .R    /~g    04    1g    2s    3Gf    4R    5'H    62ڀ    7*    8     8    9     :    ;ۻ     <
    =     >    ?     @oΐ    A    BO    Cd}    D/    ED_    E    G-|     Gӧ    I
^     I    J@     K    L\    M|    N>    O\i    P     Q<K    Rv    S-    TU    T    V5ƀ    V,    X     X    Y     Z    [ާ     \    ]     ^d    _k     `MА    a    b-    cgi    d
    eGK    ev    g'-    gX    i    i:    j    kW    l     mv9    n     oV    p     q5    ro     s    tO     t    v8    vݐ    x    x    yv    z    {X    |~    }:    ~^e       LMT MDT MST MWT MPT         
MST7MDT,M3.2.0,M11.1.0
TZif2                            !      f \PPސ@8PPܹu@1Pޛ@ݶPTO@z@P:QHP@
"PɪPxQ 3!P",P-f@H`PR   	 
LMT ACST ACT AMT         TZif2                            !      f \PPސ@8PPܹu@1Pޛ@ݶPTO@z@P:QHP@
"P    ɪP    x    Q     3    !P    "    ,P    -f@    H`P    R   	 
LMT ACST ACT AMT         
ACT5
TZif2                                  զ  !\P"z#<}P`   LMT CDT CST       TZif2                                  զ          !\P    "z    #<}P`   LMT CDT CST       
CST6
TZif2                            '      
kI@40t 800ܹY 0ޛ ݚ0T3 ^ d0Q,0 
Ұ0}Ɏ0xנ5 3Ϡ!i0"Ƞ#X#p %7% 7ư8 909J ;<o   	LMT BRST BRT       TZif2                            '      
kI@40t 800ܹY 0ޛ ݚ0T3 ^ d0Q,0 
Ұ0}    Ɏ0    xנ    5     3Ϡ    !i0    "Ƞ    #X    #p     %7    %     7ư    8     90    9J     ;    <o   	LMT BRST BRT       
BRT3
TZif2                                  4`Pˈ`#p`?`i8P``PP@`0P `	P
 `
xPw`ٔ
Y`vuXWy:i9YI8("PP`P`P`P u!P"U#j$5%J&'*e'`)
G)ޗ`*)+y`,FP-[`.(P/~=`0
P1gY2rP3G;4RP5'62P7889:;ې<`=r>`?T@o`AqPBO`CdSPD/h`ED5PEG-QG|I
3I^JK{`L2PM|]`NPO\?`PPQ<!`RuPS`TUPT`V5PVXXYZ[|\]^^d_@`M`a]Pb-`cg?Pd
j`eG!PeL`g'Pg.`iPi`jPk,lmvnoUpq5rostOkt`v8Pv޳`xjPx`yLPzw`{.P|~Y`}P~^;`P   LMT ADT AST AWT APT         TZif2                                  4`Pˈ`#p`?`i8P    ``    PP    @`    0P     `    	P    
 `    
xP    w`    ٔ    
Y`    v    u    X    W    y:    i9    Y    I    8    (    "P        P    `    P    `    P    `    P     u    !P    "U    #j    $5    %J    &    '*e    '`    )
G    )ޗ`    *)    +y`    ,FP    -[`    .(P    /~=`    0
P    1gY    2rP    3G;    4RP    5'    62P    7    8    8    9    :    ;ې    <`    =r    >`    ?T    @o`    AqP    BO`    CdSP    D/h`    ED5P    E    G-Q    G|    I
3    I^    J    K{`    L2P    M|]`    NP    O\?`    PP    Q<!`    RuP    S`    TUP    T`    V5P    V    X    X    Y    Z    [|    \    ]^    ^d    _@    `M`    a]P    b-`    cg?P    d
j`    eG!P    eL`    g'P    g.`    iP    i`    jP    k,    l    mv    n    oU    p    q5    ro    s    tOk    t`    v8P    v޳`    xjP    x`    yLP    zw`    {.P    |~Y`    }P    ~^;`    P   LMT ADT AST AWT APT         
AST4ADT,M3.2.0,M11.1.0
TZif2                            u      
h M|P3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~yπ    LMT WGT WGST       TZif2                           C      
h     M|P    3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y        Y    w    9h    W~    J    7`    g    B    I    $    +        
    "            a        J    _Ȑ    *ϐ    ?    
    (    ꓐ        u            m    t    O    sV    1    S8    qM    3    Q/        1                Ր    ܐ                {        [    y    D    Yz    $    9\    c    "x    E    Z    '    <    C        %         m        L    j    ,ː    J        *        
    լ        ɵ    ӣ    ˕p    ̳    uR    Γg    ^n    sI    >P    S+    2    3
        *            ؽؐ        ڦ    ۻ    ܆    ݛ    f    ߄ΐ    F    d    &}    D    _    $t    {    V    ]    8    ?    U    !    7    o        X     l    8    L        ,        ې    ר            ՟    l            c    `j    uE    @L   ^b    .   >D       &   -            	   
         
h   ʐ   H   f   1   F      &p   w      Y   o   ;   Q   X   3   z:      Z   n    9   !X   "   #7   #   %א   %ސ   &   '   (כ   )   *   +   ,   -bf   .|   /BH   0`^   1+e   2@@   3G   4 "   4)   6	>   6   7    8   9   :	   ;   <s   =Ɛ   >S͐   ?h   @3   AQ   B   C1   Cs   E   Eܐ   Fk   Gr   HM   IT   Ji   K|6   LK   M\   Nz-   OE4   PZ   Q%   R9   S   TӐ   Tڐ   V   Vļ   W   X   Y´   Z   [   \m   ]x   ^M   _k   `-a   aKv   b
C   c+X   c%   e:   eA   f   g#   h   i   j   ku   l   mUɐ   ns   o>   pS   q   r3   r   t   tތ   u   vn   w܃   xP   ye   zl   {G   |gN   }|)   ~G0   eF   '   E(      %
                  İ      ̐   o      O{   m   8   Mr   y   -T   [   q   =   S      5               a    u   @   ^       >ِ                ɤ         a   h   ~   iJ   `   I,   gB   2I   G$   +   '   
                     Ȑ   zϐ      Z   o   :   On   u   8   W   m   9   O   V   1   ǣ8   ȸ   Ƀ   ʡ/   b   ́   B   `   +   @Ր   ܐ       뾐       ˠ      ֫   ɘ   ؋d   ٩z   t   ۉ\   Tc   i>   4E   RZ   '   2<   	                      Đ   |ː      \   z   <   Z   %   :      i   p   K   R   g   4   I      +   n2   
   N   b   -   L    
ؐ   +                  ˔      v   	v}   
   V_   tt   
6A   TV   ]   48   ?      !   7               ~ǐ      g   |   G   \   '   E       !%   !l   #   #Ј   $c   %j   &E   'L   ('   )p.   *D   +P   ,n&   -/   .N   /   0-   0   2
   2   3   4   5ʐ   6   7   8   9   :a   ;vp   <Aw   =VR   >!Y   ??o   @;   AQ   A   B3   C:   D   E   F   G   H   Ii   J   KI   Lgא   M)   NG   O   P'   P   R}   R҄   S   Tf   U|   VH   W^   X{e   Y@   Z[G   [p"   \;)   ]P   ^   _9    _   a   a   b   c   dƐ   e͐   f   g   h   ic   j   kCs   la   m#U   nAk   or   p!M   pT   r/   r6   s   t   u-   v   w   xk   y   zT   {iӐ   |4ڐ   }I   ~   2         Ԁ         x      Z   }a   <   ]C   {X   =%   [:      ;   #                  ɐ            e      N   c   .   Cg   n   ,   P   e   2   G   N   )   0      w      V   u
   6֐   T      4         ߷         ݮ   {      ]   r   hy   }T   H[   ]6   (=   =      &5               ñ       Ő   ƥ   p   Ȏِ   P   n   0   N   j   .      a   h   C   ҹJ   `   ԙ,   շB   y   ח$   b+   w   B
   V   !   6            Ȑ      ߪ   㪱   俌   劓   n   ju   舋   JW   hm   *9   HO   V   (1   8                        r   Ր   [ܐ   p   ;   P      9         d    z   F   \   c   >   E       d'   <   	D	   
b   #   B    

   !      Đ   ː   ᦐ               lq      U   ji   5p   JK   R   3g   4   I       +   !2   "
π    LMT WGT WGST       

TZif2                  	   	          	   ~|Ml18y8YѨw89a@( ո( #p`ӈDJHh&)HH	H'HXtXݩmH޾VX߉OH8Xi1H~XIH]X(HG&챷ƠHﯽXHXHoX_dHOcX?FH/EX(bkX.`KJ-, wpP``PP@`0P `	P
 `
xPw`ٔ
Y`vuXWy:i9YI8("PP`P`P`P u!il"U#jw$5%Jg&|'*I'|)
+){|*
+]|,*l-?|.l/~!|0l1g=2rl3G4Rl5'62l7889:Ƨ;t<|=V>|?8@o|AUlBOj|Cd7lD/L|EDlE~G-5G`I
IBJK_|LlM|A|NPO\?`PPQ<!`RuPS`TUPT`V5PVXXYZ[|\]^^d_@`M`a]Pb-`cg?Pd
j`eG!PeL`g'Pg.`iPi`jPk,lmvnoUpq5rostOkt`v8Pv޳`xjPx`yLPzw`{.P|~Y`}P~^;`P Δ  ܤ   NST NDT NPT NWT ADT AST ADDT                 TZif2                  
   
          
   !^=<$~|Ml18y8YѨw89a@( ո( #p`ӈDJHh&)HH	H'HXtXݩmH޾VX߉OH8Xi1H~XIH]X(HG&챷ƠHﯽXHXHoX_dHOcX?FH/EX(bkX.`KJ-,             w    pP    ``    PP    @`    0P     `    	P    
 `    
xP    w`    ٔ    
Y`    v    u    X    W    y:    i9    Y    I    8    (    "P        P    `    P    `    P    `    P     u    !il    "U    #jw    $5    %Jg    &|    '*I    '|    )
+    ){|    *
    +]|    ,*l    -?|    .l    /~!|    0l    1g=    2rl    3G    4Rl    5'    62l    7    8    8    9    :Ƨ    ;t    <|    =V    >|    ?8    @o|    AUl    BOj|    Cd7l    D/L|    EDl    E~    G-5    G`    I
    IB    J    K_|    Ll    M|A|    NP    O\?`    PP    Q<!`    RuP    S`    TUP    T`    V5P    V    X    X    Y    Z    [|    \    ]^    ^d    _@    `M`    a]P    b-`    cg?P    d
j`    eG!P    eL`    g'P    g.`    iP    i`    jP    k,    l    mv    n    oU    p    q5    ro    s    tOk    t`    v8P    v޳`    xjP    x`    yLP    zw`    {.P    |~Y`    }P    ~^;`    P	\  Δ ܤ  LMT NST NDT NPT NWT ADT AST ADDT                   
AST4ADT,M3.2.0,M11.1.0
TZif2                            w      eyHiGY*I)9)")``
p`p`p` v !`"U#j$5%J&'*s'p)
U)ޥp*7+p,T`-ip.6`/~Kp0`1gg2r`3GI4R`5'+62`7
889:;۞<p=>p?b@opA`BOpCda`D/vpEDC`EG-_GӊI
AIlJ#KpL@`M|kpN"`O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `   KMT EDT EST       TZif2                            x      i0    e    yH    iG    Y*    I)    9    )    ")`        `    
p    `    p    `    p    `     v     !`    "U    #j    $5    %J    &    '*s    'p    )
U    )ޥp    *7    +p    ,T`    -ip    .6`    /~Kp    0`    1gg    2r`    3GI    4R`    5'+    62`    7
    8    8    9    :    ;۞    <p    =    >p    ?b    @op    A`    BOp    Cda`    D/vp    EDC`    E    G-_    Gӊ    I
A    Il    J#    Kp    L@`    M|kp    N"`    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `P    LMT KMT EDT EST         
EST5EDT,M3.2.0,M11.1.0
TZif2                            	      U`͖,x`P'(\DTR`EKP$   LMT CDT CST       TZif2                            	          U`    ͖    ,x`    P    '    (\    DTR`    EKP$   LMT CDT CST       
CST6
TZif2                                  Bh   QMT ECT     TZif2                                  i&XB(  h  LMT QMT ECT       
ECT5
TZif2                                  
y9>
}<'0x  D D 	 	 	LMT GBGT GYT           TZif2                                  
y9>    
}<    '0x  D D 	 	 	LMT GBGT GYT           
GYT4
TZif2                                  񫠚0`P@00zV@0SR<@4@:0@0@0E@U0@Kp~@$0n`@NB@$0 ]@1@0^G0@P0mp@00r<@b06n~P`ˈ`#p`u@U 5 |u{`ݩtP޾]`߉VP?`i8P~!`IPG'챾`Po`_kPOj`?MP/L`(i.`KJ-, wpP``PP@`0P `	P
 `
xPw`ٔ
Y`vuXWy:i9YI8("PP`P`P`P u!P"U#j$5%J&'*e'`)
G)ޗ`*)+y`,FP-[`.(P/~=`0
P1gY2rP3G;4RP5'62P7889:;ې<`=r>`?T@o`AqPBO`CdSPD/h`ED5PEG-QG|I
3I^JK{`L2PM|]`NPO\?`PPQ<!`RuPS`TUPT`V5PVXXYZ[|\]^^d_@`M`a]Pb-`cg?Pd
j`eG!PeL`g'Pg.`iPi`jPk,lmvnoUpq5rostOkt`v8Pv޳`xjPx`yLPzw`{.P|~Y`}P~^;`P`   LMT ADT AST AWT APT         TZif2                                  0`P@00zV@0SR<@4@:0@0@0E@U0@Kp~@$0n`@NB@$0 ]@1@0^G0@P0mp@00r<@b06n~P`ˈ`#p`u@U 5 |u{`ݩtP޾]`߉VP?`i8P~!`IPG'챾`Po`_kPOj`?MP/L`(i.`KJ-,             w    pP    ``    PP    @`    0P     `    	P    
 `    
xP    w`    ٔ    
Y`    v    u    X    W    y:    i9    Y    I    8    (    "P        P    `    P    `    P    `    P     u    !P    "U    #j    $5    %J    &    '*e    '`    )
G    )ޗ`    *)    +y`    ,FP    -[`    .(P    /~=`    0
P    1gY    2rP    3G;    4RP    5'    62P    7    8    8    9    :    ;ې    <`    =r    >`    ?T    @o`    AqP    BO`    CdSP    D/h`    ED5P    E    G-Q    G|    I
3    I^    J    K{`    L2P    M|]`    NP    O\?`    PP    Q<!`    RuP    S`    TUP    T`    V5P    V    X    X    Y    Z    [|    \    ]^    ^d    _@    `M`    a]P    b-`    cg?P    d
j`    eG!P    eL`    g'P    g.`    iP    i`    jP    k,    l    mv    n    oU    p    q5    ro    s    tOk    t`    v8P    v޳`    xjP    x`    yLP    zw`    {.P    |~Y`    }P    ~^;`    P`   LMT ADT AST AWT APT         
AST4ADT,M3.2.0,M11.1.0
TZif2                                  bӔPt]@[fQ@;Hʼm$eP̜OP;ӣP`}@=DS;@ũh@  wp@`P5@PH@ P{
 P
j@iPن
KPhP}@Qf1F[&{;d]F?(\@
>@zSP @ Z5P!o@"CQ#N@$#3%.@&''P()މP*״+kP,-MP.x/~/P0wZ1gK2W<3G-4@YP5P62P6P889:Ƶ;ې<P=r>P?T@f[ED5PEG$PGܩPIPIPJPKmPLMNNOwPPQ<PRuPSPTUPTPV5PVXXYZ[|\]^^d{_@`MPa]Pb-zPcg?Pd
\PeG!Pe>Pg'Pg PiPiPjPklmv noUpq5rostOktPv8PvޥPxjPxPyLPziP{.P|~KP}P~^-PP    HMT CDT CST         TZif2                                  i(bӔPt]@[fQ@;Hʼm$eP̜OP;ӣP`}@=DS;@ũh@              w    p@    `P    5    @P    H@     P    {    
 P    
j@    iP    ن    
KP    h    P    }@    Q    f    1    F    [    &{    ;d    ]    F    ?    (    \@    
    >@    zSP     @     Z5P    !o@    "CQ    #N@    $#3    %.@    &    '    'P    (    )މP    *״    +kP    ,    -MP    .x    /~/P    0wZ    1gK    2W<    3G-    4@YP    5P    62P    6P    8    8    9    :Ƶ    ;ې    <P    =r    >P    ?T    @f[    ED5P    E    G$P    GܩP    IP    IP    JP    KmP    L    M    NN    Ow    PP    Q<P    RuP    SP    TUP    TP    V5P    V    X    X    Y    Z    [|    \    ]^    ^d{    _@    `MP    a]P    b-zP    cg?P    d
\P    eG!P    e>P    g'P    g P    iP    iP    jP    k    l    mv     n    oU    p    q5    ro    s    tOk    tP    v8P    vޥP    xjP    xP    yLP    ziP    {.P    |~KP    }P    ~^-P    P     LMT HMT CDT CST           
CST5CDT,M3.2.0/0,M11.1.0/1
TZif2                                  pnfV`C`6`q`ؑ  p1g2s3Gf4R5'H62ڀ     LMT MST CST PST MDT           TZif2                                  pnfV`C`6`q`ؑ      p    1g    2s    3Gf    4R    5'H    62ڀ     LMT MST CST PST MDT           
MST7
TZif2                            b      ,ppW"Gpˈ#pa	u @U  5   sޗݩp޾y߉rp[iTp~=I6p^   D/vpEDC`EG-_GӊI
AIlJ#KpL@`M|kpN"`O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `               CDT CST CWT CPT EST EDT           TZif2                            c      ^,ppW"Gpˈ#pa	u @U  5   sޗݩp޾y߉rp[iTp~=I6p^               D/vp    EDC`    E    G-_    Gӊ    I
A    Il    J#    Kp    L@`    M|kp    N"`    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `:    LMT CDT CST CWT CPT EST EDT             
EST5EDT,M3.2.0,M11.1.0
TZif2                                  ,ppˈ#pa	U  5   sޗݩp޾y߉rp[iTp~=I6p^W<G< 7'     pp_pg II ++ 
 
 w qpaPp@0p'	p	 
pٰ
u tt yViV Y8I8 9) "7p ppp܀p v !p"U #j$5 %J& '*'р)
cD/vpEDQpE G-mGә I
OI{ J1KLNpM|yN0pO\[PpQ<=RupSTUpTV5pV XX  YZ [ޘ\ ]z^d _\`Maypb-cg[pd
eG=pehg'pgJipi,jpkI lmv+ noV
 pq5 ros tOtv8pvπxpxyhpz{Jp|~u},p~^Wp                                                                             CDT CST CWT CPT EST         TZif2                                  ^,ppˈ#pa	U  5   sޗݩp޾y߉rp[iTp~=I6p^W<G< 7'     pp_pg II ++ 
     
         w     qp    a    Pp    @    0p    '    	p    	     
p        ٰ    
u             t    t     yV    iV     Y8    I8     9    )     "7p         p        p        p    ܀    p     v     !p    "U     #j    $5     %J    &     '*    'р    )
c    D/vp    EDQp    E     G-m    Gә     I
O    I{     J1    K    LNp    M|y    N0p    O\[    Pp    Q<=    Rup    S    TUp    T    V5p    V     X    X      Y    Z     [ޘ    \     ]z    ^d     _\    `M    ayp    b-    cg[p    d
    eG=p    eh    g'p    gJ    ip    i,    jp    kI     l    mv+     n    oV
     p    q5     ro    s     tO    t    v8p    vπ    xp    x    yhp    z    {Jp    |~u    },p    ~^W    p    LMT CDT CST CWT CPT EST           
CST6CDT,M3.2.0,M11.1.0
TZif2                            f      ,ppˈ#pa	ޗݩp~=I6p^)pG< 4'      wp``pP`@p0`p	p	
`D/vpEDC`EG-_GӊI
AIlJ#KpL@`M|kpN"`O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `              CDT CST CWT CPT EST EDT           TZif2                            g      ^,ppˈ#pa	ޗݩp~=I6p^)pG< 4'                  w    p`    `p    P`    @p    0`    p    	p    	    
`    D/vp    EDC`    E    G-_    Gӊ    I
A    Il    J#    Kp    L@`    M|kp    N"`    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `
    LMT CDT CST CWT CPT EST EDT             
EST5EDT,M3.2.0,M11.1.0
TZif2                            s      ,ppˈ#pa	g=)pG< 4'     ppo_pO?ip/hgg II ++ 
 
 w qpaPp@0p'	p	 
pٰ
uD/vpEDQpE G-mGӊI
AIlJ#KpL@`M|kpN"`O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `                            CDT CST CWT CPT EST EDT           TZif2                            t      ^,ppˈ#pa	g=)pG< 4'     ppo_pO?ip/hgg II ++ 
     
         w     qp    a    Pp    @    0p    '    	p    	     
p        ٰ    
u        D/vp    EDQp    E     G-m    Gӊ    I
A    Il    J#    Kp    L@`    M|kp    N"`    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `-    LMT CDT CST CWT CPT EST EDT             
EST5EDT,M3.2.0,M11.1.0
TZif2                            d      ,ppˈ#pa	u @[iTp~=I6pg=)pG< 4'     pqpo_pO D/vpEDQpE G-mGә I
OI{ J1KLNpM|yN0pO\[PpQ<=RupSTUpTV5pV XX  YZ [ޘ\ ]z^d _\`Maypb-cg[pd
eG=pehg'pgJipi,jpkI lmv+ noV
 pq5 ros tOtv8pvπxpxyhpz{Jp|~u},p~^Wp                                                 CDT CST CWT CPT EST EDT           TZif2                            e      ^,ppˈ#pa	u @[iTp~=I6pg=)pG< 4'     pqpo_pO             D/vp    EDQp    E     G-m    Gә     I
O    I{     J1    K    LNp    M|y    N0p    O\[    Pp    Q<=    Rup    S    TUp    T    V5p    V     X    X      Y    Z     [ޘ    \     ]z    ^d     _\    `M    ayp    b-    cg[p    d
    eG=p    eh    g'p    gJ    ip    i,    jp    kI     l    mv+     n    oV
     p    q5     ro    s     tO    t    v8p    vπ    xp    x    yhp    z    {Jp    |~u    },p    ~^W    p    LMT CDT CST CWT CPT EST EDT             
CST6CDT,M3.2.0,M11.1.0
TZif2                            P      ,ppˈ#pa	~= wp``pP`D/vpEDC`EG-_GӊI
AIlJ#KpL@`M|kpN"`O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `     CDT CST CWT CPT EST EDT           TZif2                            Q      ^,ppˈ#pa	~=             w    p`    `p    P`    D/vp    EDC`    E    G-_    Gӊ    I
A    Il    J#    Kp    L@`    M|kp    N"`    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `@    LMT CDT CST CWT CPT EST EDT             
EST5EDT,M3.2.0,M11.1.0
TZif2                            d      ,ppˈ#pa	u @[iTp~=I6pg=)pG< 4'     pqpo_pO D/vpEDQpE G-mGӊI
AIlJ#KpL@`M|kpN"`O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `                   CDT CST CWT CPT EST EDT           TZif2                            e      ^,ppˈ#pa	u @[iTp~=I6pg=)pG< 4'     pqpo_pO             D/vp    EDQp    E     G-m    Gӊ    I
A    Il    J#    Kp    L@`    M|kp    N"`    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `    LMT CDT CST CWT CPT EST EDT             
EST5EDT,M3.2.0,M11.1.0
TZif2                            j      ,ppˈ#pa	u @U  5   sޗݩp޾y߉rp[iTp~=I6p^W<G< 7'      D/vpEDQpE G-_GӊI
AIlJ#KpL@`M|kpN"`O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `                     CDT CST CWT CPT EST EDT           TZif2                            k      ^,ppˈ#pa	u @U  5   sޗݩp޾y߉rp[iTp~=I6p^W<G< 7'                  D/vp    EDQp    E     G-_    Gӊ    I
A    Il    J#    Kp    L@`    M|kp    N"`    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `    LMT CDT CST CWT CPT EST EDT             
EST5EDT,M3.2.0,M11.1.0
TZif2                            x      N/h(  idYG IF9) )("E	
'&	̀ v!"U#j $5%J &'* 'ߐ)
r )*T +,p-.R/~g041g2s3Gf4R5'H62ڀ7*8 89 :;ۻ <
= >? @oΐABOCd}D/ED_EG-| GӧI
^ IJ@ KL\M|N>O\iP Q<KRvS-TUTV5ƀV,X XY Z[ާ \] ^d_k `MАab-cgid
eGKevg'-gXii:jkWl mv9n oVp q5ro stO tv8vݐxxyvz{X|~}:~^e       	 
zzz PDDT PST MST MDT           TZif2                            x      N/h(          id    YG     IF    9)     )(    "E    	
    '    &    	                ̀     v    !    "U    #j     $5    %J     &    '*     'ߐ    )
r     )    *T     +    ,p    -    .R    /~g    04    1g    2s    3Gf    4R    5'H    62ڀ    7*    8     8    9     :    ;ۻ     <
    =     >    ?     @oΐ    A    BO    Cd}    D/    ED_    E    G-|     Gӧ    I
^     I    J@     K    L\    M|    N>    O\i    P     Q<K    Rv    S-    TU    T    V5ƀ    V,    X     X    Y     Z    [ާ     \    ]     ^d    _k     `MА    a    b-    cgi    d
    eGK    ev    g'-    gX    i    i:    j    kW    l     mv9    n     oV    p     q5    ro     s    tO     t    v8    vݐ    x    x    yv    z    {X    |~    }:    ~^e           	 
zzz PDDT PST MST MDT           
MST7MDT,M3.2.0,M11.1.0
TZif2                            y      !l#p`/>P(iiGY*I)9)")``
p`p`p` v !`"U#j$5%J&'*s'p)
U)ޥp*7+p,T`-ip.6`/~Kp0`1gg2r`3GI4R`5'+62`7
88 9:;۞<p=>p?b@opA`BOpCda`D/vpEDC`EG-_GӊI
AIlJ#KpL@`M|kpN"`O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `        zzz EPT EST EDDT EDT EWT CST CDT               TZif2                            y      !l#p`/>P(i    iG    Y*    I)    9    )    ")`        `    
p    `    p    `    p    `     v     !`    "U    #j    $5    %J    &    '*s    'p    )
U    )ޥp    *7    +p    ,T`    -ip    .6`    /~Kp    0`    1gg    2r`    3GI    4R`    5'+    62`    7
    8    8     9    :    ;۞    <p    =    >p    ?b    @op    A`    BOp    Cda`    D/vp    EDC`    E    G-_    Gӊ    I
A    Il    J#    Kp    L@`    M|kp    N"`    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `        zzz EPT EST EDDT EDT EWT CST CDT               
EST5EDT,M3.2.0,M11.1.0
TZif2                                   p	`	
`p٢
gpfeyHiGY*I)9)")``   KMT EST EDT       TZif2                                  i#     p    	`    	    
`    p    ٢    
gp            f    e    yH    iG    Y*    I)    9    )    ")`        `    LMT KMT EST EDT         
EST5
TZif2                                  "ˉ#pa&G * ) x q(a'Q
A	0C	ΐ	 
௠
  ysir Yc IT 97)6 "S	 5+B%$ v90!ˠ"V0#j $50%J &0'* ')
 )ݰ*p +,ӌ-.n/~0P1g02s23G04S5'd0627F08 8(09 :
0; <&= >? @oABO̰CdD/ED{E0G- G0I
z I0J\ KLxM|NZO\P<Q<gRvSITV T+V5VH0X X*0Y Z0[ \0] ^d0_ `Mab-ΰcgd
eGge풰g'Igti+iVj
ks0l* mvU0n oV70p q60ro s0tO tv8Πvxx۰yz{t|~}V~^8                 p p PST PWT PPT PDT YDT YST AKDT AKST               TZif2                  
   
          
   &?х}2ˉ#pa&G *     )         x     q(    a'    Q
    A	    0    C    	ΐ    	     
    ௠        
                      ys    ir     Yc     IT     97    )6     "S    	     5    +    B    %    $                 v90    !ˠ    "V0    #j     $50    %J     &0    '*     '    )
     )ݰ    *p     +    ,ӌ    -    .n    /~    0P    1g0    2s2    3G0    4S    5'd0    62    7F0    8     8(0    9     :
0    ;     <&    =     >    ?     @o    A    BO̰    Cd    D/    ED{    E0    G-     G0    I
z     I0    J\     K    Lx    M|    NZ    O\    P<    Q<g    Rv    SI    TV     T+    V5    VH0    X     X*0    Y     Z0    [     \0    ]     ^d0    _     `M    a    b-ΰ    cg    d
    eGg    e풰    g'I    gt    i+    iV    j
    ks0    l*     mvU0    n     oV70    p     q60    ro     s0    tO     t    v8Π    v    x    x۰    y    z    {t    |~    }V    ~^    8																																																							  {     p p !LMT PST PWT PPT PDT YDT YST AKDT AKST                   
AKST9AKDT,M3.2.0,M11.1.0
TZif2                                  ,pps p
NGpˈ#pa	ۗ`Ӥ	pU sޗݩp޾y߉rp[iTp~=I6p^)pG< 7'      pp: wp``pP`@p0`p	p	
`p٢
gpfeyHiGY*I)9)")``
p`p`p` v !`"U#j$5%J&'*s'p)
U)ޥp*7+p,T`-ip.6`/~Kp0`1gg2r`3GI4R`5'+62`7
889:;۞<p=>p?b@opA`BOpCda`D/vpEDC`EG-_GӊI
AIlJ#KpL@`M|kpN"`O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `                     CDT CST CWT CPT EST EDT           TZif2                                  ^,pps p
NGpˈ#pa	ۗ`Ӥ	pU sޗݩp޾y߉rp[iTp~=I6p^)pG< 7'      pp:             w    p`    `p    P`    @p    0`    p    	p    	    
`    p    ٢    
gp            f    e    yH    iG    Y*    I)    9    )    ")`        `    
p    `    p    `    p    `     v     !`    "U    #j    $5    %J    &    '*s    'p    )
U    )ޥp    *7    +p    ,T`    -ip    .6`    /~Kp    0`    1gg    2r`    3GI    4R`    5'+    62`    7
    8    8    9    :    ;۞    <p    =    >p    ?b    @op    A`    BOp    Cda`    D/vp    EDC`    E    G-_    Gӊ    I
A    Il    J#    Kp    L@`    M|kp    N"`    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `    LMT CDT CST CWT CPT EST EDT             
EST5EDT,M3.2.0,M11.1.0
TZif2                                  ,ppˈ#pa	I ++ 
 
 w qpaPp@0p'	p	 
pٰ
u tt yViV Y8I8 9) "7p ppp܀p v !p"U #j$5 %J& '*'р)
c)޳*E+,bp-w.Dp/~Y0&p1gv 2sp3GX 4Rp5': 62p7 88 9:;۞<p=>p?b@opA`BOpCda`D/vpEDC`EG-_GӊI
AIlJ#KpL@`M|kpN"`O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `                                      CDT CST CWT CPT EDT EST           TZif2                                  ^,ppˈ#pa	I ++ 
     
         w     qp    a    Pp    @    0p    '    	p    	     
p        ٰ    
u             t    t     yV    iV     Y8    I8     9    )     "7p         p        p        p    ܀    p     v     !p    "U     #j    $5     %J    &     '*    'р    )
c    )޳    *E    +    ,bp    -w    .Dp    /~Y    0&p    1gv     2sp    3GX     4Rp    5':     62p    7     8    8     9    :    ;۞    <p    =    >p    ?b    @op    A`    BOp    Cda`    D/vp    EDC`    E    G-_    Gӊ    I
A    Il    J#    Kp    L@`    M|kp    N"`    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `t    LMT CDT CST CWT CPT EDT EST             
EST5EDT,M3.2.0,M11.1.0
TZif2                                  
  , 	CMT BOST BOT       TZif2                                  id   , 
LMT CMT BOST BOT         
BOT4
TZif2                                  
t@JPE@/J-,P]@ p%&|-%P-@   	LMT PEST PET       TZif2                                  
i#t@JPE@/J-,    P    ]@         p    %    &|    -%P    -@     	LMT PEST PET         
PET5
TZif2                                  H*ˉ#pa&t ؀Ѡ޳ݩ޾߉wip~YIR^;)4GX Q': 3   qޠo_O?/(f fe HG * ) x q(a'Q
A	0C	ΐ	 
௠
  ysir YUIT 97)6 "S	 54ې v+ !"V
 #j$5 %J& '*')
)Ϡ*b+,~-.`/~u0B1g 2s$3Gt 4S5'V 6278 88 9: ;<=>?@oܠABOCdD/EDmE G-Gӵ I
lI JNKLjM|NLO\wP.Q<YRvS;TUTV5ԐV: XX YZ [޵\ ]^d _y`Mޠab-cgwd
eGYe턠g';gfiiHjke lmvG noV) pq6 ros tOt	v8vxx͠yz{f|~}H~^s*                                                                                             PDT PST PWT PPT       TZif2                                  ^H*ˉ#pa&t ؀Ѡ޳ݩ޾߉wip~YIR^;)4GX Q': 3   qޠo_O?/(f fe HG *     )         x     q(    a'    Q
    A	    0    C    	ΐ    	     
    ௠        
                      ys    ir     YU    IT     97    )6     "S    	     5    4                    ې     v+     !    "V
     #j    $5     %J    &     '*    '    )
    )Ϡ    *b    +    ,~    -    .`    /~u    0B    1g     2s$    3Gt     4S    5'V     62    78     8    8     9    :     ;    <    =    >    ?    @oܠ    A    BO    Cd    D/    EDm    E     G-    Gӵ     I
l    I     JN    K    Lj    M|    NL    O\w    P.    Q<Y    Rv    S;    TU    T    V5Ԑ    V:     X    X     Y    Z     [޵    \     ]    ^d     _y    `Mޠ    a    b-    cgw    d
    eGY    e턠    g';    gf    i    iH    j    ke     l    mvG     n    oV)     p    q6     ro    s     tO    t	    v8    v    x    x͠    y    z    {f    |~    }H    ~^s    *&   LMT PDT PST PWT PPT         
PST8PDT,M3.2.0,M11.1.0
TZif2                            )      
h|I@40t 800ܹY 0ޛ ݚ0T3 ^ d0Q,0 
Ұ0}Ɏ0xנ5 3Ϡ!i0"Ƞ#X#p %7% 0y01M7ư8 909J ;<oބ   	LMT BRST BRT       TZif2                            )      
h|I@40t 800ܹY 0ޛ ݚ0T3 ^ d0Q,0 
Ұ0}    Ɏ0    xנ    5     3Ϡ    !i0    "Ƞ    #X    #p     %7    %     0y0    1M    7ư    8     90    9J     ;    <oބ   	LMT BRST BRT       
BRT3
TZif2                                  -HCt`	>PQoP1QP)a *KP+C2PBXC?iPDTnEY`    MMT CST EST CDT         TZif2                                  i,d-H    Ct`    	>P    Q    oP    1    QP    )a     *KP    +C    2P    BX    C?iP    DTn    EY`     LMT MMT CST EST CDT           
CST6
TZif2                                  
DWNB@ނ08@@ܹg0#@ޛ0ݨ@TA0
l0r@,Q:@0
@ɜ@xC 3ݰ!w@"ְ,@-f0Ǽ   	LMT AMST AMT       TZif2                                  
DWNB@ނ08@@ܹg0#@ޛ0ݨ@TA0
l0r@,Q:@0
@    ɜ@    x    C     3ݰ    !w@    "ְ    ,@    -f0Ǽ   	LMT AMST AMT       
AMT4
TZif2                                  
DMn@4Ƽ   	FFMT AST ADT       TZif2                                  iD    Mn@    4Ƽ  Ƽ  	
LMT FFMT AST ADT         
AST4
TZif2                            W      `"U #j1gv 2sp3GX 4Rp5': 62p7 88 9:;<=>ހ?p@oApBOCdopD/EDQpFfG$3pG IpIe JpKLNpM|yN0pO\[PpQ<=RupSTUpTV5pV XX  YZ [ޘ\ ]z^d _\`Maypb-cg[pd
eG=pehg'pgJipi,jpkI lmv+ noV
 pq5 ros tOtv8pvπxpxyhpz{Jp|~u},p~^Wp@   LMT CST CDT       TZif2                            W      `    "U     #j    1gv     2sp    3GX     4Rp    5':     62p    7     8    8     9    :    ;    <    =    >ހ    ?p    @o    Ap    BO    Cdop    D/    EDQp    Ff    G$3p    G     Ip    Ie     Jp    K    LNp    M|y    N0p    O\[    Pp    Q<=    Rup    S    TUp    T    V5p    V     X    X      Y    Z     [ޘ    \     ]z    ^d     _\    `M    ayp    b-    cg[p    d
    eG=p    eh    g'p    gJ    ip    i,    jp    kI     l    mv+     n    oV
     p    q5     ro    s     tO    t    v8p    vπ    xp    x    yhp    z    {Jp    |~u    },p    ~^W    p@   LMT CST CDT       
CST6CDT,M3.2.0,M11.1.0
TZif2                            ]      pnfV`C`6`q`ؑ  p1g2s3Gf4R5'H62ڀ7*8 89 :; <
= >? @oΐABOCd}D/ED_FtG$AGI#IsJKUL" M7N OxP Qa5Rl SATL U V, W ېXXཐYZ[l\]N^_0`ia~M bIbc^/ d)De> f`g gBh i$jݷ klӀmnoqʐpqZrfys:tF[uv/x vxZ xoy< zQ{ |m}  ~O <     LMT MST CST PST MDT           TZif2                            ]      pnfV`C`6`q`ؑ      p    1g    2s    3Gf    4R    5'H    62ڀ    7*    8     8    9     :    ;     <
    =     >    ?     @oΐ    A    BO    Cd}    D/    ED_    Ft    G$A    G    I#    Is    J    KU    L"     M7    N     Ox    P     Qa5    Rl     SA    TL     U     V,     W ې    X    Xཐ    Y    Z    [l    \    ]N    ^    _0    `i    a~M     bIb    c^/     d)D    e>     f`    g     gB    h     i$    jݷ     k    lӀ    m    n    oqʐ    p    qZ    rfy    s:    tF[    u    v/x     v    xZ     xo    y<     zQ    {     |m    }      ~O     <     LMT MST CST PST MDT           
MST7MDT,M4.1.0,M10.5.0
TZif2                                  ,ppˈ#pa	u @Jg+ @p0p'	p	 
pٰ
u tt yViV Y8I8 9) "7p ppp܀p v !p"U #j$5 %J& '*'р)
c)޳*E+,bp-w.Dp/~Y0&p1gv 2sp3GX 4Rp5': 62p7 88 9: ;۬<=>ހ?p@oApBOCdopD/EDQpE G-mGә I
OI{ J1KLNpM|yN0pO\[PpQ<=RupSTUpTV5pV XX  YZ [ޘ\ ]z^d _\`Maypb-cg[pd
eG=pehg'pgJipi,jpkI lmv+ noV
 pq5 ros tOtv8pvπxpxyhpz{Jp|~u},p~^Wp                                                                        CDT CST CWT CPT EST         TZif2                                  awIc,ppˈ#pa	u @Jg+     @p    0p    '    	p    	     
p        ٰ    
u             t    t     yV    iV     Y8    I8     9    )     "7p         p        p        p    ܀    p     v     !p    "U     #j    $5     %J    &     '*    'р    )
c    )޳    *E    +    ,bp    -w    .Dp    /~Y    0&p    1gv     2sp    3GX     4Rp    5':     62p    7     8    8     9    :     ;۬    <    =    >ހ    ?p    @o    Ap    BO    Cdop    D/    EDQp    E     G-m    Gә     I
O    I{     J1    K    LNp    M|y    N0p    O\[    Pp    Q<=    Rup    S    TUp    T    V5p    V     X    X      Y    Z     [ޘ    \     ]z    ^d     _\    `M    ayp    b-    cg[p    d
    eG=p    eh    g'p    gJ    ip    i,    jp    kI     l    mv+     n    oV
     p    q5     ro    s     tO    t    v8p    vπ    xp    x    yhp    z    {Jp    |~u    },p    ~^W    p    LMT CDT CST CWT CPT EST           
CST6CDT,M3.2.0,M11.1.0
TZif2                            W      ``LKP1gv 2sp3GX 4Rp5': 62p7 88 9:;<=>ހ?p@oApBOCdopD/EDQpFfG$3pG IpIe JpKG LM) NOx PQa'RlSA	TLU V,}W ̀XpXீY|pZ[^p\ ]@p^ _"p`ir a~>bIT c^ d)6 e>fRgg4hijݨklpmڀnpoqppqZ rfkps: tFMpu v/iv xKxa y-zC {|_}~A    LMT CST EST CDT         TZif2                            W      `    `    LKP    1gv     2sp    3GX     4Rp    5':     62p    7     8    8     9    :    ;    <    =    >ހ    ?p    @o    Ap    BO    Cdop    D/    EDQp    Ff    G$3p    G     Ip    Ie     Jp    KG     L    M)     N    Ox     P    Qa'    Rl    SA	    TL    U     V,}    W ̀    Xp    Xீ    Y|p    Z    [^p    \     ]@p    ^     _"p    `ir     a~>    bIT     c^     d)6     e>    fR    g    g4    h    i    jݨ    k    lp    mڀ    np    oq    pp    qZ     rfkp    s:     tFMp    u     v/i    v     xK    xa     y-    zC     {    |_    }    ~A        LMT CST EST CDT         
CST6CDT,M4.1.0,M10.5.0
TZif2                            !      ˉ#pa&G * ) x q(a'Q
A	0C	ΐ	 
௠
  ysir YUIT 97)6 "S	 5                  PST PWT PPT PDT MeST         TZif2                            #      ?}0ˉ#pa&G *     )         x     q(    a'    Q
    A	    0    C    	ΐ    	     
    ௠        
                      ys    ir     YU    IT     97    )6     "S    	     5  &      LMT PST PWT PPT PDT MeST             
MeST8
TZif2                            b      pnfV`C`6`ް`Ɨ4PUPϷVPڙv1gv 2sp3GX 4Rp5': 62p7 88 9:;<=>ހ?p@oApBOCdopD/EDQpFfG$3pG IpIe JpKG LM) NOx PQa'RlSA	TLU V,}W ̀XpXீY|pZ[^p\ ]@p^ _"p`ir a~>bIT c^ d)6 e>fRgg4hijݨklpmڀnpoqppqZ rfkps: tFMpu v/iv xKxa y-zC {|_}~A    LMT MST CST CDT CWT           TZif2                            b      pnfV`C`6`ް`Ɨ4PUPϷVPڙv    1gv     2sp    3GX     4Rp    5':     62p    7     8    8     9    :    ;    <    =    >ހ    ?p    @o    Ap    BO    Cdop    D/    EDQp    Ff    G$3p    G     Ip    Ie     Jp    KG     L    M)     N    Ox     P    Qa'    Rl    SA	    TL    U     V,}    W ̀    Xp    Xீ    Y|p    Z    [^p    \     ]@p    ^     _"p    `ir     a~>    bIT     c^     d)6     e>    fR    g    g4    h    i    jݨ    k    lp    mڀ    np    oq    pp    qZ     rfkp    s:     tFMp    u     v/i    v     xK    xa     y-    zC     {    |_    }    ~A        LMT MST CST CDT CWT           
CST6CDT,M4.1.0,M10.5.0
TZif2                            h      8nc u!w@"U#j$5%Ju&'*W'P)
9)މP*+kP,8@-MP.@/~/P0@1gK2r@3G-4R@5'62@7889:Ƶ;ۂ<P=d>P?F@oPAc@BOxPCdE@D/ZPED'@EG-CGnI
%IPJKmPL$@M|OPN@O\1PP@Q<PRu@SPTU@TPV5@VXXYZ[n\]P^d{_2`MPaO@b-zPcg1@d
\PeG@e>Pg&@g Pi@iPj@klmv noUpq5ro{stO]tPv8z@vޥPx\@xPy>@ziP{ @|~KP}@~^-P@X    
LMT AST PMST PMDT         TZif2                            h      8    nc     u    !w@    "U    #j    $5    %Ju    &    '*W    'P    )
9    )މP    *    +kP    ,8@    -MP    .@    /~/P    0@    1gK    2r@    3G-    4R@    5'    62@    7    8    8    9    :Ƶ    ;ۂ    <P    =d    >P    ?F    @oP    Ac@    BOxP    CdE@    D/ZP    ED'@    E    G-C    Gn    I
%    IP    J    KmP    L$@    M|OP    N@    O\1P    P@    Q<P    Ru@    SP    TU@    TP    V5@    V    X    X    Y    Z    [n    \    ]P    ^d{    _2    `MP    aO@    b-zP    cg1@    d
\P    eG@    e>P    g&@    g P    i@    iP    j@    k    l    mv     n    oU    p    q5    ro{    s    tO]    tP    v8z@    vޥP    x\@    xP    y>@    ziP    { @    |~KP    }@    ~^-P    @X    
LMT AST PMST PMDT         
PMST3PMDT,M3.2.0,M11.1.0
TZif2                                  P`P<8л#@н@пs@S@»3@ě@p
@H@^ˈ`#p`u@U 5 |u`W{`ݩtP޾]`߉VP?`i8P~!`IP^`(PG'֨ƧP`P`Po`_kPOj`?MP/L`(i.`KJ-, wpP``PP `	P
 `
xPw`ٔ
Y`vuXWy:i9YI8("PP`P`P`P u!P"U#j$5%J&'*e'`)
G)ޗ`*)+]|,*l-?|.l/~!|0l1g=2rl3G4Rl5'62l7889:Ƨ;t<|=V>|?8@o|AUlBOj|Cd7lD/L|EDlEG-QG|I
3I^JK{`L2PM|]`NPO\?`PPQ<!`RuPS`TUPT`V5PVXXYZ[|\]^^d_@`M`a]Pb-`cg?Pd
j`eG!PeL`g'Pg.`iPi`jPk,lmvnoUpq5rostOkt`v8Pv޳`xjPx`yLPzw`{.P|~Y`}P~^;`P   EST ADT AST AWT APT         TZif2                                  ^P`P<8#@@s@S@»3@ě@p
@H@^ˈ`#p`u@U 5 |u`W{`ݩtP޾]`߉VP?`i8P~!`IP^`(PG'֨ƧP`P`Po`_kPOj`?MP/L`(i.`KJ-,             w    pP    ``    PP     `    	P    
 `    
xP    w`    ٔ    
Y`    v    u    X    W    y:    i9    Y    I    8    (    "P        P    `    P    `    P    `    P     u    !P    "U    #j    $5    %J    &    '*e    '`    )
G    )ޗ`    *)    +]|    ,*l    -?|    .l    /~!|    0l    1g=    2rl    3G    4Rl    5'    62l    7    8    8    9    :Ƨ    ;t    <|    =V    >|    ?8    @o|    AUl    BOj|    Cd7l    D/L|    EDl    E    G-Q    G|    I
3    I^    J    K{`    L2P    M|]`    NP    O\?`    PP    Q<!`    RuP    S`    TUP    T`    V5P    V    X    X    Y    Z    [|    \    ]^    ^d    _@    `M`    a]P    b-`    cg?P    d
j`    eG!P    eL`    g'P    g.`    iP    i`    jP    k,    l    mv    n    oU    p    q5    ro    s    tOk    t`    v8P    v޳`    xjP    x`    yLP    zw`    {.P    |~Y`    }P    ~^;`    PD    LMT EST ADT AST AWT APT           
AST4ADT,M3.2.0,M11.1.0
TZif2                            W      `"U #j1gv 2sp3GX 4Rp5': 62p7 88 9:;<=>ހ?p@oApBOCdopD/EDQpFfG$3pG IpIe JpKG LM) NOx PQa'RlSA	TLU V,}W ̀XpXீY|pZ[^p\ ]@p^ _"p`ir a~>bIT c^ d)6 e>fRgg4hijݨklpmڀnpoqppqZ rfkps: tFMpu v/iv xKxa y-zC {|_}~A   LMT CST CDT       TZif2                            W      `    "U     #j    1gv     2sp    3GX     4Rp    5':     62p    7     8    8     9    :    ;    <    =    >ހ    ?p    @o    Ap    BO    Cdop    D/    EDQp    Ff    G$3p    G     Ip    Ie     Jp    KG     L    M)     N    Ox     P    Qa'    Rl    SA	    TL    U     V,}    W ̀    Xp    Xீ    Y|p    Z    [^p    \     ]@p    ^     _"p    `ir     a~>    bIT     c^     d)6     e>    fR    g    g4    h    i    jݨ    k    lp    mڀ    np    oq    pp    qZ     rfkp    s:     tFMp    u     v/i    v     xK    xa     y-    zC     {    |_    }    ~A       LMT CST CDT       
CST6CDT,M4.1.0,M10.5.0
TZif2                                  %Y8C0Ìvԗyy8_[}x8?=]Z8=<8<080ʋ8UM8͕_ . EJ r T	s 6ꦠ>0bqؖ( 0ɨX0Ǡ	ZG(ݠ0 U0nG!T0";>#$ %Jg%v'!0'X)
+):*0+AL0BF/CHDEKPE~GgG`HIIBJ+K_@L
M|A@NO\#@PqPQ<@RPPS@T0PT@VPVWPXYvPZ[\]t^dm_yV`M@aY8b-l@c9d
N@ee0@gPg@hPi@jPklPmunPoUpjq5rJst*t@v
cvޗ@wExy@y'z[@{DP|~=@}&P~^@sPT   
 
 
MMT UYHST UYT UYST              TZif2                                  y},%Y8C0Ìvԗyy8_[}x8?=]Z8=<8<080ʋ8UM8͕_ . EJ r T	s 6ꦠ>0bqؖ(     0    ɨ    X0    Ǡ        	ZG(    ݠ    0         U0    nG    !T0    ";>    #    $     %Jg    %v    '!0    'X    )
+    ):    *0    +    AL0    BF/    CH    D    EKP    E~    Gg    G`    HI    IB    J+    K_@    L
    M|A@    N    O\#@    PqP    Q<@    RPP    S@    T0P    T@    VP    V    WP    X    YvP    Z    [    \    ]t    ^dm    _yV    `M@    aY8    b-l@    c9    d
N@    e    e0@    gP    g@    hP    i@    jP    k    lP    mu    nP    oU    pj    q5    rJ    s    t*    t@    v
c    vޗ@    wE    xy@    y'    z[@    {DP    |~=@    }&P    ~^@    sPT  T    LMT MMT UYHST UYT UYST                
UYT3UYST,M10.1.0,M3.2.0
TZif2                                  dp`X袔
_s>S-ގpp܍pR诼SP~5Pg.@|PG@[P&@;P@$й@лнĝпoxaOZdC/<M`P-BPˈp#p`u@U 5 `p`މpݩ`޾kp߉d`MpiF`~/pI(`^p)
`G-&'ֶƵ`p`p`op_y`Oxp?[`/Zp(w<pYX;: wp``pP`@p0` p	`
 p
`p٢
gpfeyHiGY*I)9)")``
p`p`p` v !`"U#j$5%J&'*s'p)
U)ޥp*7+p,T`-ip.6`/~Kp0`1gg2r`3GI4R`5'+62`7
889:;۞<p=>p?b@opA`BOpCda`D/vpEDC`EG-_GӊI
AIlJ#KpL@`M|kpN"`O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `                                                                                                                     EDT EST EWT EPT       TZif2                                  ^=Hxdp`X
_s>S-ގpp܍pRSP~5Pg.@|PG@[P&@;P@$@ĝoxaOZdC/<M`P-BPˈp#p`u@U 5 `p`މpݩ`޾kp߉d`MpiF`~/pI(`^p)
`G-&'ֶƵ`p`p`op_y`Oxp?[`/Zp(w<pYX;:             w    p`    `p    P`    @p    0`     p    	`    
 p    
`    p    ٢    
gp            f    e    yH    iG    Y*    I)    9    )    ")`        `    
p    `    p    `    p    `     v     !`    "U    #j    $5    %J    &    '*s    'p    )
U    )ޥp    *7    +p    ,T`    -ip    .6`    /~Kp    0`    1gg    2r`    3GI    4R`    5'+    62`    7
    8    8    9    :    ;۞    <p    =    >p    ?b    @op    A`    BOp    Cda`    D/vp    EDC`    E    G-_    Gӊ    I
A    Il    J#    Kp    L@`    M|kp    N"`    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `   LMT EDT EST EWT EPT         
EST5EDT,M3.2.0,M11.1.0
TZif2                                  7BOxp?[`/Zp(w<pYX;: wp``pP`@p0` p	`
 p
`p٢
gpfeyHiGY*I)9)")``
p`p`p` v !`"U#j$5%J&'*s'p)
U)ޥp*7+p,T`-ip.6`/~Kp0`1gg2r`3GI4R`5'+62`7
889:;۞<p=>p?b@opA`BOpCda`D/vpEDC`EG-_GӊI
AIlJ#KpL@`M|kpN"`O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `v   LMT EDT EST       TZif2                                  7BOxp?[`/Zp(w<pYX;:             w    p`    `p    P`    @p    0`     p    	`    
 p    
`    p    ٢    
gp            f    e    yH    iG    Y*    I)    9    )    ")`        `    
p    `    p    `    p    `     v     !`    "U    #j    $5    %J    &    '*s    'p    )
U    )ޥp    *7    +p    ,T`    -ip    .6`    /~Kp    0`    1gg    2r`    3GI    4R`    5'+    62`    7
    8    8    9    :    ;۞    <p    =    >p    ?b    @op    A`    BOp    Cda`    D/vp    EDC`    E    G-_    Gӊ    I
A    Il    J#    Kp    L@`    M|kp    N"`    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `v   LMT EDT EST       
EST5EDT,M3.2.0,M11.1.0
TZif2                                  p` p`epjp5`S`3އpiRK௳4~-౜QpgJ`|3pG,`\p'`;p`p`ƴ`Ĺ𿏲o}Ovd_/XM|p:-^pW`
@p9`ˈp#p`u@U 5 peމpݩ`޾kp߉d`MpiF`~/pI(`^pW.G-7'ֶƵ`p`p`op_y`Oxp?[`/Zp(w<pYX;: wp``pP`@p0`p	`	
`p٢
gpfeyHiGY*I)9)")``
p`p`p` v !`"U#j$5%J&'*s'p)
U)ޥp*7+p,T`-ip.6`/~Kp0`1gg2r`3GI4R`5'+62`7
889:;۞<p=>p?b@opA`BOpCda`D/vpEDC`EG-_GӊI
AIlJ#KpL@`M|kpN"`O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `                                                                                                                      EDT EST EWT EPT       TZif2                                  ^p` p`epjp5`S`3އpiRK4~-QpgJ`|3pG,`\p'`;p`p`ƴ`Ĺo}Ovd_/XM|p:-^pW`
@p9`ˈp#p`u@U 5 peމpݩ`޾kp߉d`MpiF`~/pI(`^pW.G-7'ֶƵ`p`p`op_y`Oxp?[`/Zp(w<pYX;:             w    p`    `p    P`    @p    0`    p    	`    	    
`    p    ٢    
gp            f    e    yH    iG    Y*    I)    9    )    ")`        `    
p    `    p    `    p    `     v     !`    "U    #j    $5    %J    &    '*s    'p    )
U    )ޥp    *7    +p    ,T`    -ip    .6`    /~Kp    0`    1gg    2r`    3GI    4R`    5'+    62`    7
    8    8    9    :    ;۞    <p    =    >p    ?b    @op    A`    BOp    Cda`    D/vp    EDC`    E    G-_    Gӊ    I
A    Il    J#    Kp    L@`    M|kp    N"`    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `   LMT EDT EST EWT EPT         
EST5EDT,M3.2.0,M11.1.0
TZif2                                  p`IPˈp#p` p	`
 p
`p٢
gpfeyHiGY*I)9)")``
p`p`p` v !`"U#j$5%J&'*s'p)
U)ޥp*7+p,T`-ip.6`/~Kp0`1gg2r`3GI4R`5'+62`7
889:;۞<p=>p?b@opA`BOpCda`D/vpEDC`EG-_GӊI
AIlJ#KpL@`M|kpN"`O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `                                                                    EDT EST EWT EPT       TZif2                                  r@p`IPˈp#p`     p    	`    
 p    
`    p    ٢    
gp            f    e    yH    iG    Y*    I)    9    )    ")`        `    
p    `    p    `    p    `     v     !`    "U    #j    $5    %J    &    '*s    'p    )
U    )ޥp    *7    +p    ,T`    -ip    .6`    /~Kp    0`    1gg    2r`    3GI    4R`    5'+    62`    7
    8    8    9    :    ;۞    <p    =    >p    ?b    @op    A`    BOp    Cda`    D/vp    EDC`    E    G-_    Gӊ    I
A    Il    J#    Kp    L@`    M|kp    N"`    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `@   LMT EDT EST EWT EPT         
EST5EDT,M3.2.0,M11.1.0
TZif2                                  "ˉD#paP@UqPT@ SP6@x5PqRaQQ4A31m		P
@
@P@Py@iPY@I~P9a@)`P"}	BP_+B%$ v90!ˠ"V0#j $50%J &0'* ')
 )ݰ*p +,ӌ-.n/~0P1g02s23G04S5'd0627F08 8(09 :
0; <&= >? @oABO̰CdD/ED{E0G- G0I
z I0J\ KLxM|NZO\P<Q<gRvSITV T+V5VH0X X*0Y Z0[ \0] ^d0_ `Mab-ΰcgd
eGge풰g'Igti+iVj
ks0l* mvU0n oV70p q60ro s0tO tv8Πvxx۰yz{t|~}V~^8 eP  s`s`eP s`p p NST NWT NPT BST BDT YST AKDT AKST               TZif2                  
   
          
   &?}OˉD#paP@UqPT@     SP    6@    x5P    qR    aQ    Q4    A3    1    m    	    	P    
        @    
    @    P    @    P    y@    iP    Y@    I~P    9a@    )`P    "}    	BP    _    +    B    %    $                 v90    !ˠ    "V0    #j     $50    %J     &0    '*     '    )
     )ݰ    *p     +    ,ӌ    -    .n    /~    0P    1g0    2s2    3G0    4S    5'd0    62    7F0    8     8(0    9     :
0    ;     <&    =     >    ?     @o    A    BO̰    Cd    D/    ED{    E0    G-     G0    I
z     I0    J\     K    Lx    M|    NZ    O\    P<    Q<g    Rv    SI    TV     T+    V5    VH0    X     X*0    Y     Z0    [     \0    ]     ^d0    _     `M    a    b-ΰ    cg    d
    eGg    e풰    g'I    gt    i+    iV    j
    ks0    l*     mvU0    n     oV70    p     q60    ro     s0    tO     t    v8Π    v    x    x۰    y    z    {t    |~    }V    ~^    8																																																							  m  d  eP s`s`eP s`p p !LMT NST NWT NPT BST BDT YST AKDT AKST                   
AKST9AKDT,M3.2.0,M11.1.0
TZif2                            '      
ed;и2& f8  ӠܹK ޛ݌ T%PV Q Ƿ
Ġ oɀ xɐ' 3![ "#X#b%7%Թ78w9 9;<o    	LMT FNST FNT       TZif2                            '      
ed;2& f8  ӠܹK ޛ݌ T%PV Q Ƿ
Ġ o    ɀ     xɐ    '     3    ![     "    #X    #b    %7    %Թ    7    8w    9     9    ;    <o    	LMT FNST FNT       
FNT2
TZif2                                  :ˉ#pa uX W: 9   wqaP@0ހ5		
ࡐٿ 
  ye idYG IF9) )("E	
'&	̀ v!"U#j $5%J &'* 'ߐ)
r )*T +,p-.R/~g041g2s3Gf4R5'H62ڀ7*8 89 :;ۻ <
= >? @oΐABOCd}D/ED_EG-| GӧI
^ IJ@ KL\M|yN0pO\[PpQ<=RupSTUpTV5pV XX  YZ [ޘ\ ]z^d _\`Maypb-cg[pd
eG=pehg'pgJipi,jpkI lmv+ noV
 pq5 ros tOtv8pvπxpxyhpz{Jp|~u},p~^Wp                                                 MDT MST MWT MPT CDT CST           TZif2                                  ^:ˉ#pa uX W: 9               w    q    a    P    @    0ހ    5    	    	    
    ࡐ    ٿ     
                      ye     id    YG     IF    9)     )(    "E    	
    '    &    	                ̀     v    !    "U    #j     $5    %J     &    '*     'ߐ    )
r     )    *T     +    ,p    -    .R    /~g    04    1g    2s    3Gf    4R    5'H    62ڀ    7*    8     8    9     :    ;ۻ     <
    =     >    ?     @oΐ    A    BO    Cd}    D/    ED_    E    G-|     Gӧ    I
^     I    J@     K    L\    M|y    N0p    O\[    Pp    Q<=    Rup    S    TUp    T    V5p    V     X    X      Y    Z     [ޘ    \     ]z    ^d     _\    `M    ayp    b-    cg[p    d
    eG=p    eh    g'p    gJ    ip    i,    jp    kI     l    mv+     n    oV
     p    q5     ro    s     tO    t    v8p    vπ    xp    x    yhp    z    {Jp    |~u    },p    ~^W    p    LMT MDT MST MWT MPT CDT CST             
CST6CDT,M3.2.0,M11.1.0
TZif2                                  :ˉ#pa uX W: 9   wqaP@0ހ5		
ࡐٿ 
  ye idYG IF9) )("E	
'&	̀ v!"U#j $5%J &'* 'ߐ)
r )*T +,bp-w.Dp/~Y0&p1gv 2sp3GX 4Rp5': 62p7 88 9: ;۬<=>ހ?p@oApBOCdopD/EDQpE G-mGә I
OI{ J1KLNpM|yN0pO\[PpQ<=RupSTUpTV5pV XX  YZ [ޘ\ ]z^d _\`Maypb-cg[pd
eG=pehg'pgJipi,jpkI lmv+ noV
 pq5 ros tOtv8pvπxpxyhpz{Jp|~u},p~^Wp                               MDT MST MWT MPT CDT CST           TZif2                                  ^:ˉ#pa uX W: 9               w    q    a    P    @    0ހ    5    	    	    
    ࡐ    ٿ     
                      ye     id    YG     IF    9)     )(    "E    	
    '    &    	                ̀     v    !    "U    #j     $5    %J     &    '*     'ߐ    )
r     )    *T     +    ,bp    -w    .Dp    /~Y    0&p    1gv     2sp    3GX     4Rp    5':     62p    7     8    8     9    :     ;۬    <    =    >ހ    ?p    @o    Ap    BO    Cdop    D/    EDQp    E     G-m    Gә     I
O    I{     J1    K    LNp    M|y    N0p    O\[    Pp    Q<=    Rup    S    TUp    T    V5p    V     X    X      Y    Z     [ޘ    \     ]z    ^d     _\    `M    ayp    b-    cg[p    d
    eG=p    eh    g'p    gJ    ip    i,    jp    kI     l    mv+     n    oV
     p    q5     ro    s     tO    t    v8p    vπ    xp    x    yhp    z    {Jp    |~u    },p    ~^W    p    LMT MDT MST MWT MPT CDT CST             
CST6CDT,M3.2.0,M11.1.0
TZif2                                  :ˉ#pa uX W: 9   wqaP@0ހ5		
ࡐٿ 
  ye idYG IF9) )("E	
'&	̀ v!"U#j $5%J &'* 'ߐ)
r )*T +,p-.R/~g041g2s3Gf4R5'H62ڀ7*8 89 :;ۻ <
= >? @oApBOCdopD/EDQpE G-mGә I
OI{ J1KLNpM|yN0pO\[PpQ<=RupSTUpTV5pV XX  YZ [ޘ\ ]z^d _\`Maypb-cg[pd
eG=pehg'pgJipi,jpkI lmv+ noV
 pq5 ros tOtv8pvπxpxyhpz{Jp|~u},p~^Wp                                          MDT MST MWT MPT CDT CST           TZif2                                  ^:ˉ#pa uX W: 9               w    q    a    P    @    0ހ    5    	    	    
    ࡐ    ٿ     
                      ye     id    YG     IF    9)     )(    "E    	
    '    &    	                ̀     v    !    "U    #j     $5    %J     &    '*     'ߐ    )
r     )    *T     +    ,p    -    .R    /~g    04    1g    2s    3Gf    4R    5'H    62ڀ    7*    8     8    9     :    ;ۻ     <
    =     >    ?     @o    Ap    BO    Cdop    D/    EDQp    E     G-m    Gә     I
O    I{     J1    K    LNp    M|y    N0p    O\[    Pp    Q<=    Rup    S    TUp    T    V5p    V     X    X      Y    Z     [ޘ    \     ]z    ^d     _\    `M    ayp    b-    cg[p    d
    eG=p    eh    g'p    gJ    ip    i,    jp    kI     l    mv+     n    oV
     p    q5     ro    s     tO    t    v8p    vπ    xp    x    yhp    z    {Jp    |~u    },p    ~^W    p    LMT MDT MST MWT MPT CDT CST             
CST6CDT,M3.2.0,M11.1.0
TZif2                            Z      pnfV`C`6`1gv 2sp3GX 4Rp5'H62ڀ7*8 89 :; <
= >? @oΐABOCd}D/ED_FtG$AGI#IsJKL\M|N>O\iP Q<KRvS-TUTV5ƀV,X XY Z[ާ \] ^d_k `MАab-cgid
eGKevg'-gXii:jkWl mv9n oVp q5ro stO tv8vݐxxyvz{X|~}:~^e    LMT MST CST CDT MDT           TZif2                            Z      pnfV`C`6`    1gv     2sp    3GX     4Rp    5'H    62ڀ    7*    8     8    9     :    ;     <
    =     >    ?     @oΐ    A    BO    Cd}    D/    ED_    Ft    G$A    G    I#    Is    J    K    L\    M|    N>    O\i    P     Q<K    Rv    S-    TU    T    V5ƀ    V,    X     X    Y     Z    [ާ     \    ]     ^d    _k     `MА    a    b-    cgi    d
    eGK    ev    g'-    gX    i    i:    j    kW    l     mv9    n     oV    p     q5    ro     s    tO     t    v8    vݐ    x    x    yv    z    {X    |~    }:    ~^e        LMT MST CST CDT MDT           
MST7MDT,M3.2.0,M11.1.0
TZif2                                  a   CMT EST     TZif2                                  i&ap    LMT CMT EST       
EST5
TZif2                  
   
       z   
   )Rˈ`#p`/0@([i9YI8("PP`P`P`P u!P"U#j$5%J&'*e'`)
G)ޗ`*)+y`,FP-[`.(P/~=`0`1gg2r`3GI4R`5'+62`7
88 9:;۞<p=>p?b@opA`BOpCda`D/vpEDC`EG-_GӊI
AIlJ#KpL@`M|kpN"`O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `	         !%zzz AWT APT AST ADDT ADT EDT EST CST CDT                   TZif2                  
   
       z   
   )Rˈ`#p`/0@([    i9    Y    I    8    (    "P        P    `    P    `    P    `    P     u    !P    "U    #j    $5    %J    &    '*e    '`    )
G    )ޗ`    *)    +y`    ,FP    -[`    .(P    /~=`    0`    1gg    2r`    3GI    4R`    5'+    62`    7
    8    8     9    :    ;۞    <p    =    >p    ?b    @op    A`    BOp    Cda`    D/vp    EDC`    E    G-_    Gӊ    I
A    Il    J#    Kp    L@`    M|kp    N"`    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `	         !%zzz AWT APT AST ADDT ADT EDT EST CST CDT                   
EST5EDT,M3.2.0,M11.1.0
TZif2                                  *Kb,X1H  < L   
 
LMT PMT NEGT SRT             TZif2                                  *Kb,    X    1H  < L   
 
LMT PMT NEGT SRT             
SRT3
TZif2                            
      :ˉϏЁuX      MDT MST MWT       TZif2                                  ^:ˉϏЁuX    LMT MDT MST MWT         
MST7
TZif2                            W      
nqF@P@P@P@ P!w@"U#j$5%J&'*s'`)
U)ޗ`*7+y`,T`-[`.6`/~=`0`1gY2r`3G;4R`BOxPCdE@D/ZPED'@O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `D   	 	PPMT EDT EST         TZif2                            X      iPnq    F    @    P    @    P    @    P    @     P    !w@    "U    #j    $5    %J    &    '*s    '`    )
U    )ޗ`    *7    +y`    ,T`    -[`    .6`    /~=`    0`    1gY    2r`    3G;    4R`    BOxP    CdE@    D/ZP    ED'@    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `0  D 	 
	 
LMT PPMT EDT EST           
EST5EDT,M3.2.0,M11.1.0
TZif2                                  73T   LMT AST     TZif2                                  73T   LMT AST     
AST4
TZif2                                  
WNB@ނ08@@ܹg0#@ޛ0ݨ@TA0
l0r@,Q:@0
@ɜ@xC 3ݰ!w@"ְ   	LMT AMST AMT       TZif2                                  
WNB@ނ08@@ܹg0#@ޛ0ݨ@TA0
l0r@,Q:@0
@    ɜ@    x    C     3ݰ    !w@    "ְ   	LMT AMST AMT       
AMT4
TZif2                                  2#p`   AST APT AWT     TZif2                                  z敹2#p`   LMT AST APT AWT       
AST4
TZif2                                  pW`ˈ#pa	 π	p
 
pٰ
u tt yViV Y8I8 9) "7p ppp܀p v !p"U #j$5 %J& '*'р)
c)޳*E+,bp-w.Dp/~Y0&p1gv 2sp3GX 4Rp5': 62p7 88 9: ;۬<=>ހ?p@oApBOCdopD/EDQpE G-mGә I
OI{ J1KLNpM|yN0pO\[PpQ<=RupSTUpTV5pV XX  YZ [ޘ\ ]z^d _\`Maypb-cg[pd
eG=pehg'pgJipi,jpkI lmv+ noV
 pq5 ros tOtv8pvπxpxyhpz{Jp|~u},p~^Wp                                                                    CDT CST CWT CPT       TZif2                                  r(pW`ˈ#pa	     π    	p    
     
p        ٰ    
u             t    t     yV    iV     Y8    I8     9    )     "7p         p        p        p    ܀    p     v     !p    "U     #j    $5     %J    &     '*    'р    )
c    )޳    *E    +    ,bp    -w    .Dp    /~Y    0&p    1gv     2sp    3GX     4Rp    5':     62p    7     8    8     9    :     ;۬    <    =    >ހ    ?p    @o    Ap    BO    Cdop    D/    EDQp    E     G-m    Gә     I
O    I{     J1    K    LNp    M|y    N0p    O\[    Pp    Q<=    Rup    S    TUp    T    V5p    V     X    X      Y    Z     [ޘ    \     ]z    ^d     _\    `M    ayp    b-    cg[p    d
    eG=p    eh    g'p    gJ    ip    i,    jp    kI     l    mv+     n    oV
     p    q5     ro    s     tO    t    v8p    vπ    xp    x    yhp    z    {Jp    |~u    },p    ~^W    pX   LMT CDT CST CWT CPT         
CST6CDT,M3.2.0,M11.1.0
TZif2                            w      n /L`(wiV Y8I8 9) "7p ppp܀p v !p"U #j$5 %J& '*'р)
c)޳*E+,bp-w.Dp/~Y0&p1gv 2sp3GX 4Rp5': 62p7 88 9: ;۬<=>ހ?p@oApBOCdopD/EDQpE G-mGә I
OI{ J1KLNpM|yN0pO\[PpQ<=RupSTUpTV5pV XX  YZ [ޘ\ ]z^d _\`Maypb-cg[pd
eG=pehg'pgJipi,jpkI lmv+ noV
 pq5 ros tOtv8pvπxpxyhpz{Jp|~u},p~^Wp       	
 zzz CDDT CST CDT EST           TZif2                            w      n /L`(w    iV     Y8    I8     9    )     "7p         p        p        p    ܀    p     v     !p    "U     #j    $5     %J    &     '*    'р    )
c    )޳    *E    +    ,bp    -w    .Dp    /~Y    0&p    1gv     2sp    3GX     4Rp    5':     62p    7     8    8     9    :     ;۬    <    =    >ހ    ?p    @o    Ap    BO    Cdop    D/    EDQp    E     G-m    Gә     I
O    I{     J1    K    LNp    M|y    N0p    O\[    Pp    Q<=    Rup    S    TUp    T    V5p    V     X    X      Y    Z     [ޘ    \     ]z    ^d     _\    `M    ayp    b-    cg[p    d
    eG=p    eh    g'p    gJ    ip    i,    jp    kI     l    mv+     n    oV
     p    q5     ro    s     tO    t    v8p    vπ    xp    x    yhp    z    {Jp    |~u    },p    ~^W    p       	
 zzz CDDT CST CDT EST           
CST6CDT,M3.2.0,M11.1.0
TZif2                            '      
gI@40t 800ܹY 0ޛ ݚ0T3 ^ d0Q,0 
Ұ0}Ɏ0xנ5 3Ϡ!i0"Ƞ#X#p %7% 7ư8 909;<oH   	LMT BRST BRT       TZif2                            '      
gI@40t 800ܹY 0ޛ ݚ0T3 ^ d0Q,0 
Ұ0}    Ɏ0    xנ    5     3Ϡ    !i0    "Ƞ    #X    #p     %7    %     7ư    8     90    9    ;    <oH   	LMT BRST BRT       
BRT3
TZif2                            5      eO0HE1*%0pp`raQ8`1!p
`p`ˉ#pa cSo U  5   Ð ޥݩ޾߉iib~KID^-)&GJC ',%      LMT MDT MST MWT MPT CST           TZif2                            5      eO0HE1*%0pp`raQ8`1!p
`p`ˉ#pa cSo U  5   Ð ޥݩ޾߉iib~KID^-)&GJC ',%      LMT MDT MST MWT MPT CST           
CST6
TZif2                            w      /L`(wiV Y8I8 9) "7p ppp܀p v !p"U #j$5 %J& '*'р)
c)޳*E+,bp-w.Dp/~Y0&p1gv 2sp3GX 4Rp5': 62p7 88 9: ;۬<=>ހ?p@oApBOCdopD/EDQpE G-mGә I
OI{ J1KLNpM|yN0pO\[PpQ<=RupSTUpTV5pV XX  YZ [ޘ\ ]z^d _\`Maypb-cg[pd
eG=pehg'pgJipi,jpkI lmv+ noV
 pq5 ros tOtv8pvπxpxyhpz{Jp|~u},p~^Wp       	
 zzz CDDT CST CDT EST           TZif2                            w      /L`(w    iV     Y8    I8     9    )     "7p         p        p        p    ܀    p     v     !p    "U     #j    $5     %J    &     '*    'р    )
c    )޳    *E    +    ,bp    -w    .Dp    /~Y    0&p    1gv     2sp    3GX     4Rp    5':     62p    7     8    8     9    :     ;۬    <    =    >ހ    ?p    @o    Ap    BO    Cdop    D/    EDQp    E     G-m    Gә     I
O    I{     J1    K    LNp    M|y    N0p    O\[    Pp    Q<=    Rup    S    TUp    T    V5p    V     X    X      Y    Z     [ޘ    \     ]z    ^d     _\    `M    ayp    b-    cg[p    d
    eG=p    eh    g'p    gJ    ip    i,    jp    kI     l    mv+     n    oV
     p    q5     ro    s     tO    t    v8p    vπ    xp    x    yhp    z    {Jp    |~u    },p    ~^W    p       	
 zzz CDDT CST CDT EST           
CST6CDT,M3.2.0,M11.1.0
TZif2                                  f \PPސ@8PPܹu@1Pޛ@ݶPTO@z@P:QHP@
"PɪPxQ 3!P"H`PRp   	 
LMT ACST ACT AMT         TZif2                                  f \PPސ@8PPܹu@1Pޛ@ݶPTO@z@P:QHP@
"P    ɪP    x    Q     3    !P    "    H`P    Rp   	 
LMT ACST ACT AMT         
ACT5
TZif2                                  yOp|fdp 
ꍀ#pҙpY ؑ~YIR^;)4GX Q': 3   ௠
  ysir YUIT 97)6 "S	 54ې v+ !"V
 #j$5 %J& '*')
)Ϡ*b+,~-.`/~u0B1g 2s$3Gt 4S5'V 6278 88 9: ;<=>?@oܠABOCdD/EDmFG$OG I1I؁ JKc L0ME NOx' PQaCRlSA%TLU!V,W XXˠYZ[z\ ]\^ _>`i a~[bIp c^=d)R e>fnggPhi2jklmnÐoqؠpqZ rfs: tFiu v/v xhx} yJz_ {,|{}~]P    LMT MST PST PDT PWT PPT           TZif2                                  yOp|fdp 
ꍀ#pҙpY ؑ~YIR^;)4GX Q': 3       ௠        
                      ys    ir     YU    IT     97    )6     "S    	     5    4                    ې     v+     !    "V
     #j    $5     %J    &     '*    '    )
    )Ϡ    *b    +    ,~    -    .`    /~u    0B    1g     2s$    3Gt     4S    5'V     62    78     8    8     9    :     ;    <    =    >    ?    @oܠ    A    BO    Cd    D/    EDm    F    G$O    G     I1    I؁     J    Kc     L0    ME     N    Ox'     P    QaC    Rl    SA%    TL    U!    V,    W     X    Xˠ    Y    Z    [z    \     ]\    ^     _>    `i     a~[    bIp     c^=    d)R     e>    fn    g    gP    h    i2    j    k    l    m    nÐ    oqؠ    p    qZ     rf    s:     tFi    u     v/    v     xh    x}     yJ    z_     {,    |{    }    ~]    P    LMT MST PST PDT PWT PPT           
PST8PDT,M4.1.0,M10.5.0
TZif2                                  zHWNB@ނ08@@ܹg0#@ޛ0ݨ@TA0
l0r@,Q:@0
@ɜ@xC 3ݰ!w@"ְH`q@̸   	 
LMT AMST AMT BRT         TZif2                                  zHWNB@ނ08@@ܹg0#@ޛ0ݨ@TA0
l0r@,Q:@0
@    ɜ@    x    C     3ݰ    !w@    "ְ    H`q@̸   	 
LMT AMST AMT BRT         
BRT3
TZif2                                  
$iƛ\PqF q^wƱw=@A гXp"4P9@gзP\ Pn@lɰvP<@ rܰuP@IU2 +>O@ 
@@	Ѱ
@0@
0@h0H0f(v0F&{t]V?8\@>@p @ 0!o@"90#E$0%8 &&'١0()½*צ+,-.j/bc0@1BE2`i@3=04@K@5D06
@7հ8 @809+:0;
<0=>j0?@SʰAhB3CHDE1@EpG@G0Hv@Io0JX@K L:@M0NPOPBQ|R+@S\rT@U<TU@W6W˜@XY~@Z50[`@\0]t|^0_T^`0a4@bd0c"dD0df-f!@h
h@ij@kal|@mCn\@o`0p<@qvB0r%sV$0tu60ukw0wMx0y/z{|Ȱ}n.@~N@        SMT CLT CLST         TZif2                  	   	         	   i$i\PqF q^ww=@A Xp"4P9@gP\ Pn@lɰvP<@     rܰ    uP    @I    U2     +    >O@     
    @        @    	Ѱ    
@    0    @    
0    @    h0        H0    f    (v0    F        &{    t    ]    V    ?    8    \@        >@    p     @     0    !o@    "90    #E    $0    %8     &    &    '١0    (    )½    *צ    +    ,    -    .j    /bc    0@    1BE    2`i@    3=0    4@K@    5D0    6
@    7հ    8 @    80    9+    :0    ;
    <0    =    >j0    ?    @Sʰ    Ah    B3    CH    D    E1@    Ep    G@    G0    Hv@    Io0    JX@    K     L:@    M0    NP    O    PB    Q|    R+@    S\r    T@    U<T    U@    W6    W˜@    X    Y~@    Z50    [`@    \0    ]t|    ^0    _T^    `0    a4@    bd0    c"    dD0    d    f-    f!@    h
    h@    i    j@    ka    l|@    mC    n\@    o`0    p<@    qvB0    r%    sV$0    t    u60    uk    w0    wM    x0    y/    z    {    |Ȱ    }n.@    ~    N@    ~    -@    ^n    
@    G0    @    'm0        O0        10        0    vx    0    VZ        6<    o    Y@    Oհ    ;@    /    @        @    {    @    ؘ0        z0    g    \0    G    x>0    '    X 0        A<    g    !    Є@         f@        H@    İ    p*@        P@    0    /@    i0    
    I0        )i0        	K0        g        I    @    +    a@    
    As@    q    !U@    QѰ    7@    :0    @    0    5    0    Ȫ    ڔ0    ʉ    ˺v0    i    ͚X0    I    σt    2@    cV    @    C8    @    #    Ҁ@        ײb@    0    ْD@    0    {`    ܫ0    [B    ދ0    ;$    k0        K0        4            @    c    @    E    ꃫ@    '    c@    D0    Co@    }&0    ,    ]0    m    <0    O    0    1    0        ܐ0        Ŭ    k        T@    p    4@    eR   @   E4   @   .Q0   |@   30      0   z   	0   
}\   0   ]>   
0   =    vװ      V   @   6   @   }   @   _   @   A   @   ^0   n   @0   N   "0   .    _0   !i   ">0   "K   $(   $-   &   &J@   'ư   (,@   )Ǩ   *w@   +   ,V@   -l   .6@   /p0   0@   1Pk0   1   30M0   3߲   5/0   5   60   7v   8-   9X   :   ;hu@   <   =HW@   >xӰ   ?(9@   @X   A@   B8   B@   D!0   D@   F0   F   Gx0   H   IZ0   Jp   K<0   LP   M0   N0   Oj:   P@   QJ   Q@   S)   Sd@   U	   UF@   V°   W(@   X0   Yy
@   Z0   [b&   \0   ]B   ^r0   _!   `Rg0   a   b2I0   b   de   d   eG   f@   g)   h@   i   jjq@   k   lJS@   m
0   n*5@   oc0   pQ   qC0   q3   s#0   s   u0   u   vt0   w   x̐   yr   zr   {[@   |T   };@   ~l6   @   L   ~@   +   `@   0   |   0   ^   0   @   0   d"   0   D   }   #   ]   
@   =   @   a   @   C   @   %   @   B0   lm@   $0   U   0   5k   e0   M   E0   /   .      Ȱ   .@      @   Ό   }@   n   ]@   P   =@   wm0   @   WO0      710      0   x   0   Z   0   <      f   հ   O;@      /@   _   @   ?{   @   ]   @   z0   Į@   \0   Ɨ   >0   w   ɨ 0   W   ˈ0   7g   g0   I   Q     f@   0   H@   İ   *@      ՠ@   Ј   @   ع0   _@   ڙ0   H   yi0   (   YK0      9-0      0   t   +   V   
   s@      qU@   Ѱ   Q7@   끳   1@   j0   @   J0      *0      
v0      X0      :0   y   V   Y   8   B@   s   "@   R   b@    2ް    D@      &@   0   B   ۿ0   $   0   k   	0   
J   {e0   *   
d   
   Dc   @   $E   ӫ@   '   @   	   o@      sQ@   0   S3@   0   <O   l0   1   L0       ,0       "   "   #   $@   %p   &@   'R   (d@   )4   *D@   +u   ,$|@   -^30   .^@   />0   /z   10   1\   20   3>   4ݻ0   5    60   7m   8   9V@   :   ;6@   <f}   =@   >F_   >@   @&A   @է@   B^0   B@   C@0   D   E"0   F~   G0   H^i   I0   J>K   Kn0   L-   MW   M   O7ư   O,@   Q   Q@   R   S@   Tl   U@   V0   Wf@   Xk0   YO   ZM0   [/   \`/0   ]   ^@0   ^v   `0   `X   b	   b:   c   dW@   eӰ   fx9@   g   hX@   i   j7@   khy   l@   mQ0   m@   o1x0   o   qZ0   q   r<0   s   t0   u   v 0   w`e   x   y@G   zy   {)d@   |Y   }	F@   ~9°   ~(@      
@      @   0      0   q   g0   Q   I0   1   b+0      KG   r   +)   ڏ@      q@      S@   ϰ   z5@      Z@   0   9@   s0   #   S0      3t0      V0   »   r      T   @   6   k@      K~@   {   +`@   [ܰ   B@   D0   $@   $0   @   0   "   0      ā0   s   c0   S      <@   ma   @   MC   @   -%   ܋@   
   m@   $0   O@   0   ąk   ŵ0   eM   Ǖ0   E/   u0   %   U0      >         @   n   ѭ@   P   Ӎ@   Ծ2   m@   ֧O0   Mz@   ؇10   6   g0   x   F0   Z   &0   <   0      հ       Ϸ   @   寙   ^@   {   >@   o]   @   O?   @   8\0      >0   ǣ    0      0   g   0   gI       G+      0H@   `İ   *@   @   @       @     j    @   0   @   i0   x   K0   X   -0   8   	i0   
t   R+   V   
2
   
s@      U@   Ѱ   7@   ѳ   @      `@   0   @@   z0   )   Zv0   	   :X0      :0   ɟ   0       !8   "@   #   $r@   %   &Rb@   'ް   (2D@   )b   *&@   +K0   +@   -+0   -$   /0   /   00   1   2e0   3z   4G0   5Z   6c   7:   8tE   9#@   :T'   ;@   <4	   <o@   >   >Q@   ?0   @3@       LMT SMT CLT CLST           

TZif2                                  B`K@ C{HpPHPPH0P	P9:)``   	
 SDMT EDT EST EHDT AST           TZif2                                  iB`K@     C{        H    pP    H    PP    H    0P        	P    9    :)`x  ` 	 
 LMT SDMT EDT EST EHDT AST             
AST4
TZif2                                  
rI@40t 800ܹY 0ޛ ݚ0T3 Z	0^ d0Q,0 
Ұ0}Ɏ0xנ5 3Ϡ!i0"Ƞ#X#p %7% '!0') 0) *
+k2,0-f .0/F 0y01M2W 3j 48T04 6 06h7ư8 90:,;<o=đ0>N?0@.ҠA0B CQ0C EMSEG0G HIw JڄKLfM`uNHOI Pe0Q 9RcG0S TC)0T8 V#0V X0X Y0Z [\h ]Ͱ^H _`1akbcKsc e+Uedgr0gFhT0ic j60kzE l0mZ' n0o:	 p}q r\r t<ڰtٯ vvˠwx y܀z{ŝ0|bq}0~K a0L   	LMT BRST BRT       TZif2                                  
rI@40t 800ܹY 0ޛ ݚ0T3 Z	0^ d0Q,0 
Ұ0}    Ɏ0    xנ    5     3Ϡ    !i0    "Ƞ    #X    #p     %7    %     '!0    '    ) 0    )     *
    +k2    ,0    -f     .0    /F     0y0    1M    2W     3j     48T0    4     6 0    6h    7ư    8     90    :,    ;    <o    =đ0    >N    ?0    @.Ҡ    A0    B     CQ0    C     EMS    E    G0    G     H    Iw     Jڄ    K    Lf    M`u    NH    OI     Pe0    Q 9    RcG0    S     TC)0    T8     V#0    V     X0    X     Y0    Z     [    \h     ]Ͱ    ^H     _    `1    ak    b    cKs    c     e+U    ed    gr0    gF    hT0    ic     j60    kzE     l0    mZ'     n0    o:	     p}    q     r\    r     t<ڰ    tٯ     v    vˠ    w    x     y܀    z    {ŝ0    |bq    }0    ~K     a0    +p     eC0L   	LMT BRST BRT       
BRT3BRST,M10.3.0/0,M2.3.0/0
TZif2                            u      LMn@4$#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~yh     
        LMT CGT CGST EGT EGST         TZif2                            u      L    Mn@    4$    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    h     
        LMT CGT CGST EGT EGST         
EGT1EGST,M3.5.0/0,M10.5.0/1
TZif2                                  ˉ#pa&G * ) x q(a'Q
A	0C	ΐ	 
௠
  ysir YUIT 97)6 "S	 5+B%$ v90!ˠ"V0#j $50%J &0'* ')
 )ݰ*p +,ӌ-.n/~0P1g02s23G04S5'd0627F08 8(09 :
0; <&= >? @oABO̰CdD/ED{E0G- G0I
z I0J\ KLxM|NZO\P<Q<gRvSITV T+V5VH0X X*0Y Z0[ \0] ^d0_ `Mab-ΰcgd
eGge풰g'Igti+iVj
ks0l* mvU0n oV70p q60ro s0tO tv8Πvxx۰yz{t|~}V~^8                 p p PST PWT PPT PDT YST AKDT AKST             TZif2                  
   
          
   &?Y}3ˉ#pa&G *     )         x     q(    a'    Q
    A	    0    C    	ΐ    	     
    ௠        
                      ys    ir     YU    IT     97    )6     "S    	     5    +    B    %    $                 v90    !ˠ    "V0    #j     $50    %J     &0    '*     '    )
     )ݰ    *p     +    ,ӌ    -    .n    /~    0P    1g0    2s2    3G0    4S    5'd0    62    7F0    8     8(0    9     :
0    ;     <&    =     >    ?     @o    A    BO̰    Cd    D/    ED{    E0    G-     G0    I
z     I0    J\     K    Lx    M|    NZ    O\    P<    Q<g    Rv    SI    TV     T+    V5    VH0    X     X*0    Y     Z0    [     \0    ]     ^d0    _     `M    a    b-ΰ    cg    d
    eGg    e풰    g'I    gt    i+    iV    j
    ks0    l*     mvU0    n     oV70    p     q60    ro     s0    tO     t    v8Π    v    x    x۰    y    z    {t    |~    }V    ~^    8																																																							  ҧ  '   p p !LMT PST PWT PPT PDT YST YDT AKDT AKST                   
AKST9AKDT,M3.2.0,M11.1.0
TZif2                                  b~|ܡ8L\Lt\dL^ܧDL=ܩ$LܫLܬfLݟܮ̯͂ܰḏ\F̳\m(̵fb\M
̷FD\,̹&&\	LBܻL$ܽLMl18y8YѨw89a@( ո( #p`ӈDJHh&)HH	H'HXtXݩmH޾VX߉OH8Xi1H~XIH]X(HG&챷ƠHﯽXHXHoX_dHOcX?FH/EX(b'XDC&% wpH`XPH@X0H X	H
 X
qHpXٍ
RXonQPy3i2YI8("HHXHXHXH u!bd"U#jp$5%J`&u'*B't)
$)tt*+Vt,#d-8t.d/~t0d1g62rd3G4Rd5&62d7889:Ơ;m<t=O>t?1@otANdBOctCd0dD/EtEDdEwG-.GYI
I;JKXtLdM|:tN
HO\8XPHQ<XRuHSXTUHTXV5HVXXYZ[u\]W^d_9`MXaVHb-Xcg8Hd
cXeGHeEXg&Hg'XiHi	XjHk%lmvnoUpq5rostOdtXv8HvެXxcHxXyEHzpX{'H|~RX}	H~^4XH                  ܤ Δ   NDT NST NPT NWT NDDT             TZif2                                  ^=4b~|8L\Lt\dL^DL=$LLfLݟ͂d\F\m(fb\M
FD\,&&\	LBL$LMl18y8YѨw89a@( ո( #p`ӈDJHh&)HH	H'HXtXݩmH޾VX߉OH8Xi1H~XIH]X(HG&챷ƠHﯽXHXHoX_dHOcX?FH/EX(b'XDC&%             w    pH    `X    PH    @X    0H     X    	H    
 X    
qH    pX    ٍ    
RX    o    n    Q    P    y3    i2    Y    I    8    (    "H        H    X    H    X    H    X    H     u    !bd    "U    #jp    $5    %J`    &u    '*B    't    )
$    )tt    *    +Vt    ,#d    -8t    .d    /~t    0d    1g6    2rd    3G    4Rd    5&    62d    7    8    8    9    :Ơ    ;m    <t    =O    >t    ?1    @ot    ANd    BOct    Cd0d    D/Et    EDd    Ew    G-.    GY    I
    I;    J    KXt    Ld    M|:t    N
H    O\8X    PH    Q<X    RuH    SX    TUH    TX    V5H    V    X    X    Y    Z    [u    \    ]W    ^d    _9    `MX    aVH    b-X    cg8H    d
cX    eGH    eEX    g&H    g'X    iH    i	X    jH    k%    l    mv    n    oU    p    q5    ro    s    tOd    tX    v8H    vެX    xcH    xX    yEH    zpX    {'H    |~RX    }	H    ~^4X    HΔ  ܤΔ  LMT NDT NST NPT NWT NDDT               
NST3:30NDT,M3.2.0,M11.1.0
TZif2                                  ˉ#pa vSo U  5   ',   q a    LMT MDT MST MWT MPT CST           TZif2                                  ˉ#pa vSo U  5   ',   q     a    LMT MDT MST MWT MPT CST           
CST6
TZif2                                  LKD !\P"z#<}PD]D<   LMT CDT CST       TZif2                                  LKD         !\P    "z    #<}P    D]    D<   LMT CDT CST       
CST6
TZif2                            _      w'z(])\*?+y`,FP-[`.(P/~=`0
P1gY2rP3G;4RP5'62P7889:;ې<`=r>`?T@o`AqPBO`CdSPD/h`ED5PEG-QG|I
3I^JK{`L2PM|]`NPO\?`PPQ<!`RuPS`TUPT`V5PVXXYZ[|\]^^d_@`M`a]Pb-`cg?Pd
j`eG!PeL`g'Pg.`iPi`jPk,lmvnoUpq5rostOkt`v8Pv޳`xjPx`yLPzw`{.P|~Y`}P~^;`P   LMT ADT AST       TZif2                            _      w    'z    (]    )\    *?    +y`    ,FP    -[`    .(P    /~=`    0
P    1gY    2rP    3G;    4RP    5'    62P    7    8    8    9    :    ;ې    <`    =r    >`    ?T    @o`    AqP    BO`    CdSP    D/h`    ED5P    E    G-Q    G|    I
3    I^    J    K{`    L2P    M|]`    NP    O\?`    PP    Q<!`    RuP    S`    TUP    T`    V5P    V    X    X    Y    Z    [|    \    ]^    ^d    _@    `M`    a]P    b-`    cg?P    d
j`    eG!P    eL`    g'P    g.`    iP    i`    jP    k,    l    mv    n    oU    p    q5    ro    s    tOk    t`    v8P    v޳`    xjP    x`    yLP    zw`    {.P    |~Y`    }P    ~^;`    P   LMT ADT AST       
AST4ADT,M3.2.0,M11.1.0
TZif2                                  ${ˈp#p` wp``pP` p	`
 p
`p٢
gpfeyHiGY*I)9)")``
p`p`p` v !`"U#j$5%J&'*s'p)
U)ޥp*7+p,T`-ip.6`/~Kp0`1gg2r`3GI4R`5'+62`7
889:;۞<p=>p?b@opA`BOpCda`D/vpEDC`EG-_GӊI
AIlJ#KpL@`M|kpN"`O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `   CST EST EWT EPT EDT         TZif2                                  r,${ˈp#p`             w    p`    `p    P`     p    	`    
 p    
`    p    ٢    
gp            f    e    yH    iG    Y*    I)    9    )    ")`        `    
p    `    p    `    p    `     v     !`    "U    #j    $5    %J    &    '*s    'p    )
U    )ޥp    *7    +p    ,T`    -ip    .6`    /~Kp    0`    1gg    2r`    3GI    4R`    5'+    62`    7
    8    8    9    :    ;۞    <p    =    >p    ?b    @op    A`    BOp    Cda`    D/vp    EDC`    E    G-_    Gӊ    I
A    Il    J#    Kp    L@`    M|kp    N"`    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `T    LMT CST EST EWT EPT EDT           
EST5EDT,M3.2.0,M11.1.0
TZif2                                  yOp|fdp 
ꍀ#pҙpY ؑ~YIR^;)4GX Q': 3   ௠
  ysir YUIT 97)6 "S	 54ې v+ !"V
 #j$5 %J& '*')
)Ϡ*b+,~-.`/~u0B1g 2s$3Gt 4S5'V 6278 88 9: ;<=>?@oܠABOCdD/EDmFG$OG I1I؁ JKLjM|NLO\wP.Q<YRvS;TUTV5ԐV: XX YZ [޵\ ]^d _y`Mޠab-cgwd
eGYe턠g';gfiiHjke lmvG noV) pq6 ros tOt	v8vxx͠yz{f|~}H~^s*L    LMT MST PST PDT PWT PPT           TZif2                                  yOp|fdp 
ꍀ#pҙpY ؑ~YIR^;)4GX Q': 3       ௠        
                      ys    ir     YU    IT     97    )6     "S    	     5    4                    ې     v+     !    "V
     #j    $5     %J    &     '*    '    )
    )Ϡ    *b    +    ,~    -    .`    /~u    0B    1g     2s$    3Gt     4S    5'V     62    78     8    8     9    :     ;    <    =    >    ?    @oܠ    A    BO    Cd    D/    EDm    F    G$O    G     I1    I؁     J    K    Lj    M|    NL    O\w    P.    Q<Y    Rv    S;    TU    T    V5Ԑ    V:     X    X     Y    Z     [޵    \     ]    ^d     _y    `Mޠ    a    b-    cgw    d
    eGY    e턠    g';    gf    i    iH    j    ke     l    mvG     n    oV)     p    q6     ro    s     tO    t	    v8    v    x    x͠    y    z    {f    |~    }H    ~^s    *L    LMT MST PST PDT PWT PPT           
PST8PDT,M3.2.0,M11.1.0
TZif2                                  p`.ȡ@U@](x`f?NF!0pM`p/`܍p`op~-౜QpgJ`|3pG,`\p'`;p`%`Ĺ𿏲o}Ovd_/XM|p:-^pˈp#p`u@U 5 n3v@pt`މpݩ`޾kp߉d`MpiF`~/pI(`^p)
`G-&'ֶƵ`p`p`op_y`Oxp?[`/Zp(w<pYX;: wp``pP`@p0` p	`
 p
`p٢
gpfeyHiGY*I)9)")``
p`p`p` v !`"U#j$5%J&'*s'p)
U)ޥp*7+p,T`-ip.6`/~Kp0`1gg2r`3GI4R`5'+62`7
889:;۞<p=>p?b@opA`BOpCda`D/vpEDC`EG-_GӊI
AIlJ#KpL@`M|kpN"`O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `                                                                                                                     EDT EST EWT EPT       TZif2                                  rxp`.@U@](x`f?NF!0pM`p/`܍p`op~-QpgJ`|3pG,`\p'`;p`%`Ĺo}Ovd_/XM|p:-^pˈp#p`u@U 5 n3v@pt`މpݩ`޾kp߉d`MpiF`~/pI(`^p)
`G-&'ֶƵ`p`p`op_y`Oxp?[`/Zp(w<pYX;:             w    p`    `p    P`    @p    0`     p    	`    
 p    
`    p    ٢    
gp            f    e    yH    iG    Y*    I)    9    )    ")`        `    
p    `    p    `    p    `     v     !`    "U    #j    $5    %J    &    '*s    'p    )
U    )ޥp    *7    +p    ,T`    -ip    .6`    /~Kp    0`    1gg    2r`    3GI    4R`    5'+    62`    7
    8    8    9    :    ;۞    <p    =    >p    ?b    @op    A`    BOp    Cda`    D/vp    EDC`    E    G-_    Gӊ    I
A    Il    J#    Kp    L@`    M|kp    N"`    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `   LMT EDT EST EWT EPT         
EST5EDT,M3.2.0,M11.1.0
TZif2                                  ˉ#pa&v S}U  5   Ѡ޳ݩ޾߉wip~YIR^;)4GX Q': 3   qޠo_O?/(f fe HG * ) x q(a'Q
A	0 	ΐ
 ͠
௠
  ysir YUIT 97)6 "S	 54ې v+ !"V
 #j$5 %J& '*')
)Ϡ*b+,~-.`/~u0B1g 2s$3Gt 4S5'V 6278 88 9: ;<=>?@oܠABOCdD/EDmE G-Gӵ I
lI JNKLjM|NLO\wP.Q<YRvS;TUTV5ԐV: XX YZ [޵\ ]^d _y`Mޠab-cgwd
eGYe턠g';gfiiHjke lmvG noV) pq6 ros tOt	v8vxx͠yz{f|~}H~^s*                                                                                               PDT PST PWT PPT       TZif2                                  ^=vˉ#pa&v S}U  5   Ѡ޳ݩ޾߉wip~YIR^;)4GX Q': 3   qޠo_O?/(f fe HG *     )         x     q(    a'    Q
    A	    0         	ΐ    
 ͠    
    ௠        
                      ys    ir     YU    IT     97    )6     "S    	     5    4                    ې     v+     !    "V
     #j    $5     %J    &     '*    '    )
    )Ϡ    *b    +    ,~    -    .`    /~u    0B    1g     2s$    3Gt     4S    5'V     62    78     8    8     9    :     ;    <    =    >    ?    @oܠ    A    BO    Cd    D/    EDm    E     G-    Gӵ     I
l    I     JN    K    Lj    M|    NL    O\w    P.    Q<Y    Rv    S;    TU    T    V5Ԑ    V:     X    X     Y    Z     [޵    \     ]    ^d     _y    `Mޠ    a    b-    cgw    d
    eGY    e턠    g';    gf    i    iH    j    ke     l    mvG     n    oV)     p    q6     ro    s     tO    t	    v8    v    x    x͠    y    z    {f    |~    }H    ~^s    *   LMT PDT PST PWT PPT         
PST8PDT,M3.2.0,M11.1.0
TZif2                            ~      ˰#Ҁˉ(#pa4 /v(iir YUIT 97)6 "S	 54ې v+ !"V
 #j$5 %J& '*')
)Ϡ*b+,~-.`/~u0B1g 2s$3Gt 4S5'V 6278 88 9: ;<=>?@oܠABOCdD/EDmE G-Gӵ I
lI JNKLjM|NLO\wP.Q<YRvS;TUTV5ԐV: XX YZ [޵\ ]^d _y`Mޠab-cgwd
eGYe턠g';gfiiHjke lmvG noV) pq6 ros tOt	v8vxx͠yz{f|~}H~^s*   p  YDT YST YWT YPT YDDT PST PDT             TZif2                                  !}˰#Ҁˉ(#pa4 /v(i    ir     YU    IT     97    )6     "S    	     5    4                    ې     v+     !    "V
     #j    $5     %J    &     '*    '    )
    )Ϡ    *b    +    ,~    -    .`    /~u    0B    1g     2s$    3Gt     4S    5'V     62    78     8    8     9    :     ;    <    =    >    ?    @oܠ    A    BO    Cd    D/    EDm    E     G-    Gӵ     I
l    I     JN    K    Lj    M|    NL    O\w    P.    Q<Y    Rv    S;    TU    T    V5Ԑ    V:     X    X     Y    Z     [޵    \     ]    ^d     _y    `Mޠ    a    b-    cgw    d
    eGY    e턠    g';    gf    i    iH    j    ke     l    mvG     n    oV)     p    q6     ro    s     tO    t	    v8    v    x    x͠    y    z    {f    |~    }H    ~^s    *d  p  LMT YDT YST YWT YPT YDDT PST PDT               
PST8PDT,M3.2.0,M11.1.0
TZif2                                  úPp ;Oˈ#pa	ӈh S`U  5     \ޗݩp޾y߉rp[iTp~=I6p^)pG< 4'     o1bJv g X I : +   
  w qaP@0ހ π	
 
ٿ 
u   t ye iV YG I8 9) ) "E '	܀̀ v !"U #j $5 %J & '* 'р)
r )޳*T +,p-w.R/~Y041gv 2s3GX 4R5': 62ڀ7 8 8 9 : ;ۻ <= >ހ? @oABOCd}CoD/EDQpE G-mGә I
OI{ J1KLNpM|yN0pO\[PpQ<=RupSTUpTV5pV XX  YZ [ޘ\ ]z^d _\`Maypb-cg[pd
eG=pehg'pgJipi,jpkI lmv+ noV
 pq5 ros tOtv8pvπxpxyhpz{Jp|~u},p~^Wp                                                       CDT CST CWT CPT         TZif2                                  d䰔úPp ;Oˈ#pa	ӈh S`U  5     \ޗݩp޾y߉rp[iTp~=I6p^)pG< 4'     o1bJv g X I : +       
          w     q    a    P    @    0ހ     π    	    
     
        ٿ     
u                   t     ye     iV     YG     I8     9)     )     "E         '        	            ܀    ̀     v     !    "U     #j     $5     %J     &     '*     'р    )
r     )޳    *T     +    ,p    -w    .R    /~Y    04    1gv     2s    3GX     4R    5':     62ڀ    7     8     8     9     :     ;ۻ     <    =     >ހ    ?     @o    A    BO    Cd}    Co    D/    EDQp    E     G-m    Gә     I
O    I{     J1    K    LNp    M|y    N0p    O\[    Pp    Q<=    Rup    S    TUp    T    V5p    V     X    X      Y    Z     [ޘ    \     ]z    ^d     _\    `M    ayp    b-    cg[p    d
    eG=p    eh    g'p    gJ    ip    i,    jp    kI     l    mv+     n    oV
     p    q5     ro    s     tO    t    v8p    vπ    xp    x    yhp    z    {Jp    |~u    },p    ~^W    p    LMT CDT CST CWT CPT           
CST6CDT,M3.2.0,M11.1.0
TZif2                                  ˉ(#pa4 U08  70 x0q6a5QA0Q	ܠ	0
཰ 
 0 0y i0Yc Ib09E )D0"a	&0C+B%$ v90!ˠ"V0#j $50%J &0'* ')
 )ݰ*p +,ӌ-.n/~0P1g02s23G04S5'd0627F08 8(09 :
0; <&= >? @oABO̰CdD/ED{E0G- G0I
z I0J\ KLxM|NZO\P<Q<gRvSITV T+V5VH0X X*0Y Z0[ \0] ^d0_ `Mab-ΰcgd
eGge풰g'Igti+iVj
ks0l* mvU0n oV70p q60ro s0tO tv8Πvxx۰yz{t|~}V~^8                p  p YST YWT YPT YDT AKDT AKST           TZif2                                  ?}7ˉ(#pa4 U08      70         x0    q6    a5    Q    A    0    Q    	ܠ    	0    
    ཰         
         0         0    y     i0    Yc     Ib0    9E     )D0    "a    	&0    C    +    B    %    $                 v90    !ˠ    "V0    #j     $50    %J     &0    '*     '    )
     )ݰ    *p     +    ,ӌ    -    .n    /~    0P    1g0    2s2    3G0    4S    5'd0    62    7F0    8     8(0    9     :
0    ;     <&    =     >    ?     @o    A    BO̰    Cd    D/    ED{    E0    G-     G0    I
z     I0    J\     K    Lx    M|    NZ    O\    P<    Q<g    Rv    SI    TV     T+    V5    VH0    X     X*0    Y     Z0    [     \0    ]     ^d0    _     `M    a    b-ΰ    cg    d
    eGg    e풰    g'I    gt    i+    iV    j
    ks0    l*     mvU0    n     oV70    p     q60    ro     s0    tO     t    v8Π    v    x    x۰    y    z    {t    |~    }V    ~^    8  ΁  }  p p LMT YST YWT YPT YDT AKDT AKST               
AKST9AKDT,M3.2.0,M11.1.0
TZif2                            z      * ˉ#pa /Zp(idYG IF9) )("E	
'&	̀ v!"U#j $5%J &'* 'ߐ)
r )*T +,p-.R/~g041g2s3Gf4R5'H62ڀ7*8 89 :;ۻ <
= >? @oΐABOCd}D/ED_EG-| GӧI
^ IJ@ KL\M|N>O\iP Q<KRvS-TUTV5ƀV,X XY Z[ާ \] ^d_k `MАab-cgid
eGKevg'-gXii:jkWl mv9n oVp q5ro stO tv8vݐxxyvz{X|~}:~^e       zzz MWT MPT MST MDDT MDT           TZif2                            z      * ˉ#pa /Zp(    id    YG     IF    9)     )(    "E    	
    '    &    	                ̀     v    !    "U    #j     $5    %J     &    '*     'ߐ    )
r     )    *T     +    ,p    -    .R    /~g    04    1g    2s    3Gf    4R    5'H    62ڀ    7*    8     8    9     :    ;ۻ     <
    =     >    ?     @oΐ    A    BO    Cd}    D/    ED_    E    G-|     Gӧ    I
^     I    J@     K    L\    M|    N>    O\i    P     Q<K    Rv    S-    TU    T    V5ƀ    V,    X     X    Y     Z    [ާ     \    ]     ^d    _k     `MА    a    b-    cgi    d
    eGK    ev    g'-    gX    i    i:    j    kW    l     mv9    n     oV    p     q5    ro     s    tO     t    v8    vݐ    x    x    yv    z    {X    |~    }:    ~^e           zzz MWT MPT MST MDDT MDT           
MST7MDT,M3.2.0,M11.1.0
TZif2                                  
̀J KN OC͐        p      p zzz WST CAST       TZif2                                  
̀    J     K    N     OC͐        p      p zzz WST CAST       
WST-8
TZif2                                  	@ GG J0K@N0OC         bp   FP   bp zzz DAVT       TZif2                                  	@ GG     J0    K@    N0    OC         bp   FP   bp zzz DAVT       
DAVT-7
TZif2                                  
Լv4``<             zzz PMT DDUT       TZif2                                  
Լv4``<             zzz PMT DDUT       
DDUT-10
TZif2                            Z      
x 𠇴`h  ~ Y v;  V ? p9
 P8/	߀	
  
~  ^  > x  Xf  8H O !d1 Fc(E
g'  Y~!΀"B #i $"} %I &_ ') ' ()Ԙ *À+z ,-\ ./t> 0mi1]Z2V 3=<46h 56J 6 7, 89:Ā;*< => ?~@e A^ЀBE C>D.EFK G G H Iׄ Ju Kf                         EST zzz MIST          TZif2                            [      
| x `h  ~ Y v;      V         ?     p9    
     P    8    /        	߀    	    
              
~          ^          >     x          Xf          8H     O     !d    1     F    c    (    E    
    g'          Y~    !΀    "B     #i     $"}     %I     &_     ')     '     (    )Ԙ     *À    +z     ,    -\     .    /t>     0mi    1]Z    2V     3=<    46h     5    6J     6     7,     8    9    :Ā    ;*    <     =    >     ?~    @e     A^Ѐ    BE     C>    D.    E    FK     G     G     H     Iׄ     Ju     Kf                          zzz EST MIST            
MIST-11
TZif2                                  	 2J"@        T`   FP zzz MAWT       TZif2                                  	 2    J"@        T`   FP zzz MAWT       
MAWT-5
TZif2                            }       柰C0w@65S0R@504@J$o0]V?8\@>@p @ 0!o@"90#E$0%8 &&'١0()½*צ+,-.j/bc0@1BE2`i@3=04@K@5D06
@7հ8 @809+:0;
<0=>j0?@SʰAhB3CHDE1@EpG@G0Hv@Io0JX@K L:@M0NPOPBQ|R+@S\rT@U<TU@W6W˜@XY~@Z50[`@\0]t|^0_T^`0a4@bd0c"dD0df-f!@h
h@ij@kal|@mCn\@o`0p<@qvB0r%sV$0tu60ukw0wMx0y/z{|Ȱ}n.@~N@        
  zzz ART ARST CLST CLT             TZif2                           k       柰C0w@65S0R@504@    J    $o    0    ]    V    ?    8    \@        >@    p     @     0    !o@    "90    #E    $0    %8     &    &    '١0    (    )½    *צ    +    ,    -    .j    /bc    0@    1BE    2`i@    3=0    4@K@    5D0    6
@    7հ    8 @    80    9+    :0    ;
    <0    =    >j0    ?    @Sʰ    Ah    B3    CH    D    E1@    Ep    G@    G0    Hv@    Io0    JX@    K     L:@    M0    NP    O    PB    Q|    R+@    S\r    T@    U<T    U@    W6    W˜@    X    Y~@    Z50    [`@    \0    ]t|    ^0    _T^    `0    a4@    bd0    c"    dD0    d    f-    f!@    h
    h@    i    j@    ka    l|@    mC    n\@    o`0    p<@    qvB0    r%    sV$0    t    u60    uk    w0    wM    x0    y/    z    {    |Ȱ    }n.@    ~    N@    ~    -@    ^n    
@    G0    @    'm0        O0        10        0    vx    0    VZ        6<    o    Y@    Oհ    ;@    /    @        @    {    @    ؘ0        z0    g    \0    G    x>0    '    X 0        A<    g    !    Є@         f@        H@    İ    p*@        P@    0    /@    i0    
    I0        )i0        	K0        g        I    @    +    a@    
    As@    q    !U@    QѰ    7@    :0    @    0    5    0    Ȫ    ڔ0    ʉ    ˺v0    i    ͚X0    I    σt    2@    cV    @    C8    @    #    Ҁ@        ײb@    0    ْD@    0    {`    ܫ0    [B    ދ0    ;$    k0        K0        4            @    c    @    E    ꃫ@    '    c@    D0    Co@    }&0    ,    ]0    m    <0    O    0    1    0        ܐ0        Ŭ    k        T@    p    4@    eR   @   E4   @   .Q0   |@   30      0   z   	0   
}\   0   ]>   
0   =    vװ      V   @   6   @   }   @   _   @   A   @   ^0   n   @0   N   "0   .    _0   !i   ">0   "K   $(   $-   &   &J@   'ư   (,@   )Ǩ   *w@   +   ,V@   -l   .6@   /p0   0@   1Pk0   1   30M0   3߲   5/0   5   60   7v   8-   9X   :   ;hu@   <   =HW@   >xӰ   ?(9@   @X   A@   B8   B@   D!0   D@   F0   F   Gx0   H   IZ0   Jp   K<0   LP   M0   N0   Oj:   P@   QJ   Q@   S)   Sd@   U	   UF@   V°   W(@   X0   Yy
@   Z0   [b&   \0   ]B   ^r0   _!   `Rg0   a   b2I0   b   de   d   eG   f@   g)   h@   i   jjq@   k   lJS@   m
0   n*5@   oc0   pQ   qC0   q3   s#0   s   u0   u   vt0   w   x̐   yr   zr   {[@   |T   };@   ~l6   @   L   ~@   +   `@   0   |   0   ^   0   @   0   d"   0   D   }   #   ]   
@   =   @   a   @   C   @   %   @   B0   lm@   $0   U   0   5k   e0   M   E0   /   .      Ȱ   .@      @   Ό   }@   n   ]@   P   =@   wm0   @   WO0      710      0   x   0   Z   0   <      f   հ   O;@      /@   _   @   ?{   @   ]   @   z0   Į@   \0   Ɨ   >0   w   ɨ 0   W   ˈ0   7g   g0   I   Q     f@   0   H@   İ   *@      ՠ@   Ј   @   ع0   _@   ڙ0   H   yi0   (   YK0      9-0      0   t   +   V   
   s@      qU@   Ѱ   Q7@   끳   1@   j0   @   J0      *0      
v0      X0      :0   y   V   Y   8   B@   s   "@   R   b@    2ް    D@      &@   0   B   ۿ0   $   0   k   	0   
J   {e0   *   
d   
   Dc   @   $E   ӫ@   '   @   	   o@      sQ@   0   S3@   0   <O   l0   1   L0       ,0       "   "   #   $@   %p   &@   'R   (d@   )4   *D@   +u   ,$|@   -^30   .^@   />0   /z   10   1\   20   3>   4ݻ0   5    60   7m   8   9V@   :   ;6@   <f}   =@   >F_   >@   @&A   @է@   B^0   B@   C@0   D   E"0   F~   G0   H^i   I0   J>K   Kn0   L-   MW   M   O7ư   O,@   Q   Q@   R   S@   Tl   U@   V0   Wf@   Xk0   YO   ZM0   [/   \`/0   ]   ^@0   ^v   `0   `X   b	   b:   c   dW@   eӰ   fx9@   g   hX@   i   j7@   khy   l@   mQ0   m@   o1x0   o   qZ0   q   r<0   s   t0   u   v 0   w`e   x   y@G   zy   {)d@   |Y   }	F@   ~9°   ~(@      
@      @   0      0   q   g0   Q   I0   1   b+0      KG   r   +)   ڏ@      q@      S@   ϰ   z5@      Z@   0   9@   s0   #   S0      3t0      V0   »   r      T   @   6   k@      K~@   {   +`@   [ܰ   B@   D0   $@   $0   @   0   "   0      ā0   s   c0   S      <@   ma   @   MC   @   -%   ܋@   
   m@   $0   O@   0   ąk   ŵ0   eM   Ǖ0   E/   u0   %   U0      >         @   n   ѭ@   P   Ӎ@   Ծ2   m@   ֧O0   Mz@   ؇10   6   g0   x   F0   Z   &0   <   0      հ       Ϸ   @   寙   ^@   {   >@   o]   @   O?   @   8\0      >0   ǣ    0      0   g   0   gI       G+      0H@   `İ   *@   @   @       @     j    @   0   @   i0   x   K0   X   -0   8   	i0   
t   R+   V   
2
   
s@      U@   Ѱ   7@   ѳ   @      `@   0   @@   z0   )   Zv0   	   :X0      :0   ɟ   0       !8   "@   #   $r@   %   &Rb@   'ް   (2D@   )b   *&@   +K0   +@   -+0   -$   /0   /   00   1   2e0   3z   4G0   5Z   6c   7:   8tE   9#@   :T'   ;@   <4	   <o@   >   >Q@   ?0   @3@        
  zzz ART ARST CLST CLT             

TZif2                                  	
-        zzz ROTT     TZif2                                  	    
-        zzz ROTT     
ROTT3
TZif2                                  	X         *0 zzz SYOT     TZif2                                  	X         *0 zzz SYOT     
SYOT-3
TZif2                                  	X        T` zzz VOST     TZif2                                  	X        T` zzz VOST     
VOST-6
TZif2                                  a8V  **    *0 LMT AST     TZif2                                  a8V  **    *0 LMT AST     
AST-3
TZif2                            2      {ܵ0'} ivgXI|: l+!\"L
#;$+%&'@'|)Ԧ*ĉ +@,@-@.@/tv@0dg@1]2rm3=t4RO5V621688N@890@:;@<@=@>@?@@e@AB5   H$    FP   bp	  T`   T`   bp	LMT ALMT ALMST           TZif2                            2      {0    '}                         i    v    g    X    I    |:     l+    !\    "L
    #;    $+    %    &    '@    '|    )Ԧ    *ĉ     +@    ,@    -@    .@    /tv@    0dg@    1]    2rm    3=t    4RO    5V    621    68    8N@    8    90@    :    ;@    <@    =@    >@    ?@    @e@    A    B5   H$    FP   bp	  T`   T`   bp	LMT ALMT ALMST           
ALMT-6
TZif2                            u      
ryP$7`
j
Pu
#``r`	`P r`!bP"R`#K$d`%+&7o`'(s(JP)`*f+e,H-G.x/d`0X1dF`2A`3D(`4!`5$
`6`7z`78|9ӿ`:^;`<`=`>t`?O`@cV`AnBLrC<cD,TEA/F6G!GI
.`IJ`KL`M`N`Ot`R^PS4`TRU`V2VXxXYZZa[<\C]^}%_;``]a{`bF$`cZ`d&`e:`f`g`g`iiŬ`jk`lãmnonpgqNnrcIs.PtLf`u2v,H`vO`x*`x1`y`z`{`|`}
~v`  !    *0    	    	  *0LMT EEST EET         TZif2                           g      
    ry    P    $7`        
j    
P        u    
#`        `    r    `    	    `    P     r`    !bP    "R`    #K    $d`    %+    &7o`    '    (s    (JP    )`    *f    +e    ,H    -G    .x    /d`    0X    1dF`    2A`    3D(`    4!`    5$
`    6`    7z`    7    8|    9ӿ`    :^    ;`    <`    =`    >t`    ?O`    @cV`    An    BLr    C<c    D,T    EA/    F6    G!    G    I
.`    I    J`    K    L`    M`    N`    Ot`    R^P    S4`    TR    U`    V2    V    Xx    X    YZ    Za    [<    \C    ]    ^}%    _;`    `]    a{`    bF$`    cZ`    d&`    e:`    f`    g`    g`    i    iŬ`    j    k`    lã    m    n    on    pg    qNn    rcI    s.P    tLf`    u2    v,H`    vO`    x*`    x1`    y`    z`    {`    |`    }
    ~v`        V`    t    ?    T        4        t    {    `    ]    s`    z`    U`    \`    7`    h>`    }`    H `    \`    (`    F    `    %                         ş        `    p    `    Pj    n`    9`    Nb`    i`    .D`    K`    &`    -`    B    `    $    +        
        a    v    A    _`    !    ?`        `    `    `    ʔ`    o`    v`    Q`    X`    m    j:`    O    SV    h1    38    H        '                `    ɲ    `    ˛`    ̰`    {`    ΐ`    [`    p|`    ;`    Y    e`    9z    G`    \    c    >    E         ڤ'    ۹    ܄	    ݢ`    c    ߂`    M`    a`    ,`    A`    `    !`    `    
    ̐`        r`    ʇ    땎    i    up    K    UR    j-    54    SJ`        3,`        `    `    `    `    `    `    `    }`        ]`    {    =`   [   &   ;v   }   X   _   :   A   W`   	#   
9`   @`   `   
o"`   `   O`   c`   .`   C`   `   ,   `               ̃      e   wl   `   WN   ud`    70   !UF`   " M`   #5(`   $ /`   %
`   %`   &`   '`   (   )`   *   +   ,   -h   .}   /H   0]   1(   2F`   3y   4&`   4[   6q`   6x`   7S`   8Z`   95`   :<`   ;`   <q`   =3   >Q `   ?o   @:   AN   B   C.   C   E   E   F   G   H׺`   I   J`   K`   L~`   Mb`   Nw``   OBg`   PWB`   Q"I`   R@^   S+`   T @   T
`   V "   V)   W   X   Y   Z   [   \j   ]`   ^J   _h`   `3`   aH`   b`   c(`   c`   em`   et`   f   gV`   hk   i8`   jM   k|T   l/   m\6   nq   o<   pP   q   r:`   r   t`   t`   u`   v`   wٶ`   x`   y`   z`   {z`   |d`   }   ~Dc`   bx   -   BZ   
a   "<   C      %   ;`      `      `   v`   `   U`   j`   5`   J`   `   3   `      ު         g   n   I   ~P   f`   ^2   |H`   >   \*`   '1`   <`   `   `   `   `   `      `            o      O   dt   /{   DV   ]   -s`   ?   
U`   !   7`   >`   `    `   `   x`   `   W`   u   7`   U       5                   c   Ǡj   Ⱦ`   ɀL   ʞb`   ii`   ~D`   IK`   ^&`   )-`   >`   	`   '$   `      `      ֱ      ؑ   ٦   q   ۆ   Q   o`   1w   O`   `   /o`   v`   Q`   X`   3`   :`   O   `   1   y`      c   w   B   W   "   7       `       `   ˿`   `   `   |`   `   ^`   ke`   @`   KG`   i\   +)`   I>    E   )    '   	   	         `      `   	s   
`   \`   q`   
<`   Q`   `   1k`   r`      T`   i   p   K   R   -   4      e   ,`   D   c`   $   B`    
`   !"`   !`   #`   #ͻ`   $`   %`   &˲   '`   (   )v   *v   +V}   ,kX   -6_   .K:   /A   0+   0#   29`   2   3`   4"`   5`   6`   7`   8~`   9`   :^`   ;|   <>`   =\   >`   ?<   @   A   A   Be   Cl   DG   EN   Fd`   G0   HF`   IpM`   J(`   KP/`   Le
`   M0`   ND`   O`   P.   P`   R
   RϷ`   S   T   Uͮ   V   W   Xx   Yr   ZXy   [v`   \8[   ]Vq`   ^!x`   _6S`   `Z`   a5`   a<`   b`   c`   d`   e `   f   g`   h   ii   j~   kI   l^   m)   n>   o	   p   p   r`   rh   s~`   t`   u``   vg`   wB`   xrI`   y$`   zR+`   {g`   |2
`   }P"   ~`   0                  Ϫ      `   z   `   Zu   x`   C`   Xm`   #t`   8O`   V`   1`   8`   M   `   /   6            k      K   i`   +   I`      )`   `   	`   ԟ`   z`   `   \`   c`   x   tE`   Z   ]a   r<   =C   R   %   2             `      `   `   `   `   `   e`   z`   E`   c   %p`   C   R`   #g   n   I   P   +   î2   
   Ŏ   Ƭ*`   m   Ȍ`   W`   k`   6`   K`   `   +`   `      ֛`      Ҷ}`   Ԓ   ԟ   մt   {   הV   _]   t8   ??   ]U`   !   =7`   >`   `    `   `   `   `   `   伿`   `      g`   腽   P   e   0   E      %c   j   `   L   b`   .   D`   K`   &`   y-`   `   Y`   m`   8`   W   `   6                   ֎      `   w   `   aY   o`   	Jv`   
_Q`   *X`   ?3`   
:`   `   `   1   `                  r      R   g   2   P`      0`   `   |`   ۃ`    ^`   !e`   "@`   #G`   $\   %{)`   &>   '[`   (y    )D'   *Y   +$	   ,8   -   .   .   0`   0ï   1`   2`   3`   4`   5`   6l`   7k`   8Lr`   9j   :,T`   ;Ji   <6`   =*K   =R   ?
-   ?4   @   A   B   C   D`  !    *0    	    	  *0LMT EEST EET         

TZif2                  	   	       @   	   '0ON0@İ@"````{` k`![`"K`#;`$+`%`&}`''()x@)Q*4+],N-?.0/t!0d1]>`2r`3= `4Q`5`61`6`88`9:`;ڽ<=>?@eA`BEjCc`D%LECb`F.G#D`GK`I&`I-`J`K`L2Mp  d       	     	     	  	   LMT ANAT ANAST               TZif2                  	   	       @   	       '0    O    N    0    @    İ    @    "`    `    `    `    {`     k`    ![`    "K`    #;`    $+`    %`    &}`    '    '    (    )x@    )Q    *4    +]    ,N    -?    .0    /t!    0d    1]>`    2r`    3= `    4Q`    5`    61`    6`    8    8`    9    :`    ;ڽ    <    =    >    ?    @e    A`    BEj    Cc`    D%L    ECb`    F.    G#D`    GK`    I&`    I-`    J`    K`    L2    Mp  d       	     	     	  	   LMT ANAT ANAST               
ANAT-12
TZif2                            3      ൣ@Ԯ00 ' wufW|H l9!\*"L#<$+%&'P')K0)Դ *ė+P,P-P.P/tP0d`1]2r3=4Rk5r62M6T8j`869L`:;.`<5`=`>`?`@e`AB5@		











	  /     8@   FP   FP 	  T` 	  T`  FP 	  T`  T`  FP   T`  FP   FP  8@   8@ LMT FORT SHET SHEST AQTST AQTT                         TZif2                            3      @Ԯ0    0                 '     w        u    f    W    |H     l9    !\*    "L    #<    $+    %    &    'P    '    )K0    )Դ     *ė    +P    ,P    -P    .P    /tP    0d`    1]    2r    3=    4Rk    5r    62M    6T    8j`    86    9L`    :    ;.`    <5`    =`    >`    ?`    @e`    A    B5@		











	  /     8@   FP   FP 	  T` 	  T`  FP 	  T`  T`  FP   T`  FP   FP  8@   8@ LMT FORT SHET SHEST AQTST AQTT                         
AQTT-5
TZif2                            3      h@'  ' wufW|H l9!\*"L#<$+%&'P')K0)Դ *ė+P,P-P.P/tP0duP1]2r{3=4R]5d62?6F8\P8(9>P:
; P<'P=P>	P?P@ePA B50	
	
	
	
	
	
	
	
	
	
	
	
  5    8@   FP   T`	  T`   FP   T`	  T`  FP   T`  FP LMT AKTT AKTST AQTST AQTT                   TZif2                            3      h@    '                      '     w        u    f    W    |H     l9    !\*    "L    #<    $+    %    &    'P    '    )K0    )Դ     *ė    +P    ,P    -P    .P    /tP    0duP    1]    2r{    3=    4R]    5d    62?    6F    8\P    8(    9>P    :
    ; P    <'P    =P    >	P    ?P    @eP    A     B50	
	
	
	
	
	
	
	
	
	
	
	
  5    8@   FP   T`	  T`   FP   T`	  T`  FP   T`  FP LMT AKTT AKTST AQTST AQTT                   
AQTT-5
TZif2                  
   
          
   D@' 0' wufW|H l9!\*"L#<$+%&'P'P(`)	@)x`	  6    8@   T`	  FP   FP   T`	  FP	  8@   8@   FP LMT ASHT ASHST TMT                 TZif2                  
   
          
   D@    '         0            '     w        u    f    W    |H     l9    !\*    "L    #<    $+    %    &    'P    'P    (`    )	@    )x`	  6    8@   T`	  FP   FP   T`	  FP	  8@   8@   FP LMT ASHT ASHST TMT                 
TMT-5
TZif2                            5      0<0hPPC@̓@Pte|V lG!\8"L)#<$,%&'`'x (纀) *?+0,s -d ./|0m 1_2P_ 3@P 415!6 7 78< 9~:o; < =>ր?z @k[A\ BL C=рD-E F G 8  )    *0   8@  *0   8@BMT AST ADT         TZif2                            6      i0<    0hP        P    C@    ̓    @    P    t    e    |V     lG    !\8    "L)    #<    $,    %    &    '`    'x     (纀    )     *?    +0    ,s     -d     .    /|    0m     1_    2P_     3@P     41    5!    6     7     7    8<     9~    :o    ;     <     =    >ր    ?z     @k[    A\     BL     C=р    D-    E     F     G 8  )    )   *0   8@  *0   8@LMT BMT AST ADT           
AST-3
TZif2                                    /l    8@   *0 LMT GST AST       TZif2                                        /l    8@   *0 LMT GST AST       
AST-3
TZif2                  
   
       p   
   DP'0@ 50̅te|V lG!\8"L)#<$,%&'`'
`(R@(	p)@*ĳ01]2r2p3= 4R 5 62j 6q 88S 9h:5 ;J<Q=,>3?@fA+ BECd
 D%ـEC FG# G I Iκ J K ḺM~ NOn` PuQW|RlWS7^TL9U@V,V"X8 XY Z[ \ ] ^ _ `_ a}܀b? c]d e=fgg艀hdikjFkMlc m/nE ohp' qQ. rf	 s1 tE u v/v xxж yˀz {έ|}~yq	
																																										  .    *0   FP	  8@   8@   FP	  8@	  *0   8@  8@   FP  8@   FPLMT BAKT BAKST AZT AZST                   TZif2                  
   
       p   
   DP    '    0    @             50    ̅            t    e    |V     lG    !\8    "L)    #<    $,    %    &    '`    '
`    (R@    (	p    )@    *ĳ0    1]    2r    2p    3=     4R     5     62j     6q     8    8S     9h    :5     ;J    <Q    =,    >3    ?    @f    A+     BE    Cd
     D%ـ    EC     F    G#     G     I     Iκ     J     K     Ḻ    M~     N    On`     Pu    QW|    RlW    S7^    TL9    U@    V,    V"    X8     X    Y     Z    [     \     ]     ^     _     `_     a}܀    b?     c]    d     e=    f    g    g艀    hd    ik    jF    kM    lc     m/    nE     oh    p'     qQ.     rf	     s1     tE     u     v/    v     x    xж     yˀ    z     {έ    |    }    ~y    q	
																																										  .    *0   FP	  8@   8@   FP	  8@	  *0   8@  8@   FP  8@   FPLMT BAKT BAKST AZT AZST                   
AZT-4AZST,M3.5.0/4,M10.5.0/5
TZif2                                  jg  ^<    bp BMT ICT     TZif2                                  Vjg  ^<    ^<   bp LMT BMT ICT       
ICT-7
TZif2                                  	ec{PN`?Ц%''Ш)P*-P``추PqPﰥ`zL^`+wCP$7`
j
PP
#``r.ќb`P `!u7P",#WP$g_`%8&<`'#P((V* m*	+`,P-`.P/t`0duP1]2M3=4-s5r6
U6T8\P869>P:; P<5`=P>`?P@e`A BE`CcD%`ECF`G#GIIΝJjKL̇PMaNiPOnCPKPQW``Rl-PS7B`TLPU$`V+PV`X
X`YZ`[\]^_`_a}Pb?c]Pdne=vPf`gXPgm`h:PiO`jPk1`l8m`nog`pqQres0tEuv.PvxPxЙyPz{{΃P|`}eP~yz`GP                                                                        *0     EEST EET     TZif2                                  
V¸ec{PN`?%'')P*-P``추PqPﰥ`zL    ^`    +w    C    P    $7`        
j    
P        P    
#`        `    r    .    ќ    b`    P             `    !u7P    ",    #WP    $g_`    %8    &<`    '#P    (    (V    * m    *	    +`    ,P    -`    .P    /t`    0duP    1]    2M    3=    4-s    5r    6
U    6T    8\P    86    9>P    :    ; P    <5`    =P    >`    ?P    @e`    A     BE`    Cc    D%`    EC    F`    G#    G    I    IΝ    Jj    K    L̇P    Ma    NiP    OnC    PKP    QW``    Rl-P    S7B`    TLP    U$`    V+P    V`    X
    X`    Y    Z`    [    \    ]    ^    _    `_    a}P    b?    c]P    dn    e=vP    f`    gXP    gm`    h:P    iO`    jP    k1`    l8    m`    n    og`    p    qQ    re    s0    tE    u    v.P    v    xP    xЙ    yP    z{    {΃P    |`    }eP    ~yz`    GP  !H    *0    	LMT EEST EET       
EET-2EEST,M3.5.0/0,M10.5.0/0
TZif2                            4      ~0'} ivgXI|: l+!\"L
#;$+%&'@'@()70*ĥ +0, -0.i /00dK 1f02Mg3=4RV5k6286M8UH8/97H:;H<.X=H>X?H@eXABEXB 									
  E    FP   bp	  T`   T`   bp	  T`	  T`  FP   T`  T` LMT FRUT FRUST KGST KGT                   TZif2                            4      ~0    '}                         i    v    g    X    I    |:     l+    !\    "L
    #;    $+    %    &    '@    '@    (    )70    *ĥ     +0    ,     -0    .i     /0    0dK     1f0    2Mg    3=    4RV    5k    628    6M    8UH    8/    97H    :    ;H    <.X    =H    >X    ?H    @eX    A    BEX    B 									
  E    FP   bp	  T`   T`   bp	  T`	  T`  FP   T`  T` LMT FRUT FRUST KGST KGT                   
KGT-6
TZif2                                  DgG  k    ix   p LMT BNT       TZif2                                  DgG  k    ix   p LMT BNT       
BNT-8
TZif2                            /      (ܐȀ?p"`!p`p{` kp![`"Kp#;`$+p%`&p''()ԉ*l+k,N-M.0/t/0d1]Lp2M/`3=.p4-`5p6`:饐;<=>?tb@daATDBDCC4&D$%EC G  kX    bp   p   ~ 	    p 	LMT ULAT CHOT CHOST             TZif2                            /      (    ܐ    Ȁ        ?p    "`    !p    `    p    {`     kp    ![`    "Kp    #;`    $+p    %`    &p    '    '    (    )ԉ    *l    +k    ,N    -M    .0    /t/    0d    1]Lp    2M/`    3=.p    4-`    5p    6`    :饐    ;    <    =    >    ?tb    @da    ATD    BDC    C4&    D$%    EC     G  kX    bp   p   ~ 	    p 	LMT ULAT CHOT CHOST             
CHOT-8
TZif2                                  m6 ip ~h!Iap"^J#)Cp$Gg %_&'I &A(+ (#  c    bp   ~	  p 
LMT LONT CDT CST         TZif2                                      m    6     ip     ~h    !Iap    "^J    #)Cp    $Gg     %_    &'I     &A    (+     (#  c    bp   ~	  p 
LMT LONT CDT CST         
CST-8
TZif2                                  Z(̕+u81 (2q  D?(  J    MX   T`  [h  [h 
  T` 
MMT IST IHST LKT             TZif2                                  V$Z(̕+u8    1 (    2q      D?(  J    J   MX   T`  [h  [h   T` LMT MMT IST IHST LKT               
IST-5:30
TZif2                                  
x/^pa>p@ap Հ}R [ps(;~pUT6 6 H p tp  4 gpgIa+C  p$S
 
.p p
?kYs Lp mpJ pU# p Gz !"<t #k$2%%Ep&D''p'[(P)`*P++`,_-G.|P/|{`0m1_ `2P43>`41hP5`677P89TP:S`;<=P>`?y@k?`A\sBLrC=PD-`EPF6G*>PGS`IqIJPK`LPM`NPOt`PPQT`RiPS4`TRU`V2Vc`XjXYLZa[.\C]^}%_-P`]a{Pb<cZPd&`e:Pf`gPg`iiŬ`jk`lÕmnwonpYqNnrc;s.PtLXPu2v,:PvxPx1`yPz`{P|`}~v`  "    *0    	LMT EEST EET       TZif2                                  
x/^pa>p@ap Հ}R [ps(;~pUT6 6 H p tp      4     gp    g    I    a    +    C      p    $S        
     
.p         p    
?    kY    s     Lp         mp    J     p    U#     p     Gz     !    "<t     #k    $2    %%Ep    &D    ''p    '[    (P    )`    *P    ++`    ,_    -G    .|P    /|{`    0m    1_ `    2P4    3>`    41hP    5`    6    7    7P    8    9TP    :S`    ;    <    =P    >`    ?y    @k?`    A\s    BLr    C=P    D-`    EP    F6    G*>P    GS`    Iq    I    JP    K`    LP    M`    NP    Ot`    PP    QT`    RiP    S4`    TR    U`    V2    Vc`    Xj    X    YL    Za    [.    \C    ]    ^}%    _-P    `]    a{P    b<    cZP    d&`    e:P    f`    gP    g`    i    iŬ`    j    k`    lÕ    m    nw    on    pY    qNn    rc;    s.P    tLXP    u2    v,:P    v    xP    x1`    yP    z`    {P    |`    }    ~v`      "    *0    	LMT EEST EET       
EET-2EEST,M3.5.5/0,M10.5.5/0
TZif2                                  ۆq̕2ݨҘO J;K<T  R    [h   MX 	  T` 
  T`   bpHMT BURT IST DACT BDT BDST             TZif2                                  iۆq̕2ݨҘ    O     J;    K<T  T    R   [h   MX 
  T`   T`   bpLMT HMT BURT IST DACT BDT BDST               
BDT-6
TZif2                                  ˙2Vp0p9Ù   u    p   ~   ~   p LMT TLT JST WITA           TZif2                                  ˙2Vp    0p    9Ù   u    p   ~   ~   p LMT TLT JST WITA           
TLT-9
TZif2                                    3    8@ LMT GST     TZif2                                    3    8@ LMT GST     
GST-4
TZif2                                  0'} ivgXI|: l+!\"L
#;$+%&'@'@(ʏP  @    FP   bp	  T`   T`   bp	  T`	  FP LMT DUST DUSST TJT             TZif2                                  0    '}                         i    v    g    X    I    |:     l+    !\    "L
    #;    $+    %    &    '@    '@    (ʏP  @    FP   bp	  T`   T`   bp	  T`	  FP LMT DUST DUSST TJT             
TJT-5
TZif2                                  YPͬ ϏfЩyф`Ҋpek6c`-P``m  ﰳpy%ZY sp;Up6E p 9'BP|	`
3``P `!I"^# ]P$Z0`% ?P&&'(P)`*+e,-G._P/{)0H01dF`2A`3D(`4!`5$
`6`67a`8DP8}9`:_;B<A=$>#?@A\B^CAD-`EPFFopGHIJ<`K.LaMN5POt`P[QT`RDPS4`T$PU`VdPVWFPXY(PZa[
P\C]&^}%_m`]aLbF$`c,d&`ef`fPg`hխPiŬ`jPk`lqPmnuSPonpU5PqNnr>Qs.Pt3u2uvO`wx1`yz`{|`}P~v`fP       *0        *0  *0	    
     EET EEST IDT IST            TZif2                                 }JYPͬ ϏfЩyф`Ҋpek6c`-P``m  ﰳpy%ZY sp;Up6E p 9'BP    |        	`    
3            `    `P     `    !I    "^    # ]P    $Z0`    % ?P    &    &    '    (P    )`    *    +e    ,    -G    ._P    /{)    0H    0    1dF`    2A`    3D(`    4!`    5$
`    6`    6    7a`    8DP    8}    9`    :_    ;B    <A    =$    >#    ?    @    A\    B^    CA    D-`    EP    F    Fop    G    H    I    J<`    K.    La    M    N5P    Ot`    P[    QT`    RDP    S4`    T$P    U`    VdP    V    WFP    X    Y(P    Za    [
P    \C    ]&    ^}%    _m    `]    aL    bF$`    c,    d&`    e    f`    fP    g`    hխP    iŬ`    jP    k`    lqP    m    nuSP    on    pU5P    qNn    r>Q    s.P    t3    u2    u    vO`    w    x1`    y    z`    {    |`    }P    ~v`    fP    V`    FP    ?    &~P        `P        |    {    ^    ]    @    z`    "    \`    o    h>`    N    H `    8P    (`    P    `    P         שP        P                    p    `k    Pj    @M    9`     /    i`         K`    .P    -`    P    `    P    +    P    
    hP    a    HP    A    1    !            x    `    Z    ʔ`    <    v`    YP    X`    z;P    j:`    ZP    SV    9P    38    P        P                    ɲ    ʢ    ˛`    ̂    {`    bg    [`    KP    ;`    +fP    e`    HP    G`    *P    c    P    E    ٪P    ڤ'    ۔
    ܄	    s    c    S    M`    3    ,`        `    t    `    ܑP    ̐`    sP    r`    UP    땎    |7P    up    \P    UR    E5    54    %                    `    Ľ    `        `        }`    mP    ]`    MP    =`   -bP   &   
DP   }   &P   _   B   A   $   	#   
   @`   u   
o"`   U   O`   5   .`   P   `   P   `   ލP      oP      QP      m   wl   gO   WN   G1    70   !'   " M`   #   $ /`   $   %`   &P   '`   (P   )`   *P   +   ,oP   -h   .O|P   /H   0/^P   1(   2z   3y   3\   4[   5>   6x`   7    8Z`   9   :<`   ;P   <q`   =aP   >Q `   ?@P   @:   A P   B   C P   C   DP   E   Fɥ   G   H   I   Ji   K`   LiK   Mb`   NI-   OBg`   P2JP   Q"I`   R,P   S+`   SP   T
`   UP   V)   WP   X   YP   Z   [z   \j   ]Z   ^J   _:   `3`   av   b`   bX   c`   d:   et`   fWP   gV`   h9P   i8`   jP   k|T   lbP   m\6   nBP   o<   p+   q   r   r   s   t`   uˡ   v`   w   x`   ye   z`   {tP   |d`   }TdP   ~Dc`   4FP   -   (P   
a   
P   C   &   %               |   v`   \   U`   <   5`   %P   `   P   `   qP   ު   SP      5P   n   P   ~P   n3   ^2   N   >   -   '1`   
   `      `   P   `   P   `   P      v~P   o   V`P   O   6BP   /{   ^   ]   @   ?   "   !      >`       `   ~   x`   gP   W`   GP   7`   'P       P       mP      OP      ưk   Ǡj   ȐM   ɀL   p/   ii`   P   IK`   /   )-`   P   	`   P   `   P   `   ոP   ֱ   טP   ؑ   xzP   q   a   Q   Ax   1w   !Z   `   <   v`      X`       :`   P   `   P   y`   iP   c   IP   B   )P   "               ҅   ˿`   g   `   I   `   r+   ke`   [HP   KG`   ;*P   +)`   P    E    P   '   P   	                  	s   
c   \`   Ct   
<`   #V   `   sP   r`   UP   T`   7P   p   P   R   P   4   kP   e   T   D   4   $       
`       !`   "ԁ   #ͻ`   $P   %`   &P   '`   (}bP   )v   *]DP   +V}   ,=&P   -6_   .P   /A   0$   0#   1   2   3   4"`   5   6`   7   8~`   9nP   :^`   ;NP   <>`   =.P   >`   ?oP   @   @QP   A   B3P   Cl   DO   EN   F1   G0   Hw   IpM`   JV   KP/`   L6   M0`   N   O`   OP   P`   Q߸P   RϷ`   SP   T   U|P   V   W^P   Xx   Yhz   ZXy   [H\   \8[   ](>   ^!x`   _    `Z`   `   a<`   b   c`   dP   e `   fP   g`   hpP   ii   jPP   kI   l0P   m)   nkP   o	   o   p   qi   rh   sK   t`   u-   vg`   wy   xrI`   yX   zR+`   {BP   |2
`   }!P   ~`   P      P      P               z   jv   Zu   JX   C`   *:   #t`   
   V`   9P   8`   P   `   P   6   P      rP   k   RP   K   ;   +            `   e   ԟ`   G   `   dP   c`   FP   tE`   d(P   ]a   D
P   =C   #P   %   P                     `      `   lr   e`   UP   E`   5qP   %p`   SP   R`   5P   n   P   P   ´P   î2   Ğ   Ŏ   }   m   ]   W`   =   6`      `      `   P   ֛`   ~P   Ҷ}`   Ӧ`P   ԟ   ՆBP   {   f$P   _]   O@   ??   /"   !      >`       `      `   ⮪   `   P   `   wP   g`   WP   P   7mP   0   OP       k   j   M   L   /   .      K`      y-`   _   Y`   HP   8`   (P   `   P      P       zP      \P      x   w   qZ   aY   Q<   	Jv`   
1   *X`       
:`   
P   `   P   `   P      P      yP   r   YP   R   B   2   "      g   `   I   ۃ`    +   !e`   "HP   #G`   $*P   %{)`   &kP   '[`   (JP   )D'   **P   +$	   ,
P   -   -   .   /Ӱ   0ï   1   2`   3t   4`   5sV   6l`   7S8   8Lr`   9<UP   :,T`   ;7P   <6`   <P   =R   >P   ?4   @P   A   B   C   D   P    *0      *0  *0
        LMT EET EEST IDT IST              

TZif2                                  xǐm6 ip ~h!Iap"^J#)Cp$Gg %_&'I &A(+ (#  v    w   p 	  ~   ~
LMT CHAT CST CDT           TZif2                                  xǐ    m    6     ip     ~h    !Iap    "^J    #)Cp    $Gg     %_    &'I     &A    (+     (#  v    w   p 	  ~   ~
LMT CHAT CST CDT           
CST-8
TZif2                                  YPͬ ϏfЩyф`Ҋpek6c`-P``m  ﰳpy%ZY sp;Up6E p 9'BP|	`
3``P `!I"^# ]P$Z0`% ?P&&'(P)`*+e,-G._P/{)0H01dF`2A`3D(`4!`5$
`6`67a`8DP8}9`:_;B<A=$>#?@A\B^CAD-`EPFFopGHPIJ<`KLaMN5PN\NPOt`P[QT`RDPS4`T$PU`VdPVWFPXY(PZa[
P\C]&^}%_m`]aLbF$`c,d&`ef`fPg`hխPiŬ`jPk`lqPmnuSPonpU5PqNnr>Qs.Pt3u2uvO`wx1`yz`{|`}P~v`fP       *0        *0  *0	    
     EET EEST IDT IST            TZif2                                 }JYPͬ ϏfЩyф`Ҋpek6c`-P``m  ﰳpy%ZY sp;Up6E p 9'BP    |        	`    
3            `    `P     `    !I    "^    # ]P    $Z0`    % ?P    &    &    '    (P    )`    *    +e    ,    -G    ._P    /{)    0H    0    1dF`    2A`    3D(`    4!`    5$
`    6`    6    7a`    8DP    8}    9`    :_    ;B    <A    =$    >#    ?    @    A\    B^    CA    D-`    EP    F    Fop    G    HP    I    J<`    K    La    M    N5P    N\    NP    Ot`    P[    QT`    RDP    S4`    T$P    U`    VdP    V    WFP    X    Y(P    Za    [
P    \C    ]&    ^}%    _m    `]    aL    bF$`    c,    d&`    e    f`    fP    g`    hխP    iŬ`    jP    k`    lqP    m    nuSP    on    pU5P    qNn    r>Q    s.P    t3    u2    u    vO`    w    x1`    y    z`    {    |`    }P    ~v`    fP    V`    FP    ?    &~P        `P        |    {    ^    ]    @    z`    "    \`    o    h>`    N    H `    8P    (`    P    `    P         שP        P                    p    `k    Pj    @M    9`     /    i`         K`    .P    -`    P    `    P    +    P    
    hP    a    HP    A    1    !            x    `    Z    ʔ`    <    v`    YP    X`    z;P    j:`    ZP    SV    9P    38    P        P                    ɲ    ʢ    ˛`    ̂    {`    bg    [`    KP    ;`    +fP    e`    HP    G`    *P    c    P    E    ٪P    ڤ'    ۔
    ܄	    s    c    S    M`    3    ,`        `    t    `    ܑP    ̐`    sP    r`    UP    땎    |7P    up    \P    UR    E5    54    %                    `    Ľ    `        `        }`    mP    ]`    MP    =`   -bP   &   
DP   }   &P   _   B   A   $   	#   
   @`   u   
o"`   U   O`   5   .`   P   `   P   `   ލP      oP      QP      m   wl   gO   WN   G1    70   !'   " M`   #   $ /`   $   %`   &P   '`   (P   )`   *P   +   ,oP   -h   .O|P   /H   0/^P   1(   2z   3y   3\   4[   5>   6x`   7    8Z`   9   :<`   ;P   <q`   =aP   >Q `   ?@P   @:   A P   B   C P   C   DP   E   Fɥ   G   H   I   Ji   K`   LiK   Mb`   NI-   OBg`   P2JP   Q"I`   R,P   S+`   SP   T
`   UP   V)   WP   X   YP   Z   [z   \j   ]Z   ^J   _:   `3`   av   b`   bX   c`   d:   et`   fWP   gV`   h9P   i8`   jP   k|T   lbP   m\6   nBP   o<   p+   q   r   r   s   t`   uˡ   v`   w   x`   ye   z`   {tP   |d`   }TdP   ~Dc`   4FP   -   (P   
a   
P   C   &   %               |   v`   \   U`   <   5`   %P   `   P   `   qP   ު   SP      5P   n   P   ~P   n3   ^2   N   >   -   '1`   
   `      `   P   `   P   `   P      v~P   o   V`P   O   6BP   /{   ^   ]   @   ?   "   !      >`       `   ~   x`   gP   W`   GP   7`   'P       P       mP      OP      ưk   Ǡj   ȐM   ɀL   p/   ii`   P   IK`   /   )-`   P   	`   P   `   P   `   ոP   ֱ   טP   ؑ   xzP   q   a   Q   Ax   1w   !Z   `   <   v`      X`       :`   P   `   P   y`   iP   c   IP   B   )P   "               ҅   ˿`   g   `   I   `   r+   ke`   [HP   KG`   ;*P   +)`   P    E    P   '   P   	                  	s   
c   \`   Ct   
<`   #V   `   sP   r`   UP   T`   7P   p   P   R   P   4   kP   e   T   D   4   $       
`       !`   "ԁ   #ͻ`   $P   %`   &P   '`   (}bP   )v   *]DP   +V}   ,=&P   -6_   .P   /A   0$   0#   1   2   3   4"`   5   6`   7   8~`   9nP   :^`   ;NP   <>`   =.P   >`   ?oP   @   @QP   A   B3P   Cl   DO   EN   F1   G0   Hw   IpM`   JV   KP/`   L6   M0`   N   O`   OP   P`   Q߸P   RϷ`   SP   T   U|P   V   W^P   Xx   Yhz   ZXy   [H\   \8[   ](>   ^!x`   _    `Z`   `   a<`   b   c`   dP   e `   fP   g`   hpP   ii   jPP   kI   l0P   m)   nkP   o	   o   p   qi   rh   sK   t`   u-   vg`   wy   xrI`   yX   zR+`   {BP   |2
`   }!P   ~`   P      P      P               z   jv   Zu   JX   C`   *:   #t`   
   V`   9P   8`   P   `   P   6   P      rP   k   RP   K   ;   +            `   e   ԟ`   G   `   dP   c`   FP   tE`   d(P   ]a   D
P   =C   #P   %   P                     `      `   lr   e`   UP   E`   5qP   %p`   SP   R`   5P   n   P   P   ´P   î2   Ğ   Ŏ   }   m   ]   W`   =   6`      `      `   P   ֛`   ~P   Ҷ}`   Ӧ`P   ԟ   ՆBP   {   f$P   _]   O@   ??   /"   !      >`       `      `   ⮪   `   P   `   wP   g`   WP   P   7mP   0   OP       k   j   M   L   /   .      K`      y-`   _   Y`   HP   8`   (P   `   P      P       zP      \P      x   w   qZ   aY   Q<   	Jv`   
1   *X`       
:`   
P   `   P   `   P      P      yP   r   YP   R   B   2   "      g   `   I   ۃ`    +   !e`   "HP   #G`   $*P   %{)`   &kP   '[`   (JP   )D'   **P   +$	   ,
P   -   -   .   /Ӱ   0ï   1   2`   3t   4`   5sV   6l`   7S8   8Lr`   9<UP   :,T`   ;7P   <6`   <P   =R   >P   ?4   @P   A   B   C   D       *0      *0  *0
        LMT EET EEST IDT IST              

TZif2                                  oB_ГA   d     c   bp   p LMT SMT ICT         TZif2                                  oB_A   d     c   bp   p LMT SMT ICT         
ICT-7
TZif2                            E      iZW:KxLbpj8ԓJB8֚>A.$9ܸʨޢ8߬[(8(Oi8v(/K8_Ǩ-8?I+m
Ol(wѸN(W0(@8h( 8G(%~8a(`8C(B8_^A@# "~n]MG(78&(=8	(	8
(֩8ƌ(98ol  k
    ~  p 	  ~ 
LMT HKST HKT JST         TZif2                            E      iZW:KxLbpj8ԓJB8֚>A.$9ܸʨޢ8߬[(8(Oi8v(/K8_Ǩ-8?I+m
Ol(wѸN(W0(@8h( 8G(%~8a(`8C(B8_^A@#     "    ~    n    ]    M    G(    78    &(    =8    	(    	8    
(    ֩8    ƌ(    98    ol  k
    ~  p 	  ~ 
LMT HKST HKT JST         
HKT-8
TZif2                            .      ֐ [>= | l!["K#;ƀ$+Ő%&' '( )Ԧ*ĉ +,k -j.M /tL0d/ 1]h2MK3=J4--5,6
:;<=>?t~@d}AT`BD_C4BD$AE_   U    T`   p	  bp LMT HOVT HOVST         TZif2                            .              ֐         [    >    =             |     l    ![    "K    #;ƀ    $+Ő    %    &    '     '    (     )Ԧ    *ĉ     +    ,k     -j    .M     /tL    0d/     1]h    2MK    3=J    4--    5,    6
    :    ;    <    =    >    ?t~    @d}    AT`    BD_    C4B    D$A    E_   U    T`   p	  bp LMT HOVT HOVST         
HOVT-7
TZif2                  	   	       @   	   'a pȀMZK<-| l!\ "K#;$+Ӡ%Ġ&' ' (0)xy0)ԉ*l+ , -x .i /tZ 0dK 1]v2rQ3=X4R35:62682 89 :; < = > ? @e A֠BE CcD% ECFg G#|GI^IeJ@KGL] M)  a    bp   ~	  p   p   ~	  p	  bp   ~ IMT IRKT IRKST              TZif2                  
   
       A   
   V0    'a             p    Ȁ        M    Z    K    <    -    |     l    !\     "K    #;    $+Ӡ    %Ġ    &    '     '     (0    )xy0    )ԉ    *l    +     ,     -x     .i     /tZ     0dK     1]v    2rQ    3=X    4R3    5:    62    6    82     8    9     :    ;     <     =     >     ?     @e     A֠    BE     Cc    D%     EC    Fg     G#|    G    I^    Ie    J@    KG    L]     M)	  a    a   bp   ~
  p   p   ~
  p
  bp   ~ LMT IMT IRKT IRKST                
IRKT-9
TZif2                                  x`˿Vp<&   d     g    ix 	  ~ 
  p 	  bp 	BMT JAVT WIB JST             TZif2                                  ?fI`x`˿Vp<&   d     d    g    ix 
  ~   p 
  bp 
LMT BMT JAVT WIB JST               
WIB-7
TZif2                                  Xh      ~    LMT WIT CST       TZif2                                  Xh      ~    LMT WIT CST       
WIT-9
TZif2                                  0EYPͬ ϏfЩyф`ҊpekZ`/pF۴4 ܹ  ޴΀ߤv V} J`64 tҀ' O|	`
3``P `!I"^# ]P$Z0`% ?P&&'(P)`*+e,-G._P/{)0H1H2<nP31`45`5P77p8_9:p;[`<p=`>p?|@s6pAP`BL CHOpD,q EFS FcG5 HpI JK L	MNpOtP^BQTـRlIpS4TL+pUV,
pVX)XaYZC[\` ]^}B _`]$ a}pb= c]pd e=pfgtpghVpiȀj8pklTmn6oenpqN res.m tEuO v.pv1 xpx ypz {Οp|}p~vcp       *0      8@JMT IDT IST IDDT         TZif2                                 V0EYPͬ ϏfЩyф`ҊpekZ`/pF۴4 ܹ  ޴΀ߤv V} J`64 tҀ' O    |        	`    
3            `    `P     `    !I    "^    # ]P    $Z0`    % ?P    &    &    '    (P    )`    *    +e    ,    -G    ._P    /{)    0H    1H    2<nP    31`    4    5`    5P    7    7p    8_    9    :p    ;[`    <p    =`    >p    ?|    @s6p    AP`    BL     CHOp    D,q     E    FS     Fc    G5     Hp    I     J    K     L	    M    Np    Ot    P^B    QTـ    RlIp    S4    TL+p    U    V,
p    V    X)    Xa    Y    ZC    [    \`     ]    ^}B     _    `]$     a}p    b=     c]p    d     e=p    f    gtp    g    hVp    iȀ    j8p    k    lT    m    n6    oen    p    qN     re    s.m     tE    uO     v.p    v1     xp    x     yp    z     {Οp    |    }p    ~v    cp    VՀ    w    6    Wa        7C         %    ߘ         z         \     p    >     p    _      p    H<    _p    (    ?p         (            Ā    n         P         2    p         P     q1p    0i     Qp    K     0p    g    p    I    p    +        
        x        Xр    y{    A     Y]    !     9?         "\p         >p    v      p        p    t    p    jV    p    J8    j    *    J    	    *         
         j    ɲ     Ӈp    ˒     ̳ip    r     ΓKp    [    s-p    ;    Sp        2p    c    
    E        ػ'        ڤD     ۻ    ܄&     ݛ    d     ߄p    C     dp    #     Dvp         $Xp    ʀ    :p    ̬    p    鬎    8    p        lR        Uo     l    5Q     L    3     ,         p         p         Ճp         ep    }׀    Gp    ]    u)p    =   ^E   }   >'   _   	   |       ^       	@    
   "    p   
f    p   E    fp   /   Frp      &Tp   ƀ   p   Ψ   R      4          w       Wk    n    7M    !Wp   "/    #7p   #    %p   %-   &p   '   (p   )   *   +Ӏ   ,}   -_   ._   /?   0`A   1(    2@#   3    4    4x    6	"p   6Z    7p   8<    9p   :X   ;p   <q:   =p   >Q   ?hp   @0   AQ   B   C1   C   El   E    FN   G    H0   I    JMp   Ky    L/p   MYg    Nzp   OB   PYp   Q"e   R9p   SG   Tp   T)   V   V   W   X   Y   Z
    [y   \j    ][   ^J    _kxp   `*    aKZp   b
    c+<p   ct    ep   eӐ   f p   gr   hp   iT   j   ks6   l   mS   ns   o<5    pS   q    r3   r    th   t    up   v    wgp   x    yIp   z   {+p   |d   }|
p   ~D   e)   $a   E   C   $   `       B       $    ē       p   l    p   L    mtp   5   MVp   Ȁ   -8p      T   Ռ   6   n      P      ~m       ^O    u   >1    ^p       >p       p      p      cp   Հ   Ep      a   f   C   F{   g%   /    G   z    &   \       >    p        p       p   x   p   X    opp   7   ORp   Ā   8n      P   ׈   2          Ǡ    ȷ   ɀi    ʡp   `K    ̀p   @-    `p   )I   @p   	+    p   
    }p         ֨р   {   ؈   ٩]   q    ۉ?   Q    i!   1    R>p   v    2 p   X    p   :    p   V   p   8   豨p   z      Y   z   9ހ   Z   "    :j       L       .   ¡    Kp       -p   e    p   k   p   Kc   bp   +E   K    '   +   	      &           w       Y   	s    
vp   S    tXp   
3    T:p      4p      p   p      R      4      |      e3    |   E    \   $    Ep        !%p   !    #ep   #׀   $Gp   %   &)p   '   (p   )m}   *'   +M_   ,n	   --A   .M   /^    0-   0@    2
   2"    3p   4    5֮p   6    7p   8   9rp   :^   ;vTp   <>ƀ   =V6p   >   ??R   ?   A4   Al   B   Cǉ    D   Ek    F   GM    Hp   Ig/    Jp   KG    Lgp   M&    NGp   O   P'p   P   Rap   RӀ   S}   T   U_   V   WA   Xx    Y#   ZX    [p   \8x    ]O   ^Z    _9p   _<    ap   a    bp   c:   dتp   e   fp   g   h   i`   j   k@   lal   m    nAN   o	    p!0   p    r   rɅ    s   tg    up   vI    wp   xi+    yp   zRG   {ip   |2)   }Ip   ~   2         π   y       [       =   z       Z    {<p   :t    [p   V    ; p   r   p   T   p   6                  b܀      K    ch   +    CJ       ,gp       Ip   ˁ    +p      
p      p   ta   p   TC   t   4%   T      4   $           u       ݒp       tp   |    Vp   eȀ   }8p   E   ]p   %   <p   n   &   P      2      îO    ž   Ŏ1    ƥ   n    Ȏp   M    np   -    Np   
    .cp   Հ   Ep   ַ   'p   Ҷ   C   Ԗ{   շ%   v]   ח   _z    v   ?\    V   >    6        p       p       ߎp       pp      Rp   gĀ   n   G   hP   '   H2       (          i       K    p   -    p   p    p   Y+   pp   9
   P}p      9   р   {   س    ]      ?       !          av     p   	AX    
bp   !:    Ap   
V   !p   8   p      p      ʦ   ހ      i   j   R    jL   2    J.       3Kp       -p   e     p   !   "p   #c   $p   %{E   &p   '['   ({   );	   *[   +   ,;   -    .w   .    /Y   0    1vp   2    3Xp   4    5:p   6cr    7p   8L   9cp   :,p   ;Cp   <R   =,   =4   ?   ?   @   A3    B̢  !        *0      8@LMT JMT IDT IST IDDT           

TZif2                                  @  8@    ?H  AFT     TZif2                                  i@  @    8@   ?H LMT AFT       
AFT-4:30
TZif2                            @      Rĵ')@]\0@İ@"````{` k`![`"K`#;`$+`%`&}`''()x@)Q*4+],N-?.0/t!0d1]>`2r`3= `4Q`5`61`6`88`9:`;ڽ<=>?@eA`BEjCc`D%LECb`F.G#D`GK`I&`I-`J`K`L2Mp         	        	  	   LMT PETT PETST             TZif2                            @      R    ')@    ]    \    0    @    İ    @    "`    `    `    `    {`     k`    ![`    "K`    #;`    $+`    %`    &}`    '    '    (    )x@    )Q    *4    +]    ,N    -?    .0    /t!    0d    1]>`    2r`    3= `    4Q`    5`    61`    6`    8    8`    9    :`    ;ڽ    <    =    >    ?    @e    A`    BEj    Cc`    D%L    ECb`    F.    G#D`    GK`    I&`    I-`    J`    K`    L2    Mp         	        	  	   LMT PETT PETST             
PETT-12
TZif2                                  ~̕2tݨO0<E=(HA0IGI0J{   >    MX   [h  FP   T`
  FP LMT IST KART PKST PKT             TZif2                                  ~̕2tݨ    O0    <E    =(    HA0    IG    I0    J{   >    MX   [h  FP   T`
  FP LMT IST KART PKST PKT             
PKT-5
TZif2                                  DǑm06 ip ~h!Iap"^J#)Cp$Gg %_&'I &A(+ (#  G<    MX   FP   ~	  p 
LMT KAST CDT CST           TZif2                                  DǑ    m0    6     ip     ~h    !Iap    "^J    #)Cp    $Gg     %_    &'I     &A    (+     (#  G<    MX   FP   ~	  p 
LMT KAST CDT CST           
CST-8
TZif2                                  }0  O    MX   P LMT IST NPT       TZif2                                  }    0  O    MX   P LMT IST NPT       
NPT-5:45
TZif2                  
   
       B   
   뵣 'Sp`p?pL=.| l!["K#;Ԑ$+Ő%&''( )xk ){*^+,y-j.[/tL0d=1]h2rC3=J4R%5,6268$89:Ґ;<=>??p@e ABE CcD%i EC~FK G#`GgIBIIJ$K+LA M
NnP
							      p   	  ~   ~   	  ~	  p               LMT YAKT YAKST VLAST VLAT                   TZif2                  
   
       B   
        'Sp            `    p        ?p    L    =    .        |     l    ![    "K    #;Ԑ    $+Ő    %    &    '    '    (     )xk     ){    *^    +    ,y    -j    .[    /tL    0d=    1]h    2rC    3=J    4R%    5,    62    6    8$    8    9    :Ґ    ;    <    =    >    ?    ?p    @e     A    BE     Cc    D%i     EC~    FK     G#`    Gg    IB    II    J$    K+    LA     M
    NnP
							      p   	  ~   ~   	  ~	  p               LMT YAKT YAKST VLAST VLAT                   
YAKT-10
TZif2                                  
ۆq̕2t  R    [h   MX 	  [h	HMT BURT IST         TZif2                                  V(ۆq̕2t  R    R   [h   MX 
  [h
LMT HMT BURT IST           
IST-5:30
TZif2                  	   	       @   	   
 'o ׀֐ [hYJ;|, l!\"K#;$+%Ұ&ð'0'0(@)x@)Ԙ *z+0,0-0.w0/th00dY01]2r_3=f4RA5H62#6*8@089"0:;0<0=0>0?0@e0ABE0CcưD%0ECFu0G#GIlIsJNKULk0M7  W    T`   p	  bp   bp   p	  bp	  T`   p LMT KRAT KRAST              TZif2                  	   	       @   	   
     'o             ׀    ֐         [    h    Y    J    ;    |,     l    !\    "K    #;    $+    %Ұ    &ð    '0    '0    (@    )x@    )Ԙ     *z    +0    ,0    -0    .w0    /th0    0dY0    1]    2r_    3=f    4RA    5H    62#    6*    8@0    8    9"0    :    ;0    <0    =0    >0    ?0    @e0    A    BE0    Ccư    D%0    EC    Fu0    G#    G    Il    Is    JN    KU    Lk0    M7  W    T`   p	  bp   bp   p	  bp	  T`   p LMT KRAT KRAST              
KRAT-8
TZif2                                  gN
`ʳ`ˑ_Hm  a]    bp   g 	  g    ix   ~   p SMT MALT MALST JST MYT               TZif2                                  ~6UgN
`ʳ`ˑ_Hm      _V    a]   bp   g 
  g    ix   ~   p LMT SMT MALT MALST JST MYT                 
MYT-8
TZif2                                  gG{'P]ՠP> ö ŘPG y: [<PˑX Hm   gp    ix   u0	  p   ~   p LMT BORT BORTST JST MYT             TZif2                                  gG{'P]ՠP> ö ŘPG y: [<PˑX Hm       gp    ix   u0	  p   ~   p LMT BORT BORTST JST MYT             
MYT-8
TZif2                                  a5  ,    *0 LMT AST     TZif2                                  a5  ,    *0 LMT AST     
AST-3
TZif2                            *      $wѸN(W0(7dh( 8G( c '`8C(B8_^A@# "~n]M=p-& 	(	8
(֩8ƌ(
8n(< v o;p_:Op8]   j|    ~  p 	  p 
LMT MOST MOT CST         TZif2                            *      $wѸN(W0(7dh( 8G( c '`8C(B8_^A@#     "    ~    n    ]    M    =p    -    &         	(    	8    
(    ֩8    ƌ(    
8    n(    <         v     o;p    _:    Op    8]   j|    ~  p 	  p 
LMT MOST MOT CST         
CST-8
TZif2                  	   	       @   	   6'7Pkj@P#P0p!ppp{p kp![p"Kp#;p$+p%p&p''( )xO )_*B+k,\-M.>/t/0d 1]Lp2r'p3=.p4R	p5p61p6p88p9:p;<=>?@eApBExCcpD%ZECppF<G#RpGYpI4pI;pJpKpL2Mp  `       	        	  	      LMT MAGT MAGST              TZif2                  	   	       @   	   6    '7P    k    j    @    P        #P    0p    !p    p    p    {p     kp    ![p    "Kp    #;p    $+p    %p    &p    '    '    (     )xO     )_    *B    +k    ,\    -M    .>    /t/    0d     1]Lp    2r'p    3=.p    4R	p    5p    61p    6p    8    8p    9    :p    ;    <    =    >    ?    @e    Ap    BEx    Ccp    D%Z    ECpp    F<    G#Rp    GYp    I4p    I;p    Jp    Kp    L2    Mp  `       	        	  	      LMT MAGT MAGST              
MAGT-12
TZif2                                  ]ՐˈVp  o    o   p   ~ 
LMT MMT WITA JST         TZif2                                  ]ՐˈVp  o    o   p   ~ 
LMT MMT WITA JST         
WITA-8
TZif2                                  
0p Щ%pl9 բuFfz     ~   p   ~ 	PHST PHT JST       TZif2                            
      {?0p Щ%pl9 բ    uF    fz    qp    ~  p 	  ~ 
LMT PHST PHT JST           
PHT-8
TZif2                                    6    8@ LMT GST     TZif2                                    6    8@ LMT GST     
GST-4
TZif2                                  
w	
ݒdP
9``uOc`SPM3P#`P`P`hPg`fe|H lG!\*"L)#<$,%&'P'
`(P)`*P+`,P-`.P/t`0duP1]2M3=4-s5r62x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y  H    *0    	    	  *0LMT EEST EET       TZif2                                  
w    	    
ݒ    d    P    
9`        `    uO    c`    SP    M    3P    #`    P    `    P    `    hP    g`            f    e    |H     lG    !\*    "L)    #<    $,    %    &    'P    '
`    (P    )`    *P    +`    ,P    -`    .P    /t`    0duP    1]    2M    3=    4-s    5r    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y      H    *0    	    	  *0LMT EEST EET       
EET-2EEST,M3.5.0/3,M10.5.0/4
TZif2                            @      @ 'o ׀֐ [hYJ;|, l!\"K#;$+%Ұ&ð'0'0(@)x@)Ԙ *z+0,0-0.w0/th00dY01]2r_3=f4RA5H62#6*8@089"0:;0<0=0>0?0@e0ABE0CcưD%0ECFu0G#GIlIsJNKULy@ME	
  Q    T`   p	  bp   bp   p	  bp	  T`   bp  T`   bp NMT KRAT KRAST NOVST NOVT                TZif2                            @      @     'o             ׀    ֐         [    h    Y    J    ;    |,     l    !\    "K    #;    $+    %Ұ    &ð    '0    '0    (@    )x@    )Ԙ     *z    +0    ,0    -0    .w0    /th0    0dY0    1]    2r_    3=f    4RA    5H    62#    6*    8@0    8    9"0    :    ;0    <0    =0    >0    ?0    @e0    A    BE0    Ccư    D%0    EC    Fu0    G#    G    Il    Is    JN    KU    Ly@    ME	
  Q    T`   p	  bp   bp   p	  bp	  T`   bp  T`   bp NMT KRAT KRAST NOVST NOVT                
NOVT-7
TZif2                  	   	       A   	   $ 'o ׀֐ [hYJ;|, l!\"K#;$+%Ұ&ð'0'0(@)x@)Ԙ *z+0+N ,@-@.@/tv@0dg@1]2rm3=t4RO5V621688N@890@:;@<@=@>@?@@e@ABE@CcD%@ECF@G#GIzI΁J\KcLy@ME  M    T`   p	  bp   bp   p	  bp	  T`   bp	LMT NOVT NOVST               TZif2                  	   	       A   	   $     'o             ׀    ֐         [    h    Y    J    ;    |,     l    !\    "K    #;    $+    %Ұ    &ð    '0    '0    (@    )x@    )Ԙ     *z    +0    +N     ,@    -@    .@    /tv@    0dg@    1]    2rm    3=t    4RO    5V    621    68    8N@    8    90@    :    ;@    <@    =@    >@    ?@    @e@    A    BE@    Cc    D%@    EC    F@    G#    G    Iz    I΁    J\    Kc    Ly@    ME  M    T`   p	  bp   bp   p	  bp	  T`   bp	LMT NOVT NOVST               
NOVT-7
TZif2                  	   	       @   	   @0'} ivgXI|: l+!\"L
#;$+%&'@'@(P)xP)Ԧ*ĉ +@,@-@.@/tv@0dg@1]2rm3=t4RO5V621688N@890@:;@<@=@>@?@@e@ABE@CcD%@ECF@G#GIzI΁J\KcLy@ME  D    FP   bp	  T`   T`   bp	  T`	  FP   bp LMT OMST OMSST              TZif2                  	   	       @   	   @0    '}                         i    v    g    X    I    |:     l+    !\    "L
    #;    $+    %    &    '@    '@    (P    )xP    )Ԧ    *ĉ     +@    ,@    -@    .@    /tv@    0dg@    1]    2rm    3=t    4RO    5V    621    68    8N@    8    90@    :    ;@    <@    =@    >@    ?@    @e@    A    BE@    Cc    D%@    EC    F@    G#    G    Iz    I΁    J\    Kc    Ly@    ME  D    FP   bp	  T`   T`   bp	  T`	  FP   bp LMT OMST OMSST              
OMST-7
TZif2                            3      ܵ@'  ' wufW|H l9!\*"L#<$+%&'`')K@)0*ĥ +`,`-`.`/t`0d`1]2r3=4Rk5r62M6T8j`869L`:;.`<5`=`>`?`@e`AB5@
	

  0$    8@   FP   T`	  T`   FP   T`	  FP	  8@   FP  8@   FP  8@   FP LMT URAT URAST ORAST ORAT                       TZif2                            3      @    '                      '     w        u    f    W    |H     l9    !\*    "L    #<    $+    %    &    '`    '    )K@    )0    *ĥ     +`    ,`    -`    .`    /t`    0d`    1]    2r    3=    4Rk    5r    62M    6T    8j`    86    9L`    :    ;.`    <5`    =`    >`    ?`    @e`    A    B5@
	

  0$    8@   FP   T`	  T`   FP   T`	  FP	  8@   FP  8@   FP  8@   FP LMT URAT URAST ORAST ORAT                       
ORAT-5
TZif2                                  oD$_ГA   b\    c   bp   p LMT SMT ICT         TZif2                                  oD$_A   b\    c   bp   p LMT SMT ICT         
ICT-7
TZif2                                    yVp<& !t  f    f   ix   ~   p   p   bp LMT PMT WIB JST WITA               TZif2                                    yVp<&     !t  f    f   ix   ~   p   p   bp LMT PMT WIB JST WITA               
WIB-7
TZif2                                  ~x𸄴xO)5x   w    ~    p  KST       TZif2                                  ie~xxO)5x  u    w   ~   p LMT KST         
KST-9
TZif2                                  0  0P    8@   *0 LMT GST AST       TZif2                                  0      0P    8@   *0 LMT GST AST       
AST-3
TZif2                            4      @'  ' wufW|H l9!\*"L#<$+%&'P')K0)xP)Ԧ*ĉ +@,@-@.@/tv@0dg@1]2rm3=t4RO5V621688N@890@:;@<@=@>@?@@e@AB5 		











	  =`    8@   FP   T`	  T`   FP   T`	  FP   bp  T`   bp  T` LMT KIZT KIZST QYZT QYZST                     TZif2                            4      @    '                      '     w        u    f    W    |H     l9    !\*    "L    #<    $+    %    &    'P    '    )K0    )xP    )Ԧ    *ĉ     +@    ,@    -@    .@    /tv@    0dg@    1]    2rm    3=t    4RO    5V    621    68    8N@    8    90@    :    ;@    <@    =@    >@    ?@    @e@    A    B5 		











	  =`    8@   FP   T`	  T`   FP   T`	  FP   bp  T`   bp  T` LMT KIZT KIZST QYZT QYZST                     
QYZT-6
TZif2                                  sXњg  Z(    [h   ~ 	  [h 
RMT BURT JST MMT         TZif2                                  VsXњg  Z(    Z(   [h   ~ 
  [h LMT RMT BURT JST MMT           
MMT-6:30
TZif2                                  a6  +    *0 LMT AST     TZif2                                  a6  +    *0 LMT AST     
AST-3
TZif2                  	   	       A   	   ͸΅p0'7Pkj@P#P0p!ppp{p kp![p"Kp#;p$+p%p&p''( )xO )_*B+k,\-M.>/t/0d 1]Lp2r'p3=.p4R5616 8 89 :Ā; < = > ? @e ABE CcD%i EC~FK G#`GgIBIIJ$K+LA M
      ~   ~                LMT CJT JST SAKST SAKT               TZif2                  	   	       A   	   ͸΅p0    '7P    k    j    @    P        #P    0p    !p    p    p    {p     kp    ![p    "Kp    #;p    $+p    %p    &p    '    '    (     )xO     )_    *B    +k    ,\    -M    .>    /t/    0d     1]Lp    2r'p    3=.p    4R    5    61    6     8     8    9     :Ā    ;     <     =     >     ?     @e     A    BE     Cc    D%i     EC~    FK     G#`    Gg    IB    II    J$    K+    LA     M
      ~   ~                LMT CJT JST SAKST SAKT               
SAKT-11
TZif2                  
   
          
   `@'  ' wufW|H l9!\*"L#<$+%&'P'P( (P)`0	  >    8@   FP   T`	  T`   FP   T`	  FP   T`  FP LMT SAMT SAMST TAST UZT UZST                  TZif2                  
   
          
   `@    '                      '     w        u    f    W    |H     l9    !\*    "L    #<    $+    %    &    'P    'P    (     (P    )`0	  >    8@   FP   T`	  T`   FP   T`	  FP   T`  FP LMT SAMT SAMST TAST UZT UZST                  
UZT-5
TZif2                                  ~x𸄴xO)ᒀ	5x
 Dp!n=`"&p#N`    w    ~    ~  p    KST KDT           TZif2                            
      idx~xxO)ᒀ	5x
     Dp    !n=`    "&p    #N`  w    w   ~   ~  p   LMT KST KDT             
KST-9
TZif2                                  \'pZ6 ip ~h!Iap"^J#)Cp$Gg %_&'I &A(+ (#  q    ~  p LMT CDT CST       TZif2                                  \'pZ    6     ip     ~h    !Iap    "^J    #)Cp    $Gg     %_    &'I     &A    (+     (#  q    ~  p LMT CDT CST       
CST-8
TZif2                                  gN
`ʳ`ˑ_HmM  a]    bp   g 	  g    ix   ~   ix   p SMT MALT MALST JST SGT                 TZif2                  	   	       	   	   ~6SgN
`ʳ`ˑ_HmM      a]    a]   bp   g 
  g    ix   ~   ix   p LMT SMT MALT MALST JST SGT                   
SGT-8
TZif2                            (      ї azpyBZ: #p< fp& pYݪ rs ߵdp| ᖗ]wp> 0 p!q p p? /ypV p	݉
νP S                      ~   p CDT CST     TZif2                            )      tї azpyBZ: #p< fp& pYݪ rs ߵdp| ᖗ]wp> 0 p!q p p? /yp    V     p    	݉    
ν    P     S  q    ~  p LMT CDT CST       
CST-8
TZif2                  
   
          
   0'} ivgXI|: l+!\"L
#;$+%&'@'@( (P)`0	  @    FP   bp	  T`   T`   bp	  T`	  FP   T`  FP LMT TAST TASST UZT UZST                 TZif2                  
   
          
   0    '}                         i    v    g    X    I    |:     l+    !\    "L
    #;    $+    %    &    '@    '@    (     (P    )`0	  @    FP   bp	  T`   T`   bp	  T`	  FP   T`  FP LMT TAST TASST UZT UZST                 
UZT-5
TZif2                            5      P'0@ 50̅te|V lG!\8"L)#<$,%&'`'
`( (	p)`P)P*@+P,@-P.@/tv@0dY01]3=f4RA5V62#688@089"0:;0<@=0>@?0@e@@ǰABEp			









  *    *0   FP
  8@   8@   FP
  8@
  *0   8@  *0   FP  8@ TBMT TBIT TBIST GET GEST                     TZif2                  
   
       6   
   VP    '    0    @             50    ̅            t    e    |V     lG    !\8    "L)    #<    $,    %    &    '`    '
`    (     (	p    )`P    )P    *@    +P    ,@    -P    .@    /tv@    0dY0    1]    3=f    4RA    5V    62#    68    8@0    8    9"0    :    ;0    <@    =0    >@    ?0    @e@    @ǰ    A    BEp	
	
	
		  *    *   *0 	  FP  8@ 	  8@ 	  FP  8@  *0   8@  *0   FP  8@ LMT TBMT TBIT TBIST GET GEST                       
GET-4
TZif2                            d      l}Ht-@@0:@UgEJ7-( v(۝)˜*"+H,V8-./o7H0a81Pj2B324%u5#H686V7ܸ8֊H98:H;8<B=ȸ>{vH?m8@\AO/B?.C1GHHO8INHJ8KLMHNz;8OhP[nQKmR=S,HT'8U
V ZVHW8XэHY8Z[F\H]z8^u'_g`WaJ2b8Hc+f8deeGHf8gHhR8ijk3Hl8mfnsobHpU 8qEHr78s&RtظuHu8vw?x>yĸzrH{8|}+~nHa_8  08    08   18   FP
  8@   ?H
LMT TMT IRST IRDT             TZif2                            d      l}    H    t-@    @0    :@    Ug    EJ    7    -    ( v    (۝    )˜    *"    +H    ,V8    -    .    /o7H    0a8    1Pj    2B    32    4%u    5#H    68    6V    7ܸ    8֊H    98    :H    ;8    <B    =ȸ    >{vH    ?m8    @\    AO/    B?.    C1    GH    HO8    INH    J8    K    L    MH    Nz;8    Oh    P[n    QKm    R=    S,H    T'8    U
    V Z    VH    W8    XэH    Y8    Z    [F    \H    ]z8    ^u'    _g    `W    aJ2    b8H    c+f8    d    e    eGH    f8    gH    hR8    i    j    k3H    l8    mf    ns    obH    pU 8    qEH    r78    s&R    tظ    uH    u8    v    w?    x>    yĸ    zrH    {8    |    }+    ~nH    a_8  08    08   18   FP
  8@   ?H
LMT TMT IRST IRDT             

TZif2                                  t!aM  T    MX   T` LMT IST BTT       TZif2                                  t    !aM  T    MX   T` LMT IST BTT       
BTT-6
TZif2                            	      ΅p>۫ڀ݋  ~      ~ CJT JDT JST       TZif2                                  e¤ptp΅p>۫ڀ݋      ~   ~     ~ LMT JST CJT JDT         
JST-9
TZif2                            .      LܐȀM0p/p{p k![p"KՀ#;p$+%p&'' ()Ԙ *z+z ,\-\ .>/t> 0d 1]Z2M=p3=<4-p56
p:鳠;<=>?tp@doATRBDQC44D$3EQ  d4    bp   ~	  p LMT ULAT ULAST         TZif2                            .      L    ܐ    Ȁ        M    0p    /    p        {p     k    ![p    "KՀ    #;p    $+    %p    &    '    '     (    )Ԙ     *z    +z     ,\    -\     .>    /t>     0d     1]Z    2M=p    3=<    4-p    5    6
p    :鳠    ;    <    =    >    ?tp    @do    ATR    BDQ    C44    D$3    EQ  d4    bp   ~	  p LMT ULAT ULAST         
ULAT-8
TZif2                                  dm 6 ip ~h!Iap"^J#)Cp$Gg %_&'I &A(+ (#  R    T`   ~	  p 
LMT URUT CDT CST         TZif2                                  d    m     6     ip     ~h    !Iap    "^J    #)Cp    $Gg     %_    &'I     &A    (+     (#  R    T`   ~	  p 
LMT URUT CDT CST         
CST-8
TZif2                            A      ݺ 'Spkj@P#P0p!ppp{p kp![p"Kp#;p$+p%p&p''( )xO )_*B+k,\-M.>/t/0d 1]Lp2r'p3=.p4R	p5p61p6p88p9:p;<=>?@eApBExCcpD%ZECppF<G#RpGYpI4pI;pJpKpL2MpNm@	
  F    p   ~    	     	       	   	   LMT YAKT MAGT MAGST VLAT                 TZif2                            A      ݺ     'Sp    k    j    @    P        #P    0p    !p    p    p    {p     kp    ![p    "Kp    #;p    $+p    %p    &p    '    '    (     )xO     )_    *B    +k    ,\    -M    .>    /t/    0d     1]Lp    2r'p    3=.p    4R	p    5p    61p    6p    8    8p    9    :p    ;    <    =    >    ?    @e    Ap    BEx    Ccp    D%Z    ECpp    F<    G#Rp    GYp    I4p    I;p    Jp    Kp    L2    Mp    Nm@	
  F    p   ~    	     	       	   	   LMT YAKT MAGT MAGST VLAT                 
VLAT-11
TZif2                                  oFP_ГA   `0    c   bp   p LMT SMT ICT         TZif2                                  oFP_A   `0    c   bp   p LMT SMT ICT         
ICT-7
TZif2                  	   	       @   	   YGP'E`yxP`1`>/ | k!["KՀ#;ƀ$+%&' ' ()x])m*P+z ,k -\ .M /t> 0d/ 1]Z2r53=<4R5616 8 89 :Ā; < = > ? @e ABE CcD%i EC~FK G#`GgIBIIJ$K+LA M
  {    ~   	        	    ~ 	   LMT VLAT VLAST VLASST              TZif2                  	   	       @   	   YGP    'E`    y    x    P    `        1`    >    /             |     k    ![    "KՀ    #;ƀ    $+    %    &    '     '     (    )x]    )m    *P    +z     ,k     -\     .M     /t>     0d/     1]Z    2r5    3=<    4R    5    61    6     8     8    9     :Ā    ;     <     =     >     ?     @e     A    BE     Cc    D%i     EC~    FK     G#`    Gg    IB    II    J$    K+    LA     M
  {    ~   	        	    ~ 	   LMT VLAT VLAST VLASST              
VLAT-11
TZif2                  	   	       @   	   p 'Sp`p?pL=.| l!["K#;Ԑ$+Ő%&''( )xk ){*^+,y-j.[/tL0d=1]h2rC3=J4R%5,6268$89:Ґ;<=>?@eAȐBECcD%wECFYG#nGuIPIWJ2K9LOM  y    p   	  ~   ~   	  ~	  p    LMT YAKT YAKST              TZif2                  	   	       @   	   p     'Sp            `    p        ?p    L    =    .        |     l    ![    "K    #;Ԑ    $+Ő    %    &    '    '    (     )xk     ){    *^    +    ,y    -j    .[    /tL    0d=    1]h    2rC    3=J    4R%    5,    62    6    8$    8    9    :Ґ    ;    <    =    >    ?    @e    AȐ    BE    Cc    D%w    EC    FY    G#n    Gu    IP    IW    J2    K9    LO    M  y    p   	  ~   ~   	  ~	  p    LMT YAKT YAKST              
YAKT-10
TZif2                  
   
       @   
   @' 0' wufW|H l9!\*"L#<$+%&'P'P(`)x`)Դ *ė+P,P-P.P/tP0duP1]2r{3=4R]5d62?6F8\P8(9>P:
; P<'P=P>	P?P@ePA BEPCcD%PECFPG#GIIΏJjKqL̇PMS	

















  8    8@   T`	  FP   FP   T`	  FP	  8@   T`  FP   T`  FP   T` LMT SVET SVEST YEKST YEKT                    TZif2                  
   
       @   
   @    '         0            '     w        u    f    W    |H     l9    !\*    "L    #<    $+    %    &    'P    'P    (`    )x`    )Դ     *ė    +P    ,P    -P    .P    /tP    0duP    1]    2r{    3=    4R]    5d    62?    6F    8\P    8(    9>P    :
    ; P    <'P    =P    >	P    ?P    @eP    A     BEP    Cc    D%P    EC    FP    G#    G    I    IΏ    Jj    Kq    L̇P    MS	

















  8    8@   T`	  FP   FP   T`	  FP	  8@   T`  FP   T`  FP   T` LMT SVET SVEST YEKST YEKT                    
YEKT-6
TZif2                            @      HP'0@ 50̅te|V lG!\8"L)#<$,%&'`'
`(@(	p)@*ĳ0+p,p-p.p/tp0dp2p3=4Rk5r62M6T8j`869L`:;.`<5`=`>`?`@e`ABE`CcD%`ECF`G#GIIΝJxKL̕`MaNw`	



  )    *0   FP	  8@   8@   FP	  8@	  *0   8@  *0   8@  8@   FP  8@ LMT YERT YERST AMT AMST                      TZif2                            @      HP    '    0    @             50    ̅            t    e    |V     lG    !\8    "L)    #<    $,    %    &    '`    '
`    (@    (	p    )@    *ĳ0    +p    ,p    -p    .p    /tp    0dp    2p    3=    4Rk    5r    62M    6T    8j`    86    9L`    :    ;.`    <5`    =`    >`    ?`    @e`    A    BE`    Cc    D%`    EC    F`    G#    G    I    IΝ    Jx    K    L̕`    Ma    Nw`	



  )    *0   FP	  8@   8@   FP	  8@	  *0   8@  *0   8@  8@   FP  8@ LMT YERT YERST AMT AMST                      
AMT-4
TZif2                                  XK㠜	ɟ_pAn#)O@k"p>rP 2h䐸ՐƐ{
xhzXk?!8M:XȐK<˵o ̀h ܿ͕Qgr ېu3Ϭ R ХUьf 2 ҅YI9@)@@	@@@ܹu@ݲޢߒsrdbURFB72("E@6@'@@	@@@@@@z@j@cSC3#qb
)Et6d'T&D	4#۠̠˰Ӯß    |  l !\q "Lb #<S $,D %5 && 'Q'B(3)$*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y	












































(   
 
         
 
          
HMT AZOST AZOT AZOMT WET               TZif2                  
   
          
   ^=XK	ɟ_pAn#)O@k"p>rP 2hՐƐ{
xhzXk?!8M:XȐK<˵o ̀h ܿ͕Qgr ېu3Ϭ R ХUьf 2 ҅YI9@)@@	@@@ܹu@ݲޢߒsrdbURFB72("E@6@'@@	@@@@@@z@j@cSC3#qb    
)        E    t6    d'    T&    D	    4    #        ۠    ̠    ˰    Ӯ    ß                        |      l     !\q     "Lb     #<S     $,D     %5     &&     'Q    'B    (3    )$    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    	
  (                       LMT HMT AZOST AZOT AZOMT WET                 
AZOT1AZOST,M3.5.0/0,M10.5.0/1
TZif2                                   `	P
 `
xPw`ٔ
Y`vuXWy:i9YI8("PP`P`P`P u!P"U#j$5%J&'*e'`)
G)ޗ`*)+y`,FP-[`.(P/~=`0
P1gY2rP3G;4RP5'62P7889:;ې<`=r>`?T@o`AqPBO`CdSPD/h`ED5PEG-QG|I
3I^JK{`L2PM|]`NPO\?`PPQ<!`RuPS`TUPT`V5PVXXYZ[|\]^^d_@`M`a]Pb-`cg?Pd
j`eG!PeL`g'Pg.`iPi`jPk,lmvnoUpq5rostOkt`v8Pv޳`xjPx`yLPzw`{.P|~Y`}P~^;`P:   LMT AST ADT       TZif2                                       `    	P    
 `    
xP    w`    ٔ    
Y`    v    u    X    W    y:    i9    Y    I    8    (    "P        P    `    P    `    P    `    P     u    !P    "U    #j    $5    %J    &    '*e    '`    )
G    )ޗ`    *)    +y`    ,FP    -[`    .(P    /~=`    0
P    1gY    2rP    3G;    4RP    5'    62P    7    8    8    9    :    ;ې    <`    =r    >`    ?T    @o`    AqP    BO`    CdSP    D/h`    ED5P    E    G-Q    G|    I
3    I^    J    K{`    L2P    M|]`    NP    O\?`    PP    Q<!`    RuP    S`    TUP    T`    V5P    V    X    X    Y    Z    [|    \    ]^    ^d    _@    `M`    a]P    b-`    cg?P    d
j`    eG!P    eL`    g'P    g.`    iP    i`    jP    k,    l    mv    n    oU    p    q5    ro    s    tOk    t`    v8P    v޳`    xjP    x`    yLP    zw`    {.P    |~Y`    }P    ~^;`    P:   LMT AST ADT       
AST4ADT,M3.2.0,M11.1.0
TZif2                            v      \A M6 3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y        	  
     	  
LMT CANT WET WEST        TZif2                            v      \A     M6     3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y            	  
     	  
LMT CANT WET WEST        
WET0WEST,M3.5.0/1,M10.5.0
TZif2                                  
Q̕ t|@    LMT CVT CVST         TZif2                                  
Q̕ t|    @    LMT CVT CVST         
CVT1
TZif2                            s      
mX#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y              LMT WET WEST     TZif2                            s      
mX    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y                  LMT WET WEST     
WET0WEST,M3.5.0/1,M10.5.0
TZif2                                  XK{Րɑ _bA瀣n}# O  ɶ 2 ] z p0rP2Zրǀ︀  m  x{ hl X] ?8? : X=.q ˵a ̀Yܱ ͕C Ypr̀u% ϬuRХU ьW2t҅Y I 90)00	000ܹg0ݲޢߒterVbGR8B)2"70(00
0000000z0j0cSC3#rcT
  7t(dTC3#ܐ͐㽠ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	(       
     
                     FMT MADST MADT MADMT WEST WET              TZif2                                  "^=XXK{Րɑ _bAn}# O  ɶ 2 ] z p0rP2Zրǀ︀  m  x{ hl X] ?8? : X=.q ˵a ̀Yܱ ͕C Ypr̀u% ϬuRХU ьW2t҅Y I 90)00	000ܹg0ݲޢߒterVbGR8B)2"70(00
0000000z0j0cSC3#rcT    
          7    t(    d    T    C    3    #    ܐ    ͐        㽠    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    	






















































(  (                                LMT FMT MADST MADT MADMT WEST WET                
WET0WEST,M3.5.0/1,M10.5.0
TZif2                            @      ` шrQM f&C& %ˬB ͌$μ lМ K҅+ʠe9 Eq %S p w ܹY 4 ޢu߮ W b9m BM !6ؠ   ~ ` Bj _ S_A 3?# d F (E l       	     	     
RMT ISST IST GMT          TZif2                            A      "` шrQM f&C& %ˬB ͌$μ lМ K҅+ʠe9 Eq %S p w ܹY 4 ޢu߮ W b9m BM !6ؠ   ~ ` Bj _ S_A 3?# d F (E   l      
     
     LMT RMT ISST IST GMT            
GMT0
TZif2                                     GST   TZif2                                  i   LMT GST     
GST2
TZif2                                  BX       JMT GMT     TZif2                                  iBX        LMT JMT GMT       
GMT0
TZif2                            E      
D_<OZ60/<0Y@;@@˾Ű̷@60@Ӽ d0Ѧ F0[j6@ =!J@"h#)@$H%	@&10&@( 0()0*+0,-0.r/00Rb1y2;@3Y4a@59h5C@7J7%@8,9@:*;<GP=q>)P?Z`@PA:`BaPC`DAPDo`F!PFQ`H
HmIJOKʑL1   	 	 SMT FKST FKT             TZif2                            F      iD_<OZ60/<0Y@;@@˾Ű̷@60    @    Ӽ         d0    Ѧ     F0    [    j6@     =    !J@    "h    #)@    $H    %	@    &10    &@    ( 0    (    )0    *    +0    ,    -0    .r    /0    0Rb    1y    2;@    3Y    4a@    59h    5C@    7J    7%@    8,    9@    :*    ;    <GP    =q    >)P    ?Z`    @P    A:`    BaP    C`    DAP    Do`    F!P    FQ`    H
    Hm    I    JO    Kʑ    L1    
 
 LMT SMT FKST FKT               
FKST3
TZif2                                  N'T^x̷]ͧ@xΠzχ"xp@
#P"?0!		
Ȉ 
^>xXm8O禈!kǈMj/Ly Y!Ո"B#i$"%I&f')')	)d*z+ш,Җ-(.x/tE0Z1]a2r<3=C4R5%62 6889:ˈ;<=>?@eABECcD.ECFRG#gGHI׋J|KmL^MON@Ow1Pp\Q`MRP>S@/T0 U VVWXՈYƈZ[\]^_x`haXbHzc8kd(\eMfxgigZhKi<j-klm noppjqYrIs9t)uv	vwxهyxzi{|}v~grX                  CST       TZif2                                  s{pN'T^x̷]ͧ@xΠzχ"x    p@    
#    P"    ?    0    !    	    	    
Ȉ             
        ^        >    x        Xm        8O    禈    !k    ǈ    M    j    /    L        y         Y    !Ո    "B    #i    $"    %I    &f    ')    '    )	    )d    *z    +ш    ,Җ    -(    .x    /tE    0Z    1]a    2r<    3=C    4R    5%    62     6    8    8    9    :ˈ    ;    <    =    >    ?    @e    A    BE    Cc    D.    EC    FR    G#g    G    H    I׋    J|    Km    L^    MO    N@    Ow1    Pp\    Q`M    RP>    S@/    T0     U     V    V    W    XՈ    Yƈ    Z    [    \    ]    ^    _x    `h    aX    bHz    c8k    d(\    eM    fx    gi    gZ    hK    i<    j-    k    l    m     n    op    pj    qY    rI    s9    t)    u    v	    v    w    xه    yx    zi    {    |    }v    ~g    rX      ~           LMT CST           
CST-9:30CST,M10.1.0,M4.1.0/3
TZif2                                  N T Wp̷Vͧ9pΠs χpp9
 %I % ') ' )	 )                   EST       TZif2                                  rN T Wp̷Vͧ9pΠs χp    p9    
     %I     %     ')     '     )	     )   x            LMT EST         
EST-10
TZif2                                  N'T^x̷]ͧ@xΠzχ"xp@
#P"?0!		
Ȉ 
^>xXm8O!kǈMj/Ly Y!Ո"B#i$"%I%')')	)*z+ш,Җ-x.x/X0Z1]a2r<3=C4R5%62 688l89:ˈ;<=>?@eABECcD.ECFRG#gGHI׋J|KmL^MON@Ow1Pp\Q`MRP>S@/T0 U VVWXՈYƈZ[\]^_x`haXbHzc8kd(\eMfxgigZhKi<j-klm noppjqYrIs9t)uv	vwxهyxzi{|}v~grX                   CST       TZif2                                  sdv{pN'T^x̷]ͧ@xΠzχ"x    p@    
#    P"    ?    0    !    	    	    
Ȉ             
        ^        >    x        Xm        8O        !k    ǈ    M    j    /    L        y         Y    !Ո    "B    #i    $"    %I    %    ')    '    )	    )    *z    +ш    ,Җ    -x    .x    /X    0Z    1]a    2r<    3=C    4R    5%    62     6    8    8l    8    9    :ˈ    ;    <    =    >    ?    @e    A    BE    Cc    D.    EC    FR    G#g    G    H    I׋    J|    Km    L^    MO    N@    Ow1    Pp\    Q`M    RP>    S@/    T0     U     V    V    W    XՈ    Yƈ    Z    [    \    ]    ^    _x    `h    aX    bHz    c8k    d(\    eM    fx    gi    gZ    hK    i<    j-    k    l    m     n    op    pj    qY    rI    s9    t)    u    v	    v    w    xه    yx    zi    {    |    }v    ~g    rX         ~           LMT EST CST             
CST-9:30CST,M10.1.0,M4.1.0/3
TZif2                                  x T Wp̷Vͧ9pΠs χpp9
 P8/	߀	
  
~  ^  > x  Xf  8H O !d1 Fc(E
g'  Y~!΀"B #i $"} %I &_ ') ' ()Ԙ *À+z ,-\ ./t> 0mi1]Z2V 3=<46h 56J 6 7, 89:Ā;*< => ?~@e A^ЀBE C>D.EFK G G H Iׄ Ju Kf LW MH N9 Ow* PpUQ`FRP7S@(T0U 
VVW݀X΀YϿZ[ \ ] ^ _x `h aX bHs c8d d(U eF fqgbgShDi5j&klmnopۀpj qY rI s9 t) u v	 v w xـ yq zb {|~}o~`rQ                  EST       TZif2                                  t. x T Wp̷Vͧ9pΠs χp    p9    
     P    8    /        	߀    	    
              
~          ^          >     x          Xf          8H     O     !d    1     F    c    (    E    
    g'          Y~    !΀    "B     #i     $"}     %I     &_     ')     '     (    )Ԙ     *À    +z     ,    -\     .    /t>     0mi    1]Z    2V     3=<    46h     5    6J     6     7,     8    9    :Ā    ;*    <     =    >     ?~    @e     A^Ѐ    BE     C>    D.    E    FK     G     G     H     Iׄ     Ju     Kf     LW     MH     N9     Ow*     PpU    Q`F    RP7    S@(    T0    U 
    V    V    W݀    X΀    YϿ    Z    [     \     ]     ^     _x     `h     aX     bHs     c8d     d(U     eF     fq    gb    gS    hD    i5    j&    k    l    m    n    opۀ    pj     qY     rI     s9     t)     u     v	     v     w     xـ     yq     zb     {    |~    }o    ~`    rQ              LMT EST         
EST-10EST,M10.1.0,M4.1.0/3
TZif2                                  N'T^x̷]ͧ@xΠzχ"x           CST     TZif2                            
      sX{pN'T^x̷]ͧ@xΠzχ"x  z    ~      LMT CST         
CST-9:30
TZif2                                  N02TĔi̷hͧK		Xu)%R)EqF\G#rGyITI[        {       {  CWST       TZif2                                  	t
N02TĔi̷hͧK    	    	    X    u    )%R    )    Eq    F\    G#r    Gy    IT    I[  x      {     { LMT CWST         
CWST-8:45
TZif2                                  x T Wp̷Vͧ9pΠs χp ~ Y v;  V ? p9
 P8/	߀	
  
~  ^  > x  Xf  8H O !d1 Fc(E
g'  Y~!΀"B #i $"} %I &_ ') ' ()Ԙ *À+z ,-\ ./t> 0mi1]Z2V 3=<46h 56J 6 7, 89:Ā;*< => ?~@e A^ЀBE C>D.EFK G G H Iׄ Ju Kf LW MH N9 Ow* PpUQ`FRP7S@(T0U 
VVW݀X΀YϿZ[ \ ] ^ _x `h aX bHs c8d d(U eF fqgbgShDi5j&klmnopۀpj qY rI s9 t) u v	 v w xـ yq zb {|~}o~`rQ                  EST       TZif2                                  t. x T Wp̷Vͧ9pΠs χp ~ Y v;      V         ?     p9    
     P    8    /        	߀    	    
              
~          ^          >     x          Xf          8H     O     !d    1     F    c    (    E    
    g'          Y~    !΀    "B     #i     $"}     %I     &_     ')     '     (    )Ԙ     *À    +z     ,    -\     .    /t>     0mi    1]Z    2V     3=<    46h     5    6J     6     7,     8    9    :Ā    ;*    <     =    >     ?~    @e     A^Ѐ    BE     C>    D.    E    FK     G     G     H     Iׄ     Ju     Kf     LW     MH     N9     Ow*     PpU    Q`F    RP7    S@(    T0    U 
    V    V    W݀    X΀    YϿ    Z    [     \     ]     ^     _x     `h     aX     bHs     c8d     d(U     eF     fq    gb    gS    hD    i5    j&    k    l    m    n    opۀ    pj     qY     rI     s9     t)     u     v	     v     w     xـ     yq     zb     {    |~    }o    ~`    rQ              LMT EST         
EST-10EST,M10.1.0,M4.1.0/3
TZif2                                  N T Wp̷Vͧ9pΠs χpp9
 %I % ') ' )	 ) *Ph*s +ʀ,ҏ-x                  EST       TZif2                                  rN T Wp̷Vͧ9pΠs χp    p9    
     %I     %     ')     '     )	     )     *Ph    *s     +ʀ    ,ҏ    -x              LMT EST         
EST-10
TZif2                            r      	f8@h!]xlh?xNh!x0hxyp Ypp!x"B#i$"n%I%')'Ͻ)	)*k+p,҈x-xp.jx/Xp0Lx1]Lp2r.x3=.p4Rx5p61x6p88p9x:p;<=>?@eAxBExCcxD.pECwxF<G#YxGHIuJmKWLOM9N1OwPpNxQ`8pRP0xS@pT0xUpVxVpWxXpYϸxZp[\]^_x`haXzbHdc8\d(Fe>fcpg[xgEph=xi'pjxk	plxmpnxopppiqYrIs9t)uv	vwxqyizS{x|pp}hx~RprJx           EST LHST         TZif2                            s      
sw    f    8@    h    !]x    lh    ?x    Nh    !x    0h    x    yp         Ypp    !x    "B    #i    $"n    %I    %    ')    'Ͻ    )	    )    *k    +p    ,҈x    -xp    .jx    /Xp    0Lx    1]Lp    2r.x    3=.p    4Rx    5p    61x    6p    8    8p    9x    :p    ;    <    =    >    ?    @e    Ax    BEx    Ccx    D.p    ECwx    F<    G#Yx    G    H    Iu    Jm    KW    LO    M9    N1    Ow    PpNx    Q`8p    RP0x    S@p    T0x    Up    Vx    Vp    Wx    Xp    Yϸx    Zp    [    \    ]    ^    _x    `h    aXz    bHd    c8\    d(F    e>    fcp    g[x    gEp    h=x    i'p    jx    k	p    lx    mp    nx    opp    pi    qY    rI    s9    t)    u    v	    v    w    xq    yi    zS    {x    |pp    }hx    ~Rp    rJx  $            LMT EST LHST           
LHST-10:30LHST-11,M10.1.0,M4.1.0
TZif2                                  N T Wp̷Vͧ9pΠs χpp9
 P8/	߀	
  
~  ^  > x  Xf  8H 矀!dǁFc(E
y  Y~!w "B #i $"} %I &_ ') ' )	 ) *s +ʀ,ҏ-x.q/t> 0S1]Z2r53=<4R5616 8 89:Ā; < = > ? @e ABE CcD.EC~FK G#`G H Iׄ Ju Kf LW MH N9 Ow* PpUQ`FRP7S@(T0U 
VVW݀X΀YϿZ[ \ ] ^ _x `h aX bHs c8d d(U eF fqgbgShDi5j&klmnopۀpj qY rI s9 t) u v	 v w xـ yq zb {|~}o~`rQ                  EST       TZif2                                  sN T Wp̷Vͧ9pΠs χp    p9    
     P    8    /        	߀    	    
              
~          ^          >     x          Xf          8H     矀    !d    ǁ    F    c    (    E    
    y          Y~    !w     "B     #i     $"}     %I     &_     ')     '     )	     )     *s     +ʀ    ,ҏ    -x    .q    /t>     0S    1]Z    2r5    3=<    4R    5    61    6     8     8    9    :Ā    ;     <     =     >     ?     @e     A    BE     Cc    D.    EC~    FK     G#`    G     H     Iׄ     Ju     Kf     LW     MH     N9     Ow*     PpU    Q`F    RP7    S@(    T0    U 
    V    V    W݀    X΀    YϿ    Z    [     \     ]     ^     _x     `h     aX     bHs     c8d     d(U     eF     fq    gb    gS    hD    i5    j&    k    l    m    n    opۀ    pj     qY     rI     s9     t)     u     v	     v     w     xـ     yq     zb     {    |~    }o    ~`    rQ              LMT EST         
EST-10EST,M10.1.0,M4.1.0/3
TZif2                                  N¼=T s̷rͧU		b)%\) Eq Fg G#|GI^Ie     ~   p    ~   p  WST       TZif2                                  tN¼=T s̷rͧU    	    	    b        )%\    )     Eq     Fg     G#|    G    I^    Ie  l    ~  p   ~  p LMT WST         
WST-8
TZif2                                  N T Wp̷Vͧ9pΠs χpp9
 P8/	߀	
  
~  ^  > x  Xf  8H !dǁFc(E
y  Y~!΀"B #i $"} %I % ') ' )	 ) *s +ʀ,ҏ-x.q/X0S1]Z2r53=<4R5616 8 89:Ā; < = > ? @e ABE CcD.EC~FK G#`G H Iׄ Ju Kf LW MH N9 Ow* PpUQ`FRP7S@(T0U 
VVW݀X΀YϿZ[ \ ] ^ _x `h aX bHs c8d d(U eF fqgbgShDi5j&klmnopۀpj qY rI s9 t) u v	 v w xـ yq zb {|~}o~`rQ                  EST       TZif2                                  s<N T Wp̷Vͧ9pΠs χp    p9    
     P    8    /        	߀    	    
              
~          ^          >     x          Xf          8H         !d    ǁ    F    c    (    E    
    y          Y~    !΀    "B     #i     $"}     %I     %     ')     '     )	     )     *s     +ʀ    ,ҏ    -x    .q    /X    0S    1]Z    2r5    3=<    4R    5    61    6     8     8    9    :Ā    ;     <     =     >     ?     @e     A    BE     Cc    D.    EC~    FK     G#`    G     H     Iׄ     Ju     Kf     LW     MH     N9     Ow*     PpU    Q`F    RP7    S@(    T0    U 
    V    V    W݀    X΀    YϿ    Z    [     \     ]     ^     _x     `h     aX     bHs     c8d     d(U     eF     fq    gb    gS    hD    i5    j&    k    l    m    n    opۀ    pj     qY     rI     s9     t)     u     v	     v     w     xـ     yq     zb     {    |~    }o    ~`    rQ              LMT EST         
EST-10EST,M10.1.0,M4.1.0/3
TZif2                                  	`ٮ	qKͩ΢Cϒ4Ђ%rN@
cEt6d'TMD3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y               CEST CET       TZif2                                  	`ٮ	qKͩ΢Cϒ4Ђ%rN@    
c        E    t6    d'    T    MD    3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y                   CEST CET       
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                                  ,ppˈ#pa	g II ++ 
 
 w qpaPp@0p'	p	 
pٰ
u tt yViV Y8I8 9) "7p ppp܀p v !p"U #j$5 %J& '*'р)
c)޳*E+,bp-w.Dp/~Y0&p1gv 2sp3GX 4Rp5': 62p7 88 9: ;۬<=>ހ?p@oApBOCdopD/EDQpE G-mGә I
OI{ J1KLNpM|yN0pO\[PpQ<=RupSTUpTV5pV XX  YZ [ޘ\ ]z^d _\`Maypb-cg[pd
eG=pehg'pgJipi,jpkI lmv+ noV
 pq5 ros tOtv8pvπxpxyhpz{Jp|~u},p~^Wp                                                                           CDT CST CWT CPT       TZif2                                  ,ppˈ#pa	g II ++ 
     
         w     qp    a    Pp    @    0p    '    	p    	     
p        ٰ    
u             t    t     yV    iV     Y8    I8     9    )     "7p         p        p        p    ܀    p     v     !p    "U     #j    $5     %J    &     '*    'р    )
c    )޳    *E    +    ,bp    -w    .Dp    /~Y    0&p    1gv     2sp    3GX     4Rp    5':     62p    7     8    8     9    :     ;۬    <    =    >ހ    ?p    @o    Ap    BO    Cdop    D/    EDQp    E     G-m    Gә     I
O    I{     J1    K    LNp    M|y    N0p    O\[    Pp    Q<=    Rup    S    TUp    T    V5p    V     X    X      Y    Z     [ޘ    \     ]z    ^d     _\    `M    ayp    b-    cg[p    d
    eG=p    eh    g'p    gJ    ip    i,    jp    kI     l    mv+     n    oV
     p    q5     ro    s     tO    t    v8p    vπ    xp    x    yhp    z    {Jp    |~u    },p    ~^W    p                                                                           CDT CST CWT CPT       
CST6CDT,M3.2.0,M11.1.0
TZif2                            z      	
cEt6d'TMD3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y                                                               *0     EEST EET TZif2                            z      	    
c        E    t6    d'    T    MD    3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y                                                                   *0     EEST EET 
EET-2EEST,M3.5.0/3,M10.5.0/4
TZif2                                     EST   TZif2                                     EST   
EST5
TZif2                                  p` p`ˈp#p`X;: wp``pP`@p0`p	`	
`p٢
gpfeyHiGY*I)9)")``
p`p`p` v !`"U#j$5%J&'*s'p)
U)ޥp*7+p,T`-ip.6`/~Kp0`1gg2r`3GI4R`5'+62`7
889:;۞<p=>p?b@opA`BOpCda`D/vpEDC`EG-_GӊI
AIlJ#KpL@`M|kpN"`O\MpP`Q</pRu`SpTU`TpV5`VXXYZ[ފ\]l^d_N`Mpak`b-pcgM`d
xpeG/`eZpg'`g<pi`ipj`k:lmvnoUpq5rostOytpv8`vpxx`xpyZ`zp{<`|~gp}`~^Ip `                                                                           EDT EST EWT EPT       TZif2                                  p` p`ˈp#p`X;:             w    p`    `p    P`    @p    0`    p    	`    	    
`    p    ٢    
gp            f    e    yH    iG    Y*    I)    9    )    ")`        `    
p    `    p    `    p    `     v     !`    "U    #j    $5    %J    &    '*s    'p    )
U    )ޥp    *7    +p    ,T`    -ip    .6`    /~Kp    0`    1gg    2r`    3GI    4R`    5'+    62`    7
    8    8    9    :    ;۞    <p    =    >p    ?b    @op    A`    BOp    Cda`    D/vp    EDC`    E    G-_    Gӊ    I
A    Il    J#    Kp    L@`    M|kp    N"`    O\Mp    P`    Q</p    Ru`    Sp    TU`    Tp    V5`    V    X    X    Y    Z    [ފ    \    ]l    ^d    _N    `Mp    ak`    b-p    cgM`    d
xp    eG/`    eZp    g'`    g<p    i`    ip    j`    k:    l    mv    n    oU    p    q5    ro    s    tOy    tp    v8`    vp    xx`    xp    yZ`    zp    {<`    |~gp    }`    ~^Ip     `                                                                           EDT EST EWT EPT       
EST5EDT,M3.2.0,M11.1.0
TZif2                                         GMT   TZif2                                         GMT   
GMT0
TZif2                                     GMT+1   TZif2                                     GMT+1   
<GMT+1>1
TZif2                                   s`  GMT+10   TZif2                                   s`  GMT+10   
<GMT+10>10
TZif2                                   eP  GMT+11   TZif2                                   eP  GMT+11   
<GMT+11>11
TZif2                                   W@  GMT+12   TZif2                                   W@  GMT+12   
<GMT+12>12
TZif2                                     GMT+2   TZif2                                     GMT+2   
<GMT+2>2
TZif2                                     GMT+3   TZif2                                     GMT+3   
<GMT+3>3
TZif2                                     GMT+4   TZif2                                     GMT+4   
<GMT+4>4
TZif2                                     GMT+5   TZif2                                     GMT+5   
<GMT+5>5
TZif2                                     GMT+6   TZif2                                     GMT+6   
<GMT+6>6
TZif2                                     GMT+7   TZif2                                     GMT+7   
<GMT+7>7
TZif2                                     GMT+8   TZif2                                     GMT+8   
<GMT+8>8
TZif2                                   p  GMT+9   TZif2                                   p  GMT+9   
<GMT+9>9
TZif2                                       GMT-1   TZif2                                       GMT-1   
<GMT-1>-1
TZif2                                       GMT-10   TZif2                                       GMT-10   
<GMT-10>-10
TZif2                                       GMT-11   TZif2                                       GMT-11   
<GMT-11>-11
TZif2                                       GMT-12   TZif2                                       GMT-12   
<GMT-12>-12
TZif2                                       GMT-13   TZif2                                       GMT-13   
<GMT-13>-13
TZif2                                       GMT-14   TZif2                                       GMT-14   
<GMT-14>-14
TZif2                                        GMT-2   TZif2                                        GMT-2   
<GMT-2>-2
TZif2                                     *0  GMT-3   TZif2                                     *0  GMT-3   
<GMT-3>-3
TZif2                                     8@  GMT-4   TZif2                                     8@  GMT-4   
<GMT-4>-4
TZif2                                     FP  GMT-5   TZif2                                     FP  GMT-5   
<GMT-5>-5
TZif2                                     T`  GMT-6   TZif2                                     T`  GMT-6   
<GMT-6>-6
TZif2                                     bp  GMT-7   TZif2                                     bp  GMT-7   
<GMT-7>-7
TZif2                                     p  GMT-8   TZif2                                     p  GMT-8   
<GMT-8>-8
TZif2                                     ~  GMT-9   TZif2                                     ~  GMT-9   
<GMT-9>-9
TZif2                                         UCT   TZif2                                         UCT   
UCT0
TZif2                                         UTC   TZif2                                         UTC   
UTC0
TZif2                  
   
          
   .\ٸ%Avp#VP6%['^㌩Z煌'gfIΙ+pHRP*s0T@xq쌼Ό،]x§ˌ]\Xtpp8Vp`!rDPKͩ΢Cϒ4Ђ%rN@
*p
cEt6d'TMD3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y 	




























































                                     NST AMT NET NEST CET CEST                 TZif2                                  Ql.\ٸ%Avp#VP6%['^Z煌'gfIΙ+pHRP*s0T@xqΌ،]x§ˌ]\Xtpp8Vp`!rDPKͩ΢Cϒ4Ђ%rN@    
*p    
c        E    t6    d'    T    MD    3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    
			
                                       LMT NST AMT NET NEST CET CEST                   
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                            k      
A | lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y               WET CET CEST     TZif2                            l      ~6A                 |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y      l                LMT WET CET CEST       
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                  	   	          	   !|ƯcPKͪL΢ϓip`߷
P	^``ͮ  
U]7jd{RF`3P#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y  <    *0    	   
     *0    	  *0    	AMT EEST EET CET CEST             TZif2                  
   
          
   t?D!|ƯcPKͪL΢ϓip`߷
P    	^`    `    ͮ          
U    ]    7    j    d{    R    F`    3P    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    																																																									  <    <   *0    
        *0    
  *0    
LMT AMT EEST EET CET CEST               
EET-2EEST,M3.5.0/3,M10.5.0/4
TZif2                            x      	5Kͩ΢Cϒ4Ђ%pѡN@E_p㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y                       CET CEST       TZif2                            y      
^<H5Kͩ΢Cϒ4Ђ%pѡN@    E_p    㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y      8                    LMT CET CEST         
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                                  `ٮ	qKͩ΢Cϒ4Ђ%rѶ XҡO4cK#9 gըs ),	xΗMD3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y                   *0	  *0	       CEST CET CEMT          TZif2                  	   	          	   oa`ٮ	qKͩ΢Cϒ4Ђ%rѶ XҡO4cK#9 gըs ),	x    Η    MD    3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y              	      	  *0
  *0
      	LMT CEST CET CEMT            
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                  
   
          
   DI%pٮ0`~p.zL5^#p%5'*}4p_PAɧ#OpkpLrP.IZ 02v㠹Ԡ֋      x h Xy ?/8[ : X֠	J Kͩ΢Cϒ4[`n^rN@ӑ@K#
*p
cEt6d'TMD3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y																																																													                    
                  WET CET CEST WEST           TZif2                                  VmlDI%pٮ0`~p.zL5^#p%5'*}4p_PAɧ#OpkpLrP.IZ 02vԠ֋      x h Xy ?/8[ : X֠	J Kͩ΢Cϒ4[`n^rN@ӑ@K#    
*p    
c        E    t6    d'    T    MD    3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    	




























































                                          LMT BMT WET CET CEST WEST               
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                                  
>``ߍ`~`ȩླྀྨ࿘|mx^hOX@H18"(`SPM3`#݀΀㡀ӒÃ    |s  ld !\U "LF #<7 $,( % &
 '5''
`(`)`*`+`,`-$-`.P/t`0duP1]2r{3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y  x    *0    	  *0    	  *0    	BMT EEST EET         TZif2                                  l>``ߍ`~`ȩ|mx^hOX@H18"(    `    SP    M    3`    #݀    ΀            㡀    Ӓ    Ã                        |s      ld     !\U     "LF     #<7     $,(     %     &
     '5    '    '
`    (`    )`    *`    +`    ,`    -$    -`    .P    /t`    0duP    1]    2r{    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y      x    x   *0    
  *0    
  *0    
LMT BMT EEST EET           
EET-2EEST,M3.5.0/3,M10.5.0/4
TZif2                                  	`ٮ0Xp) dyp( Z<Kͩ΢Cϒ4Ђ%pљxҍ^`PI9)	x/[⢨Q`p3%t`T M6 3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y                                CEST CET       TZif2                                  
j`ٮ0Xp) dyp( Z<Kͩ΢Cϒ4Ђ%pљxҍ^`PI9)	x/[⢨Q`p3%t`T     M6     3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y              	      	   	   LMT CEST CET         
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                                  "k>``ߍ`~`ȩླྀྨ࿘|mx^hOX@H18"(ȼ`w}PKͩ΢Cϒ4N`'@PC@̓s|d lU!\F"L7#<($,%
%sP&C>'&()``)`*P+`,P-`.P/t`0duP1]2r{3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y
	
	
	
	









































      x   *0    
    
  *0           8@  *0   *0   8@  *0    
CMT BMT EEST EET CET CEST MSD MSK                     TZif2                                  &Vk>``ߍ`~`ȩ|mx^hOX@H18"(ȼ`w}PKͩ΢Cϒ4N`    '    @    P            C@    ̓                s    |d     lU    !\F    "L7    #<(    $,    %
    %sP    &C>    '&    (    )``    )`    *P    +`    ,P    -`    .P    /t`    0duP    1]    2r{    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    	








         x   *0          *0           8@  *0 "  *0 "  8@  *0    LMT CMT BMT EEST EET CET CEST MSD MSK                       
EET-2EEST,M3.5.0/3,M10.5.0/4
TZif2                                  	`վCWpKͩ΢Cϒ4Ђ%r$y^Gɐ׿ΗMD3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y                       CEST CET       TZif2                                  iϴq4`վCWpKͩ΢Cϒ4Ђ%r$y^Gɐ׿    Η    MD    3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y                 
   
         
LMT CMT CEST CET           
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                  
   
          
   &0à ve {ȠN? ? %` ' *,  Ӡ  l  N y0 РpLrP.IZ 02vXԠ   W    x z Xy Q8[ : X֠	I!N,( .  p   ޴߮ ̠rHkt R*T2= ) T q  S   g} aI_ Jf _A !
?#   Ѡ {ǻpp )X P 	: 0  	l 	 
N 0 
 qޠ.Qy1X#8Ɛ͐㯐Ñk lr!M"LT#a/$,6%JK&'*-'4)
)*+,Ӑ-ڐ./t00$ 1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y																																																										                              DMT IST BST GMT              TZif2                                  W
&0à ve {ȠN? ? %` ' *,  Ӡ  l  N y0 РpLrP.IZ 02vXԠ   W    x z Xy Q8[ : X֠	I!N,( .  p   ޴߮ ̠rHkt R*T2= ) T q  S   g} aI_ Jf _A !
?#   Ѡ {ǻp    p     )X     P     	:     0          	l     	     
N         0     
         qޠ    .    Q    y    1    X    #    8Ɛ    ͐        㯐        Ñ                    k     lr    !M    "LT    #a/    $,6    %JK    &    '*-    '4    )
    )    *    +    ,Ӑ    -ڐ    .    /t    0    0$     1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
$                               LMT DMT IST BST GMT                
GMT0IST,M3.5.0/1,M10.5.0
TZif2                                  & 0à ve {ȠN? %` ' *,  Ӡ  l  N y0 РpLrP.IZ 02vXԠ   W    x z Xy Q8[ : X֠	&ʗYw;ͱ `Xϐn^r2i c)I !BN .  p   ޴߮ ̠rHkt R*T2= ) T͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y                                                        
      
BST GMT BDST CET CEST      TZif2                                  W
& 0à ve {ȠN? %` ' *,  Ӡ  l  N y0 РpLrP.IZ 02vXԠ   W    x z Xy Q8[ : X֠	&ʗYw;ͱ `Xϐn^r2i c)I !BN .  p   ޴߮ ̠rHkt R*T2= ) T    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y                         LMT BST GMT BDST CET CEST        
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                            u      
soQ`̿#݀΀㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y  h    *0    	  *0    	HMT EEST EET       TZif2                            v      S&soQ`̿    #݀    ΀            㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y      h    h   *0    
  *0    
LMT HMT EEST EET         
EET-2EEST,M3.5.0/3,M10.5.0/4
TZif2                  	   	          	   `վТec{PN`?Ц%''Ъ((`Ы1P`J`΀Pˮ`Pqk	PӢ9`CPL
){+	]`?`\P`ݳ`dh`8 kKi`4Pnp9u 		:
`$P
9`P`sPgM6 Gz#݀'\>PܔP |s  ld !\U "LF #<7 $,( % &
 '5'p(	p)p*p+p,p-p.p/tp0dp1]2r3=4Ry562[6b8xp8D9Zp:&;<p<Cp=p>%p? p@fpABEpCcD%pECE2FɐG#GIIJKL̿MݐNOnnPQWRleS8TLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y  h    *0    	  8@
  *0   *0    	  *0    	IMT EEST EET TRST TRT             TZif2                  
   
          
   V`վec{PN`?%''((`1P`J`΀Pˮ`Pqk	PӢ9`CPL
){+	]`?`\P`ݳ`dh`8         k        K    i`    4P    np    9    u     	    	:    
    `    $P    
9`    P    `    sP    g    M6     Gz    #݀    '\        >    P    ܔ        P         |s      ld     !\U     "LF     #<7     $,(     %     &
     '5    'p    (	p    )p    *p    +p    ,p    -p    .p    /tp    0dp    1]    2r    3=    4Ry    5    62[    6b    8xp    8D    9Zp    :&    ;<p    <Cp    =p    >%p    ? p    @fp    A    BEp    Cc    D%p    EC    E2    Fɐ    G#    G    I    I    J    K    L̿    Mݐ    N    Onn    P    QW    Rle    S8    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    																															  (    h   *0    
  8@  *0   *0    
  *0    
LMT IMT EEST EET TRST TRT               
EET-2EEST,M3.5.0/3,M10.5.0/4
TZif2                            M      `ٮ	qKͩ΢Cϒ4Ђ%pѕ`ҊP&'@PC@̓s|d lU!\F"L7#<($,%
&''p'p()P*@+,ۀ-̀./t0d1] 2r 3= 4R 5 62j 6q 88S 9h:5 ;J<Q=,>3?@fA+ BECd
 D%ـEC FG# G I Iκ J K ḺM~  						


















                *0       8@	  *0 
  *0 
  8@	  *0      *0      *0 CEST CET MSD MSK EEST EET FET                        TZif2                            N      "o[H`ٮ	qKͩ΢Cϒ4Ђ%pѕ`ҊP&    '    @    P            C@    ̓                s    |d     lU    !\F    "L7    #<(    $,    %
    &    ''p    'p    (    )P    *@    +    ,ۀ    -̀    .    /t    0d    1]     2r     3=     4R     5     62j     6q     8    8S     9h    :5     ;J    <Q    =,    >3    ?    @f    A+     BE    Cd
     D%ـ    EC     F    G#     G     I     Iκ     J     K     Ḻ    M~ 	
	
	
	
	
	
	
  8        	      	  *0    	  8@
  *0   *0   8@
  *0      *0      *0 LMT CEST CET MSD MSK EEST EET FET                          
FET-3
TZif2                            x      d`.Kͩ΢Cͨp'@PC@̓s|d lU!\F"L7#<($,%
&& ()`*P+`,P-`.P/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y				










































          *0            8@  *0   8@  *0  *0    KMT EET MSK CET CEST MSD EEST                 TZif2                  
   
       y   
   "Vdd`.Kͩ΢Cͨp    '    @    P            C@    ̓                s    |d     lU    !\F    "L7    #<(    $,    %
    &    &     (    )`    *P    +`    ,P    -`    .P    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    						



             *0            8@  *0   8@  *0  *0    LMT KMT EET MSK CET CEST MSD EEST                   
EET-2EEST,M3.5.0/3,M10.5.0/4
TZif2                                  KmpǀpɃprp_TppApnop#Opɧ#Opkp"prpPp2Lppppȷ𽸨_pxlh]XN?p80:Xpp/p pb˵R̀Kܢ͕4K`rſpuϬgRХpTьI2f҅pYI9 )  	   ܹY ݲޢuߒfWrHb9R*B2!)          z j cSC3#sdUF* 
  7t(dTC3#ܐ͐㽠ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
p         	       	   
                	LMT WEST WET WEMT CET CEST            TZif2                                  KmpǀpɃprp_TppApnop#Opɧ#Opkp"prpPp2Lppppȷ_pxlh]XN?p80:Xpp/p pb˵R̀Kܢ͕4K`rſpuϬgRХpTьI2f҅pYI9 )  	   ܹY ݲޢuߒfWrHb9R*B2!)          z j cSC3#sdUF    *     
          7    t(    d    T    C    3    #    ܐ    ͐        㽠    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
p         	       	   
                	LMT WEST WET WEMT CET CEST            
WET0WEST,M3.5.0/1,M10.5.0
TZif2                                  
& 0à ve {ȠN? %` ' *,  Ӡ  l  N y0 РpLrP.IZ 02vXԠ   W    x z Xy Q8[ : X֠	&ʗYw;ͱ `Xϐn^r2i c)I !BN .  p   ޴߮ ̠rHkt R*T2= ) T q  S   g} aI_ Jf _A !
?#   Ѡ {ǻpp )X P 	: 0  	l 	 
N 0 
 qޠ.Qy1X#8Ɛ͐㯐Ñk lr!M"LT#a/$,6%JK&'*-'4)
)*+,Ӑ-ڐ./t00$ 1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y                                                                                           BST GMT BDST        TZif2                                  ]	& 0à ve {ȠN? %` ' *,  Ӡ  l  N y0 РpLrP.IZ 02vXԠ   W    x z Xy Q8[ : X֠	&ʗYw;ͱ `Xϐn^r2i c)I !BN .  p   ޴߮ ̠rHkt R*T2= ) T q  S   g} aI_ Jf _A !
?#   Ѡ {ǻp    p     )X     P     	:     0          	l     	     
N         0     
         qޠ    .    Q    y    1    X    #    8Ɛ    ͐        㯐        Ñ                    k     lr    !M    "LT    #a/    $,6    %JK    &    '*-    '4    )
    )    *    +    ,Ӑ    -ڐ    .    /t    0    0$     1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y                               LMT BST GMT BDST          
GMT0BST,M3.5.0/1,M10.5.0
TZif2                                  `pp`~堢.zi5^?%5' *4pn آpP ɧ2 Op kp0rpP.IZ 02v㠹Ԡ֋      x h Xy ?/8[ : X֠	B0 Kͩ΢Cϒ4orN@ӑ@K#
*p
cEt6d'TMD3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y	
	





























































          	      	  
            
      
   
      	LMT CEST CET WEST WET                   TZif2                                  `pp`~.zi5^?%5' *4pn آpP ɧ2 Op kp0rpP.IZ 02vԠ֋      x h Xy ?/8[ : X֠	B0 Kͩ΢Cϒ4orN@ӑ@K#    
*p    
c        E    t6    d'    T    MD    3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    	
	





























































          	      	  
            
      
   
      	LMT CEST CET WEST WET                   
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                                  pp*p^pp_ɧ#Opkp"prpPp¨pXN9p80:!Mp`̖`K`΢ϣ-`Ѝ`у``pb`AF
p	`
tp
9`ltpd'TMD3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y                          	               WEST WET WEMT CEST CET          TZif2                  	   	          	   ~6tpp*p^pp_ɧ#Opkp"prpPp¨pXN9p80:!Mp`̖`K`΢ϣ-`Ѝ`у``pb`AF    
    p    	`    
tp            
9`        l    tp    d'    T    MD    3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y             	   
              LMT WEST WET WEMT CEST CET            
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                                  	7𝵼pp`~p\7pL(pl5Kͩ΢Cϒ4Ђ%rL>1Ip)뀐	3pp` Ųb`ZpBwpv+3p
$pp4p	


ؐрavAE[* #ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y                                  CEST CET       TZif2                                  
pd7pp`~p\7pL(pl5Kͩ΢Cϒ4Ђ%rL>1Ip)뀐	3pp`     Ų    b`    Zp    Bwp    v    +    3p    
$p    p    4p    	    

            
ؐ    р        a    v    A    E[    *     #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y      
        	      	      	LMT CEST CET         
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                            D      "8`^pKͩ΢Cϒ4
`'@PC@̓s|d lU!\F"L7#<($,%
%sP'p()`*`+,ۀ-̀./t0d1] 2r 3= 4R 5 62j 6q 88S 9h:5 ;J<Q=,>3?@fA+ BECd
 D%ـEC FG# G I Iκ J K ḺM~ 	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
          *0            8@  *0   8@  *0      *0 MMT EET MSK CET CEST MSD EEST FET                  TZif2                  
   
       E   
   &V(8`^pKͩ΢Cϒ4
`    '    @    P            C@    ̓                s    |d     lU    !\F    "L7    #<(    $,    %
    %sP    'p    (    )`    *`    +    ,ۀ    -̀    .    /t    0d    1]     2r     3=     4R     5     62j     6q     8    8S     9h    :5     ;J    <Q    =,    >3    ?    @f    A+     BE    Cd
     D%ـ    EC     F    G#     G     I     Iκ     J     K     Ḻ    M~ 					



















             *0            8@  *0   8@  *0      *0 "LMT MMT EET MSK CET CEST MSD EEST FET                    
FET-3
TZif2                  
   
          
   `POGx,ppHp*`.zL5^#p%5'X&p}4p_PAɧ#Opkp"prpPpI//p2Lpppp`ȷ𽸨_pxlh]XN?p80:Xp	[T˭iKͩ΢Cϒ4ЉrN@9 
cEt6d'TMD3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y																																																													  1         	     
     	            PMT WEST WET WEMT CEST CET               TZif2                                  kE`POGx,ppHp*`.zL5^#p%5'X&p}4p_PAɧ#Opkp"prpPpI//p2Lpppp`ȷ_pxlh]XN?p80:Xp	[T˭iKͩ΢Cϒ4ЉrN@    9         
c        E    t6    d'    T    MD    3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
      1        
          
            LMT PMT WEST WET WEMT CEST CET                 
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                  
   
       L   
   _؝>*9Xm (<@m=2h=EP`'@PC@̓s|d lU!\F"L7#<($,%
&''p'p()x)@*ĳ0+p,p-p.p/tp0dp1]2r3=4Ry562[6b8xp8D9Zp:&;<p<Cp=p>%p? p@fpABEpCcD%pECFpG#GIIΫJKḶpMo						
																		  #(    1h  #X    ?x  *0 
  8@  FP      *0 
  8@  *0      8@ 
MMT MST MDST MSK MSD EET EEST                      TZif2                            M      "V_>*9Xm (<@m=2h=EP`    '    @    P            C@    ̓                s    |d     lU    !\F    "L7    #<(    $,    %
    &    ''p    'p    (    )x    )@    *ĳ0    +p    ,p    -p    .p    /tp    0dp    1]    2r    3=    4Ry    5    62[    6b    8xp    8D    9Zp    :&    ;<p    <Cp    =p    >%p    ? p    @fp    A    BEp    Cc    D%p    EC    Fp    G#    G    I    IΫ    J    K    Ḷp    Mo	
	
	
	
	
	
		
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
  #<    #(   1h  #X   ?x  *0   8@  FP      *0   8@  *0      8@ LMT MMT MST MDST MSK MSD EET EEST                        
MSK-4
TZif2                                  	' {`ȷM`Kͩ΢Cϒ4Ђ%rb L=.xhXG7'/ҐΗMD3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y                       CEST CET       TZif2                                  
r$l' {`ȷM`Kͩ΢Cϒ4Ђ%rb L=.xhXG7'/Ґ    Η    MD    3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y      
        	   	         	LMT CEST CET         
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                                  `PGx,ppHp*`.zL5^#p%5'X&p}4p_PAɧ#Opkp"prpPpI//p2Lpppp`ȷ𽸨_pxlh]XN?p80:Xp	l'Kͩ΢Cϒ4OЉrN@9 
cEt6d'TMD3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y		




























































  1         	       	   
            
      
PMT WEST WET CET CEST WEMT                 TZif2                  
   
          
   kJ`PGx,ppHp*`.zL5^#p%5'X&p}4p_PAɧ#Opkp"prpPpI//p2Lpppp`ȷ_pxlh]XN?p80:Xp	l'Kͩ΢Cϒ4OЉrN@    9         
c        E    t6    d'    T    MD    3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    		

  1    1        
       
                     LMT PMT WEST WET CET CEST WEMT                   
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                                  	`ٮ	qKͩ΢Cϒ4n^yҡOӀIL8),	pxdpd'TMD3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y                      CEST CET       TZif2                                  Il`ٮ	qKͩ΢Cϒ4n^yҡOӀIL8),	px    dp    d'    T    MD    3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y      
    
       
      
      
LMT PMT CEST CET           
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                                  "F˃ȯd`bePKͩ΢Cϒ4Ђ%Аp'@PC@̓s|d lU!\F"L7#<($,% &
 '5'&()*+,ۀ-̀./t0d1] 2M 23=4R562x688:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y  				















































      $      *0            8@  *0   8@  *0      *0    RMT LST EET MSK CET CEST MSD EEST                   TZif2                                  &VhF˃ȯd`bePKͩ΢Cϒ4Ђ%Аp    '    @    P            C@    ̓                s    |d     lU    !\F    "L7    #<(    $,    %     &
     '5    '&    (    )    *    +    ,ۀ    -̀    .    /t    0d    1]     2M     2    3=    4R    5    62x    6    8    8    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    	
	
	
	
	







































         $      *0            8@  *0   8@  *0!      *0!    LMT RMT LST EET MSK CET CEST MSD EEST                     
EET-2EEST,M3.5.0/3,M10.5.0/4
TZif2                                  	7𝵼pp`~p\7pL(pl5Kͩ΢Cϒ4_`nBprL>1Ip)뀐	3pp` Ųb`ZpBwpv+npgE:I
.Wp
99p
ptppSpΗMD3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y                                     CEST CET       TZif2                                  =p7pp`~p\7pL(pl5Kͩ΢Cϒ4_`nBprL>1Ip)뀐	3pp`     Ų    b`    Zp    Bwp    v    +    np    g    E:    I    
.Wp    
9    9p        
        p    tp    p    Sp    Η    MD    3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y                 
      
      
LMT RMT CEST CET           
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                            A       &PL&'0@ 50̅te|V lG!\8"L)#<$,%
&''p'p()  )0*ĥ +`,`-`.`/t`0d`1]2r3=4Rk5r62M6T8j`869L`:;.`<5`=`>`?`@e`ABE`CcD%`ECF`G#GIIΝJxKḶpMo	

















  /    *0   8@   FP	  8@   8@   FP	  8@	  *0   *0	      FP  FP  8@   8@  *0 LMT SAMT KUYST KUYT SAMST                       TZif2                            A       &PL&    '    0    @             50    ̅            t    e    |V     lG    !\8    "L)    #<    $,    %
    &    ''p    'p    (    )      )0    *ĥ     +`    ,`    -`    .`    /t`    0d`    1]    2r    3=    4Rk    5r    62M    6T    8j`    86    9L`    :    ;.`    <5`    =`    >`    ?`    @e`    A    BE`    Cc    D%`    EC    F`    G#    G    I    IΝ    Jx    K    Ḷp    Mo	

















  /    *0   8@   FP	  8@   8@   FP	  8@	  *0   *0	      FP  FP  8@   8@  *0 LMT SAMT KUYST KUYT SAMST                       
SAMT-4
TZif2                            {       `Kͩ΢Cϒ4ϟ8'@PC@̓s|d lU!\F"L7#<($,%
%sP&.)`*P+`,P-`-.@/tP0dg@1]1] 2r 2~3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y			








































          *0            8@  *0   8@  *0  *0    SMT EET MSK CET CEST MSD EEST                 TZif2                  
   
       |   
   "V `Kͩ΢Cϒ4ϟ8    '    @    P            C@    ̓                s    |d     lU    !\F    "L7    #<(    $,    %
    %sP    &.    )`    *P    +`    ,P    -`    -    .@    /tP    0dg@    1]    1]     2r     2~    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    					


	             *0            8@  *0   8@  *0  *0    LMT SMT EET MSK CET CEST MSD EEST                   
EET-2EEST,M3.5.0/3,M10.5.0/4
TZif2                  	   	       ~   	   Kͩ΢Cϒ4Ђ%pr$ cPU?M5!,p㡀ӒÃ    |s  ld !\U "LF #<7 $,( % &
 '5''
`(P)`*P+`,P-`.P/t`0duP1]2r{3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y                           *0
       *0
  *0
     EET CET CEST EEST           TZif2                                  V$rKͩ΢Cϒ4Ђ%pr$     cP    U?    M    5!    ,    p            㡀    Ӓ    Ã                        |s      ld     !\U     "LF     #<7     $,(     %     &
     '5    '    '
`    (P    )`    *P    +`    ,P    -`    .P    /t`    0duP    1]    2r{    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
      h                *0      *0  *0    LMT IMT EET CET CEST EEST               
EET-2EEST,M3.5.0/3,M10.5.0/4
TZif2                            v      	`MD3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y               CET CEST     TZif2                            x      T՟|Usb`    MD    3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y                       LMT SET CET CEST         
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                            |      Y-̞ +psoLȰƗPKͩ΢Cϒ4t'@PC@̓s|d lU!\F"L7#<($,% &
 '5'&()*+,ۀ-̀./t0d1] 2r 3= 4R 5 6P62x688<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y 				














































  4        	   	    
  *0      8@  *0   8@  *0    
    
  *0  *0TMT CEST CET EET MSK MSD EEST                     TZif2                            }      "VY- +psoLȰƗPKͩ΢Cϒ4t    '    @    P            C@    ̓                s    |d     lU    !\F    "L7    #<(    $,    %     &
     '5    '&    (    )    *    +    ,ۀ    -̀    .    /t    0d    1]     2r     3=     4R     5     6P    62x    6    8    8    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    	
	
	
	
	





































  4    4       
   
      *0      8@  *0   8@  *0          *0  *0LMT TMT CEST CET EET MSK MSD EEST                       
EET-2EEST,M3.5.0/3,M10.5.0/4
TZif2                                  
4hmpKͩ͸(9>`
x
qOpH`
k*`pt`pS`pp;`Hp`1 p_`̯| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y                LMT CET CEST       TZif2                                  
4hmpKͩ͸    (9    >`    
x    
q    Op    H`    
k    *`    p    t`    p    S`    pp    ;`    Hp    `    1         p    _`    ̯                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y                    LMT CET CEST       
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                            y      	qKͩ΢Cϒ4Ѐ`С'@PC@̓s|d lU!\F"L7#<($,%
%sP&.'B)`*P+`,P-`.P/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y  			










































                8@	  *0 
  *0 
  8@	      *0  *0    CET CEST MSD MSK EET EEST                 TZif2                  
   
       z   
   j	qKͩ΢Cϒ4Ѐ`С    '    @    P            C@    ̓                s    |d     lU    !\F    "L7    #<(    $,    %
    %sP    &.    'B    )`    *P    +`    ,P    -`    .P    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    	
	
	
	                  8@
  *0   *0   8@
      *0  *0    LMT CET CEST MSD MSK EET EEST                   
EET-2EEST,M3.5.0/3,M10.5.0/4
TZif2                                  	`ٮppD[	qKͩ΢Cϒ4Ђ%rE4cI9),	M'3`#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y                       CEST CET       TZif2                                  
o_/`ٮppD[	qKͩ΢Cϒ4Ђ%rE4cI9),	    M'    3`    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y      Q        	      	      	LMT CEST CET         
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                            y      "OPJ0fx`ȬpY*Kͩ΢Cϒ40='@PC@̓s|d lU!\F"L7#<($,%
&''p'p()*+,ۀ-̀./t0d1] 2r 3= 4R 4`562x68>`>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y	
	
	
	
	
	
	

      h          *0            8@  *0   8@  *0                *0WMT KMT CET EET MSK CEST MSD EEST                     TZif2                            z      &VDOPJ0fx`ȬpY*Kͩ΢Cϒ40=    '    @    P            C@    ̓                s    |d     lU    !\F    "L7    #<(    $,    %
    &    ''p    'p    (    )    *    +    ,ۀ    -̀    .    /t    0d    1]     2r     3=     4R     4`    5    62x    6    8    >`    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    				













         h          *0            8@  *0   8@  *0!                *0!LMT WMT KMT CET EET MSK CEST MSD EEST                       
EET-2EEST,M3.5.0/3,M10.5.0/4
TZif2                            @      Fܫ؆PPL@'0@ 50̅te|V lG!\8"L)#<$,%
&''p'p)`*ĳ0+p,p-p.p/tp0dp1]2r3=4Ry562[6b8xp8D9Zp:&;<p<Cp=p>%p? p@fpABEpCcD%pECFpG#GIIΫJKḶpMo		
																		  )    *0   *0 	  8@ 	  FP  8@   8@   FP  8@  *0   *0 LMT TSAT STAT VOLST VOLT                   TZif2                            @      F؆PPL@    '    0    @             50    ̅            t    e    |V     lG    !\8    "L)    #<    $,    %
    &    ''p    'p    )`    *ĳ0    +p    ,p    -p    .p    /tp    0dp    1]    2r    3=    4Ry    5    62[    6b    8xp    8D    9Zp    :&    ;<p    <Cp    =p    >%p    ? p    @fp    A    BEp    Cc    D%p    EC    Fp    G#    G    I    IΫ    J    K    Ḷp    Mo		
																		  )    *0   *0 	  8@ 	  FP  8@   8@   FP  8@  *0   *0 LMT TSAT STAT VOLST VOLT                   
VOLT-4
TZif2                  
   
          
   *Л`ٮ e }|`vKͩ΢Cϒ4Ѐ`Є ѕpҊ`bpK#^),	xT ᥀і 캳   Z zw < ZY  :; }: 
*p
U 7t(dT
M6 3#݀΀㡀ӒÃ    |s  ld !\U !"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y																																																		          	      	  *0
              	WMT CEST CET EEST EET             TZif2                                  VP*`ٮ e }|`vKͩ΢Cϒ4Ѐ`Є ѕpҊ`bpK#^),	xT ᥀і 캳   Z zw < ZY  :; }:     
*p    
U         7    t(    d    T
    M6     3    #݀    ΀            㡀    Ӓ    Ã                        |s      ld     !\U     !    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
             
      
  *0              
LMT WMT CEST CET EEST EET               
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                            y      0`ʪKͩ΢Cνp'@PC@̓s|d lU!\F"L7#<($,%
&''p'p(P)`*P+`,P-`.P/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y				










































           *0            8@  *0   8@  *0  *0    CUT EET MSK CET CEST MSD EEST                 TZif2                  
   
       z   
   "V0`ʪKͩ΢Cνp    '    @    P            C@    ̓                s    |d     lU    !\F    "L7    #<(    $,    %
    &    ''p    'p    (P    )`    *P    +`    ,P    -`    .P    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y    						



               *0            8@  *0   8@  *0  *0    LMT CUT EET MSK CET CEST MSD EEST                   
EET-2EEST,M3.5.0/3,M10.5.0/4
TZif2                            v      	j q L S #ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y                CEST CET     TZif2                            x      $qj q L S     #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y                  
      
LMT BMT CEST CET         
CET-1CEST,M3.5.0,M10.5.0/3
TZif2                                   s`  HST   TZif2                                   s`  HST   
HST10
TZif2                                  
3⫹@  ,    *0   8@  *0 LMT EAT EAST       TZif2                                  
3⫹@  ,    *0   8@  *0 LMT EAT EAST       
EAT-3
TZif2                                  ~0ݰ  C    FP   T` LMT IOT       TZif2                                  ~    0ݰ  C    FP   T` LMT IOT       
IOT-6
TZif2                                     bp  CXT   TZif2                                  s  c    bp LMT CXT     
CXT-7
TZif2                                     [h  CCT   TZif2                                  |U&  Z    [h LMT CCT     
CCT-6:30
TZif2                                    (    *0 LMT EAT     TZif2                                    (    *0 LMT EAT     
EAT-3
TZif2                                  ab        FP zzz TFT     TZif2                                  ab        FP zzz TFT     
TFT-5
TZif2                                  d  3    8@ LMT SCT     TZif2                                  d  3    8@ LMT SCT     
SCT-4
TZif2                                  /Ø  D    FP MMT MVT     TZif2                                  V/Ø  D    D   FP LMT MMT MVT       
MVT-5
TZif2                                  
@r0IIΏ  5    FP  8@ 	LMT MUST MUT       TZif2                                  
    @    r0    I    IΏ  5    FP  8@ 	LMT MUST MUT       
MUT-4
TZif2                                    *h    *0 LMT EAT     TZif2                                    *h    *0 LMT EAT     
EAT-3
TZif2                                  9  4     8@ LMT RET     TZif2                                  9  4     8@ LMT RET     
RET-4
TZif2                                  	`ٮ	qKͩ΢Cϒ4Ђ%rN@
cEt6d'TMD3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y               MEST MET       TZif2                                  	`ٮ	qKͩ΢Cϒ4Ђ%rN@    
c        E    t6    d'    T    MD    3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y                   MEST MET       
MET-1MEST,M3.5.0,M10.5.0/3
TZif2                                     MST   TZif2                                     MST   
MST7
TZif2                                  :ˉ#pa uX W: 9   wqaP@0ހ5		
ࡐٿ 
  ye idYG IF9) )("E	
'&	̀ v!"U#j $5%J &'* 'ߐ)
r )*T +,p-.R/~g041g2s3Gf4R5'H62ڀ7*8 89 :;ۻ <
= >? @oΐABOCd}D/ED_EG-| GӧI
^ IJ@ KL\M|N>O\iP Q<KRvS-TUTV5ƀV,X XY Z[ާ \] ^d_k `MАab-cgid
eGKevg'-gXii:jkWl mv9n oVp q5ro stO tv8vݐxxyvz{X|~}:~^e                                                                           MDT MST MWT MPT       TZif2                                  :ˉ#pa uX W: 9               w    q    a    P    @    0ހ    5    	    	    
    ࡐ    ٿ     
                      ye     id    YG     IF    9)     )(    "E    	
    '    &    	                ̀     v    !    "U    #j     $5    %J     &    '*     'ߐ    )
r     )    *T     +    ,p    -    .R    /~g    04    1g    2s    3Gf    4R    5'H    62ڀ    7*    8     8    9     :    ;ۻ     <
    =     >    ?     @oΐ    A    BO    Cd}    D/    ED_    E    G-|     Gӧ    I
^     I    J@     K    L\    M|    N>    O\i    P     Q<K    Rv    S-    TU    T    V5ƀ    V,    X     X    Y     Z    [ާ     \    ]     ^d    _k     `MА    a    b-    cgi    d
    eGK    ev    g'-    gX    i    i:    j    kW    l     mv9    n     oV    p     q5    ro     s    tO     t    v8    vݐ    x    x    yv    z    {X    |~    }:    ~^e                                                                               MDT MST MWT MPT       
MST7MDT,M3.2.0,M11.1.0
TZif2                                  H*ˉ#pa& fe HG * ) x q(a'Q
A	0C	ΐ	 
௠
  ysir YUIT 97)6 "S	 54ې v+ !"V
 #j$5 %J& '*')
)Ϡ*b+,~-.`/~u0B1g 2s$3Gt 4S5'V 6278 88 9: ;<=>?@oܠABOCdD/EDmE G-Gӵ I
lI JNKLjM|NLO\wP.Q<YRvS;TUTV5ԐV: XX YZ [޵\ ]^d _y`Mޠab-cgwd
eGYe턠g';gfiiHjke lmvG noV) pq6 ros tOt	v8vxx͠yz{f|~}H~^s*                                                                           PDT PST PWT PPT       TZif2                                  H*ˉ#pa& fe HG *     )         x     q(    a'    Q
    A	    0    C    	ΐ    	     
    ௠        
                      ys    ir     YU    IT     97    )6     "S    	     5    4                    ې     v+     !    "V
     #j    $5     %J    &     '*    '    )
    )Ϡ    *b    +    ,~    -    .`    /~u    0B    1g     2s$    3Gt     4S    5'V     62    78     8    8     9    :     ;    <    =    >    ?    @oܠ    A    BO    Cd    D/    EDm    E     G-    Gӵ     I
l    I     JN    K    Lj    M|    NL    O\w    P.    Q<Y    Rv    S;    TU    T    V5Ԑ    V:     X    X     Y    Z     [޵    \     ]    ^d     _y    `Mޠ    a    b-    cgw    d
    eGY    e턠    g';    gf    i    iH    j    ke     l    mvG     n    oV)     p    q6     ro    s     tO    t	    v8    v    x    x͠    y    z    {f    |~    }H    ~^s    *                                                                           PDT PST PWT PPT       
PST8PDT,M3.2.0,M11.1.0
TZif2                            :       b8L'M+N}`NOw
PfQ`*`RFS@`T&U`VV`WX߲`YhZ`[`\]g`^_oI``htaO+`bHVc/
`d(8e`fU`fg7`hi`jk`lm`nwop`p``qYr@`s9t t`uv V`vw8`xcy`zE{6|b`}~D`h_   ^H eP 	s`
  
   	LMT SAMT WST WSDT             TZif2                            ;      U b8    L'    M+    N}`    N    Ow
    Pf    Q`*`    RF    S@`    T&    U`    V    V`    W    X߲`    Yh    Z`    [`    \    ]g`    ^    _oI`    `ht    aO+`    bHV    c/
`    d(8    e`    fU`    f    g7`    h    i`    j    k`    l    m`    nw    op`    p``    qY    r@`    s9    t t`    u    v V`    v    w8`    xc    y`    zE    {6    |b`    }    ~D`    h    _   ^H eP 	s`
  
   	LMT SAMT WST WSDT               
WST-13WSDT,M9.5.0/3,M4.1.0/4
TZif2                                  QXxhC`Xh#`8h`hmḩOh཮࿎nNcp.~L``,o`}hښ@		
`
~^>xgXIf8+`!H`e`*`G``)``g`` F`!`"0	#i$%.`&B'
`'$(`)*ͧ`+#`,`-`.k`/j`0mM`1J`2Vi3*`46K5
`6-678Ӌ9:m;`<O=`>s1?~`@\N`A^`B<0`C>`D`Ex`E`FZ`GH<`IgJ`KIL `M+N}`Ow
PfQ`*`RFS@`T&U`VV`WX߲`YhZ`[`\]g`^_oI``htaO+`bHVc/
`d(8e`fU`fg7`hi`jk`lm`nwop`p``qYr@`s9t t`uv V`vw8`xcy`zE{6|b`}~D`h            
        NZST NZMT NZDT           TZif2                                  ALQXxhC`Xh#`8h`hmḩOhnNcp.~L``,o`}hښ@    	    	    
`            
~        ^        >    xg        XI    f    8+    `    !H`    e`    *`    G`    `    )`    `    g`    `     F`    !`    "0	    #i    $    %.`    &B    '
`    '$    (`    )    *ͧ`    +#`    ,`    -`    .k`    /j`    0mM`    1J`    2Vi    3*`    46K    5
`    6-    6    7    8Ӌ    9    :m    ;`    <O    =`    >s1    ?~`    @\N`    A^`    B<0`    C>`    D`    Ex`    E`    FZ`    G    H<`    Ig    J`    KI    L `    M+    N}`    Ow
    Pf    Q`*`    RF    S@`    T&    U`    V    V`    W    X߲`    Yh    Z`    [`    \    ]g`    ^    _oI`    `ht    aO+`    bHV    c/
`    d(8    e`    fU`    f    g7`    h    i`    j    k`    l    m`    nw    op`    p``    qY    r@`    s9    t t`    u    v V`    v    w8`    xc    y`    zE    {6    |b`    }    ~D`    h         	          LMT NZST NZMT NZDT             
NZST-12NZDT,M9.5.0,M4.1.0/3
TZif2                                  		
`
~^>xgXIf8+`!H`e`*`G``)``g`` F`!`"0	#i$%.`&B'
`'$(`)*ͧ`+#`,`-`.k`/j`0mM`1J`2Vi3*`46K5
`6-678Ӌ9:m;`<O=`>s1?~`@\N`A^`B<0`C>`D`Ex`E`FZ`GH<`IgJ`KIL `M+N}`Ow
PfQ`*`RFS@`T&U`VV`WX߲`YhZ`[`\]g`^_oI``htaO+`bHVc/
`d(8e`fU`fg7`hi`jk`lm`nwop`p``qYr@`s9t t`uv V`vw8`xcy`zE{6|b`}~D`h      \  L 
  L 
LMT CHADT CHAST       TZif2                                      	    	    
`            
~        ^        >    xg        XI    f    8+    `    !H`    e`    *`    G`    `    )`    `    g`    `     F`    !`    "0	    #i    $    %.`    &B    '
`    '$    (`    )    *ͧ`    +#`    ,`    -`    .k`    /j`    0mM`    1J`    2Vi    3*`    46K    5
`    6-    6    7    8Ӌ    9    :m    ;`    <O    =`    >s1    ?~`    @\N`    A^`    B<0`    C>`    D`    Ex`    E`    FZ`    G    H<`    Ig    J`    KI    L `    M+    N}`    Ow
    Pf    Q`*`    RF    S@`    T&    U`    V    V`    W    X߲`    Yh    Z`    [`    \    ]g`    ^    _oI`    `ht    aO+`    bHV    c/
`    d(8    e`    fU`    f    g7`    h    i`    j    k`    l    m`    nw    op`    p``    qY    r@`    s9    t t`    u    v V`    v    w8`    xc    y`    zE    {6    |b`    }    ~D`    h      \  L 
  L 
LMT CHADT CHAST       
CHAST-12:45CHADT,M9.5.0/2:45,M4.1.0/3:45
TZif2                                       CHUT   TZif2                                  	~6&  L     LMT CHUT     
CHUT-10
TZif2                                  @n@lɰ<@ rܰuP@IU2 +>O@ 
@@	Ѱ
@0@
0@h0H0f(v0F&{t]V?8\@>@p @ 0!o@"90#E$0%8 &&'١0()½*צ+,-.j/bc0@1BE2`i@3=04@K@5D06
@7հ8 @809+:0;
<0=>j0?@SʰAhB3CHDE1@EpG@G0Hv@Io0JX@K L:@M0NPOPBQ|R+@S\rT@U<TU@W6W˜@XY~@Z50[`@\0]t|^0_T^`0a4@bd0c"dD0df-f!@h
h@ij@kal|@mCn\@o`0p<@qvB0r%sV$0tu60ukw0wMx0y/z{|Ȱ}n.@~N@x   		 	EMT EAST EASST     TZif2                           ~      iB@n@lɰ<@     rܰ    uP    @I    U2     +    >O@     
    @        @    	Ѱ    
@    0    @    
0    @    h0        H0    f    (v0    F        &{    t    ]    V    ?    8    \@        >@    p     @     0    !o@    "90    #E    $0    %8     &    &    '١0    (    )½    *צ    +    ,    -    .j    /bc    0@    1BE    2`i@    3=0    4@K@    5D0    6
@    7հ    8 @    80    9+    :0    ;
    <0    =    >j0    ?    @Sʰ    Ah    B3    CH    D    E1@    Ep    G@    G0    Hv@    Io0    JX@    K     L:@    M0    NP    O    PB    Q|    R+@    S\r    T@    U<T    U@    W6    W˜@    X    Y~@    Z50    [`@    \0    ]t|    ^0    _T^    `0    a4@    bd0    c"    dD0    d    f-    f!@    h
    h@    i    j@    ka    l|@    mC    n\@    o`0    p<@    qvB0    r%    sV$0    t    u60    uk    w0    wM    x0    y/    z    {    |Ȱ    }n.@    ~    N@    ~    -@    ^n    
@    G0    @    'm0        O0        10        0    vx    0    VZ        6<    o    Y@    Oհ    ;@    /    @        @    {    @    ؘ0        z0    g    \0    G    x>0    '    X 0        A<    g    !    Є@         f@        H@    İ    p*@        P@    0    /@    i0    
    I0        )i0        	K0        g        I    @    +    a@    
    As@    q    !U@    QѰ    7@    :0    @    0    5    0    Ȫ    ڔ0    ʉ    ˺v0    i    ͚X0    I    σt    2@    cV    @    C8    @    #    Ҁ@        ײb@    0    ْD@    0    {`    ܫ0    [B    ދ0    ;$    k0        K0        4            @    c    @    E    ꃫ@    '    c@    D0    Co@    }&0    ,    ]0    m    <0    O    0    1    0        ܐ0        Ŭ    k        T@    p    4@    eR   @   E4   @   .Q0   |@   30      0   z   	0   
}\   0   ]>   
0   =    vװ      V   @   6   @   }   @   _   @   A   @   ^0   n   @0   N   "0   .    _0   !i   ">0   "K   $(   $-   &   &J@   'ư   (,@   )Ǩ   *w@   +   ,V@   -l   .6@   /p0   0@   1Pk0   1   30M0   3߲   5/0   5   60   7v   8-   9X   :   ;hu@   <   =HW@   >xӰ   ?(9@   @X   A@   B8   B@   D!0   D@   F0   F   Gx0   H   IZ0   Jp   K<0   LP   M0   N0   Oj:   P@   QJ   Q@   S)   Sd@   U	   UF@   V°   W(@   X0   Yy
@   Z0   [b&   \0   ]B   ^r0   _!   `Rg0   a   b2I0   b   de   d   eG   f@   g)   h@   i   jjq@   k   lJS@   m
0   n*5@   oc0   pQ   qC0   q3   s#0   s   u0   u   vt0   w   x̐   yr   zr   {[@   |T   };@   ~l6   @   L   ~@   +   `@   0   |   0   ^   0   @   0   d"   0   D   }   #   ]   
@   =   @   a   @   C   @   %   @   B0   lm@   $0   U   0   5k   e0   M   E0   /   .      Ȱ   .@      @   Ό   }@   n   ]@   P   =@   wm0   @   WO0      710      0   x   0   Z   0   <      f   հ   O;@      /@   _   @   ?{   @   ]   @   z0   Į@   \0   Ɨ   >0   w   ɨ 0   W   ˈ0   7g   g0   I   Q     f@   0   H@   İ   *@      ՠ@   Ј   @   ع0   _@   ڙ0   H   yi0   (   YK0      9-0      0   t   +   V   
   s@      qU@   Ѱ   Q7@   끳   1@   j0   @   J0      *0      
v0      X0      :0   y   V   Y   8   B@   s   "@   R   b@    2ް    D@      &@   0   B   ۿ0   $   0   k   	0   
J   {e0   *   
d   
   Dc   @   $E   ӫ@   '   @   	   o@      sQ@   0   S3@   0   <O   l0   1   L0       ,0       "   "   #   $@   %p   &@   'R   (d@   )4   *D@   +u   ,$|@   -^30   .^@   />0   /z   10   1\   20   3>   4ݻ0   5    60   7m   8   9V@   :   ;6@   <f}   =@   >F_   >@   @&A   @է@   B^0   B@   C@0   D   E"0   F~   G0   H^i   I0   J>K   Kn0   L-   MW   M   O7ư   O,@   Q   Q@   R   S@   Tl   U@   V0   Wf@   Xk0   YO   ZM0   [/   \`/0   ]   ^@0   ^v   `0   `X   b	   b:   c   dW@   eӰ   fx9@   g   hX@   i   j7@   khy   l@   mQ0   m@   o1x0   o   qZ0   q   r<0   s   t0   u   v 0   w`e   x   y@G   zy   {)d@   |Y   }	F@   ~9°   ~(@      
@      @   0      0   q   g0   Q   I0   1   b+0      KG   r   +)   ڏ@      q@      S@   ϰ   z5@      Z@   0   9@   s0   #   S0      3t0      V0   »   r      T   @   6   k@      K~@   {   +`@   [ܰ   B@   D0   $@   $0   @   0   "   0      ā0   s   c0   S      <@   ma   @   MC   @   -%   ܋@   
   m@   $0   O@   0   ąk   ŵ0   eM   Ǖ0   E/   u0   %   U0      >         @   n   ѭ@   P   Ӎ@   Ծ2   m@   ֧O0   Mz@   ؇10   6   g0   x   F0   Z   &0   <   0      հ       Ϸ   @   寙   ^@   {   >@   o]   @   O?   @   8\0      >0   ǣ    0      0   g   0   gI       G+      0H@   `İ   *@   @   @       @     j    @   0   @   i0   x   K0   X   -0   8   	i0   
t   R+   V   
2
   
s@      U@   Ѱ   7@   ѳ   @      `@   0   @@   z0   )   Zv0   	   :X0      :0   ɟ   0       !8   "@   #   $r@   %   &Rb@   'ް   (2D@   )b   *&@   +K0   +@   -+0   -$   /0   /   00   1   2e0   3z   4G0   5Z   6c   7:   8tE   9#@   :T'   ;@   <4	   <o@   >   >Q@   ?0   @3@h  x  

 
LMT EMT EAST EASST       

TZif2                                  
´fP{P k@![P"K@#;P$+@%~P&a@&`P'C@(|)Q@*H+a3@         	LMT VUST VUT       TZif2                                  
´            f        P        {P     k@    ![P    "K@    #;P    $+@    %~P    &a@    &`P    'C@    (|    )Q@    *H    +a3@         	LMT VUST VUT       
VUT-11
TZif2                                  V/0W@  eP      PHOT       TZif2                                  	~7Ud    V    /0_  W@ eP    LMT PHOT         
PHOT-13
TZif2                                  NeP      TKT     TZif2                                  ~7U    N_x  eP    LMT TKT       
TKT-13
TZif2                            >      
6;6`8$4`8`K,K`L`MrAN`OP`PRkRzTKT\V+VyPXpX[PYRZc=P[4\CP]Q`^#P_3``at`acS`ce3`egghikjܹkTPlm4Pn}ohPp|_pJPre|`r,PtE^`tPv%@`v*x"`x}y`z\{`|<}~         	LMT FJST FJT       TZif2                           0      
    6;    6`    8$4`    8`    K,    K`    L`    MrA    N`    O    P`    P    Rk    Rz    TK    T\    V+    VyP    Xp    X[P    YR    Zc=P    [4    \CP    ]Q`    ^#P    _3`    `    at`    a    cS`    c    e3`    e    g    g    h    ik    jܹ    kTP    l    m4P    n}    ohP    p|_    pJP    re|`    r,P    tE^`    tP    v%@`    v*    x"`    x}    y`    z\    {`    |<    }    ~        P    m    P    M    œP    -    uP    `    WP    `    e9P    k`    NU    M`    .7    /`        v`        _-        ?    P        P        vP    ޵    VP    `    6P    `    dP    `        gx`    b    GZ`    D    '<`    &    X        :    ^        HP        'P        P    o    P    X`    ǏP    8`        `        `    po    g`    PQ        03    e        G    2P    a)    P    A    øP         ŘP    

`    xP    `    a    `    A    ̩`    !    Ή`    |    r    ^    R    @    2r    Ԫ]P    T    ֊?P    6    j!P        JP    ۻ5`    )P    ݛ`    	P    z`        Z`        :`    㲧    `    咉        rk        [P        ;jP    a    LP    C    .P    l``    P    LB`    P    ,$`        `        `    c    `    C    `    #        x    t    P   T   wP   4n   YP   P   ;P   m`   lP   O`   	KP   
1`   5   `   
   |`      \`      E      %   P      }P      ]P   {   =fP   `   HP   z`   *P   n\`   F   !N>`   !(   #. `   #
   %`   %   &   'e   (    )E   *   +.P   ,   -P   .v   .P   0V   0sP   2?`   2UP   4`   4q   5i`   6wS   7K`   8W5   9-`   :7   ;I   <   =+   =   ?h
   ?P   AG   AP   C'   CP   E   EP   F`   G_P   Hв`   IH   J`   K(~   Lv`   M`   NpX`   NB   PYt   P$   R9V   R   T8   T#P   U   VqP   W   XPP   Y   Z0P   [`   \P   ]`   ]P   _a`   _٩   aA`   a   c!`   cm   ee`   eyO   f   gY1   hc   iBNP   jE   k"0P   l'   mP   nj	   nP   pS&`   pP   r3`   rP   t`   t   u`   vj   wҮ`   xJ   y`   z*z   {   |
\   }{   }yP   [p   [P   ;R   =P   4   P   Q`   sP   3`   RP   `   ;   `      `      c`   ۥ   L      ,   i      P   }   dhP   _   DJP   A   $,P   ^`   P   u@`   *   U"`      5`      `         l      L      5P      P   }   uP   ]l   WP   F`   9P   &k`   P   M`   ~7   /`   ^   `   =   `            n   ݡ   N   ƾP   .   P      ÆP   y   fdP   ז`   FFP   ȷx`   /b   ʗZ`   D   w<`   &   W`      @:   Ю       Ҏ      wP      WP   ׿   7P   ٟ   P   ۈ`   qP   h`   SP   H`   o   (g`   Q   I`   3   +`   `   G   ?   )   )P      P   p   P   P   ȺP   9`   P   `   ~P   `   q   ْ`   Q|   t`   1^   V`   @   r   "   bT   ?P   B6   !P   "   P      yP   `   YP   `   9P   `   	"   
`      j`      J`   k   3   M      /   a   kLP   C   K.P   %   +P      
P   |$`   P   \`      ;`      !`   !   "`   #s   $   %Sx   &Ī   '3Z   (   )wP   *n   *YP   ,dP   ,;P   .D2   .P   0-O`   0P   2
1`   2   3`   4d   5`   6D   7`   8$   9   :   ;u   ;   =U   =͢P   ?5   ?P   A{   AfP   B]   CmHP   Dz`   EM*P   F\`   G-P   H>`   I(   J~ `   J
   L^`   L   N=`   N   P'    P   R   R~P   S   T^P   UƦ   V>P   W   XsP   Y`   YUP   [o`   [7P   ]Oi`   ]S   _/K`   _5   a-`   a   b`   cf   d+   eF   f
   g/P   h   iP   jw   jP   lW   lϞP   n7   nP   p `   pbP   r `   roDP   sv`   tX`   uX`   v8B   w:`   x$   y`   y   {i8   {   }I   }P   (   P      P      `P   `   @P   `    oP   `   	   q`   m   Qe`   O   1G`   1   c      E   h   '   RP   	   1P      P   y   P   b`   њP   B`      "`      `   zz   r`   Z\   ˎ   :>   p       R   =P   k4   P   K   P   *   P   `   P   `   k   `   K   `   +   `      |   i   \   K   <}   hP   _   JP   A   t,P   #   TP   @`   3P   ƥ"`   P   ȅ`      d`      D`   ̼   $`   Μ   
   |v      eP   ͊   EuP   խl   %WP   ׍N   9P   vk`   P   VM`   P   6/`   ݮ   `   ߍ   `   m   `   M      -      P   ~   P   ^   ւP   >y   dP   '`   FP   x`   v(P   Z`   _D   <`   ?&   `       `      p      O      /   P      P       gP   φ   GqP   `   'SP   `   o   xg`   Q   
XI`   
3   8+`      !G      )   o      XP      8P      P      P   i`   ~P   I`      )`   |   	t`   ^    V`   !a@   "r   #A"   $T   %!   &6   '
!P   (r   (P   *Q   *P   ,1   ,P   .`   .P   /`   0iP   1ڽ`   2R   3`   42   5`   6k   7zc`   7M   9c   9/   ;Ca   ;LP   =#C   =.P   ?%   ?{P   @   AZP   B$`   C:P   D`         	LMT FJST FJT       

TZif2                                       TVT   TZif2                                  ~6       LMT TVT     
TVT-12
TZif2                                  
LP     LMT ECT GALT       TZif2                                  
L    P     LMT ECT GALT       
GALT6
TZif2                                  	PH|  p LMT GAMT     TZif2                                  	PH|  p LMT GAMT     
GAMT9
TZif2                                  O3       LMT SBT     TZif2                                  O3       LMT SBT     
SBT-11
TZif2                                  	:C^`       GST ChST     TZif2                                  
~6-L    :C^`64            LMT GST ChST         
ChST-10
TZif2                                  CH!qXˉ=aI8ՍsH  lX  zhs`  HST HDT       TZif2                                  tpCH!qXˉ=aI8ՍsHl  lX zhs` LMT HST HDT         
HST10
TZif2                                  U /} j   s`      LINT       TZif2                                  	~7H    U     /} l  j  s`    LMT LINT         
LINT-14
TZif2                                  P6g@         KOST     TZif2                                  	~64P    6g@          LMT KOST       
KOST-11
TZif2                                  	P,t    W@     MHT KWAT       TZif2                                  
~6 P    ,t       W@    LMT MHT KWAT         
MHT-12
TZif2                                  P        MHT     TZif2                                  ~6P          LMT MHT       
MHT-12
TZif2                                  	PLH}8  zh LMT MART     TZif2                                  	PLH}8  zh LMT MART     
MART9:30
TZif2                                  uu U+00 eP  s`eP eP NST NDT BST SST         TZif2                                  ~7[Huu U    +00Y  eP s`eP eP LMT NST NDT BST SST           
SST11
TZif2                                  +˴HBPp  |       ~    LMT NRT JST         TZif2                                  +˴HBPp      |       ~    LMT NRT JST         
NRT-12
TZif2                                  C5`t8`  ^H  eP  NUT       TZif2                                  ~7TLC5`    t8`  ` ^H eP LMT NUT         
NUT11
TZif2                                  A       NMT NFT     TZif2                                  ~6A  x        LMT NMT NFT       
NFT-11:30
TZif2                                  
tPVƜP7@2K3Dp         	     	LMT NCST NCT         TZif2                                  
t    P    V    ƜP    7@    2K    3Dp         	     	LMT NCST NCT         
NCT-11
TZif2                                  b8U+00_  ^H eP 	eP 
eP LMT SAMT NST BST SST           TZif2                                  Ub8U    +00  x  _  ^H eP 	eP 
eP LMT SAMT NST BST SST             
SST11
TZif2                                     ~  PWT   TZif2                                  ~66  ~    ~ LMT PWT     
PWT-9
TZif2                                  5DBx   PNT PST     TZif2                                  ~7.    5DB  x  LMT PNT PST       
PST8
TZif2                                       PONT   TZif2                                  	~6   T     LMT PONT     
PONT-11
TZif2                                       PGT   TZif2                                  
VZr          	LMT PMMT PGT       
PGT-10
TZif2                                  
(?y Yc y9E 蕘"awCY%;h G!ˠ"1#j $%J %'* 'lX  s`  zhCKT CKHST       TZif2                                  ~7J    (    ?    y         Yc     y    9E     蕘    "a    w    C    Y    %    ;        h         G    !ˠ    "1    #j     $    %J     %    '*     'j8  lX s` zhLMT CKT CKHST         
CKT10
TZif2                                  	7p:C^`  ~         MPT ChST       TZif2                                  
~6,\7p    :C^`7$        ~       LMT MPT ChST           
ChST-10
TZif2                                  	PUs  s` LMT TAHT     TZif2                                  	PUs  s` LMT TAHT     
TAHT10
TZif2                                       GILT   TZif2                                  	~6  4     LMT GILT     
GILT-12
TZif2                                  	sB7G8}:P:r@;P<R@  p              TOT TOST         TZif2                                  
~6sB    7G    8}    :P    :r@    ;P    <R@  H    p           LMT TOT TOST           
TOT-13
TZif2                                       WAKT   TZif2                                  	~6  4     LMT WAKT     
WAKT-12
TZif2                                       WFT   TZif2                                  ~6  X     LMT WFT     
WFT-12
TZif2                            z      	
cEt6d'TMD3#ܐ͐㯐ӠÑ| lr!\c"LT#<E$,6%'&'C'4(%)*+,-ڐ.ː/t0d1]2r3=4R562x688a9v:C;X<_=:>A?@f#A9BFCdD%ECFɐG#GIIJKL̿MNOnnPQWRleS7lTLGUNV,)V0XFXY(Z[
\]^_`_a}b?c]̐de=fgg藐hriyjTk[lqm=nSohp5qQ<rfs1tEu v/vxxyِz{λ|}~y                                                                     WEST WET TZif2                            z      	    
c        E    t6    d'    T    MD    3    #    ܐ    ͐        㯐    Ӡ    Ñ                    |     lr    !\c    "LT    #<E    $,6    %'    &    'C    '4    (%    )    *    +    ,    -ڐ    .ː    /t    0d    1]    2r    3=    4R    5    62x    6    8    8a    9v    :C    ;X    <_    =:    >A    ?    @f#    A9    BF    Cd    D%    EC    Fɐ    G#    G    I    I    J    K    L̿    M    N    Onn    P    QW    Rle    S7l    TLG    UN    V,)    V0    XF    X    Y(    Z    [
    \    ]    ^    _    `_    a}    b?    c]̐    d    e=    f    g    g藐    hr    iy    jT    k[    lq    m=    nS    oh    p5    qQ<    rf    s1    tE    u     v/    v    x    x    yِ    z    {λ    |    }    ~y                                                                         WEST WET 
WET0WEST,M3.5.0/1,M10.5.0
AD	+4230+00131	Europe/Andorra
AE	+2518+05518	Asia/Dubai
AF	+3431+06912	Asia/Kabul
AG	+1703-06148	America/Antigua
AI	+1812-06304	America/Anguilla
AL	+4120+01950	Europe/Tirane
AM	+4011+04430	Asia/Yerevan
AO	-0848+01314	Africa/Luanda
AQ	-7750+16636	Antarctica/McMurdo	McMurdo, South Pole, Scott (New Zealand time)
AQ	-6734-06808	Antarctica/Rothera	Rothera Station, Adelaide Island
AQ	-6448-06406	Antarctica/Palmer	Palmer Station, Anvers Island
AQ	-6736+06253	Antarctica/Mawson	Mawson Station, Holme Bay
AQ	-6835+07758	Antarctica/Davis	Davis Station, Vestfold Hills
AQ	-6617+11031	Antarctica/Casey	Casey Station, Bailey Peninsula
AQ	-7824+10654	Antarctica/Vostok	Vostok Station, Lake Vostok
AQ	-6640+14001	Antarctica/DumontDUrville	Dumont-d'Urville Station, Terre Adelie
AQ	-690022+0393524	Antarctica/Syowa	Syowa Station, E Ongul I
AR	-3436-05827	America/Argentina/Buenos_Aires	Buenos Aires (BA, CF)
AR	-3124-06411	America/Argentina/Cordoba	most locations (CB, CC, CN, ER, FM, MN, SE, SF)
AR	-2447-06525	America/Argentina/Salta	(SA, LP, NQ, RN)
AR	-2411-06518	America/Argentina/Jujuy	Jujuy (JY)
AR	-2649-06513	America/Argentina/Tucuman	Tucuman (TM)
AR	-2828-06547	America/Argentina/Catamarca	Catamarca (CT), Chubut (CH)
AR	-2926-06651	America/Argentina/La_Rioja	La Rioja (LR)
AR	-3132-06831	America/Argentina/San_Juan	San Juan (SJ)
AR	-3253-06849	America/Argentina/Mendoza	Mendoza (MZ)
AR	-3319-06621	America/Argentina/San_Luis	San Luis (SL)
AR	-5138-06913	America/Argentina/Rio_Gallegos	Santa Cruz (SC)
AR	-5448-06818	America/Argentina/Ushuaia	Tierra del Fuego (TF)
AS	-1416-17042	Pacific/Pago_Pago
AT	+4813+01620	Europe/Vienna
AU	-3133+15905	Australia/Lord_Howe	Lord Howe Island
AU	-5430+15857	Antarctica/Macquarie	Macquarie Island
AU	-4253+14719	Australia/Hobart	Tasmania - most locations
AU	-3956+14352	Australia/Currie	Tasmania - King Island
AU	-3749+14458	Australia/Melbourne	Victoria
AU	-3352+15113	Australia/Sydney	New South Wales - most locations
AU	-3157+14127	Australia/Broken_Hill	New South Wales - Yancowinna
AU	-2728+15302	Australia/Brisbane	Queensland - most locations
AU	-2016+14900	Australia/Lindeman	Queensland - Holiday Islands
AU	-3455+13835	Australia/Adelaide	South Australia
AU	-1228+13050	Australia/Darwin	Northern Territory
AU	-3157+11551	Australia/Perth	Western Australia - most locations
AU	-3143+12852	Australia/Eucla	Western Australia - Eucla area
AW	+1230-06958	America/Aruba
AX	+6006+01957	Europe/Mariehamn
AZ	+4023+04951	Asia/Baku
BA	+4352+01825	Europe/Sarajevo
BB	+1306-05937	America/Barbados
BD	+2343+09025	Asia/Dhaka
BE	+5050+00420	Europe/Brussels
BF	+1222-00131	Africa/Ouagadougou
BG	+4241+02319	Europe/Sofia
BH	+2623+05035	Asia/Bahrain
BI	-0323+02922	Africa/Bujumbura
BJ	+0629+00237	Africa/Porto-Novo
BL	+1753-06251	America/St_Barthelemy
BM	+3217-06446	Atlantic/Bermuda
BN	+0456+11455	Asia/Brunei
BO	-1630-06809	America/La_Paz
BQ	+120903-0681636	America/Kralendijk
BR	-0351-03225	America/Noronha	Atlantic islands
BR	-0127-04829	America/Belem	Amapa, E Para
BR	-0343-03830	America/Fortaleza	NE Brazil (MA, PI, CE, RN, PB)
BR	-0803-03454	America/Recife	Pernambuco
BR	-0712-04812	America/Araguaina	Tocantins
BR	-0940-03543	America/Maceio	Alagoas, Sergipe
BR	-1259-03831	America/Bahia	Bahia
BR	-2332-04637	America/Sao_Paulo	S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)
BR	-2027-05437	America/Campo_Grande	Mato Grosso do Sul
BR	-1535-05605	America/Cuiaba	Mato Grosso
BR	-0226-05452	America/Santarem	W Para
BR	-0846-06354	America/Porto_Velho	Rondonia
BR	+0249-06040	America/Boa_Vista	Roraima
BR	-0308-06001	America/Manaus	E Amazonas
BR	-0640-06952	America/Eirunepe	W Amazonas
BR	-0958-06748	America/Rio_Branco	Acre
BS	+2505-07721	America/Nassau
BT	+2728+08939	Asia/Thimphu
BW	-2439+02555	Africa/Gaborone
BY	+5354+02734	Europe/Minsk
BZ	+1730-08812	America/Belize
CA	+4734-05243	America/St_Johns	Newfoundland Time, including SE Labrador
CA	+4439-06336	America/Halifax	Atlantic Time - Nova Scotia (most places), PEI
CA	+4612-05957	America/Glace_Bay	Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971
CA	+4606-06447	America/Moncton	Atlantic Time - New Brunswick
CA	+5320-06025	America/Goose_Bay	Atlantic Time - Labrador - most locations
CA	+5125-05707	America/Blanc-Sablon	Atlantic Standard Time - Quebec - Lower North Shore
CA	+4339-07923	America/Toronto	Eastern Time - Ontario & Quebec - most locations
CA	+4901-08816	America/Nipigon	Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973
CA	+4823-08915	America/Thunder_Bay	Eastern Time - Thunder Bay, Ontario
CA	+6344-06828	America/Iqaluit	Eastern Time - east Nunavut - most locations
CA	+6608-06544	America/Pangnirtung	Eastern Time - Pangnirtung, Nunavut
CA	+744144-0944945	America/Resolute	Central Standard Time - Resolute, Nunavut
CA	+484531-0913718	America/Atikokan	Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut
CA	+624900-0920459	America/Rankin_Inlet	Central Time - central Nunavut
CA	+4953-09709	America/Winnipeg	Central Time - Manitoba & west Ontario
CA	+4843-09434	America/Rainy_River	Central Time - Rainy River & Fort Frances, Ontario
CA	+5024-10439	America/Regina	Central Standard Time - Saskatchewan - most locations
CA	+5017-10750	America/Swift_Current	Central Standard Time - Saskatchewan - midwest
CA	+5333-11328	America/Edmonton	Mountain Time - Alberta, east British Columbia & west Saskatchewan
CA	+690650-1050310	America/Cambridge_Bay	Mountain Time - west Nunavut
CA	+6227-11421	America/Yellowknife	Mountain Time - central Northwest Territories
CA	+682059-1334300	America/Inuvik	Mountain Time - west Northwest Territories
CA	+4906-11631	America/Creston	Mountain Standard Time - Creston, British Columbia
CA	+5946-12014	America/Dawson_Creek	Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia
CA	+4916-12307	America/Vancouver	Pacific Time - west British Columbia
CA	+6043-13503	America/Whitehorse	Pacific Time - south Yukon
CA	+6404-13925	America/Dawson	Pacific Time - north Yukon
CC	-1210+09655	Indian/Cocos
CD	-0418+01518	Africa/Kinshasa	west Dem. Rep. of Congo
CD	-1140+02728	Africa/Lubumbashi	east Dem. Rep. of Congo
CF	+0422+01835	Africa/Bangui
CG	-0416+01517	Africa/Brazzaville
CH	+4723+00832	Europe/Zurich
CI	+0519-00402	Africa/Abidjan
CK	-2114-15946	Pacific/Rarotonga
CL	-3327-07040	America/Santiago	most locations
CL	-2709-10926	Pacific/Easter	Easter Island & Sala y Gomez
CM	+0403+00942	Africa/Douala
CN	+3114+12128	Asia/Shanghai	east China - Beijing, Guangdong, Shanghai, etc.
CN	+4545+12641	Asia/Harbin	Heilongjiang (except Mohe), Jilin
CN	+2934+10635	Asia/Chongqing	central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc.
CN	+4348+08735	Asia/Urumqi	most of Tibet & Xinjiang
CN	+3929+07559	Asia/Kashgar	west Tibet & Xinjiang
CO	+0436-07405	America/Bogota
CR	+0956-08405	America/Costa_Rica
CU	+2308-08222	America/Havana
CV	+1455-02331	Atlantic/Cape_Verde
CW	+1211-06900	America/Curacao
CX	-1025+10543	Indian/Christmas
CY	+3510+03322	Asia/Nicosia
CZ	+5005+01426	Europe/Prague
DE	+5230+01322	Europe/Berlin	most locations
DE	+4742+00841	Europe/Busingen	Busingen
DJ	+1136+04309	Africa/Djibouti
DK	+5540+01235	Europe/Copenhagen
DM	+1518-06124	America/Dominica
DO	+1828-06954	America/Santo_Domingo
DZ	+3647+00303	Africa/Algiers
EC	-0210-07950	America/Guayaquil	mainland
EC	-0054-08936	Pacific/Galapagos	Galapagos Islands
EE	+5925+02445	Europe/Tallinn
EG	+3003+03115	Africa/Cairo
EH	+2709-01312	Africa/El_Aaiun
ER	+1520+03853	Africa/Asmara
ES	+4024-00341	Europe/Madrid	mainland
ES	+3553-00519	Africa/Ceuta	Ceuta & Melilla
ES	+2806-01524	Atlantic/Canary	Canary Islands
ET	+0902+03842	Africa/Addis_Ababa
FI	+6010+02458	Europe/Helsinki
FJ	-1808+17825	Pacific/Fiji
FK	-5142-05751	Atlantic/Stanley
FM	+0725+15147	Pacific/Chuuk	Chuuk (Truk) and Yap
FM	+0658+15813	Pacific/Pohnpei	Pohnpei (Ponape)
FM	+0519+16259	Pacific/Kosrae	Kosrae
FO	+6201-00646	Atlantic/Faroe
FR	+4852+00220	Europe/Paris
GA	+0023+00927	Africa/Libreville
GB	+513030-0000731	Europe/London
GD	+1203-06145	America/Grenada
GE	+4143+04449	Asia/Tbilisi
GF	+0456-05220	America/Cayenne
GG	+4927-00232	Europe/Guernsey
GH	+0533-00013	Africa/Accra
GI	+3608-00521	Europe/Gibraltar
GL	+6411-05144	America/Godthab	most locations
GL	+7646-01840	America/Danmarkshavn	east coast, north of Scoresbysund
GL	+7029-02158	America/Scoresbysund	Scoresbysund / Ittoqqortoormiit
GL	+7634-06847	America/Thule	Thule / Pituffik
GM	+1328-01639	Africa/Banjul
GN	+0931-01343	Africa/Conakry
GP	+1614-06132	America/Guadeloupe
GQ	+0345+00847	Africa/Malabo
GR	+3758+02343	Europe/Athens
GS	-5416-03632	Atlantic/South_Georgia
GT	+1438-09031	America/Guatemala
GU	+1328+14445	Pacific/Guam
GW	+1151-01535	Africa/Bissau
GY	+0648-05810	America/Guyana
HK	+2217+11409	Asia/Hong_Kong
HN	+1406-08713	America/Tegucigalpa
HR	+4548+01558	Europe/Zagreb
HT	+1832-07220	America/Port-au-Prince
HU	+4730+01905	Europe/Budapest
ID	-0610+10648	Asia/Jakarta	Java & Sumatra
ID	-0002+10920	Asia/Pontianak	west & central Borneo
ID	-0507+11924	Asia/Makassar	east & south Borneo, Sulawesi (Celebes), Bali, Nusa Tengarra, west Timor
ID	-0232+14042	Asia/Jayapura	west New Guinea (Irian Jaya) & Malukus (Moluccas)
IE	+5320-00615	Europe/Dublin
IL	+314650+0351326	Asia/Jerusalem
IM	+5409-00428	Europe/Isle_of_Man
IN	+2232+08822	Asia/Kolkata
IO	-0720+07225	Indian/Chagos
IQ	+3321+04425	Asia/Baghdad
IR	+3540+05126	Asia/Tehran
IS	+6409-02151	Atlantic/Reykjavik
IT	+4154+01229	Europe/Rome
JE	+4912-00207	Europe/Jersey
JM	+175805-0764736	America/Jamaica
JO	+3157+03556	Asia/Amman
JP	+353916+1394441	Asia/Tokyo
KE	-0117+03649	Africa/Nairobi
KG	+4254+07436	Asia/Bishkek
KH	+1133+10455	Asia/Phnom_Penh
KI	+0125+17300	Pacific/Tarawa	Gilbert Islands
KI	-0308-17105	Pacific/Enderbury	Phoenix Islands
KI	+0152-15720	Pacific/Kiritimati	Line Islands
KM	-1141+04316	Indian/Comoro
KN	+1718-06243	America/St_Kitts
KP	+3901+12545	Asia/Pyongyang
KR	+3733+12658	Asia/Seoul
KW	+2920+04759	Asia/Kuwait
KY	+1918-08123	America/Cayman
KZ	+4315+07657	Asia/Almaty	most locations
KZ	+4448+06528	Asia/Qyzylorda	Qyzylorda (Kyzylorda, Kzyl-Orda)
KZ	+5017+05710	Asia/Aqtobe	Aqtobe (Aktobe)
KZ	+4431+05016	Asia/Aqtau	Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)
KZ	+5113+05121	Asia/Oral	West Kazakhstan
LA	+1758+10236	Asia/Vientiane
LB	+3353+03530	Asia/Beirut
LC	+1401-06100	America/St_Lucia
LI	+4709+00931	Europe/Vaduz
LK	+0656+07951	Asia/Colombo
LR	+0618-01047	Africa/Monrovia
LS	-2928+02730	Africa/Maseru
LT	+5441+02519	Europe/Vilnius
LU	+4936+00609	Europe/Luxembourg
LV	+5657+02406	Europe/Riga
LY	+3254+01311	Africa/Tripoli
MA	+3339-00735	Africa/Casablanca
MC	+4342+00723	Europe/Monaco
MD	+4700+02850	Europe/Chisinau
ME	+4226+01916	Europe/Podgorica
MF	+1804-06305	America/Marigot
MG	-1855+04731	Indian/Antananarivo
MH	+0709+17112	Pacific/Majuro	most locations
MH	+0905+16720	Pacific/Kwajalein	Kwajalein
MK	+4159+02126	Europe/Skopje
ML	+1239-00800	Africa/Bamako
MM	+1647+09610	Asia/Rangoon
MN	+4755+10653	Asia/Ulaanbaatar	most locations
MN	+4801+09139	Asia/Hovd	Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan
MN	+4804+11430	Asia/Choibalsan	Dornod, Sukhbaatar
MO	+2214+11335	Asia/Macau
MP	+1512+14545	Pacific/Saipan
MQ	+1436-06105	America/Martinique
MR	+1806-01557	Africa/Nouakchott
MS	+1643-06213	America/Montserrat
MT	+3554+01431	Europe/Malta
MU	-2010+05730	Indian/Mauritius
MV	+0410+07330	Indian/Maldives
MW	-1547+03500	Africa/Blantyre
MX	+1924-09909	America/Mexico_City	Central Time - most locations
MX	+2105-08646	America/Cancun	Central Time - Quintana Roo
MX	+2058-08937	America/Merida	Central Time - Campeche, Yucatan
MX	+2540-10019	America/Monterrey	Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from US border
MX	+2550-09730	America/Matamoros	US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border
MX	+2313-10625	America/Mazatlan	Mountain Time - S Baja, Nayarit, Sinaloa
MX	+2838-10605	America/Chihuahua	Mexican Mountain Time - Chihuahua away from US border
MX	+2934-10425	America/Ojinaga	US Mountain Time - Chihuahua near US border
MX	+2904-11058	America/Hermosillo	Mountain Standard Time - Sonora
MX	+3232-11701	America/Tijuana	US Pacific Time - Baja California near US border
MX	+3018-11452	America/Santa_Isabel	Mexican Pacific Time - Baja California away from US border
MX	+2048-10515	America/Bahia_Banderas	Mexican Central Time - Bahia de Banderas
MY	+0310+10142	Asia/Kuala_Lumpur	peninsular Malaysia
MY	+0133+11020	Asia/Kuching	Sabah & Sarawak
MZ	-2558+03235	Africa/Maputo
NA	-2234+01706	Africa/Windhoek
NC	-2216+16627	Pacific/Noumea
NE	+1331+00207	Africa/Niamey
NF	-2903+16758	Pacific/Norfolk
NG	+0627+00324	Africa/Lagos
NI	+1209-08617	America/Managua
NL	+5222+00454	Europe/Amsterdam
NO	+5955+01045	Europe/Oslo
NP	+2743+08519	Asia/Kathmandu
NR	-0031+16655	Pacific/Nauru
NU	-1901-16955	Pacific/Niue
NZ	-3652+17446	Pacific/Auckland	most locations
NZ	-4357-17633	Pacific/Chatham	Chatham Islands
OM	+2336+05835	Asia/Muscat
PA	+0858-07932	America/Panama
PE	-1203-07703	America/Lima
PF	-1732-14934	Pacific/Tahiti	Society Islands
PF	-0900-13930	Pacific/Marquesas	Marquesas Islands
PF	-2308-13457	Pacific/Gambier	Gambier Islands
PG	-0930+14710	Pacific/Port_Moresby
PH	+1435+12100	Asia/Manila
PK	+2452+06703	Asia/Karachi
PL	+5215+02100	Europe/Warsaw
PM	+4703-05620	America/Miquelon
PN	-2504-13005	Pacific/Pitcairn
PR	+182806-0660622	America/Puerto_Rico
PS	+3130+03428	Asia/Gaza	Gaza Strip
PS	+313200+0350542	Asia/Hebron	West Bank
PT	+3843-00908	Europe/Lisbon	mainland
PT	+3238-01654	Atlantic/Madeira	Madeira Islands
PT	+3744-02540	Atlantic/Azores	Azores
PW	+0720+13429	Pacific/Palau
PY	-2516-05740	America/Asuncion
QA	+2517+05132	Asia/Qatar
RE	-2052+05528	Indian/Reunion
RO	+4426+02606	Europe/Bucharest
RS	+4450+02030	Europe/Belgrade
RU	+5443+02030	Europe/Kaliningrad	Moscow-01 - Kaliningrad
RU	+5545+03735	Europe/Moscow	Moscow+00 - west Russia
RU	+4844+04425	Europe/Volgograd	Moscow+00 - Caspian Sea
RU	+5312+05009	Europe/Samara	Moscow+00 - Samara, Udmurtia
RU	+5651+06036	Asia/Yekaterinburg	Moscow+02 - Urals
RU	+5500+07324	Asia/Omsk	Moscow+03 - west Siberia
RU	+5502+08255	Asia/Novosibirsk	Moscow+03 - Novosibirsk
RU	+5345+08707	Asia/Novokuznetsk	Moscow+03 - Novokuznetsk
RU	+5601+09250	Asia/Krasnoyarsk	Moscow+04 - Yenisei River
RU	+5216+10420	Asia/Irkutsk	Moscow+05 - Lake Baikal
RU	+6200+12940	Asia/Yakutsk	Moscow+06 - Lena River
RU	+623923+1353314	Asia/Khandyga	Moscow+06 - Tomponsky, Ust-Maysky
RU	+4310+13156	Asia/Vladivostok	Moscow+07 - Amur River
RU	+4658+14242	Asia/Sakhalin	Moscow+07 - Sakhalin Island
RU	+643337+1431336	Asia/Ust-Nera	Moscow+07 - Oymyakonsky
RU	+5934+15048	Asia/Magadan	Moscow+08 - Magadan
RU	+5301+15839	Asia/Kamchatka	Moscow+08 - Kamchatka
RU	+6445+17729	Asia/Anadyr	Moscow+08 - Bering Sea
RW	-0157+03004	Africa/Kigali
SA	+2438+04643	Asia/Riyadh
SB	-0932+16012	Pacific/Guadalcanal
SC	-0440+05528	Indian/Mahe
SD	+1536+03232	Africa/Khartoum
SE	+5920+01803	Europe/Stockholm
SG	+0117+10351	Asia/Singapore
SH	-1555-00542	Atlantic/St_Helena
SI	+4603+01431	Europe/Ljubljana
SJ	+7800+01600	Arctic/Longyearbyen
SK	+4809+01707	Europe/Bratislava
SL	+0830-01315	Africa/Freetown
SM	+4355+01228	Europe/San_Marino
SN	+1440-01726	Africa/Dakar
SO	+0204+04522	Africa/Mogadishu
SR	+0550-05510	America/Paramaribo
SS	+0451+03136	Africa/Juba
ST	+0020+00644	Africa/Sao_Tome
SV	+1342-08912	America/El_Salvador
SX	+180305-0630250	America/Lower_Princes
SY	+3330+03618	Asia/Damascus
SZ	-2618+03106	Africa/Mbabane
TC	+2128-07108	America/Grand_Turk
TD	+1207+01503	Africa/Ndjamena
TF	-492110+0701303	Indian/Kerguelen
TG	+0608+00113	Africa/Lome
TH	+1345+10031	Asia/Bangkok
TJ	+3835+06848	Asia/Dushanbe
TK	-0922-17114	Pacific/Fakaofo
TL	-0833+12535	Asia/Dili
TM	+3757+05823	Asia/Ashgabat
TN	+3648+01011	Africa/Tunis
TO	-2110-17510	Pacific/Tongatapu
TR	+4101+02858	Europe/Istanbul
TT	+1039-06131	America/Port_of_Spain
TV	-0831+17913	Pacific/Funafuti
TW	+2503+12130	Asia/Taipei
TZ	-0648+03917	Africa/Dar_es_Salaam
UA	+5026+03031	Europe/Kiev	most locations
UA	+4837+02218	Europe/Uzhgorod	Ruthenia
UA	+4750+03510	Europe/Zaporozhye	Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk
UA	+4457+03406	Europe/Simferopol	central Crimea
UG	+0019+03225	Africa/Kampala
UM	+1645-16931	Pacific/Johnston	Johnston Atoll
UM	+2813-17722	Pacific/Midway	Midway Islands
UM	+1917+16637	Pacific/Wake	Wake Island
US	+404251-0740023	America/New_York	Eastern Time
US	+421953-0830245	America/Detroit	Eastern Time - Michigan - most locations
US	+381515-0854534	America/Kentucky/Louisville	Eastern Time - Kentucky - Louisville area
US	+364947-0845057	America/Kentucky/Monticello	Eastern Time - Kentucky - Wayne County
US	+394606-0860929	America/Indiana/Indianapolis	Eastern Time - Indiana - most locations
US	+384038-0873143	America/Indiana/Vincennes	Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties
US	+410305-0863611	America/Indiana/Winamac	Eastern Time - Indiana - Pulaski County
US	+382232-0862041	America/Indiana/Marengo	Eastern Time - Indiana - Crawford County
US	+382931-0871643	America/Indiana/Petersburg	Eastern Time - Indiana - Pike County
US	+384452-0850402	America/Indiana/Vevay	Eastern Time - Indiana - Switzerland County
US	+415100-0873900	America/Chicago	Central Time
US	+375711-0864541	America/Indiana/Tell_City	Central Time - Indiana - Perry County
US	+411745-0863730	America/Indiana/Knox	Central Time - Indiana - Starke County
US	+450628-0873651	America/Menominee	Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties
US	+470659-1011757	America/North_Dakota/Center	Central Time - North Dakota - Oliver County
US	+465042-1012439	America/North_Dakota/New_Salem	Central Time - North Dakota - Morton County (except Mandan area)
US	+471551-1014640	America/North_Dakota/Beulah	Central Time - North Dakota - Mercer County
US	+394421-1045903	America/Denver	Mountain Time
US	+433649-1161209	America/Boise	Mountain Time - south Idaho & east Oregon
US	+332654-1120424	America/Phoenix	Mountain Standard Time - Arizona (except Navajo)
US	+340308-1181434	America/Los_Angeles	Pacific Time
US	+611305-1495401	America/Anchorage	Alaska Time
US	+581807-1342511	America/Juneau	Alaska Time - Alaska panhandle
US	+571035-1351807	America/Sitka	Alaska Time - southeast Alaska panhandle
US	+593249-1394338	America/Yakutat	Alaska Time - Alaska panhandle neck
US	+643004-1652423	America/Nome	Alaska Time - west Alaska
US	+515248-1763929	America/Adak	Aleutian Islands
US	+550737-1313435	America/Metlakatla	Metlakatla Time - Annette Island
US	+211825-1575130	Pacific/Honolulu	Hawaii
UY	-3453-05611	America/Montevideo
UZ	+3940+06648	Asia/Samarkand	west Uzbekistan
UZ	+4120+06918	Asia/Tashkent	east Uzbekistan
VA	+415408+0122711	Europe/Vatican
VC	+1309-06114	America/St_Vincent
VE	+1030-06656	America/Caracas
VG	+1827-06437	America/Tortola
VI	+1821-06456	America/St_Thomas
VN	+1045+10640	Asia/Ho_Chi_Minh
VU	-1740+16825	Pacific/Efate
WF	-1318-17610	Pacific/Wallis
WS	-1350-17144	Pacific/Apia
YE	+1245+04512	Asia/Aden
YT	-1247+04514	Indian/Mayotte
ZA	-2615+02800	Africa/Johannesburg
ZM	-1525+02817	Africa/Lusaka
ZW	-1750+03103	Africa/Harare
                                                                                                                                                                                                                                                 n   .       ..  o   firmwareq  lib                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    o   .   n   ..  p  
mfc_fw.bin                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        X                                                                                                                                                                                                                                                                               @  `                @  `                @  `                @  `          `  c  D                                                                                                               !H~       x) @iJ  J P D                                                                                                                                                                                                                       !H>       x) @iJ  J P D                                                                                                                                                                                                                       !H       x) @iJ  J P D                                                                                                                                                                                                                       !HԾ       x) @iJ  J P D                                                                                                                                                                                                                       !H~       x) @iJ  J P D                                                                                                                                                                                                                       !H>       x) @iJ  J P D                                                                                                                                                                                                                       !H       x) @iJ  J P D                                                                                                                                                                                                                       !HԾ       x) @iJ  J P D                                                                                                                                                                                                                       !H~       x) @iJ  J P D                                                                                                                                                                                                                       !H>       x) @iJ  J P D                                                                                                                                                                                                                        c        (@  @          $ c                                                                                                                                                                                                !HԾ        x) @iJ  J P D                                                                                                                                                                                                                       !H~        x) @iJ  J P D                                                                                                                                                                                       !  A' @`c    ` $     
       @`H@c  c   `      A H D !                                                                                                 @ 0    @@ ƨ @   h 8#    f c  #       e c  #    H D     (08@P X$`(h,p0x48<@DHLPTX\`dhlp H D     a      ! A  a$ ( , 0 4 8 !< A@ aD H L P T X !\ A` ad h l p t !   $   `      `    c  `         k       k       k       k H D    `  c@  H    $    `@ c@  H    $     `  D      @@      $4`xVk  d H D   4`xVk  d H D   4`xVc  H D   4`xVc  H D   4`xVk H D  d H D  ! H D    H D` H D     ` ` c  k        ` H D k                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             @ J JP                 `  c  `    !  @T B  D   ! Hԁl             ! H D ! H D      H D     c  c H D      H D     c  c H D    0%
    c   8  0% c  c H D   cH   d H D   H e!  k kH8 k0(k H D     `c X#    A c  # k H D   ! HP`p \g  C    Od 8   jLd X `      k       ℨ  j     n X  #  X  K   `  `      `<c   d e      ('d   j `   <[ ℨ  j 	              ! A   H D !! HP`p    `\gc   ΄ `8 < ,  `  `   ( @  d 8#"     h @e l       e  `g (c
 c l @c   8$       { @L   8	      `{c   v 8#      ℨ   l   (h [ c ( c   c @   c  c 8  hX  (l   8     h fXh 8   l ,       ,  d 0  @l e 0#        N `[c   <0  d g   l  d #     d @  c   c c  N (c  c   %  t
l j #K      n  x0   d #     d    #(      r   %      n |     @|d       N  j 0#      @`c  c
Td c D
X  0E  H 
 @`c  c       ƨ 0L   @ d P     H@Ԃ   l  r   ("      ք\f (       n  ($     `f P#	       n  P     ?   l  n [  @  c   P    `  v  P       N  j j       n  \    c (9c   l  ք3 df Xc   cX       @ e @c PC    鄨 P"  lt  ` 3     0C8C4C    `    `    ` D	    鄨  l  (Խ    0  n  [ [ƨ @l  0 Ɯ  0#  Ą
+ [      [ @c3 (+ 0	ԣ     Եb   l P  0[  4383b   l k  lb 4[ k8[  \  lb  (J  n  \ƨ X
 0c      @   |  vb   l   kl ń   DX
D   ` D	      &,   `D  D$      ⥨  (L 0  N `  $0   pb   l   k  l ń 8  HX
H   ` D	    8& `H  D    `c L   @L ⥨
 (L  NLb   l  TX
  Nzb   l  v $  |X
  Nl j #       n   @jb   lX
fb   lxX
 [,b   J X
 @   8  l(   8  p  `s, `  n  p0l,0  ! A    A     H D$ !! HPl   C `c      0$        ` $     (h 0      \g  j    0%
   ` @ 
 @T   e!    c  g c 0C      \g  j    0%
      @ 
 @T 0  e   0c @ 
  ` @T   e c  @T  d c   ! A H D !! HP`p  C   `\gc    `    8   `       f   `0      @`c   `   $q    D `
%        (ԝa   r   ` P
  ^   K]    r   +U         Ν `        ` P       ` $       d (#I      @`c  ! ($2    D  ` 
>     Za   r  K ` P
  ^   K    r   +          ` 
       ` P       ` $         7a     X3a    _k      `+a     X'a    _k         ! A    A   H D  !! HH   èD c m    `       ` hk      K    `    `      Xc  c  0cD H%      fh  Ԁ 8  k fd x# k  ! H D !! HP`p $(, \g {   (  \P` H(H   `  X
   8      `  |P LX8X4XԨ0X  D hL  m     L  ` F      e   (#    @`c   (c      `2k0 8i   @ X   (H ` '  i&    
H   d      1  8 8  @ `2k e4  @ C   ć X 	Ý X	P a @    '       | Ä  p 0  `  ` &      * H  Ν R ֞  Z `  8 4  0  L a Ɯ k8 4(00ԗLXԄ`   \ J  P a ~`  X
  |   c X h0  MP as`  PH0 a  	P a  l`  X
0  2ƨ  | 0 X  c  ` X h 0#  P a { hk  ` 0%    `LD@<  H hL  m     L  ` F      e   (#      @`c   (c      `D4k< 8i   @   XDDk& ` '   (H    
H   d      1  D D  @ `H4k e@  @HC   ć XHHÝ XHP a @    '       | Ä  p 0  `  ` &      * H  Ν R ֞  Z `  D @  <  L a Ɯ kD @(<0ԗLX_   \ J  P a _  X
  |   c X h< DDP a_  PH<   DP a  _  X
<  D4  | h  c X      \_ P aX
  ! A    A    $ A( ,  H DT !! HP`p $(,4  D `\gc [ƨ      0e0     `    `( Ɯ @`c 0 Ɯ 0  Ä 0  c  }   0  [ƨ0 0 @`c  c     ` p      R    Ҫ4    0\     r:_    K X p+        *    `  nd    E      ` *=      *       ` *       e ,      ` *$      Z  ֞  
       ` \       e #4 a      *     ~ `\  c  c   C!   c c   ^   rX^   rX^   rX^   rX  ~ `\  c   0      0 a  ! A    A    $ A( ,  H D8 !! H  Ĩ   {      d c H   H`   `     ⥨ (f     [ (  d   (     h h(`(\(d( (  ( ℨ  fl   HԨ hh g    [  h   (    (Ը(h Ȅ h f-      [  h    ( Ԩ h [ ( 0    ` %  0 fc  l h  #      h\d`p h  #      h\dԴ h` f ( [ (  d   (      [  h   (      [  h   (Q    `  (Ԍ(t Ȅ  (f<  A 0e  8      h 8cl h    #"      x h 0 d\     `  ddԴ hdh  h        [  h            t h(   p h  #      h 0c\Ԑ h 0c` (	  A (f        h8c (\  Բ [ (  d   (     h  (G(  m        ` h 8c [  h  s    #      Ȅ      `f  è  `       `  e       k   i      I   g  g x#   )   h   c  ` ]      Ɯ       
# h` 
+f +c0   0I    `  I  d `d x#
   )  m Xc  k   (   s   0#       m   ( l h 0#      | h   \0Ԁ e f  c 0  `  fdԨ  h(dp h 0#      h|   c\   h|  (c  c`  Ȅ [  h   (    (Ԥ(h 脤 h g
      [  h    (Q Ը N(  ! H D !! H    % Ƥ      C   (   e  c @   ! H D !! H      & g      
KK  C    8 H  g(C ĸ(c 0    f  c x   ! H D !! H  &  Ũ   (&          ( (  d     g  0#  ` 	         h (  ! H D ! @` c    H D   ! HP`p $    Ī      G  ` 4    H `Dc @焨    @` c   `c    `(c     `         @`  c V ( @`@ c ` 3h     <焨 @`  c    ń   0 0      0  ` $        j     %   `  0焨  j     %      `xc     d c H焨  c   l  ` %       l c `    @H  @   r    c       g   j `c  c 
b   e!_  `_     `|c   `       ` 4      f   0   e P鄨  c j  c 0       (焨  j   0      儨  e j   d 0        鄨    j  c (  c `c   d (      ` 4      f (        p
    Th   eU   `Dc @焨 E   @`H c @L    c    @`D c   ! A    A    $ A H D( !! H    @`c   ($      @`X c   (      @`Tc    `        @`c @    dK eK # ܄     g        @`  c   d  c 0#      0)    ` `h 0      ܄  g      @`  c   d  c 0#      0)    ` `h 0     d   O ` ℨ  g  c J             @`  c     d  c 8#      ` +  f `f 83      @`  c   d  c 0#     ` )  f `f 8     @`  c   d  c 0#      ` +  f `f 8    h      `   P `   N ` @`c @m    @`c    K djK %  ! H D !! HP`p   xᥨ `jc (  Ä   ą 8 `4c     8票 8 (L  f    8    T @b x  ` c 饨  J (4Ν  r      p    ǌ `Uc   (&%   \  @!         `( `
x9T ,0p|At)ԀԄ9(( @,p$0,8((k   tt  t (c   t(    ! A    A  H D0 !! HP`p  C xᥨ `jc (  Ä   Ć 8 `4c    
 8票 8 (J  f    8     @v   a  @ `\gc [ J?  j  c     C  h8(  (  B 4v N    ` $B  ` 
 `Vc\   ;        H H'   pv         l  c      l( c    H' Ɯ pv   T) n x9t!Ԁ)|ԄA  p$8   ((0@   hk ,8t  p (c   t(    ! A    A   H D4 !! HP`p $   { 4票  c (H   䄨   `xc     E d  ҅ N $  ( `jc 턨  Äs    `8c 䄨     f     a      t    `4z l   $l   ( `'Vc[   e      pB   (    # ` c   Ō J   e  c      e  c  0 H(     0$      Ō 8$	     e c  8$2       j J 0   ` $           (j   l$x)|Ԁ!t `z T)l, 0   r$4(Ԅ8 (Ըj ( t  r (c   t(       e c  ! A    A    $ A H D< !! HP`p $(  C 4焨 `c      `8VcL [   ,   lj    8 a  #I      xƨ 8 0J 8J, A `iVc    ҄    0e-   ʥZ      ڄ    B T9  p P     Ψ,  ,83        ,   pP 0 (    l    P ( dj     8 a  #          `{Vc   49ظZ  P  l     ! A    A    $ A(  H D@ !! H {  M   c  Ä  (     (D
  d `B `                          x `\gc 8    d  H 8c   h ƨo  0   8 (  ! H D !! HP`p  j D  ń 턨  é    f 䄨            _ 1 *\      $    ` ` $+     ` 0       `       `jc 턨  Ä?     f 䄨       _           `         `Vc$Z           楨 ƨ (n 0   @h ƨ  E 0  l    ;i A   l  ˪6i B J  l  2i    `c 鄨  奨   ( `c 儨   . c  `c N  f  Ȅ 0  Ʉ 0      (  h V   0X   (K     G   ƨ 0  e t       `       f  @ P     J   P0    ԲA   n `VcY  >  n (焨 楨  n  (    ` 0_ e Pl   `VcY    ,焨  n  c P#     _M   奨e  (Z  `           `Vct   ! A    A     H D$ !! HP`p    E {    c  @  Ä  (f P*        ` $   P$,f0 c  P	  ĥ8f4 c    D8f4 c 
     .f P2ƕ:   6F `VcPY     n p      ! A    A  H D !! HP`p  C 턨 `jct   Ä   `8c 䄨 
    f         4 @J  ^  @ |} x}  j  | ( @*   `c  Ą  e  \ c\     8  Ƹ `xc ? Ɯ 帟  *[ Z   Ʌ 8 @  Ƹ     `Wc  @+ 8j   Ɯ4 Ƹ (,    8    R    Ɍ   (&      (	X  @
%         `  (@ (0C   j (tA  x)|A  )Ԅ1@  ( Ah $@ `n tT)  J  p c P   ! A    A H D, !! HP`p  D   jr   Ą 턨  f   䄨           4 @  
^  @  n    # `     j (c    0  H e 0   @  P e X      8% J     @  o j @p    `  c i    j 8 (c k    h   ) h   ` ~  P e ` x      J @S        j  (c    0e  H e 0d   ` _  P e ` Y      e J @9      j  (c    0E  H e 0D   ` ?  P e ` 9      e J @      j  (c    0%  H e 0$   `   P e `       e J @   @     @i ) 8   ` $'     @i )  #     nX   X   X   X   H e[X Y W   n  x @ix!t|AԀ!   @l @Ԅ!$   e   `cT)1g   nt  8  n @ (c   t(    ! A    H D( !! HP` |ᄨ    c @   c        ` (票 (  d    3 ƨ  0s   o 8   @     ) 4 H `k  4佫   Xq  9  @  H)  ȱ H `k O 佫 X/  9  o   ( 0 8 @ o    c /       Ƅ     
  	 (
 0 8 ,   @ s ƨ @愨 0c   o        8s o     %     y #     @   H  h) @q H o      9  `  @ ｫ ) `k  (  Ho  X  8   x1  g  `tk O 0 ` X/ | 
 (
     o   @` c 	    ( ( ( ( @` c         @$   `  $     (f @*       ƨ 0o   @$     8o H `(k  1 Xo     9   `     @    䄨 䥨  o   ( 0   ! A  H D ! 4䥨   (c  6 7  7 0 ( c H D   ! H     `c @     d @   ܄         @    Ƅ (c 0 @ @`  c    ( 8&      x २  
 `xc ݄ (m -   h @      (c hԀ @`  c Ɯ         k ) h k  8     ! H D !! H i    Ǆ     c  @`$k  @`H c      ˄   d hC   (   H    `ic `           `  gl  ! H D !! HP  c `s `c ܄ + K  k! ` ܥ  (` ƨ  0"     8   ( @#   ) 0 H  8 x+$        @	    x
   H
 `s ko (    x c  @    8     x @k7 ( Ɯ   8 c  `    8
    x) Hk7 ( Ɯ   8 c  ! A H D !! HP`p $(,    @d  æ (    ǫ_   H `  c        ƨ0 (>      `c J      f (
      `Wc  U       ` { `SWc 8  U 88 `jc  {)  `|s H~ `k  >  ,9 X   ( Ȟ `s @ ŭ  1 ~   9 h    ⵪ `{  ~ x ^ ؾ   1 ^        D絪 `{  > ؞    8  `c  `        P   	 
   
          8 @~     `  O  X h  0 c \g  ~ x< 4x  1  ~ > 0\  ~  `c    `}s ~   }`c       `k 0 0 X>     x~ ᭩ `4jc ᵪ @ 8 h^ 0  0	  9 `{ `ic  `k > 0
  ) ^ Dk X   9 `{ `s H  䭩 `lc     l h 0 0 0 0 0 0
 0 00 8U  `4 !
~ 0 a x "> (x  ~ |ܵ  ~      `   
     ~   @  0 c `c @   )    `k    d   ܄ Hc   @ X  d @      hc  x 8 Ɯ  1 @   `  s  d   8⵪ c @  <9  T⭩  @`c ~  h~ @`c   @ @`L@c L⥨    `Dc  1 ^  (> x  Pƨ `s x} |}  }9 0^    > Hℨ } `}c }   ^ ~ ( }ƨ   9 0  } Ȟ  `c   >     `c     @`c   愨`      	 
   
                ~  楨  (4  `\k `ƨ  g 0 \  X x   \1     (  d  @ 0 `[s     t\) 8 H0 a [ d\  h\9 # C c      l}1 8	 8
 8 @40Ԥ8p8Լ888D8 8H8L8  h) `}k `p}s8 a    H X x    t}  > 
       ⥨ 	 (
 x8 8 `c  |   ) 0 H @ `k ᭩  X h> x^  1 `s ᵪ  ,9 ~   (  `0{   ᄨ   > `c  $ s  9  ^  ^ `X{ $ ~ ~ 8 90 {    >  `   @`c   (   ƨ    	 
  
                0~   ?׀8 ? 8   c   `jc @  Ä  ) `k 8  f H i     X   䭩 x h  mX   `  ! A    A    $ A( ,  H D< !      ,x   eƜ0 c @A  8&  `,xk H D   ! HP`p  F   C xƨ   0d  x}) j @     H `|}c     Ҹ  t Ǻ    zf   \gƨ 0J    j,   %1   X           @l )  H 0 c  8@    Ҹ  _   t 8Wf   X         )   Hg )  H 0 c  @@ /                 @l )  H 0 c  8    Ҹ  _   t 8(f   X         )   Hg )  H 0 c  @   ! A    A   H D  !! H    c \g  [)  c   Hd  [) H  #  ` 6      H2      @/  i E,   @*    F(   @&   G$      xᄨ  k   @       ) Hk  Ĝ 0E      턨  k            <) Hk   d @  ` 0C        `  `  ! H D !! HP`p   鄨 `c   l    c$   `Wc(( \gQ  ( `WcQ $    [ƨ `Wc 0 [ƨ  Ņ 0  DQ      `WcQ J$   ʨ(   l   0kT    ` xᄨ  l    ݄  e l   0G      x߄  e l   0$?       , d 0      ,0 `,  $      <ń00  l @  )  Ä ܄ `xc(   f   @ c (8  c l  c4Ԕ  a  Ʉ  0  <(  Ʉ xޥ   (@@$     (0  )  8 8HԞe D0  ! A    H DH !! H \g (   ń   &    `d     ! H D !! H    !    $ ܥ  (  `  d    c (  d     c    c h#      (#  0h  Ũ0h X   H       `  `  ! H D !X! HP`p $(,  Ī   `k ⥨ XV 86   ᭩  (V @ hv x6   `k  X(   hv x  (  턨 x        j       @  
   ç @ 	        
     p P4  | ℨ  v  <票  Մ  (  ) 8 Hh8 `k   X  `   䭩h     f x h'V  Q   jZ   ` `c @d  |  (|  c 0   @`c   P$     @`X c   P |  @T  d c @     @`c @    dK K c(Ԁ @ @ ) `k H X  d   @P c   P$     P4    ` `e   `J     P$       p4    ` `e `4  `  ($   p4       P4    `  ed `#   `      (   (4  ` 歩  ` h    0h @h      lN c c     t  c  C     @`H c     d (#      Xƨ 0  d (#      ` 4      f (m   @H    x|       t  p  (
   t `Xs v   (	     t @ c PC5 H    4  ` 4   `4   t Xℨ  `  V   $T     
 t @ c PC; A  `0s   v `   $  d   P         ` 
 M  `      `(s   d@ c (	        v   ( q  `ܭ d h x `   
 \h @@$R^ Xx ƨ @D  0 @L   | 8    # @ @     `k   X) x  gX ܭ H xc @  @ h @` c  Ņ @`X s      `   @@0J `hrc @  Ä `k `s ( `lrc    x   g x  cT @ H  @   H @` c @ @\ ƨ h 0 h c X h  d c ܥ h (  g  @ƨJ cP( @ c   @4 pcx  
 `  s  l @h  @  J c   x c  Xc x       fc  `  mO c c `7   `jc 턨  Ä  ) `k    f HL    XT   P        m  c  x  d `#        d 0#  @`$c (   @`c @D  h ` @` c x\  @H     `(cx      @ (  `Y @ @` c @ń X    v H?     j`k     c@x XX  *  j x `   g  c   `  `     `   e `       p     %         0)        0*    `  dh 0   0+w        )       *    ` `f         `  j  I  %thԈ ` 4B @lxl a   l   v 0-   ` +     ` 4    \      w  \ X   d #   @ @`$c      c   `4     ̨ .    `  lf 
  n      @\  8  dB c    @V   
     `c V  z @ P#
     0%
     ℨ  v   0	   v    	 h !  i  	    ` 6  ` `k Xv  k  #. <X ᭩  h x8h4x8   `   ƨ P a @`,c  )    @     l 4   c   0c    Hp и  #   @'     H ` 4       j       ` 0      Ȩ @0    `  hf    x  `{k  {4   ` Xv h xV   
 x   ` 
   (	t d 0 (	 x  p p   @C  0 a8    H0 a   k (#-    (0      Ũ ` 0       f   8   T  `  s  xx ؤ   c c   (O	  (FC	  @ 8>	      `       v    00          '    ` `e    0 a8    H0 a  k 0#  8   ⭩ x `s   hv      00   `WcfM    턨0   v    0 88    g (#   %P  (      l T a   c   hc  @  Ä`  a 0x  c X   h  (c 8c   H H g H  h P g x     k P ! X Hx `s B c  @xc c @   0  ` T   ` Q   T      w       ƨ h xc  0c   V  R  (N P g ` H       ()      `       f (     )      Ĩ (    `  df (    0)    @  D (    `  dj (   ` ) 0   ` )
  P  m  @8c P   `  s     )  H l   歩   c   c    hV xV(  X 0     ` 0     `         `    `8   @@J     j H#  8   ( @\ ƨ 0  dB c         @`,c   `          H0    ` `e H
  0     8    f (  c c 0    h 8#         @0    `  gd H
      `k   X     f (  c c  8)   ` @0&      (筩 h  d c H   `   8`  x d  ń^ c (  0ew   v `xc 儨 V  j v  c   H$c     ` P    8   g (#     `       f (      @`$c     c    0n	   ` @\  h  dB c  `    `<   o 0#    ` N  \  `s @     @`(c   Ǆ (  &  \  }   v          /   v\   @  e P     X   f P      @`H@c    `  C      @`c     @ @`c   C     Ƅ  0g @  8f @         ) `k H X  d   @  ƨ g    8 @` c    \  @`c h ` X a   h @  v h?    `  X         ` \     pl p  8&
\  `WcyK 13   `jc @ @     ) `k  Ä 䭩  ( X H  f   hP    @`$c     c    %,  |  0/%     `s v   0$       v   0$	     ℨ  v   0$
        `{     M        v  G         `|       `X p  p( `jc    Ä  ) `k @  f HD    XP     ` $  $⭩ h  l P
      } xv   P    3.   v  `  h     x p     ℨ  v   p  x 8V   `     `   d  {   @c v H `	  X ` `Tkd  Xc v h l ` xv   0
    \g [ V  r  c   p$      `      x  (#"   @ ƨ 0v   ($   \g 8V  r   %
      l @v          r    `{k Xv   c `       { V   @`(c     c    r<       86  \   h `\s  `\k h   X \ 8    x  , h    04 \  @`@c   ( ($   (  ` $     0g (`      h (#\    @ 
 @T 8  e8c  @T @    v  (Ա     P+D      `jc `k  Ä 䭩  X  f hE    xO    `(s     d c 0      | @`0c      `c    @`4c ( p}  v   0$	     @`c P^`>    @`c  \ X  0 P 0Բ   v2   
S         i c 0C       r  0$
      @ 
 @T 0  e0c @ 
    @T @   eHc {   hV     j t   xv?   c @   c   c 0  x   v?   c @     8 c 0  \⭩     `   h @    f   x  c   c 8 @  ) X Ɯ  ,   v  r  \g) HV \g (V  ҄< f PO    ҩ8  [ 8 e  
#c     [) `[k H X  e  
#c     `y @ 
      [ {ƨ8 g ( 0V   Ą
3e @( ` 3c (  r 歩 `jc h @     `s  Ä   (  x  f   N         `          [8  @ Ą  e
l,   vx     vM   lܥ xƨ (  v pԕ  0Vi   xᥨd (Vd   v     `WcI      ~;	   +	     W   v8      @ @v     H `   p  XԠ   ֨ a hԔx
  ` D     @`c     @`c   C   8f @  0g @       Ǩ  r   f   Ü 0   `\gc  V  r  (      ᄨ  v  c      (      T⥨  (v 0    8   (
     r  c 0#  (#  D @ (  `0   v ` 0   v  )   HV  j (#      ` k Xv   ($	      ⭩ hv   ($   `   ` x 0  `   $       j   `#       8v   `$        ('{  (0      Ũ ` 0       f  @ P      `Ds v   P$   P'	      T v   P      @`c  ` XH    `hc|(   v
    P   X }  v  Ä P        \ (g     %7      \  @g    %/      \) Hg P  2 d\   xI  j `      p\ `l\s (	  [h  i    Ä (
3d3c   [ƨ 0i   `      p\h 	 8i @  j `#     h X       `[k X  
+d+c        { hv   `%    ` $ xv   ro    ҄ `p\k Xfh    ($      t\`c h   $     d Ƅ 0  ҄ [   xf         h fX    ` $
        4 e $     0 , e  #H    p  v     0	       8V  j  #3       ҄    @8 f   f  ҄   f@ 8   , e P#     < e P     8  d c   )   Hv    %.   r d\X  8c    0Ԋ @8 e c   v  W0   v    @
 pܥ (v 0 @  i  .    P+Q   `+{d  `8I   Xℨ `     $     0z   v |   8  x)  d  $ ` c a @  Hc   v      Ä (   @` c 0 (  c @  0  c @, ƨ P8 x `        `jc   Ä 䄨  )  f   _  H  L   ,      `XcG 33 歩 @` c h     (    `}   r `\k  Xc h `c @    )   `jc `k (  Ä 턨     f H   XaL    魩   hv   0      j 0       xv   0         `     `   `       `   `jc @ @     ) `k  Ä 䭩  ( X H  f   h'L    0 a xv     `       `e4    
  `hs    D D  `   ҄ P  X
 Lℨh &   `[k H Xf 8  c l  ` $    ` H⭩, Ƅ h 0  j   H#6      `c  v   R  f Hc   h   %&    ,  H%   `   	      %       g H       r [    c   (       h (#	      ($       h (#       `d   e   (    ƨ 0v   ($   x 8v ⭩  ` @` c  Hd  hd v H  c X     @ 4 xd v  c X     @ `s @   `jc    )   (  Ä 턨    H       䭩 x6  f `s@  h V  @	Ԋ hK  X
      `z  H xo  h܄N   V `+1 X
 ƨ L 0 8  e     `c  ҄H    h f $3   @V, Ƅ `&
   ` `Hk  Xv       ` &%  d  H⭩ hv   `  d   r [   xc   0	      `Ps v   0$      0%  d  P v   0$  d  d   d       8  'b     z   0#Y       x 0#Q   a 0#H    ⥨ (  d 8#A        @  e 0#:      `k  D) Xv H  c 8   d @ P#(         `      Hℨ  v (  r [  P)h  HH a xc h  c   l d P#      Hƨ,  0v   H 8v @   v   D⭩   h x D  `Ds  xᥨ (v    ` @` c  8d  @d v 8  c X     D  4) Hd v  c X     D 歩 `jc h @    `s   Ä   䭩 (   f  䄨 x   `   h6 D  xV      	    ` $   0$  D) H3 2  `Dk   X, h 8#)  0$         (    `  gh (     `Ds   `Dc  8Ԛ 0 `<XcD    `T      `X 縸 㤶 H g{X y w   @   `jc    ) `k (  Ä 턨    H    f  J  X      `M  `jc  )  Ä  \g `k H @V   X 䭩  f   I  h   `  x    r   0   0Ԉ Ԍ Ԩ d Դ ` \    P d `   `X  H d `s @` c      (  `	     v  #  R     F    ` jcL  P  `MXc1D      j)   Ʉ  `\gk h  f x XV   `s   J   VI L 饨  r ( [   8c ƨ   0  # @  ƨ    ` H  z X
 h `   (` ( xV  j c 8  u   j  @ c Pw  `jc   Ä 䄨  )     f   HYI   L a  , d P#      [  hd x     `[s  d   A   e  ~   |   `js   ӄ 䄨  )     f   H)I      `[k Xe,  $
    c x   魩  ̨  x h  jA   x   [ `s xe  Ä   x  j v `#  0      0  `  4    `kXc }C          `Xc\ @`$c @,     ń  v xV0 `s X
 v X `XcaC 33 `jc @   Ä     8 @  )   H `k  f   H  X      `S  `x}s |}     d  \ c  + d\ c  @`
+ 0dl Ԩl0th h `jc 턨  Ä  ) `k    f H    XH    ` 4      `XcC S    `XcC R 0       ` x
  4      `Xc}BX @ >  e `jc   Ä 䄨  )     fK    HZH    `k X   `jc 턨  Ä  ) `k `xc   V   H  f  BH  X  ` 
     v    `jc 턨  Ä  ) x `c   v   H `k`   V  f  
!H  X  `Q+    X
  ` $   Y     ⥨ (  n '      @` ƨ  D 0   e  c `      E  F     `  *      `*     `)+     nX  K    X  r c     n *      8v           @ `Xc`B 23  ) `jc H @    `k 䭩  Ä 渚  ( h X  f   xG   =     8u ` `(sd     h  $ Pƨ ( `k 0 X 4㭩  Ʉ hc   v ( 8   8 Ƥ  ` 
   x `s    v       c     d (  _ d ƨ 0v (_ d (? `` a 8 h`  8  4)\ k hc H X h` c   4y+TyC     X⭩  h  d (#     x `s  v L (	   v | ݥ  xƨ  d `   c $  ( ! 0c   v    Ä (   @` c 0 (  c @  0  c @, ƨ X8 h   x `    9   `jc `s  Ä  䄨  f  _    `jc `k  Ä 䭩  X h    f  G  x   lC      v
   v |ᥨ @  (v     0` %M   e  p #+  0  0 0
 0 @` c  `  ,   ` c#   H x᭩ `Hs h v D     c x6     ` 8      3 8	 @`, c X    `jc    Ä  ) `k @  f HN    XF   0    `  v h

      v$) Ծ    xƨ  ݥ  (    0c   v   ( @` c   ( c  Ԩ     v  4      `jc   Ä `s ⭩ x     hV  f   F   @h  (ƨ  | 0V   楨  )  Ä ( `,k   H6 X   䭩   h `s h v  )    H  @ sc 6 ^ ƸP O  	 `s_   1?    0 a V  x 8 0 (  
   (
  `jc   Ä 䄨  )     f    H0F    `Xk  ` X   $    P#   v   `jc    Ä  ) `k @  f H   XF    @` c     hV   `jc 턨  Ä 䥨  )    L` (J  G   f HE    `!Yc{@   0 a   v:  h    vZ( x `Xs   v P?     ~ E    y       4   t    x   8$  0x ` $        ` $      Ũ0h 8  ~  	     ~  c (C    ~ `s  ` v   $  0 ($  ~       ~    X X `<Yc$@     `c |}   ) x}  Hv `s   x 歩  c  h  Ƅ    0` `ZYc@  `Ԛ   @`c @v    @`c    K K  s( 稩C  8P     ! A    A    $ A( ,  H D !! HP`p $(, c  ĩ {0 ( `|}c x}ƨ   "N  0A      ܆M `      ^ D  d `B `       t @ƨ c 0 cԄ           `c 䄨 N    n      j    #       l  #     @  @@ Z ť  @` c (    @` c @    Dƨ ( 0N  vN    `HcA   X
ԟN   v 楨 X Lƨ ( 0n    ` D5     @`c  0 (n `c 愨 . 楨  n ƨ (   0 @  ƨ  0N    j   އ   ˄  `  8	    @  j   c   0      `    "   /   `{Yc .?     @`c         @` c0      (Ԡ `   I u   e e tb  `jc 턨  Ä    f 䄨       ~D     ! A    A    $ A( ,  H D4 !! HP`p  MM  ĥ@     ܄ θ  l @   @ X   @ ,    @  e    c ) @H  @` c     @ c     d @ @, c @ @  e    J c jX  c  E^   c @ 愨   @0    䄨  f  
 J c   c   Xc @4    @`c    @ @    `  @` c    @ @ ,   `  @` c hD   j     `    	    ! A   H D !! HP`p  C @ ΩL  L@     `c      `jc (
  Ä   H  f h x 䄨 H      C   (饨 (j   -       )  H xj  
 , @H   N x)    ) `     H     H  M @ )   J h	 h @  ) @`, k P	D J h԰ J 
	     x      H         ! A    H D !! HP`p   }  Ū @  C       `b   `\gc J  r,  `
      ℨ  j             j X⥨  (j    %D      r  ,   %'  `  0 @  l c    ` $       ( @   d      d 	      鄨  j        xᥨ   (  l      @   (#        `    ` `f `    @(  d `     (L    ?        @j @\    @   @`X c      f ( c ܥ @  @` c     ( c    $ ( c ( @,  `      hJ X c   ҄ ,     g @4 @J c c Hc    @` c     `	    ⥨ (j           | @j  c  #      c ݥ  x (     @c   j   ( @` c   ( c   @   n ݥ H c 愨  
 (   xߥ   (c  Ą j @    0 @   @`$ c 8 0,  c   8  
      @j          ` )        @`, c_    `jc 턨  Ä    f 䄨       {B     r  ,   %
      ⥨  (j    %	          
  `J   (
    
F    ` `c   x)|A   d  4)t1Ԁ @  e 0( $0(@ ,   4 OL $      j   d  j   %      `0c   l c ` %      0焨    l c 0票 (   j  r           "    ! A    A     H D8 !   @`(c   `xc   ` $C       f c xƨ 0 ƨ   0c   e   Ÿ? ` *     @` c    @`c    @ ƨ @`,c (   g 0? `         @`c    @`0c   (  @`(c           @`c    @ ƨ @`c 0      H D   ! HP`p   ℨ    c  C `|c      P      e 0#      e 0#    `   0^$     p'  `  ! A   H D !! H    ť   (d  c +    `  # ` `,c          d XC    x
   cH d   (         d c h     L d   (      H Ɯ     `    `D d  ! H D !! HP`p  ĩ    C   @    e  #    @` c     J  j Y  c     D     *     \g d\ @L  ҄    f   (      *    ` `g (
      h\ 8  d (#     @   h\    g   $     ⥨  (l    0  [ ` *   @  [ƨ ( 0g   .   p   \8 g @  \@  @     8 @ @8   p @L      d   #    
  ⥨ (l   $  B  jΩ    ΄ 䄨 @  f       @   F  l  j       r8 2+ <e  j   C   ΄   䄨 @  f       @   v  lo       `jc    Ä 䄨 @  f       @     ƨ   (l 0 8\ 8 `jc    Ä 䄨  @  f       @    4   lB       `jc ᥨ    Ä (l   @L 턨 8,      f @ 䄨   ᄨ       ( (	     8
 8^@  $   l       ᥨ   (l        `jc    Ä 䄨 @  f       C@   '   l  ! A    A  H D !! HP`  C `}c   j   l \g  j  Ä   `Lc    `[c  `<c   J  `     X 
 Ԙ`    ! A  H D !! H    ` `}c   d X#     ` \g \ܥ  ( (  8   <d       k <ƨh  0h   (      k 4܄  hl   c        k h
   h      8ܥ (hp    (      k @ƨ  i 0 [ƨ   0c  c      (   (#       `Tc(k  Ʉ  [   (f  c      k (   (      `[c  Xƨ 0  Ą  e 0      k `{c     g  %    D܄  Ʉ  ht           k Hܥ (hx    (      k  g   %      L܄  Ʉ  h|           k Pܥ (h    (      k  ! H D !!HP`p  C   `xc }  (, j       ʄ$ ( 
4  ` ƨ  0 X  d (c   (G  (D>  `  ` 3    \ j  [ {   @  8 ` 
@d j    e (  l pc  Ƅ0,  @  p @D   `  `    p `V     ` 
 `      
   [    ʄ (T0  d H       [,( @j [  c ( [ƨX 0    {\  @   [  Ƅ  j`(   ܥ  c (dH@ [   (j  p\  @  cLh jh     h j  #       $@, j H#     D (f  h(l@ H
  p,t(0x@4f|8Ƅ0 ᄨ  l  c H#S    \ \ƨ (j  \ 0 @  c    Ԥ Ԡ( `\  n 8  0   @  @   e c    P$      (票 (   d P'      d P      x}ƨ p 0 |} Ĕ 8     Ƹ @c8  H l @  0 8m  lQ  lp        l     l   (#    `\c \ƨ ( 0j    c Աd  ƨ(   0 @   4ƨ   0 8 (     @\  0 4䥨 8 (c` 
 l  @  ``  p ƨ(  4 4 0 8     @c ( l` 
  \  ƨ(    0 8     @c ( l\    @  d c       8 `c  ! A    H D !! HP Lܥ (  4 8 @ Pƨ  \) 0C H `<k  X @  T) k H X# k Xc  ` X X ( ( ( 0	 ( (
  ! A H D !! H \g  \) ( H   @ܽ `<s8  # < [  {)   `4sh  ( H  l   T) [  H Dܥ s  8) (   [ c H P܄ s (  #  Hܽl   ` X   cp h    x      f X       ) H
  d X#     t  (x ( H ` $     | h Ԁ  @  ! H D !! H   c  ` 7   $$  5     \ℨ  e   u 0G      Du    ( c        ` /    `     H q ` G    `h   0#   i 0'      ` '      o 0      \ℨ  i 0'   e r     )  ` @ k  `      `\c     8 s ` GK      h 0#4   i 0'        ` '      q 0   05      \ℨ  i 0'   e r      )  ` @ k       r   \ƨ 0 Xƨ   0i e  c Ը 0      \ℨ  i   G e    \ƨ 0i e X  h 0#   i 05 ` '     `sc  `tc Ը 0      \ℨ  i   '   e s   t   \ƨ 0i e x rs   \ƨ 0 Xƨ   0i e  ch  0      \ℨ  i   GZ e    \ƨ 0i eU X`h         h  #      \ℨ  i   '   e sB   t>   \ƨ 0i e8 h$   ! H D !! HP`p  C `\gc     e |ᥨ$)  (7  ` `t    `c X    ` $     ℨ    g 0  `       ℨ  j   0      `c   dc       e  p#      ⥨ (
  p   (}  `  l@ #a        pX   ` ` jc             l pI      (⥨ ` (  7  (  `    d  l|  c j (*  j ℨ    j  c       l|  #  ` { (  d Ɯ X	   8
 X%   (  h c   H   ` K   d 愨  c j @   P Ÿ @` c 0 (<         j         @   j  n    + X `c ℨ     f pc    #    (   $    `c   d (  c    j  n    pw X `c   d\ c  ! A    A H D !! H @   d܄     `܄      %
     @ ( (    @ (Ԑ     ! H D !  è  ` %f   ` 8E  ` 8D     `   0 c X  `` &U      ` X%Q     O    ``` &K   ` X%   `F    ` %C     A    ` @>   ` @D;  @` 8   @&   ` X%3     1    ` ` &   8& ` %   '    `
 ``` &!   ` ` &  ` ` X% ` %            & ` ` &   8& ` ``` &   ` ` H D   	#ce ` D    ` d Y  c     D      
 `    `    `    `
    `    `	    `   2 `     `   ; `< ` H D   ! H     ! H D ! @` c     H D    @`c     H D   ! HP` |ᄨ @@J   @    @$ \g  (   xƨ 0 ƨ ( 0  ń   [ Ƹ (' { (c  d  [ 0
 @`c     0    J ĸ P   c l    @  ` ` &  D @` &     k(  %   f0 f @ 8c   @` c    5       @`c @, (  Px ($ c    Ä    @`0 c 0 ( c 8  ! A  H D !! HP`  # `{c 	  h     v  Ä f 0c cc; 䄨    h * ` D    ` d [  c     D    ` Rkf   c (#  
ck  <d (    @d (     d (+      `  @ P+      ` G     E     c `c 9   d P     i ` xc
cc `  c
cc ` Fkf
 ` kf ` kf/ ` vkfi ` xkfx `  kf `  kf  hd    %    `  kf` kf8`  kf f 0c c c  ! A  H D !! HP`p $g  C `{c ń 
     4ƨ X 0 @e k    `k Xjh      ť  $ (j 8ƨ @ 0  @    @ @ @ k      @ `k `tc X    `/ @@@@ @D@  g H@L@԰G @ c Ɯ P  `\k       X   f `<k   0cCc Pc Xc  `  X 8 c X Ɯ H  `\gc ,ƨ  0     d ``\k   8 X [  x} (c @J 0 0 `        |} @` c   8 @ ⥨  (j        @  } @`0@c 8J     0  %       }   @j    %
      `}c `}k  X  e  Ą &           <d     `    @d `     D  r  ʨ    d `     Ć ᄨ    j   ($   ` $!    `  p ($    ᥨ (j    %  2 ` ƨ 0      	  ; `    < `      eA ù  ` .   ; ` Dn      `Dvc  4  @   `k   Xj (    ` .    ` .   ` .   ` .   ` .  2 ` .  ; ` .  < ` .   ` D      8j[    @  p` D   `      ` E  ` D        @O8   d  ` 
      `k ᥨ Xj (   07    8 `}c }    `}k 8j @ X  R    `    c    @    X
 4ℨ ⥨  j ( 0Ԝ 0ԁ   8j|  Å  v  P  v  ˩ `|}k @` c X       ! A    A    $ A H D( !! H  $  4 !  ` -  #  i }  #_ f_   i   ` 
     ϸ     ` -     4` h~q i $4`3  ` h		 			,	(	0	԰	Դ	Ը	D	H	4(	ԟ d80	<8	X c@@	Ԕ	  P 	  ! H D !       d 0
   dH e 0     ,0   d   0	   `L e 0     ,0   ` $    H e       L ń       , , D e  ,   ` H D          d 0   dH e 0     (0,0   d   0
   `L e 0     (0,0   ` $    H e 0
     L  0     (0,0(0,0D e  ( ,   00 H D       d  c d   `   `  ` H D       d  c d  `    `  ` H D       d  c d   `   `  ` H D       d  c d  `    `  ` H D       d  c d  `    `  ` H D       d  c d   `   `  ` H D       d$ $ c d  `    `  ` H D       d$ $ c d   `   `  ` H D       `, c X     ( d X#      ` H D       `, c X     ( d X      ` H D   ! HP`p $(,      ũ  ƫ  G        @  `֪ ` <Q   ` pr    ` ` pp        ` $C   p   r   C      d c (   J R p  p p   C      d c    J  p      HL d    z    L  c   (  HH d  RR  z R   H  c   ( ` <T      pr    ` ` pp        ` $G   p   p   C      d c (   J  p  p r   C      d c    J R p      HH d  RR  z R   H  c   (  HL d    z    L  c   (  ,֪[ `  ! A    A    $ A( ,  H D0 !D! HP`p $(,  ũ {ƨ  ë 08   e  $Ä 8  @ Ɯ  ()0 `<a4  \ƨ   0 H 0 8  `^  8    )  @ H  d P#    v P#    `  x P#  8   ` &) 8   v  @ (      |   8    e H#    D , d 8      `\gc ( d 8#  4 a   h d     @  D d    v J  Ɯ  x  @    ` Ą        J  d 0#	   D ( d 8      $H  x  ` >      ` >      e       >       0>    ` `e   8   %    @    !   r  &   pc |ƨ <ń 0     J    d H#   D , d 0	     ( d 0#        R  8    <ť   (n  ƨ z   @        r   ĥ <ń pc        (   J  e @#
   D ( e H      ( R Ɯ 8      <  ƨ d  n O  8c     `\gc H     | $$   ` !             )   H| Ɯ  e       8     ` (      ń ť  n (    Ą 0 (  p  ԄD  0        (H c           d     T        j < pc 8c J H   c  \       j ť pc (c   J 0   c ` ^   `   $   `jc  )  Ä 䄨 H    f  )   H4     `        r<!   H    `|c    J e @    ( R Ɯ 8   <a     ƨ   @ <ń    n P  <8 a  ̨        (  0  < ! f 8 Hc  Ą J0   0  c (080 < a  (ƨ  8 a<   ̨0   v  B     %    `  v  @    r \gƨ | pc  <) 0 8 HC   J   ` $    D ń, f 8     ( f 8#        d h      0 R ZD ed    %       v   <ń   n  ƨ  O       @  '   r |ĥ < pc   ` ( 8#   J    d X#   ƜD , g (     ( g (#       p d  (d      8	 R ) @    l  <)`R n  \ƨ  Hc      `      j <ń  pc   8c  % Ɯ H  ` c     ̨ l ť < pc ( 8c  # Ɯ H c       @       r   ƨ pc ń    `   0   J  d H#   D Ą( f X     |7 RD     @      < @ d  ƨ   n   8c    )   d  ƨ n Hc   p  `jc ƨ    ) R `c 0  H  d  3     lD c G Z `\gcG       @     ( r< \gƨ 8  $ `|c 0  `   Ǆ J  f X     p$   (      0 R  H     <a   ƨr       @     r< |ƨ  $  ` ( 0  Ǆ J  f X     p$   (d      0 R  H    l<`R  ƨ g K      `\   j< A Pc  % Ɯ H  ` c 
    ̨ l<   (c   Ɯ 8 c      `<c H N H8 a  )< H    ڨ     8 a      ̨       @   (  < 0  ƨ d 0 8c  $ J0   H Ɯ c (000 < a  (ƨ  8 a<   ڨ0     8 a<   ̨0        A \gp    Ԩ     8 ` $_      c    v  @ 1      |ĥ    ( \gƨ 0  Ǆ f H   4 a   h d C     @     e c 0      e cH  Xc e c 0      e cL  `c  v J    x  @  ` Ą       J e c 8   ƜH  d c Xc e c 8     L  d c `c  x  `   (ԥ  ` `jc  )  Ä 䄨 H    f  )   HQ2    ,Ą |ĥ  n ` (  D e P   (,`H e P     ,`L e PN8 K,` `jc 턨  Ä  ) `c   N H  f 䄨    &2    `
ԋ   n  2 (
  ! A    A    $ A( ,  H D!! H i  #  d        g   8ckc Xc      0 c  d  @c  x  `\c   `ic   (    Ä   `# 8i  c (      e  6    <1  d 	  h     /  Ǹ i  d f)  h          i  d f)  h           i  d f*  h           i  d f*  X  iƨ    f  # (8  (# `c 	  h            f Ǹ f)  h           i  d f)  h     u      i  d f*  h     Y      i  d f* iƨ   d   `ic \ƨ   0  d `   c$, 0h   c Ɯ  X  `ic    c    c    P1 Ä 6#Ä7  #  c (  `ic    c       ƨc 0# Ä6#  Ä 0 c (        `xc   d i c   ,Ą (  c i  H " xᥨ  ,1 (  d c i c   i   (L " `xc   d i c   ,Ą (  c i  L g! xᥨ  ,1 ( Ǹ  d c i c   i   (H J! xᥨ  ,1 (  d c i c   i   (H " `xc   d i c   ,Ą (  c i  L " xᥨ  ,1 (  d c i c   i   (L ! `xc   d i c   ,Ą (  c i  H !  ! H D !! H    c $ń    m    I    ` \g  $ (m          `|c,   H/        d #     D d( k H#      k #,      Ɯ   %     `   e c H    H e( k H#      k #      |ĥ (       d c (   L d( k (#    k # Ɯ  ! H D !! H    c (ń    m    I    ` \g  $ (m          `c,   H/        d #     D d( k H      k #,      Ɯ   %     `   e c H    H e( k H      k #      ĥ (       d c (   L d( k (    k # Ɯ  ! H D !! HP`p  D      Ʃ    eH J  ΄  
 0J
     j   `c 8  J (  Jc  `    d  `c   X  Ĩ @    F f   `  Ũ   J 8   ( d 8#      d #        Ɯ @     ! A    H D !! HP`p  D        Ʃ  eW J    
 (J
     j `cÄJ 0  Jc  `    d  `c   X   @    E e   `  Ũ   J 8   ( d 8      d #        Ɯ @     ! A    H D !! HP`p $(,  ī4  \g  ê    x    #    G,     ` $Q  0( [h I  i    l  R  0#'       `e   0:   ` D.     0$#   e   j 0e    E cC     v  0 2   Ν  n   `  d 0# `e t'          E    j  c C   v  0   Y   Ν ⥨  (x      [h i (   c  C  ! A    A    $ A( ,  H D4 !!HP`p     E  D `       `       e   `S   `  r `  $ Ҝ `<c \Ʉ    `\gc   nD   `8c     d `#            `<c      f    H#       8  8h 8h H   f    Ɯ    ` $      D dc        è   `@c   d 8#     t  0   nD c  ` 0    r j   `\gc ń    ``c 
  nH   `c     d #            `c      f    H#       8  8h 8h H   f    Ɯ    ` $      H dc        è   `c   d 8#     l  0   nH c`     `jc 턨  Ä    f 䄨       	.    `xc   d c ,Ą  c j  c  \g  Ҝ ń  n  0 `ɄH   
 P  l    n `jc 턨  Ä    f 䄨       -    `xc   d c ,Ą  c j  cK  `\gc <ń     n \ɄD    ( P  tb  
  n ! A    A    H D$ !! HP`p   ` c     t     @ ,Ą |ĥ    P (  j    R        j Ν    t  J ń $ť  p (   (
   p n |Ą c  c   Ν   ( c  ! A    A   H D  !! HP`p   ` c     t     @ ,Ą ĥ    P (  j    R        j Ν    t  J ń (ť  p (   (
   p n Ą c  c   Ν   ( c  ! A    A   H D  !! HP`p  ĩ  C\   ` m      ` c  @   p       ,Ą      ̄ J  `   $U        (((( (L(  pD( H( $ń  @  n  c       |ĥ (   J (   (ń  @  n  c       ĥ (   J (    `  8ť  n (   (_  n ,ń     n (`   ` 
   0ń    n ((    ` 0ń  n (     `D Ƅh    ̄a
   n   (  ! A    A  H D !! HP  D `4c  `(c   d $ń      ń c (     ` c   g !      `,c    Ɯ e @     g           e @#	       e    j        e    j  ! A H D !! HP`    D `4c  `(c   d $ń      ń c &      ` c   g       ,Ą     Ɯ d @    d @#    d  g   `   (M  z  j  `(  ! A  H D !    c    ` $          k  k c c(ck H D   ! HP`    C `$c      o ]     |Ą  J      h*   `    $      e h#     D e  X$
    e  o    )?        ;        Ǆ f c h     f c h#     H  e X##    ` `|c       Ą f c (    f c (#   L  d X#   ,( f  c    %  D f  
   ,  , f c    %  ! A  H D !! HP`p   ê  E `(c     t g     Ą     E    v #      e  #      e  #     D e  $
    e  t J   ΝH          t  ʄ f c      f c      H  e #(    ` `c       Ą f c (    f c (   L  d #   ((,( f  c    ` %   D f  (    , (, f  c    ` %   ! A    A     H D$ !! HP`p  C `(c     p     ĩ `c D  j     %   J  p          L     p  ! A    A H D !! HP`p $(    D  Ū  F  ` g     \g [ƨ  h   0  d c  `(c     p Z  _ g Ą g  L      d #<    04   `  %   0%     (=      8ƨ 0l  c (    #      c #     d    04   `    $   0$            8ƨ 0l  c     (#      c #       e    p Ν  J       e   e    d    d  ! A    A    $ A(  H D, !! H      ` $8   ` `$c      d     d |ĭ h    ) g h#    D ( h 0#      h (#   `  k  p      xxH ( 0  xL g 0   x(0x(0xx  d [   h $V         `$c    f  k N   o |ĭ h 8c   @#   ) g c h     H Ǆ( f h#      f (#'   `   g c @   L Ǆ( f @#      f (#       k    #      x x (h g c  #  D gx(h   xxx ( g c  #	  D g x( Ԯ     ! H D !! HP`p  ũ          ` $@    K $ń  `  l           `|c  8    `   d c H   ƜH d  P$%        d c @ L d  P$    `  ` +    k ℨ  l              ꨘ    p      ̨	       `  n`    p  ! A    H D !! HP`p  ĩc (ń    N           `c N  j    Ä   (   J  r               r  ! A    A H D !! H    `  ! H D !! HP`p  é   `$c   p 
      `|c N  j  H   p  Jq  n  ! A    H D !! HP`  #  C  e      i    0)        l    ` ʄ ``
(
  ! A  H D !! HP`p  é  D `\gc     p [  c `Ԙ  e Pc   7    Ũ  `    l `c c  j   ` D   d ,\  c     D    f  Pc  8$   f `xc  `c   d c P鄨 8  c     ` $   ` Ԙ ΄ f Pc       Є [  f      t   `   h    %      ` 	        j ΅N pa      `    n  (c( \ n` n          dd  `\   nb    j ΄     n   j ΄   n  ʨ  ℨ  j      (       j    g       j
  j  p [  c      n*   ΄ ℨ  j       `c c  j[   ! A    H D !! HP  c    `c s  { X      {    m   c  J      ń  s  c <    `  #   `,c  @           $    D ń f H#     , f P       @$     H ń f H#     , f         $     L  d H#     , d        /    ` k    ` /       m c 
  { )    ! A H D !! HP`p  \g    (     [ƨ 0 Ɯ H 0  Ä  (&    é   H  X  0
    ,  0     d  0      lܥ (  d   (#     X n (#
     , n (     d n (#    n 4ť ( ( 8  d $ń       c     @X n    #     , n      n   l P+   n  ť | (L c  ʄ 8c Ƹ , l 8    0 8    f    `       j ,ƨ 8ť c ( 0c l  c  {  j (     (
d 0+       8  p c #         @, ΄( a$  &    ?    $   jc $    ,Ą  e l     E
        l  p   c       `
   , n         ( n  #       (      ƨ `|c 0   f    n $   Ɯ    (   =  l  l  t   %
  X  n Tѥ#c (c   l           lB      f   l    8 8l  1  [  @k  >    8ƨ   0L  5    j  lQ  l ` c   8  d   c  
   $     <   l       稪 8L   ` $  nA    ` 
v        ! A    A     H D, !! HP`    C   8,      8*    ` `d 8    ℨ  e     (   0o   0P   ` `   D j          (H j        (L j          (
$ l
0 |    `
  j c40
 
L`
Ԩ l< 
8
, l 8      j  c 
 
( l 8      j c
 l
   ` $    $(
X l  #    `@ 
Ծ@
< 
     jD j   
4 
D`
Ԩ l8
Ԭ < 
X l@
, l 8
      
 
( l 8      
 l
  ?   jD j  j c40
 
H`
Ԩ `8 
<
, l 8      j  c 
 
( l 8      j c
  
   ` $   ` $ 
X l   #     p@(
Գ<
  ! A  H D !     c 8&   `  ń ` &   fD e,  8   f       fH e       , c        f        `L e       , c        ` H D        ` %
   eD   , d 0   e( d 0#%   ` e   0   eH  0     , d 0   e( d 0#   ` e   (    `L  (     , d (     ( d (#      ` H D        ` %
   eD   , d 0   e( d 0%   ` e   0   eH  0     , d 0   e( d 0   ` e   (    `L  (     , d (     ( d (      ` H D   ! H    ,Ą  #   h g     01   0E    ` ` )    ` `     `  D(H(L(  `  ť  ( ,Ą    h   g       i  ,) 8c Hc #  H   c     fL  H(  f (ĥ  (c    @  ! H D !! H  c   ` c  $     ` D  ` ℨ   h2    ( 	       h)      `    Ǹ ,ĥ  i x   (  h  @        ,Ą  f h    c$  (       c #      ( 8	  h Ǹ       Ǹ  ! H D !! HP`p     ` c P  r     ` `,c  P L      ʄ     p	    f  r   J
     `    p+  lC   `  ! A    A  H D !! HP`p  C   ` c   l pC   a ℨ   j   ( o   ` (  h ,   8c j  Ä   HD/   h `k X  d  8   p%  ` %     H f Å H%     L f Å ⭩ hj    G   `jc 턨  Ä `k 䭩   X    f  $  h  h ,Ą  c j     ` %   `D d Å ` E~   . { (    d c  h , 8c j     ` $X   hX `D  ` k $ѭ X  g   h  ( g (ф  X  f  j h (    `0k 4ѥ h Xf ( g j   X 8ѭ4  hf `@k ( j8  X <ѥ h  p g (f X jl        h Dфt   f `Hk j X h (x g `Lc Pѭ X |    hf ( j  8 h ,   8c j    0	   `t}k Xj h  c 0  X ` Xѥn   (c j 8 ᄨ    j  c (#|   `X  h# ,ĥ \ (c `dk j `ѭ  Ä 8 Xd0  h j( f   (, Ƅ 8 X 0X  h# hѥ `lk ,Ą  c j (  Ä   X4  ( h8 f pф X  g<  j h   ` $<      tф  gD  jH    h ,Ą `{k  c X j `   ( ,ŭ X h  e c  Ǆ       a ⭩ hj X a ,Ą  a c  c j     ` $    eM    ` +   a         tѥ (g   j 8 X#X  ᭩ hj   ($G  X ` `}c  a   "  X ` n `,k 0⥨ X (   \ѭ   `dk h X 0 e hc  ,  j 0 h X( e (  ( p h 0ℨ dѭ   4⥨X  (# hd `ѭ j h X (  `  \ѥ  g (     (c   n ,ĭ } h `0k   ( X   dѭ `\k h X0  k   Xc h( e j 0,  X   `Xkn  Xc j
 h t}  j `J     . `jc `k  Ä 䭩 䄨  f X h     x"      8     ,ĥ (j    p%        Ɯ 8     e  @$     l &       ,ĭ   h   (w  e  j `+        ! A   H D !! HP`p     ` c   p 
      ,Ą  L  j  T Ν  p  J  l    +     p  #	       @  l  p P#    ,ń  l       ! A    H D !! HP`p    c   p#0   D `c @     d c    %  cH`    ` %       d cL`    ` $       `  tz      r      t}  {ƨ (j 0      d c p   X ` Xp   8c j  X ` $ф     D Ǆ  h  j    (   `,c  f    0ѥ (h  j ( 4ѥ (    ( 8ѥ (h4  j (8 Ƅ @ѥ 0 ( <ƨp    0h ( jl ̄ H   0 Dф Hƨ  h 0t  j (   Ɯx l 0   | ̄ Pѥ 0 (h  j   ᥨ (j  c H#=    \ƨ dѥ 0h ( Ɯ   0 j0 Ǆ ( 0( ,    8X ` hѥp  l (   8 0 ( pф   c  8`   l 0#    (X ` tpH     D0H0L0 8c j `l   0 0 (#X ` ƨ 0j   H$?      `}c  *  i        dƨ \ф 0h   `ƨ j 0 (0 Ǆ   0, g (    0⥨ (j(  8 섬 8	 dƨ ` 0h 8 j   (  ` 4⥨  ( 0ℨ \ѥ   (  g     (c   \ƨ dф 0  h Ɯ j 0 (0 Ǆ   0, g }ƨ  0*X ` Xѥp (c j Ԕ   `     `      t}  {ƨ (j 0      d c p   X ` Xp   8c j  X ` $   8 `(c     8 (  ,ф 8  h  j 0ѥ 8 (     8 (h4  j  8 (8    `@c 8 p  ( <ф 8  hl  j 0   ( D Hф 8h  t  j ( 8x  `Lc 8 |    Pѥ 8 (h  j   ᥨ (j  c 0#-    d \ƨ 8 0h    Ɯ 8 0  ( j  Ԝ  (X ` hѥp l ( 8     0 ( 眨  8   (  tƨ 8 0cH  jl    ` (#X `  8j   0$?      `}c  *  i        dƨ \ф 0h   `稤 ̄ j 8 0Ԡ    ( l 8  0ℨ   j ( l 	 dƨ ` 0h 8 j   (  ` 4⥨  ( 0ℨ \ѥ   (  g     (c   d \ƨ 8h 0  j Ɯ 8 0 l   (  }ƨ  0*   0⥨  (j 8X ` Xѥp  (c j 0  ! A    A  H D !!HP`D #    C  `$ 
@ 	 4 8 Ʉ< 鄓 `D * `@ 	 4 8 Ʉ< HX
ԉ `D jH   Ä(0Ԡ ,(
Ԝ Ä (0
0(
LX
 Ä0 # Ä , ( 0(H,8(@0(H,8(@H (
 D(԰ H D0D jL ʄ0H(H jL ʄH(Դ0H jD  L H (L jD ʄ0D h L jH h(h( ! A  H D !!HP`H #  D  @ 	  `8 Ʉ   Ƹ4 < 6 PH l d  $L ̄l  f (  DX  e$Ԝ   8M    ` D       (80@,     	D l       	, i@  8   , f 8      ( i      ,8( f          0  (  lH  D lL @D   `H Dp h ep@ 0  h|  e|@Ԁt x et@   xԠ f ((,Կ0 Ԡ  d       ,(8,@((Ԥ 0@L l Ը  ! A  H D !!HP`p $(,0    éX  xƨ  `[c 0 <0   ބ
3dH(|  D8@(  < |8Ԁ83ch D <     lƨ { 0 880488 a   {ƨ   0  (   ` 8     ΄$ ~(    `4 X d D0,     `h     K\ ΄X   j+0
` 8
d  T 
d ΄   80
 (   0   Ҝ  p	+X+ F  `   ` +r     0      8P  j &  H  @`   d 8X  e c       Ū  F     `  G      `	     `{   X  j       v c     j 9      <8 a (票<  (     g_ c @!   ` 䥨 8ƨ ( l 0\ Ą  c 0 4票` c (     41T1  g@ c @
  D a   8p   @	     D a `@ h|    p  pD a Є  p           	     `    `  n  h\ ΄ ! A    A   $ ( A, 0  H DL !! HP`p $(  C    E ` 3    ƪ   `
     p           p L  l  H   K        l  ʌ 0  
 ($ J n  p   
# (0     ! A    A    $ A(  H D, !! HP`p  é 0焨   c  ) (      H    `   )   @ He  J H 0 c   @  `c  @   l                 l| (n 眀O׀H H   c
          `     J  l        ! A   H D !! H    ᄨ  è  % `c   x&
    `c   i '  `  h x     ``      Є &  m `    ` D   X  m X 0 i  ƨ c  0cH e  
    8  `  ! H D !! H  Ũ  $ ᥨ `k (  1      X    @#
   ( `c   g )       d @    `    `     `  m   o c  Є  c f    )      @ 8
 ` (  ! H D !    ƨ c 0 Ɯ 0c   e    ` 
  `  f  Є g c  c e  c H D       ƨ c 0 Ɯ 0c   e   ` 
  `  f c  ƨ c g c 0c e  c H D   !HP`p  é Є `c  x      @   f  % @c     `   ` %    P       H 鄨 @   \gƨ   0 `c     @N  `  }  % @  ( 	   Ʉ$ 9 p  `  , (0 X ,ĥ  ʄ   Ƹ X (ԴԸ 0    f   8ƨ    0  @  
Ԇ  n  n  p | {ƨ c    ( 0c   n @ @ ! A    A H D !! H    $ @`c  `   X?      @   e @] c   e ø 0g H0    @`c )  H   X%    ` ` 8    @    Xh Ɯ   8 k @`c @    (         `( @  )   c    H  e c  ! H D !! HP`p $   ê    E      7    t @X\R  H\ ` ,-       P  `           ` +      (   R Ν `          x Xt  k   kX c k(c  *  k   ` +  d `d   R  ! A    A    $ A H D( !! HP`p $(,  é `票 `c     d 0   (N 0 @  @   \g `c  Ć 8 N  ć d\    |   8c      @ 8  d 0   `   B `      M `       e 0   `X `      d `       e 0   ` 鄨   n ( ` P      ` D     (f   (#  p     p  C     3 `       f (#  B ` 稧  8n  B ` ,     M ` ,      e   (   ` 0        4    `  df (     	     n `     (  z  @ c    | \\ 8
 ( H\`


X

 8c  
 d `

 $ 
  n   `  [
 ` ԇ   n `   [
     ` $       `$    nv   n `   X*  8 @  n     i  *X*f   n  X*(* %   *   8*  l  $*   ( *   (+* 8    d c ~  <`* l  @    ` e    
 {    (          e $C      j  @ 9     愨  |   @\   8c    $   (  l #    j     n        8  l #    `jc 턨  Ä 䥨    f (  (  1     j       8n  Զ     j        j    +    } 8n          `   n  `  
Ըc*  l +  [*  `<*  l      <j @j      n  n ,X*  n 0X*4X*   nh8X* @   #
  n  \
  n \
 `   \
h    `       @  n    p      P  ( ( $$      X    n `[
  (ԋ   n ` +
   X
  | \\  c @    }   n  nz [
 @  | H\   (c  [
$ 
  8
   ʞ  H J(  @`c  c     `     r     8P    Ψ  v  @   Ψ     ֞ @ R  `    n  ! A    A    $ A( ,  H D0 !! HP`p  C   @`c  c 
    `       @` c  c
   ` $      @`@c    c 

 @    d (  
  d
  d (  
 @`c  c
  d   
 (
  $ 
 @` c  ( 
    c, 
0
 @Ω    n `J  4
   `
  @ 
 @` c    cH
D 
  nL
   `5  P 
  n `,  
P j `#     j `#       ΅s
 @    e#
Ԙ
    ` (         p +
  p [
  p [
  p [
  p [
԰[
Է   p   [
j    P jT j          p8X
Ԧ   p<X
  ! A    H D !! HP`p  é    d   @ @`c    N  c X     p    R      R  ( (    %   Rt    _q   p @`c X
  c J   @`c  !  !    c!Ԙ  ! A    A  H D !! HP`p J    `     K  ℨ  l       ` c   L      l `w5      X `     @P  d  #&   l      [ ` n  	      鄨  l       l  l T\Tn C  X\ K      `  @@J  l  3  \$ @  0 `$d\ k    ` (   lh\ k          ll\ ` k    `       jt$x    j   @  dH c    c 0#
  |$ @`c       %       j  J 0
5  P    Ξ8  N g    c   p      ` P   f  f (#      @`c  c (   
 @  t   8P    ̨        ֞@  J   x@    lp\    `       ` {     @   P       e $        ` 5     nl   0        nY    P+    }  l   P        l   P$  ` 턨 Ԗ  `jc  Ä    f 䄨       x     >  l   lp$  ! A    A     H D$ !! HP`p $(,  é   `{c  @    t p<   @ }  p   1     \g  ƨ ( 0p   $\   (  `  \$
 (
  n c p         n c n [ƨ [ c 0v  
΄     `[c   m (0n  [ƨ c 0- D\ƨ  0M   x}ƨ 0 Ɯ 0<Ȅ#  	 (   n  
8
 
 8      hԀh      ȆH ᄨ    p   ($   ` $!    `  t ($    ᥨ (p    %  2 ` ƨ 0      	  ; `    @< `    @  eA C  ` 2      @ } (p    ` $   `   e  _ ø_  0c 8 c $(  ƨ  0P  jc  C       x [  c      %_       j ť c `CS   (P ƨ   0p         w      `c   d `p    ʄ 愨    p   ($      楨 (p     ($	      愨  p   0$       `\c    楨  (p0    [ƨ ( 0  `   %       pO    p?        p    `\c    愨    p(0    (ԉ  p     p  j $   `  x _   Ä ((0ԁ $  $     x   ( z$(_ @ ᄨ  pZ  C  z  0  T  K  p     ! A    A    $ A( ,  H D0 !! HP`p   x} |}  c (    D  l   A   l  ˩ B J  l     K `c  c  `c   d N    鄨  e R     ť `c (   g K         e D          ! A    A H D !! HP`p    D `{c  }  n `          
    j `\gc `    d <\  c    `e        ! A   H D !! HP`    0$    D`   ``c (   l 8#      h  e j        e `g (c
 c j     8$   `     ℨ  j       8$    ee 0    e ℨ  j    8    l    ! A  H D !! H  è    c       `  g  #       g $       `  g $      k  g $      k  g $      k  g $      k  g $      kg $      kg $      k  ` +   $   `g $x      kg $p      kg $h      kg $`      kg $X      kg $P      k  ` +   $       g $B      k$$g $:      k((g $2      k  ` +        ,,g $$      k00g $      k44g $      k88g $      k<<g $     d    kb     `  `  `  `  `  `  `  `  `  `  `  `  `  ` $   g $0      k  g $(      kg $       kg -      k  ` +)      hi  @f @    d %   k  ` ) h \  `  `  `  `E  `=  `5  `-  `%  `  `  `  ! H D !! H      c       `  h  #}       h $       `  h $      k  h $      kh $      k'h )      k  ` +   	     h $      k  ` +   $a      0g 0    d %   k  `  H ƜTTh $L      kXXh $D      k\\h $<      k``h $4      kddh $,      khhh $$      kllh $      ktth $      kxxh $      k||h $     s    kq     `  `  `  `  `  `  `  `  `  ` ($  d   H$  xg x    d %   k  `      f $   k  ` 1  H T (C   `DDh $      kHHh $      k  `  ` ${   L'Lh 1      k  ` +    PP( m H xc  ń   0$   k  `   maT  `H  `:  `2  `*  `"  `  ! H D ! ø 
 Ƹ` 0 `gƨ 0  Ą 0  '  H D   3c   ``c   dƜ   8&  H D   ! HP`p  C   `{c8 J       ` 0%      j 0    \d   8   `  $     %     j 0#      r 8#    r 8#x     pܥ (  n 8#       j^    ` \c }  8   @`@c    Ą ( `[  a  n `#       r `#
     r `p   `  l     < j    -    l j  #*         `Ppc      @` Rc   e )c   0   @      @ S o  d )c   0      l `nk   o  @ 	ƨc    0 Xg h    )   e   0    p o   ?  @ P `mc   ) 8 c (  `c @0@   g c  ń   (   c@ c  @`c  l ʄ    (p 8 c 0 H$       @`@c  @ @ ( 8 `[c<     @`@c (xǄ c 0   H      @`@cp  0l  c Ǆ   0  c @$@ ( ҄ r  [ @`4c   0   @` c (D ʄ `[c H  @`$cƜ     @`(@c @,@ 0 ( c\  ` @8@ c  8 J  ( 8 `c    @`@@c0҄  P   @`Hc x 0  8 c4   88R c    @   g ߄  c p     `ƨ 0  d H    Ũ `c    e ߄ c  c p      @`c 0 @      xƨ 0  ( 8  e   c  Ą 0 `{cM      @`c  0 @G     @D
  d `B `      >     <        7      @ R o  d )c   0    /  @`Rc   ) (   c  7      n p܄   `pc  pƨ 0 pܥ ( p 8 pƨ{ 0  ń    f  c  g  c @0(c  @L@     ! A    A  H D  !! HP`p  é pܥ `\gc  $  (  ̄    d (#  8   d (#
     d (  `         8q          ?  `mc    (   c `l{ m \    _  ;   8  w | Ĝ c ń  #  o m      `   $    ` ` e  ؆ c    8c q   @    g g  `nc  e c xޥ (c q @    c c @5
    `}c q  sD  @h g c Pc hƜ    m)!   `   `c   h  T      \Ʉ    Q  j L      } < (q 8q  s    s c 09    # `        #  Ȅ    de 8    Ǩ  è `       è   (      k(  ($  _ f f  cd c @c	3c   d (      `         o (o    j   k  l  <            ` 5         ȷ e 8c     `    y \Ʉ    c        e  g  c < Pp 8c   `}c ( q w <ń hc c  c q    `      s (` d$    w <ť hc c (c q    `      s ( `      w < hc c 8c q    `      s ($  ݄    de 8    Ǩ  è `       è   8x    w <ń hc c  c q  (  8%l   _ f  f  cd c @c	3c   d (      `            {    k  ` f     Ȅ   8D      }  q  D  8/      e d 8k      c  8   (        {   (q )  H D h $  cǄ  Hc Ƹ (c(     '   0c c5     c      D f 8	       e   H#        f     8Ԭ (  ss   s]   sG  o   8o  & c Xc c c n f ( 8ԓ 8  ! A   H D !! HP`p    #   0$          ($   `   $      8%  `  c      (   cH D y o       {  p   `e 8#             ` `f     `  P   	` ` $Y   8$      x!    D  @ T w ($ c @ d c ( c 2	Ü   f  c    Ɯ  	  ) (  x    x*      @ T w (d c @ d c (D c 2	  # Ȍ h Ƹ   c    0c  8c    ( k  
 ) J x   `  (     &    Q      <ť (p       B   m    ť  C  ?    c  ۩    
 (0  Ʉ    de 8        `          o  ( 0     `          0
    `  i(  0$    `  n(  0$ _ g  ` d  J k    ) {    < م  ` .       H    `   @  ` d @ T  w @ d (#        (k   (    Č  `  c       `` c  K     g  + Ƹ   (c     ( 0c  `  c ( Ԁ k   1  Ɍ   g  Ƥ   c Ƹ  (c  0c  c       `   պ   }  s `c Ƅ     _     ؍]   w  ` k Lǥ      ݩ    )  K (        1  t  ̄  de 8       `         (
    `  u(  ($    `( d (#    `  ۀ'  ΄    de 8       `         (
    `  s(  ($    `  ( d (#a    `   
  	 k ) J    ؍ 1 w  @ ؍E  @  e   `#k @ T  @ J ( (d @ d (# ({ ʌ wj Ƹ (c  0c
  c *  s )  (ː j Ƹ 8  @c 0  Hc   (c   J ː k Ƹ   (c  0c k  c  ؍ 1   R  U        ` y c (        `        _ g  g  cd c @c	;c+   d 0         d    @ `(c  #   	 @  ` z 0  w (	  f \ y c (        `        _ g  g  cd c @c	;c+   d 0         d    @ `(c  #   @  ` ( 0  % (  f  g  cd c @c	;c+   d 0         d  @ `(  &     @  `    8
        k^ (      kY 0  f4     x1     `2c	Y y @d @T @` ds @  T1  j 
 8c*    ) @c  ˄  J Ƥ (c  Ƹ H  8 0  s     1 x k  ! A    A   H D  !! H/     ! H D !! HP`p @  é  D @` c @   Pq `   ℨ    8
     @ ƨ  f   8 J @ ƨ (  f     8   J  f   8 J  ` - ` D   ( d \  c     D   )   n `Pqc      %   l  Xc      `JC  Ȥ 0
   h @   g  0 h  e      e @  c  c      J @` c   `  %   x      e   n `Pqc      % lm      U   n l  l    l  l/    l  l    `Pqc      % lS      v   n l   n lQ    n l    n lL    n lh    n l    n l   n l   n l   n l   n l   n l   n l  l    `Pqc      %v l         n              ng l  li   b l  ! A    A H D !  ` H D   ! HP`  C^   \   j @  j    Ą     `     P     ℨ  j     l  ! A  H D !! HP`  >   @ k X     @ @@ƨ  g! J   f   X    ℨ  l    J  j  ! A  H D !! HP`p @@R     l     r p      @` c      `       @`@c       l    @ X      l  Ν  l  J  r   l ℨ  l      n  ! A    A H D !! HP   C   j       j     ℨ  j  c  ! A H D !  è  ` 	     @   g  0 k ⥨ (d    k H D        ` E    ` `Pqc    X (	      @   g Ɯ ( k ⥨ (d    k H D    @         ` %   `  h  ` 8      e Ɯ 8 k ⥨ (d    k H D   ! HP`p  C|    @`c   `$    jt  @  ˩     j   pL      L      $          j   j   j  jX   j ℨ  j    l  ! A    A H D !! HPF   C `\gc l\ƨ  @  d ℨ  J 0 d\ƨ X 0c       e  j @`c k    ! A H D !! HP`p  @    Ć @ \g       [) [ƨ H 0  [)   H  j )   H    E    ℨ  n   [ [ ( 8  [),  H  8c    PK  l J  j  ! A    A     H D$ ! ℨ  c  c H D    ℨ  c  c H D   ! HP   C `c J  j  ! A H D !! HP   C   j `c J  j  ! A H D !! HPԳ   C `c J  j  ! A H D !  ` `Pqc X H D   ! HP`p $(, @@J   DX  J  `  p    X2,     @ @ƨ  Ć   @  ć    
  J  @      X4         8 8 X
           &  Ƅ<(8@4H00 @   c      ʅ  x1 v @ a  c4 ! + 8  ?   ڤr h< !	  Ƹ \  c ) J k 8c0HcPX  (c `k0   XP &  1     ( ) `k Υ h X  1H ι `cD !pc 8 (   0    j H  @   ! A    A    $ A( ,  H DH !     ` E    ` `Pqc    X (	      @   g Ɯ ( k ⥨ (d    k H D   ! HP`p       p   k `g Xc
 c p  C   `$    j  ` `PqcN    XԜ  j `     ʄ       0E    `  @E  d `d 8#    
 @  ) d  c c   Hc     c  0
  `      4
ʄ       0E    `  @E  d `d 8#    @  ) d  c c   Hc     c   ℨ  p    l  ! A    H D !! H    `{c    /    ` X$     `Pqc    X<d X    d X#     0
d X#        (       <d (     d (     (
d$
  Ĝ    d (#   f0
d (#   f  c  @  @f ( (c    Ą  i    H       ܄ k  o @      d   C     c |] (c     D        /      @ƨ   @ 9 @ @   `  f h   k  y @  k  f    f       h       w k  w    i,
c    c @  c  c        ⥨ (o  "     k  f h k @ k  d  f h     d k  f h      k    0
d (   dz  ! H D !! HP`p  ` @     @`H@c    ~ D `
    jΩP`       (票 ``c    (  d d܄      c   `   0 ℨ  g   `     @8  e  #     ΄ 턨F     f 䄨           @`c   ƨ    0 @`c   ÄC     (h 8  @e 8         n  愨 8       @ ( 0    @    ΄ `c     g @#      ℨ  f @ `\gc @ D@)     eP  [ (c   ($     @    ` $/       i,       jΩ xᥨ  ΄ `]c ( 饨 (     8 P 8 (   (   @`(c ƨ  c 0   8 `c  @`,c P  cX   ! A    H D !    @`@c @@      ń f     ?  @	  @ f f @  c  c  @ f @   e ƨ c 0 c   @ ƨ  0c (  Ä f	      `cH f   d (c  H D       @`@c @@      e k  ? ˤ   8	  @ k k @  c  c  @ k 81    `c   e  c c       @`c    @` c   ($      `  k        ℨ  `  h    ( f @  c c  c   d 8  A d    cA d	   X` `c k   d 0c  H D    H D         ` E'     e      h            n (d  @g    ` ℨ  f        `          `	    `     g ( H D       `  c X#       d (# k H D   ! HP`p     D   8.     8d    ` @  *  
    	C d  c  cj0 c  D  0$   `      - `    `  @   p  ̩ X
    p Pk k Jk X0 `    l  ! A    H D$ !! HP`p     ` %    0 $  	 `  @ d  	0  ) XC   ( d c  P$ 8  `  @ 	  p  ̩ X
    p Pk k Jk X0 `    l  ! A    H D$ ! `       `  H D   ! H    "     0 8   @%   #( H  #H( Ɯ   c         8%   #( H      # H  ! H D !! HP`p  =    l(D      ΄    0 P    f     ΄  `   P &       0N      `    ޙ    `  E      `   E   љ   P  ! A    H D !  ` H D   ! HP` @@\ J     `]c     j      ! A  H D !! @`\ c  c    H D !! HP` l  `   	      @     l P     ! A  H D ! @`h c    H D   ! H ` @h  @      eB c c 0    ` @   H  ?  %      @ 0d      `]             `  0  @` c      ! H D !! H  ` @h  I    C  `  ! H D !! H @h  @ ` (:   `3@ `  ! H D !! H@ ` @h  +   `$@ `  ! H D ! `lc    @  `  H D    @`h c    H D    @`h c    H D   ! HPH`  @  k P^     H` k PK     H` k P8     H` k P%     H` k P     H` k PM        H``ۘH`C       `lc     H   ՘H``ΘH`    `lc     H   ȘH``H`    `ic     H   H``ഘH`    `Dkc     H   H``৘H`    `4jc     H   H``H`     ! A H D !! HP  C`   
   H`   
  P H`0(  `  ! A H D !! HP  C`      H`t   
  P H`0j(  `  ! A H D ! `ic    i `,c  `ic    i `\c  `ic x   i `xc  `ic x   i `xc  `ic D   i `Pc  `ic Ȼ   H D   ! H+ ` % `  ! H D !! HԌ  ` ` ` ` ` `  ! H D ! @`0 c     H D    @` c    H D    @` c     @$  `  @`(c     @,  `  H D    @ H    @L  (  @D  0  8  H D    @    e  #    H D    @D     e  #    H D   ! H     @`  c       ! H D !   ä ` @@   d c &  @  ` X     ` H D    c Xk  c   ` D    ` ` H D    c @@   `  c  ` $      ` H D   ! H  @d ƨ   0e     c @(   8 ` { @D  # 8 @`P {  e 8% ` {   8e {   @   # `      1  @	
            s   k X  w 	  ! H D !! HP`p  é   @`0 c   `$   ` DJ      d ]  c     D    @`4 c @@8 J   @<  @ @    a  Ǆ  Ƹ  脨       j  j  _ cZ   ` ,   ` ,    `  (,     @ ` ,    `               )         `        n c /     `    @@4 J     j; c b       j     c           `  `        nc  `  @jJ `c c @4  
   `lc     `     `  (@ `     # ` `           `   @ J  eä`    J  f   `    @`@ c  Ĥ      f  F  
  `    `xc      ! A    H D !! HP`          $    @ \k Xkƨ  ` $   `  J  Ɯ ` X*   X%   `Y    HW     @ ` X%S      PP     `   )       % `    j@   H  `x) H  d    O'    ͨ X H     ` X)   `  )   `    )  	 `    )   `    )   `  $ )   `  + )   `  + )   `    ) `    ! A  H D !  Pk     C   ` `Xkc    ` $     `     ` H D     ƨ   0   8(  Ƅ (  (0   , ƨ(8 0 0    8,(  Ƅ 4 00 ( 8 ƨ   048   D 8( 8 H   Ƅ (D0   L ƨH8 0 d    8L(  Ƅ h P0 ( l ƨ   0T8    X( 8    Ƅ (1    ƨ9 0 h   8c  c) H D   ! HP`p                 #   c         #   c   <   4   #   c         C            l  C             0       e   e     e  	    e  
 $ < e   @ e   Ԍe   Ԑe  Ԝ Ԩe  
 Ԭe  Ը   Լe    (  ! A    A     H D$ ! c @@   `  c    P  `        ` Pkƨ 0d   X$
   ` %   ` ` %   `
 ` H D   ! HP`p    ũ% C @   j ` @@   c  #         `      ! A   H D !! HP` ø     `]c ($       @l  @@     8 @l ƨ 0E  Ą 8  Ƥ  &     
    `    J   `]c   P  `  ! A  H D ! @`c     @ń  `  @`c     @ń  `  @`c     @ń  `  @`c     @ ń  `  @`c     @Є  `  @`c     @ń  `  @`c     @ń  `  @`c     @ń  `  @`c     @Є  `  @`c,   @ Є `  @`4c     @  `  H D   ! HP   @  c  `  ÄL H  `  $    P%  D f c P#
    ` ^c P%         j  ! A H D !! H  c @`d c  $ 8  `    Ƅ &/      Tx *  P     `c D#    - ` c  `Xxc   H$    ` `\xc   X$    ` 
  q     ƨ x   0 8 `Xxc \x H X @ @  ! H D !! HP @    C ( @`X c @@    @  ( "            @    j (             ! A H D !! HP`p @0   é   `xc     0$      ` %      g 0!      Pk d    (c  0 8 l 8	 ` 8    @G  n  l P   ` jc      (ԍ    ` `^c  t    `xc  8  ! A   H D !! HP`p $(,  `0Ԥ0 a ``qcK      `     @h    k (L
   j֪  Pk   n @@  (  D 
4    @l  n /     '  n    n    h    @`c  Ą     Ƹ    @`Tc  ( `|xc0     8 H  nz    v #    @`  c   (#      n @ 0    @@ ƨ @   h 8#    f c  #       e c  #   0 a `xc      %   n @@   d(c (#	   n @   d(c (#	   n  å   n  
 `         @`0 c                  @`  c P          `    u   @`d c  k  ! A    A    $ A( ,  H D4 !! H `lc (    h)
3 `c    `hc @  (	  
3 d  c c j 0c (
       `    i   `lc  c  ! H D !! H    ` %G    ` (` h
  d     e (c c (  Ȩ  X      `hc      d H#+   0(        Ɯ H&       H         ` j hg   c H(   e `hc ͜         `  ( 0 h  d g       Ȩ    ! H D ! j     (c h (  Ą
+c k h 0  d @   8#    `   e k      k  `  k H D   ! HP`p $(,  j) h  i  E   (`
D @ey  00 `hc       `   $o     $l   j (   Pc D ú     j   d   \k #    @$	   Ɯ0 a  k $      H H `   hޫ  ބ 0m    %$    m j  ة   0g J 0 P    i (    (ב (  ބ (Ν  0p     (Z   p$ ( R (֞ ( `` %  p h    ̄  ( 0  ` 0 @  i (Z XԶ  `hc (   R (֞ (  r	   J  l   p    %    ! A    A    $ A( ,  H D4 !     (     0g Ɯ (   H D   ! HP`p    E  t H`  ˩ H`m       H` (*  ʜ  l   c   d 0      (    H`V        `R   `  ! A    H D !! HP`p     @`   F      ǅ; H`  K H`4      P   ̌j 0, `   h  (c  `       X         P  Ǩ`    H`   ` ( ̌ f     8	   X	  h f   H`     `  `  ! A    A H D !! HP`p    E  ĩ H`J   H`    ̌     0   H`    (     l c  P      8   H`(͐        ` (ǐ   `  ! A    H D !     (     0 d c c 8#   Ɯ ( 0     ` ` H D    @`
c        H D      Ƹ   c08   08 @`
c(  0 @
 @ H D      @ ƨ `c   ` %   `  fc        %       f 8 c  `        fc @`c     H D   ! H @$ $  gB     @`,c    c   g     a d      a  ce  0(      a H       `     ` a  c  ! H D !! HP` @ ,1 `,jc   @ @`k    lB  (     (g    ` c (' G  h ( (   X (c @k @` c @ 0   i c(c     J  g ( P   (c  (          h  o  ! A  H D ! c0 c B   @ƨ  @H   c @  (    @`c           f H D    @`c     H D       ` $     `Dkc       `Dkc   H D    x  `   $c  !  `hc   h" `  `hc#    h$ `  `hc%    h& `  `hc'    h( `  `hc)    h* `  `hc@    h  `  `hrc   lr`  `hc   h`  `hc   h`  `hc   h`  `hc   h`  `hc    h `     H D   ! H  c  $        8&    g `h{  h9 h h   { x Hc   h   @`  c          w Hc  )  u  @`  c    X (  ! H D !        c  8    8  0 c H D           c  8    8 c 0  H D   ! HP`p ( B D    j      (c   c    ` Ɯ  8  ` (T    `  E      ` $"    x  e Ō c   Ƹ 0c c 8 J  m P
      8j      Ɯ 8  ( c   $ l ` $      x   e  c Ō0   x ƨ  0 e  c Ō  0c8 x e  c   Ō c0c  ((r   (  `xk  ` T   ($   !  	    k  ˌ c   Ƹ  0c  ˌ8 c  ((0cHԟ8 ` $      k)  c      c ˌ  Ƹ( 0c 8)   (c@HԂ    k 8) ˌ c Ƹ 0    k  ˌ c8  )0@H(     k( ˌ c  Ƹ 0c   8(c  ˌ@c0Q D   ` x   ` 3      ` $    Ť g  c    (c c (g g ` $        g  c  ( g  cV c  g ƨ c0 ( g  c   cG(c g  c    c  ǌG(c (      x稼  x稸   ! A   H D4 ! c @h   c  c  N k( k   H D   ! HP`  C   `^c         j    c  8  l    8  0 c      j    c (   8      眄Ԍ(  j    c (   8      眐Ԙ(  j    c (   8      眜Ԥ(  j    c (   8      眨԰(  j    c (   8      眴Լ(  j    c (   8   ` c   (  Ƅ   8j (0    c   ! A  H D !! HP`p $ D @ D ) @`H k H  F   X*  ,    ǩ(     H     (    f    v  ` `hrc @     ` k @`L c ( *  `lrc  ) @ X   (0   t   HH    @    @` c @ X ) X H @`\ k   Xj  c     ! A    A    $ A H D( ! @0     ( @`4c     ` $       è 0 H D    h   h  Ą @     h     @  (   h  Ƅ   @  0   h     @  8   h     @  (   h    Ą @  @   h     @  8      Ƅ   0$( H D   ! HP hr Ƥ   lr  ' @   8 h  G   8 @   8) h    8	 @   8J h  '  8
 @   8 h  G  8 @   8) h    8	 @   8J h  g  8
 @    D 8 h  '  8 @   8k h    8 @   8)   8	$ c @    % 8     0      `hc h    d 8 8 h P  Hc    c     0   ! A H D !! HP`p    D      ` ,Y      ` ,N  l
d  p,>   ` ,4  d `hc h  J Ƹ   @`c     @`c @0 @
 Ƹ c 8 0   ( @ƨ  d   (c    ,       (    `  dg (+       f @   c $      ČpA*ʄČ
d@9

j
ʄ #
*  W
Č.
h
*d
ʄČ$d&* ʄ `hcJ ɸ   Ƹ `hc    `hc     `hc    `hc      @`4c @ 0 h `hc    Ä @`c 0 8 hƨ @`$c  Ƅ   `lrc @   ( @`|c hr 0 @    d ( @      c  Ä  i Ƹ `,jc 0 (  ! A    H D ! @ `   @   '    h c 0#     Ɯ 8       h c  # Ɯ @    g H c cc  
  ' Ɯ (	       gH c cc   Ɯ @` c   @  0  `  0 H D   ! HP`     ` %f    @ ` %D   ` %#   ` %x     Dd @r   `hc  p̜ `hc   @`  c    e J    d    @ ƜZ      &
d @T  
 `hc  @̜ `hc   @`  c    e J    d    @ Ɯ<      l
dT
 @6  
 `hc  ̜ `hc   @`  c    e J    d    @ Ɯ      $d @   `hc  ̜ `hc   @`  c    e J    d    @ Ɯ  ! A  H D ! c (c(#c c c  c H D    @`c  c kC k H D    @`c  c H D    @`c  `  H   `      @ ƨ  d 0e   H D   ! HP`p  D    F    e  _   l  ˩  J J    `        e        `     e    e  ! A    A H D !   ƨ   0 8   8   (  (  ƨ 0 Ą 0 Ą    8c 0   H D      ƨ   0   8 (  Ƅ   (0    ƨ8 0     8c  c( H D   ! HP`p  é    c  E     (#    Ȫ  d 0#(    `  j[  A   KW  j           ` `d       r P `    `      k    ` `e     ` P  `  ! A    A   H D  !! HP  D  t!
 x!
 |!
 !
  !
         m tj  ! A H D !! HP`p  D  Ʃ  ʄ    x1
 `^c ʄ  |1
t9
 ʄ1
   (  1
    Pn   4! `5^c  tʄ0xj| Ԁʄ  0Ԅj$8  pt  l  ! A    H D( !! HP`p    E ? g      K ([ Z J[ ) ( Pk H( k  (0 a#  Ʃ    ` X8     \  G `E^c  , ǜ (   `.  `T	 `Q^c4)	x    `  `%     x)Ԅ9 |)tQ k)tl x(|l Ԁ$(Ԅl(  p `n    4) ` T (   tl;d   ! A    A H D, !! HP`p  ĩ?      Z  $  `[ )  h H ` [ kH  C   X#H$ a  `  X+      ' p `E^c  (
    `4 `Q^c       ` tIx) . 9|I
)t. Hxn|(Ԁ.HԄn ԁ  j   tn;d   ! A   H D$ !! HP`p    L   E  F 8 `a^c    0 {  n0  P1  < a   #      `p^c  /     t `}^c  0 a4 8 a  $< @ a( , A  p@   8        ` c     d Ɯ   8 	   0  `^c    `r4!  t  ! A    A  H DD !! HP`p  Ʃ  E  Ĩ#       `^c3   (G 0J `^c   `^c}   `^cy       `[ ]     ( ( `  c 0  J  d(0c     ! A    A  H D !! HP`pC  C  ĩ `^c    E     AC  p?  P
      `^c6   pt'   41 `^c.   `0 n  ΄x|!Ԁ1taԄ$   r(  R ΄  ,0Ԅ (       ƨ 0r    0 ( ctΆ  v  ! A    A   H D4 !! HP`  D    P  (    ``   48(x)
t9
,|)
0)
 )
((,(0( a(      ltj (  ! A  H D  !    (c   H D   ! HP`p    ũ  F  G   `^c` `_c   `_c     `_cpJJ `_cJ P      l  ! A    A H D !! HP`p   c  Ʃ    Ǩ   `  Y  ?   m    @     e  #  ` @0   D 
    ` *  L  @`4 c  c @,ƨ    @`c (   @`c    @ c (       ` @  ` 0 @    @`c   c   @`Xc   0 @,ƨ  e c   `          j  ! A   H D !  è ` %    e @`cL  0  @`c (   @,ƨ @ c (       ` @  ` 0 @    @`c   c   @`Xc   0 @,ƨ  e c   `      H D   ! H  ' @d  @   ` &       Ʉ`c 0 D
   f `  c    (   hg @ X	 X  ! H D !  ` H D     ` H D     ` H D     ` H D     ` H D     ` H D     ` H D     ` H D     ` H D     <iƨ   `@ic   ` ic  `8ic ( H D    `8ic     (( `     0   `<ic   @i 0 H D   ! H     ! H D !   #      `8ic      H D   ! HP     @  %    d        j `@ic   `8ic   Ä `Pkc   d  x    e X H   K  j  ! A H D ! H D    H D   ! HP  C    `8ic   `P   ! A H D ! ` H D    ` H D   ! HP  @ P        
 @    P      @ ``qc     ! A H D !! Hc  G c  B - c  e D       e    ` `f      E E g c  #     /  H F G m  [  ɤ? 0 c x#   8F m    cF m c    cF  eE ɸ  c[  ( Ƥ h &   8D iD i
 d c k(k  ! H D !! H @   @`c   c @ ( c 0 8 `lc     @  `      `  ! H D !! HP`p  Ä    ` H   F L  p       p*`       l  c $  , l   ̄ c    , F( Hg  Ũ@#0(      kF     ` J   J l  c $ ̄,  Ƹ    l ( ,f H'  Ũ@J0(  k      N l   cpc      l  c  $ ̄@, l Ƹ     c( ,@fH#  Ũ0(  {  k l c Ԝ   `  ! A   H D !! H @iƨ    Pkƨ 0 ń Ƹ x (  f X H     ! H D !! HP  D        j    `8ic  `   ` `   ! A H D !  0 E H D   ! H    ! H D ! 0  c  c     H D     0d H D   ! HM    @`c    %      @` c    ! H D ! @(  `          H D     è   @`(c    %<     f c 0
? ` ĸ *     @` c    @`c    @ ƨ @`,c (   g 0? `         @   d @0 (c  @`(c            @  @ ƨ @`c 0      H D     !C C C C C  "C!C H D   ! HP  C ʜc  jz ` +      ` +      e    )     j  #     @` c   ` $$  j @`$ c     c        ` `    ` $       @`, c (
      j  #          j  ! A H D !! HԘ    @$     @     Ą (&   @C԰ @          ! H D ! @ `  
C          ` H D   ! HP`p      ` (  L    pV Ν` 
 ( J  ! A    H D !! HzÌ   ` 0#-        e    c cc @$   E e @#   g  ` $   g g c cc E ` $   g cc  c
   EԳ  e       g c eA   ! H D !! HP  C c zjX   0{j0$
  j 0c0cl   0D&    `0z ` $   *lj cŜ 0j
 P  fj c0^'   0G'Ը*lj cŜ 0j
 P  fj c]'   F'      j P ʔ<%Ԁ5%Ԕ  j  ! A H D !! HP`p D   E    f    S     l  p#W  ` ` 
   J,   ` ` 
   J         
     E     `fl     `l        `g   l `7   l  `fqtf  ` ,    c
 
l'     ` 
 J   ` ` 
    `f     c   l     ` 
    `f     c}   l     `     k ` PkLk  `Y  c  ! A   H D !! HP`p   @  @`c @  C @ ΩA      P$
    l    P+       n    @`c  ck k k] c k k  ! A    A H D !! HP`p  C @@R   @Ω @   j  r c D       n c
C c    `  l     ! A    A H D !! HPԥ  C   XJ  ! A H D !! HPԙ  C
  j       `   
 @    gj   #    !
    e  ! A H D !! HP`ԴÄ  C   (    l}    +    lj;  ! A  H D !! HP`p    ` ,    D%   `dČ    p+      j       j         p p+         n  l       a  ! A    H D !! HP  C `  X a  #    d a  `  
 c c c jc
  ! A H D !! H @`c @     @(    Ä    hP & `    gP   Ȅc %         )  h h  `        `  ! H D !! HP`pԘ    ` $    @'   p      J `    @ƨ  @  f P#  '   J (       f  # Jp   c      @ @8ƨ  f P#
  ' J (       f  # J  ! A    H D !! HP  C       cʄ (    j
Ըj	   
j  ! A H D !!HP`p $(Ը  C     c    P c  Ǆ  ƺ4ǅ E
j #  0     ` Ph    ("C  `@    Ej    g @  Ȩ  n   L  n     `       XX X  +     
 g        ` ` Lc  
j Pc"C   g    E  "J  `   JԀ g -  
j               ` `e  #   `j  #   `j  #
    ` ` 	  j Pc*C  ` `T   *Ըʄ  n.  j  Pc("Cظʄ  n J	    n  X X+J,J
jʄ  rJ    n   	   n X X*JԭJԫꄸʄz `       8    n    n cC c   * X X-*ԉꄇ* Phu"C ! A    A   $ ( A H D, !! HP`p  ĩ   @,     G        @(     E  ` !      X @` c      n c j  j   l c j  j   t c p  p   r c p
  p     @$  dc   ! A    A  H D !! H+    ` d[ c d  h      `  c     Ǆ  H(f c  @ k ) h  m    m      xc  c  Ä 8     H(f c  8 k  ! H D !! HP`pԠ    `$'    C       # ȹ  ) 	 `   j   `    jj  C [J     `Z         jr j  `  ! A    H D$ !! HP  Ĩ  C  %#    `  &   z (     t X$     4    `z  c
  `     `t $        t)
 `
  ! A H D !     `      e 0  ` e 0          `   `   `  `     H D   ! HP`p @   @ ( @   Ǆ  C    ƥ    `  P  ##  b  `       `E   *ԼrJج*J԰"JԽJ `k2       j+*]  `
Ԭ
 @`  c @  '  g    #
      0       g (#  @    j (/    ` +      @`$c @     d   Ý  j+* P*D    @    j (  K    ! A    H D !! HP  C z`  `*ԃ  j?  j  ! A H D !! HP`p  C  C 
  Ш  j  j @   j     ` +  | `gj px  jfj   p#m   ` y    `gj p6    Шj wj p    `|!
z
؃!
z ` $    t)
tj .8      c  `#     jj %    `j 
     j#*԰y  )
G     `  j  ` g
ؤ!
W
   j @   r (ԅ     `    1    `  
t)
  jz c*a
|  j` +
    j j p  #JԿtj  jtjz}  `
 `$_c       `   ʔK
  `      ! A    A H D !! HP` #   `  c     G `  cG   0*     K` H     (g 0^   ` P     `g!
f!
 9

Ԝ!
ԖI
   `4jc9
     `Dkc 8
    Ԕ;* i  ` 8
   `lc;*  Ը8J` l
 8Լ

Լ8J8J8J8JԠ:JԤ:JԜ=*Ԡ=*J5     `lc    Դ JԨe*8J   0j(   ?= >   8    ?׀?l<< 8 0 c `;J:J԰J;J;J;J  `  ! A  H D !! HPԸ  è @@$J` $'     0 @` c{ 眄   Ä  e0
 c (c 0
    Ĩ  ` @( 
 @,   @`0 c       c @ ( 0  ! A H D !! HPԴ  (.    C h    P  d
Ą00c J0J(J  H  J `J h   Pc    '# PAJ(d   JA g c H  B g "J c H   `   ejd c c\J  ! A H D !! HPf  C `J`

Դ
  ! A H D !! HP  Cvc        j    `J  `*  ! A H D !! HÄ         c        ! H D !! HP`p      d Ź Ƹ  C G  l J zl   #/   XJ  Ĩ          @j )  H 0 c  8@ J  и  A   l X         )   Hg )  H 0 c  @@ -        Ĩ          @j )  H 0 c  8 J  и  A   l X         )   Hg )  H 0 c  @   ! A    A H D !! HP`p $  C4 0 , ( 0   `( a0c Cz `   4  ` ` $         j 	  ˺ PH
] J0 `   f4 xc    (C,   d    Ƹ  n  0    `,   d 0  ƜZ00 0z     ,    d    pxC`  n       ,  d `0   0z      `  ! A    A    $ A H D8 !! HP` A      (   j @  )      ( z     $ A    %  ,0         D ԰̄80@ ` Ƹ
 `4(  P88  )
Ȅ<0 @@Hi     ! A  H DH !! HlÌ  (&     A              ! H D !!HP`p   ĩ  @  C 0Ԙq
 @@  @d ƨ  e   0  `  P J(J ` j  ʜ$Ꜭ
  J `{ P  l ! A   H D !! HP`p  D    ũ    
     l  #
  #LԔ  (     l  #     H  l    H]  n @ PC  ` @` c @  H Hԃl H#      @` c     .d      c c   `L` M     !Ըl @$  @( ƨ cj씜:Lc   l    c    @  d  K c  @`c      fK   c         l   (#       @`, c    j  d (   ((     l (	    ll
           L @,       _   lL^  j  ` +  j ` .    @   d  c %    @` c   ( c ( H    ` `    ` $       @` c (Ԋl @` c @  
Ŝ   0      Ƅ @` c 8 0 (   @ ƨ @   8 (  d  K c  @`c      hK   c  H
     l H#      @` c  Ul H(     l H#
     l H#     
  l H#     	    l  #      @` c  kl @` c  Ԙ @    l̌  0 @@ l̌   @   0     l     ! A   H D !! HԴ  è  `     `\f`  ! H D !! HԴ  è ` $    `   	      `Gf`  ! H D !! HPԐ  # ` D    @J @g         g  #     M @         g (#    Ĩ     0     d @# N @P iT  ǔ   ` +    jG @  j  ! A H D !! HԴ  8%$    è ` %  d 8     
f @#       ' `       (i @  {      `f   `     ! H D !! H  
    `       `   0 0  `     `h`  ! H D !! H  è  `     `f`  ! H D !! H  Ĩ   `     ` &    `  ` $     g`  ! H D !! HP`p   Lc  ʨ @     T8 j    LD J `wRLԛl      )   ll p  K  lk XLԩ    ` *'      @4  @  l       ` (  `  D
   l  `          @  @` )       @  %   @    ̔ @` c @   @  00L 8  fC,    8L @ԭ      lA `ZLԐ	l

̜dZL    l  r    8    j  ! A    A H D !! HP`  C c  ̨ʄ @h    Ƹ   ` 8  ;*ظ  j    `      @    j_ c @  0P lJT   j`J  j  J   `      	     `.jP l`  ! A  H D !! HPԴ  C                 ʄ  Ɯ  j 0    8(  ! A H D !! HP`p   Ȝ  @ co@   dQԬQԤu$ԘS$gSD  `     f h P##     h P#     h P#     h P#      a|  `+M    ˩ h P#  h P#/      ` D   pHԘhȜ 2       a       a   X a a    	   a h  #    h$    @  @     ]  h  (+  gd) (#  +$  d{ _      d   a   )Ԙ+#S   \  h     j  9    n  ! A   H D !! HP`p  C  c
   ̨   ` 0   j p#
    ̨ ` J  jy     ;     ˩j  j+*} `  0,    nj  #   @ #%    ̨j
 j p#    (JԴJ  j  j  ̨ j p#    `JԼj+*Q `  n  ! A    A H D !! HP`p  C  cʜ   ra  j  j  0,      j    (,
    8,       8J(JԔ+*          ˩0J   (J  n  ! A   H D !! HP`p  C  ĩcʜ   ?
 ` D    l d <_  c     D     j p+    n  j p     `Jx     l  j p+r    n>  j p    J  j<    ` X,b   ` .    `
 $   `  j     .   J `J ` D  J  JԨ  j    jF    ` X,=    j    jʜ	   jO    ` X,+    ` $   `U  j @    d(c (#    
  J ` $  `(JԛJԔ*  j     j:    ` X,    j2      ! A   H D !! HP   D  d	    R  jjj    c    J  `J  ! A H D !! H @0  #   @ @ƨ    e	 @`Hc   	  c	   @`(c 8	      ` 	  @	 8	 4  T)	  ? `  x @  @f   Ɯ   H XT( @`c  U!	  `      ? `  x @  @f   Ɯ   H X(i     ? ?  i  Ɯ (   ci  ?  pyT  (f  c Ɯ  8    @ Ɯ/ۀ (   c  ! H D ! @ @  e @`c  Ä    e  Ą  d  ń  e H D    @ƨ  `  f X#
     @   e k  f  #    H D    @( @   Ą    l) @`@c    j1 ` E  n! @`c  p!  hql ` $      @`c  r!  hs H D   ! HPԜ  è  ` $
    @ 
`       @`c  CX @ ` $      @`c  Y! @`c  [!  `       `
   Z  gZ @`c         j  ! A H D !! H @ )      i @#      @  @ƨ    fC c (       i @#     ! H D !! H  # @    ` @X	 @  h	  g	   e ĸ 	 d  e Ƥ  (	  e,	 @`0c  c0	  `	  g   @`c      c4@	8	 (	  
  $	 ` +
  `d	 `   e	 idi	 c* i   c. ɔ c0  Ƹ6   
  	 	( i 8  c0	@		  ! H D !   @ @`c @ 8  c @ ƨ8  g<    `        f@  f  ƄDH0  hL  g  P@ H D   ! H   @`c  T!  `         ?  `xk @  ) X  Ʉ   e @T0 h0 @`c  U!  `         ?  `xk @  ) X  Ʉ   e @0 h1 @`c  V!  `      ? `  x) @ ƨ Hg      @ X( @`c  W!  `      ? `  x) @ ƨ Hg      @ X)  ! H D ! @   X! H D   ! H     c ("   d (    {d (         H   @ @ @   Ɯ  g  h '   g H           zd 0  d (     &  ! H D ! @     @ƨ @ u!  ev  w!  ex  y!  fz  {!  h|  }!  h~  !  h  !  h  !    h c          @`c!  ! c  )   c!  ! H D    H D    H D    @ @` c    Ä @X  Ą @`c  Ä  d @`Pc  Ä  d  e  d  e H D   ! H  
  @`c  c  C*   c h_  c     D     e         e        e               N  e      Q  e        e                    ! H D !! HP`p  C   @`0c  (Ԅ l c (Ԝʄ @` c     (&     j (#     j c c c @$   @(j ( p#    ` Ԥ
[j @   c   ~j `#        @`c @  (  d @$ c @   e  c      @` c    6   
 `$      Ψ  ($    `  nf `; dlj (#7 d @ 
 @T p  e c Ԝ  ` $     rj p c  c @`c  Ԁ @ (ԃj @8c y @` c (z 0$   ` @`@c 0 @< 0 @`<c     %      @ @$ƨ  eH c   A   { @`c  | @` c (}ʌ c 0vwʌ uj Ƹ x c Ƥ  c 0c @(c  @`c (?   T  @ ƨ  d    8 Ɯ  ?   @ ƨ  d    8 Ɯ   g P @`c
ń  0  l @$9   `  H'   g   g P @`c
ń  0  z @%      H$   d   d P @` c
ń  0  Ԯ   
 H$   d   d P
ń d   (c  c @  0c Ԛ   
 $     z @$	    `` $ d  t $  ` $ d   '        $          Pd P
c  c 
Ƅ $   ` @`@c   (:    $:    @`@c @< 0  ` 1   rj @p c  c   @`@c      @< ` ( @  qjs  Ÿ  c  c Ƥ 0c @(c  @`c (} @`c  Ԁ @`c ({ c  y+ c  0C     l ` $
      @ 
 @T 0  e0c @ 
  ` @T   e c j cj c
 @`0c   Ԡ
J @4 @`$c P (  ! A   H D !! H    @`xc   @`c      (  '  @` cg  0\  ` %u    ` @` cB  0` 	  0$f      ` %]   @`@c 0 @`c     %   c,  0  ` (H    @`c   Ը @ ¥     g @   c 0 d Ǆ  `   &,     ` Ǆ @ Hg 0   #
     LǄ @` c   0  P    ` $9    @`c @  0   ` $      @`c 8(     ` @`c  Ǆ @`c 0Լ @`@c  ԥ    @` c   0    %  M  @` c  Ԍ`  @` cd  @` c  z\  g      ! H D !! H    @`xc   @`c      %0      @` ch    @ ) ` @  	 `g @  `d g \ ǄXg X \g  @`c     @ ` (T 	    ` 	 X&      8 X	       @` c( !      ! H D !! HP`p    @ x   H  @Ω#  C   (    Ȫ   ()    D ` $    @` ce  0 @   `  ,      ` ,    ( j   @  c 0 @`cd     0%   ` @`cH  0   ` 2
    < _ d d(c      )     8 * @`c H 0,      @`c 0 0L    j  ,\     Xj        @`c    ($
    j @` c  (,        j  ^     ` 	   ` 28     @`c    Ԭj  (#      Ũ `          `    `      @` c 0d* @ Tj H (#M     h  @` c   (F     j_ _ ĸ (c 0 c    :       @`c (jXj 4  \j 8      (h( j  2      @` cA   R    @` c         ` ( ( 2   * @` c?% j  #     * @` c! *  ! A    A     H D$ !! HP`p $ ` @ x) @@J X	   X
 @`$c  +   E      G   D  ` 
   l Xd ` $A ,Ԑl (  1     e Z   ` A   n  ` $  ` 0   @` ce    @`$c    ` D 
     l d ` $ ,Ԑl (       e 0   `    n @` c @$ń   d   C  
    `l d ` $ ,Ԑl (       e    `    ` 2s   @` c   0(  @` c  `  X  @`cd ̄  (  &      @`c  H    @`$c    ` D 
   `l d ` $= ,Ԑl (  -     e    `   ` 0
  < l @ ¥_   0 c Ԩl   (#   8 , @`c H   2      @`c   @`$c   D (
   l d ` $  ,Ԑl (        e    `     R    l  ` 2     Xl        @`c  (  %
    l @` c   2        l      ` 	   ` 0     @`c     @`$c    ` D 
     l d ` $  ,Ԑl (  o      e V   ` =   nl  (#      Ũ `          `    `       @` c Hdl @ Tl X (#     h  @` c   (     l_ _ ĸ (c 0 c     @`$c    ` D 
    l d ` $  ,Ԑl (  	      e        nhlx (c  `  c     e   P  @   ̄  v 8         ˩hl   ƨx (c  0    e   P  @`  c ̄   8  vw  樂  ˩ @`c (c   Xl 8A  \l :>   <  hl `  kx (c  X    e   P  @`  c ̄   8  vP    ˩hlx (c     (    e   P  @`  c ̄   8  v8    ˩  2     @` c  Ԏ(  @` c Hԉ( hlx (c     (  p  e   P  @`  c ̄   8  v  e  ˩hlx (c  `  c   7  ez   P  @`  c ̄   8  v  ,  ˩  0      @` cA  (	    @` c     lY    @`xc  @ 0 0 ` 0    @` c%   H   l  #! ` @` c X   hlx (c  `  c     e8   P  @`  c ̄   8  v    ˩  n  ! A    A    $ A H D( !! H @x   (   @ @  0 `-  ԸǄ `   &=    `  @`c    (  &,   `  @`c @      c    8 @`c  (    8 c ( @`0c  @L 0   d c (   d @    (c   0       &            J      ! H D !! H  Ĩd c     $  ` $      @&    ` `g @   `e      `         `       g   8/     +       $  (    `  di 8    H e  #       䨨   H(     e c  #        @`c   8  
   `   (     @` c (      ` &
     @`c (       @` c ( (   ! H D !! H  d   ` XM     c c   ` D     ( g c   ` %3   `0  `f Xc    #  f# @    ɨ   ` Xm      ! e    g Xe   
   @"   0	     g  0      @          !  # % 0 f      f #(    ! H D!! HP  C @  `ʄ  @`c 0 c  0 `  ` $-       Ԁ  @`8c       0$   e @`c 0  @j (  (#     @`c 0V
           0#    @`c (  @`c  0  @`Lc    Ä (D j 0c#
D
  ! A H D !! HP`p     ` TԤh @@  @d ƨ (    d 0     P ct$h+   c l<p<x<|<dԀ<Ԅ,Ԉ<Ԍ< E <  ƨ   0d 8    P  g$  䩠 $  ,Ԡdl ` +-     @`L ch     ƨ (m    c 0 @X    8  2  Ƅ  hp4 @`h c  ƨl,  0 `, c    e|, c x`c  c       Ԁ,    	    Ԥ  p++      @D hl ( @P ƨ x (R 02t    ƨ (c 0m   , Ɯ ( 0
   (       (	 8    Ƅ ( 0
    ƨ   0c  c Ԝ  m  ̄  .    t      K  hl  #̄d   p(    h  ` *        `     `tl  c 8t 8%  $Ԕlx c ̄  (  8x$Ԅ,Ԍ4Ԉ|l        Ǫ `       ` 6         ` $   ` 
     셁hhl    ̄d ` $p   ` *     l̄ 0#S    )8  8K     d 0#   He c `c<lL `  c  hl    k     c ( Ԁ Pe̄ 0   稐̄ 80 8    c  @ @  $xl     ƨ k P 0c 0    ) 8 c @ ,  稄̄ 8j   0Լ `  N     hlHe  ̄(f c  0e( pl 8y   hlhhl    ̄` @@  8r    ! A    A   H D  !! HP`p Ԥ      @Dń   0LHK,LԔL0L4L8L<L@LDLHLLL@ H    ` 
   Ը Ը @`D k @L  Xf (  c  Ԙ  @ P ) @`T k Hf X  c  # @`X c @h  d  f    # N i_  å ` -  +h  `       (  (d  #O D iC A ɸP   c  Ƥ 	l;#Ԩp+t3xCԱ   ldhl   xf    +  (-,     4 ƨ  p ) 0k H  c  ƨ  $ `t c x  ? I  k   0F ɸ  c    ) H| l? Ƥ  $ cP   )  S3;(L$$ x# *P|Ԩl   #      " (q  #L iF ? ? c?   d0t0#԰(p0$4ԸJ+ `|c `hk  X  d  %A cB  c  Դ$ `   ,  $ 0   q  c @`c	 ` @  # Ǹ  @`|c) 0_  @`cA    8ԁ  @` cL    @ @`c ( 0 @  8 @`c @  (   ( @`c @<ń 0ԈH X @`c @ (  ( @``c 
   Ԕ l @ @`Tc ( 0 @(ń c X     `   @Pń @`Tc ( 0  c X      P`  k @ń c ( 0 @ @`Dc Xl H      @` 
c @
 ( 0 P%      P 0 @`  c ` H @ X P  `  P-  ` $f  , @( `   $      H @`c  `  X  
P     @PP  @`  c   (   6@    @H,̄  d   @  (cC c0c Ԭ @` c (   c @       %$   ` 2   2 @ @` c    %  c̄ @ , 0 H @ P
     h̄  `    `dl P   `    `  f   ) X H `< c X ` ( ` 6      d ] c  	+d+c$섔 ` D    d ` (    l   (#      ($      ` $   `          `    `H l  #     l ` k  X        ` 6~        ɨ `!  hl    L̄l  (#  `d $      Ũ ` 6       f    @   vll   ƨ   ) 8kL 0 H , H( % H  , (  ƨ H 0,   H     c (H   @$2      d c c `c# 8k  ƨ d 0 J] c H Ɯ  0     )    H   P P     `$ ch    ƨxl l 0  $ c  H  P   Դ d c c `c#  
 `    l    r      ɨ   `[   luhlN	 4    ɨj `    `   
h̄  ` @` c @  X X @   ` @ 2       C  D@ @` c  v   d l P#    @`Xc 0 P.     ` -      ` $        d   0'z   l  0c  u   `H0  ` %m        %H  `H l   0#         )    `  dh 0:  `     0       d (#     8  lC Ԩ d c̄    c , `4L  |l  ,4\L  ĨEԈ $       hc#Ԍl (    l  #     l  #  `  `   `!e  3333
#c,      Щ  )hl̄K @l    `  k LKX      @#      l P#     l (     (#l X    `l X
k# + H$
  #l   c+#l 8#      l c Ԩ   $̄ )3 ) l `)hl̄\	Ի  d   ('    `t l(c  #
    ` '     t l $   +Լl   #     @` c  d 0Ԥl chl  	  ̄H   ` $
   @l (#   @$ L ` 2      ` 2      f (       @  
  hlr̄     '      l  #    2  `(Ԩ ` $
         d (#  dlXԼ ` $  H l    #   ̄ f0c c `e# f(0c c `eń 0 ` '	  #|   `    ` 0) (     4   ` $}     l   @@ P%s    l P#'         #    l     l @ ť  0   `k  H `\  l    ` $      lc d gZ `    `<P 6.   d  ` $    lH l P#    l  `@Z    ` 6W   `     `d 
Q   `hl  
  ̄ @`Lc@   C $ (     ,l @ ) 0 ( c, @`Xc   @    H @,Ω @`$c    ` D 
     l d ` $  ,Ԑl (#         ib   @`c    `   `     hl    ̄d ` -            ` `e   (   vH , ()                `  df (          3l    (#  +  0  8   l $CԴ̄ ` f \0c c `  dc# f0c c `c$ ` 6       (2    `  ed   0N   ` (R      l   c@ l c  c   `  `X 2     < l c< 0)   (2:  $ l c `       t l       l c l  c  %   l  cd  ` $   	       ` $
      ` $      l c l   c   ` - g  +  `섕̄섙 $hl `  kx  c e Xc  #3    P   t ̄    +  *  ˪̄  hl  t  d   hl  ˪    ̄d lKԴ̄ f0c c `e\ @` c    d (Ԣ g (#     l;8  2     ̄%0,"H#   l   +    K  0000d l  0#    &  $ ` 2      ` 2        ` $   `,K  `l     (#  [  0  8   d (#C ` ( l  #    `$t  ## 2     lHct Kl  cS#Ԥl      +   (    `  ed %      è )         `       d̄ c, c|l `  4L\Ԉ R$P ̆  `HX   ltd    lS$`++
 4)Ԡ l P#     @`Xc H @ ń  ` P  l XB  l  Щhl    ̄ l P#      @`Xc @ P   @,ƨ  e c   `     hl    ̄ @`Hcd  c `8 c   dE c cP  ƨ  , ) 0k H  c  | d x  #  ƨ, 0k  c d x	   d   ), Hk  c d x       ,  k  cPl (#    D    ƨ (k  # ` k 0 Xi   Ɯ k0$  c    4   0 Xi   Ɯ k<$8,    c     0@   Xi  cD,H$L  v  ! A    A     H D$ !!HP`p $(, æ  D  dL   ũ  ` D	    @`c 
 (|(
 c   @`c     E  Ŝ  ` j @8ť\  c 0 cl  c @0   @` c    j @$ @  @`<c     %    @`Tc  (H ʄ  @   &     @`@c   ` %     0  .  4 j c ,       ` .	     ,     j       $  `       @8 j    0c   8
  @`c      jI    ,f       @ ` .\      C @`c Ԩj  (#	   ` j   c  #    j ` .      Ũ ` .         ` $    j     j      @` c   p ( $$         (   v  ̨           j   #       ` ,         ` A    j   >     l  jx  j  `p
 @`Hc  c
 @`c (ԨjjCt   j   , jck j   8X
  d j    8#   
8 8.       H ʄ  0`
i48
 @`@c  F  ` @`Tc  8H ʄ  l ! A    $ A( ,  H D0 !! HP  C @ @`c  cT
   @`0c  X 
 g \
  ` %  ` 
 `\
 @`<c @H  c   d
   @`Lc  c  
h 
 @`Pc   c @  
 e
Դ d @  (d
 @`c @ń     c Ǹ  c Ƥ
| 
 @`c @ń  c
   @`c  c
p 
 @` c(
  ct0
 @&a 
 0
 @`c @ń  c  
Ԭ 
 @`c @Є     c Ǹ  c ? 
!
 @`c &    c   c? Ǥ? ,
 @`c  c0
԰@
 @`c )
  c8
 1
 `!
 '  H
    
0)
 j    +      j  #  0u` @B 
!
,)
 @`c @Є  c,
   @`4c  c  
Ը"
 @`Dc   c 
Լ*
 @`Hc2
  c
"
Ԫ `    
 *
t   ` $    `    ` 2
 @`c   @ Є cʄ ( @Х 0  e
  `    `\  $     j  @ c"
  @4Є  
 ( @@ф    "
hj #
2
2
2
2
    #  2
԰ +
+
 @` c @  c
   @`c #
  c @@
   @`c#
  c @4
   @` c#
  c @ 
   @`c#
  c @ 
   @`c$#
  c @(
   @`c,#
  c @ 0
   @`,cD#
  c @0<
   @`cd *  c@#
   )\  x
Ըj ccX
X\#
h j    #O   j  #K     j  #G     T#
T ʄX 
 f  c  +
0 (
ԁ L#
 ` )(  @8
h   [   0 c ('   i  Lg   ($  P
 (#     H+
 ` +3    ` /  j#c+   
+c H3
ԟ h \ c h(ch  ' i  T+
Ԩj'
"
 )    `|     01
 @`c  c0
  `

    j\
  ! A H D !! HP`p  C` 
 ` %    ` $  3 a   > `j  C]  ? ` j  CY     3 `    `R   ? `d  $K     X j@  ø ĹT  `      `      (g   `0     `    `4    `\     .    `` jc  C)   ` c _  c     D   c `          `     ```T`` `    ``ghj `   `T X ʄ@ ʅ  ! A   H D !T  @ (Ԝ  @X    Ԉ Ä @<d 8 (h   (԰ @L  Դ @P (|  @ń ( @ť  0Ԍ  (Ԑ  @ ť  Ԩ  @ń (Ԭ  @ť  Ԭ @Є ( @Х   @ Є ( @(Х   @4Є ( @DХ   @HЄ ( @Х   @@ф ( @     @ ( @   @@ (4 @   @ ( @    @  (  @  $ @ (( @  , @ (0 @  D @  (< @,  @ @0 (x c @ť  H D   ! HP`p   C  ` %        (     j ` Xi   ` j  (#      Ũ (         `      

  (/  l (M     j (G     ʄ ("        '     p(
  #   `  `    `!
 &	      `    !
   0
4
4
4
@   jl  (C    `@
@  `        (    `j (#
   _ d d0c (     `3   
 0   ,
Կʄj$    j X    t j $     $j (     (ʄ (&       ` $      ~   	3d3cw   	+d+ch  l  ! A  H D !   ` $    ` ` $      e c   ct  e  c c H D    @`c     @L  d ce (    @  (d     H D   ! HP`  D    `H= cL `P= cT `X5 c4 c8A `< c@ `D `  `$ `( `, `05 c c@ ` c ` ` $" H  ` $	  4   ` $        H -   8*    qo ä  f  1 {    ` ` @`,c $   e c     @ @`lc   ˸H  8 cȥ 0@ @ 	 ` ( *   k  w c @	8c  ` *     h-   o `  Ä   d @`tc ƸX @X ( 0 	        s `   Ȅ  c Ƹ(c  0c0 c ` c   \ c  @cȥ @ `` c  ( @`(c   $0   ` 
-  > c b      @`c    `o  ń    @` c   d c @, ? ` ( I      @`c     d c @   c    @`0c   ( @( ` t m   0%      `        @`c @    d %   0*      `{   ` D      @`$c   @( @`hc hN   	 @`c   @ @`hc hB   # @`c    @`c     w c @	R8cd m    @#   @1o ä  8%  & m c @# f  Ĩ     @/o  g    	  Ĩ  o      ` %   o Ϥ     f    `  ' ä4     ! A  H D\ !     (     $0Ԝ Ԥ#Ԩ#Ԭ#԰#Լ#Դ#Ԙ$Ԝ$Ԡ$ cƨ  0 (8 c H D   ! H  `  c       `  c H'    ` `` H     (k H   `    ` 8(Ph  `,  `d<|xH ` `  ` `\X `` `L	 `P
 `T3 cd `hd `lp `t6 `x2 `|  ` ` `d `  `ԔԘ: `  `ԸlptxԔ|ԀԄԈ ` `  ` `  `  `   `$(PTX\`Ԩ `  `ԴԸ ` &       `lN  g     ` `  ! H D !!HP`p $(,0԰    c`  E <   `80Dd#԰l     @48A   #      Ĩ ` 2      (f `    ̟   hl    D̄   @`c  (  2   `  2      e    ? L Xl  #;     @`0c    @`Pc @4	+  c  L  @`(c @4ń+ 0 c( ̄ ( 0 @'    `      l @      @      l 	 c4 c @ń(c  @`8c  8  `   ` $ @  @`Lc  C  (     ,l @  0 ( c, @`Xc ̞ 8 @   @ $  p   C p
     @  d c p  @`,c     (ԡ @ @`  c ȸP   ] Ƹ ,   0 8ԃ < a  ɨ	KK8   `      3  @l   #b   `    ` l 	 c 4̄ c`0c @ń( d+1 ` *E 8 <   l   88     4  `       hl    z̄ @`c  @ (   ` %*      @   ̝ @`$c    ` D 
     l d ` $ ,Ԑl (         h   ` t   t @`c     %    @      0 8hl  :̄  ` 8       @ @Lƨ @`Pc   Z  L l (   @`@c    D  @`c  c 8@ ̄4# FZ  D(   :T     P  ')   0l4   @H    4l     ƨT$ ( 0  0    D     (H (  ƨ 0L̄ 0     c 0      0'  `\ $   l T] 0   c c @  Pc `\4Ԋ4l  8cT,   `4 8  P 8c X|   \$,P   hl    ̄Pl  0#    `\ $    t`l 0#     l T] 0   c c @6  Pc4 '   8e   ƨ   0 P 8    X    ƨ H 0   @ 8         8 (8  ƨ 8 0<   8  @  (  c  TL 0ԓ     t \4Ԏ   < h] c h1 Chl   ƨx  c e 0c   4   P    ̄  < a        l  4         ̄  &         (    `  dg ( `4  `l HHhId!3 `    )  ! He       l  Ƹ	 c @ń80c (@c @ń 9 ԃ `   P      ̄ 8< ar   ` 6  *     t  ĸl+ c   0P @Pl  @`0c (   l @L @`Pc    L ̄  l0D  (c   @ԑD   t ! A    A   $ ( A, 0  H D@ !h! HP`p   ,	 ` Dd c `  `\ ̄ `\(1 $% $9	 `  P
 t   `LA $ T)`B ``c  cd  `  A    edl+      kYt  ` $      ` `c  cAdԨl   #  `d   ` 4    ̅  A    n  `    K  e         j $`  k      kY  `L  A ֛   r@   Kқ   p  j    `c N}  Z r @B  c c
+c!
r  B c 
    #           c (#     8d    Ī  ǪL 8*C   ` 4:   99  ` * A    n (`  kʙ    ,`  k     `  YԊ   n (`  k    0`  k     `  Yz   n (`  k    4`  k   lY ` *=  "  ` 49   `!
d  Ԭ!  
 "*  l&   @x ,A 
$l`̄;CcE  (c
3c3 A 8<! P	  @)       i  d3c c P     9    q     5 A c  k   j      fl   p#M     L pA  A #   r  ` 1       eL  ` !    ˝   j.   kD   k     n  >   p   k  ` 
  Y +  Xr `
k  )
ScA  j  c  kؘ   A  e  c  kϘ   L r  c  kǘ   L̡   j   pjF  Ԑ A Lá   j  k pj2 xl p& A Ț       k   k  kpԀ l    p  p ᄐ(Ԣ 8    p  x ᄐ(2 8  kh  `   A    e  k   c   k  l_ `    @`  p(    Ǆ] 0    p  ` ᄐ(x 8    p  h ᄐ( 8      p ᄐ(j 8  kϤ   pLYi   j  k pj  XLb   j  k pj  PL[   j  k pj  H% l      pH ᄐ(% 8  k@ l   @`ƨ  p      (    p  @ ᄐ(3 8    p  P ᄐ(Þ 8      pX ᄐ(% 8  kԊ   pLY$   j  k pjW  8L   j  k pjE  0L   j   pj4    e  @`      p 8  k(֚ l      p( ᄐ(֞ 8  k ˚ l    p    ᄐ( 8    p  0 ᄐ(} 8      p8 ᄐ(ߞ 8  kD   pYԈ(  p 8`    ńh 0  k 8`  ń  p  ^ 0  넴08 8`  ń  p  S 0  넢88 8`  ń  p  H 0  `H8 8`  ń  p  = 0  NP8 8`  ń  p  2 0  <X8 e  c  k    c  c  k    8`  ń  p   0  x8Ԑ Ԑ A 8`   Ą  r0
     넳8A  n  c  kf      A  ny  c  k]       nq  c  kU      99  A9 4     t ld9! Լ) t dĜ+c91 Ա! 1 rI  c  k-   q@ A  e c?      #   kU   n7  c  k   E̅   A ,   nl   c  >  KA c n!  c  k   l$l  #     ("p * e  c     kdl  ``c`2  ($    
 ` 	  Tt   `L9 $  PA `" `* 0$   t l 0#  * ``c   c	 
  dL1 `P9TA` ``c   c	 
  L!dP)T1Թ`: D    \"Ԛ\* H`  k    L`  k    P`  kՖ      kl   1YB c!  ! A    A   H D !  èc  (#Y    f (#       f (#    `) `  ` ` ` `f+c >   " ` ('    `d  $     )))) `d  $   ) ` (  9t fgf  c (ct #g  c )g  (  t g#ct g#c  H D   4! HP`p   é@c   `#   D  ` X4    n X#    `T`c  c Nj%    >   k n    J X   @ d P#J  d n X`    d   n P6          K n  c n     j        ln   K    k &   k  
   p  ҕ   j   k ncY `   R   `  `      @ n
#c      %  4 n d    Ctn   `   P(n$  `   !\ `8      T`Tn?    `   `j(  c  $     `  d ` 0   `  {   n         d         ! ` h    ` ΄ &a       XA\A f	   ΄ @`c80  0 c (, c  Ԉ ch  @΄  c8. Ƹ(\  H@ @`c  0 cp.   )|nt)X( @`c`΄ L Ƹ 8ԘP c  N  HP cn  @x cXl.  0H c  ( @ńnd c 8(c  @$Х  `     XIԣ\Ԟ ΄      e  d  TΆ l`     v `    vj(  c  $ (       ` ` ^! T`    `Wj( (.  D,  E ` $K    H(Pt ΄)x2    ` 
   Ln  x"xnTc9xA  cҖ  c  k     P#<      n X`    dÔ   n P(           K n  c nє     j     ˔   ln   K Ŕ   k ۔   k     p     j   k ncYԶA  c  c  ky     X`   e   n P(           K n  c n     j`        lns   K    k    k     p  N   jj   k ncY}A  c\  c  k@     X0!   X X   XD   ` `s   \!       ` i     `L.AeIxncT9^Ai  XDx   ` `U   t n `#      `     n
dPt Y!Ex*n `       N  ˄  j \0   `jI  T   N   j  k `j5  LĖ n  nD@Կ      k d`  ń0  p       p  D (ؚ 8    pL (Լ@ԯ       p  T (a 8    \ (Լ@Ú   p  k(   p  \`  ń  p  K 0  L8Լ Լ  \`     p8>     T@    `    t n `#^     n `     L        kNԓ   j   `j?     N   j  k `j+  T n  kP n    p   (r 8    p (Լ@I       p   ( 8      p @] (  k   p  \`    p   8  @   \`     t(ؙ     ˄0n `   ?      N :   j   `jo     N1   j  k `j[   n  k| n    p  | ( 8    p (Լ@         p (Ԣ 8N  t@
   j  k `j,  lו n  nd@ҕ      k d`  ń0  pЙ       p  d ( 8    pl (Լ@       p  t (t 8      pz  \`  ń  p  g 0  l8 \`    p  \ 8  @Լ Լ  \`     p(O     ˄0n `     xnT.cIY԰    N  ˄  j <0   `jH  4   N   j  k `j4  ,l n d`      p  ń@j 0  n_ $8    p$ (Լ@ԁ       p  , (X 8    p4 (Լ@
         p< (l 8  @ў   p  \`  ń  p   0  ,8Լ Լ  \`     p8     4@  ! A    A     H D !! HP`p  C   @`cD   Å @`Pc   (  lE a
tj)   j  (#m  tZ
@ j 	  e    `       `      e  dt
h
 ` %?   ` `p
|
j  ʄ 0c  `e       (j 0c c)
(
 `c      tj `  ("
 (d     j   c)
ԅ   
 (     j `}  ( 0     0cd  
s   !
  7   j  	+c             dp
   `	+c           d  `  ` @`c    c
 0#      j`c"
 (3  
 (P   ` 0cjc 0  
Զ   eY
A  e  c  k   Y
   c `    jc 0  
ԝ   exY
A  e  c  k{   oY
cjc 0  
Ԋ   eeY
A  e  c  kh   \Y
 @`c  c4
  ! A    H D !    !h" p`ƨ dr x` (l*p*X*(*8*<*    t"H"L"P*T"x*|"Ԁ"Ԅ"Ԉ"Ԍ"Ԑ"Ԕ" t`  )  ` |`    (     (  `    * Ԝ*Ԡ*Ԥ*Ԩ*8 H D   ! HP`pԤ    é"*D   2t ` $      ` $5     ,n
 0   ``c A    (ڗ   j  ˄0{   j"   4Z ,n  k A  ``c     lǗ       jh (,n 0Z  ˄ `  0  j  ń 0  k  ! A   H D  !! HP`t  C  ``c  %      `   A Ӓ   e  k   /   k   ,Z
 eɒ  c  k     k ` %     lj
 c,
  ! A  H D !! HP`p $(t   C  ` $	  D
 ` $   ` $      j   (#     j (#    t ` $   (0j          0    ` `e      `  @j<"
 D"
  c8"
   @
<
@
   8
 ($    \J `2       `0    `  ed `:    X `4  tJ]   zʅ `    W   n `  k  m   d  k        x K  tE   z     @   n `  kW     km     j   t   kXZ
X  ` d    X
  2     Xj         0    ` `e  	    @j<"
 D"
  c  Tʅ `    C   n `K   ` `  n    `   `<b
@b
`   8b
 2        `0    ` `d `   ` `  n"    `K   `0j d   `         `0    ` `d `    n `	    `K     @j c   c  @
<"
)   8"
(4j DM  ` `  <
@"
A  n  c  k   w   X
A  n  c  k   U    (   xj (       ! A    A    $ A(  H D, !! HP`ph   C 8 Ä   8&  h* 8%t         #H @g       (ʄ09
(*
 @e    Ũ  @ @%[  (2
j Hc
  `X
@
8
<
  ` drD
hj     ` @  A X   etj     ` -  HZ
N   e `  k~   Hjb     k LZ
`k  k> PZ
 `  kU     ` 	    ˝3   l  e   nF   TZ
A  l*  c     k  A  e!  c  k       e  c     ktj\     `@c   0  `Dj 0#  `Xj 0#
     t j  c	  0e       )
(j c    c  (
  `(
  6  j  `  ! A   H D ! H D    H D   H    @`c @ƨ 8  ` $     L  $      @` c   
       @` c    L  8 ( H D   ! HH  @`c      %  " @`4c       @`4c"       @`c     ! H D !! H  @  è (H c   (#(      @`dc   @Դ @`@c @4 @ @ @`c  h  @ @ f   D f @DƄ  @`cP  ( 0  ` @ $     	       @`dc    @ @`c    y      ! H D !! HP`   @`c  D ( ` $i    @`c 04   ` $    @ƨ  d    (#   @ l  0     a @  @ c( ̄ (c 0 `  ` *=      ( ` 
3   ` *     @`c  H @`c   (Ԙ ̄ c 0  
.     D  %     <l  @`c     *     ` %
     @`  @`c (      @l c<l c    
       0 ` @`c  Ԛ4   ! A  H D !! H@     $ e    #   D g c  #    `    ` &b       ` $]    `  ` $X    `  @`Xc   @   (  @` c    `   &7      @   ` )-      `  @`Hc     @`c @ H `   ` )    @`c  @$ƨ  D  @`c (Ԃ   (  Ԙ  @`c @ 8  ` R           @`c @ 0Ԙ  c H     8 @`c  ?       &    `  ` $	    ` 	 ` $    `  &    `  ` $	    `  ` $    `  &    ` , ` $	    ` $ ` $    `  &
  X `  $y  H ` $t   r p   ! H D !! HP`p    $c     #m    ǩl
++ c   ` $      i  @  8c 8  8 0 @`c  @   ( ` %O    `4  $     Ǩ  d    8 (#     @@Jl  (
Ԝ     a @    c(  8c    @ @`c 8H p
   (%     D̄ (&     <(  @`c  8  .    ` &
     @`  @`c        @l c<l cԛ   ! A   H D ! @D  0 @ƨ$   Ԙ c @ (  H D   ! HP`p   C  $c    F  Ǫ    #  j
++ c$$   ` $      i @    c @$ń 0  d        pj 0 ` $W +
Դj (c    D $   e    ` W  p @ ƨ @$ń 0c   d          j  ` $ +
Դj (c     $   e    ` 5   n ʄ @`c @ 0  ` 4    `4  $  $   Ũ  d    (#  $  @j$  0    $ a @  c( ʄ  c @$ń 0  d          j  ` $  +
Դj (c      $   e I   `     n @`c  @ 0  cH   @$ń  d         `j 0 ` $w  +
Դj (c    d  $   e     `     `      D %P     <ʄ$0$  @`c     6    ` %?     @ʄ$0$  @`c   @`$c    `      nj  ` $  +
Դj (c    	  $   e        n j   ƨ (c  0  $       ʄL @`  c< J     Pl  xt     ˩@j c$<j c$ j   ƨ (c  0  $ ԕ  ɳ   <  @`  cL ʄ      J  x  ˩ j (c  `  c   $ R     <  @`  cL ʄ      0  xH  ˩ c (  c     c  $      <  @`  cL ʄ        x  ˩ c (  c     c  $ Ե  {   <  @`  cL ʄ        x  ˩$   n  ! A    A     H D( !! HP`p @Dƨ   C 8   @$ƨ E    `     j  ` $X  +
Դj (  H      e %   ` X    n @$  @`c Ԙ  ( @`$c 8    `  G    nj  ` $  +
Դj (  	      e   3     nj (c  `  c     e    ʄL @`  c< J     Pԅ  r     ˩j (c  `  c     e   <  @`  cL ʄ      m  r  ˩  n  ! A    A H D !! HP`p     ` TԌ @@  @d ƨ (    d 0     P c#Ԑ*   c ;Ԕ;Ԝ;Ԡ;ԈԤ;Ԩ+Ԭ;԰; E ;  ƨ   0d 8    P  g#   $  +ĳԈl ` +-     @`L c     ƨ (m    c 0 @X    8  2  Ƅ  Ԕ3 @`h c  ƨ+  0 `, c    e+ c `c  c       Ԥ+    	      p++      @D l ( @P ƨ  (R 02    ƨ (c 0m   , Ɯ ( 0
   (       (	 8    Ƅ ( 0
    ƨ   0c  c   m  ̄  O    t      K  l  D̄   p(    h  ` *        `     `l  c 8 8%  #Ըl c ̄  (  8#Ԩ+԰3Ԭl        Ǫ `       ` 6         ` $   ` 
     셁l    ̄ ` $p   ` *     l̄ 0#S    )8  8K     d 0#   He c `c<ԐL `  c  l    k     c ( Ԥ Pe̄ 0   稴̄ 80 8    c  @ @  #Ԝl     ƨ k P 0c 0    ) 8 c @ +  稨̄ 8j   0 `  o     lHe  ̄(f c  0e( 䜔l 8y   l셐l    ̄ @@  8r    ! A    A   H D  !! HP`p $     @Dń   0:P;Ը;T;X;\;`;d;h;l;p;   p   @ ` 
   Ը Ը @`D k @L  Xf (  c  LԄ  @P  @`T k 8f X  c @`   @`X cd"  @d     f @h   c (  ąN _ nPD P- Ԑ   x1    , P-     ( ƨ 4  0l `p k  Å X 8P n  C A θ N ` c  ȅ , "F n   Ƥ? h ? c  礔ZԘ*Ԝ2ԠRB x'a !t{ 0 ƨ 0q  c @`cL ` @  # Ǹ  @`|c) 0_  @`cA    8ԁ  @` cL    @ @`c ( 0 @ @`c 8   @  8
  8 @`c8  XtH  ` p  @`<c	    @ @`c 8 8 @` @`c (   0 @T @`(c 8, X ( p   ! ` @`Hc    @Є @`c ( 0 @ Є c 8  ( @Є @`c X        ` @` @`tc ( 0 @Pń @`$c ( 8 @`Tc  XP Є c   (     @ @` 
c ( @
 0 8 P&      P 8 @`  c` X @ (   P 0 P-q  ` $I  `P @( `   $   `  `  ` 
6    <  @`  c     :)    @HP  dC c @ (c  @` cЄ   0 @ c       %      06    `   @` c    %    ` c @ dp 8 X @ P
       `    `p P   `  ƨ ` k 0g   X  4 Ɯ  `p 0 X  ` :     d ] c  	+d+cЄ ` D     ` (  	 p   (#      ($      ` $   `  `    ` `    `p ` k  X        ` :p        Ψ `}  p    Єp  (#v  ` $      Ũ ` :         ` g    ` kp 0 `  c   8Є( ŝ X f p`p  0c   c ) Xԟ Ǹ  dp (] Ƹ X c  p   0  X    ƨÅ 0 ` k ԃ  X p 8     o H H+  Ɯp   稌 0 p 8  ą c  p  H     
 `        Ψ  
 `   ppi#  Ψ   `    `   & @` c     @  ( @ 6    6  Ī   `  6       ƪ  @` c (    p P#    @`Xc   P2     ` -   `  ` $       p  (#      Ũ (.         `      0       d (#     8  b (0   ƨ iHc`p c0 [    Ĩpd#  +  [   3t #       HT  `     hj:ԸԴp `     p   #  (,p  #  `8  `   ` Ԥ l  3333
#c Ը  I pPHJ  k J	c0     )Є    p@csKX`pqk   `  k  $;;  X    @#      p H#     p (    (  `[    `Ԥ p `
S + p$
  #p   c+#p 0#     $p c$   $Є )3 )$p )pЄ\	+  ` p  #   *p  (#
    ` @` c (Ԉ X d  Ep  	  Є   p    ˪ P'       ` 6        ` $	   `      @p P  `Є2  `p    (#  Z  0  8   d (#b ` ,   Lp   #    `L#`Dp   #  "D+@+  (0(y
   p   Ԑp  
  Є p    #
      p  #    6  `Є0 ` $}   d 0 c c    D  jA Ǆ  P () Ƥj$ʅ ``*d" KC(0Դ:   tX,p0 pn4$  ` $      `<   p    %G    p  #&         #       `p @ ť  X  `   ,}   p ` $     $pc$ԈЄ f:  p      $ p c$Є    pE    !   t  KY   pp    7Є ` :T   `     ` 
N   `p  
  $Є @`Lc@   C Ĺ (     Pp @ Ν 0 ( cP @`Xc  @,Ō 8 @`$c    ` D 
     p  ` $  +Դp (      @   n   @`c    `    0 Ԑp    Є ` -            ` `e   0         `       e 0v       `  :  Ǩp  0#  Z  8  8   p $b e(c c   dcd"` e(c c c$   :       (6        ` :   ` ` 6      pt   c8 p c  c    8Դp  (6,  H[ p c ` p $      ` 6        `    `, 0  V      p  c   p   c ( ` - f  :  `Єp `  k  c e Xc  ÅQ    <  @    t Є (  L  F  Kp @` c   0ԈЄ 8 f 6     s8ppX  'Y   T p  #U    dH c c c  K"@p   #     3D#1@# 6     pcp`   c#T  ` $    p      *   (    `  e?dPS   p   pRԊ ;Ԍ p P#   ` @`Xc X @` c   PT  ( ($  P   ƨ0d (   dcX  pv  p  pPp      RЄ p   #      @`Xc @   @,ƨ    e c     ` 8 XԐp    Є @`Hc  cJ 8  (  dE c ct  ƨ ,  0l 8  c   d x  " ` k0S Xl  c< d x	   d  ,S (l  c8 d x       ƨ(S 0l  c4tp P#q    D  `  k 8l      ƨ   Ĺ Xn (  c 0 k  T   8n  cX#` X ` c\+   d#    h+      Ƅ (n  cl3Dp    p  z  ! A    A    $ A H D( !! HP`p C  D  d     p ` D    T  @`8cH ʄ    80 @`0cD     @` c  Hʄ @$ j  @`Dc< ( @` c  @j @  ` &|      @`c    P  ` $o      @`Tc     p(    j @`c     @D  `   jk    ` ,S     @`0c p   p,H       j|    @` c T        p%    ` $(       @`xc      %    j   @`4c  `      r @`Hc  c1   
      ` +*      j1   &     p!       j=  jW  j @`HcT   c
  `

   j  j @`0c  ԰   @`Tc  @`c   p  ! A    A H D !! HP`   @ @`c  c@   @`0c   
 m @`cD    @ń    c   cM h l @ń @`c    Ä cp   c @ ńƤx   @`c|   c @ń   @`c   @`c   c  ? - @`c   c 礨`( @`ct0   HXL@\PԘH c ?   c ?  @`c8  cԴ( @`c   c 0e      d     (  d    '	  0u` @BԨ( ` @`cT   c  '  DH l  #   L   %       &	 ` %       @i       H"      `H l   (#     L ̄ (&       $	 ` &       @i (#{    `<Ԙ    l @#  *** @` c @  cT   @`c  c\X" @`cD   c hԄ  @` c@  @  c lԄ  @` ch  ckp   @`ct"  c @x   @`c|"  c @   @`,c"  c @0   @`c  c"80d   '  (h l  c @  * ` M  2 `   l @ń kc (h( l Ԡ  ` $    `    l#c   
+c M        <" mH*     l[  ! A  H D !! HP`  C c   0%  
#c   (#       > `  @       ($    `  fg (#  ? ` j @C   (#      `         `$    ` `e `   `|   ? `@  E  `D  D	  `Oj `o   `@ `    `h    `T ʄ &	   ``   `    `]   B ` &-  < L jc  CU   ` c `  c     D    ` EJ   `D  ` D     C    `A     ``` E=   `D  ``6    `` E2   `D @`H  E+   `L 	 ` D&   ` d a  c     D   8 c `        `8 `8 `8 T` ` %   `8 ` ` %   `8   ! A  H D !@ Ä @  0 t Ä D ( 8h  @ń (|  @ť  0x Ä  0 8 @ń  (Ԕ Ä @ť @D 0 8 @ T  \Ä @X (h @  0 8 @ l  tÄ @ p (x @ @ 0 8 |  ԄÄ @ (Ԉ @ @, 0 8 @0  d c @ń  H D   ! HP`\   C  ` %      ` j     `   `      ` &       j   #y    `  
 j  (#      Ũ (L         `      
 
   (L/     0 (\     ,j (V     (ʄ (#        '     <\(
  #   `8  `    ` 
 &
       `     4j
    (
0+
,+
(+
l   j@j        Lj         j  (#       (,    `  ed         #
   ,       ` ,      Ũ0g      `
j      l    (ʄ,j j  #        	+d+cj  l  ! A  H D ! @`c      @L  d ce (    @  (d    H D   ! HP` #     `D 8<  ` @D 8 cB (,  c 04  `   9 c$ 9    ` 9     a ` 5   g c  #   q       $  @`lc  F    eP   X c  8P @` c  ń )  @  cX)   Ƹ H8 @`tc @ (8 @`(c 0      %2    ` ` -  = c \      @`c    m  ń    @` c   d c @, ? ` ( C      @`c     d c @   c    @`0c   ( @( `   `        @`c @    d %    (5        dc (C     ` @`$c  d @( @`hc x   	` @`c  d @ @`hc x   # @`c    @`c   ge8 \( a    ! A H DH !     (     $ Ԉ """""""Լ### cƨ  0 (8 c H D   ! H  `  c     ` `  c X'     ` H       Hm X    `|    `  <B@B(,04Hd   `@Ԍ   
 `hA@	   `@7  `@ $ 6 `@@2    `A   `Ad    ` 8T(A<x:     $ (Ag   @ (8 c  `  ԔԘԜԠԼBԤԨԬ԰ԸB `   BBBBB CCCCCCC C$C(C,C0C4C8C<C `@CDCHCLCԠAtCxC|CԀC &  CP@T  g     ` `P  ! H D !  ` e    Ĩ     `    @A    `     <    `  `    6    `    1   
 `  `     +    ` e 8'   ` e 8#  
 ` e 8  	 ` e 8   `@ e 8   `  e 8   ` e 8   ` e 8   ` e 8   ` e 8   ` `  H D   ! HP`p $(, c  Hh     `D(X  @@   (  <D  (& @  <88 lL T l    @# @ ` 88@       ƨ ( 0   L4(00 8l    N̄ l @(	e ( v @4ť l l   ` f   l 8# @  @`Lc  C  (     Pl @  0 ( cP @`Xc L 8 @ $ @,Ŝ   @     p C p
     @`c    `       @ @`  c ȸ ,  ] Ƹ<  0 (ԃ H a  	K  ɨK8`   `    K  2 @x T l   8 (#L  ` 8&B <   l  ֨L D ᄷH  ` z   Kl cԐl  0 ҵ̄ @`c    @ `   %(     L̝ @`$c    ` D 
     l  ` $ +Դl (      @   hu   ` G   r @`c     %    @  l   0Լ4 ̄  ` 6       @4  @`Lc ޟ 0 4    0(    X̄ @`@c@  (   Æ8 @8" EZ  X1   'T     t  ')   Tl4   @H    Xl     ƨx# ( 0  0    h     (l (  ƨ 0p̄ 0     c 0      0'  ` $   l x] T   c c @  Pc `3Xl  8cx+   稄3 8  P 8c Xl#+t@       (l̄tl  0#    ` $    rl 0#     l x] T   c c @7  PcX   ƨ ' 8e   0   P 8    X    ƨ H 0   8 @@    8      8 (\  ƨ 8 0`   8  d  (  c  xK 0g     r 3b   ;섟 g] c g0 Cl  c e    (c      <  @     ̄ 8H a      K  l  ֨L D l &  @   lH  `   K2     rY  llj   < l     ̄   H a ` l  K     r  ĸl+8   (c  0       Ǩ  
8< Dl 0<( <   r  ! A    A    $ A( ,  H DP !h! HP`pԍ   é 	 ` Db c `  `n  (#   	 
  `   `08Դ( $ @ ` `ac  cԨ   `  A |   enz   ~   kXԜn    #      `ac   c@Ԩ    A |   p   `    K||   e  z   j a  kz   w~   k  `  Yl|   k8 N  h|   j  z   ln  
SC  CB J P  Y  *      `  P     J *        t       \   ,   `x!|!ԀԄ  ` p A <|   p a  klz    a  kNz     ` W lY,|   p a  k\z    a  k>z     ` > pY|   p a  kLz    a  k.z   xnCtY ` ,  Q `  
j,Q4!0
   )  n !x  ` l  A {   eN  ` \    {   j b  kz     lz    n  Sc  C    {     b  ky     ly   N  ` +    {   j  z   l}   k kA Xx `   
c    S  (  3c  e3c c       {    e     { A c  ky   ^      fA  j{  c  ky     A  c{  c  ky      A  j{  c  kyy       e{  c  kqy   Nn    #L   B  A {   j|  ` 2    x{   eN  ` "    q{   jpy   kly   k  Oy   l  y   ph}   k  ` 
	  ,YԐn +  Xc `
k0  R4)
ScA  jO{  c  k3y   pA  eF{  c  k*y   N j>{  c  k"y   |(   j  k jF XԐ  A|N   j  k j2 xXԀn & A ${    p=y   k{   k  kp{ ln    r  p ᄐ( 8    r  x ᄐ(Ԏ 8  khԄ  `   A {   et  ky    {   k  ln{ `     b  r(    Ǆ 0    r  ` ᄐ( 8    r  h ᄐ(d 8      r ᄐ( 8  k+   rN,YŁ   j  k j  XXԀN   j  k j  PXԄN   j  k j  HXԁ{ tn      rH ᄐ(ԁ 8  k@v{ pn    bƨ  r     t (    r  @ ᄐ(ԏ 8    r  P ᄐ( 8      rX ᄐ(ԁ 8  k   rN0YԀ   j  k jW  8XԄNy   j  k jE  0XԀNr   j  k j4    c   bX      r= 8  k(2{ pn      r( ᄐ(2 8  k '{ tn    r    ᄐ(I 8    r  0 ᄐ(~ 8      r8 ᄐ(; 8  kԠ   rH4Y a  ń  r  ~ 0  k aX  ń  r  ~ 0  넴08 aX  ń  r  ~ 0  넢88 aX  ń  r  ~ 0  `H8 aX  ń  r  ~ 0  NP8 aX  ń  r  ~ 0  <X8 ez  c  kw   t cy  c  kw   p aX  ń  r  s~ 0  x8 a   Ą A  v0ԐXf~     넳8A  py  c  kw      A  py  c  kw       py  c  kw      ` nl|!Ԁ) Ԁx!A  ky  c  kw   N8 NA  ey  c  w   k5   py  c  kw   &  ey  c  w   kn  `ac!  #      	 
  T   `(08 $  @ ` `ac     c  A  ! (# ` n0Ԥ! (#  ! `ac	   c
  0 `8@ `ac   c	 
   (0Ժ9 D    !Ԝ) b  kw    b  k|w    b  k^w   y   k0n   h1HYB c`!d  ! A    A   H D !! HP`  C c 0#g     \  0$[    `x1
|1
Ԁ
Ԅ
Ԩ   ` I  A y   l b  kDw    b  k&w     ` 0  lY
y   l b  k4w     b  kw     `   pY
x   l b  k$w    $b  kw   x#jtY
 (c
$   
A  lx  c  kv      A  lx  c  kv       lx  c  kv      ` jd|1
Ԁ)
 
Ԧx!
  ! A  H D !0! HP`p $Ԡ    ` X8d   Dc X#   X X   XDt   `  ` c       8 Pl
#c    %X  L l\LC PL  P`  J̆    6D     ̅ 8b  x   n 
      <b  n x    1     PT    6    n @b  w               ` `n        T  8j    g Ԙ l\  ` :         ԰  (  j  e T̅ r     C  ,l   P X%  T!  2` 섕:     l4cT)P!  0 ,  ` lPATIc    XD   `   px   ` l p#     l p       `  PY %T!  ~    |L  ˄  j~ 0   pjx    A L~   j  k pjd  Ԭx pl  ll@ԧx        p   (| 8    p (@Ԡ|         p (R| 8ԄL  @Խ~   j  k pj4  ԇx tl  ll@Ԃx      k 0b  ń0  p|       p   (ԛ| 8    p (@r|       p   ($| 8      p @Ԇ| (  k   p  (b  ń  p  | 0  8 (b  ń  p  | 0  넕8  A (b     r8{     @Ԕl pg   ^~      |L Y~   j   pj6  x  A LP~   j  k pj"  px pl  khx ll    p  h (8| 8    pp (@|       p  x ({ 8      p  (b    p  { 8  p@   (b A    p(ԧ{     ˄x0   l p	     l ,c  TIPY~    L    j} @8   pjG  8  A L}   j  k pj3  0w pl 0b      p  ń@Ծ{ 0  tlw (8    p( (@{       p  0 (Ԭ{ 8    p8 (@^{         p@ ({ 8  @%   p  (b  ń  p  I{ 0  08   (b A    p@<{     k8` l p#      p     l
d   ` ̄PYwT!Ԕl p   }    L  `@Ԏ}   j   pjG  X  A L}   j  k pj3  POw tl  kHKw pl    p  0b    ńI{ 0    p  H (d{ 8    pP (@;{       p  X (z 8    ` (@O{   p  kԴ   p  (b    p  z 8  P@   (b A    p(z     ˄X0Ԙ   `    `     d  c 섰 XԜ l	   c ̄8 0 @`c  T̄ c  ( , c Ƹ  (  c   @  cL( H@ @`c  0H c    l  , c ) L ) @`cP̄ Ƹ 8$  c(L   HP c l  @X c @ń ( 0 c ̄ 0   (8 c    ! A    A    $ A H D !! HP`pXÅ  C  u   njs   j  (#  Z
 @`c    c
 0#      jpc!
 (g  
 (LO   ` 0:  sHj  P pc  `e       j pc cH)
Ը
 `c      j `  !
Hd (d     hj   cH)
R   h
` (N     hj `J  ( 0     0cd  H
@   h!
    jH|jc 0  |
pu   elY
A  eju  c  kNs   lY
 sjc 0  
[u   etY
A  eUu  c  k9s   tY
sjc 0  
Hu   epY
A  eBu  c  k&s   pY
 @`c  c
  ! A   H D !    ! dr Db 01 21Ը111    12*Ԩ Ä0)))  Ą 2Ԥ)2222 2$282(2,20242 H D   ! HP`,  !0!  )  !Ԝ ` $     t l Hb  K  
s   kPu   kY  j Lbs   Hu   k   Y ` $     lt   k  ! A  H D !! HP`p Tb Pbƨ  C    cOt   ̝   (      `Xbc  Å ` $.   ` $      j (  A t      k  r    
u   k"   Y
 ct  c  kr     k j (     t      k  A  ct  c  kyr     k $     j
 c
  ! A   H D !! HP`p $(`   C  ` ,	  
 ` ,   ` ,       \bjs             j  #     j  #        ` $   j        (0         ` 	    j c!
)

   )


   
 ($    J `2       (0    `  ed `:     `4  tXJ t   zʅ `    t   n `b  k  0r     kEr     Bs   x K  tt   z     t   n `b  kr     k0r     -r   tWt   kY
  ` d    
  2     j         (0    `  ef  	    j c!
!
)
q   
 db    Ws   l p     q
q
c   q
 ` 2        0    `  de p   ` hb  lr    pK   `Hj d   `         0    `  de   p    l lbr    pK     j c   c  
!
*   !
Ըj DR  ` `  
!
A  ns  c  kfq   |   
A  nws  c  k[q   Z         j         ! A    A    $ A(  H D, !! HP`p   %q    CH  @ 8f       (H1
Ը!
 8d       8$X  )
Ԕj @c
  `



j   !
)
 `drc  =   ((s   ejZq      ` *  Y
s   e pb  kNq   j2q     kts Y
Ԭ `k  ks Y
 tb  k%q     `     ˝s   l@     A  lr  c  p   k7     A  er  c  kp      A  er  c  p   kjb     `   8    8$   `  	#HÄ( 8f       (H1
 8d  !
  C!
Ԓjp   nY
  ! A   H D ! H D    H D     ` X#	     C        C k H D      fH8       (H0  `      @g c H D   ! H  f       0+&    %B e X      `  c    d     Ɯ X  )   H_      `  c    h Ɯ c   H Q        0+#   B    (
      `  c   h  Ɯ   (  )   H8      `  c   h Ɯ   H ,       0+#     H0   (
      `  c   d  Ɯ   (  )   H      `  c   h Ɯ   H         0+     q0     ! H D !! HP`p      `  `$XЅ `( ,  `0 4 0 c8 <  `@ D   XU  ('P nQ     p C X       X    ` `d XC   p     r         ˦  r       r   K  r   J k`  cPk`k    @       D  He  (hg  c  +Ɯ(p c(P  ة @       r  Ν k P+     (p c(P  ! A    A     H DH !! HP @`c  C`    @   g 0#	      @     g 0#    @`c  cPk k k] c k k  ! A H D !! HP`p      @`c  Å  d] c 4 D `xbc   @ƨ  @   f (#       d J `    `j      @`Dc   `bc֕   `bcҕ   @`c  cpk k k] c k k  ! A    H D !  `    ĸ (   %    ` ` $         ` ` $    `| ` $    H D     cD D c ? c(F c  #c c  c H D   ! HP`  C  cD ˜ eԘ   l Ԕ  (0X W  a  ! A  H D  !! HP  C  Dʄ  d  Ԍ  (Ԉ Ƅ 0( >8 jHʜa ՚$  ! A H D !! HԼÄD e  d  Ԡ  (0 (     a  ! H D !! HP`pD    ĩ  H    (  H  ( `$H, HJ @8( 8,  8    n     n    lH̜` $ a  ! A    H D, !! HP`pԨ  C  ` ȸ   D   @  h@ąB  h    %  h   A  $     j      B p  #
    j X$  `     j p      K Xx p  9 pj  `bc h  P @Ņ p  j G   ! A    A  H D !! HP`  Llc  dlF   ä  c&LDTlh,L      L$7L  ! A  H D !  c H D   ! HP`pԄ  Cc  c  ø\ \ Ƹ ( 0c  c7  n k @`c k k  k?  ` +        fJvJ  ! A   H D !! HP`pԄ  CD c   ` c\  ø (\ Ƹ D 0c 縄 c
 (D Ɔ  ̩ r  C c X%  Jr
Ԍj Xc    `
 X   Pgj Prd jHʜ_ $
( h      j H}   ʄ @   @$  f
++  d( Hg     He         h   g6J (c Ü ` &      f  dC    (	      `   ( Ν  r Ƥ8c    c      C         ` `h  
   e `Ν0c c0c  Ν e  ?(c     0  Ν
 h B  H H'      `  c      l  c      l( c    H' Ɯj  (cDʄ J 0!   ( h d c    h   ( 
 h0c  Ν hjD c           Y#c  ! A    A   H D  !! HP`pԴÄ  C    fD   P  E (c   ҩj@dԴJ   >J (f  8  `S   @j j] Hʜј$    v . D, a   #A     `t       n%    j 8c@  `   @DjDj  c@  a   v  `  `D, a   #     jDj  c   ذ `  @<j   a PDʄ  0@cd  `Dj  c  شj c Pc@ (&J  ! A    A   H D4 !! HP`pԴ   Dc   Å  @Dp E p  KHМ^  $V, J @  @ ) Pn
    l@  ` $&     Dp  c        cp cD    @  Ą  i  0c(c c"P c @C cP  `Dp  c   &P  ! A    A  H D !! HP` D   J%Ԩ%Ԭ- @h   J    -Ը-Լ-C  %    `f,  ` X
(L  ! A  H D !%Դ%Ԩ%  %%Ը% H D     `    ĸ (fń|5CԄ,C H D   ! HP`ԨÄ  C   `     Pʄ!g P  ˨d ]j ]j  ! A  H D !! HP`p  C    ` 




 (  
 ʝ    nv  (    ! A   H D !! HP`pԸ  C   _  l d c c j   (Ý ` %   %LjJ   $J  ``L j      %  ` ` j       l9 ` x$
  ! A    H D !! H$  è   @G       ( ` '         ` $
     f @#*    ` ` &    `@ `yc l    g $       ` l8   `yc   ffc 8C        $8f	   $ 048 `  `(x  ! H D !    xc  #"     e  #      @` c     ` @`(cL   @,  `  @`hc @ ( ` 	       @` c   @`c   H D   ! Hx  #  ` $*     @` c  
# c   c# 0 c  ( @hLi  ` '
     i   c(c @d c  @`c        -	 @`c    ! H D !  o ` D  M3    ` ` D  L-    `` D  d'    `` D#   `ߊ6#` D   ``gc .` D   ``8c 
#` D   ``c  `c D    `    ` %  	 ` ` H D   ! HP  C   `"


 




p
l
Լ
H
L
P
T
X
\
`
d
h
Ԅ
Ԉ
   `"
Դ
  `"
x
$
  ` jx

x




  d  %
  %
 @` c ]
    `D
 @`c    ` 



 
$
,
0
4
(%
`  8
Ԍ"
 `<%
Ԁ$
|$

  ! A H D !! HԸ c   d d  d c @`  d 8c 3    # 0+  `   Hs x+   $d x(     `   f `8cq x        f       9 ` 9     f 	    ` i  0  #` .     c,     `    @+  ` f `8cq @  f     ` f 8uq @   f 9 9        `  ! H D !! HP`p $  D   `, Ը(    ʆJ, Aʌ    pu      } `j   ä 0g      , a #    pj         $j       ( a p#    p, a      , a      , a      , j     `     , j     ,  j' ` +Y     ,    &     $j  "     ( a      ( a      ( a      ( j      ( j      (  j ` +0     (  Ť 0   , a
, a (      (  p$J d c c j(c$
  ` ,    `( ` 
  %
 d c c j(c
     `  `  `} ` J"J     c Ť (  p+} `z    +} `dM@  ! A    A    $ A H D0 !! HP`p  D åĄ  n  `&0k `+  \\J  ` @`c X        j `$
   `j `#   $j `#   `  ?J/J   jHʜ?J?J$F   @h      `  )    `    j(j `#     j `#	     j `    /J?Jj    	    n @`c   ` 8        Hʝ j    ΨK }$j   } `j
Լ
} ` ,    `j c c $    j   v  jdj     Dj  c(جj      hj       `   
:
(=
   j  ($&
Ծ!   j j  ΨL >$ @`(c   $-      @    d H c?   [   ä e @   c @    e  @,  c ? ` D   f @  @ 8c    e  @0  c  @`(c  (Դʄ f P  d;DL#C    %    @`c %
 (y   j    X `(,J ,  .J:     `  ` _   
  j[    @`c6J 8  `
_   j    'J @  @  c e @  (c   @   W  jw  johj   jHʜH $(jJ  ! A    H D ! @`c `    `         ` H D   ! HP`  CQ  cHʜ $j `#    j  ` ` (d+  $
 @ `,    #  ji  j      lj `         %    j     `     `bc  j}  j	     l    `    `  ! A  H D !! HP`p #  Ʃ  G `  c     `  cG   0*     ` H     (g 0   ` P `4jc         Dk `ic ( ( l5
 `lc ( (  5
Ԏ%
  `  5
԰5
Ը5
Լ5
5
5
5
5
5
*
  )JH
1J(4J,4J04J44JH4JD4JT4J@
Ԑ
ԉ
 `%
X4J J@4J`4J|$JԬ6J԰6JԴ6J@4j"6JԆ    ` ,;      ` ,(   `
  `lc      
$,J sJ   @j 7  L01D1 0 ( c `J   `  / 0        ` ` ,   %
 ` ,     -
5
 `bcF    -
0
  ! A   H D !! H @`c       @` cP %  ( c   0      @`,c    P  @` cŤ   0(      8)        `          `     ` @`(c     ! H D !! HP`p  M  `CcH  ШL J   ( l\ \ ) (J H J $CJVLaVL  `"L4"   ШN  lV$    l  `     K  l C  @2L c LԒ   X  a P
    	    l P   >   l   `Cc2L @    ` $   a  ũ  @X 	   l P     n P# al          @8"L Cƨ  e  #  0  ũ  @ aX    l P     n P# a]  l  ` +    r  ! A    A H D !! HP`p$Å  C ` $     j   `#T      j      `j  #     jc    `  ` $G      `  
   @`c   n `'  `      j `#  ʝj
Դj
  `    j%

 %
#   %
Ԉm  n `  nfʝ  n_j `  nX     `+    j  ! A   H D !! HP`p  C  @ `Cc  ` $
    j #	      @`c  c #   c
 @`c     @     \ `X\JXd K      @    ̤    eP c>J>J&J p=  J  *JԘ-
    j:
z  H
 j  ˩  ШO   7$j `#    `.       @  (.    `  e (4         ` $   (     ,  j j  ШP $ `  `E   
b    `+ @    `bc  @  ` @ƨ .J e 8rJԸ Pc   -CJ>J p$  
  Ʃ    `X J    aj `
       n `#  `   @`c"J  ԙ  
   j `bc[X$J~   l
  ! A    A  H D  !! HP`pԄ  C @稈c    ˜ d   \ c\   '  (  Ƹ @`cP 3  	$j p	  D @ 4J  dl c0JDj p   p%1      k \   c cc ,     j c \   c cc 0          `j   #          ` @` c  # j   #^Jr  +        d.   j  ! A    A  H D !  è g8c c f  w  ( ` d   g  ` $_   g h  0c   f  TDf  c  -f\DfPfXDfx  ((H    ` $=    `  $F`    g 0ccf  `      LfPfTf  `fdf   (   ``    ` g 0cB   (     Df<f g $f ` (,  ` )   g    0c%   FC,Df$f  ,f $       eF$F   (   0cTDfc    \DffԦP$f  `T$fP$fXfԡ\f<@f%f cD cf H D   ! HPԴ  è` $R    `lc 0    A    f c 0( @`cń  0   @ƨ  ` @  @   @`c @@$J (  Ƅ @`$c @  0    ń  @`c 0    @` c  
  6     `   
 @, @`c   @( @`0 c       c (      (g @ c (c      ! A H D !! HP `$jc  D    ` D    ` ` D^    ePc  C   c c  c     D    jHʜ M$   j  `   s  `"JJV     dT     `5 ` J<'J jHʜ 5$   j  ` jHʜ +$   j  ` jHʜ !$   j  ` jHʜB $-   j  ` +    `
  jHʜ  "
$   j  ` jHʜ $
   j  ` +  s  `
Բ 
 `"JԮJ  ! A H D !! HP`p C    ``   l,  r˝8\tL l  KH̜ Ύ$ r @H   c       . `,LE     `C    ` N%      $j @ @֪    r   (  Ũ (&   ` X%-      $j  ń (  (&      @` c    N   l ` X#           V @       < ` $	    `O     vPcC c <L  ! A    A   H D  !! HP`pԨÄ  CÝ      l ($    j   ʄ    (    l  nʄ   (    n      Α +  lđ    +  l j  ! A    H D !! HP`p  CX ` 9  ` )   j   `  `    ʝ} ` H   j     `'JJ  ` =  `;   
Ԉ  n `+   Ð  n{  l  ` +  lj    j   ``  ʝb  n `+   Z  l  ` +  lj  ! A   H D !Ä     @&  	 `
 ` c @    @  c   8$       e    H D   ! HP`p $   æĄ  v   `0  K *  \TL    ` J       $j  @ @`c   c @@R     0 0  0%   v ` '     @` c Ν   pJ    l   (#    ` @`c X      ($     l (#   $l (#      lH̜?L$ ?L  ?LUF Dl c pC    lH̜G $Hu   ` @h   @   `  !    P   l( P$     l P#     l P#    $l P#      wL/L7L7Ll  @ Pc    $l P##  P	  P$    8 ` $   ` $   l   ` $  8?L  ` :  H̝04l $    vH̝ lK   Ψ  @$l P  } `lԼ} ` 8p   `l c c $ P   l     ldl P    Dl  c(جl P     hl P     j  l   <Ԝ5Ԡ=xl   (#      @`(c   ($0    ll (     l c `(Ą? ` {   d @ @   c    e  @,  c ? ` e   f @ @ ƨ 0c    e  @0  c   @`(c    lV   @ l  ΨL $  l ̄ `L섔UԘUԌ3EԷ;El P#$    @   l (     l  @ P#       X `(,L 8.LԸl P     l    `>  lXl(  cXL @`c̄ 86L  l  l   P'L'L 'L'L'L'L,'L$L$L$L$L $L @  @ 8c @  (c   @   wl      5=Բ  lU   +  lNhl  ve    ݎ5 @`c H̜J  ($
 l   l  l  l  lX ` +h   ~    ` H̝8?LԐ  ΨI $ lM  l  v7  } ` +l    `  l    ('LԴ      `.Ddl P    Dl  c0جl P
      =  lX\LXl(  cXL  l  `dccC <    `   lH̜H $x( @`Dc @  8 l   @   7     s ` +   <l  #     l 	  H̜^     rcC c  lE $  r l"L  <'LL `L  ! A    A    $ A H D( !  t`    D  ``       @`0c (       @`0c            `|       @`0c   @`0c  H D   ! HP`p @0   ń  D> Ƥ ` &x         @T  @P   l  c (
   @` c"
  Ä @    @` c (ʄ  Ԉ @  ` (Ԉ
 ` &O    @` c     
j((ʜ @@ ƨj 0 0Բ   _ j (]jԫ i]jԟ  j$jHY    ` E  ` D
  `Ċ$j  `    `       ` 
  ,,J  @` c          `    `,J         ` @` c (Ե   dHD $  Ҩ  p  t  ˩ @` c Xs `   X\J` ` $      ` E  ` D  `|$j    2J    `.a     y        @`  c @  (Ԉʄ c ( 0 `%H  
 @` c     
j(i(ʜ  @@ ƨj 0 0   _ j (]j ]j
  j|j   ʄj  ˨  ]j  j]j$j        j  Ҩ K$ `,J  `        @` cm    @` c  (Ի          @`  c  ( @@ ƨ` 0  Ҩ $  j"  ,$JT  `   `|J  a    ! A    A  H D !! HP d  E    + `@    %    jy     jHʜ @%
$  ! A H D !%Դ%Ԩ%  %%Ը%Լ%%%% H D   ! HP`Ը  C  j        j  ! A  H D !! HP`p  ĩ  C  HH$CD$C,$C0$C  @ $j (  ( H$jP,j  T,jX$j\$j@     @` c (HX ( `cc$           @   n (ԄJ @@   c (     j   `    Ӆ    ! A   H D !! HPD   %
    CH       D$CԂ  j `@J  ! A H D !! H Ĥ   &   ,e  #2      ` &     0 ` $&   ` &   `,  ` $   ` &   `,  ` $   ` &    `0  ` $       i  g   `     	     ! H D !  Ũ   (  ` E   `"FF H D   !   (  0( (  c   (  8   ( 8 (   ƨ  c 0c  c H D !! HP  D    c (  c @D    ` (      (c          `  c  ` 8  $  8    ` `f 8       &J     $ 0m  iƜX  '	   `   JԢ  e k @f0m  ! A H D( !! HP`p  C/  ĩ P  `  5   &N `NN Jn  c\    J\  J (c cJ  j k @ k `cc  k     @` c      
#l cfN   P       ,  (f (f      k`  k  c  ! A   H D !! HP`p      d Źp Ƹ  C Gl J XJ           @j )  H ( c Ɯ 8@ J и  _ 丄l 8  X         )   Hg )  H ( c Ɯ @@   ! A    A H D !! H    #  d   h \ c\       ` $    @K          (M       @F       (G            iÜ 0E  `i        0C        `  `  ! H D !! HP`p $ @( @$  ą @ ƨ     C        FҜ  &C윦   k<    `  jp  N   P  Ψ(HK J   `J    `  j     B   ` Ν p 8               й`  j     +   `       `  ! A    A    $ A H D( !! HP`p @( @$   @ Ω  $  @,    E    ΄Ɯ  E&C  A$  a    k              `(( $ 0@   ΅    `G 0(pԨ	0@()4HԨ88(J<P    e  ! A   H DD !! H  ` X$     J              ! H D !! HP`p @ ƨ     F    h Ɯ(K  ƅ J    Ϊ`J          ̨  j          ̨֝    0    ƪ         й`  j        `      ! A    A   H D  !! HPԖ  C   edc j  c 0   0D  e c 0       c ` +   ` `  e       +   ` ` +  e `  ! A H D !  ` X    c X#     $e X     _E    d H D   ! HP`p  C    d.j` c  ڊ @`c˝   `.  \tJ"    `D    @稶  g 0#	    ` @     g 0#  `J @`c    d] c   p   `   `/J  ! A    H D !!HP`p $(,04 å    d  @  (   @ @  @d  @p        @  P    ` DX4Lԥ$,LHl Լ$l  ̜  `-D ` $    n ` 2    nHl #    n @      ` |    , ` R-   ` r <e  c     D    lH̜ $ @`Hc      G     +L    n    n  l @ h    @dL`,L  d_ cl$LT,LL ` 2     l   p#   l@     $L `cc  R1L j p  L  jl p     j     j{l p   3L `cc /H l  بA   @$ l P#  T   GL  `  LLԌLԛ  n l  بB $  n     4$L @0  d > c  #    @H  @L ƨ (  0  Ą  e@   c%  @c     @  @c     @ 0 @, @`$c (    P'   `  2      e P    l P#W      6l  '  6ll  #    { `EBLL  l    #    '
    n  @V  l P#    ˪l P#  n @(    d        6     l @ P      بV  l$   q     l` $> X  l  بW $ @` c       cT (    `D $   ` @` c   0  `  @ @` c   `ccp xl   H     l c @$ ƨ @(  @pc   l    c       fK  @  c     gK   c         i `    `        @`, c  ( `dc:    ` jc      @`  c ( 0
     xl 0#     l 0#    lXl       X$LX @  `8dc (     x  ` $o     l  @`  c  ,  l  l$l   @@ ƨ  0p @߀    `adc~   ` $9     ` 0       l l  K  بY a$    `(J       `dc~ l  (#     ` $      `dc  ~-g `.L!LE  lh  l   `dc~    @` c    L c  *L  l l  بZ #$      `     @,       K   vXl0l $   @` c @  `l /     xl     @`c @   C   $ `K JK ) l  `pƄ H P=lԯ5ll    ` `    `        @` c (   l       `  ` l  ب˃$ g `cB        dl      Dl g       @ ` $|    < @` c (8 @` c @Ԉl@4L<L8$L  ` \   l @  @  cÜpc 0 l  Ƅ  c 0    ` `dB c c X#(      @`c    ` @`cDK    jK d, `p 8 @%l X	  -lDl j  X$      l  .,WLl c cL @`c @ ƨ   @ @   fK   c     gK   c     j `j    l @` c @ Ŝp 0 (  Ƅ   0 (ԩ  @` c (Ԉ @` c<,L @Ԋ8DLԬ  lt
        @@ ƨ @`  c 0    @ԋ     l  l$l   `dc}  u   l P#       `LL l  ب[ $      `  J  l)LԸ  tl P    tl  @ P#! % P     @h  (  dN c c P        1L  '      ` 2     (f      `l  #      `  l  '  ll  #    `    { %"L*L  H ` %    `D     l    #u  's    ` %      l    n  ˪  l   
    l      `$ $	      l  بR $El   (#      ($    @ `    @ P    ` P$d      $<        @`, c     6    ` $      @@  (  d ( @@ ƨ   0p  ̜0P $ ` E @Լ̜O$l    #     l      l  #   l  #   H4    `dc| ~     @@ ƨ @`  c 0    @ԃ~     l l  بU $  `      ]~  C~         `dc| `~    @` c @@  P   @`  c    0[~   l P#     l  بS $FlD `  `LLl԰  l l  بT ف$  `    b  l$  بC  lˁ8       lAL  l.  H l  1   Ԩ  @$ @h ƨ  l 0  %؜l  ̄LLԁPDL P     G @dl    	     ll  F    *     M @ @`0c   `>  $8      ` D     J @     `}    @`@ c   @`  c    l     $l   l  Ԩ? n$  ` *         `}     (Ԅ04L    `  }  ~ ` `,  l    `ec{    loHL  l  `      l c @  @ Ü @  pc 0 l  Ƅ @ @@ J  c 0   @`c  Ä  K Ƹ `ec 0 (  Ǆ  K Ƹ 0 (
Ԧ{   dl   0	     Dl   0|      @` c   (X c 0l      XLX @` c   @  @`  c  k   l c `cB   $4     lHL  l$l   @@   p (J}    `adcf{   lhl   (
    Dl  c c (        l  ʨ\ ʀ$  `    }  l c @`c   C ` @`cK J   #   `K )p  xƄ H P=l5l*,L +     l c cLԈ  xa  l  l   Rl ! A     A$ ( , 0 A4  H D8 !  ` X#	     C        C k H D   _  (  (c	#c  c H D    @`c    ('   ()    ` `    ` "      @ƨ `    `    `     f     k (    ` +
        ` @`c      d @`c   d H D     è   ` &    ` @f  g 8%  0 gf @  c c  c          c k H D         ` @`c  c  `  (,04<@DHLPX @GJ  \ @    e 0#    e  e  e   e  e  e  e 0#
    e  e  e  e   e  e 0#
  $  e(  e,  e0  e4  e 0#  8  e<  e@  eD  eH  eL  eP  e @'
       e 0#  T  e  X\+ H D      ` D   ń  &n     e        @` c  c`  `       @` c  cd   `       @` c  che          @` c  cle        @` c  cpe        @` c  cte        @` c  cx e        @` c  c|(e        @` c  c,e        @` c  c0e        @` c  c4e        @`c  cXe     ` @` c  c ` &   `  `       @` c  c`  `       @` c  cd   `       @` c  ch  `       @` c  cl  `       @` c  cp  `       @` c  ct  `       @` c  cx   `       @` c  c|(  `       @` c  c,  `       @` c  c0  `       @` c  c4e          @`c  ce        @` c  ce        @` c  c<e        @` c  c@e        @` c  cHe        @` c  cLe        @` c  cPe        @` c  cXe        @` c  c\e     ` @` c  c ` &   `  `       @` c  c`  `       @` c  cd   `       @` c  ch  `       @` c  cl  `       @` c  cp  `       @` c  ct  `       @` c  cx   `       @` c  c|(  `       @` c  c,  `       @` c  c0  `       @` c  c4  `       @`c  ce          @` c  ce        @` c  c<e        @` c  c@e        @` c  cHe        @` c  cLe        @` c  cPe        @` c  cDe        @` c  cXe        @` c  c\e     ` @` c  c ` &}   ` ` $x   `  `       @` c  cx   `       @` c  c|(  `       @` c  c,  `       @` c  c0e          @` c  c4e        @`c  ce        @` c  ce        @` c  c<e        @` c  c@e        @` c  cHe        @` c  cLe        @` c  cPe        @` c  cDe  >      @` c  c9    &6   ` $2    e        @` c  cx e        @` c  c|(e        @` c  c,e        @` c  c0e        @` c  c4e        @`c  c H D   ! HP`pt  ` $    @xq`   , c D      @ `      $    `  !    `  L @{  pk  k    p2   X
  tp    pk     k @`cX
 J      `  ! A    A  H D ! @    g     `     g (    0    ` D?    ` d Te  c     D    @`c         c  .    d @`c  )   d @`c         c      d @`c     d @`c         c     1 d @`c     d @`$c     q d @`(c  qd H D    @ƨ    f 8      @`c @        f 8       h    h H D     è `  c  `    g @`c @    X%   g @`Dc    `  h @`c  c  BLD g H D    @   `    *  $C |,C H D   ! H  cvXDi @` c    %
  ` t|% @`0c  t     `iD`Xvc n      @``c5 b0    %=    c  # `  ct- @`0c  ( `  c  () ) P i c ) c c)H ()   ) i ) c)X `P 	H ɸ  Ƥ )  0 0 h @c  8c @c  ( Hd+   x`c  ` D      @` c @    $   t%Ժ(5 `30c %      @` c @    $  `t-|    @`0c(   `  ! H D ! @H @    `#    # , H D   ! H   @`c  c    ` 
      @`c @  c  48" @`c   ` D    `     `  ! H D !! HP  C @`c  #
 #
  #
  ct%

 @ `   DO  #
 d he  c     D    `` 
Ԉ"
 ` 
 @`c$
  c
    ` $      `
 @ @`c   c
 @`c  c
  e  e 8	  L$
 @ ƨ    e 8     ` p
Ը


,
Ԍ
H

Ԭ
Ԑ"
"
P$
$$
"
 `  
Դ$
  j#
 `  `   
    ` ` 
Ԉ"
 `	 `` 
Ԉ"
 `
Բ `@
Ԉ"
X ``
Ԉ"
``  ! A H D !! HP`p  C   @`c3
    ("
 @     c,"
 ( 0
 @`c @  c  4
8"
 @`c  c<
   ` D
    d e  c     D    @2
D2
 @ƨ    f  #  H
 @`c  cL
  fP
  f    T
 @<    f  e\
X"
  f   @`c`"
    c @,  d
h"
  f    fl*
 @`c  cp
    `    ` 0
ԛ   ` '
   `4       @`c  ct
 @    d @`@c  c    x
 `V |"
 ` /   ` '      @`c @4    D       @xj   ń2
  ń  C  2
Ԑ"
4*  )2   i  *
Ԕ
 ` D(    `      @`4c @    Ą    Ą    Ą    Ą @`c  c
   ` $  = c
 @`c @  c  Ą
 `  4
  $
 ` (   	    `       @`c  c
 @    e 0  
 @`c   Ä  d  c 
԰2
  
 ` 
 ` '  "
  e    e  e 0x  
   0  *
   @` k?   y  g Ɯ    c    Pc HF        (    ` `h (#?   F     Ɯ       f y   y    g Ɯ   c  Pc  c P @ @`c  c
    `   j   @` k?   y  g Ɯ    c    Pc HF  !     (    ` `h (#?   F     Ɯ     f   y   y    g Ɯ   c  Pc c P @4* ` 	P     @`c  c
 @    l p#A  
    ̄"
 p8  2
  b
  0	    ` @     "
 @`c   c `  0

j   *
   0%  *
  `
 @`c  c
    `   t`     j  
  jt4
     J     `  `
  j4*2
 {{
 4* j zt
 c    @`c  c
ԙxj `K   k ` k @  cp  c  c
 ` @
MD"

  `@2
HD
  C@"
( `!  @` c  Ä  c@2
j (#$ `4
!8
  ! A    A H D !! HP`p   @c  ą c    l c$  D @   d (
    Ĩ      Jl c  f (    @ xl  8       @K      `x k @ ƨ; c 0c  c  è  |$  p4 ` J  0E(l @     llppl 
  lTj`` @ f  $$ 	;c    L$(,$l   (#       4tK    `l (    <      tl    <lt (  t f      c  d c @  c      h (       f  p  (    Ǩ ` 	   ` $     l (     @`c  c,   (
   ` (+   ` ` $     l (#      @`4c @  *    *    0,    c  4 @`c    c8$<    `    ` @` c  c@ `       ` $        `   , @l    (#  D$ @`c  Ä  c4 ` %   @l c  C     l  @ P       ` z      ` $    `   8p @ P=      @`0c   `0  $      `       `IPl c 8%   A4   %        ` %      Ĩ0h 8   P̄T (     `       &$  `     l @  cDPc (c  c  L  H\ 0
     @`c  c 0#  PQ     j ` '      @`c  cTl    #   pl        @`c  cXԦ   \Y  l P0     {  lSp  ,,pl @\,t` $     t,    jpl  KtXJll JtdTpl  KtXJx J ̄hTeL  ! A    H D !! H  è @ )c @     $  f cL,  8%L  % `  ,D @`c   ` ;   2     ` *    @`c    (   (    ` `     @`c  cZ   X @`cP%   T-P @`c    T% @`c     `P-T  iH-L-   @`cH%  L-  i   `L%Hf 8    `, ` c @,   @`c $   (   ` (     ` 	    @`c    cd%   h @`c  \-`-  g\-\ @`c    `%   `*  ! H D !    ` $/   ` ` D
   ` d e  c     D    `            ` `           ` `           ` `           ` `           ` `     H D   ! HP`p  C  c c   ĸ\ \ Ƹ (c 0 c 
Ԝ$
#c
 k @  c @\
  c  Ũ  c   
L$
  e `T  
 @0  d0 c `#q       e          f      @Ωxj       ` K   k ` k @  c  c     @`c   (n   `p ` &    @`c    %    ` <     Dj 3    ʄ  ` 	   ` @Pj   O      X&	      @Tj   E     j   8    j c     c  d c @  c @ƨ      f 8       e  f*     `Lj4Dd
H\
Է  jDj  e  0       e 0 $
 @xj  /     ` K   k ` k @  c  c  c   
  ! A   H D !! HP`p   C    d  ũ  >  A   K:  l
     ʆj ,     j .     Tj #     b
  ` $  r
<dJ8tJ  `*   TJ `eco   `eco             ` `d    r `DJTJԈr
   b
      x    ` `d  `DJ `  `  ! A    A     H D$ !! HP`Ԕ  C @`cʄ     @`8c @ 0 @` c ( 8 c     /   c (  ` $}   @`c   0Ԅ* ɜj f 	 \ c   \  Ƹ @` c\ \    0 @	  ( c   8 )   0	   k  0U  ee   C   e  C e  @`c @0 `  d  c  #     @`c  Ԉ @ (Ը @`c   ` $    $   `  ?  j @     8 c 0  ` $~   `  ? j @     8 c 0   `*
   @`4c H ` )      @``c (Ԍʄ  `       @`c 8 @`c @0     `0  $I ;  e  c  #> 8 @`tc0 (j   (
   `  @`Hc @@ 8 8 ` -#   (&%    `j\    	[Ŝ @`HcX Ƹ +	C 8 c	[   c @\	C	K	K 0 c 8 c @ (D @`c     0
   P c (   -     T @`c 8  /
     j   c(c @d c  @` c  @( 8 @0  `     e > c  #      8       e0 c 0#      `       @`Dc   Լj @ ,ʄc 0L c @h c 8   (Ԉw       0$      ` $     (g 0   * 8)        ` )      (h 0o  d @ 
 @T 8  e c + xjc  C[     @`xc  (  `      j c P( @`cń  0  Դ g P( @`cń   0   ()    
` X(       P(e @ń c 0c  X'   g   g P( @` cń  0    ()      Ũ ` )         `       g P( @` cń  0      @`xc 0ԩd  0C      ` )
      @ 
 @T 0  e0c @ 
  ` @T   e c* @`Dc (Djhjd @`tc 8j @`tc  j $  `  ?  @  `{c    8 c 0   ` $l     ?  @  `zc    8 c 0 ^?  @  `zc    8 c 0   ?  @  `{c    8 c 0 T  ` @  @$  d c @   e  c    C  e    0C    ` D    ` D   ? ` D     ` D    ` D  	 ` D  
 ` D   ` D   ` D  ߅
 ` D       `fc%m  ꅮ+ @`c 8ԇ* @`0c @4J 8 P  ! A  H D !! HPԄÄ  C @`c Ɯ  Ԉ @`4c  8  @``c 8 @` c   `  @`$c @ 8 @`c 0 ( @`hcL @  ( 8 @`$cH  L @( cP ( 8 Tj \ @`4cX  ` @8 c ( 8 dj   , @`Dch   @  @`(c ( 8 @, 8u       0$      ` $     (g 0     * ` )      @ 
 @T   e c 
  `     @`Hc @@ ( ( @`c      ` 'P  D g
     f?8 @`pc   (       j c P( @`cń  0  Դj c P( @`cń   0   ()   `jʄ(c( P P(  e  Ǩ(   @`c 8   @ @` c ( ` )3     ʄ f P( @` cń  0  (    ` 'g
   f  8c 0     8c?   Ƥ8 c(c0 @ 
  ` @T   e{ c* @`0c  J @4 P  ! A H D !! HP`p  C    `
  `t* jԡ
 `
`
  `
`x
  ` 
|
`
  `
}
  `
Ԕ*~
`

j (  jԠ
    pt Ν`  (   ! A    H D !! H    ` $    d g      `        ƌ  8(  ` +    (
   00	
   (	  ƌ g      ! H D !! HP`p  C  Å| c #V   { j (#H    ` j    #      j  #   #   (#E    l    ʨ     >        l  ʨ    l  ʨ    l      ʨ j #      j  #
   #   (#%    l    n  n  ʨ   j  #   # (#    n    l  ʨ      n  $      ʨ  lz    l  ! A    H D !! HP`xÄ  C   (    l$t    +    lx`s|jsx  ! A  H D !! HP`  C c (#      d c c  jc  Ì   0{    )jd ` %!    `ʄ
   h1J`jpJʄ` 0   ` $,  |  l%s  `      ʄ    ʄ  p!J %  h`l`ʄ j 0Ԉ
  ` 
   % %  p`t`` j    p`t` j   0 f 0cz 
 c jc!


  ! A  H D !! H   @k  `Ǆz
 `   $1   `{   { g؉ g$Ԋ ( Ԉ  @ g
   gp g c c
  `r    u  v gw     x g" !   ` $!     { g {  ؉ g$
 g  : g
  `6   ! " {  ` $w    `  $p     | g؄   `      ( `  D     ( gD g   c     #&   `|  @#     g    %   `g   %   `z{ g   #      g  #
   h   @#	     g   (     z@ `|c l   e $"    8  l `|c     |  <gc (C     $(  ` (| g c c  C$     I  g        g$4   `0(8|  |   | g| g| g c c          (ؑ   ! H D !! HP`p  C  D  eĞ  ֨F )o   `t* `@kc  
 `       `         ` U    ʌʝ    r Ƥ    r  `5fc +                         i       nqʌ 0,    ` $  } t%*   `=fcmi     a   è
|  c0c c jc  %  
dj c         e  c j  xj &  `t*Ԝ  ֨G  jn   ! A    A   H D$ !! HP`p $    ĩ  eD  ڨF  n  @
n   c #'      @`,c
    ,j֪  C  $΄  t  hr J  v      `c
 (c   C  X rB  ä         @ 8+   8&     `p. @` c   ` (b  D|  ` ]    `     r(U n X   n  (  ,f)  `ic    H8  Ȍ ( `  c 0   `c (     f ( c    `c Ό(X W x  c X  $ @`$c     ) (    `y G   t%.LN @  )  ڨP) nG   Hn   7       @`$c      `y .   t-.{   (       8    ` `f ($  ؅ n    #      8    ` `e  
       p-. )n @`$c  $  !n{ `t.  ! A    A    $ A H D( !! HP`p  $  Ʃ @d   ä ( `  c     G   8J   `*     '` H      e `   ` P	  `  y
   (

`+
  
t%* `4jc !j  8
 Dk `ic ( (0
 l `lc` ( ( )
)
)
Ԕ-*)j)j)j )j)jx3
1
1
1
ԣi$9jr    ` jc l   ` `     |%*   (
     0
`9Jv* `j   ?> ?   8   ? 8 0 c `  dJ pj  7 8    c  ` p
 @`d c$J (    ` xJ|JԀJ**ԐJԔJJr0
 `Efc  g9J  `  ! A   H D !! HPԯ  C    `5

  5
5
`j    ?> ?   8   ? 8 0 c `  dJ pj  7 8    c    ` y
1j 9jԀ1J  ! A H D !  H X  Ǹ (    (08   H D   ! HP`p  `     E D   ` `     D/  
 ` `     `  `   y
y    ŝ eq   Ψl @`$c @  Ä   `0
  $  (
 j  Ψ l  l           M$   j j      `   ` e   `     !   e< j `    @ j caJ@
     y 
e p#'   ` e p     < e p      j(
(
(
(
(
(
(
(
(
(
$ (
 `{ y
 ` $     j p#       
ؤ!j{  $      e p#     z ` t*` j  (
oje        e p##  z ` e    Z     < e  V     y e  R    `   e        %" p؉ j p#      z 
ؤ)jt*8    
 '   D	   ` ` DL  `,       G  `(   ` $      e          $     ly(
    N(
#   e    `y(
	   JX    e    `<(
^J  ! A   H D !! HP`p{   C @ ) @`k @$Ω ` $       ̸ j  c c c P  %H   0 `lc   ( |g   	 @`c 0 @  ) H  k @`$c X   @    Ą @`c 0  ( `  @` c  Lf        (        j  #      @`(c @,  c  *&* @`c           @`(c @,  c  *&*  ! A   H D !! HP`p     @`c  p
  ` $a    @`c ( @@ȀJ     D p      l   W   c e      ` $
   l   cB    L   `       ` $    `     ̄ `f  %  l `H   `   `    0   ` $s  |l f  !0c c!l l  ̄c(1    )l%  Č0    lX#t+( c    #     p
l  #   ̄ (    2    @  )  i!L 0   C  i   0  !L  i   0  !L  i   0  !L  i
     H*       ` '  d `d H     (   e c  C    @  D h%    `  dj H     l 0    G     c  L wm   ̄|lqm      l Xc ̄mLk ̄ (dt1x, `0Ą|)Ԁ1Ԅ,0l  0( $(,( 00ԑt  l  ̄  c 0C  `  j J a n Ν  c      c (    % `gfcd   l ` @Ā[x,, `(jc p
 (   `jc ̄ [)   0P  `Plc    8 l` ( `LF P)l@       lԐl c p   l 8#
   `{  "    h     Ǩ @`  c @  '  g    #
      0       g (#   @`  ch-, 0Ե l  h     ˨    @`c @    0ԝ    l5,  ! A    A  H D4 !! H @`Āc @  )   @ , `    ɄP   h3  P c  Ʉ 83c (c Xc $       `  ! H D !! HP`p    C   @`c
  Å (  `Ν   j          `{sx,Ԁs  K X  `(N D  p ` <     l (cL1  lx
  ` $    @'          J p    @ƨ  @  f P#  '   J (       f  # J  `     @ @8ƨ  f P#  '   J (    `  f  #  `   x,Ԅl P  c `    l  `x,  ! A    H D ! @   ĄX fC    @`c    8 `        `c   8 e `d @  @  @`c 0 @  `  X H D   ! HP`p   å  @ P}    @ @  
  n m$̄p
  K @kƨ    %j    n `   p-,  p   (cX  ø  ` *X   l 0c (c       l  ` 2G     
 (#?      @` c @kƨ     f     eU X   t-,        R  nr   r  K XJP    `      l PcL `ofc^c l ` X8     ( l X4     2     `l (  c `    l @kƨ  ,m         `{ `t,Կl
  K
  ` l$̄ P+{ `p
l P#    @kƨ  ` (ԝp,Ԑ
l  n  K  ! A    A H D !! HP`p   å  @ Ph    @ @  
  n Zl$̄p
  K    %W    n `@kc     p-,  p   (cX  ø  ` *C   l 0c (c       l    22      @` c @k    d     U `J   t,  d  nr   r  K XJP    `      l PcL `< l X#2     0     `l (  c `    ll   "     `{ t%,,l
  K
  ` k$̄ P+  { `t,p
l P#    `@kc    ԯp-,Ԑ
l  n  K  ! A    A H D !!HP`p $(,    Ī å lB   Ԩ   @gl z   @  
  n   @kk$̄p
  K    %g   n `   p%,  p   (cX  ø  ` *Q  l 0c (c       @kY  l   `     ` 2    
  ` (#7 
 `  ؄ &(  `
 $$   F e        nR     l #     ( l #    t
z   %   Ԩ< l    #   `( l #  ` *
  y `y   ` $  { `t,*    c X%'    y l   | l 0#  @  d PC      @ $    ` `e  d @`c   
    n  ԨD  lWg     `    
 ` $      $    ` `e     l  #    | l P#   #` %     $      ` ll! d! c c lct
l} @ P#i    @ P#e  `   %     
 ` %        ` $   `    `         `  @ g   `
 ą X.C  E X   `gO L*C    
 ` $      ` $     0g      @ e   `h  !L2C8l8l8l>,@ e     el     e   `    Ԩ e  @ P  
 `   $      ` $     0g P   Ԩ  
 ` $       p$    ` `f  @ P    e Pw   >,Ԝ  ԨK  lf    `       ` $    Ԩ     `   8l l @ P#    Ԩ   `      z l   (#      @`(c   ($,      l c `Ą|d?         c @  @  c    e  @,  c ? ` y   f @ @ ƨ 0c    e  @0  c   @`(c    x!     {  `l-, $V  h-,Ԇ   ` $K       g̄ `c6#Ԉ
  ` ;   `̄d ` l`0D 0 @    Ԩ 8 l)fP  v l  Ԩ  !f ` jc @,     `  
      @`c @$    dP c %
       ԨC  lf    `  v g  ``(D/$  g `c`'#  d ` l`/$ԯ ( @  @ 8c c @  (c   @r    `fc_`  Fj      l%,h-,Ԩ  lIz l lL  el, 8c     ` l   `c l*C l  ԨM  e*    ǜ lPl ` ` d 8cREؘ1Ll lL    @e   ` $Y     8 l4  c D øD #f0l l8 cC ø?`c D (     l `c l*C؜  ԨM  l{e  l    c l c`  P	   8l    8 P c t  x|!Ԁ)Ԅ1tQ0 0l  ntԄ00x48|8(ԀԄ<0ԄZo@8 l    c 4!ؘl  Pc `L2D(lԄ
l
 c D ø{  ` %D  d P#f  l  ԨJ  .e  x p#     8 l4  c D #D  ̄  i (     ` q  l X `c!Lj2C؄
l
 c D #{  ` %D  d P     lN  d   l  <   Ҩ P	       l X `c!L*C؜  ԨO  ld ( lH     dl D ̄      ngp  XJ 
   XZ X X l!L `c "C +  ԨI  ld   ԨE  ld `    j` %   $   d9l) c c lc~ e  )1l(c c lcuq` $m   !9l d| l!l P#  !l` $^    d! c  #V   { l P    `` $M   ԨE t%, lkd    `  $@` $<    ! 0C    l cL  n      g `c Å .	    l    `gO L"C  
 ` $      ` $     (f  @ P   `h  QL*C `fc^   l  ԨH  (dl@ c P$     l P    `           l  C ̄      no  XJ 
   X  X l X `c!L2C +    l  ԨI  c  `     ̄ `f  %"    t_  lm   m  K X  `(R    `      l (c Lt;Ԅl P  c `    l    l XcLԄm   m  K X(R 
   `      lb (cl P^  c `    ljm   om  K X(R    `      l (cL @    Ԩ 8 l?D l P  c `    lE  lc 2     p @` c    C J P eU `'   t,  X{ D t5, l  Ԩyg
  K
  nDg$̄ +   p
l #     @k  ` 8Ԣp,Ԑ
  @kag  n  K ! A    A  $ ( , A H DD !! HP`p ? #  I d< Z J[ c  ũ P)  )`  F  Ǫ    #) `fc 	  ]  \  Ԝ p `fc p` (    `4 `fc]     `.    X` G   `J]8  `x! n |Ԁ! `fc  Ԉ]t   `fc] tnC $x( |n,Ԁ0 Ԅn$ 4l  j pr  4! ` ` tn  ! A    A     H D8 !! H Ä 0 ` Ą  (t! x! |! !  !     c   `l  f `  ! H D !! HP`p         G `fc1]   \  `gc ` ` (
    `4 `gc!]   $     `x!` F J|!tq!Ԙ !]  tlx  |l$Ԁ( Ԅl ,  jl J      j `p  tl4!  ! A    A  H D0 !T! HP`p  c  u dv  cw    cx ̌(c0c L   ̌   , lP  ($0(8,@  ` % 0H l  48 Ԉ
  ` $   LP ̔ lp r <0@D H("   `      #  ` $  T $ l% X\     a    ƜOOO H   cF l `  `   d ԋ ,   H  hHԜ   h Ɯ_    g o'   H       s@ 3 (    ƨ  0s 1 8      1 @s !   ` k H 1   Xs   h    1 $  (  s 1 0  ( ! 8s ( H 1 k,  ( Xs   0  (    ) 0 1    Hs4   q $ ƨ8 ! 0 1 (   ƨ H 0 ( < !  s 1 H@  `, c  0 )  0 HsD     ) 0  QH a H 1     ) 8  H  s< )L  1  P a H T a      1X  1       q\  1  `     @  d  1  
h  h    hl  1 h| ᄌ  8 h `  k  X (
 1  Xp a 1 X h	Ԑ a    )  H X 1 h Hqt  `  k 1 ! @Ԕ  X H 1 hԤ  (x  X  1 0Ԙ  Xq 8Ԩ !  1 @ H  `    Xq  ` X       l:h  X8
\8T@X@	\@< @ D H 8 L(4 ̄P048  ! A    H D !! HP`px  C   e  @(c c j   Ýd* ` 	   e  ` $   e iPJhp   Pc (  dJ    e!JԴJ X  JԐ
  `       n c`c(Jz j   #@   ` )7    `  d!J           4    ` `e  
  `x !     P)JdJ   ` $  `
 JԬJ  `JԴJ `       j c`c(Jj   #         !j)J!J )       ddJ n c c     ` @`c    P$ @`c
K      (K @Ʉj @H;JHcL3Jd* i
 Pc `c PpJ !JԐ
 P  eń ` `c1JԬ9J԰)JԴJ|P#Jd* ` 	@  `  `      j `#7  `   iP#Jph ( Pc    dJ    e!JԴJ   Jd
 @`c    P$ @`c
K      (K @Ʉj @H;JbL3Jd* i
 Pc `Ic PpJ C!J
 JԬJ  `JԴJ `         j2
   ! A    A  H D !Ä  08     (%- H D   ! HP`p    D d    ʝ    ΨP _  Lh   >\    `Jԫ ` ,  z ` @` c       @  ` ({  %      @` c  z ` ,   j (#/      `  $%  j!JԬ)J )J  @   p ( @@   c (d   z ` &  `   JԬJ԰)J   )Jabj   j`!JJ @` c)j   @   `)J Ԭ)J @` c       j^  [     t      [    ΨQ  jq_   ! A    A  H D !! HP`p C  D  r!  
j   p    8 ji4 4 8 jA h,[JԈ
  `0[J (    Ũ8 j`c  C   `4          ` $   f j` cc  C    j c c     f  f   `   e8  ` D  `4  D	   e^j `    
 e `#   e j  c c  C   j c c  C
   e^j `     
  e   `#      `.    ` `d `    r e `   
  (f      * j `#     , j   c     #     1 j 0#      `        j   c c `0  (J4         0  Aj   `.    `  de `L    rg   [   
 @` c  Ԁ
 @  @ j `      @` c @      ` |ʜ  @`  c  C
  |j @ԃc          @` c   r @@    c @b   h  jj]Z        `  Z  $     p @` c ( r    Ψ  s        p
   
r  b
 j  c  ch  j  c  c  ! A    A  H D !! HP`p    d  eĜA      @5^X ap
k P#  ts  `y a   tk P#b  p-+Ԕ
k P#^     k P#Z    p     ` +   K a ` $"  } ` `@kc       } ` `   } ` `   } ` `   } ` `   } ` `   } ` `     } ` * { t
k  #~    0   #z      #v    z   #r    y   #n    U   #j    tk `#     
k `#
     p
k `#     k `#  p @(    e         k  #     
k        1K    *
    `
k  #    `k  #    ` .      `        p  Ψ    @ a4  tU+ԠK @`, c    vf  Y  @ a k p#    ˨k p#     k a`x    Kk p    
 p$|     @` c   ( c ( p$q  `d       { j  0#       @` cd ( 0Z   p  @` cr ʔ  Ɯ  Ƹ ( @  0         
j  #     
 @` c @  Ԁ
ʄ @` c  0  %-  c    @ )J  @,    0Ԕ
  `    ` `  {  ` $      j        
j   `  p
ԠqJԀ!JԔ%*

Ԅ        @` c    @$ ƨ @(   @   
h@ k    c      @`c    fK   c     gK   c  H        @,   d`c  H    ( H    0{ k  (#    k 0#   0 Xh @  (C ( ` jc     ($     z k (#    { k 0#j      @`0 c   @4  c ( @,    c    { k 0#          e  c  k @   p X @@ ƨ 0c  
a    a d,[X    a  x
k  #)    t
k  #&    x`     d k   (      (   0   `    X @
   a  `     `        ` $  x5'ԫ       `  @`0 c @4 ˄ ( @,  0ԥ   	    Xh @  0C 0v    Xh C @  o z k H#    | k  k @   c (cz     %   | k | k  (#X   k @   c ( XcP(C @` c ( 
  `    *  j a ` %   @` c   )J   @` c 0Ԯ    x @  @   e Ÿ
*
(@c   j   Ƹ  c 0  Ɯ  @`c    K  @`c   (    hK   c     	   ` `     ` $       @` c
  8 Ɣ @` c   (Ԁ @` c 0 8     
j 8      
  `    ` `  {  ` $    5
 @` c     @  ` ({  %      @` c 8  #      @` c   @`$ c       @(  ` ({  %      @`, c @     | f c |  ($    ( k @` c (     ĩ  é{ v a`lk _  hȜ ][  j  ! A    A  H D  !!HP`p å  E _ `jl Ԑ
ʜj

 Ԍ
 `Gb      cc `/  j @`c   Ԉ
  ` $	   ` ,=   `
 9      `^    @`H c   c  ń   d c  8,       (d (   (d 0 @,  `  @`$c   A      
j 8#	         (d 
         (d      j   ('   n @L   c   @`$c   C`c `  c P   d (#	   `  J  d (#  `^     @`,c   @$ P       `x^   ! A   H D ! @  @   @ƨ#C   @+C   @#C   @+C   @#C   @+C   @#C   @ +C   @$#C   @(+C   @,#C   @0+C   @8#C   @<+C   @@#C   @D  +C#C @H @L  +C   @P#C   @T+C   @X#C   @\+C   @`#C   @d+C   @h#C   @l+C   @p#C   @t ,C   @x$C   @|,C   @$C   @,C   @  $C,C @ @  $C   @ ,C   @$$C   @  ,$C(,C   @ @    0$C  Ƅ @4,C   @<$C   @@,C   @D$C   @H,C   @L$C   @ĀP,C   @ȀT$C   @0  X,C84C @8\$C   @4`,C   @@d$C   @h,C   @l$C   @p,C   @(t$C   @$x,C   @ |$C   @ ,C   @D$C   @,C   @$C   @,C   @$C   @,C   @   $CԠ,C @H @  $C   @,C   @$$C   @,C   @$C   @  ,CԼ$C H D    @  @ƨ (Ԙ @  Ԝ @ (Ԡ @  Ԥ @ (Ԩ @  Ԭ @ (԰ @  Դ @  (Ը @$  Լ @( ( @,   @0 ( @8   @< ( @@   @D ( @H   @L ( @P   @T ( @X   @\ ( @`   @d ( @h   @l (  @p   @t ( @x   @| ( @   @ ( @   @ (  @  $ @ (( @  , @ (8  0 @ (4 @  8 @ (<  Ɯ (@ @  D @ (H @  L @ (P  (T @Ā  X @0 ( (\ (` @8  d @4 (h @@  l @ (p @  t @ (x @(  | @$ (Ԁ @   Ԅ @  (Ԉ @D  Ԍ @ (Ԑ @  Ԕ @ (Ԙ @  Ԝ @ (Ԡ @   Ԥ @H (Ԩ @  Ԭ @ (԰ @$  Դ @ (Ը @  Լc @  H D   ! HP`p    @|J C   `+gcR ҹ @`@ c     @`c  J   ( S    l  @ lP  0   !L @` c @d   (  !L Pc   d @`$c     0ԸlL ` u  D      @ P)   P0]  l ` 0Q   
l  #M     l  #   -,l  D     c  
  l  #     l  #     Z|l2         ` 0      @     r  ʨ        p c PC      @u @ @h     n)L̄  O   r 1L )L p+0    U,؉-,؊-,؈
l    #   `        r ĤL$Lc    rK    ˪ ` 6      `   r 0    4  `l       L    rT   r p+      `U, @ , @` cU,  c  84   %,؉%,ؿ%, ` f @H   n      `|0    z  @` c 0 D   `   0       e P   ` @h 
  n  O   P%  !L   (     
l (z     $L    r  
̄    &      ` 0     (g       l  #Y             l  #   `؀   (   ` 
      ` 0;   $9   (&7      |l-,Y  ]  r     l   `       l `L  r      @H ƨ 0  D J  *)LԔ
l #      ` 0      e  5, 0    ` &   L -,|lY0آ
̄   r` +\L   %,,Lԉ%,}5,ظ   r` +l   
l P#h      `-,4Lԉ,a, 0   0	 @      @u @ ` 0     0   @  r  ʨ        l  Ԩ?  V    p c  C      @u @ l1   Ԩ   V @h  (n     `   +J @
l' c
D c #cD c`ꀨ#c
+c 0c  $l  f  $l d      l    ̄|Lx1L|_ `|xl
0`
̄         G @
l       
l       
l       
l       
l  
     
l       
l  #	      @`c      %      ((    `
l 0#D   f %    `c  `
 @ @ `h Ɯ@   X$      m X#
      H    `  e 8# `h  o 8# `hN @  ` *    ʨ\R    @@  ̄ ( @`  c 0 (  llT       `  9R   K 0  r  E   @`c   0$ fN @ `3gc^P   l      pM @V\mlP  lR
lT      `|c  l    `    ! A    A     H D$ !! H c   c @D           c     `cd @   @% ,fƨ   q 0h   xs     (c 1  c   @  H@  ` ,f  q 8mh    x 8-h  i q x   8
    hh        q   @    8 x   h    xs 8 (c          Č @c   `  $   `  $     (  `    ``  ! H D !! H c @D  c @H ƨ  ` ( ,f   0c  Ä 88%   k V   +  iH   / h H  g    (     8 h  H    ƨ hq 0 8c  Ō         8c Ƥ      8&      8%    ` `i 8     ` $$      8&        8%    ` `i 8   ` $   3 ,f`     hq     c (c    ($       o`  ! H D !! HP`p      d Ź@ Ƹ  
C G
l Jc
{  ` /   XJ           @j )  H 0 c  8@ J
 и  A b
l X         )   Hg )  H 0 c  @@ -                 @j )  H 0 c  8 J
 и  A b
l X         )   Hg )  H 0 c  @   ! A    A H D !! HP`p $(, @,Å        @({    @ N  D   %          (         Ȼ      ب H|W J xppp~`pp  `            D`  n     b   `Z  z             p~C`  n     b   `       `  ! A    A    $ A( ,  H D0 !! HP   @( @`,c @   c        c    ${    %   a  樉  0   8      o8 M  ̈́ h
   Ƹ $ h&|((  ,8  |Ʉ00) 4H@xmmXm]bPm  ! A H D< !! H|   ` X$     >              ! H D !! H    % Ƥ      C   (   e  c @   ! H D !! H      & g      
KK  C    8 H  g(C ĸ(c 0    f  c x   ! H D !! HP`p  @ ƨ @$   F     H  | J  ǅ`Jm  Ϊ          ̨  j     a     ̨֝    8    Ǫ         й`  j     a   `      ! A    A   H D  !! H  è  `  ` D     ` $   K   8%     @`c   `  $
  ( @`c     R     f (c c @ )  i c @#B    ` @  d  8%%     d h f   c           @`c   `  $  ( @`c   "     f (c c    f @%        `  (c   c  c ` % `  i      ! H D !! HP`p  C
 c  Ш     R @  d p#C  `|
|    ͤ (&   `jj (#   !JԈ ` $    (&   `  )J  ` 
    `  !   ` @` c   
Dj   c    D
@j c@
 ʌ   0  ` j     `       @`c   (
؈ 
F j  (#+      @  d
 c (##      j (#  f (#    j     `    @`Hk @ 8) ꜐ ʜ     k      Ɯ   i'  `   ` % `
 @ƨ    f 8$  
  f
 j 8#   `  f
 ` %    @`c  c    c | (  | 
 (c c
 j } c  (c  + 
 @`c   
 `  Du   ` @`c   
N  ` %    ` @`c   
  ` \      
 j  0#    @`c   
    ($         8$    `  fh (r   0$ @ ƨ @`c 8   (       t-*  f   c (^   (   t
ʄY ` &       éM  ` $-   `  D)     @  d (#@    `
  ` $    @  @`c          Y `t%*  Ǩ    f   c (#   (   t
ʄY ` &       é   j   j @`cK     `    
؜  Ш j LQtu*#     A  jY t-*  Ũ  d (# `  
Y t-*ԅ   `J j 0#}    (
   j ʌ ` 0#j    ``
 f  (  `      @ ƨ @`c (          t%*  f   c (K   (   t
jY   #       ĩ  @ ƨ @`c            t%*  f   c (.   (   t
jY   #     Y  @K   l
  `      
L j  (#      @  d
 c (#       l
   j @`c  { 
  jL jY t-*Y t%*
   j @`c ʌ   
  (
>   j    $_   J j 0#B     
Z   j  @ ƨ @`c (          t%*  f   c (*   (   t
ʄY ` &       é ` @     @`c      Y `t%*  Ǩ    f   c (
   (Y `t
ʄ &   Y Y `t*  èY t-*   j    j } c  c c
ؑ
 @`c }  c  (d c P}
 ( l 
 (#      j% #   @`c   
  (


  d p#      | 
  d p#    |(
  d p# `   ! A    H D !! HP`p  CA
 c  Ш     P @  d `#G  `|
|    ̤ (&   `jj (#   !JԈ ` $   (&    )JDj   c    D
   ` $   ` @` c   
  `      @j c@
 ʌ   0     j     `       @`c   
F j  (#-    @  d
 c (#$      j (#  f (#    j Ý    p    @`Hk @ 8)  ꜐ ʜ  k         Ɯ   i'  p   ` $ p
 @ƨ @  f
   
   e
 c  C     f
N  ` %    ` @`c   
  `      j
  j 0#    @`c   
    ($         8$    `  fh ({   0$ @ ƨ @`c 8   (
   `  t-*  f   c (g   (    ` @ ƨ    @`c         t%*    f   c (O   (   M  ` $&   `  D"     @  d (#7        
  ` $  	  @ ƨ @`c (          t%*  f   c (   (   P   jr   j @`cK     ` 
   
؜  ШO jN K       jY `t*  d (#  (
Y t-*Y t%*p   `J j 0#h    `
t  ` $^     
 @`c   
    c  R     @`c(
   
  (
  @ ƨ @`c (           t%*    f   c (4   (    @    
 @  l
  d
   j p#   
  l
K   `      L j p#      @  d
 c p#       l
   j @`c   
؁  jL jY `t*Ը 
   j      jt  $s  @`c  c     c | (  | 
 (c c
 j } c   cJ ʌ  # ` &d  (
  (
t  ` $Y    (
 @`c @ ƨ  c   `  @`c        t%*  f   c (@   (     @ ƨ @`c            t%*  f   c ()   (    @K   l
 @`c   
   
  l
  `      
L j  (#    @  d
 c (#x   t     jL jY t%*Y `t*Ԗ   j   ~   jt  @`c }  c  (d c P}
 (  
 j } c  cd cT(
 (#      j Ý  ũ @`c   
   (
  

  d `#      | 
  d `#    |(
  d `# `   ! A    H D !! HP`p  C!ʝ c  Ψ   M @`cD     
  0  D+
@j c@
Ԅ   0E   `jj `#   `JԈ ` $   0E    )J   `     ` @` c   
 ʌ   0    j     `        @`c   
F j  (#+      @  d
 c (##      j (#u   f (#    j     `    @`Hk @ 8)  ʜ  k    k Ɯ   '   i  ` `
 @    g
  G j @#J   
 m   CE      @`c  Ä  &     @`c    
       g @       g @ Ɯ0
  ` A    @`c  Ä     f | (  | 
 (c c
 j } c  (c  +'    
 @`c }  Ä  (d c P}
 (  
  (
 (#      j    @`c   
  o(
m(
Z
؜  Ψ/ jL   ! A   H D !! HP`  C c  ̨ L @    d (#    `  d (#   ` `
  ̨ jL   ! A  H D !! HP`  C c  ̨ L @    d (#    `  d (#   ` `
  ̨ j~L   ! A  H D ! @  è    e  #    `  e  #   `  e  #   ` ` H D    @  è    e  #    `  e  #   `  e  #   ` ` H D   ! HP`  C c  ̨ EL| j  0#=   `{ j   (#
   ` @`c   ($    ` `[   
  `      @   d (#  `  d (#     H   (
  d (#      `@   0
 @  e  #       e  # `  e  #  `0   
.    
      @  e  #  `  e  #     e  #     e  #    ` @  e  #     e  # `  e  #     e  #    `  ̨ jK   ! A  H D !    `     @   d 0#
    `  d 0#        0  d 0#   ` `     ` @ƨ  f  #           f  # `  f  #    ` H D   ! HP`  C  c  ̨ K @ @ƨ  e @  @0

     f
   
 @  f
  d
   
    Ǆ  h
   
  h
   
    h
  (
 d0
 Hm   
 @`8c    Ä  (
 d 0
 H_  " 
 @`c  # 
 `  $      @` c  $ 
  %(
 @    d (	       d (#A      @`0c  c @`c            @``c  c @`c  & 
  `       @`c   c' 
   c  
      @@ƨ  f   f      j    #      j    `-* j  #        ` j  ̨ K    ` @`@c     `#
  `"

  ! A  H D !! HP`p  F    D    e  TA J  ˩  T  l           ` `d       n    `      k    ` `e     `  `  ! A    A H D !! HP`p  C! J c  Ҩ    J @ @ƨ  eD
  E 
  eF
  G 
  eH
  I 
  eJ
  K 
  eL
 `  M 
  &  $  N(
'  (     Ɯ  f  (    @`c      _  , c     Å  L      j N       p j         r      ,   (.  l  Μ  Ƹxjn|YJl c J  c *Ԁ%*p`
  ` .  rp
 @`c  t 
 @`c           ` `u
 @`c  v 
 @`c          ` `w
 @`c  x 
  ` 0         `     `w
x
u
v
  `t
  ʕ<
  Ҩ/  jJ   ! A    A H D !! HP`  C1 c  ̨ J   ` $q     j (~ c  c c|
 @`c   
 `  D_   ` @`c   
N  ` %    ` @`c   
  ` F      
 j   @#      @`c   
|  ` X     @j c@
   0%      (  8$    `  hi 0\   @$ @  @`c 8   0
    `  Ũt*    f   c (G   (   M  ` $&   `  D"     @  d (#/        
  ` $    @ ƨ @`c            t%*  f   c (   (     j  j @`cK     `    
j  j   Y t%*  d (#   ` `
Y `t*ԍ   X% @  d
 c 0#    `  d
 `J  $z        
t  ` $o    `
  j ʌ ` 0#D   
 @ j    (#6   
  g
 @`c    `    
 `       @`c   
K   `      L j  (#      @  d
 c (#      @`c   
O  j @`c      
   jL j @`c   
2  j @   e  #        
 @ƨ   f
  `   %   
  f
   ʌ 
ؤ ʌ  e  # `
x  j   `  jt J     J j @#4    `
t  ` $*    `
w  j  @ ƨ @`c            t%*  f   c (   (    @ ʌ  e
   
   e  &
|   Y t%*<  j   $  jt  j } c  c c
ا
 H~ j  ̨? jH   ! A  H D !! HP`  è p c c{   %   r f    Cr f c C  l    @`c @ ` P  ! A  H D !! HP  C   `
؊
؈
 j 0#+    ` @    d (#$    `  d (#     {0
 `
  j`{ 
  ` $   ` $       j        j$  j	        j       `{
  ! A H D !! HP`p      Ш  @ c  H
 @.     @` c  Å ` Υ .        ` $    @` c    %     @``c   @ƨ @  f @ 
     f) @`c        eH  *   e+  ,   eI  J   fK  L   e-  M   e.  /   g0  N   e   H(m  1  H
      @` c   @    ' H )  (   g  c   c    G  P ( J  Ǆ H0 Ƥ   Ƹ(   '  i4  (cH 0c Pc88  `=gcB4 L `EgcB  8   %,ԉ
l4 %, `%, 8#      @ P.    `  jd 8      @  @``c    Ä @  d   d  ń  e8 l 8    `4 l 8#    `   ( l  Ш  \G   (P @` c @   c  8Ի4  `MgcA @Q
  ! A    H D !! H    4 Ä 8 c    H    g c H   y    @  @$  d c @   e  c   ! H D !! HP`p  Cʝ c  Ψ   G  `  
 @{
 ` 
ԉ0
      `   `    `@  |
Dj c  `  D
 @`c   
 @/ j   `- (
 @`c   
 @ƨ `   %    0 j  #   |(
|      %    Ǩ `jj  #   `JԈj      %     !J   (     @j c@
 ($    @`c       e |ƨ | (  0c 
 c
 j } c  (c  + 
    0$        ` $     (h 0  ` 0
   ` $X   ` @`c @   
   e
 c  CI    ` @`c   
N  ` %    ` @`c   
  ` 0       
  ` ʌ

  `J  !  0
   
+  ` $     @`c   
ؕ  j  j  j @`c  Ψ    jFF@
؉     (
  j+  j } c (c c
ؽ
 $;   ` @`c @   
   e
 c  C,     @`c   
N  ` %    ` @`c   
  `       j
    ` J (
0
   0
  `
،  j    j } c  c c0
 $   ` @`c   
 `  D     @`c  N  ` %   
 @`c   
  `       (
J   ` }    `
+  ` $     @`c   
؇  jx  j ʌ ` 0#^   
 f  (  `        @ ƨ @`c (           t%*      e 0?    0     @ ƨ @`c (      
       t%*      e 0&    0    @K   l
  `      
L j  (#      @  d
 c (#       l
س  j"   g  jL jY `t*Y t5*    j(
 @`c ʌ   
  (
  j+  j }ƨ c 0c cv
 $    @`c   
 `  D^     @`c   
N  ` %    ` @`c   
  ` F      j
  `J  ;    `
  j  j  @ ƨ @`c             t%*      e 0     0     @ ƨ @`c (      y     t%*      e 0    0   l   Y it5*Y t-*x  j    j } c  c c0
 $U  j cQ
 @ }ƨ   e 0  P}ƨ 
 0c  c  %%
 ` !|
    %    ` |0
|
    ! A   H D !! HP  @  @$ c	S 8ԅ  @ # ĸ  ԅ c0 @ 0  ø	SI  @0 @ ( @  8 H   @` c  0 c P P ) c H  ! A H D !! HP  D  è        ` D    d ` $     K 
N *  @`0c  {   ` $   @`8c     @<  ` |  @4 (Ԇ j c ԉ  @`c  (  &     `      @`$c    @`(c (   ` %      `       @`,c      |  ($     8$    ` `f (     ʌ (&      `        @`0c    @`4c @8 ( @  `       @`<c     j @@  (      @`Dc    @`Hc    c   (  	{  ` ` 	u     @`c    ` i      @`Pc   ` +   ` +     L  @`Tc    @`Xc    c (  @` c    @``c (  c  ]G      0$      ` $     (g 0  d| j  0#  d  0C$    |  ` $     @ 
 @T 0  e0c | j  c c (C   { j (      ` $     j @h  j            @`Dc     @`lc   J   j  @`pc  Ԁ j c  (  c    c    c  ( ʌ c 0  +   ` +     I  @`c  | j   #    { j  #      ` $    j  ` $        @`c  ( @`c     j  c D       @`c (M   |  @%        0$    ` `g 0`      ` E  0% @`c @{  ` $9      @`c  |  ` $&    {  ` $!      @`c    c (| j   #    { j  #     j +c    ` e   e   e  c @ { j  (#     |   %-     Pe @|ń c 0c    @`c (ԅ   ` $  ` g P|ń d   (c  c @  0c   e (c @ |   ` $        ` $J  ` g P|ń d   (c  c @  0c    e (c @  ` +   ` +   H  @`Hc    (+!    | j (#     ʄ " f       @`c ("  c   @ `Xgc  <   %   j @`c  ʄ @`c     j '        Pd| Pc  c  (c|Ƅ  c @  0c   g  Ō c 0c '        Pd| Pc  c  (c|Ƅ  c @  0c  g  Ō cr 0c|   %"    e P  @`c P|ń * 0  |Ȅ @`c    0  ʄ @` c (  @`c  |   ` $n     P @ e|ń c 0c    @`c (] ` @`c    { j @`c     @  ` | j @`c        ` %      g 0   @+       @`c  ԯ{    @`c  jv js  @`c     @  `  @`c    }M  @`hc   j            @`Dc  !  @`hc   @D c (   @`hc   @D  `  @`lc      @ 
  ` @T   e c @`Pc     D      @`c (Ԉ  `o  @`<ca   @, @`0c  K    @`(c    ($   ` @`8c (    $    @`8c @< ( (|  c P @`c|ń  @0 0  j @Ѐ J @`4c P `   ! A H D !! HP`  C { c  #a     | j $&      c  `#     j  #      j       j  y     j @   Xr      @`c Xh      jj    jjjc     @j  X\      @`c   Xԅ j  #      j       @j  0I      @`c XԼ| jjA     @`c @ X  ` ԰| j6  j @j  X   | j $	      c  `#!     jj!     @j  X      @j   X      @j  X      @`c X| j  ! A  H D !  ` X$       @$     Ü f   c   Ɯ  c c(c @ k        @     Ü f    c   Ɯ  c c(c @ k H D   ! HP`p    D@c    (      @l Є      jK  X    X  j Xc 
 +  n  ! A    A  H D !!HP    Dc@Ǆ  (f  (     #*   `   l Ǆ  jpK(   `        j Xc 
 ! A H D !! H@Ü    d  (  (     &  Ll Ȅ  ! H D !! H@Ü  #  d  (  (    `f* 	l Ʉ( 3L    ! H D !! H  @Ä (    (l Ä  J  h  ! H D !! HP`p $(l   C   d
 P P  
ń    @De F  ,    `"G8G@ h `     ,j `  ʝʝ  `   * h d    Ψ  `,J    h E     `8J    h (   j                ` `e  #
     ,j  #     8j  #h       j  Ψ H ?  j,   l j  PcY   8"C  j  Ψ H ?4J  j, \      , a8#J X c, 0J  j  Ψ H n?,   jZ       ˪ , a,#J԰
 X c(Jԩ, ԧ
  j H W?  j  ,       
&*, ac cC c*ԉ
  j   ΨH ??  j  ,  `    K
r p
  Ψ   j-?H   ! A    A    $ A(  H D0 !   $ c 8c ń8c
&  88  e 8C    `   8  `= H D   l   '% H D   l    c  c  k   H D   ! HT
   ` G    `J `h        h  #     M ` @ @ )
 8     e  #   Ɯ  e  #     i $   N `t
h         x
h  
     |
h       
h  #     N `  ! H D !! HP`` Ä  C    (    l1BT
    +    l` mAT
T
x jA`   ! A  H D !! HP`p     @`c  8   ШH  @@R  l>   r  c  (    @   l Po    Ш  l H w>   l t P  `p  	     l lt p T Y   P T
)Ax lp l x l#AT
   l  Ш H  @@J  R>    Ш  l H K>    ШP   l H C>  Ш    l=>H    `_gc8    `kgcP 8    `wgc8    `  R'\L @`  c @      n 0   Ν  e  #  n @`  c   @  ` Ԑ  @ `X  ! A    A  H D !! H @`c @     @,    Ä    hP & `    gP   Ȅc %         )  h h  `        `  ! H D !! HP`p    C`   l̜ H =  r          `,'  l  ` $    @'          J p    @ƨ  @  f P#  '   J (       f  #   l   c        @8ƨ  @  f P#
  ' J (       f  #   w    l  ` +`  ! A    A H D !! H\ Ä   (:      @`c ƨ     `E d0 X%        0$    `  kg 0"   X%        ` $      8h 0   X%       0    `  kg 0   X%	      @  d c 0          `         ! H D !! HP  è c   #    @4 f  #     ( f* #c8  
    f   y @! * f      f    j  ! A H D !! HP`pÝ  C    Ψ `0     jH = j  Ψ   #  ! 4 j  #       jH <P   j  j    j        ` `   <J       j    `  j  H <]   j     j  Ψ H <  `  ! A   H D !! HP`p*   C ` D  2 ` =   ` $      j   #     4 j  #     (  @`(c8 
## 0 c  (  @`hc    ̨"   j<H \ j   (R    j  #&    `4 j  #"    ` j (     cJ  `      ( j (  #J  #J* j      `J#J{   +J    ` [  J( 
j @  #J  #J* j      `J @(  j  ̨#     +JH V<CJ,j p2     8j p       \ 
 @, @(    ̨$    #J+J  jH ><  ` X
 @`c  9      ʄƜ( jH4 `gc X064+J0jH4  
(j( Hʄ8j  ! j @(+c  @,  ` a  @`c   D     ? =   ! A   H D !! HP`p å     `  c     G `  cG   (*     ?` H      f (j   ` `gc]6@  PP8
  @ 
  ` 
l8
`8
< 
 h8
p8
t8
> 
    B8
  $ 
  >*Ԥ>*H
 d
\*Ԙ*&
 `4jc JԴ8JԸ8J\ 
Լ J J J J J J J J p
  "J  Դ:J Dk  `  `ic     l `lc 8Զ7 8@    `lc     Ԩ*8J   0j8   ?>   ? 8   :ה:׀? 8 0 c<;J ;J;J;J,;J  `  ! A    H D !! HP`p      d Ź Ƹ  
C G$ l JI&  XJ           @j )  H ( c Ɯ 8@ J&  и  A I$ l X         )   Hg )  H ( c Ɯ @@   ! A    A H D !! HP`p $(Æ  C(     Å  * j        
               `gc  5pT `gc5   `gc{5   `gcw5  * j        C` e P	 X@  D	DT
j E<      j    Ψq    `   Є 
    VP  l J    gI   P Ν `gc  G5  N `gcC5       `  @       ҹP  l J    JI   P R   `  ! A    A    $ A(  H D, !! HP`p  C  `( 
(j j$  `,  a @    ` * $ a 8    `$j 0=  `T
 (C9      05   (D3   cʅ  P PD	e0	  `4(D	8 	Ƅ@ @  <0  ȩ 8        `gc4   `gc4$  `gc4   `gc4  ( ʔ a  $ ( ( 0H0  ! A   H DD !! H   ` X$                   ! H D !! HP`p      `T
؝؞xy (  z؜ { L    p< Ν`T
 
 ( J  ! A    H D !! HP  Cp T
<x c `=
  ! A H D !! HP`p @     @`c  ĄP E    ` $  ƥ& l c cc *    `$ l c cc .         `C   & l  ! A   H D !! HP`pT
Ą  D    ĝ A  p  <   `gc  +0      64    p       n t         h<T
  lT
ʄ 0  0      `gc4     `  `gc4    a  `  l
 c c c j c   
T
ʄ  ! A    A H D !! HP`$   C ` (    & ` D	  F9j `     $ `     l   l  ! A  H D !! HP`p  C @`c  CC    @   e  #          @ Ω j         `+  `  p `#    @`c    d] c  d  ! A    A H D !! HP`p   C    jk=̝  l    @`H c  Ψ    d !      lH 9  j     Ψ +   < l #       l8H      $  & L  lH @L8PL    e  ! A    H D !! HP`p $    D C  j  $=w  p `+       4 `  j~   < p p#  +4   p
    Ԩ   p8H     `   ԨH 8  p*
   p `gc03    pl  p p     <P     `  p  r `gc3  <p p    `gc3       `  p   ԨH   T8  p p   `$ p& ДBk C
      Ԩ   po8H      x  j   `+    pp p    ԨC  p  `  <= pP  p#~  L @`(c   p$-     l p c 	ĄD	d?   f      c @  (c   @  e  @,  c ? ` L      f @  (c   @  e  @0  c  @`(c  (ԣ	   pl   `  ڨ    0..p  )l  ) $ X\& "P*P  pH 0o.0HNDz.
8b. `gc2$   p  ` 
   `<P<  ` ?   .     ` @   r (   < f @  @  c      c @  @  c     K<   X  p H 7  po   } -T  ! A    A    $ A H D( !  è` `    e0 f     0@F0    c@FԔ*FF@F԰  `   ` 
   08d$9F	    FFF  `FFF H D    c @H  c `  c   @  dC c (       ` H D   ! HP    CY&# `p 
ԴJt 
` 
  ! A H D !! HPl   è @  @ ) @@$J` $9    `lc   0  	D	e    `   	 @   @`c @  ) @`$c H   @    Ą @`c 0  (  
 @` c  1     ` @( 
 @,   @`0 c     c @ (  `   ! A H D !!HP`p $(,048<  C    @`@ c<     <( @`c @D\@ ( @0   @d   8   ` < P @  Ƅ r;0D< A `  ʄ*d
 0l
h
ʜ
HJ=P<     hȜH 6<    hȜH 6 p4  < ᄸg p	        r 6   {      @ h ( @x  Äg_ ƸGԴ*G0G `>  <    hȜH 6<   r< At@  Kj Xc< cJԬl       L p:  l2L `gc,1  ?   2   <    hȜH 6< A @  @  $ j	ʜDj& *D	 X H    @TE*w;  <  @` c (   @`  c ( 0:   < $ l&@& < A& $ jA  @pZL< atZJ< d52   <    hȜH `6< a  ` 
      |     2          `  2  <  8L ` 4     l   p#!    @` c   `  $  ̜h;l< 7   hȜH 06< H d c  H  l6 H &6< a<   l̜5 &,H 6 L<  `hc0 j p	  < T
x fl 8   < T
x fp >   `2   < 	   hȜH 5<  @` c @   @`  c (  `  @` c  Z:   *< a< d|4I2     |  4   +2  <  4  t c pC       ` 4       e  @ P <  p$   r ` $  Ŝ    r   e H 5<   v=  <   l  ̨ P  T8 @ h  @  dN c c P     >,Ԙf    #      ` 4     (g     `f  #   ` 
     4    l  #   ` $     T
x lp @86,< T l    #I    l  #E     l  #A          eŜ
 H e5;  r d < < l    #   `       (d R   rn< 4  (+H   K  (+E < k @ PC < &   hȜH ;5XH< T l    #
    l  #     l  #    @(  @  d P      P>   XL< l       L P:
     l P#     l P#? ̜  eŜ- H   @	5=   c1   <  l P#     PLԴl P&   lT l P#
     l P#     l P#     3  l< ` ` %       p:    ` `d  @ P#   `     @` c       c ( P      @` c̜.   H 4  l ` :   ` @ <     d0L c l         l    `   LԸ@LԘ&,ptl l @$ ƨ @(  c @
c   l    c       fK  @  c     gK   c          @`, c     @  ` jc (  ̌ @     0 8
     l 8#     T l 8D  ̜8  @< a @      ԥ   < d2 @@ ƨ 0x 8Կ0   < e P#    H Ŝ1   eM4I< a< ``      d   d P      c @  [ `  eŜ2 &%H 14-< a    N  `  l0 H &4 @, < a      ԫ       :	     @ <   d8L[  cZ<  @` c̜D
/   
   (     @` c (H   l3<  @ ƨ @ ` l @ c
c   l    c       fK  @  c     gK   c  P      @` c  1l l <   l3 H 3<   (0   < l P6    lT l P#
     l P#     l P#       l<  @` c @@ ƨ (   @`  c 0   88   <  @   l c    ` $     @L  l< d-2/   b    < %   hȜH 3< <l {   T l #     l #j   \ l   p#   @  l P+  < < l p#3   l p/   "=   XL< l       L p     T l p#i  ̜T   ` $;      @`@ c    @`, c (  d (, @@ ƨ 0x  h
̜d
P l 8 l
윬 `H>:  <   l  #      ` 4     (f     l  #  T
x lp 5F,< ;   r/   <  @` c @@  8      @`  c   @t7   < ,   hȜH 2b/   < a    `    B/  (/   <   l) H 2;   D/   <  @` c @  @  ` $  @`  c       0 l p#    8LԴl p+    l:7   //   < e p#  ŜH *   e2< a< ``      d   d p      c @ص `  e+ H 2       (   hȜH 2< )TP  T(\ l   (u    l  #o    4 l  #k      l (e     cL  `      dL( l      ;L* l       CLl l'  `c( L  "C< * ,  hH SLKL]2Ȝ< ,l p0     8l p       \( p p  `p       p ̄l t0p8T
5x l< T
x l5l < ̄( lƜ>< 4 X0e>4#E< (l( >̄<   `3L @    e P c#LԚ c{  r P     < u< T
 l<;L<   r.    +{    hȜH 1 `hc{,  < a< ` pt`ԍ LԘl   (#      ` 4      f (d   b@LT
x f&&Ԛ4p E<    < 4   hȜH 1~< < 
   @  hȜH 1< l p#_    #Y    r_ d J      @h ƨ8 0  l  4?@LԼ8LT%,<   v:  < ᄼg& ǔu;$ < a  K p*    KG @-   <    hȜH 1< 4  d(D  Č @   0 0   < d0-     ` :    |   `    -  < $L     `hc+   < d7@<   	     r  ! A     A$ ( , 0 A4 8  H D@ !! HP` @`c    `   ` D *    l    *     ($     4  ($             j     
    j @X         `!  ! A  H D !/ ` D  b `    ` D  `    ` D  /`   	 ` D  `    ` D  #`   
 ` D   `  ` H D   ! H    ` D,      d (h  c     D    ` k @ c!  cX"   c   X   0H8 `H(f X  X     (      ˨0h (#   X$          `* ( e#c k `	 ` `
 `  ! H D !! H    ` D      d @h  c     D    @`c  c      * ( e#c k @` c k k  k       @`c    @`$c    @`,c    @`4c     ! H D !! HP` @D @    C      @`c8X
   
 @`c     `" 
<
  ! A  H D !! HP`p   @  @` c @ƨ          h    h	  
   h `   %Y  e ` `
  & 1H   ` @`Hc       o   O Ϲ o   ϸ ︅  / kJc)X`P (08@Hhp 
  h   .  .   p     (  h    %  -0 h   `      -( ` Q    @`$c    e  c  0$  0؄ e  c   @`c    `     Ќ ` 0#    @\  d  c  c &  $(  #   @` c     (  `    d ~ l~ƨ ( 0c  c& $$ p @  &  c  c ( 0  *  0      @`c @    ń `#	3c#c @`c  c        `. p  (#
    ` @ƨ  f      `,  `    `  8#      @`c      (   e c  C
      @  d  `        d p   0   0      @`c  c @   h 0      @`(c  c @`c   0R       h @`c     `     `  $
        ` ;      @`c  c @`c  c @`c  c   ` $
   ` @$    e c  # ` @<> p P#   g   0 >( P#     g P#h     4 p P#d    p @@J  X     j\   8X  p40 4X @`c    @`c  c      fr,(2 Ќ      c
  ~ƨ  @ 0P l~ƨ( 0c  c  Ĕ $ Ɯ  h Ƹ   (H   h&      h((*0   H @ d #  .P       `   8 -( @`c   @`c     i    ! A    H D ! @D @ƨ     @!    # "  /(  < ( H D    @   g 0#	      @    g 0#    H D   ! HP  C @ $ c @$ƨ &  c  c      e c @    @`c     8%     4 j 8#     (  @`(c8 
## 0 c  ( @`,cl   c  J  @`(c P  c @J	 @`4c 8   @` cD	Ƅ 8 0 @`c ( (  ` $  `p  $   d   d P	 @` cD	ń  0    @`hc  Թ1      0$      ` $     (g 0a    j 0#]      @ 
 @T 0  e0c  
  @`c    c (  c    @`Hc (  @`c    c @8 (  `  @`<c     @@ @`c 0     @  `  @`c     @  `    @`c    0$     @`c 0 @`lc   ` @    `      @`Hc      @`c      @ 
  ` @T   e c! j @( @,   ` J    @`0c  ԤJ @4 P  ! A H D !! H   c     %   @D    `  h 8   ` `  c R   k $      Ȩ 85   ` $      Ȩ 8/   8+B  `  d$       `    h  ` @ ` $     `      @ k?`c       &   G k? kc 8  H k  (c `   @ `      `   $     `      @ k  ` k   A k ? k  g k c k k  ! H D !! H  Ä   W f_ 8     H'    H%  g `.      ?ƨ 0      0c   ( ` '   H%          (   8f H   `      e @    8c (  ! H D !! H      Ä    (F        `     g   (D       e H    h ` &    `  e H   $ $      Ũ H    g  g        `Xhk           g    `  e H    h ` $    `  e H   & &       H     g  m 
 g
 g
 g
 g  cg   
      Ha    h Ǆ  ( Hd   h  ` DN   ( (F     A  k  (F c 0E     A  o Ɯ 0E   h 2   Xo  `   Xx  ` $     0
 
 ̈́? 
f @      e @   
(
  Ũ ` 
  ` f  A   f (c 

     m `0

 `0
8

  è       `  Ũ    ! H D !! HP`4   a  $ A a    l  4   k  ! A  H DD !! HP`4   a  $ A a  (   l   (( d  k  ! A  H DD !! HP`4   a  $ A a    l    K  k  ! A  H DD !! HP`$   a   A a    lQ   3  k  ! A  H D4 !! H      (G    `  e   0#r   `  $ (I    `  e 0#j   ` ` X'    `  e 0   X)    `  e 0     hX   d  0'    ` `   (-   0)    ` ` (       0'    ` ` (   0)    ` ` (;    `  0'    ` `   (
   0) d (     ,   `*    `    ` ` (      h (       ` Ȅ d        d 	   g      h       c (       `    ` (    `  ! H D !! HP`$   a   A a    lq    ! A  H D4 !! HP`$   a   A a     l      f 0C        8$    l   0E       8(     H     ! A  H D4 !! HP`$   a   A a     l      f 0C        8$    l   0E       8(          ! A  H D4 !! HP`$   a   A a    l     ` 0C        8$    l   0E       8(          ! A  H D4 !! HP`$   a   A a~    l     ` 0C        8$    l   0E       8(          ! A  H D4 !! HP`$   aY   A aU     l      f 0C        8$    l   0E       8(          ! A  H D4 !! HP`$   a0   A a,     l      f 0C        8$    l   0E       8(     {     ! A  H D4 !! HP`$ A  a    a    j  `     C       X%
       l  C       Ĩ X&      `  ! A  H D4 !! H   `  ` d     ` ($   0j a         (  0 `  c $   ` `hhc     c ?ƨ 0  e 0      ! H D !! H    ` $   `     `  @   ` (D
    d A c (C   ?ƨ 0	    e 0    a  ! H D !! HP A   a  J ` *        0-    `   J    `  d 0%    ` ` *       0   a a 0c        `    d a 0      `  k      `k         0  HdX`  ! A H D !! HP A  @ a    ($    j (
  ! A H D !! H (0Խ a  ! H D !! HP  @DiJ  a    B %   a@0    8  k  j 
  ! A H D$ !! HP`p  ĩ          0D    `  f 8        0E    `  f 8-     @$    `  f 8    @ ` %       8       l        (|     l `Xhcy     c @%    `  f 8     ` $       8     n      (`     n @$    `  f 8 @%    ` `   `    ΄ $ (  a ?	 0  k    L    ` . HJ  n   P ` jX      p  cA  0  A  `  c 0   ?`c         p    ) Hc  0    @ @ ` $   ` g           `@  `8   p  c  ! A    A H D( !! H    c    0E    `  f    @`    k  ' 0I    `  f @    V     g   g x%      @-
        %    `  f @#   x) H%@    k `Xhc=     c:     k    `  f @    )  `    `  f @      x  gd    e  c  @`  c            A c 8#  @ ` $	     f           @ Ɯ0  c  ! H D !! HP lh  CS      k    j ph  L  k `  c    kF  j  ! A H D !! HP`p    @   c  $    `D    `  l P	         ƨ@0e     ` $      ̨ P   `  `@ ԯ   $ $      ̨ P        Ԥ   $ $ @f P#  `  d`   C8 ` 1    ` $$   `   (#&     8$#  $   c (         @         g$0   `c H      @  a$  øH (  H e Լ  d$    ( (   t  ,`     k  ,  (            8$ 8e@ c P       ̪$   t    ,8& (@  k   (c Ԫ$8`   $   @ 84   $8  D 8%+   Ȥ   @&'  $   `  c 8           @        g$0   `c H    $  ȸA hA  J ($   $  ǸH (  $         @   $@$ H     Ǩ P @8e   Li    e `  ! A    A   H D0 !! HP`p    $ Ä_ T Ź `c   l   ('#  0o (#    =    (X Ƹ 8(f     0 @C    _ и  (f   @C  8x#   ` '  X &0o (#       8   ƨ0o     8  ` 8    8@i    8(  ! A    H D !! HP`p      Ä  #  (F        `     i   (D       e @    l ` &       @   $ $      Ũ @    i  i        `thk           i       @    l ` $       @   & &       @     i  p  i i i i i  c         @    l )  ix ̅ I @d    ? ` D   x xQ
      
A A   `8 (  xQ0 O
      
A A   `8 (C 1 O0d l  ^   p  ` T  pX pE   `  `P  ` =      (@ `   @   `  ` (  E    %   PF       p_ $ ĸ  @8(0 ` Ѕ  `c M   A nA   X Τ p8e@ kX )     p `  a (  k Կ  XE   `  `h ) `H X    ` h(  c           @  /  `  ! A    H D !! HP`p  H  TiΩ    ( a84 A a      l    k  k  n   ! A   H D\ !! HP`p  H  \iΩ    ( al84 A ah  8     l 8(Կ  d  k  k  n   ! A   H D\ !! HP`p  H  diΩ    ( aG84 A aC      l.   B  k  k  n   ! A   H D\ !! HP`p  4  liΩ     a8%(  A a!    s   l!  k  k  n   ! A   H DH !! HP`      (G    `  e   0#   `  $ (I    `  e 0#   ` ` X'    `  e 0   X)    `  e 0     hw   d  0'    ` `   (
   0) h (     h    `f   `    ` ` (      d (   Z   `  0'    ` ` (   0)    ` ` (L    `  ('    ` `   0   () d 0   =   `    ` ` 0      h 0   1    `  d        d    e   0   !   `  h $ HK   D H+	   PL      0       `  (I   Ȅ ()
    ` 0J       `   ` `  ! A  H D !! HP`  0      a8d( A a`    lL    ! A  H DD !! HP`  0    a8(L   A aH     l      f 0C        8$    l   0E       8(     !     ! A  H DD !! HP`  0    a8(!   A a     l      f 0C        8$    l   0E       8(          ! A  H DD !! HP`  0    a8(   A a    l     ` 0C        8$    l   0E       8(          ! A  H DD !! HP`  0    a8(   A a    l     ` 0C        8$    l   0E       8(          ! A  H DD !! HP`  0    a8(Ԡ   A a     l      f 0C        8$    l   0E       8(     u     ! A  H DD !! HP`  0    a8(u   A aq     l      f 0C        8$    l   0E       8(     J     ! A  H DD !! HP`  0 A    ( aJ8  aF    j  `     C       X%
       l  C       Ĩ X&      `  ! A  H DD !! HP  è `  ` f     `  &      a   `tic0     <   (  ( `  c &	  0` h `tic       (ԟ ø0 ! hI A a    ʨ   _ Ƹ k(  Ȩ hG  X8@ԟ 0( `tik  ! A H D !! HP    ` %           `  (< (       e  h  _  Dk 8(   hI  	XHP @|iJ a  k  j 
  ! A H D !! HP`   A  a    J ` *        `4    `   J    `  d `,    ` ` *       `    a$  `g   `     ` 
    a `      `  k      `k      , <  a( 801 ( ˄   `    f0`  ! A  H D0 !! HP`   A i  aZ      ($    j W(
  k  l   ! A  H D( !! HP   @iJ   a(@A8  k  j 
  ! A H D !! HP`    a, $        a^  (l a?  K( 8 @    K  ʨ  ! A  H D( !! HP`p  D  Ä    Ū  8F        ` "        8D      g (      r       (6    r @&    `  g (   @$ ` $      Ǩ (       p        (    p `thc    c    `  g (   ` &       (         @&    `  g ( @$    ` ` (  ` p`  X   @ p  T`XD@PX rD aT @\@dX   l  k  @ a< T a04 8(\dXX(`(     n  k   P L(  e   D a(, H@\XdX(`(     n  k   L a< a $ \X  d  nX( `(      k  Ĩ$ a  c  ,       `  `(   a  8 8E   8%	  4 ,  @E  4     @4    `(@   (  ,   `0 (  (d c D   $  4  E    `    P       Hm  F  #  ` ` 8      X  0
 P   (   ( r 8  ө            r   (  e0`c L     #   A m A A  % A     8      `  s  H  ʩ L `c L  _ /  #    _ M ̸( `  s 6  0j)    ǩ  H   (   d   L_ /  `   (#     8$    c (    xn (   `     h      `g     `` h  v  c  ! A    A   H Dh !! HP`p    é  $  0E    `  f   8    n  	 0H    `  f 8    @     i  ` i X%     F 8*
       `%    `  f 8#   X( @%    n `thc     c     n    `  f 8   `(  `    `  f 8      X i  n  N  )4  PI  0H P)~  @ A XD  8 @ A8   DX@P  r  <`ԫ  8h   k   C8  d  `     ƨ(,8A  0   p $(  A  PH   (( 0, 4 80+ P(   4  XF
    (` XI  ,h  0   ih
(  E     $   <X8P@(D0@p  h  k     C   $  d  8 `% ,   `   (#     8$    c (          h       ( a g,0(( (, l0Hh `( ,        8   c  ! A    A H DH !! HP`    A   j h    ń0 (     (k    l   l(        h0  ń
0  k  l     k  ! A  H D$ !! HP`p  #  i1 C    q j  
  -  ͨK  P P K,ĥP kc3G  c Hc  p+P øk Hc   P `  c  0  xe   ! A    H D !! HP    c i Ä    ` h$   c0    (  +  F H hC	  `X    `ic@    8 
( `ik  ! A H D !! HP    c i Ä    ` h$   c0    (  +H  hC	  `HX	   `ic@    8H ( `ik  ! A H D !! H   i #  Ȩ  mH   `   0Ɯ 0
@
  ! H D !  è 8%     Ɯ  c H D          ! HP`p  C c   p      `/     p     6    j  ! A   H D ! 0(8 @$H(P,X0`4h8p<x@DHLPTX\`dhlptx|-      ~ `       `   X `~c`   H D    # C  Ä   $ #( C0 4 8 Å< @ D #H CP cT X \ Æ` d h #l Cp ct x | Ç  H D  d! HP`    Ĩ     @ P    `    P+      @P  `  ! A  H D ! `~k H D   _MUNCNOC_LAEN_BMPS_O[ECA ]x%CNOCMLAEON_BAPS_%[ECV ]xN_IUPS_O[ECA ]x%corPisseP gn ssaorht hguatematadXE :_ARTRDDA]x%[TXE M_ARDATE_ATAN KOPS_O_ECARTXEx%[AaF ]t lirp oseconi sb_tieffuoc rnamm%[ dS ]xiroto gnPD fda Bserd ses]x%[_DM %[NEN ]xS tooppudetrrhc  amomrofi_ta[ cd ]d%N_PQPS_O[ECA ]x%anyD cimtnoC txeollAitacF noelia !!duqeRderinoC txetziS %[=eD ]xmanyC cietnoA txcolloitauS nsecclufsoC ,xetniS t= ezx%[ BM ]ts y tra[wor ]x% xBMratsoc tnmul]x%[yBM dne wor ]x%[xBM loc ]x%[RDI arF f emdnuoriF rawmaH edegnx%[ eS ]neuqH ecedaena rrF d emaedoMx%[ uB ]refftoN ler esaeorf oh m[ ts ]x%_IESS_ONECAP]x%[noC laectnemalf lc gerae%[ dF ]xiliaa gnes tneuqh ecedaeap rnisrts g ega]x%[lnO eS yneuqH ecedaeoM r[ ed ]x%tpmEeD yircsrotptnE  sei]x%[ oN marFaD ef atdnuo oN daehf rednuoiaF gnil ta uqeSecneaeh  redsrap gni]x%[orP ssec gnisulFpO htare noiA-eRcolldom er ehc segnad%[ rT ]psnaneraom tr edc segnah%[ eC ]dgnahfo eseR fni emroot dsoh iw td ht_psitats= sux%[    ]            4                   T  T  $  ,  4  T  T  T  <  D  T  T  T  T  T  T  T  T      T  T  T  T  T  T  $  ,  4  4  T  T  T  T  T  T  T  T  <  D  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  L  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  \  d                                                                ,  ,  <                d  t  P, - - - 8. L. x.  

	 
	 !")0(
81*#$+293,%-4;:.'&6=<5?>7/oseRitulc nognahR deloseoituoN nhc tegna   dt @ l |   ԟ     $ 4 D T d t                             Ԡ H H H | |   |  _GER_CED462HRRE_ATS_[SUT ]x%tiaw]x%[    ` \ x  D  _ruc_qes[mun ]d%_hto_qes[mun ]d%111C    s-eRtratiaM ab n%[esN ]xPS_O_ECAATADENON]x%[_KO ataDenoN]x%[_DM rdda]x%[_PQ S_ONECAP]x%[TXE A_AR[RDD ]x%ataDenoN]x%[_KO RTXEx%[AON ]APS_E_ECARTX]x%[S_C x%[x_C ]%[ySC ]x[xE_ ]x%yE_C]x%[noc laecA_BM[RDD ]x%S_ONECAPnoc_laec[BM_ ]x%c_KOecnoM_lax%[Bxs ]]d%[[ys  ]d%%[xee ]dd%[yuN ]d%[m   ]avnI dliuqeSecneaeH  redB B B 0C B B C C B B D O 0O @O PO `O pO O O O O O           H H H H H H   ( 0 H H H H H H H 0 8 @ H H H H H H H P ff???  ?  zD  B   C  pB  (B  A    ff?ffff  A  pA   ?      ?  A    ff?ffff         @?   ?  ?>>??  ?  ?  @  @@   A  A  zD  BP                                   P                            ( ( 4 @ L h   ff??33?  ?  zD  B   C  pB  (B  A    ff?ffff   ?   =  A  pA  B   C  pB  (B  A    ff?ffff    @        L?L>   A  pA   A  pA  ?  @@   A  A  zD  BfeB _ero_munetybd%=sr  
nyseam_crekr
d%=pc  ub_brf_f_emaezis
d%= nI pikssac %= eam dborckcolmun_:rebD d%3XVIE 11%[RRs ]xepMtaD4g>-at_ced_mrfezis
d%=    <   Ē \   \ \ \ \ \ \ \ \ \ \ \ \ \ P  dnEs fo4pm_rap_f_esemar = l 
d%Mts 4gepataDsI>-RmrFllae= co
d% am  borckcolmun_=reb 
d%TSAL*** ****ced  edomarf** e**** = * 
d%*** ****etfaid ralpsda ysser**** ***d% =*  
****fa** retoceda edserd***s****% =   
d****B***rofer  etesesev_**up**** = * 
d%*** ****etfac  rc dmrael*** ****% =   
d****c***s dm dne*** ****% =   
d****a***retftni oH2r  ts**** ***d% =m  
RE_pDH RRRE_F** ESLA ** d% =*  
LAF*& ESEH &REDAAER_**YD% =   
dceDeepyTd%= ** 
f sIemaraer coll ** d% =   
  Ը Ը  @   L   < $ D `   | | H \ p  | | | | | | | | |  h h      x _wenmarfub_ereffzis_d%=eerp rf_v_emaffubs_re=ezi  d%avnI,dil_BM _MUNEZIS d%  WEN]d%[CED ]d%[1CV _CED_GTSTNOC_TXETININOD_ = EE d%%[RRp ]xcVtstaD1d>-af_ces_mr ezietfa%[ rA ]dKS NS PI PIKp_pqenalzis_x%[eDM ]fuB_rddA]x%[_PQ S_ONECAP]x%[_DM rdda]x%[ruc _tq__tuosffo%[teV ]xaP1ceeNrziSdx%[eDM ]1CV_dda_x%[rCV ]AP_1ON_RAPS_%[ECC ]x%[TNM ]dNE_D]x%[ROH ]x%[REV ]x%[x0[ aV]5 eul%[DRM ]dPX_B%[SOM ]dPY_B%[SOS ]dUTATx%[Sun ]da_m%[rdS ]x[EZI ]x%[x_s ]x%[y_s ]x%[x_e ]x%[y_e ]x%_FUBTPMEd%[Yoc ][tnu ]x%[CED ]d%BOG[h[ ]od_w ]en_rdh rretdiwd%[hES ]oD Q%[enL ]d[TSA ]x%BPD[ULF_ ]HSE_DMx%[N   ]h        ,
 <
 L
 \
                       O                               A                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
         
                       %          %   *   
                                             "      
   
                  
                        
                                             !                     !   $                  !   $   &               !   $   &   (            !   $   &   (   *   	   
                     
   
                                                                                                                                            !                      !   #                                                                                                                                                                                                                                                           ȯ  W  W  +  :  L  +    (#    L          
    	            S  
      H      
    W
  ,  	    @	      e  ^  0       U    S          b    B  G  $              ~    S    +          r    b    R    B  e  4  I  &  /                                     r    a    Q    A    2    #              x    x     0                                              b  4  '  4 ' u  n 0 D  (n                           ( 4 @ L t    0  X d  
	 !")0(
81*#$+293,%-4;:.'&6=<5?>7/ 
	( 1980!)*"+#:2;3
,$-%<4=5>6.&?7/'"%"&""(%"0(#  :0(#"E8.&&#SE8. 
$ 40,(PH@8ph`X                     	         
                                     !   (   0   )   "         
                  #   *   1   8   9   2   +   $                  %   ,   3   :   ;   4   -   &      '   .   5   <   =   6   /   7   >   ?                                                                                                                          #                      #   &                   #   &   )                #   &   )   -                                                                                                                                                                                                !                                                                                                                                               U   @   3   +   %                                            	   
         
                                                                                                             `      `         @                                                                                                                                                                                                                                                                                                                                                                       q   .   n   ..  r  libbt-vendor.so                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @  ELF          (        4   x2     4    (      4   4   4                  4  4  4                             m-  m-           -  =  =                l.  l>  l>              Qtd                             p%  %  %            Rtd-  =  =            /system/bin/linker                                                 ]!       *              A   
"      Z          j   e        x               X          8        m          M                                                     .  !       8  $      F  =       e  A       w  $A                      q          0         \       I                                                           
    L     &             -  i       6  %!  8     N             S             X             ^             f             m             z                                                                                             5         #  ,                                             )  U       >             D  ]!       Y  a!       j  y!  0                                                                                                                                                                   A         A         D        __cxa_finalize __cxa_atexit upio_cleanup __aeabi_unwind_cpp_pr1 upio_set_bluetooth_power hw_config_start hw_sco_config userial_vendor_open userial_vendor_close hw_lpm_get_idle_timeout hw_lpm_enable hw_lpm_set_wake_state hw_epilog_process __aeabi_unwind_cpp_pr0 __android_log_print userial_vendor_init upio_init vnd_load_conf BLUETOOTH_VENDOR_LIB_INTERFACE vnd_local_bd_addr bt_vendor_cbacks _toupper_tab_ hw_config_cback hw_lpm_ctrl_cback hw_epilog_cback hw_sco_cfg_cback __aeabi_uidiv __aeabi_uidivmod nanosleep __errno look_up_fw_settlement_delay strstr ms_delay userial_vendor_set_baud open read close strncpy strcpy __strlen_chk strcat opendir strlen memset readdir closedir memcmp line_speed_to_userial_baud upio_set hw_set_patch_file_path __strcpy_chk hw_set_patch_file_name hw_set_pre_patch_file_name userial_to_tcio_baud ioctl userial_vendor_ioctl userial_set_port userial_set_force_use_2_stop_bits strcmp property_get __stack_chk_fail __stack_chk_guard snprintf strerror asprintf write fopen strtok fgets fclose _edata __bss_start _end libcutils.so liblog.so libc.so libstdc++.so libm.so libbt-vendor.so   C   J       5   4   (   -   8           9       G   7   A           ;           <   >   0       :           %   E       )   I           B                    1   D       #       *       +             H           	              C   "   .   3       2          F       /                                                                                     
                                                                                                          $   !             '   
          ,                    6   ?   &       =           @    >     >     >     >      >     $>     (>     0>     4>     <>     @>     H>     L>     T>     X>     `?     d?      @     \?    h?  >  x?    |?    ?    ?    ?    ?    ?    ?     ?  #  ?  $  ?  %  ?  &  ?  '  ?  (  ?  )  ?  *  ?  +  ?  ,  ?  -  ?  .  ?  /  ?  3  ?  7  ?  ;  ?  <  ?  =  ?  ?  ?  @  ?  A  ?  B  ?  C  ?  D  ?  E  ?  F  -,1   Əʌ, Əʌ$ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ| Əʌt Əʌl Əʌd Əʌ\ ƏʌT ƏʌL ƏʌD Əʌ< Əʌ4 Əʌ, Əʌ$ H-00  0   H-M   00  0 K /   "K{D`0  F(7 !$(,4 h, * F& # r HxD GC `````  8 `
x x 8   G   H  pFNFJ ~DzD1FEJ 1FzDO0p 
HxD	K	H{DxD`"h`  p         0  0  Kp{D
LYh #
\\654`4PBFpB  p p0.  F	"r "r 	J	KzDHr H
 pH{DXA	 hiJzDG1  -    8FK	J{D@{X 0 #h+hG hBi(FG8 -  7F{zM b{K}D {DI JyDzD$,UP+h3 FYiG(hi  G> j-  S      8{ Kz{D%SP+hZiGO@B))h9i GF #"O ^B! À  r#HarxDr+hhyO@ Js!FizDG@(hBi FG)hh  G8-  p.  OzqFOzq  FKYChFiF ( h( @B pLN|D~D4	60F4(T )lh IJyD#FzD Fp*  /      pG-OF
 { $MzJ}D !
,@X @74h , 3$iOpGF ( +KO P {DxJ	* Ma
  5  JDMzDKQF }D& D (xO2 p !(F< ( ۵J QF+FzDK	!{DpȢD  (2AF"(텲e-ONBEѩI JyDzDz #zJzD `z1h %i!FM}DhhO2j`!!rI "`ryD%e #
p!F0hJrzDi@@GFD 
 "UP2)h*Yx )цIyDF8H)F"xD	0	H"IxD	0yD~K  {D}JD( zD	3 AFzyK {D	xJ +FzDnuJzDx!Ё(FDAFOq@F </+lI(FyDkI(FyDiIjJ yD+FzDFTD@F (](F	)FFHF (PHF(FJXD	0"F (AT TDTJD qFzDCF@FOqLPD(KJ aFzD %"YF(FTAF(F2@FOq2 ,/*>I(FyD.(FIF*O<F (< @(F"Ak)0	M*m*@ÁF* - +  .  %  `  -  .  D  ^.  V.    )  -  -    x-  d-    R-    y    f  N-  r*  C  -  [  +  **    )      g  J CFzDdiI J+FyDzDZ.%#%r%c"
p  1hbrJrO.@izD!FGF (@! F2 %}HxDpAF"D Z녲e-ONAEѨI JyDzD z B	"z!F+c5h JizDLM}Dhh4O1J i`IzDyD  [#+rSwK!%ar{De1h""r"p  Jr@@izD!F  !r!s%!t"I#er-%yDrs	"b 5h#r#`sJzszD (##O@p!Fi}I }JyDjKzD   F;(F vI vJyDvMzD3h F}DZiG0hAh  Gd 
" (9UPhx+x xx(ygJzDiy eIyDz#"#rbr rxiy+ysr^HixxxD-x#s	#sc1hbs"pO@XJ%tzDi!FG(F2|| x| 9|{OIyD{NJzDDMI MJyDMMzD<3h F}DZiG0hAh  Ghh #+pB	\O2j`%F % %0hBi8FG -5<I <JyDzD3h;Yi FG4h bhG5L|D`hC4O0``1K !{Dp  p.I .JyDzD !(F*IyDH`0􍮂
-       *  *      'X*      "*  )  5  p      )  b  
  )  Y
  #  E
    (      Z(  D(      (  %JBF+$HB*#IB)#JB(гa/'г/&гa?%г?$гaO#гO"г_!гo гI JyDzDd
  
  
 	          	= -  @B   
  O2K $MH{D}D,pj`,rX3h7F˱i GF#O R"K r3hJrJ̀zDr(p@@iG:hR	I 	JyDzD
8hCh Gv#  &  E
  a
  %K&J{DpFX+h +>i GF (8O P "# c '!`r# !rr^IyDh0KhC`h` F1FF" !2F *hO'@!FiJzDG`(hAi FGh G  p(h (p"  R$  
K{D
IXxyD @HxD	0 Op`C #    |%  K (!!  {Dx B#  KJ{DXhh  G !  HOrxD   t"  H"xD  .%  HOrxD   l#  I J8yDLzDBK|DX h%Fȱi GF #O PFr H"hˀ#r@@Kri
JzDG8*hRI JyDzD+h iG8 Q	     !      (FFA 2( P-(A
 (
(A #(A 
(A 	(A (A (A 
( (
 (	  ` ("
`I JyDzDA  #` =  M  HO3IxDyD@(; L$  V  _K-A{DFO4`x ( (@
UI UJyDzD a0	PI PJyDzDvO0MOD;h[ ?II IJyDzD@'GL GN|DGJ(~DzDCF1FV!@FvCF `@J 1FCFzDF%EA"EA*F h`hh a" h!!i`"p! L@ Ac`*F,K hA0#aEAL`EA" hEA*F hEA" hEA" hzhA !S#EAL  h`*FfJ 1FzD#h h  F2$  
    
  (   %  
  1  #  w
  F  D  
  7L|D#hYM J}DzD)F h (
J)F  zD#hKO2{D`> "  ?	  i
  d
  H"  A JzDh!SEA#L  `h2"  pG  HOrxD(0  !  FIyDK"{DK "{D`   	  "  "  KJ{DHXxDJiF#hzDIhFyD"h 8  B  	  	  	  H !"xD z"  bKcJ{D-CFX-hF0! 1!\H]JxDzDZIyD@XK{DhB`@l (@RL|D"hSPL!|D h]E (UKMFKO}DD@!*F#Fn !  hhF@JzDh  =IyD/"F@F9F	""P4M"F4H5I}DxDyD,`F4$h h8F,I#F,JyDzD h  O4#"
. ($h hFI JyDzDh  #FvO4  $(F  $ F3hB!X  c	  [	  S	  8"    "  	  d	  	      !   	      f    @(K{DxBЙppGHxDxBppG       9K:J{D-OŰXF7O 7J+hDzDF9FC#F3I FyDF (1D #*49FFp  9FF(M}D5 QFZF#F!Fh58P FF GU (OddDDDOq2F~ (0FJ 9F#FzDC B@E T  b  l  w          	  xGF xGF                                                   x`$hh$DL,(D,T0`4pTT\ ,P?x   	 bt_vendor init init failed with no user callbacks! /etc/bluetooth/bt_vendor.conf bt_hwcfg %s Opcode:0x%04X Status: %d Settlement delay -- %d ms bt vendor lib: set UART baud %i bt vendor lib: loading prepatch %s firmware patch file might be altered! BCM UNKNOWN Chipset %s Target name = [%s] / FW patchfile: %s .hcd Found patchfile: %s/%s Invalid patchfile name (too long) Could not open %s vendor lib preload failed to open [%s] bt vendor lib: set UART baud 115200 vendor lib fwcfg completed Setting local bd addr to %02X:%02X:%02X:%02X:%02X:%02X Controller OTP bdaddr %02X:%02X:%02X:%02X:%02X:%02X vendor lib fwcfg aborted!!! vendor lib preload failed to locate firmware patch file userial vendor: unsupported baud speed %d vendor lib fw conf aborted [no buffer] BCM4325 hw_epilog_process vendor lib epilog process aborted [no buffer] BCM43241 bt_userial_vendor userial vendor open: unsupported baud idx %i /dev/ttyO1 userial vendor open: unsupported data bits userial vendor open: unsupported parity bit mode userial vendor open: unsupported stop bits userial vendor open: opening %s userial vendor open: unable to open %s device fd = %d open device fd = %d close close(fd:%d) FAILED result:%d true ro.rfkilldisabled 0 1 ro.kernel.qemu /sys/class/rfkill/rfkill%d/type bt_upio init_rfkill : open(%s) failed: %s (%d)
 bluetooth /sys/class/rfkill/rfkill%d/state set_bluetooth_power : open(%s) for write failed: %s (%d) set_bluetooth_power : write(%s) failed: %s (%d) bt_vnd_conf Attempt to load conf from %s r  =

	 vnd_load_conf: missing value for name: %s vnd_load_conf file >%s< not found UartPort FwPatchFilePath FwPatchFileName FwPrePatchFileName UartForceUse2StopBits hw_epilog_cback                                                                                                                                                     M  9      *         d     -  a!      -        $-        4-        G-  y!                     l?           
                         o      H             
   Z     D
          #     -     5     B     J      >                  
   o                                                       $A  A                  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0   @  /system/etc/firmware                                                                                                                                                                                                                                                        GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"libbt-vendor.so , .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .ARM.extab .ARM.exidx .rodata .data.rel.ro.local .fini_array .data.rel.ro .dynamic .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                     4  4                             H  H                             Z                 #         D
  D
  <               )   	                          2   	       
   
                6         0  0                   ;             d                 A         @%  @%  x                  L     p   %  %                 W         &  &                   _         =  -  $                  r          >   .                    ~         $>  $.  H                           l>  l.                           \?  \/                              @   0                            A  1  p                       0       1                                 ,1                         p        H1  6                                ~1                                  1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   s   .       ..  t   [   u   [[  v   add-property-tagw   adjtimexx   arp y   ash z   awk {   base64  |   basename}   bbconfig~   blkid      blockdev   brctl      bunzip2    busybox    bzcat      bzip2      cal    cat    catv   chattr     check-lost+found   chgrp      chmod      chown      chroot     clear      cmp    comm   cp     cpio   cpueater   cpustats   crond      crontab    cut    	daemonize      date   dc     dd     depmod     devmem     dexdump    df     diff   directiotest   dirname    dmesg      dnsd   dos2unix   du     echo   ed     egrep      env    expand     expr   false      fbsplash   fdisk      fgrep      find   
flash_lock     flash_unlock   flashcp    flock      fold   free   freeramdisk    fstrim     fsync      ftpget     ftpput     fuser      getopt     grep   groups     gunzip     gzip   halt   head   hexdump    id     ifconfig   inetd      insmod     install    ionice     iostat     ip     	kexecload      kfmapp     kill   killall    killall5   ksminfo    
latencytop     less   	libc_test      libc_test_static   librank    ln     losetup    ls     lsattr     lsmod      lsusb      lzcat      lzma   lzop   lzopcat    man    md5sum     memtrack   memtrack_share     mesg   micro_bench    micro_bench_static     mkdir      mke2fs     mkfifo     	mkfs.ext2      	mkfs.vfat      mknod      mkswap     mktemp     modinfo    modprobe   more   mount      
mountpoint     mpstat     mv     nanddump   	nandwrite      
nbd-client     nc     netperf    	netserver      netstat     nice   nohup      nslookup   ntpd   od     	opcontrol      	oprofiled      patch      pgrep   	   pidof   
   ping   
pipe_progress      pkill   
   pmap   poweroff   printenv   printf     procmem    procrank   ps     pstree     pwd    pwdx   rawbu      rdev   readlink   realpath   renice     reset      resize     rev    rm      rmdir   !   rmmod   "   route   #   	run-parts   $   rx  %   sane_schedstat  &   sed '   seq (   
setconsole  )   	setserial   *   setsid  +   sh  ,   sha1sum -   	sha256sum   .   sha3sum /   	sha512sum   0   showmap 1   showslab2   sleep   3   sort4   split   5   sqlite3 6   stat7   strace  8   strings 9   stty:   su  ;   sum <   swapoff =   swapon  >   sync?   sysctl  @   tac A   tailB   tar C   taskset D   tcpdump E   tee F   telnet  G   telnetd H   testI   tftpJ   tftpd   K   timeL   timeinfoM   timeout N   top O   touch   P   tr  Q   
traceroute  R   trueS   ttysize T   tune2fs U   umount  V   uname   W   
uncompress  X   unexpandY   uniqZ   unix2dos[   unlzma  \   unlzop  ]   unxz^   unzip   _   uptime  `   usleep  a   uudecodeb   uuencodec   vi  d   vim e   watch   f   wc  g   wgeth   which   i   whoami  j   xargs   k   xz  l   xzcat   m   yes n   zcat                                                                                                                                                                                                                                                 0 ELF          (      4   0#    4    (                             
     T'        Ptd  z z T   T         Qtd                             p  V V           Rtd
                     H-MP00L   D   <      K   0 0K  hlpt H-M   00 0  0 K 00 pFMF}Di ()JX
hB#Fx4k_ *Fp0F" D/B_ +=:PBPAp  p< x7
F4Fh(F
" |F FS F(F>  -BFF
FFF`KDY
h( 8B , Yx_ +I+F0F yDyI+F0F yDp x    -OF{L ]zK|DF
 QxOX1xMO ܑFhD}DD
`n(?( ǀf(p(r(O
	kMcYhiOYhOJF@F1FeBT0hBEaIaHaXxD1 V `(F]IyD F`  h UJXIyDFX*F0UJOQ+FzDRIyD F (;  h qLIyDFT 0a
P9F00
P1F0 
P0
F 
P1F0 
Q0F1OO 
POQ0JF  (HF 0F  	!H:F'I+F XyD0)F먱 l h IcXIyD  +F    
 R2hhB &
 ]  |      w  p  X  U  R  6      HxD 5 D  !K-C{D JFhX`T a !iFU` {	'b" ?8O 4O 4p	MO}DDc(b@F H"FIF@F P !(F(F`  . \, J8zDhFM`  !}Dh`Hah+X`hHxDKJ{D` iX` 	
K{Dh` G "$  "8@L. 0   + + pM}Dh3F $ 4V/ * V9<Z ИG ,H)Xp@ p 
h #p
&F2%x0=	-S `Fp-OF0FFdиiиoSBSx	иXиo'
    W ,u 9dBeE-"+17FFOz( F)FJFSF\ F)FSFFJFR_EF
Fм	0 
XOaOA
 ²+TѷB_E0#; !9p]p\rT1U?Bӽ𵉰OFFD8FIF0  h( F"" FAF h+ Fj(F 0F'A(F!B	    -AFFFFhh6еB.F9F2Fh` h&`O  -ܽKFJ{DFX"+h	,&F&8F2F ,)hB;  |K-O
FI{DFNF[X "~D
.
h
F]#%+ 6B'0ݩ8F
'  ( 8
O 	FJO
& FF\PK
"% )
8Fi0+-+ +++Ѝ'00;	+
(FA(-
r
'FO8'.)(F
y
B
.\'`O3'l)h)'t)z)"
\h(^!

!
\l(^!
 !
Z
'
J
'!'s&$h ,zwc"h !&-, jpx#0 "h&, !-0  #EdлiлoлuлxлX6ѻoZBR   N.wvvvv&"x"& #
#h&F4$ ` F@F"F
V"F
FFF ! %%!  ,- (JOqzD&F$L|D FF AH@JxDzDEK8F  !0!8F!FZF]EJ8F  !0!u4F3hB J |      m    -AFLFIm|D &eX
AFF(h`f"F@F9F$+hB
m H |S+@pG0 #
!
M$}D0	I(F|AF  h(" F b0 th+ F 0    F F F@FO3" "#E  )F F0N~D0hбHxDz1hhh  F9F@[J	HzDxDh`@ ) z) \) V) K
FI{Dpm]XF
A  1F+h 4I"F yD F$+hB
mp |  Q FFvH!FxD ^  Q@pGF	F% O4#`$  nCF
"
 1F"h F  ` FFO~"  OQ`X```aXapG	Ѳ _
A`` F F
HxD	K "b`{Dh ` D`IHyDxD`@ ( ' ' ' p?XhpGHIxDyDܻ' pF M}D(hJF@! F(h!FP0F!F"  Fp' I #yD3TLBRh *F  FFF  h0F)FF8F	JzD	J3FzDB,O5 %("$ `(F    p0pG'K p{DF2	%`O5?!I[XhF
  FF!j1iG5 (O5 iJ"kh@@BA#k  ``l: "bd0h #Oq`c` F(Fp -G 	-KFF{D 'Q+JXhF F	9=FAfh FhB !)p" p / F7Fn1fh NE(NF
!2F@F!ah0 AF	 2F(F   U   FMb`(F#`AF2F 		 8F FFM}DF $2F (8FOr# ! O % $`
HてaJ)XHabXJb)XbX#bC F !"M F  pFM_I}D mX*h F F+hF F0Fp| FiF  ( FpAO  O0-OW	F
F9FHFFF
>FF0F!F
&FF , 1F
F b !
BP$01X"H"0@$aE4B۽-OFLHDxDKh{D)h))ODODODODL(F=!|D"hV&`3F 	F(F FO O4 	4aF(FJF `F HE;b	 XhQhBјhhBhhBOO3B  Ѥ_JzDhS  :(\H9FJF+FxDZK "{DUHxDhR :)RH9FJF+FxD03NK {D`? wKK "{DH(^> )[ `U)SBHS"[  AHxD``[0h )?;K{DhI  :(8H9F*FxDz "5K{D3K !{D3H`xDhQ` 0:+? : ++,HxD` F#*JzDhH :)'H9F*FxDL%K "{D `  J`   Wcg 
 
 
 ?  >  <  /  v
        X L &            -OFFDFO7HxD#x 0 -+E	++++% 4HOxDhXp#;``I ";hX `;HO1JxDzD``KID{DyD	8h(hx )@    8`B%IKLyD{D|D`hgM!F3F}D-h,(F  OD:hP  IO7yD`IyDV"0	x`-(ѓ @IHyDxD`H2xD;`'`_pD ?  K{D ?QFpF3FJO3zD
h 
 `HxDhK`}OD?hyЯIyDh0
`I-yD !ћxH2MxDL}D
`h|Dk"`
8F)F3Fu'h"`KO7I{DyD`` 3МHJxDzDhhV!0B)9x-)h$՗J  -)zD`ѕI7#`yD`:) F  0 ! !F0FZFpAFЉKI{DyDHxD F{:/ ј-/ј 2 F9F  -/ј0 +ѳyHxDhS`xIyDh`"x:*	tHxDtHxD9FrIyD`,Ax BW/@;)>јAlHxDhS`BiIiKyDiJ{DhzD`8"x:*fH9FxDhdKW'{D`!x:):'Y?'W`HV#pxD`^J  #!FzD`0F( ZFYKYI{DyDF>:)И  (9UIyD3 #` #x:( NJzDhY`BKJLHzDLIxDhyD`;!x:)HH9FxDGHxD`V! `DKDIEJ{DyDzD`
hS`8F 
   
 t
 
 t
 z
 v
 N
 4
   6
  
 	 
 	   	 	 	 	 p	 h	 J	 N	 $	   *	  	     J    J 8 U  d             J   | \ D P             # |  p   p
p/  `/ p   p
p/  `. p   p
p/  `. p   p
p/  `. p   p
p/  `. 
 -p p    
p/  `. [p   p
p/  `. p   p
p/  `. p   p
p/  `. 
p   p
p/  `. p   p
p/  `. (p   p
p/  `. &p   p
p/  `. @- 
 /B π  -@@*SӀ n*& !Т_|D !  _C|ڡ
=!
  @@:ӑ!
!
B@: 
 
B@ :!
 : 
 !
 
_B|!
 
ڡ

_|D; ;!  @pG - _|D; ;!K[ K [@:ۑ QQQQ@:@2 :۱QQ : 2_|$xxD_|$Q;@;D1K Kxp HIxD8   R  -  8     R   -  R  :P!   R
 *      

 ΰ   :
    
ϰD$$ /@- 0`0 S0!!ϰ$$D R@/@P`p 0`0  
 S0 B>@(@(@H1$  R0  J  RP*  .
P(@H!$@! %@/1+ +; ;K Kı[ [+ +r; ;KK K$[ [1 @E@nɑ@<,<@<,<@_LNp1$1_L`1 +OCp1_LNp1"@+1_L 1 ;ODp1_| + +K K ,1[ [ -1?Q+<,<1 0TxQ+<,<xsLx|xQ;@_l p1 ; K1 ; K [1Q+<,<lxMxQ;@ _l?֯ ;OCp1Q+<,<HxtQ;@<,<Mp1 Kp1 ɢ<,<%ɑ@<,<- 
x±KxñxԱQ+Q;@_n ]<,<p1 +p1 + ;p1 
xKxQ+Q;@ 1_l 3<,< 
x±Q+Q;@<,<<,<ˮp1 +p1 +OBp1`1  F@B ɑ@<,<@
<,<@뿡  _LB  pG pG 8pG pG  _LB  pG pG 8pG pG_| +++z?Q+<,<˯   pG O2ܽpF  p%i -Й&h%`ai !`j)Fi2FG (ܢB@ O0p6- .
KJ{DpFXhF	 FF(h F0Fp  Kp{DF(HxDp@{JXhF	 5O5	"` FF3h F(FpL  KJ{DXR  HxDLK|DXhF˹JFMOGzD}DXQ3cT2H``0 JT0zD0``	HxD@8         -O:K;J{DXh8H9NxD~Dhqh  *7T496h .1HxD@0F (? %
"Rw`B`gz`DFOI
T YFT"kE$lGGT5>F7UEH!xD"k #Op#`OA`c`a#acacdd`S``4F

HxD.K{Dh``h F`        p $    :  R:@pGh-OFF  ဉ 

#iC F 	#`	᠉ p 
>h}h7>h}h7 -j1Fi*FG (@ 6-  ( >h}h7 -ТAO"ѠhB i#h

OI	E1 ( cih	 aPD` ` s hMEF1FJFh h` 	F"`'!iBMEJF1F h 	 F"`_biFBj1FiG 	
w1F*Fmh"hC`Q!`ND0 +J>hO }h7FF -л 0F
!*F  

O hESF+F!iBbiّDKE1FJF-"h F	!`*Bj1FiG 	
 F1Fh!hF` `	
 F`F ND 0 +桉A@O0		)  pG  BKCJ{DFXh !a` m  3	#`[
b FY (UѴ`.a@"khp@`E#k  k`a`k"`!i FWo@BHoRNxD	, C	) F!ibicj!`iG" Q (``L   ``L@O0    7 )o A!
 9OB	 $O|O~*( bp@pGF  ("m#e#QpFpFF)  !"颉1F "\*Fp@
@F C#RCQ e 
.hF^ +hFO  O1O O"1F9F"h(`)h"hFd(h!hF/`"h !(h&`    -OF% %5F
$!{DFO
	Xh	
$%* @Fx *`F; Z) VP!D G                m                                              g                !                                              c  k        '  k      =    K      Q      W            ]  F #	bFx0 	(;*+2F #	bFx0 	($)ыB BFTBB%F"U4;0	) "AF0;	2;0 	(F$+G h)G gG@  l*GG G wGgLG 
МB[B%F U4x
՜BKB%F ՜B>B%F 
՜B/B%F x
՜B"!B%FUdkBB%F 
ДBB%F BB%F
  
МBB%F 
՜BB%F	 z
՜BB%F t
՜BB%F gy
՜BB%F ZBB%F OBB%F CBB%F 7G  &z
՜BB%F #
՜BsB%F 
՜BfB%F 	z
՜BYB%F BNB%F  +-kO0 "#`"     # A#`\)



 6&6 63BPXE	hx  '_hBy
|`  8Fh %K`F8`e`8      K-O-FJm{DF&FXh|0[PF8hO4	"`  
-@Ѻ
< ,  "!!"DOaH=?BC"FIOE $=A (= (O4 !@  +QA@@I- "'K퐋{D %-F0%x -O8Oe-A ). 	PFO (A 
	
	S
	@  4_ O<F
$+	 	  Z( ,a **g ******]  *  *          **********D************2**[ **********7FF!*$**.*14**h*4O 
_  *  5H+x
F10	*$+X%
R+`0h5P'`3h76 +ZYBHT+ _ P;*+	?)FO +x
F10	*$+8%
R+`356h           |  P'`36h7F|F	  %	0	)$( E|H %	0 0	*	$)/F *%6/FHH@HXxl+PHH H xHhT'`5h76|R %_PH_  P'`67& E   
o 	@
R'`7 @
R'`1h7F6 ,u ,-"dBeE_ $?(		g-G-Ѽ OOS'`I  S+# C7Bz@-%$_PD %
S+@ G{aL\E +@s *@p	Hxf*e*E* ,","ձH-!H !
 Q	g*FG*
#	f*ћ  0(ѵ@@#`"` 0!"hB	$hg+ G+
dE`	g,E%e%	f)G
F=Tp ,dB-  + 	,Xp'
{" F
!L F01
!	(F`F04 M
~KKpE0!pd>p( 
!4 ,	ݼ 
 $B
4 ,Կ$g%
 * -!	_ %(H_  

U'`67& E     o @P'`74P'`4h7 %6
R'`3hx!H7 %HxDF6 	     "  T'` 75 D XFbF !OH dEdFF dF !.F_
F
H_  	Q'`7" E   o @T'`47 %6 DT'`5h7,FM}D_  S'`67&   E   o @	Q'`74	Q'`2h7F %6T H  "_    (TѼ j((J
:
3Q0 DErFF0FTٲ3 ]FG0)E0!F@ F)F
" #
 F #02-
"
)F F
F	  !BB
04;L
3
S+"@$	(Dpx)	FZF
FT9

v{  eF
	 ,  %|B_P$

{Ա %$
D
ȱ %$
D	
(_0B F(F
0


@
 *:   1 A 0)		PF (@S
	:QK{D*PH xD  X (
D		 PF (@4
	_I 
_ !  Z! 0 0"	!   		P(PFY (@
	)@
 *:   1 A 0)		PF6 (@
	:K{D*H xD  X (
D		 PF (@
	* *5T                >          Ӷ  Ƕ   1 A P)0		PF (@
	:`U#}D* TU }D PB* 		PF (@h
		 @ 	 	e,@q@e$ @LB4, {D 0	PF (@7-B ҁ$ yD`B\`3L ,PFl (@- ; ܳ B0 13* PFR (@-XD%|DL$zD  +m$ @TH,4, {D 0	PF" (@΁-  yD`TX`3H (PF (@- 	 1 Q0 03) PF (@-	L%|DJ zDB3*	 PF (@~-  BY  ` (	PF (@a- 1 B0 13* PF (@F-L%|DܾJ zD3  Q)PF{ (@'- ƀL  |DX``T `0(	 PFZ (@- IX`yD `3QB* PFA (@-` `X`y+WЛ @.! !  H@( 0 	PF (@-@2  & ; Q0 03) PF (@-nL%|D kJzD 3	 	! B B*PF (p-=`\` 3 H(PF (\-4
 , P0 13( PF (?-CL%|DAJ zD  \,PFv
 B	#PFg
 % ,> Fu $PFU8 "
Fd(%B  @ +O4|#hB
!}
m #      ۲      =    K  =      Ű    E  5    u   FKFJF{DXhF	w2F F9FF(h Fr0F  -OF6LF6KF|DXh-L3IgX:h
1NY4h ,DchhXB? F)F"lO4.1h9" "b`! ^3h#`4``HxDh	 "`ch Ya` B)F F"< (F;hO4O O3"XF"#)FJCFѵ F     -OF:L:K:I|DyDX
h  *e7OY;h}5HOРxDhJ`T
0hF3fhC3+FU
0 SEѕ 
 " FAF0BAF F";hLG8h?+F>$h ,ѹ HxDhJ`Z  hAFd F (  ;h#O#  D    B  F  u FK-A{D8JXh,FF{%F=/2FEbEО\ .<s`
/FU;K "F#F3x=+F~  F    O0pO0@O0  +[ 0pG  pGhF !ԘY `pG` pG	 0
0	0[0`pG  pG  pG  K0{DBЙBi
i  01P]Q-BO3B # #F0   I: Pr *FQB #

*O #C "2*Oڿ3bFC+pG  -CF0K{DBRi 
 FFEFVK FS
(  0E$EUE@V\ %0 %L&E=V  !+ B\BL@! DUL $$ NDT
FD@C+       ,   XK-O{DBFF 𥀙B i"iB	E  
ZhAhF1(F (H  BFIFFQO@ KRO@L" OCoCoC "OCoCoCQEr) =CEF%ah; * F9F (66 #BFYR@" )oCoC" (oCoCE*YhY =CEF%ah; *0F    ^  8FK{DB
M}D(FHbhxDP"@"@(F!`8@8       pFHxDK{DS%@"hC% 
&p F(E`` !!a`L|DHxD Fp    ~    -CUKF F'K{DBFE%@
W pA ̱hF X L" qa ta *$$4aa$4ara 0G3N5  p
2@  di! 0F L  SK-O{DBFFPHxDBiiB)F5FF7ihhhBȿ0WEJzDB  1 " C+ B75 P1 %VSOH
	OE#^L#̱EOE`1|?R\FO VF3#\OE

 #3E	EOH P2FaE  < ,aQ- *     h  F K{DB!Daa D  -GF@N
F~DB>HxDB"B"Gaa &#F&,FF`h1IyDB!i *i #`475UTOCI2 .oBoBD bFOC""loCoCETk+ -oCoCFV3 ."[oCoCB 9R= +a &      -CF,KF{DBOOQ!i@h	h	0m BF"HxDB 5  FB 0@E(r!i3F  #h CA;RrE `C	REC>.a F,F F     8FKF h{DBЙB,`8
i0 8@\8 R  F KF{DB9i  #h3lNC@B @BhBbhPFHxDB F<Ff#i    FY<F5%aNa F     2K-A{DBFFZ.JMzDR% "FL)ODD8F @@q }F#HxDB(F%F8FR0 # @#`<FlD(F!FF(F=Fv'h / F!F@E(FEF
HxD( `F`
HxD (F      |  F    F  4      ' #-O-FzDO 
O KFX
hxF3h  (-)%F
+)F
%x - Ä6iXh0i) F"yDh"(FyDO 
|,F n) F"yDzxx(+  F+)*  * 0-`xF00+ + z'	 &	 &
%3F+0+ܿ̬03/Fݼ9 !FFf.Fh2 +QFF10:FЬ1/LF !H05l? O
 4, ,ؿ   dB )i)M)
!-
$  F2 !FF0	, #FeF+F !FFEFFP%	 ( ԃ+м-   $P 0	,400FЬ1	*ج0 
$0dF / Dl(9EF FX FFF FO  F= )@|	 *LFvzg +FF-+F#	+[0 j@D
R+a;@;[3->ܸ  N)ݸ
OK8D {';(% E'KD  kfK [dk[6"IKyD ;[ /\xK:D i[;7 𣀱 &5FF7FQO 
"!`
	 ) 0K #D	 K%[3R*H[T{K=xDI  lK[>B_FءBT{زO:YX{BKD Kk[3D	+K8 'D &5FF7F%
 {h7[+|D  {hK@K[4x[ek@kO 
O ""` /@KZO O
 	!.' & 6B0FNI~DBF0"	aCa		# 8F
! 0:|3KEF	 8 
 O			 8F
!		0:cFE۸  %  ۶  xhK A
F9F)K
!F %
(r +FF  opE3F6BF1FaEaF ) [v(FOIFF?FHFF +HFFwF"F4 .1Fi .(F1FaFHF #hF`)F (A (@k @g +@b!0FA)FF (DV  |  *  x  Ӡ      ֡      R  &  ʡ    h    ޠ  N  B+CI#pBѺ?ѬI

Fy + BO:
oSo[
  ( J3: ;[:@+@+[?HxDB)ЅB'0F(F*i3iC *Q^^qFA?/p͋ SF +ѻ ?N̋( (aH I  H^I_K B*ѫT{KS+K%K2TH\I +[2 cE
OKB2?z0O:IT{Pش̋	8ɛɛ
IJJI [07KB#8@)  p&;ԟ%#HF(F0F
HF(F8F0F LF`
 APFPFYFL4       5?55  ?5?       |-O-	 *!" D`  `KJ B,Bt`*-M}DM}DM}D	!(F0D`EF ք)F + фx@$` zJzDBF 𵄠IyD + a` 𪼰H
VFnS+#C#p5GQ &A@%oc
E3G		!@
}M  jg5&S0+s+C+j+klK0b Z!+;++ո[E+
:{D  kk
:" #
}J O O  D( '  !
	*%* % %)$ "  	 +!F$ "	 
3 +FO1% "F#O3 "F#!	#	F #  !0I E*JzDB F[ 8 - 5 [U
 OD [	# #IyD3  `(?aCoc?yPD?<sOu      Ŗ      Q          Ց K%[3R1 *K     #yD ;	e{yD kg{3R1 *gKK #ѱ չ  *@
<3FkMFF{:{
Ps:q ȁG nj ;5{D kK k4{{;0 FqǛ vǫ B:''{iD  +]"k+*0BqѶ ;0Kk3@[
FF:0(k`[ (iۺf	, )D ڹ O @1MF.;;$(BD.+JEFK0 n%1++ܴn+@_r
B0!

pFFF:9)xHp!/2@ %:+	 3B
6=F^F	6B۽
7F
  "^FJF DD=F^Ff 	ݰEFF / -
)F!FF Fby F F9F
F 
 /F9FF(bQO@G' ' HxDB
B)i  iw  #
 )F  #3DD  FYFF (FAFF F)F ( F "
!
:aF*
! "Y )ݹ !(FJFHF F)Fo (	o
F

1&k & +  .1Fwph1FG
8F !W	)F F1F8F 0 F,(FFh8F FF !FcR@9+ *	1 )ҹ +_F! FQ)FF (9/	1CF +ݻ99 iCFtFBF
! " F
! "BF0FF
! "F7| F)Fe 0 6NE F
! "xF  4    d    |  j   &D! F)FF (B1"

pAF,F99*PpCF80)(Fj.B0F F FBO 
0  "p
`*`   F  GK-OFFJ{DFFX;FhFF[J#FPx в (--[O+-F$F[ .a.[%xx-X-Qex&41FO01FFO0B  F0	*F  R!OWO7BBSEэB	"!`O0FS [ ([B   g p0% .&0-Ѡ0-
&F   x𵂱
M #}D\\/]]Bи43B  F F f  -AFxN%F0FF,F;KB(F1FBF  ( F F  
KJp{DF
HX
FIX4yD FhZ1F F*F
 !Fp@ "  @  Q@pG k0pG k0pGB 1@н @pG<HO!xD:L|D]!"f (Q&4HxDO4SR &(F ( .`	Q &#*s  $OFY:`"T@#`F B
ЁhJBhKBIB9hlO4L"|D"pK ${D`fO4(F6h+ѣ F PROPnvOCED  z        HxDJ  HxD>  0b #\\B`043B  0F0 F0pBLFBDBFxBЄB
҆xB	ГBx3B0  p Fp(Fp  0@- @  0M  8  P0#S8t 8@ 80   8 
  PP  "0 p   
 ʠPM
 <Ѝ0ظ  |0@-PM @  Q  (     U 040  
   Ѝ0   "
  p     0 ꔏ    @- @ P  U   0  S    Ì0 S      0  0 S   
< P`r`pQP 0(  g  P  T          0@ S  p /  /p@- P `    0  S
    @#0 Sl    @E T  P 0 0C   @,0 ,  pp @a  8         K{Dh
hG p  K{DhJhG \  K{DhhG H  K{DhhG 4  -CFP;*NFY~D  F0h ,,u ,|F &@"hBEѣhai#l, r"c"#8 4LE,h GT )lh GT? +ѩh!MFpY G R  Rtd  Q   Q   0P     / 0P       /  P  
  Q    / /    0: Q  
 Q  
  Q 0  /99A- @P  
 Pyj   ?  3  Q VP  	  τ 0\   V_   | 0%S%  
p U83  
    ^	  0%/  2τ  \ UP     0 P U   1  P W_	W  
 ? ^  
/   2  P U P 8   1  P U P # p@- @PM+  
 Pi  _/0B_  U R  
   M Ѝp   0%S     R  
0E  0  Q  U
 P _`ϔ_  U ^  $ @- @P  
 `yZ  /   2  P U  
 _  0&SP80  
/   2  P
	W  
  Q  
?   3  P V `#  @- @  P0>M 0 0P	  
  Q      
   R     / / / phBBhaEӀh (pGcBaDaB`K`K("J`{Dia   HxD p  HxD p溚  FK  J{DX`HxDnb    -OO 	F waF0h		hh	+@
  DBch (@#(EhiB_hiBТh(iBhB `` vHxDci;#i 0bFXi ( (iB iiLU, BE,0*iB#ih! h`*iBiBaKa +a!iBaa`iBXaaYF~`!1 `u_"(OwB#آsR DC   11(  A "!ohaLLE.@i` *U.0R      F_h'AER 9S!  (*iB?=C!@a``
*ihB2B/````7F .hB?@sE, +b
  -AFMh h0F)F (@J!&iB<eiB O$؍h(hEEеBсhB@́B%&h& %`r@EаBhB@``fhiB
ЏhBhB ``HxDHi8i  FGi  /i  /ѴE p -8iLT,pBD, &iB  fh&e`"&iB.iB(aha (a
iBaaMiuBEaa	Xh -Ѣ`  X` &iBXh@𴀧iBhaci`B BH`@Qea`eiB	ѣhaa`B H`P bDO$؝h(hEEеB!hB@B##h#   `i@EаBhB@
``]hiBПhBLhB F``Xi8i  FGi  /i  /ѴE+ p -0iLT,pBD, &iB ch # ``&iB
.iB(aha (ai%Baa[i#BCaa`iBPBK`	Ѣ` P]`BK`(%"h (3BC"`Fh iBЮ````
'а?#Ҡu/ V0 DE.33"  C   'fh %a Ma7B
a LD,>Cf`a(T,0E 3F]h%B@ 5S%` ."ibE?oC%a`` ihBcB````` #a
HxDHxD	hB?KL	HxD	HxDhB?@F        ځ  7FO3   ""#!FCFJ!FzD(F>x   HxD p ( 0  V  8LH|DxD#h+( dF8HO2O `xD#a`a`!aa(FU2B,#`$  $
HxD><	H	I
JxDyDzD 8 
        -CFJK
F{DhA !xi )(5E {@J FzDhFoѹD	1H9FZEqhB_0hs BcEVӛh +K2h)F(K&K)HBxD ER   FB %hBF  ?иB=HxD-qhKs`hBi F!Z\ FAhiBO3a O:F0Ѭ %j  @      -GFGhFF'EHxDdEn@tf F. j0BJzDh@@u%hIyDJh9FPBfD@`2FB JDu"c`e #J`IE<yD
iB8aHxD1vDaB@@a<Bӊ*@7EB>Cf`K`]hE]`iBhB@	L>CAf`Z`a`CiB+уhB+٢LC >Cf`P`HhP  H`IyD`Ja"KLC{Dg`QhA P` "`Za ɀ"
EO
)ȑhDh	(	HE`EhB@𳀃B	iK {D h! `lKEcE𦀟hB@```hiB
ЯhgEhB ``WHxDki;+i 0F_i	 /i	 /E p (2HOL	DW)BG)0+CIyDiB#xh y`?iBiBaCa +a(iBaaiiBYaa*ch

 BA
c`BhBA`4 @BNf`K`Xh@ X`!HxD74HJxD!FzDp
K` $BjhHxDHxDhB?fg F @                  N}       `  s  V|  6|  .|  ;-O{DFhByD!,	٦p &$ (Ao
,4$ $h;{Dh !(4hhB"  `iBhB`` xD XhB@? )tO   wBGqBz"W	"aD&& &@&(1hhB ! `iBhB`` D4q`B P``ձh:O{D h(0Yi=B=C`FhiBӁ````4yD`La s   q
 ! w	
&

  !  N!@ 
L1S!KhF#
Ah!F
E,FFRFi (Hi (yDVEfEhiBзhWEhB )``p	xDnsi	;3i	 0F_i /i /E p )3,y
LDW+ BG+03	xDiB#
(
y`?iBiBaKa +a1iBaapiBXaa*
Bq`ChCB` DB t` L ݱH'|D(1ci=BE  `Fh$iB|````p8{D` A ҁ\h4$~D  ȁaB"
&в?"Ңw;PC 33$C "7L {DS 0S*V  'O fFXh   BFF (WOxXiS(0B`FF F (D .Bo
*^B C#C	 fD "V " D@" @7L2 &{DS"0FXh B(
Fi8FYiFF + . #xDhBFE3BhiBзhGEhB ̅``xDri:2i  FWi	 /i	 /E p (3vL	DW)PBG) 2xV}D-iB"*}`=iBiBaBa *a0iBaapiBPaa)	
Bs`Hh@J`ADw`]`-YP'xD h(2
B
CF`h iBӓ````{
(а?$ҠrOG PD@77!  G   %O  %zDa]a LaH B'0P`!(R' E :FUh%B@ =R%p /$yDi`E?B%0a``hxD iB
B```` "a6@O44{DhB^i*0`XaBPC`  !`Ya2@q`ShC P` hB {d~D2h
4{DTxDhBNh *KAhaHB@>!E;ٴE9إB7(F2F2 KBPr`#K` !4B{Di
ByDaxD1!QBQ6@*ODh/pB B JzD1KaB@B HxD!Q8FBF@&  iF FHxD 5@F?F ,K{D^hqBuBB   =FKB{Da@IB 8E@	E (F@EF@>MN}D~Dhh /EBH@B (Fl `EF@ރCѰ0BҹK 	{Dh/KB IBE
@FJ0EDHFCHxDp?m/FM}D(Fd8F1F  -F(Fq Zz WBT(B@NO 	MI}DyD1:!B!i-iBґHxDaI@sHyDxD
haqBb "Бb 2(1 *``1F(hshXh vE9E
эBӵB	zH^`)FxDh-vIyDDisB 8ah + hB HE@Zh`_`XB  FvD ZB 
3B Dt`	ZJzDha@`@Z`VL|DaiBѢhca`@Y`PQh-@!O/ 򘀕h(hEE$iBłhB@B	@M!}D,h$)`AE	;L|D$iB𱂌hB@``     z  /{  l  <    Qy  $      ^  @  ־      v  `  L  Ҽ  B    ʻ    4  F    ƺ      p  t  V            D      ܸ  ڸ        H  6  4      P  :  hiBЗh$iBhB 5``"|xDٺQi9i GFLi ,i ,LDGE<` -48DL	|DT)pBD)1$tD?iB!eh%a`$iB,iB)aia )aiB
aaTiBLaabD`DUh@P%T`Y`)H%xD h(2L`Fh iBӓ````l
'б?#ҡw:U,DB77 G !JO $zDa\aLWhaLB%0W` )R% L  *FTh$BI ,R$P -ѸHxDiqE?B$0a``HhxD iBB```` "aH)FxD  '/
JB1F
|E8F(DPF
r! a&qБ8[E~`ӨE BPqh! p`k`(؃I&yD 
h(3LF
`h	iBzHxDy````s
'б?#ҡw>QD@6 6" F !aKO  {DahaL_h(aLC.P_`)S.0H   3F^h&EI 0S ` .KJzDiqEC Pa``
EIhyDiBӂBӝ```` #a?K{DhB0i`2a@S`Dt`6 &!`5IyD!?pp:hB?ԨոhB?12*N~D@!O6bKBgO	h?hHxDHxDhB?ȭq" %0FXo    ҵ    V  ƴ  n  T  2      l        j  <    k   k  -A(F&s3B@   BFo?B7%`
)(O F %w<HxD1t'B@ pH (rB<@W<a )W\R  ah @Na`Xh@Y`W< @AG<AhAC`H)FxD%Fkh# BLNk`B H`Xh@ X`
HxD	J5zDpb(F  l  *     F ( sxD1T}D.iB6 p (W ( )! Wdp1 F1F4 (@!B
DhiB /'ؠh(h`EаBhB@
B
L%xDh!`vaEбBhB@``jhiBХhBhB ``xDai9!i eFOi /i /ѵB/` (<iML}DU,pBE,)M}D-iB!hh i`"-iBiBaAa )a iBaa`ipBHaa	Yh (Ѫ`!Y`,BnYh@j@ƀHxDiBhaCi`BBa`Ea`HxDiB@X !2SEiBуhDa`Ba`PG!.)؝h (7hB iBOhB@KB	ѳK!{Dh `rB	ЮHxD iB:hB@6``chiBОh iB9hB )3``Yi 1i 1h0FOi /i /іN~D6iB` -4iHLxDP,pB@,)N~D6iB !Ch#A` iB(iB)aia )ia Baa[i#BKaazHBPxDc`AiBт`! PX`Bc`(pI%yD 
h(3BCF`h	iB````
'б?#ҡu/SD@7 7" G !PK%  a{D`aL^h a7B>CC%@^` )S%0H   +FXh EI (S P -;JzDiaE?RC @a``5IhyDiBEBB```` #a.HxDjJbZ*H!F*JxDzDuJ`(IyD1p@#HxD"HxDhB?HxDHxDhB?Ԯ   د  @  g      *        0                p  [  4d  L  d  d  c  c  8
FFpE  C FBO4 F FF8P !"F(F8  FF F@A%`%!"H
)xD%%!)F"8FFHxD1 p ( %  pF
5 FF (V!""1FB("F0F(F    (F_pP +  +""pG  pG0o   "D=!F HxDhG  % 3OR 
F !F*F    !  >  FHF)FxDF"F.Y  K{DhBHhpG1
h *FpG  F!FF(`O0pF
L|D h  `M}D,h0F C
аB#`O0p(` Fp    F`O0KJ{DIFXðHyD+hxD.FA|FP9FjF t( 	Oq"F (O5 FO5A(F2hBtC8  |I  nY  KJ{DHŰXxDI#hyD&FC?FO $D !Or 5 !p9F
 )(4Oq*F ((Fc $C F3hB.E𽼇  |Y  H  X  d(  3^69<a^CTccc>@CQ33FIKaTNaaQQTWY[^accpe OTqOztn@4kd$i$gOtdO4ao D^$\O DYo@DVOdSOtP$N$LO TIO dF $D$LB  !L?O47HxD*FN $~D|+01F
 |((F" ($"HxDHxDF
&!`O4c$4(F Fp 
 W  W  W  W  8Fxr*w*a*Ob!`  8 " FOr$ ]xb-3 3x+-3$ xb-3xx-3Bxe+B ""C
`8
KJ{D-A &XFhgh0 +(FGCT5?$h ,0F @  F N
F (F~D !9`iF D (p@ QKBS:`O`(` O)`d	Hj3XBO `O`O `   MF
}DiF F8F[XNC "`"a`a
K8XUP aga`F `0 TF
C   *K+J{DFXhbP	!`@@O0
#kh@@B k "` i !a`,$ `B#i F~ bi  `SBaai F`    p   p
p/  `i -p   p
p/  `a p   p
p/  `Y p   p
p/  `Q p   p
p/  `I p   p
p/  `A p   p
p/  `9 }p   p
p/  `1 p   p
p/  `) p   p
p/  `!   B   p
p/  ` Cp   p
p/  ` ~p   p
p/  ` p   p
p/  `  p   p
p/  `
   p   p/0  p   p/ p   p/ɲFBF	 , Fx3BH !xDHR  FBH !xD;R    Q@- @  0` S  : @
  Q  * a  R   @- p `P @P  
X p`  PD0   Q  @,  @(0 @                iF 
J+ZC*B
  MbP?@B   !FhF ( O0 `K{D`   0FLFM|DdY$hh9` )ژiBѲ
)hв+`0FF0@ `0@&n    pGOAp %"  	Tk1F"F 
HxD p@pG-OF<M}88FyDX=h˕F((Xh
O 	OFFxDyD	 hgYhB6`h73#`Aa``h (#h
h  Ax_ * F% (%)]ZFFO
 ZF;g+-e+G+ 9+
0+%+E*+\ + D+  E+@X+ L+QO+@~c+ ̀ [+@p+ Ȁj+;h+Ki+@n+ fl+@It+Sq+Ms+@fx+_z+Ku+@V`h (#h E@I F (:bhY7!`P``RFfFRxd*#i*o*u*x*#CwSxh+FFmSxl+FdFaFv^F@[80VFF fO	F fFFK##Sx^+2O x2O !( 1F ;" F
F ZF-)])Б ](ИB3jF(BFF v#JF v #FFII O	>q?-h/pr+heF q  	 0-h/`h`*h`h ) ~ FtyHxFO 	O
	#ah )ݲ% F (R`h7Bb` *1!` F (@B!h
x hPx _ *;+5    Os &ch!hCE
 F#` ( .@ FD``"`(h!BF#F.  ( 

5F O8vah62"`HE``b ( F\[ &"h
 0 + .P.h+D5FahH``˨E"`bh * F8Bѽ"h
   (Ѯ  !

)pF# O8pah62"`HE`` ( F
 &"hhxYHx _ +п.hD5FbhP``;;E!`ah ) FP!hhxZx ò + "*p

eFw1@JB(FJF6Z h8x9+	8+(0+++--+Y*X+/أA)Qa+Nf+x+J" F FO	&6'	1&PF!1
.+&VF V1$ _JOOaDE& FO	<FchYa` )0 ` F_ 2Yq	JE@!F 7x(X(!F8 +l@À a JaFJF qJF   2 -h r  *h*hu1p`1@JB(F1F62 h8x9+0+-+.+++3E+e+.&F_'&V O!&F<?&8HF<Fch;c` +0 ` F29s#J!F8 ECF;3e(E(!F !F Faш J*hA0  { z

eFJGD O:h* FO:PF˚hB
M} ~  |
X  X  x8FiF` 

#iC F% 	%`
 h!ibi@B FO5"h0hY`[ci"`BС
- F ((F8    K-O-FJ{DFXKFhF;Fexв (ѻ-O
+F?F . .
9xx)X)@&73+5444444444)  @OO2o`CH& @OO2opC<
& @OO2pK1 @OO2oxC& ПbcQ2F+F F+FQF2F @FF и   !C    $ %0	)؋F	hYDWW!7!ENAIк !ДBu۝BB
E $O E"#`O0!aCEMeu#Bs۝BBEO4o E""`O0aCEeDEu q9 'O  "O`CO  "OpCo #yO  "OxCsO0 .?(0 0* F)F        4333333u  x iK-OFhJ{DFXKFhF3Fexв (Ѽ-O+F6F / /ѕ1xx)X)@'6
/)//
"O:opK#'"O:o`K:FO0O1+F B:F+FFFO0O1 8"O: ! $ %0	+؜F
h Cx0W 7 E'K"ЫEE]ETEєEO4""O1O5`cC0EEEu! )dBeE	9 O0 /t0xd0?a
' F)FVs  x !
"S @pG  KEAJ{DXjF#h	 a	"h 8  B5
 |q  |FF  !"FH HAMVS *iЁBg.A Ё *  F #\T3B	 #,FXP3<ѫ > $]U4BA Ё *  FcdB 	\T3Ҕ

FF#FV};E}ocC
SRB T38FCh  h)FAh C
 h(```  8 (hchBY`a`88FAx &F8 !`A``   F8OABн@  8 F F(FF FD(F88FXP[ F(F8@x#`O08  pFFmhHxDK{DBjHxD j1F"F 0
 $h +
H$xDIhF` Fp ΅        оh;` +ڊiBò
+
h
`pG7  K
J{DpFXFhFF0F!F)hF F0Fp n  
 -p p    
p/  `:	 p   p
p/  `2	 p   p
p/  `*	 p   p
p/  `"	 Np   p
p/  `	 P-C   P
p/  `	 ꃉ		)  pG  -OFkNFFSC~DFFF ƀgH7X9h Fnbh * #c` 
 * k +@\IrXh  `` :8h (  FO0 c:hA@ F>L	#`
Z F$ 禉`&aࠉ@&k0h@@B#k "`5HoCAoQBxD	& @	+ FFFcjIF2FiG! \F (C C@6D8h (2 F.ZFD2#h  ` FC`=h F QF FFFHF!h^E2F`h"ha`&`FO5(Fm  -GCSNFF~D QKXh	OJXhF F@ P FO5{
R Fg (Ѧ`&a@&k0h (=whahB1@BO` (0`Ocs`BA #@ 0 `OG	IFF ( 
1F:FPF k @#hY!`\bhPࢉ i" H#hBB;#` h@bh!c c"F3`q`B_"```   F (F k  S @pG  6p   p
p/  `5  Q/#  : P     
?o/o C02   P @  ! P @  !!P!@ #!!P@ !!  P#2! /   //o b0/  P  t    Q
@-@ A/  Q0  
  aB Q  
 0 0`B S      
/oo  B     S0C  ! S0C  !!S!1C "!S1C !  S""!  \  `B/  <  `B/  3 //o b  \3  `B/  P5    Q
@-@ A/ 0R b0AQQAQ/ 0R bAQ0A/  S  R    Q  P      M `-  Ѝ /  S  R    Q  P     M `-  Ѝ /@- @-` @Ppc 7' 0 T0 @-` @Ppv &q'0 T0  011 /O-  Q `  
A p	@O@Q  T   
00 V0  * T  
D @  V  pP   P    V: <0 P0  
 P  
  P            /  /f   0@-  @   H   
s    m  0    p  0   o  0 #@ 07@-0  @PA   R  
    0  P0
  
     0`10  PP  P	   0 SH  0 0  
  S L 0  r 0L L P0 0  S  S  P 	     c   >e   0  S 0 /	 //G- @p MM `        H  W
p	p PPp@0
  H0	-00 /3/2 L0 @ 08/  P    U   	-p Y
 Y   H  	P Ѝۍp@- P@ @c `P   
@0  003/ P
 P @  D /<0@-@0 P@M 	m        0@2& @8  P
  0
 3/ P p

  W   	 ߍ < @   jp@- P`@0  V@0  
 `  0  3/ P  
 P     @Q ]  q   R   < @   D/@- 0  S 3/  Q  
 Q  / R  S!  00     /@-  0 00 Ѝ   Q  
 Q  / R  S!   00   /@-0  #  00Ѝ O-`LP$M S@p   P  $0 0	   Z  "80( s0  Q WP8P      ZH 0P0P     0  0  R      P  # 300 S  
  : S  L    W      P  
 8 P     P  
  5  P    W    P2  
  q  
 qX  	  
 /0     P!  
    
e X 0$   , =  ;   
 Y  X  (0 U      i   e q  PQ     W$    PB  
0  X0  S  <  00W  0      P  
-  X00 \ 
#0  $0(P F   0 
 0 0  S  (0 U   0(000,40 0	 S	        	 0  SPQ        X; Z      Y   
      P      0  	 $Ѝ`  00 0<0p@-@0 P`M \        0X0
   P  
	@  X 
 X 5/  P 
X 03/	 P P @X c ߍpE- @gMP Q                 S  r8  0`` S
8   
    R   S%huP   R  S q V 
     X   RB pp S  X   V       
 S H              W  
 0   
 00    Z  
    W     V      W  
   Pf8   U0  P1    cQ*1  W  
 V ! 3f∀  @    R0  Z0  Z80  
K  B   V  J    W<  
 J  9   S5  "hrP0 S0   0   
01Q   PN   a80    f  0S*Q 8P.     R  S   0   
002K  
 I  8  0 0 S8 
 8          gߍ48 8 - !/!/ / / / /!1AQaq/!1AQaq/// -- 0 -@HЍ/ -- 0 -;@HЍ/ -- 0 -P@HЍ/ -- 0 -0"@HЍ/ -- 0 - @HЍ/  0  R	  	   R
  
 B	        B   "$  / /@- 0  00. Ѝ G- P` p  P @    W  @0 @   @  0+  q  Q   @@0  
 y0t@  Ti	 !  0  S   D  	P  	    *  0 "(]  P	p S  
0 
 S
    0   
 0 S
  @     Z"t@.  T) 
   S<   P   r  P
 0o   P   
 0  @ `    @Z0  ?    P   L0   0   0  S@ @   ' ' S2   P   30   0 & P   (  P
0~ %  0  S  @   
( P        0   Pg 0   0 &  0  S[@   '0  PR  Ѝ@-L0  $     0
0Ѝ @-H @-L0  @-@-O- Q p P    p  P p  \    r 0P  \
@`   Z0  ?o  SC  c7"c$xt  )8
8  S `!  *0`@  * S`@200by
 
   Y !  *@@  * T@2Ȍ    Z    @?o  Sd `2  
C c87$ 
tp `
(88  S !  *0@  * S@200`b
x  0
 0v 0  Q `!  *`@  * Q`@20gh$ t
 p
_)88  S p!  *0p@  * Sp@200b
y x 0
 0I 0  Y !  *@@  * T@2Ȍa   \]  o  Y   X
 W `3`##	`!U  *S   i:A8!I7 $ t`L  0 0 0(  Q 0!  *0@  * Q0@20bx 3     0  Q !  *@  * Q@20`fȌ,*(


    (" 8 ( R   ``	S ``  V  
L `   `  U 0  
  r 0 ЍO-  S `@ p   R0  ?o  SC  c0"s$Xt`
 
 '88  S !  *0@  * S@200bwp
 
 	x  W 0!  *@0@  * T0@2    R    @?o  S`d P0  
C c6s8$c	 t	 P{&88  S !  *0@  * S@200Pbv`  f 

 Q P!  *P@  *
 QP@20`j	X$ t~ P'8	8  S `!  *0`@  * S`@200bwp	 i	 ;x 

 W 0!  *@0@  *
 T0@2^   SZ  o  W   Q P P3P# #P!R  *P   gW2A6G0g $t
@  
  &ȠȌ  \ !  *@  * \@20c
v` (  
   		 Q 0!  *0@  *	 Q0@20i %(X("8,(	 R   PPS PP  U  
 @ P   P ЍxGFxGF| xGFxGF
xGF           Android    +x++  ,  H.  P..P//01X114  4   5
h5t55  D6  P6d6  t666 787l7777p8099:.::
LB  TBBCC   CC  C   D  pE EEEFJKK<LHM  XMOOP  Q(QXQtQtQQtWWx  diijkd  k l`  lllmmDo|oo|pqqrssdtLu    ܊<|    Ќ0thH  T  `  l  x4d|Е D  40  HD؝T̻  ,D\??x@th  d  <8X  LDL  H  L  	0  .t 4T  0     ,x  4Px  h $8H% D  L   @`\0  8  L   L$  L   /                                                                                                                                                                                             ?&_                        %.*s%s%d%s %.*s%s%s ro.build.fingerprint /system/build.prop f:p:rn usage: add-property-tag [flags] tag-to-add
flags: -f /dir/file.prop (default /system/build.prop)
       -p prop.name (default ro.build.fingerprint)
       -r (if set, remove the tag rather than adding it)
       -n (if set, add and increment a number after the tag)
 r can't read %s: %s
 %s.tmp w can't write %s: %s
 property %s not found in %s
 can't rename %s to %s: %s
 stack corruption detected <unknown> /dev/log/main (null) bionic/libc/bionic/libc_logging.cpp conversion specifier unsupported sign/precision unsupported /dev/log/events libc FORTIFY_SOURCE: %s. Calling abort(). %s Unknown error %d Unknown Real-time %s signal %d Success Operation not permitted No such file or directory No such process Interrupted system call I/O error No such device or address Argument list too long Exec format error Bad file number No child processes Try again Out of memory Permission denied Bad address Block device required Device or resource busy File exists Cross-device link No such device Not a directory Is a directory Invalid argument File table overflow Too many open files Not a typewriter Text file busy File too large No space left on device Illegal seek Read-only file system Too many links Broken pipe Math argument out of domain of func Math result not representable Resource deadlock would occur File name too long No record locks available Function not implemented Directory not empty Too many symbolic links encountered No message of desired type Identifier removed Channel number out of range Level 2 not synchronized Level 3 halted Level 3 reset Link number out of range Protocol driver not attached No CSI structure available Level 2 halted Invalid exchange Invalid request descriptor Exchange full No anode Invalid request code Invalid slot Bad font file format Device not a stream No data available Timer expired Out of streams resources Machine is not on the network Package not installed Object is remote Link has been severed Advertise error Srmount error Communication error on send Protocol error Multihop attempted RFS specific error Not a data message Value too large for defined data type Name not unique on network File descriptor in bad state Remote address changed Can not access a needed shared library Accessing a corrupted shared library .lib section in a.out corrupted Attempting to link in too many shared libraries Cannot exec a shared library directly Illegal byte sequence Interrupted system call should be restarted Streams pipe error Too many users Socket operation on non-socket Destination address required Message too long Protocol wrong type for socket Protocol not available Protocol not supported Socket type not supported Operation not supported on transport endpoint Protocol family not supported Address family not supported by protocol Address already in use Cannot assign requested address Network is down Network is unreachable Network dropped connection because of reset Software caused connection abort Connection reset by peer No buffer space available Transport endpoint is already connected Transport endpoint is not connected Cannot send after transport endpoint shutdown Too many references: cannot splice Connection timed out Connection refused Host is down No route to host Operation already in progress Operation now in progress Stale NFS file handle Structure needs cleaning Not a XENIX named type file No XENIX semaphores available Is a named type file Remote I/O error Quota exceeded No medium found Wrong medium type Operation Canceled Required key not available Key has expired Key has been revoked Key was rejected by service Owner died State not recoverable Hangup Interrupt Quit Illegal instruction Trap Aborted Bus error Floating point exception Killed User signal 1 Segmentation fault User signal 2 Alarm clock Terminated Stack fault Child exited Continue Stopped (signal) Stopped Stopped (tty input) Stopped (tty output) Urgent I/O condition CPU time limit exceeded File size limit exceeded Virtual timer expired Profiling timer expired Window size changed I/O possible Power failure Bad system call - -- -W   POSIXLY_CORRECT 0123456789ABCDEF 0123456789abcdef Inf NaN 0 . inf inity nan Infinity %s:  :  %s
 ANDROID_PROPERTY_WORKSPACE heap corruption detected by %s libc_malloc invalid address or address of corrupt block %p passed to %s max system bytes = %10lu
 system bytes     = %10lu
 in use bytes     = %10lu
 %s:%d: assertion "%s" failed %s:%d: %s: assertion "%s" failed /proc/meminfo /proc/stat cpu%u%c /sys/devices/system/cpu MemTotal: %ld kB MemFree: %ld kB read beyond buffer strlen read overflow option requires an argument -- %c option `%s%s' requires an argument option `%s%.*s' is ambiguous unrecognized option `%s%s' illegal option -- %c invalid option -- %c option `%s%.*s' doesn't allow an argument                 0000000000000000          (((((                  AAAAAABBBBBB                                       ?      $@      Y@     @@     @     j@    .A    cA    חA    eA    _B   vH7B   mB  @0B  ļB  4&kC 7yAC ؅W4vC NgmC =`XC@xDPKDMD      }       ؗҜ<3#I9=D2[%Cod(
 7yACnF?O8M20HwZ<sOu          	 
   
                     ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ a b c d e f g h i j k l m n o p q r s t u v w x y z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                                                                                                                                   	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~  libc    pthread_create sched_setscheduler call failed: %s   pthread_create failed: couldn't allocate thread pthread_create failed: couldn't allocate %zd-byte stack: %s pthread_create failed: couldn't mprotect PROT_NONE %zd-byte stack guard region: %s  pthread_create failed: clone failed: %s dlfree tmalloc_small tmalloc_large dlmalloc try_realloc_chunk dispose_chunk add_segment prepend_alloc release_unused_segments 
         	 
   
           zR |
       ,"          ,    "    D   D   #    A     \   #$    F     t   #             #d    F        #    B       zR |
          |!          4   T"    B  ;	   <!D!P!<""4"L#d #x#                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Vb    ^b    vb    b    b    b    b    b    b 	   c 
   c    (c    2c 
   @c    Rc    ^c    tc    c    c    c    c    c    c    c    c    d    "d    1d    @d    Xd    ed    {d     d !   d "   d #   d $   d %   	e &   #e '   <e (   Pe *   te +   e ,   e -   e .   e /   e 0   e 1   
f 2   *f 3   Ef 4   Tf 5   ef 6   f 7   f 8   f 9   f ;   f <   f =   f >   f ?   g @   g A   9g B   Og C   `g D   vg E   g F   g G   g H   g I   g J   g K   g L   h M   9h N   Vh O   mh P   h Q   h R   h S   	i T   /i U   Ei V   qi W   i X   i Y   i Z   i [   i \   i ]   j ^   -j _   Gj `   uj a   j b   j c   j d   j e   k f   k g   Fk h   gk i   k j   k k   k l   k m   l n   7l o   Ll p   _l q   ll r   }l s   l t   l u   l v   l w    m x   m y   3m z   Dm {   Sm |   cm }   um ~   m    m    m    m    m    m               e                  I   y                                            т   ̱ $  X  H     T       	  (            ȱ 0 , %     LC DC <C     |] V                    ?         o memcpy buffer overflow memset buffer overflow                                  X 	        h                                                            	        x                                             
                	                                                                  @               @               @  \    X \    r t /dev/__properties__                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @     GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"add-property-tag    _e .shstrtab .text .note.android.ident .ARM.exidx .ARM.extab .rodata .eh_frame .eh_frame_hdr .data.rel.ro.local .preinit_array .init_array .fini_array .data.rel.ro .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                                                  V                     %     p   V                  0         |] |                   ;         _                    C         y                    M         z   T                  [          
                  n                             }                                                                                                      \ \                                                          ı ! p                       0       !                                !                        p        ! 6                                &"                                 >"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             y    ELF          (    @Y  4       4    (      4   4   4                  4  4  4                             4g 4g          k { { T  Y           y ̉ ̉             Qtd                             p   0  0        Rtdk { { $  $        /system/bin/linker                                
                       &              =    Z        D   `Z        K   Z        S   Z        [              c              j              o              v              }                                                                                                                                                                                                                                         $             *             2             8             @             M             T             [             i             v                                                                                                                                                                                                                                                                                                                                     !             (             6             F             S             Z             b             i             r             y                                                                                                                                                                                                                                                                                 '             -             >             E             K  I      U             \             c             j             r                                         M                                                        6                                                                                                             
                                        '             3             ?             D             K             R             X             ^             h             o             x                                                                                                                                                                                                                                                                                 %             +             3             7             ;             ?             C             H             P             W             ^             b             m             r        z                                                                                                                                                                                                                                                                     '             1             8             @             K             S             b             i             p             w                                                                                                                                                                                      
                          #             -             9             C             J             Q             Z             c             p             x                                                                                                                                                                                                                                                        #             +             9             C             J             R             W             ^             e             l             t             |                                         e (                                               D                                                                                    	             	             	             	             (	             /	             >	             M	             W	             a	             n	             w	             	             	             	             	             	             	             	             	             	             	             	             	             	             	             	             	             
             
             
             
             '
             1
             9
             A
             N
             V
             ^
             d
             u
             |
             
             
        
             
             
             
             
        
        
        
             
             
             
                                                    .             C             J  0      Q  0      ]  5       __libc_init __cxa_atexit __set_errno __aeabi_unwind_cpp_pr0 getsid swapon swapoff sysinfo strrchr strcmp stat unlink isatty utimes strlen free optind __aeabi_uidivmod __aeabi_unwind_cpp_pr1 __stack_chk_fail __stack_chk_guard __aeabi_idiv memset __errno lstat memcpy strcpy printf close __sF mkdir fprintf fstat memmove __strlen_chk memcmp fclose __sprintf_chk __memset_chk bsd_signal fork execlp _exit strncpy fnmatch getuid putenv dirname fgets lseek getopt open puts optarg link symlink mknod getpwnam getgrnam chown chmod execl read longjmp setjmp __aeabi_uidiv __aeabi_idivmod __aeabi_llsl malloc strncmp sscanf strtoull strstr strtoul localtime_r wait ioctl fputs alarm scanf time localtime strftime __swbuf strchr lchown strsep qsort strspn __memcpy_chk strptime __aeabi_ul2d __aeabi_d2ulz ftruncate fsync __aeabi_uldivmod getenv fopen getmntent statfs fileno fchmod __srget __isthreaded readdir closedir clearenv environ strtoll __aeabi_ldivmod regexec regfree strcspn fwrite getgrouplist getgroups getegid getgid geteuid rename ctime __strchr_chk access getpriority setpriority dup2 strtol strtod fcntl rmdir nanosleep memchr getgrgid getpwuid vsnprintf sync sleep setbuf uname usleep fflush umask ferror clearerr fdatasync mktemp mkdtemp mkstemp __umask_chk mktime __aeabi_d2lz __aeabi_l2d snprintf strpbrk popen lrand48 cos exp log sin sqrt srand48 system pclose pow strcasecmp exit regcomp atan2 strncasecmp sprintf fread strerror fseeko fdopen __strcpy_chk write creat atoi ungetc strcat fchown __vsprintf_chk __strcat_chk memrchr siglongjmp kill __snprintf_chk sigsetjmp getpid opendir strcasestr sysconf android_reboot perror opterr strdup bsearch sigaction initgroups freopen execvp getopt_long unlockpt ptsname_r __get_h_errno hstrerror inet_aton gethostbyname inet_ntoa gethostbyaddr getaddrinfo freeaddrinfo inet_ntop getnameinfo vasprintf syslog strtok unsetenv __open_2 __aeabi_llsr getline __strrchr_chk __page_size poll execv chdir sigprocmask sigsuspend raise syscall setsockopt sendto sendmsg recvmsg __memmove_chk realloc dup setsid getsockname getpeername connect getservbyname inet_pton socket waitpid pipe setenv setgid setuid setegid seteuid chroot bind listen ttyname_r getcwd readlink realpath regerror openlog setpgrp mmap sched_yield sched_getaffinity sched_setaffinity wait3 getppid init_module delete_module munmap if_indextoname if_nametoindex getrlimit setrlimit gettimeofday recvfrom setgroups select accept recv fscanf shutdown getservbyport settimeofday feof tcsetpgrp daemon execle __res_get_state res_init div pause execve strsignal vprintf times vfprintf tcgetpgrp getpgrp setpgid __aeabi_lasr klogctl lseek64 flock getopt_long_only ftello mount inet_addr bindresvport umount umount2 strnlen ttyname getusershell setusershell endusershell strtok_r abort _ctype_ _tolower_tab_ gethostname strerror_r pthread_mutex_lock pthread_mutex_unlock calloc _edata __bss_start _end libc.so libcutils.so libm.so libstdc++.so   J                    t   9           (   ?          4                                         6          .          M      Z      D          @  8      H      R   $        ;                  '                          x               E   y   G           !   .         /       7        2        +  ^      8      &  J                                              B  
                             f   F     K      A               1          >                          }     ;                    C     L       )                        '                               A  #   	        =              l          -     #                                     0       5            ?  P   |   :  6  3  \   *                  V              Q   %  q   7      H      O   ,     <                 _             E               a        *  I             "        <                                                                                                                                                                                            
                                                                  4       1                                                                     >                                              =                                     @                  C                  D   d       
       -   k           s                   T               h                   ]               	           b       W                                   u       5   N       S   z              o                   [   $              i               Y           U         &                                                B                  3                                 /          :                             `   )                       r                       ~                        %                 g                                {      2                     j                                I                   G   ,        
       m              "      9                                       n   c   v   +   p   e   !  0                          X         F                      (  w       {    {    {    {    {    {    {    {    {     |    |    |    |    |    |    |     |    $|    (|    ,|    0|    4|    8|    @|    H|    P|    X|    `|    h|    p|    x|    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |     }    }    }    }     }    (}    0}    8}    @}    H}    P}    X}    \}    h}    p}    x}    }    }    }    }    }    }    }    }    }    }    }    }    }    }    }    }     ~    ~    ~    ~    ~    ~    ~     ~    $~    (~    ,~    0~    4~    8~    <~    D~    L~    T~    \~    d~    l~    t~    |~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~                    $    4    8    D    H    T    X    \    `    l    |                                                                                  $    8    <    X    \    l    p                                                            Ā    Ȁ    ̀    Ѐ    Ԁ    ؀    ܀                                                                          $    (    ,    0    4    8    <    @    P    T    X    \    `    d    h    l    p    t    x    |                                                                        ā    ȁ    ́    Ё    ԁ    ؁    ܁                                                                          $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                                                        Ă    Ȃ    ̂    Ђ    Ԃ    ؂    ܂                                                                          $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    p    x                                        ȃ    Ѓ    ԃ    ؃    ܃                                                                          $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                                                    Ą    Ȅ    ̄    Є    Ԅ    ؄    ܄                                                                          $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                                ą    ȅ    ̅    Ѕ    ԅ    ؅    ܅                                                                          $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                                                        Ć    Ȇ    ̆    І    Ԇ    ؆    ܆                                                                          $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                                                        ć    ȇ    ̇    Ї    ԇ    ؇    ܇                                                                          $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                                                        Ĉ    Ȉ    ̈    Ј    Ԉ    ؈    ܈                                                             (    ,    0    4    8    <    D    P    T    \    h    t                                                        ̊    Њ    Ԋ    ؊                $    (    ,    4    @    D    H    L    P    T    X                     $    (    ,       ܊             6   7   8   <  0 I   V   h    l            8 @ < A h   l   p 	  t 
  x   |    
                                                 !  ċ "  ȋ #  ̋ $  Ћ %  ԋ &  ؋ '  ܋ (   )   *   +   ,   -   .   /   0    1   2   3   4   5   7   8   9    :  $ ;  ( <  , =  0 >  4 ?  8 @  < A  @ B  D C  H D  L E  P F  T G  X H  \ I  ` J  d K  h L  l M  p N  t O  x P  | Q   R   S   T   U   W   X   Y   Z   [   \   ]   ^   _   a   b   d   `  Č e  Ȍ f  ̌ g  Ќ i  Ԍ j  ، m  ܌ n   q   r   s   t   u   v   w   V    x   y   z   {   |   }   ~         $   (   ,   0   4   8   <   @   D   H   L   P   T   X   \   `   d   h   l   p   t   x   |                                                      č   ȍ   ̍   Ѝ   ԍ   ؍   ܍                                                        $   (   ,   0   4   8   <   @   D   H   L   P   T   X   \   `   d   h   l   p   t   x   |                                                      Ď   Ȏ   ̎   Ў   Ԏ   ؎   ܎                                               	 $ 
 (  ,  0 
 4  8  <  @  D  H  L  P  T  X  \  `  d  h  l  p  t  x  |       "  #  $  %  &  '  (  )  *  +  ,  -  .  /  0  1 ď 2 ȏ 3 ̏ 4 Џ 5 ԏ 7 ؏ 8 ܏ 9  :  >  ?  B  C  D  E  F -?  Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ| Əsʌt Əsʌl Əsʌd Əsʌ\ ƏsʌT ƏsʌL ƏsʌD Əsʌ< Əsʌ4 Əsʌ, Əsʌ$ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ| Əsʌt Əsʌl Əsʌd Əsʌ\ ƏsʌT ƏsʌL ƏsʌD Əsʌ< Əsʌ4 Əsʌ, Əsʌ$ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ| Əsʌt Əsʌl Əsʌd Əsʌ\ ƏsʌT ƏsʌL ƏsʌD Əsʌ< Əsʌ4 Əsʌ, Əsʌ$ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ| Əsʌt Əsʌl Əsʌd Əsʌ\ ƏsʌT ƏsʌL ƏsʌD Əsʌ< Əsʌ4 Əsʌ, Əsʌ$ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ| Əsʌt Əsʌl Əsʌd Əsʌ\ ƏsʌT ƏsʌL ƏsʌD Əsʌ< Əsʌ4 Əsʌ, Əsʌ$ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ| Əsʌt Əsʌl Əsʌd Əsʌ\ ƏsʌT ƏsʌL ƏsʌD Əsʌ< Əsʌ4 Əsʌ, Əsʌ$ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ| Əsʌt Əsʌl Əsʌd Əsʌ\ ƏsʌT ƏsʌL ƏsʌD Əsʌ< Əsʌ4 Əsʌ, Əsʌ$ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ| Əsʌt Əsʌl Əsʌd Əsʌ\ ƏsʌT ƏsʌL ƏsʌD Əsʌ< Əsʌ4 Əsʌ, Əsʌ$ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ| Əsʌt Əsʌl Əsʌd Əsʌ\ ƏsʌT ƏsʌL ƏsʌD Əsʌ< Əsʌ4 Əsʌ, Əsʌ$ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ Əsʌ     H-MP00L   D   <      K   0 0s2 ptx| H-M   00 g 0 K T6              -|p      /Qc   -p      /Qc   -p      /Qc   -Wp      /Qc   -sp      /Qc   -tp      /Qc  pF.!F`F001F` pF  %(Fp !"$ !" !"R.!FBFбNG~D8Fq>(p8F1F8h F).!F*a#r!ppF  $ F B  !"	 !"	»FH
FFxD)1  -O &졩DDFDWL  , Ѐ#x-+@ŀ`x ( Ȁ FF F& F)F*F) ()F! F
 ( !)F  !
k (@ $  !Ѐ@XH! "xD) (!)) FGF(OH!FxD( !(F) (N!) %F 0 @HxD(?HxDh *
	
	!	GF6 (&  !  ( L3HxDh ) 
A(F #pB(Fr."*T(F  F) &B(Fj &W(JzDh 7h +6 )IyD
h *:L 0 +YP)b $& %0F) = = = B &  < X< ; ; pFF
I
MyD"
	K}D	JXzD	Kh{D IyDp@ھ" -  pFFIMyD!K}DJXzDhh Yxc)K{DhB AA`	I #	JyDzDp@ ߽ j- : ; 7pFFIMyD!K}DJXzDhh xc)K{DhB`	I
J
KyDzD{Dp@v - : : w=R pFFIMyD!~K}D{Dhxm*0	<c*
HxDhC`JIXyDJhzD 
K{Dp@;  , (: ::  pFFIMyD!BK}D{Dhx"0	c*
HxDhC`JIXyDJhzD 	K{Dp@  ", 9 9 Wo 0   $
Y;YQQ4 +0-Ot=F "
lsFFF@AP2B !P1S%pxC% B !_X[|1hFoL pheFWhBB "	pS' AC'D! 2BJ	  FF p0B "'X2ioV!PE  F! ! #X BV" @F"P3B @+V"  F"P!
 " FY V!
BT#
FDD3K, B "O0		"YEiV!   + 1UV%03Z ! EV%0BMBe"CMV%   + 5QV!0 +Q  i V!0BE	B0B	{O "w 3wW#pP#P	)>ܯB )+Q[(F2LB\[) E:;D"BkQZ[(F2LB[) E:;D"BڮASAK!ZFT' )yKT# T% [  xF
FF #3BPPE
X[!  (T( PD(
:RE FR
[!  *T) P`D)	9ڌ 9FBF F
	 FBF2 
 *23E
wA 0C, wB,P@% @,pwG,0 / O<'hR[[%E]  V% @ FF% 3Bd
M 
B (:3ۭU# )HE# T"P20 # FB

:XP
`-Eg
]}
 m-C\T\B  UlxE xE лxE е,yE ЯlyE ЩyE УyE Н,zE ЗvzlzBЦB]T
zE ЉzzB Є 1]P\B z3`3 B sfH E j3`3 B c E Z3`3 B S E J3`3 B C& E :3`3 BІB   fH E %3`3 B  E 3`3 B  E 3`3 BД   41  B(B(8=  i   !kBkF	m1jlV,`%eB!*h
*ЊBkjTkJckjTkJcjkTdkjTkJjcTkj2cTkj2cTkj3Akc9TkYc
lKjTllSdl
d;dl +pG0l$jTllkdl%d;dll+ mYdCd08FF!"(F!B(F!"(F!ⲽ8@ɿ  aKbJ{D-OŰX xj '+hDj CFGfh "EnihQAf3CEGn %)F 5hEE #[U3B #FFQ[%`>H  	hxNE1?9^C
O 	#*0lr3F7lr*03Fhr7hr6)9IxFVxofFEщ N$`3P&py@& !5kB9ZC &O'FlR5lRSFhR5hR26)9I$3P(pz@( fC9hBjE# -OCjFd@e 	 #2G8uBsB "'n/ݷ
۷o	۷o%%%% %Op	 J.FO O1F8F $2 ! 2l2BFBEZEB.ЭK@ (8`X(T.0> #
CE
  BsE  t3B> .zI@	! 4	2	1F1erE7lB "&n #O~<FBQ1 'BbF 7BF
J0  D 0B	ID'1BݽL  !7EFF1B

	p 
13 
1W7T'1D'BUC "36
OwObBC1F # HP6A1V#p :Or 3MA B
MC  o` 2`" O7F$|A/3FD* ^I\IP 
 0T   MW$7T'pED* 2SBO 89F;:h 
 
IG	`M\`G B8IX T"	MXIY$	 T(	MXT"$T(EwFI^ T"$MY	$T"T(E IP 0D 8F   IW 78 D'`
IG oMY`B BE6I[ 
T*MZ
$IZ
 
T+T*
MZ
$
T*EbFI\ T+	$MZT+
$
T*E IP 0D F IR	 21D"`UV(6 URM^(2D& MV$6$ D"T& T `"
_&_
EF 4C		MF	UB O6`Fg:FD)`WI^IV 	 6T&`M\$
T*@ED)+? '#2 "FUV(6T& )0*ȿ'
 3 ,Bݧ"	2	MF0pAKpBݞ
Erp 'F9F
D03B "D  #p3 pFBG2DB0B'F "OnO|71@NENFKEKFIEA
H  I 		 ! EH 10   PEI 3B2wB & #1F #Fl ht!Xp T A!XT C:CO 
O
3
F2F F!x7&F / "Fs1)h	B F6 FE F!*F & F!
F7	 '	HB0! FB "6B'FO 	A FO }!2F!! F6
FK 
B!"r>  FvE! "hE		wE %Ox"nB%1BVp	 F25	RA2	}T" 6BA -OMFLO
5|DO	!Dtؑ
2tةS"P"	Q",ݸ^`(R % 5W%@BFoV% y>F NE4WO<F7F
T
p'`TD
B; T
 
  
	m (6K'  u9h )5 E#h +		[,P[) ~e90[%`B7D FF#FBفB,FF	dF MFNF2OOB
h@\ ([$p`K$4>B 
Q	

\ )[% 
H`
K% =tث C$ h9BFXFaF_	BF9F	XF2vQ	gDj<	 cBFFFbFsFF(BۮF&FFFdFAFsFF @F	wEF/FFAFMFFFFrFF'@tF* D'PحD*E'
E*

F!D!0E!  	h>
``MBۇ=
m M M -OװFJFKFb !{D`X FO+hUa sFF %	7F'] : @!!T! 0D!  *a "
 	FP	P&2"*'h !F0Nh7DAњ P(`
E T pzD  K"0; + #
TF		]B03O	Os&sC[o AFXC F>O
]F%  %F
F
]G BN]G`'
6 tT&`7h6hwE ]W2,71H'*ݹ	 ']EPO,B%V,V@ F3h" # CBXF QFa  h +ڰ76aF #6'3yT' " FT!p' Q T,`& aV[#JDa HaQ,1X! K  0H! 3,X. BhcX# eSr
 P}
T{Da`pOeV,6X&pK'0?H&p:
,X.0B #"3T" @ D" "
T 		D(T,P "gX% '  2AOwBKCU#!)&a&; +U)hBlW~ BskFiBji "_qH#	!iC@9F F ) * i2Fai+FO3k` "W" `2B8Fk
F + mbmCm!e(sce !!d Fmbik) bm ""I FddYk (! FI F!S"Y" F! F!m F! " F!h F F} F
I F!P"s F!"n Fam F8@R80hZB&YA18Er-G$h % 'h+A0hiڱrl1lBڳjh\p3hqlHpdiQa0hhZ`1h#C#sl2lBqh)h(3k+|rk *y #O1c7dwd1e3hpѲm `Qeh+O	1hh +:аkkB6Ih3krk E*PٲjjQ*!1eh 2jTk0Xc*
+0F~04Ppc1hJhSK`0hhJ`ph(Ѓ3k+0FdqhOpwc
0cSB0FSkkB !0F `V +T-GO@^M']K{Dx}CFN'F  ` 'q"= a`ba 'h`a bO'b!a  Wc %" #`Fb`e "O7# Osec#cc%ded'eb`5hѡm WOJe  1FO R%6HxD9O Y  -   ch+ hF$hF!hh* k(&ck +#$ Z 9FRF PE ( %`HxDHxD$+O5, - (ѭal$lB$$ -  iR`iNiLjH FF0FB(F > f ޠ  KpFFFI{DJyDMzD` }D0F!Fp@NG#@p@cFY_JDzDIpyDU0
hh
J`
I 
KzDyD{Dp@  ~ w  h F y -O 'xH=FxDxxDDDDHLJDh[  !  ZF0hF3"x/*F x.(ax/)c K F{Dh~ 0  F$p@ O+S O " #O #I,F 
p ' h"F   PMFEE  FX0'!FF  @ @h"pjhhi`	-h
 " # #)Fh"NQL|D F4$(  
@I""@
C9KO1"O

O B
 !
	,0,? 	OD  		 X		2 FpA O("F (?A"HAFxD?@F !'F'HF! + ?HF 	OD  	W	.LDE]0F0F/   $  ؟ C x A # bH-CxDaKaJF{DzD`!jF]OtD`F\I0FyD^W0  @rF ! '^ !'"%V) @'' V) 'z !D'xn) @A!'&!'wEXЦ1N$~Da/K{D+b-JzD*b"(h A.`(Ki{DB&K{Da(h@)``.hF*`FF|	DHFV"V; +O0(d(Fi (*lQ	TIxXI0yD    8@ l i {  :  >  K  K  u  , K "0{DFh2o  F0x(xM !
F1T "L)!*SZccbZbb, -0  #KJ -O{Dh3@|	 	Y2U3`3p0&0'EWV?}6}B*F *F3P p0%`B#@_Vp6}B#PFR bE $ K{Dh #FVbDf  3+b # mͱ
 E4 ,V$ l $&F4F SRv 3B	  K-O{DhFh #AhO6@= |4F5# Oh|d	p	V|"04uF 3CE۬JO OzDh*RX.|6  #	$0%# 	Sk;c1Sk Pc|4+ݾa|pO`	IF(F	9 |4!(FZ4|$cH$$Q$05#5)D	YS %( P}E(cF3uHP!`(F|$*`K4$ hhi9h "{iFh2 W   *$4*\P$2F4O

p7 B0  pE. ('Gp7pE	 O 1)0p	{0ODpD4p	w4p20(F1FO('G_ ?GX ())'88GI	p? (p"CW:4E	 B1,
0 
 0 0? /;*X +ѥ  -C /NOtCO7~DԀ + OOOO "	TFA2 bEګB7BEh	bDcBg	7W
*'z"৉z=BFOOFOO*F/FOO "6+FBݽ GK{Dh*RS,\j)U4b8r a/Y8R!$L(տRR^23"L#"@*RS(LQj$ H,-@PbD,*R- jD -@
ѐj,`0U.pb ,@- 
` S8\SDLDp2xm7* *RRjQ*R
GpB	*SYj B \  4 ^9 pF
F  1F$CF3
H1F
K"FxD{DhhUU
E,E Fp  7Kp{DhT8T0\E1JA1BObB>T O B  AVT4T8<TD, F @D4lO3Gv AD8DDTG|ZB B "3
 ? #TZbE B "3
?1TT8<T0,T pDzA DpT0,D0<p  K{DhT,: T$'&  D 8FKCr{DhTT$B 
TT$,-
TD<8OD<T-
T$,AOTDѽ8@8 Kp{D
FhFT4<B @$T9F$l@$MD\pX -OO 	EFO< -""!!OFDDb	BڵBVДB  c 	 <6ͱeE'JlLFzDh Ɉ"K{DhQɈ!
,HxDhT a| !
  Qɉp
 !k.BѴF"!F"!"!F $7F5FBݽ    d DK-O{DFFh *RjA O5 $FDF'F&Fp @SxZ,]65  IK
Q5  Y"JzD9l`
PhZ(17

QQK|	9# Q8D 9 cZ#  djBӁ  
5 4 F @|K{DhT(4p (T<T$,X4OTDL #$<D<
 pK-O{DFFhF*PJxYj,pU/pUW(F iPF%HFyi lDc =-*W!k8k0xk
0:c
2" E(FcE+V@F1k
5%cw(FCDTCT$,OTD<^EPbE !Ql`1*PkBk: !VQ &Oi!p!8F!K{D!6`ЈBPFYFHF9FPFIFv*Pkkc *Qkc*Tk f
 3 2 KB"-O{D $h@!FOlfEL(FELD4PBOq`xS"aQF`1`BaaPKaR`{D!C``I"aP#yD``` F:pHELHFO0*QE #F%LELcR Sa "2\@B4 )[,S't #LF|D  Q` !1\0B3 (+ѤL'|DQ`] ! 1\0B3 (+R  ')0n~S4 '	$7RԁWp #$QLxBz3d+ $'QPGS4$,0F@& # $ WF '<G3 P+RO fUl!FO20"O1E8LEDLU AE0"E0LE,EL@U0,BU| /U  $E@LxE@<FxCE@U|#U$~OUElUL!U$,gOUE|9H&9K 'xD{DhT8,T <T@<RxCT<HAD@ @3P#T@<TT8, H  T4<D<l ) ހ@B ـT8,Gn	E ЀT <rELz0FzDO 
x.OfOV  '2 .2 1 1 P1   FFR EllNEhђ  EcђE]32	E;ѓ	E3ѓ	E+ѓ	E#ѓ	Eѓ	Eѓ	EE2KE KFyCFE@ED4		HFlFNFIT,I2aE:| HFT0lB8F.T8T4< _&& &T<)ZَBXT8l9pT0<T<|YD0lD<,T8|T <~D8lT@|vxGT|YJD@, Cq7'T@,T<T8l G#`T<JD<, *T8|~D8lTD< +T F "8T8DD& '-T8,T |  @TD<T8 +T    "T8DDT8,T0<WD8|'YD0@ X0,JEX< +T0 (XGT8T ,STD,T8 *T   "UCU  ! /K-AFFF-I{D-JyD-MzD`}D0F!FAǼ'HxDh`UPO,P+h&d DHxD`O @&[D,O@&UD$O0&OD(O0&ID O 0&C9FD8FIJyDKzD{D`(F
IyDAO  L :+    > Ç -O F
9O Ax\x F!$AfCOVM Q&B,\*KzTE&E ta
 VT&B\KzTEE
xOEOxOEяxgED&03BBG&0._/Gl/ا	 2F  F؆  &6BђxgE"yE^OygEОyE
yE	zE%s o	<O EGpRO<E 		DA )''E	91^E3FӴO6xE<!/ؽE p
F &!?p	/DAؽ )&&F	?k? F/p 	pTp2FB` 	 o o
)-AF
FFF 9htFFxBD( (,@(;%F #;:+p%F**p %aU5Bd  p  `pp4>`-O F
9O Ax\x F!$AfCOVN Q&B,\*KzTE&E ta
FT&B\KzTEE
xOEOxOEяxgED&03BBG&0._/Gl/ا	 2F  F؆  &6BђxgE"yE^OygEОyE
yE	zE%s o	<O EGpRO<E 		DA )''E	91^E3FӴO6xE<!/ؽE p
F &!?p	/DAؽ )&&F	?k? F/p 	pTp2FB` 	 o o
)-AF
FFF 9htFFxBD( (,@(;%F #;:+p%F**p %aU5Bd  p  `pp4>`-A &hA`x-@=D-@BoExU6BPd,[-IeB5B 'Fk .5B.B'xpfxFp &x4p0]U6Bр%x-4o ggx4 B؀BՀ-@ʀ=xp}xEpxp0?-Gkm	 nB𹀇B5Z-ьB6B 'F[ -6vgxE 47- ьB6B F{ /6 gxE4B`ЧGFk BiӅBg.].xpmxEp0B[ӇBYEN=xp}x7Ep0 % 5B@\" FB4nB,&x-p04
fx-Fp04x4p0[BWFFBo `B `o F`F`o o `  o x*p
xBp*JxBp
xxppG-AFFѹ!GE4;FCF3+BD%D FOq(FFOq
FAX /D@ 8FK{Dh
.!F(
I0yDHHxDHxD!F8@%(p F8  J~ D~ E~   "#   CK{DhQC n pF
L
F 1F|D*F%1Fh*F1F*F`h`p  @!#
F !C
F "A
 %-O %pF[K[HFOO"{DxDF ( 0QHxDoOHxD$F (РBB	(F0C	 %	hqFhkFBhch]HF%F	  
2FQF#0B-	hh QF2FB&HxD  2FQF:B  1F *FPF	y (	B.F VFhh 1F"F@E  1F"FXE 1F"F%a(F  C@   N} a} | -OFAFh '`4x,@<6,UFF@1FK, <# 3{ /F p/p7F jpp5 #\T3B-24],QyQxo f ';x+pzxjpxp5Y,fQx 	 /SPѸx(8xO A;p)  p Qp7(3ؐ F)+>x)&;p  Pp p 1FBFLp p/p0kp5uO4  *p0kp5?,HF	;0 d	 c	 / ɀ+@Ā@_r@Lx,  , * HIF9p `.p>F0kp p5 ,& 6K ,Уx0Jx	O & 6K ,У Jx	E 𞀩I /W+S  ,L2x*9x!IFH:pO%:5ؤ4x,1؄ (*;x#9pIF 1FBFhp p/p hp0p5O4  ")p 		hp5T2Bѭc7FMF #\T3B2Q0B 	%D4]
BUFFBBCo `B
`o   o -OFO %RFYH%N(0 "+FO0+O 0+O %9F FO 
O	  )FO"" t F ,x )F"FfF  )F"FF( ( (F!F:F'
( (F!F:F.HxD-HxD$!BҖ( *8F*FB#HxD  FhHFhPFBh9F 
h9F  b 9F )F"F%]y@F(F8F  C@ w w w UK !UJ{DpΰXOr#h&FMPHOxDh@!0	OIHxD$0 "A1 OcB0 O@r՝0)(6LH6MH9M	"9I }D$yD% #,rkrrr+sksss   0 !F 
 1 !F
  Oq
2 !FF 
 %
2 )FHxDhK{DhM1hBRNp     F  v     pF
L
F  1F|D*F"R1F h*F1F*F ``ho``p  !
  @!
  ! wK  wJ{Dp̰X	"iF3hK"sIhF	"yDFFpHxD$!FOrhF%kIO`yD
p@LpppqLqqqB ! @?B B( A`E!B)   B
* )FZ
  $*@?HxDEh>K{DhuBVѝ( )T)ѝ)P")ѝ)0K")5ѝ)@	") mF) A),-R:*K {Dp\pppq\qqqB(bmF44)jBhK{D\hJzDh-B	eO1!
|$o! !HxD#hFK2hBLp b  :u  ^ V    s K{Dh  pFFIMyDJK}DzDXhhyc(IyDh@o(IyD
hB`  FBI
J #yDzD` FIyDp@ Ys 0      # & V$qF	/!)FBp : F'F ( F (pKFI{DF^X !(F3h
" K{D )*\8F0*"F13hBb	d {r 
FFI $yDr"0F !V"F+]4 D0F!8F)F"F@$ 9r -OF0JF0I}zD 	F@FVXO		*L2h|DF !O r? $IyD20 hFah4dE3F:F! OI	v(F(FAF$@I(FJFyD$:xBO s
 !:FF:F(F$+ 0B
}  q q )F L|D L|D #$!
  $HxD!z1F$(F!$J!F3FzD Fh )F$@`!FHxD!O1q 0q q p p -GF,J-zDF #$o1F, $FDIFhhBFCF"-h ($ -O)FObD8FN9FOb$jHxD# "O0$_0
HxD!	J" *$ $ F$p    Xp fp -OF}KFDFFZp !O r8h(FIFd"(Fv"i!
e!i` !i[0!""!"m%Qi!j "F
"i!m "F
5" 1 d" AF 8 1 +s0hK!BF #vl'ipG OXF$F ( 2"9F  d" )0hK!:FCFV8F|IO
ѕc 5! (?(Fd!/#+T8 _3 O4 "j! 
U"!j1Kʲ !
]L_6! O!""k0!%HYFxD#@F2o j!iJF0hpNL!L S0hphб2hI*Z T0 0#ipBOK{DK{DIJFyDH   hB
}  j n m l Nn -CFFFxF i pA@O^HxDD "*a#ip@O*ai)'hh !FEEXh EEh ++a0F0$.h`1F`"hB`#n`0 #BB
#BB<HxD9F#mf( x/)бF1F
" (Y E/(		
/+ IF
" (B 0 + <#ip@ O	AF8F$[   O8(F1F:F#F; (и?"k@F)h@Fl$k !@CfBN
~D"F0F(h1F"F$z  )i )m um  -AJ #FzD	N~DF  `!hA@%`IKyDH{DJxD`IzD`yD8	8F IvX2hF?K/{DaщHxDaՈIyD!bՆJzD"b)ՅHOxDV!
 D('b$$bc#h#  `!hA"`'hG #` h@@!`i"h"Gs#` h !` i a#i8h;`		'a	 /h`/!VBp@FVV (h&iXJzD` v3UHxD#,1F3F#@A!x-*Bx"NHc`xD`ba?	 (``HHxD!$+``$ޱ+!iX3.H#oO OE`hL
 hC?(2JzD2JzD1JzD0JzD0M!`hN}Deb-K!-M{D}D` (` F! ( iQhXh`iIh(h"HahxD#hh`h *FHxD h
l x  
 + Sl yl L  L      4l 
  B  {k N  Kk   i=    M)  !N    j  $EF2@"g# F@S	  8F$NL(FKP!|DXHxD E8` i Fh !F"CF "F@-O˰dF`$ &D	
zX4[ 4F{DJmO8h5F7FI
Bo(
d((`l(3n([3q(v(+x(Sd[ h&%$O7 "H[  dh0$hF,	 PFh! %IF	B[
  Y* 	0$_Y*FFsY )| x-(`x0! -%$' FL #DO 	 ! Fj (K+H % PxDHFF!$0F$"/'H!FxDHxDF $HI&FFxDyD	" !JB :KBбHxD#B. "!Π!)ЪHxD  	HxD FL
 # F !F!o 
!Fl (@z!Fa ( d!0KJCROZlpK HxD EF[F< Du F/!=` F0h+xHxD1'wH!FxD FS F@O b ( #pLO jHxD7DD F0	h))cHxD!F -fp@ O-!F	5*n)SA)N)cLr)Py)^RHxD!F*% F F@A!#F'KH!FxD 8 2 AF!BF! (>HxDCE:HxD#: B#=@F% XF|5 F@5#F6qPFlm68/"HIF2FxD`
  IhB:. PKPK
 i  qh Wh Yh i @i gh ^h dh h g g g th gh g g g g g Xg K 8Fj
Fh)F`hcj
FGjAb8Fhi h/!FH  O10p" h/!1p*hQՠ pAOPб O	`h8"i*!h (  h0>h+9yHxD34 hiF0h+)rHxD a#jB*hԴpNOjH!hxD"[(F  hV0	h)aHxD!h ;p@ O`hX#iK!h 0@+h VHVIxD yD OO	ذ _KаO а_UD O/а@O>а OK.h@A! h!#"iFhh1F0FV; hFX050h)0*h*++h(4HxD`h!h0(h/H0IxD yD F hbj0)h	(HxD!h &HxD"p@ O+)h	giiԠh hh h h9F2F+hZ h*h	 j !iF  h yf rf `f f 6f Rf e e e e e 2(HIxDyD"d _ j 8FKFH{DxDS!#qE$ 8@߿  e -AFip@ O@ ! "t#$F (WDHDIxDyD#DD!"h!"h!h!h'i6I@FyD:F#$2I3Fbi@FyD#.I3Fi@FyD#
L1F#N1F
 k$J FzDk!HkxD 4"iRBhh\, "0F#(0HxD "HkxDK (H"FkxD" d d d d zd jd Dd _ _ c c i!@hiiCj@hiG-C 'FFhFO	*`i!iBѠhORi ( aD o-		chzv  % ci5ibh\3ca@!a`B ch%` J#L   KJ{D-OD}XFkl+h!<7!F F !F F
 cHBѺJBo O0GJB@?MB@; F!F (@6! F{B
 a F!r
gFF0 F!h FDPk@ =5v -! FSF)9 "
`T2BE F!C` &
gEE&5  % F!4 ({]y]xAp=բ6;pD5BO 	 F! &
gE-o ! F
(
"hiU6SVE#`CH-;x
f'FEQEQF SF7gE@N
8	 E @5 b T 
	  F405PJ PnF`B

P5UE70 %B
j
p5V' 0F' B  $ FF
V ^1eDgD
>m 
F  0Bo G		V#H !EB#P3	EB#p P=
eFF#[U3 &7FF5FE5	 @H1!		D%
N@

c
T
$" iE F%(Er P8 YA1 YS& 4 i2`h"`N ! a``a"hPah `$!   J OR
B?Ѯ!h@@aD$!`\ B? *
>F'vBE CE?x
l W G 1F 'L 79&p>-6ZE

4L " BW]T?
npP! 2@! @%5Q?,lYhC/cE
D ##W. V"A 3F" 2G. Bm(EDP*0 `bٲ
b"bb  o o 
<+hB
Q}
m-AFjFF (]i<"jjk )>i9a=Iԃl;D  i )FOjYb )X" aj9Ӳab!B!aba$ +;a3F!kCbkBcsccKO0cc F.0b?(F"jO0jic  "bJbaFFK|J|?FFF#8``4цa*F!@|0a1F!paD VFع!C1;+
IJ d #c0F4"Oo F  a Fk$ F@R-GFEB"F:F (`OPEB)##F F1FBFF)FORT8F)F"FB!HoxD"/cH!FxD"'kZkBHxD"Ziii(F"F,	
0F)RF PE$)IE $(FO4 F U \\ X\ 8FBhhB O2 h)F  (
HxD"n  e`!`"i`hh#aL"```8 [ -OFF	
" 
(ѝ8P-HO8xD"O(F	!r	!Ʋ(Fd0Fɲ!l0F
F!f#9~ A0B= 18<Hp9  !OgBB8F"	O@u	
6uh " #"p3BHO 	"OFFDF`gPFdPFaPF^PF[O4"@
r oBB	PF ?  6 `
QCB! nn! K O` NldOsRGoApB	"`0G 򙀔9P vBO]0m woBBv^DPF 40
ZCB 	 a a #$ 
S#$  /K/ѻ.0oAOKBPF c[
ZCB  a a #`S
S#$  K
_	9E@ 	BF39@E O8PFb00 
ZC B  d̿O	O 	d"`dfSo@B #PF* 2
SCB0
 `40`oBBoNtE R@pC?PF 30
ZCB  ` ̿O	O		`"9S`p#d   [  DE@PF 3
ZCB 
 ` `2<oLdE S@p0PF H0
ZCB 
 a aH@SH@p̿O	O	h&@oK\EPFW07
zCB  c c2 '(oABW @7PF. @s
ZCB  `' `&{%P{p%'Sq$.F oCDBPF   O"ZCB  ` `
 !
S! >D#
 %F-%		F%Xv*g oCBPF [
ZCB  a a #S
S#&  D=Ѥ@ (FkG ~
(B$+u@ Pd oK]EPFlpH B;"0  "C>.$Da%/F0oLEcEPF G   0O"ZCB 	 n   n   S  0 E <C >4BF	@EO8O @
69  DEEBF 	9 BO >=@ #APBFBBO  '=@APFBBPFplj@F h-A
ihCh`]6a$D`hDh
_CB` gg
"1,`E`W hihGh`ta#C`hChO
oCB`
" ccLqf%
`%D`NVOqfOuh#oHhCBE
h`iBh]6a'G`h"
VCBhB`[ " ff"	[ `F`3"R"Bf-OFChFFF{ $ %E* A9` !вRFE@ A
ѻ Ѻ    p` 
s`?+8hHE  0KhhBЄiEh$
hԲ\3K`BBh2B`* !aA` 0  0 0p %0&F`)F$P2FE`a @ xp )F2Fr#P0pFFCFK!F{DhC  8F
F iIh#	RC #+hia8pFKh
F  h*h0B(F 2FFhhk`O   v`B  p0ihh,B8F`hMB$Bihh\3T2Ai`B #<hB8` 0-GFjjBҀn`bmajB%kB hfoE jjBgocn 'hB
?'`h1gh!a'g` 8GO'OCE
 h'`Gh xF	 QB `g`@jaji  
Fl""o 	bDOlBnb2+3# hY B i'`h 0gh a'g` PZO'xCghB	 `[ 2 ggPR[  8``32\PR+TTE
$jDi
#OAOq_ 'hOLB
?'`h	gh
'g`	'a 2pO)	E'`[ 2p! ii"p

[  	g`32pW"p+"jiTS`jbnB8cb*#b !	* af !i  `h1!a'g` 'h@
HCE g `g+
!! mm`maf1F#fe Fe9n* ހ? B'```Q
9h!`!i1!a  ``w GghO! ACB	 hB!` h PE a` 4? i	!`h 0 a'g` |LO 9HCE
 b `b+!	!8#affpQ#` ``^ iO''`h 0 a!a`q'hA
HCE l `l0m9?QB'` ``
!i?'`h1!a  ``s ghCO HCB n `nmQ 8``m#n!fme`mceean F)##.acfZ !#v~'hZ B8!ih ``h1!a 'g` > O'xCghB
 `[ > gg. 
9a`[  3> P.?+@;+ce_
+M<C  
#geJ	F	b'hY B
?'`hgh
'g`'a 2O'E	'`[ 2 iiWR

	 [ g`32^WRam ae0`Ed F@Ty#hBh#i'`gh3#a	"b`'hbh{#`c`hGS9`#`eF'hB:h"`"igh2"a ``W| LO PCE l `[ l[ R  3``	bm `e1)bmcjB  !kB h (!iciB h#ih`h"`3#a "b` -O IF
F	d* 	 \ f r z    .hZ\j` ( 	((
 &#P`Q0a&bbfbP(. &&d(d &"Q`'Q0 +@"(bd@ӁxO`Flacfceee#f, 3BO0 #O	( Ł"  dbd.hl\3 !dk`#*hlp3 dk`#.hY\#di`*hlp3 dk`cl.h\3k`*   -:0Ҳ,*`g`o!  !scg	:AҲ*!g of* s!xFlb O` !saf#gaeee!f, 1BO1 "#& &dl+PnhhB  *hah6 ``n`hZ`h (<hi+i&jl jE(FEbvDbjhh;hl )Xl*E8FFL +hvE(vF h02F:hlB H?
  !h0
;h(8`a8`a	h
O  Fo ( :h iB ހlBd	 @!:`PFh1ih@j` hkh(*hl`ihB!a*hhh F8;ca9 (  iihlCB dh`khh. l	h *hB(F2F*>`khn`   b*ihi2FY!ja(i*advl (wѢn *tch +qO1 !``)ikiB?hhhBU9hlBQL
O ; PriE(FhPE(FE(F 0h
 0hBFhhriB`8`B*i
 hBFhq`+ijh (ai` 0[hEŮ)ijiBӿkhhB"l*?㭵  l&&dQd#jjiBHa]#d    -OF(W}D(hF(` !"
XO `! cF
O`
!h98FyD\"O`FF%bF(p>F0cOcCc  acD0F&FODDB9FOb (xO4xD ѻ   $\!0Fh3B<D2a0h	(
 4 K 
?gs0F
 ( 0F!"@QFF (@т! O0B@؂   *a Â* B u
] c4a"B !# 3`c@0F
F ( \  "@F0V 		B Ж ! Ѓ @_Z0FAF(@#O2O3
#0 +
0FAF0g(@i#O2O3@#`(@XrH0 !+@D20 +@;B C21D '( - B2ck cB $kb)ѢkBҠi kacO  #f dP0D`f@10   *@ B " # %!P##1`
2asa4iFEpid#E EC 	
#BB΁#KEBEǁi+
i 1a@f
??#BB@#??ЋBB@#E	Eik@H O B#EX C!#n# !f C%#5`O
O 	B \3 *@VS0+EEE	R"2`i,
0F
o(FB -1Tt`rhrE #s`"2`
,$
0F
BF(F0F
1o))6#BB #@'"#4gC"#$#PFC!$# U #O< O0C  #p #R tE0F
It 4ZO
5iO 0(cA 
R0F
&X " (@!1`0F
(F< 	" 2`0F
 (4MI" yDF {! @BrѰooB| 
F # BB_і )[іiEVO B
B	і$@# ,OO O  #$0*
!V !? ??HO4xD FTi(F0F*OOOO%5`AO          'E   = gD a? 8 8F F PL8 F (  FjFjmB j*F &A"jbQhBBbHxD b0F@bB4    7 jFjX2bpG-O]FF7F 4# !(FD"5`bAFQU  S?E 0)hB5`q3+#U#@ ,$ <U$  ,hBӔB8"F F 
` FU   G0I Bӱ >E$ !BFU! 
~P`1B "
|X"AAP!L) 		@!2B "
~RAF
0O6$h!>

B	hE(FPS BZEEٸ ۀE8 
0@! Y !55 0`@)  A0j`A)pS&
;P&` (p.ip  CFNFO
	0P)E$_`Eh qE	)OO 1 OcO ' 
 D  E(OY		 FO

x

	
O
[0>9
8	 EA )E1`00   s
mF@ll # cdd!  -GFFFF'CyCz/jjBbj *REJFCr!jh1 (bM F}Dgcjb +cbbj!j*h\0b+hC3+`+hCE0F9 -AFm +@<Dk F:Fl&kal c5P-c- Fk=pxk# c+F :Fc Fcqh8` k-pxk# c c
 lB#i OT"d`- +F:F Fb\IyD10c  kcEbec:F#m FLakl c2P-!4Dc-Сk=pxk! c F:Fc+F+cqh8` 5P-آkpxk" cpx+Fc F:F6J#lzDcY20 k ]eccmA lKamB,FFB E B(
FBeae!i*F#lmX dUe
m!i"l\TQZ=!de"lam O	`#e " "d )e"la w``ll  `dd L  h  -O,]
F#iF				F  I(`] F#			#w  (a,ݲ(@𿁌
!# F
l#F

8
 FaCB Сh 
 gO0:fbgg #%Q3  	!
8 0@ &uF#36d.#Hd4l4"t4xD|4D4444K@ {D(FOqZ #!(FP3x+HI
K"yD
  "!{DCi#2hchcKd"e{D!d'#
 F

#
y
F q	 F
F Q	X

# F
7
	 			    &D)F#
 F
P
6
 G%NE6G) !D.
8
!D 8` #PF 
F (@ŀmN	;hF~D6F F)F;h
 Fkbl  
 
*J& sFU* F)F#
I
 SKE
 1
  F 0B4*
#,
 KE
g
 "  F" 2B#
 	SKE
N
 !  F! 1qEфFKE`la	#
;`'J(KzD AF@%w{D0F@"K
8 H{D K {DYFi8h*hch!d#dK"e{Dc3 3  co bc FK
m    T  @    h   t F O @  #`O4Kffa  ``ewaF T`PaYHxDg , (@ t  &`h Tṉn  Phsi!ih $1hh2`p` f\ 1F \ff n4K7# *F;Fo@ oFigU` Og
o`  gKo"
$
g;Kg "oco
;!gcg ' ncf ,ѐooSo`aw UF ,  1ihph[i^ 
hH`h` !Af 1ih hBHxDY ,v +قjiSjbTi
9awO4  i| Xix F1- 2 FOpFF hFCb bO@ 9F2F b FF jXah"h F`j`P0F-OFH2FF hO5F (@Opp DFEbO@MF ` bjj jRbAz F! #b (QТj j\2 +bD	_ F!p (9Уj!jZb  FYFaXjb F!Uj"jA\b +	 (		:a	_ +D F!9jb;%HxD F!- ( FRbhCBHxD FF!hB]DPFO5 F!h jj\*Hx(3bjO5 j F F1FBFE (F a1 u* 8. -OIR  (@lO` OP O 0 FO  	"(ЫHxDx#) 	ݣHxD'@& -FOy
`6 '	$
<@F=F
 ! P]T1B?.O b)چHxDOG!FB 

 %E =41F	B ODYV-xO AA @CCѸ^HxD(  !BF=F(!Fc@	$oE
2JHxDoO7s
qaBFQE`0 m* <@~
vE)^F `BFF 
aFZFx^D@qB	2F & D *aF ZE! 
	0		F
B?, / ZF mPFO78F/ / $( I( ' ih 8  pGihh  8  8Fi ih)F Hh@)F  8  8 88F
F`h)F "Z$h , F8#K$J{D]XFF
Qh
F(`$bhP "/+2? +@~/(2	T3\Y sE
S "
p)F`h $h ,
Q F
h;hB
]  K!J{D𵱰XFi;h/`hn" ( ׀n(ВHxDj"In0byDt Q19)ًHxD I 	

R yD
X
(~HxD
	iaa*b+ap	(`F	`h>(hx/*CF3x/.j	B F!bhI(hyD(jA
!dj &n`pN O+i)aH*iFh``hj+ib.a)"ݪpL O	0PC`F
`2a` sa)hbl2`fdol0`d
9K_C0@ FjbhG0 F#jGi(FG Fj)iCbhh(h  h`(`Bhh(h!0h !("`d(Fh+`*bh0iharialYhrhB3 Fk`hG"j FG0F\h +ѣh FG!j FGl0`dfl .hdFl ( /;hBH1  V + + + + + +  #"CTFFRFFxб (З   *HxDBZ	Ee  
@>FF ) FNF~Dw#x/+4 F9F"4 F1FBHxDh:!`Ha*FxD F) 
 }) 4${D-OFX}iyDhD8FO q|D %xhO r%`!FF(lxD iBxh"HFX&j x sbYyjPxh!FO r  !b $
b" (Ox
 xD!xh  (ѸbB]0(Dќ#\3 D*"%x
 -рEHxD !"*zEѝ 0  @t]0
O 
O
ٱ
e!mQ!F
]O2 
_A#C pbmQ %u`ykY Н0+
 d!p` 
 !`= 
= !`!'!0b$!0a"!a !pa "2`@8k НmQx =
mm0`Dzظ3Iظ1,8ظ05GAӸ6Gи7@р"N
ظM\ҸKGиL@À8VQظSgJиx@EೋoCDoTL
ಋoB@oPEోALLN L "2aഋD \NL糋CL籋A\8kN5ihF8cxkD4i`Fxcxh2igj0ib~4iM"u% ZFFxh)FFMj O b-PF
"$DTHxD" ($h+   *Ѹg
	 "88k	 8c ,(F5?HAFxD1ij u%bexhO r= -3HAFxD8k0` %=cykq` #{c4h FF F/!0hhF8FGFi0FG%p8F;jGh :i9h 1h88F0h3ijbphhh~  hB
}  ) ]) @( ( ( O& & &  hNpG'K(J{D𵙰XF   3h7FhM`i)F K" {DhiF"i
 FlpS
	"hH3FxD*FRahHxDL
  ;hB ( % $ $ L F( KIJ{DyDazD`bbaHxD b F 1  { !"NxFhF"
(ѽ  BHxDO0 F ]$  ( +H"xD`t pFFFVh!FG!Fp7"
FF0H2B EB BCqB" FJBooHxD: F" JzDJzDJzD F !  >zXZ # ip
F !F0F.!
`	I0yD
0J F!zD F)F FpZ UpF !F
!FF H1FxD(FD  $ Fp 
# 8FF"0h+(F!F8@ HxD8 " 
FO1HpG  HxD8  "  PHxDI yD@* " y J EAzD : Α 𵍰1M !1K}D1NX~D  2F hEA 2F&FhFQh2B cFh`@a!IL !L"yDK EA-YH5xD)F H
iFxDH)FxD EAjFJEAzDF 2h FBV
 ƈ  " " "  KFFI{DJyDzD`!HT  (HxDHxD!	KEA "{Dj    ! ! ! ! ! FHh
F0IyD5<(hh<FhFe(FB')F (<F
#3U4 1F"F   t! FF2x ),;	:Ѳ)) "ZpBNI  
FFFJzD :FF( AHK	xD    -O""KFF{D &DhJC !2DO0XPk# pgc-(Fd!d!00 p(Fr
F 'F(F
!t008p(F
!d01yp  6. FT L > o F d!BI FOq< 8     -GF
FFFO1"<	.ѵo<L # |D!hHC:L|D3+ `ѽ.$(F ($/O3FD;] +@m@b hBO
d!oFFoahOq
	Kow`DBpoq@!HLxDDhp *$.F(Fi 7  #@#3Bѽ*	 j    0 -OFMK}DNX~Dh F|IyDs2h3`FH-X)hT!`nDilyi|lhdh0F!"mF5(h!BreF 4FJ

hzD&(F !h^C#D /FO  (!ZF
\ 0
\ F( $ؑJ(!
\ zD8IyD
h #;!
\ FF8FQF<PF
8F  "9:TOO  ,5 F<IFV$0YF"
 uN\FtK~D{DN7h"zC2 
]FnHnJxDIzD
|

 
41p
 ,ѪdK!FP" {D
 $`H"FO
xDh
  @ZHxDl"FW
|IF
8Fn/:F !
 P"OOK  {DhFF	"V$ 9F  2`9F"V   "DD 0V! 9F9H" )FxDSF  24H!RF+FxD
 O 
 	 !  !`FQD3D B
 

X
 #hd,  O  T  Α 
  l   Y C (    N  Z Y H h
HxD %T%	!TF0F /`h ((F@s 8FFIMyDK}DXh 8@ο6  -OFF0I0MyD/K}DFXhV! "+N~DDl<*H< #xDTq (7DQF@B~ +,IO 	nXT{ mZe *nB
(smseAF:FAF		E fh .    t p
FF	x-)HFxD)(`FR; +0F!Fp@  sFFF@2i(F!- F  ip@ O H)FxD F (| -C
F&OFDD#x-+
ax1@F`a  p6th ,  $I(FKyDJN{DzD
`YY8h	-""pU MFN $P~D'FD 3FU2F kh ($ + F N  ֌ l m 5 8FFhKShi]hi FFG  Fo  8 8  -CF$M$HO3}D#IxD#JyD)`"IzD`0FyDOLO|DYhppT@OO	V! $N8F[F~D
AF2F3Fw5 ($hh ( F     :~ ]HhFh 32 `HxD`` F  -CFEIFEHyDDKxDDJ`{DDI@FzD`yDBLBN|DY;h_aLLeFP*V p'X# 7I 7IbXiF P8F (J۩Ղ/HxD@& $1h8FF_FLO1"HF0hF8FFFFFFAFY*FBsh4 ($B@FNF|$ F5      P}  hhpGKJ{DXm;e +nBò
+JmJepGT1M,| -OFIK
yDJ	{DIzD
8	`yD 8F2F3FL	)Y AѱHxD  Sx+HxDO	CEЧHIxDyD	;ХHIxDyDx )9HFzxO _ ( ;O3
xJR (o @C[Eo C(F@"FVF  E44A` $H%FIxDyD0F@ (HxDK(F!F"{D6W*p'~JzDF,>3  
QY ( À &F  6qK{D F" #X"F 
Q
 
 

E3BzE
+hBtF 3BhB2EfU<0Bb۳BAF01@F[FO: GJF 

F	EE
 
!@F	2HXFT1ZX#pBE		QB (1 (
 8F6y (C'
Bh *,
{   ӳ      x s  [ 
 D -GN
FK !~DLJV|DKzDO{D  "`D`IF5yD (FOhY6hF`ՅHxD
YHxD 	O9 FU&P5+x++57  %
;>hD .5sI0FyD1\a.)+3Zx0:	*&ؙx09	)"xfH1FxD9 BF#
1F" r
BFB78h (
p
H (. !c
	
8IHxD

x@+O3ta@HxD (;HxD?"8I%yD  	5 %!
z#Z#5DC<
  uDD%
'I%%yD$M}D)x#JzDp"I(F"yD M}D H@A*F
xDHxDL5 0  B6x \ _ ( հ O A u  T      O   I | t FF F9F2FFb (H)FxD K{DhQ` K{DZhQY`
IyD
iKi
aCpHa  B # ~ ~ ~     -C-))N)K~DX)N7~Dhh
F1hF ph%IyD8F@" #HFAFIJFCFyD 8F.ii eA00iqizAQx" #j
IS+yD 8F
     .Au n~    -O "F !H !xD "O t%FDD0F=!FAO 
1F @F ((	K0F!o B{DyFb(	K0F!o B{DmFV("O0F,!F 1FHFZ (H1FJxDzD( B  )3NPK0F!o B{D=FF%(
@@I0FyDC(ѯI0FyD:(ѫI0FyD1	(
(Wo .x(FBFC   FF FI
 yDJzDaa
0 ! !8IyD
PA!@A!!$ | (  (܀pH O ՀO|K{D	! )   iC"\ (  9F*F (
	Z	 * aCFF ({ڧ  9F*F )@
 &j  )F"ѮBWHxDDp;FR#+8 B hK`и !.Fb $кFc	 B83FQFFd6DBHF!F"F (E .8F1F"F (5  (	,,H,IDxDyD@?vhhBns  4 (UHF"F (	 & ( $$   F' } ;  (       p J|    z z |z KF-O{DFJIzD`yDM}D@FOhO!O2FHxDJ (O x IO yD 
q
F@@FFxHxDlFvIyDtJzDtJzDtHO 
xDrIjXhT#p  OnLoI|DyD FF 	kJ 'kIzDyDS F PFGPF PK  ,  F!(!F'P 
0F 0F'#RѺ #! ##O#RC R
YO2 OdFO 7I FyD (!F	*F	80H!F0JxDzD.H!F.KxD{D FCFUF#cCFFFCF<ZF3FFHxDT8F!~ 
 
 p 
 /
 ]
 
 
 
 A
 ]
 
 
 P
  |   p    ( F"@.h;` +ڊiBò
+
h
`pGL  TK-O{DFSMhRJ}DHx FzD*`d)OOMINNDyDXp;h& (FHHxDV\e(FF(FAJXp;hF PIFF F08FPFF0IF/FX@T

+
+ѻ
 QFFQFz`hAa` ) FBF"h;"`ű F$ (8FPF (8FIF8FHFV 6
h *   { { r m f O -CFiF8@F%lQHxDr,PK{DhOIyD
i MaLi % gBB Ep@ ODN~Dh2iB@FiF48@F$<4r $ %ihE+O0!0spsss5JzDh(hFF (hFpBO*@FFȹ(K"{Dr<@F1F2iS3a$0iEAHF1aN~D8FF (8FK{DhIyD
iK{DiYhB)FO r FhBFFHxD F)F Zu "z Hu u y t nt &y Lt Dt  -C %TL#THF|DLxD%pDcpppl  %p`pppLLO1LK"|DKN{D8F!q~Daq %qHIq"yD`FEHX h%pepppt?M "$}D*pjpppr;K %"{DpZppp7K %${Ds]sss53KO2%{DsZsss/L #|D#qcqqqW  p+M+J}DzDA,h)(shsss F%K? $ %{DFW$Exh ()FO r F 0JzDFHxDRN~D0zS s  j s vx c w js Vs Bs ,s s s  r  Z r -C1 'Ox-*> $5F<F@F_n-e-E-   \$Zx *'FFFQ; +0$U (`O 	DFF"ǹ FFBHxc(!0(ъx0:*sFF (qh)V )Ѹ 
#;)F "`b (F h HxD:   F/O/H #D/IxD/JyD9`.IzDD=`yD0F"F+MG}DU0hV"`>1x-)sx@ 7Fz F (<F0F (HxD
'FTk0F=! (  ^W (8F
L-Y*h *u v ` $   *h  8F #F`(F` F8Fh+рh F@Lo  K{DFh h@!F!xbx   $p h3hhC   pGhx20*  pGAx ) pG  FhCH#xD`  ` -AFh/
"hFh
FBГ    E    pF
FFHxD$(F (+,#фA"-,F
Fe*,CCE3]R
HxD1/,JF
FDFF F)Fp k 4 p
FF(Fhx^+$HxD ! "D !"@ "h  " hJ(I +۠hBTh F``)
HxDF  " #F#J Fp | -MM}D+hh)L|D%h.h^}HxDD"zHxDyHxDp+#` FuHxD ("h!`qHxD (50F%`	)h
,*`Hh (1)`M,FhF B_I "yD```p,D  XM}DF  !F:(`   F,2 %F  0F phh`D 
 EFDHxD` L! # 
C PFYFBB " ##@FO,RTFQF  |8F80HxD./IyD`10F} (  Eh #FBs   !BqEBq MI}D#yD
h`F(`hhEhX`JzDh8F0FHxDh(F .n $n b     i li bi i  h fh ^h Bh 0h -AOMD}DF+h(`F F1FlF F0FDF8F ( F k -GlllDDDF@FFHHFF PFFرK{Dh`"FF0F9FF0F
F{8Fx FE0F5  3 \k -G\\ODDDFHFdF PF_Fȱ;h8`"FF0FAFF0F
F?@F< FE0F   j -O888DDDFXF)FHF$F@FFEHxDFCHxDF`AHxD
F0?HxDF (h<K{Dh`F0F38F01h#)E8h(
0F $8Fhh %F<ѢBs#yєBu#=кzѫBB $$^ѫBB $$>єBu $$Bs $$0F8F .F``n0F?  ?  @          .j -CJ $` %\DDF 0  9F0F8F`0FY8FV FE8FLHFW (0F "i OMD}DF+h(`F FP  F4F)0F%8F0 ( F h 8K"M{D}Dp(`IhHxD*hhF
HxDh5H#xD h F &d lh -    pGK{Dh 	)  0pG)8 ppG
))0pG`FpG l -OFFtKuI{DB=yDsO!BrDoH9X
hT"P%lN~DCl;O 
iLUF|DXDF ( "(FQF
_)U
ZI(F{X!bT3j $FgHFFE 4[
hH>B )IK	!(FWTJF@\ A\ )	)f
 T0
"+T0	(F"Fn #F\HF>FCBі 
 p!b $W0(FFT3 phAq` )	0F?Fp|2h2`hX(F!"FW	0T30F(XO
h .CPF>   ^  Hl -OKFMhF{DU(x-(&ix09	)"h %	94/F&n(	c(q(v('H
Xhx-*0%IyDF
 %/F&O
0o FO6 DHF!FRF& (S h	
T!@,K{DJ<
Bؿ &=tHEyHAFxD2xK
	vH{D $
OxD	QF ( S BFB.PFSR
F /;HFO F`hAa` ) FAa"h"`
 EO  
`hAa` ) FBD"h"`EO p9FF F n YJ# IE #TZ# YF F FYF[ SKE #J"O Z+ EPF`hAa` ) FxC
"h"`
(
:. K FHTl "$h
 ,4\   ;    8FF"HFxDK{Dh $H)FxDvIyD
h 8
HxD
HxD!Ff  8 8 , , g  g   8FF"FF(F8@8FF"FF(F8@pFFF(!h pphF ( `
h+0F)F ` h (  o  p  iK-O{DFhNh~Dxg)
eI FeOyDD@=`
bM FbI}DbJyDzD*`F|V`3hT# PFMhF7FFFF8FmNIHFyDyMIyDF0FE@II@FyDjCBFI8FyD	 !0FkBFAI8FyDcCOp
@!K1F[FFPFJF^ (HF 1F[FFPFJFP +"-Y*0BлB
 -Y* F1YFC

$IO 
#JyDDzDE  (7FF@F !*8FC
  FI  f  Y  f f 1      ]  Q  -OFoIFoKyDnH{DnJxD`nIzD
`0F 	yDjOjJDX;h F
&&@" 
"]I
yDH YI	yDi
W!G!@Fv (pIC^BV	O 	 F Bf5 XF@"X (9V"
@F&F@"H(Fd XFF@FF EFXF)F
 (2c,IDyD0
X(XF& ]F(F"$0 I*F&yD (FL0*F&	I &JKyDzD{DW 0F+ d d    W C- 7- x | c  =  -OFdH
FdIxD"yDbK`(FbI{DBl=yD|DbY0U"phF@ d,WHxDjhJE|8Fl,%FFPH5PJCO xDzD8F$HH9FxDrUJFF8FFPFF<FFU\ꈱU(p@ OUYPF1!FZF FYF (
vh* FAXFNO$XFH F*I IY!FU,jU!FG  FOPF&U (@F# b    U    s KF{Dh `pAOPб OID  pG/ pG* pGh\  0 "Fॊ2pEO)$h%x.-ex%.-Ѥx3P"@ , FF00 dpGFF = #pLO|hWx..NxF..щx! @# 3U/ *  FD FF0'KiF{DhFF``0F eZ00F %bIyD
cp0FVIyD# Fq,FMqqq\  aa#bbbbb#Kcbc@"ɲc@"d F  8` F[ .[ )Kp{Dhh
h aѨii ii5@hjcjo(j#joѣp@ApLJBR O@B o h)h.! h.!F(hF0F (IyDhH@BpZ $Z 0FvKL{D|DhKFJXT1" 4	"(\(\ 4YU (" N F0 ^ Q -CF FK{DhgF
p@ OhhF  'IyDhоH #jxDFK{DhjHIxD$JzDh[ըFHxD$HxDhձH)xD$K{Dh
ծIyDhXլHkxD+HikxDk45hW(٧JzDhBըkFHxDhkFkFHxDIyDh[ըkFHxDNhkFkFHxD1F@$JzDh $թpLOм _юHk*lxD,K{DhQ	ըi" #FHxDHixD$IyDh@4Z.jHiHDkj {IyDFhyH1FxD$vH
i1xD	VI	9EpHxDoHxD
4lHxDhR.6hh`pN OI	 OD3Y| !I]HxD 6"   "ZHxD(hWIyD
hVHxD /NTHxDSK{Dhhn6hh8`0FLJJzDhFp@ OI	 OD1I| !ID6"   ";HxD^8F4N$8F 6JzDh5HxDN4HxDh
ո @F4 FB Y nY b TY Q <Y ;  Y , 
Y ]   ]   |]   tX  ]    X W b W C ? W .   FW   (W W  ~ L V 5 V JK-O{DFhAFM}Dh?+h	o7B")\) 7 )_EFT/ *7HxDhh%	% ''DYF|(F0F)Ft FED4FO  4F% '#H$KxDF{DF2 ! JCFFzDhPL	FEY
n

P,   			E
 E U rZ dU U   -OF[JF[KzD {D h?
 V|SHyhxD& 'V<@FF (1LH"xDq|.(
}.+  hZ1@FF "FHF1HF
!``mFа %D,FPFF (PF ,I(F	FHF@Oh , -;"@F)FDSF)F@F!IyDh!@F!F@FFX(F"SF(F!Fd(Fl h`hb F`YO ,@FXV (T lT hT  (T S pS -CL
K %|D"	F F !{DH=FP es s ss%rerIFr*Fr(FhKJ`J{DIzDHyDO`xDI*F`KFyD 0FDIh$yD #o#c#C5Q%  OM}D`  xn, "*pjpppyHxD(  8rH #!xDpCpppoL|DhnMD  0`}Dh#aA@r`hL|Dhh%`@ s`dL|Dh"r``L|Dh | (OO !A ``Wp:hV"`&TL|DCL;]h-QHxDhA W`OO $<<DD%FDhVЙ   @b "F4`Fph (=HxDF FFC_h -8J0FzDh
6K!F"{D0F!F{)!l)FF0Fg!F0F9$F
)K@F!F"{D@F!F_m$K8F)F"{D8F8 !HxD@hR 6 2W ZW 9  I ƃ N *R x Q Q Q Q Q Q F JQ 2Q  V U P P ZP CKDJ{D-GXF#hF5 j=HxDhxs,;NhF;O~D$D,1,8NhF8O ~D$D!2,4NhF4O~D $D5,1NhF1O~DD3,hF-N-O~DD@$OPFhF)FGOR@F)F!HQF &xD)FhFGf p)F"FF(FH @F~  &50F 0BD6 F ^T w w 	y w x ww y kx z y  -OF
FQIQNyDPK~DFXhU! "LODF|> HHs!xD
eFK6FH '{DxDCHw!xD V )X %>J>KFzD{DF9		숹8I@FyDX`5HxD@F5'!F !XFPAF0YFYF5'@FPF8F (=H)FJFxDrPFFH)FV,(Fz 'V (8F E  T  _ 6 V J     !K{DFF J IzD`yD5M}DF@!
(`0HxDO6I ''mX*h T"@ $U1F:Fkh ($ + F Q ~  D ( FL
FK|DX
hU"`4 %8
@W "T9F&F (T%3h4 +(F vC -CFFF'M'K}DFXhv.:yh""H	xxD됳 JyzD x2p(H.$ !@rh !JFhJO	V C<ƲL.
 "T%@AF Ff  F=    C } } -OF^IF^HyD]KxD]J`{D]I FzD`yDlNZNDZp:hFC(T#	@FiFN ' F hF@FiFF:nEF6 h)Fb (g$c!(Ff (XF (8I*FZ 7I0yDZ (E (B(h*/H!hxD'.HZ   h (.((H)I)JxDyDzD('H'I(JxDyDzD(F (#H)FxD" h)F (! h ( 'EE(Fch!CEw '8F5 P  O |  :B / " 6| ^ 
 $|  J  -AF  F'FehF=HAFxD(F+x-+hxn(Ѫx* ia`6 <F.#`hO@Ao@B 
    2FF (H1FxD.8FO O  8"'K
FHh{Dp  .8  x!H !xD2 "8L j@AA|DOr F (HxDFP!Fm@AAOrFHxDH!FxD  !T Fv( D      -OF
FpOO	oKDD{DDF,v)  `'@FPF  x F dIyDcI FyDbIyDaI FyD
S)O 	a)F0FBF`hHUI FyDTI FyDRIzXhU 0 +~x+*6.xݢ0	)x*rѓ0 	(L a:*g 3xx-ѓ0	)N  a8(3Z0-F^xx.3Q F20	)L  a8(&F2.x0>	. &B4*x.* ./
&2F .2F"F `B )xAb)CB)уj#`x ##`7.
.
d# x#hQhhHiQhJiqq F9FF:? =z / Lz  
  y   8KJh{DF %HXh	 %
U ( %4`h ((F R= 8 !
"FyFh+H)F $xD F8 < pFxFF"+'+`x<F !` F1FG h(H!FxDz p  -OFF #CTQIFFyD*!@F F 1BFO 	` <g+e+]X+AE+XG+uUc+d+ps+9i+o+u+-x+d* F |]2JXFzD " ##  FhH1F% F9F`@  F9F2FX8 JXFzD F YFZF[F1F9F%ZF[F@!2F[FJXFzDP#  F.1F% F9F& # F9F2F          F !
F: 8F !F
F h3 !(F
F% 8F xH"! " #C0+`   -O F!0 {hCx-*Xx-(љx7{hkHxDhxp)ЂHxDi 4L7JO 	|DzD 'F<F{IyD%(\(@ɀ
%)F b)#h]\(Zx0*јx08(			+Fx (4 
% %2x** h65p4b
5Cx09	)O  Fx.(QSx*+  h54CF
p52x0:	*O AxA l.h)z)l09HQF<xDQ.(aQFRFFp]rl!FpqU  &#h4  PFaFBF[F) hI 	0F
 c*tFA@J    (&B!h )B   H   u \    8F@4 Fl@=   KFp
FI{DJyDNzD`C~DFH1X
hU" K{D`FXHxDHxDn  q p E   &8 <   Khp %FT{F(0F h%`h ((FA  (KF-AF'I{D'JyD'LzD`%I|DdX#hV#` $$HDD.l5 &DU/F#x.*
Ax.)рx @F&U!F6 (&;h5 +#k0F,E +  b7  -CF"KF"I{D"JyD"MzD`}DFH)XhT&@Bl= &DUO F ({ h'(HF!F5& 	 FxF.*Cx +ih )0FDD  q 6 a -A-F
FFWKWI{DB=yDVN,~DFTH1XhX ",`,,4 phADxhC` U' vA2 hE` H`V  `Ahx>%F.!phFV{rhBFB8F<e5%I$O %IyD &D 8F*F#F  (& 6jgI@a       (
 Fv -  5 (      -O-Kh9$F @DDDVO.! F (2IF FO "\F '  FAv h (x *8FaU1!L QF]L 
@		 FAFP
g8 ph (ѵo C۟+K;
8C(ȋ $*`Fx$h*            A    eAo Z o  F hx0;	+HxD
" ( 4 L|D#hFh + t `8 -AFKhFF+шhHh92i*eK  ( cM F !}D 
F 4" #, 3E$ 	_ @
	_мz 2BE F )F1):b]	:Ѳ)e)c /
ګB	9ʲ*Z*X1i!JBFh!JUBF`BFA "	_((4C  a8(أT2? +ѣT:
a #  ^(T3/ *T{#Fa) 8 (3j35;0 	( F  7 -O-FvKvHF{DuIxDԡyDhhD oi'h)F:F  )F:FF  F ( z
b dHxD0F!FF0FA F BA0фBrkB kH`^c]@ ѵ@GHAA̿O O<@)-)QF0FQF$  F 	ȹб	E0F !A F !A0O;OO  B0F  B F-h 
 -?   F	 JzDhիFXF > 6 > H  6= -OFHL"xDI|D #pyD!`I

(	yD0F FOD՝IyD
hB D`e	x
CxHxD4IyD
pY $F@FjJODH`x.+7B`.,)4 +FHFHxD[   ,xc#yHxD$O Lhi@ka ", 	Fx *D
 *iL8YhV%`&fIyDC; $D%FVO	F  @FS !F`(F"F@A4@	F		@F3ph (OIyDh>&F`LN~D2hO O8&(F5)F@E	BI2FxXBI0yD: W6B  R=K(F"!F{Dp0h@ 7`FF/FO	 IFxhxh6E& OFEt)IyDh	@A!Or!#N~DD2h@O

O 
 'U'XFRF7B  
 3 < Y j 
/ <  3  v i  ; 2 R;  : : @ ]H#-OxD[JFzD` YI8FFyDWM?}DFFOzyOIyDF4UP W( H\hHL|D! !zELEJ|DzDG(  F@(@HxD&Ha!F*<H!F*F $xD9K{DF  Ob  MW( </HxD@A!0F!80F2 Qy(Dp	Ba%\
F &LF)\E%F]FdPF
!ZF6   <E ]F QF*FDѨ9   , g G 5 \ , o v4  FT0.H!FxDH  S+K{Dh*HxD)HxD " !F"C%K{Dh#HxD
"IyD
B
 HDxDQh3Q3  *HxDhHxDHxD#	 #######
#h  :8   8  "   7   L@AB
|D FIyD8 F 2 * J-CzDFKh{D@ՍI I[X FG0H!FxD  JzDh."# ###*##"ɲ
sK@$@&( uH
xD!F#,F.pA OF FFHgH!F*FxD(FcH!FxDE pA" O"F+FTdD0OбOб _б_б Oб@O<D8D4D0D,D
(D$D DE* EEAHxD
jpBOв _$M!  5HHxDT
 OTOXF=h*M}D4h(L|D(HAF xD2$F#HxD*&F HxD"(FHxD -  .7 h)  6     C        v        KFpFI{DJyDMzD`}DN~DN~DH)X
h%$G@U (ф pz4 ' a & /8FFF.-A  ѡh!S#@ `8h"Q!@` -8FHxDR (K{D    6b d FHxD>C8(CF 6g K-A{DFBF
F 3BK(F !"{DxOxFIyDꨱI(FyDx^,?/

K !"(F{D ĲF $px Lt Cg  d   c -AF	I yDF(  "LmD	` & `b``(FAF;F(Ѡ6.BtD)x 8  
 t f K{Dhz- sFh %HN xD ~Da0F5I|-
 p@'   K{DBBѓh#L|Lp`Bѓh!#sC0 #LqAHpBhQQh#|Ls`!, @Ph#q`  B# tu(B4xO #D]3"+ AtrL #rO|DD]( RPF%FxAh
Cβ&@h% BP3,PBhC#@Bѐh |1hLp`A hL0`# HBѐh |QLsh`Sh@ `CgL0h`Qh#  `!\83B?K{D0By ihQh@lL`hA P`CJQh  `!hS`u!!`uhBh )E@ cDpBPh@Q  QxBBhhIQh  # s``!@Ph`C s@`Q`XBhA!c``3B
 Pth#t!@!chu`  c`c We Zb Tb a -A'N('I~DS+tX!  hF!GF~/0 L|DhY` 
*ch@B
  !!rarrr  JXT1^H
xDgDh`
) "rBrrr! 0B"ApG! * l* K{DhHxDpG "* U s $F
F FEAjF ph+
IHyDxD	h{  .EA `jF -P   (| )  FiF  h+ѬHxD0
HxD
IyD	hI	HxDHxD > r\ j\ z)   -OAhFF8FF8F1FFSHxD40  OH %!|xD8
4MND4D~D	D
	6E AxbP|(FIHFyDb9F "BH)F5xDj2FF?HxD-=H %}xD}4DFD.F
_x  )C
 JE  F*D    ZZhh[h BѸ ײ H1FxDFXF '
/	H1FxDFHxD65V.O׾ 
\  ( ( ( oa ~ ] d ] 0^ Z ] L[ $[  4${D-OFXD %P&h|DyD  $D&qzD!`.Feqqq$H xD   -*W G  (8Cx ² * 𔀕a)g)
F)@
!D $DF HxDC  (yѺ HIxDyD&hu`6rh *VFf`D0  )]XF VYF (<D@  HxDYFQF$<XFպ HxD(܁(E-%(Ј(
KPF!o B{D    QF]XF(	XF0ѬHxD$EFW( I-ѤHxD%ԡHxD^K0F{D` !   !$"(F*F  EAFHxD 𾀒K {Du(F G  r-(W"  ( x+D0A@hXN "!XFx)D0JX@h!K P7 !*F2 YF= (IF*FD@  XFH('(.Ё((A(9܄(;(84[IHFyD$$ D;WIHFyDFO0
  [.QIHFyD
O1$A@FF@FYFFPF    IFXF)F(  YF*FDUF:ID
+
yD W& <!XFEA*FF (!F$" FEA ((F$"$HxD  hB n'  \    _   [    %  n% Z Z O] Z Y Y V Y      -G #Hh
3JFzD
`UF)F5h .щFF5FY
F (>H $` $%Fwh{s` +0FAF0h{0`b(FF*4
/q \!(FF`{ %hQh+  OEBh h>h (@F  x-+0++I0"yD
pIyD޽! F -OFǰHh#DFpx+*-*	Ax09	)7>F 
$T}DxDyD(` 8FFFhF"O2  "	X  r 
W( ,@0pA_%4T}D` %,O	@FDOR% * (
^0A* pF@*0

5Bۺ HxDN~D7xWgo8OgOgMDGsJ}DB8Fn &IzD5FyD
 P&  *	E \  (K{D  !"AF ( , "qBFS!"F.C#qF8FFFO 	FO Fz
x3E)D 
cFF:
)E *_ *] F P ,NbDEG(F"FF=F; 
*1 +щDEڃD$ <)F
O	x1
+:F *	 	(FDZF	`BF(F9FFaFa (}HxD|J zDPpnyIyDx# )FZFs6VE
pQ `(FOa@lLO lO|DD
O 	
gN~DQk[P)p; .0F,0 (8F (#,EBB}*D#BBu !8F
 .MJzD 
9F .9FrF\.F .M	ED0F,F8E   !BAYF"0FFF8Bq0FYFZF	0FOb.H'xD:,JzDWpи 
B
 AF:Fs (vO  *F		EeYJzDPx0FG  p& A E ³  ! r   w x  t  ) l   F  	 l   R  -O
FFFDIDLyDCJ|DDXh 
 !r!
 n>F  %5JFXTFFDFx-+Ax9 l  P[HZ !dZF %FR (||DD  QF@B ݠFX?bFXF! 0  +H%xDG pTV:bh *(F  %U   L 
KJ{DIyDXha`FhHxDq (	K{D@b` ' l T S eT 
FLF|D8x)
HFxD0HFxD0)J!X h0>    7FL #
"` FFB h	I FyDBI FyDx )(F>   NKOJ{D𵵰Xh hFQ{!`@hH %`]h%FIhyD4x*-8FF(F2x*Ѵ  ^ k*  e*фB   ^*фB% *фB̿   SB   N8F+)F, 8  ?, 0 9,5 (Կ   0iF~  *(Fx (1x).B   ).B,   # EBB	2#BB   5 i K"(J{D-AFXh!h#`Hh h"`=IyD%(h)h+`Hh PF(h*`@h&( I  yDH Xh8(hh!jhSx+ px (@+hZh * ,(`[h 8 $,Xh
,Xh_h,iF8F (} $ (, K+T,,qBQ $&FF8F (<۸ ,  7I BEѦ)!B B hh # !`hOEF`@F@E`hR#Bs3B&BO0DqJ* ,f,g,,OD	,OT
,O@D $O TO DpAB09),,	,O |O O lOl $$3,(q  $$(,h,VB $$$lhax)(F,h hx$ O DOD F4 >   8LK|DFXh!h
"`Hh#h#(!`Xh0 5% ` F(F8
 8LK|DFXh!h
"`Hha#h$(!`XhY0 5% ` %(F8F
 7Fh +M}Dx[*Cx<S Q$0x]*Xx$HxD	 #IP$ yD(!HxD$3  #A$0OpL@*Y`  F Xhȱ`h8 $h[
`Ah1H$xDU $j F>      ;H #;JxDzD`
FF8IyD	 14L4I|DdX'hU'PF

(
;
l
+O0
4 %'FT	 )&h+ιB!TOr (p
PTT%9h4 )(F% N p  KJ{D-GFX° $
	Fh%FFA0F!FBF_8	54*F0FA:h(FBB$ -O
ԡFH
Og
h $DqBw(F9F'F  x\*@F3Q(U4Xx-(љx*UY4(U4 B[*@YZx:*@𖀞xx.OOYFFPFF RFF  H  .|P(
.
0#0<3:+
4r*.A  A0[(4*a#.a<3{+4)	 c.(U	
"T+! 
"ppqc $T\)  #.ѣ  ^(ڲ0	)C  a8)	 *ٲ))+U43
.(A#C q ;3G+4;+U4x (# F 3M -GO`
F5dD O`-O@pL # v  wFT3NHNJxDNIzDyD`(FwLIY0iFh	FU" F)F F x@HxDI " 0!FFB
2
3B F   ! 0	B #%\3}TsE	OucE    ObF  "F!HxD 3  )  ЅB )y] )FT2  V A  ɲ T   pGF*M}*K}D*L*JX|DzD)O"`h0F(IyDY+hV#`F
0!OD!O$D O$DhFmF\9F
p9F
OIDyDHIxDyDH6,\8F6d
 9 F@  J J    g i 8J Y -O
FOIOJ #yDzD
`o @KI		 (FyDLGLHO|DYFhU P*x-*ix1  (F !Ephxh
x-+Fx6@A!6!5HO 	4JOF$XzDF7FLFO $4F FZF * 4 xdEHF!F	.젹0FF (7XF)F  . O	O	

8F8F .    4  Hh
yf    -CFFD@FSFIF (K F ;? lF; + x!6 BHxD ( -<(HxDgf"Fsx1x	(Cp2x(ASp2
8x6Ap2 ( F!;Fh F`Ѓ  ` [ -CFDHDI #xDB=yDBM` FAI}DyD/@JX7hT'@$=IyDC;hDDFNIF
"N(Ԁ
D FAF"B D F40F !"
F x-+0F !#HxDBAx )FxJXhF OR
H.XT68FzF ( F8F1FOrG     ٮ    _ _ 
F/L/K|D/N0JX~DzD2`h(F#-IyDT0FhU P%'IyDB:hf7$I"aXT1A/!OYhPNFOD9"(FiFHxDD;F2FiF!n  
 H XT0     ~    _  -AF?M?K}D?LX|DhOp7;I<JyDzD"`F8F8L|D8L|D8NYhqh)orFW   !iF6FP
,HxDB+IyD*IyD*H3hxD&D-"8F!$HxD'2F#F
 }DEѠ]xIhXT0|!'  "M}DBHxDHxD      ج j  , r e ~      -OF
F|IyDs{KD ( [ hU! :uOuNDD|~D<sN~Deh5ABoK{DoK{DZnJzD
 !"0F 'pjKjH{DxDF(F4
F (  !"O 	TFO	O 	yhJz` *8FBF8h;8`RJ[ h!8F  "*(F #  J(
J
  ^( +

	)	+J


E0
+O 
J+O 
	3 		8FB8FO 
;'
Yh  V*S/RF* 

)F%%h -O «      w q S Q  Kh
-
=8@C  -C
F K JHh{DzD
` 
IFO
	\XT.FFFF9FV0mPe (nBcm "+ce  9Fmpe (
 9F0amae(D ~ 8F
FG (8h+	H!FxDO08(i pAO  8  84 KJ{DXڿx I $BMOsyD0
 F   KJ{DXm
F;e +nBQm	 QepG	 T1Eg ( 8FK{Dh8)ѡb(F8@E18
 5KF-CF4I{D4JyD3MzD`w2H}D)XhT& ] $FhhW F ,rHF j@F  ,Н  /% % .50F9F2! !8F0F)F
VLl F)F~ F:VF   X
 ާ ק  H-OxDFhKN{DB=
x~De-ѫO FIMDyD}D=`FIHyDKxDO`{DI FD`yDF@O2
!JXFhT @$IyDE=H* #xDTF ( IyD
hxe+@ɀ,{ )#	)
4HFVT1 F 	) "HF,9FPF[FzIFF )DD(F+F0(F ( 𛀒FF  
F; +	+
		HF9Fx	
b
eHF9FvFPHF9Fh	"F]IV	T\ C\0 +lBT  +T 	aF	 FBJHQFJJ#FxDzDb) F&QF	 F
[FV0 ! F;9F HD !6L|D	xF2HxD
(F (eP##IrXB(L0Yh#!`(F%h  +OY4(HIxDyD J	   "	 ަ +? :	 ̦ 	 >  Ԗ     
 ܊  ɤ   -OFFm?Fo ' $ %DDHFYFOb ܹ XHF (S0FTME 8  #YF3CE W к "G@ 9$EHc
CRxDk
N~D  @1d9FE 
H
 xDBR
N    Ч` ^ 1 Έ  pFFIMyDK}DX
hO OT" O 0HaFxDPFnh& $ $=$U1F=kh@ + 8  p j I -AF
FILyDK|DFXhU! 
]4 %TFICF^L#T~0F %  4 ((F     sF&H'NxD.~Dx#HxD#I F#JyDzD
`!IyDJV0FhT @4HExDF!FF FxFz	
  ( F   )|ߡ Z ԡ  8 С  	h hK{DhKH@BX +F+L@A|Dbh hfhF `(FG& 6f` i O  80	*A a;+_)-)(F! (JzDh f  -AF?K?H %{D>KxD>I{D>JyDD]`zD<I`"FyD8F*F!@s%5NԀ~DDv FT5H! 
--M!-JvYzD,MF0h}D & !W  (h (3&K"&Oih{DD &+hSK+`:h( F(`@FtH!FxDH!FڲxD4L|D&hd0F x   8    n   ϟ  (K-CFF'I{D'JyD'MzD` %H}D)X%HxD
hF(!N~D0F6< %T|/!F8Fz@8F
бT0FFT
F@F78F8F %  4 *(Fh z O  h o KJ{D]X
P  +h`F  BF. 4Fz :F  OR
 j
R  h*hB
] B  ? +pG  
K{Dhx\)Cx
+
h0K` )	)0pG &  F hh` )pG  K"{Dh@,pG  hKhA_h`h "`FpG =#FC`  a FF di#hԚC  ``a`iF JzDh`Q8,B` h F%K %#I{Dh
XhBhlEhFD(,T(< +T(<`T(<! "Xh^`FC,C,T(F3IhB@.7F@' xC0}D(`T( B`T(` - J Fh i"hF@  "AC"a#` FFK{DhT0lB'.FoC& 'D0yCT,- 'D,O`T,,6PT,3aT0,BT,67T4BD4\  -AF &)iOQ&@ ii^ FZ<F ,*i6B@khB  (``  Kp{DFhT\\(h!h`(`T\T<,hB
Ђ`O@pFT<`T\<O P]h.`T\L(a``(Fp  FhF@_0FB4 B)xjxOW'`40F)F"``8F)F" !` F@hF     !A0 ix8#h
Y x8!h! r"`" r"`#hCp `{
@:XB8FF
F ah#iS!@ )Fti , F8-GFFF (U hah0 `
(.٣h++&JY`zD2O  F iP%` AFlY!0aI!`VF .5fhB iV8FJF ! 9FF  t8FahD"iR! a#iC!PhJ`(Fj2 FFFah,&i 9F8Fh"hCP` `(Fi3`@D5h -8Fh;\+`\(F"hBxP `F87ED
 F (>  0	
I yDO5(h@k|cEA Flr (F0 JzDFHhxDR<R8,   -A-FFF@sQ|F
F~A0`sJ@F E9FzDr+OZx *H!FxDh{@F9F2F:AD
H!FxD8 @F9F2FJHxDl V 5 4 @hF@-HxDh0iV |!+FF8FV !hAr"` a iHxD | -CFFFeN~D@ 0)F `86h "  pj	
 x
 
  0A_D,x , QO$D (F
FFY   !" )FBIPB3 4F]
7)F2F !U6BM-)x )\@<4pPp  F)] )L ,?V|a. <䲝	@A, 1ɲ	x& %/F {l5 (!(Fx4F! k		Ӳ++ $&F*x * F	Z  $K-G{DhT\ -= Dm2(F`kq\O

FwmF
T,0F5	 T,<YB@QEE mH#m@B`T
z m  -CF+K{DhU( BAhBO /#HxD*TB +
8FeT,iTT
8F4TDHF (U(<XhB^`E(,U(<h"YhaEн . FhBa FP1`@#F"hD# O	@    ix   -O-FhY@HIyDh#mBHiO 	NFMFO

i@F%T,,
	 F6F-:F^(F YFBF		FL fFE
 #U`k)F G bkB  D4iB(FqbjBqamBhDFT,<J mUCB 5 Z s 8F
F	 F%aY F8F9x#FqF F F@hB q`  pFx0	*C  a8(_+!(F=!Fر(FvH !F5U(FK!F{DhRL)F Fz p  pD p
FF@F(FF0F!Fp@-@F#hC  ` F FFZ  F0 @޿*Kp-{D)Nh~D`o   `gg k;k@69"obhMV`}DkF l)FwF (x )W ((FF#j#g)F2 F@to   p   x KJ-O{DFXh( @  vOPD` 
x!PӲ	
 HFOq
F  DF, UF -	JxaG_[ &!F "B (2]+
	8FٲF(8FFȱ~vF
x1
.H>F 6]
( (`.F/F (!FHFj $HF
Y1
KFZaX 
E
DN 
PF #F #  E
 *F?x X& %UHhA s`]U( F7UF#
 
0`4  ϐ B8F
F+h!h#@ A#`(iz a FT F8-O-
FIFyD	00F!FF   KJ핫{D핻zDh 
ah E8?h

F ?hF/8F3F /HF,8Fz @
K'+ X  P J (  qqWff
hA_ 	 h@ "`
h0bh (R!h!  `W8F (ENHFF8h k@ `8`h0xa F`O B`iQ+0
  PF~i +ShE xiAhhBh 0aF8F$i hQUD!hF|!IyD  HxD{  wIyDIyDr   H	XT
op
 *Xhk:QF[           A z  Ҍ ƌ  r 
hF \ < FU#F!\ QF
{  iQFDyD
 (xDhjQFj	
 QFFbXF
PF ,
hA__уhO *,xDh8F(
h%FPFYFPFfhE<<0F9F"E,#E<0FL|D ȋ
 $h.mBlh'h + ʃ8Fq<HFjAF (0FIJJ
zDh@kCFh

 ! "AF FFA
EFFAx! ABQ 
 +
 8FIFFhh A_HxD8Fhh h1Fhh YhHxD0-IF 
9
qF`FFKZ
@ QJJ<

hHChB1FhU<@hJE<F 	#
 +
ڱUDAF]F h@F _	ьIyD"   "}  UP<EPUP IyD
hD 
PF\0F  0 +h tIyD
h4PFIF (


[nHxD H PL L0F =
  # . 7 @ I R l v   ]IyD dhZK{D|
WHxD+UK{D rSK{D RHxD nPK{DOJzD jMK{DMIyD hKK{DJHxD dHK{D$Jd[FK
{D [@DJzD {[
 N  
:H+xD
"hkF
8h4Hyi :xDC+@F
.Hc+xD И A@F":++#HxD           ~ p X#  P 5" F& =w    n n \ B F , 0           z N 
!J	XT0 И 0CUDAF h85^2UDAFF h8 F rUDAF> D XF F+HxD +J0FzD n F1F 
 jHFSP	ܺ-,кMк!)mкp"p	p	pI`pI@HF`HF (IJ@@0FH%HFjnk"U4,B0FHU,p# _(kFJzDHAFxDF0F
8FJ8h D

8F;8h 5
 0FHF%
@
Q
8,PPPP
P zHxD [5xHxD K4 9tHxD k&@oHxD0oHxD ;S+D  @D  {Q7JNA8ˊ _0F8FYN~D 8F[8hD, OHFP D" O
8FDHF@?x@+8FFHFU<FPF3`
+
+~))+5HxDԿ ""+1HxD ""@+-HxD ""`*K{Dh ) 0F{"HxD>Fo$i_HxDhS, ,.0F
        *   @j >     t ` B   p \ H A   𵇰F !hF"K{DhTH"DD,iFTh &
iS&P(hji
i -6TDMhB8FF FhF@_	L|D#hSh$h" :F(F1FIyD
hR\ -%%*FF F9FAD( F9F0F2 F  -OFF_K{DhDk FF #FFF	 F6	
`)F:FFPDBXFDSM\( D&(3 *:/(;9(9&(0O n %
	
[L[P 
 F
[P<RFF@DDO  (BB*x (x5#F HF)F
"@F (?uF(Fp  F)FF@D2!
JzDhCk2!F2EHFAb0F)b  -GF % ;,F FFhF
!oPQQFv
(L  o
(U XQ45,OX

 )ѴHxD]		   G# a C        
UK  F)FS+8A,
hH_F0K{Dh1FL|D h q$F(FOW!F4F(F=DEHF0F(FF 0`+*JEJF,"x		; !qEFQ
F@+
C 
&
F 
FC
F$ 
FD@ J0F@FFC a (عL; +0FZ<@FF F  
ݺ gHxDhQ<; FAFBꀱ B %`AFJF5R*FUE " F0F*,LPM}D-hU ML|DD!"FF@FDU  #T0FU shO )F] "F@/(HZO2H4J4IzDyD XL:5.IXLyDZ*&J0FB, F@(" (F!F
*H "  !" 7
0F8FY0F k   \  ?}  | | -O
 $H
 %FF@FIFiFF~3xj%*YxX%)F**BHxDYF+z(FFe1xF1B  a8(62x  0p@F IF+ c+F F  D,h FOʲxXF9Fs+|FA(F9FZFF 	*  YF:F #'B<F7F2p>x;F}PFHF(Fa+U { K{Dh1@ H K-O{DFhU !E#n**nknfj`+`U$LDG FhE8lxF#)FF
( ("x
*6`   ̀"4`&FHxDY
++#x"+ !41pOVx0պ/-b`F ,
,\,FK2F  \(RERFF2FK/, !TFp&.Ъ0	)@ FAMBE"&x.._HxD%O Vj3v + F FZF!   0\D+`M 0	)B  a8(_*[DEK&F{D  J a;+`ٺ_Z\xF20	)YF a;+T_.Rf    FF"x(*[*	4OfOvO fO vnO2E$L I@ 1?J[p.f!.hHfnfOpv(`n`hhBfM HxDcHxD`HxD]`"F`l  2!> #  * d   m @  1 + -OFNIOCCHH 'HxD
 H		LH|D#hhBуHN`FaWFtEЃLF|D&h1hDN F0hLdE  BѾ_о_a1`0hp Fa6h@ _O2%h%C#`NF YN@   |XJ F +    -S-@p /{еNFFy oXصor_&е _k"OQ!`ZHYF(OR"`@i`ZLYF`kQ%hO `E ##`5`GOP `  `"9t4@ POR"`")F  `XF)F"OS`Z@`
 F HxDS &` NF0F
F?	%>>' %!> >>@ (  u  \ @  FO`@K{D`hAhս@i pxH<	!hJhWuL|DoH) _pmM@%FO0nK{Dh h Ao رo 𓀱 o 𨀱o@𳀉D_8ر@_@H_BбL_@"UH#F`O pT\,Sh`FMH/T\Hh0app@oF(F `pO pF(F F i0aO 0X`p D bhFh@_3HxDi.Hh`h`   [O1`h`pO0`O@F  F` ,/O s`pFN ``h 	*hO`@#hB)```hՌO pTX<O pTT<app@p%>%>%>  %>   h  K-A{DFHhTXlTT|aFO pDTO pDXO0NaTT,aT\TXKh`a(FDT|DXl   "@KAO{DDhA$`i@Of<hBD\3  3D\<R0O `T$\T@jhD$,FF``hTH+hCaX(`Op	5D\\|TH'HJ@бOP`FH`ch\O`Tp`OH  %>  %?0 . -OK 'FH{DxDOp	
IMyD}D `#9F0O@Bf"  VDD DLDHDDD@* 
XLLSF F9H! Fx+DF F9
x*)"hBc#`
`
7
  ћOlD<hi`jITDyDIoXIyD`TDIT7yD`TD`U0hعJ  I	zD
 
yDO`IyD 0F7Y/hF$O=	8F=!FxFm9FFz X /rHxD,iUh	 )&PF %O	D<F	Q(F!@r[FFHDR (D !XF	Nhe(F *QK{DD<<	U	 (	V'  (D		=nk jW?J l !zD &>6 l1F8Y&  *TTt|/Th  
TP,UDP+D\l)D\l8l5TtTpTPak ( h)DP  %TP< +        Z =  <  D p p p  p p ]p o o _K-O{DF^I FyD`\ItyDDZHZ  hT%pvhVN~DVI$yD pSM "}D*`8FF0FBF LK!{D	`$D DO 	ODHZxDT
bhQa` ) FF#h#`hhBj` *(FF)h+)`XE+Sк?7F,F F9F[
,O:2	YF:F +FO	3F0
?O	 F9F,(F1F(HF
  
  n u
  T J >  	 
 	 BhKh h	h `FpGFhF0*x/*@AhhhF`(FF'  hK`  pF'NA t~DE*hShXP` ((hC)h
h
`kh	YӲ+i`+ ## # @a2hC
(D dՠA) 0 գ
	k$T +OP$t$C # Fp   (F(
JzDhI(
HxDHxDhHxD A{pG k  l FMFF}D-h]3h\бJzDhh	iFFF0F-pLO#hC  `      -OFUFFDDNU`hBa` " h 		 O 	OF/!hKhZJ` * h4B
!hh`HxDOAؽbhQ	(a` 0[  				7+hU,B6FE $ " k -O %
PFFFONpOd	 !
FE F  x`8hl !aQ EYF8F FO\O^
bYSJEcQ#		pO`	X 	pH bY* CXo C`zh`YA0 cYQ3 PA3 bYSQ2 Q3 (O FcQcY 2 K    Q0 Z0C  0cYB57-#h % 5B	ghB hhB '	o 7OE
ah
WEHh[hBDOO 	DX	 T	0	H FZI  #L@303B0"SF		"O 	XFH\
QE 3 2[EB3   "[E "YZ`^:0RFYB@*02@"00B
EO2@*  P	  eCFOhh3@"EFIF#R3A[EHFOAFU#h ="h #F`h 
B cE
F  "I# 3 hB' F9FXFzYB?BӥHxDh_Ա8OqO1O`d'%F@F! #
F FR ) 	W!  pBB   	
_O  yhBn9h AhB   !9F   BX' O E 7
ABxX BX' O AhB8
E!
!O
PF(
F B 
 J   X' H'
J3W/ *<pE}OYE\X# #FhI,phGh /@FPF%hahh%JI  	UY% O	 (LiphhS!Bq` "0h
YXhJP"hB` "hY;F 'FYF0F89FFPF3F    C5 hBS+bE5#hBHFL @4@$-O{D8D8d %X~D0thDY	PYCF  !
F0&4 h(!3FFFhYh3CE qFPF
FPF FIF	w ( F.LF F9F^
 L 5- $D&F	 zD !O rHFCF2	!O r;FFPF*BЅBF$7 !?3  & & 1B$B , j.JzDh@q
8~O 	'LFFO 
O5{(9FYEF 1R0EYV!  2YEF P  CELV ;TZEJܥHxDhHhiA H cE0B= #CW Oh 
02^  @X^ J
1B3+5 FA*FF F ``FQ`2E
BF(wi {K{Dhպ  K 񦀹 uHxD 	hqHxD	YhnHxDmHxDkI %yDjHDF xDH FcYH
ChQ* OL
HBFF -!+!S`CEFBFE	и XF !

5HH
@%FO 
xDO-	HE,O O +h; 5  U,U<+!@F 
 U,2O	
B FJF
D0F@  $
Q	
N FhB
$ $K{Dh
hB `.  *e Q $  ~  :   }b sb kb db  Vb a  -O  #
FFD=TtDFPxD`L#F"HC/xDD$yD`(FzD<<yD`82F yD
Wp;h	
h0F=%
yX` -&/FOhxDpY%0AF%0x-*Xx 17F15-H!xDpjpBOPpAOHxDYj0 pLO@_p@OO	@^ ! "|pp 'DDV'0[	`FL
8 !SF(` JF!hhO Ъh75/Ck`khBhQ# AF (DDDBR!p 'BS ` &	' . <%.8F1FFO5 -Կ $$ЩIyD
h09F;IyD	h1
Ź	 ,1F+
HxD	#IyD	h1
腳 ,JzD

XHxDR@R8,HxDhhC
`jI
Xh# yDZC2hP0z  jpLO
pCO
{H
xD= OwH
xD  pA OбOqHxD&C ^OF BhKiHiJ{DxD 
zDgIHFRFyD 

a
@>
X P86
XQ<ZA, -
X P8 
XTKD<pBEiBQ	0pBA ^ #Ѕ 
X/!S@@F
XR@ FAF9h!A1B@/0F   1F 
XU@"JzDh hL   `   ` v > ` 7r _ WW   ,A ؾ @ ^  | >^ N^ 2^ U B^ U U ļ FF+ *	*pG  8K{DhThBHxDP  8h (j#`ahiBuej#
uePj#F h3B@h;B8  \ F(K{Dha `  (FIyD	hIhBܘBHFxD     \ -AFFK{DhhhABHxD) :FAFF  "`jhB  0Fw F `Chc`#Ah`D`hh+cB0Fj`A   R [ -OFYK{DhihJBVHxD   !O z@FhiAF`FO
aKHxD|h
!F XF  YF8F rF{ F @idDh7 aX`+hiEYFiihahhB
pO`hiYFhhaah0FhiwjiaFh 	` @F90FIyD  8F%(0FrO0 $S0Ff
JzD
JzD
H#FxDR ̺ [ [  TZ < mZ KJ{D-AFXmNO7h~DF   1F@Cݝ.)ѝ	0
+ѝ
 @ FDF$)hB
m x< -ChFFF78F "F0F?BIF*F(  <BO0-AFFFFFJzDg /+xKM}D.xvH4FxDo$HxDB)F@B(FvF FFP #0F)FBF (	6h4BH)FxDJ $ F wY  dY p 4Y XK-OFWJ{DFMXO XFPZF h\FhDD4 "x$)ONNNNNNNN'DIyD
hhCJzDhKh 
RCxa)>HxD  ]<JU; 
zDh[h=COb(FFt/!(FOb00 " +@  0(F AF,0:	* #O
0`  0<`0;Fˬ0	*ٻ  [BPF=x+)-)OF|0O x$hB
m  : ~ t X J  J-AzDF
F\F (40FFxK{Dh hBۨBahBh.p4 "hch6Bȿ ȿ"```=h8Fzh>/F`j`V .!!cW : -OFF%J%OzDD (>(FF (8D0# h"h ("z
.8F 	IWTF Lpq 	 +PFT`(F5$hEE     W   W 464&{D-OL
X
DAOh
DO2   yD:FOc (@D:B $8FpI5{Dh!hA ( 	(ѵbh *#j  `#a
W (&x,)BG (
&
ch!
"h

F;k+_c+2=+ ^	-+ W.+ L + Zha+@ff+*i+d+@^r+ p+TVl+@SKw+ z+ s+@I
0

8^
YIx! )	)@60Fx[ixDxD@i c0Fxa/@xxD&U;a`'
"
0F
x`xD k ( O1 P#(F:FyD ( 8Fc L y+Hx  (	(@ׁ0FPxxD
gh

1 (ݮi *ٮpa
J9F	(FzD (Ȯ
D@1FObDD ,	,@HxD!F@2HxDF &!FkF kHxDO Bg)p)HxD#O )ѝE (@pK{DxHxDt(FF (?t@AFHJzD  &FF FJFp 6(F)F " &$h5}#h /3c+ 0RFDh
	014h`D )NѸ (F)F$hAh2PwFh `ZF 0RFh
	x10 h8` Fahy``;h_`2iB7al (F)Fh<h5 &FFFF<FO	Bd vHxDOx' /	/@0Fbh!
xiiHxD48gJ@FIFzDKF ( FOq *_H!FxD<@FF
h	{hB F
E0Fn?

-h F
0FIE ( F
/[HHQF:FxDnTHx!h-(.( $ 
1 F<HxD7 h*FF"hP
8H
xDL1
'hx (?( hF "!.HxD:.-HxD,HxD ,?Z[*H@BxDf&HxD
DhB
 m X SV Ĵ T T T T T hT ?T  T )T 5 T , S б R tR 9  Q Q Q sC Q Q Q F Q 8 
FCK{DF`O```aa   b`bhhh<!a@ah > ""c  8d 8F 
F`#h+`ZhB``X`8@` ` `8  K{DFhKj+݂hxB++k F # #IyD
Nh@ F@?Ǿ  C Kp{Dh`k jC!kj k &`kF)l)F`kD(F`kfcO2b"cp 8F%h FB,F ,8  K7{Dhhai % IjyDh
h"ebc %Xh`h`j k`k`keceb>( O -Oh<  #FD	
iFPxD`L FyD	<X hF  	x`O08cb !T&p?hh |IFT& 88	T& 3
 %/F.FD\ 	F ( Hx:bxDF.@怙  )+)-)@ـDIF|D$h  0++?-+= +. jB"b & / -
hTdXh~D+F1h`h	2Fhx )3  #h *+"jB "" " !
 #i i FrO 
JFzD !jiKaFh ࢱF1  X )	FO
F6hFh 	 Ez .8ѻ I jyD
;
FGF>hhQ  "bb
3h
qh`
phP`0FC
hB #
6h!h
Bђ	 D  hbb} !#`cb
.ph "`
qfj{ & HIF"xD8HIF"xD (@Ѹ 
 	 0++Ѹ 	 
&h *@*	 hHF\)њ 




 9PFmsE+	)HxD    XF ` .@HIF"xD@ (@L(	 
"|DEl
)F$ha&ab`
x,+0)F
"XF a 7F
")FN`a
x,*H
")FD /Fa (yHIFxD%j   b3 Юh	 	 
nI0FyDX й  "

) 
 	"cH
xDh # ahBѢ1/(
q

0x/(34   (RL|D!h 	PH1FxD0F &WLH1FxD0F@!&FrIFHxDhRahB@CI	yDB ?H1FxD0F/!0
P #"pO10F1
/ p0F!4H1FxDz !0F<1F &b/HxD3`c cj kHab&&K{DhjQbHF  HxDhk)    sO iO 9= ҫ  2 M M M M + }L \ L +  T eK ^K  P* 2K J 7  n  $P]\.xB~x .F k44 k]4 kB #p  8
FIBoO3  F& +]*!BBЂB*̼^O3d\*г?[*	ЊB8O3 $$ F0*\ *HxDW I FHFM}D5F<9F  F2F'F F\F5, * F vI FxF
F0	*
"(`,$+O0b`$/+\+!0`x F5)FzF(F1F6F  K)F{D8`Zh(F -CFxFFHxDG0F9FNF8F)F  h=pB)FAF(F1Fz)  H pFFF Fx4	=))dF 4P
-%dEHxDSY0`
\!U Fp_H -OFL|DYH*FxDF P(FFF 9!j\(c@~N~D  (FH I #yD <(FQF,\. , n#,txn,M}D)hJ*`I0FyDhF (@WY, F0F""ibaF0v],.E(FHxD(F x!(	є(pI(F1xHxD*8F2u	[ѮK(F {D^h!abF60	*
x^+.
"j`b $	ʲ**x^+$(A( 	D	FD
HxD 0 +x;  2F`]D*Цih~HxD.F
(\(6	8²**0FjF b0F #)F F(F0F5عѡi	hgHxDo(F * w*Di j;
#)0aa	(F ZIyDFvF (S(F1F8 bL
@(FvxPCHFXIF3F FHF~HFL3FIF FHFrBAH  # b	 j   j\ C3Qp\\ ).*0HxD*`@+ODDD)x )(L|D  #0000i+?
I+?#+?;+g+w+?}+?p+֟ 6H  | P G sG ^G  F F RF  E  h  ~ o 'FF(F
!0F p(Fe ,0F@?.8FL|D0B @1-  @0 K{D PT 8  z -CFx
FF
,FD
 
$HF)F 0 +x$.  )Fx$.0F)F4FHX 
h"(F#;M$H}DxD,p<p \  " -AFLF|Dh2F;F@F(FF (ѽ  -GFԐF4NF4ODР~DDDMtj0jP# PE.IyDF@%pu5uuu5)IY@(M}Dlb FFFX*+\
+ s !pc`hBb`B FB# #h#`!FT # F$P%P&P'PIyDiBaiiB# % # 0(F  l j - a+ 6 Й K{Dh>JpG  -O
"
N
O N l\7\O 	{DyD3FLxD0 - 
N		}:FN "F$oyDa(`@
_3 i (ѦivchchPݢi
hHEHE`h ( Y ")F F< ( VN8 & &(FfA(N#ii +Ŀo#aHAѸ HE "hzh` 	 ")F F<z" "(bA(*0( {+X   "* {(2}(: $h ,xDX @Ղah&zDg*0=;<+ ɂ? d ZJ M_ q = *FtJFyDhlyD|(F
!FpX% #p(FzD
#h
N
 0pg@(FyD4(F
!F ( j(FY
ThPyDo#xDO )FD
(x 
" <( 4@ @&4`{D.FyD(3   O	(

	jZ,aj	BO p\J1QE VDREs0x (p69lp\4YBۻ  F!jO ,4{D6\(  0	)'$1zDR10X	 \YPhB&(
j\YjB  ( 
ZBR 	
  

 ajVD0xc!" 1F
"
<(\PF (FRK{DP ( T(_2h(F
N;Fi ) >(F);F 8 jF
0I jyDh
N
#((_ +@/J
# jzDh
N$ jF
0FF (0Fbi)(F;FwK{Dh2h(F
N;Fk (F		
NEF}:FF  @FO   ׀(F		F@F7(FTs
!FUAF
N}:FF *  & (@&j . zL|Do*:) j(1Fh ( $h ,qH1FxD]BAx3\ . (|!j #(FfMl}D(idHxDFl%(FX &_HxD iPF(F.F 'pWI(FyDVJzDi )I(FERN~D0i8(F0a<NN~D PF" &%(FF FPFCK.{Da !p@NAI~DyD0i襱0i)F<OD8i 9K{DaF# 
'$h ,4IyD
h2h
N(F;Fj
N 9F(FEFn"iS? &fhg T R D  A  X /0 2   ? Җ    ʕ    F  < : L  /$  ڒ ƒ   # l ^ D K-O{D| HhD
FXIyDPF(HxD4 F}L"}I  |D|OyD|N!`D|K~D|I

Bl
{D>`yD(F :tJFX  pHxD,mIyDKhCJ`
v (PF
FdFXFF (XF| )0U) 4MTHxDELSJX0zDT b`F!hA84NNNMD~D}D/LHMIxDyDKK{D#``JHxDiQawT<x-*QXx (NDIyDDDGTHF`_F`T0PFPFN&hT`r/HTxDFTQFPFThh #o+sksssHia	h )T; +HxD@i# j l : :  : ȕ   : Yڐ  ` $ D B ~# ! " & " & ` K{DhhhB<
+:`pG K{DhAhhKBx
)2`pG K{Dh2`hx	 ((pGYhHBpG
)pG~ ])))
[){)})
#]$#}$
O3($	O3[$O3{$#)$
JzDh"/hxB2B:RB *  nhB  K" !{Dh fpG ƒ 	K{Dh)a1ȲpG))U D pGD pG  
FmBFK&{DhV'  Fi]F'  F v aK{Dh !p@L   iFn	K{D hȿOqZcȿOrcȿZc( K !{Dhmm> Kp{D
FFhmR>0ee*F#~!T3RBmp  O0iF ( BFFKFCFJzDh BӓB،BӔBғB FFbihp+h*jBn`(tBk`FP(b Fz BpF
FFFF *
 x
("FSx
+
FQB F	H)FxDh F 1. F)Fp@ Fp  F> K{Dh`hh he`B  S`O%hbmhEQaeahZv`Kc` #I3p+ `  %`h1F  !:F0F"jQ!b  %(FƐ 	IR;yDh ! :p"#d@pG4 KRk{DIhyD:u(F !"3F ;pI(F"yD	!d@pG  4 " FZ h!FFHxD@ſ S4 -pOFFiFF (@F
p@ O6HAFxDO5J3IyDh2hEuhE/HxD !@F 	E #%JXFBso D!F""FDHFYF
@FaXFYDBBc HAFxDa0jB2bHF !@F  (
IyDhBiBCa(Fp4 X 4 !  4K5J{D-OX $x@hF!
/HxDF'FO^
DD6+9-:-8Л-6	-E@ "++F " ?# F ! ;apYF`
-F$" #+Cpv(
H9FxD!  B_ -- FAFr4".#H#  V3 ! 2 2 =-OFF:JFFDzDDF
,8 _ݹ  0XhABUhhBQUF.+x	
	@Ѥ	߲/;/97F<.ѣ	 )7)5.	ѣ	// ''.XF!F #F x.Ѥ0ز	(D a9˲+_,ѫ /
 ABQ #F
+(F2 t r pFF0HoxD4A!OrZ-!F5*FF0F!FB,F $:0FO4 Fp 1 FF
FrF0F!F)F"F=F0 &
+6? +1F"FFHxD8F@1 -AFFFFH9FB0F(0FAF"h5IyDhi#K{DhiCa  	KF{DhhB F
!B "FF  K{Dh
hB<
+8@ؿ\ K{Dhh` 8 -AFK ${DhF+
*	*	1n F8 $** 44B(FqhBӽ  K{Dhh` Ȋ 	JFzDhJhTB
!Z& (FF`F K{DhJhSBx
)0  K{DFh h<, ` K{Dhh` @ BFFFF %F
HxDh Fx
,5DBqhJB(F  8 $K{Dh
kHm=4B۽8@ Kp{DFFh	 .`m"=`e -HxDhamhB8`hB`p@   K{DhhS` d !
"BChF #  (Կ   IyDF K!F{Dh p  KJ{DXT1= D{ K pJ!q{D0MX}Dh*hFkSkB`BY
KJ0 !{D !"&+hB
0${ ڈ (. K{DhkH !HxD@  - h	I yDY ! UK!{Dho4`i  6 F)IF)KFyD)J{D$H
hX*i`PD!H` ! "r0FRF0F;HF(H1FxD&xnhs +hVB)haE8aFF!F % 2F+F;F;4B/ ,F Fܲ ܲC  Lz Q- O3
F`xF.).ND~D6hhD')AxA ( 1ɲa94˲+F%JB3zDhP# )> hr(`9/)F0FF0FK'x{D//h4"Fh1F`F8hS(`0F$)
IDyDhrhPF0h09	)I*FyD$ FJ "   ;, w  	Ko{Dh6qAHxD
ir + 8K{Dhnx`o [`gŹoxegg8@ο!o~)FHxDbK#g(F8D + K  p{DEAh!v*u2F0h(`2!
"#`!#  "*p2hp@^ -OFFAK{DhamBF#kgeYrVB kO 	fmE,`m5`e  %BB9F{!kJue %F`m5?`eBB %'0F		2FE3x
+`lB	+ѰEi )!n(F:
++ 556FEedckaleEP`dEј 0	+ !adbl `p K-O{DFhNk~D`ek&k"kgkAL		h<@ 'STeDF &~%K`hE2[
-I(-@ŀ- -Ѿ--	- #64 UF0FZB %
^!6-@5 ?%6ETۖB
b2Fz n6ahE"nakSB۳EFFckeB

  ! ehE	@F
!t h 4m1+ #MF `B5B " "F `E;B "fl%u B" %"FEؿFBԿF %±
0FZF8F)FI"CX0FYFT37#kXB.k!lbl .%b b v %K"-A{DF 'h!FfD0Fd F0F!F%
(#
(!(Еh B((	<(0t@Fr ,
C+*4)00t,  0F L 	( HxDQ
HxDM	HxDI
(
( @ Z& {' g PK-A{Dhl (iѥh h)F ajEF
bh(FQ$>p Od  )xC
 'pi:vekD#m-%i4K{DbiDD 0JzD/JzD "D 00F#~ (ۅBF:q #`+B #Fl  -"lB:ud(Fl!(FfklO  fEܥdKdk!lAU r  & & 0 &   & F  FHxD|K "{Dhd F@6'&  8n $h
K{Dhd I yD!F X`8  ]NIyDh K{DhkIk :`  K{Dhi
HxD@HxD 
 HxD @\ u% #  8F	K{DhhhB*hBD-hB,F F8
 )-AF
F!F&^ `U  6+9?JzDh`UjXbs);M &}D-habd,
*&Fbh+hBf\1K{DhhB--
<
+йh8hB`FA]!
-
%%TF8iՔ HAFxD阱 FAFgZh`  ( Y`  :i
-0FCIyDFF`0F!F"F6F0F6p0F~ ~ z~ Q$ $ pFK{DhF h. P`
 `````e mB (F
 e . h
!A %(F!h"F !O0!bp"`bp(Fp } -OF˰8D1x[ hI ) XO4:)}D6,h ?(F9F`P0F; +	+%+ 9F hOF+ *	*,*F0F )	)F3x6 +	+		( !pKF(F+ *F+ *	*
	"HF	!!  &p   (FF (F	!F0 (F$!0F ( ҀDxD~=ѝ%y * hh xD]	2FyDP訹 +ڦh0FF0F_F"(F9FF`?	2FyD2 (^ j0#	xD :!m	x xDF@F (P-
&5T% ` #&6D&0 *
&2T"   &1D!  9Q%mF@F (L&zDH&zDdiD6{D@6{D< ! xD)F',	2FyDﰹ3SxD9 mHF
G ed	2FyDhxD@8	2FyD (H (ڧh8F9F8FFxDDDD(K @,@, , HFU &
,,^ ,@4 &?$ FPF>B٪D	2FyDB8	2FyD:@,	2FyD2 (:Jq@%j[ !j )j[  hAq )@xDn ) ځxDq	p@Ё +xD;`	2FyD (Aѝ0xD .ڠhF (FF "HF)F'h~"hցqi(F%F`iX$zDT$zDTIF xD
 . 𹁣hB 򵁞`4	2FyD`!j +?qJO1[ `f	2FyDF (@1IHFyD (m iIyDIyDJzDJzDCK{DK{DHxDHxD $nHxDbAF"(F'V IFSF' (&(F2FIK(FyD2F{D IK"(F yD2F{DIK yD 2F(F{DI:FyD(`hIyD$Z*#f(F~rF
MFTT^FPDDD+x +
s]8FAFR ( F 
O 	AF0FD (   (F -FڠhF hYF2
: ,!\FXF9F"*F 
jXF1Fg D FE F5FBݩI	2FyD HxDI	2FyDI	2FyDhI	2FyD0xRѝ%0 +Nѝci )F;*HAFxDr9F(F)F:F	F@Fp`@F\HAFRF3FxD hB
ahKBNE "O0"b`b$x)Н%0q+n+X)Q+N+7NE5 !a2lI	2FyD&@ *ڦh0FF0F5F 9F(FD9F(FnF &0T  F)F"FFWHxDR	0TL|D$hh`QHxDB+(
,}@F&.$IhBKdo } 	" !  ! ! `        ! ! 	! !   ! ! !   ]! R! G! ! ! ! !   `      z  f  *   
        6  9  *  2  )  ,  #   :          { . t 1 ; !+{D-GXF"3h, 	(!@7  *9:{Dhi( 𐄨hx
)"a ,/@򐇛/ ,F "#`i+  ,*@v* sh=-   Zc   g                       
      +  ;    ^~::::::::::R9\ \  4AV_          2 Z    <&F  '@p0(yD=h*knY}D)hksX!  F 	xDhk(  zDhd xD8hj]b - xDp=hjl)lh`jCb +   X 'F}DxDt)h d; uxDF:hjXb ( fp(zDhkqHO1 XxDhi	 'ad I@xDl=hjJb * <@ a=- ȃ8{DhP ,@ a:* XB2}D/hW" 9hB zhB` Y'*@W}D-htq(hhBihJBp18Fpqt1><:x8F;F|` ,@ a=- qxwB5D9hhA%  ӽhW}D/h0&3W# 0dFPxDx
!ꐱP,Kp,ѸhQyhJBѹ`p,h2 7{Dh &0U   * @FF@F&F8F&1FU!X8` syDhh
j`P (b@e96{DD PPF9F,X(F9F
 hME/x
/
x
*@6DxDhhf8xDhYn ) &h_hj}PBxBx
(ЈB`jzb * 	xDh]n - hyhB	=xXn
- lB h`jOb / U}D>)hjzb * ڼU}D/h:o *@҄ #3lpgxg Ƽ #岍0Px / BxJXyDhp:x=pHxDh   0yD
h0hGx?-AxDhphY:x?*XO7 'T:F}D-h0Y\`)h{jhP0:FYJ ( 7` yD jyb ) LO2xDyDhht"DyD=hh  ( 2` -0,ltD:hj ) \40
 {Dhj !b HxDk 84{Dhh(hF² " #W"FF8FF'<,x	)F
 )FO x *	+nE>,	!K?s /HF`M}D/hhx
) B`xB,O5%ppDDDW, hW]	?++	 p!*FFh` p!#*Fh!#*F`W,`HxDhjSb +iJzDh@F xF
+( (ȿ= "#`@F)FC,`@D$Ig(Ѝ g! " 9HxDhj
'bM}D-hkhjY` (OD=h+kjhmB`Zbjxb (+ JEI#yDhpOO DF=hkhhYBjJb *S *j`P(bhx + C	+?JzDhj`(kBAbjzb *@- ~JzDh/khm{ 'q`Oah7u`GEۼuHxDhh|
/
nK
!{Dhh/`5h
!'`fM#}D(haX, x$ 'O7`K{Dhh]
*
X,H`h "#F`jYb )s,@qbBZ(hOOD=h*j * oiKH)mxDkh(mZ)h (0@P hFAHxD6D e <s q q bq Rq Dq *q p  p p p ~p Tp 4p 
p o o Z (o n n  Vn Hn m m m Xm Dm (m 
m l $ |l 
 hl 
 Bl *l  l Tk *k (k &k j j bj Tj :j j i i i hi Hi "i i h   ih*h`E@𽁯aaI>t4b,O7'l{DhDhDh)hBkhYB 򜁨`]	:в( (@hx0	+A a:*_)!:F#HF	x1h!#:F`jCb +ny,дY'/  '8F y% F-F WH)FxD0c,K{DIyD	h<
+8x * 	*ѥH)FxDPK{DhBF;F`+H)FxDhHBF;FxDh}` \$c,

!lhgB``d,7
c,Ic$yDd,Id$yDzy,Y,IyDpJzDhp&7Q'P '(F,(x
*7YB(FFb:FCF HxDOD=hjl)lh`jCb +ܧMy}D/hhx
)?p8jC;bM}D/hgxf; hxnxB #{fH\xDDhhx0	+A a:*_)!#
F@Fx1!h#
F`hhhCBz`hx	9ϲ/ Ā/@jCb +J.(zHxDhkw}-(uIyDh:k  %sJzDhh_xe(FιoM}D-hjhQkHxDhhxa) ;A- 3p8jB:b3jYb )b ,F[OD=hhh*hB
!~(h`hkhB^`h_xB|!BMHxD옱ppqt8Fx8F~|0	 #b8F9x
)6: *3i?`.7IyD6IyD6HxDUF e,!!:F#  
hB?H?!"#`7B3hB Jg Dg Y  f f w Xf e 0f  
  e  be :e e d 
 |d fd Xd Dd 0d c  
 

  -GFK!${Dha1P#<c{ccHHxDT  6qd"	Gp  %F|cOsKcBcĿOrcak k0F "#& 9h0i tpbIzfcyD:d`_I yD
]I yD! p&h`fe $#Fab;f|dogFLggf .FO
0FAFF@FF3*x
*0x0F -7Rb<F .0FyDDDSWƲi`hF(F0B (FF(F
 F8Fnoi ,~,@F!F2먱 Pj +
ݍ lp9F"SF(g"c*g f Ft0mi ( `b  Ap  a u -OFeKFeHF{DFxDhꀱ@F%2,F5]EF~XH9FxD8F$PTH9FxD (L8Fh"hB9	. .@(٦hs`'EM}D(F%x9h̬0 	(h(Fxx .L a=-
ؓ 0	)N a:*ؠh%hBx
)B`hFF ,H9FxDnP@F,F8Fh$H9FxD^`@FF8FhBEFFFF.FeFBH9FxDB =3Fx3
)ЫBF     ` Px	;ز(y} ` 
 X
 	  	 	 ^	 -CFO`F87K8M{D}D`FO0`b , H!!ag0HxD20x#!7DBF0F9F B'R(c(H(`i@aa!IjXhx + 	O	!	X`HxDH-XH)hxDvb $,`F,F"hW" #hX `BHxD7  L^ P    X 7 8F$h(F>`8-AFFFF 0F)FBFG FF ( F(FO07
FO aCFII*FF F F(F>v@v0FF@p@ OаO(FO alBFI
I"FF(FO4_!` F F0f@f-CFF)&'MD}DDXB	HF!F(F!F &(FdB)x ) .)H!FxDC:(NM~D}D>5V?hB- K` +ڢiB
(!h!`!F; +ѽ     T D 0FFH(.H)FxDUp@ O!i )L OаOEh
(F !"h$  H)FxDhbh(F2HxDhbh! L pAO#2(F ! 
HxD)F#i[ pAOI(F"FyD0C 
      81F-F()F F  8  -G<NF<O !"~DD67OBx-)SxR+v+ёxR+2h9
@$@+)C=)7CF0F  (ЂW"0C
!` ),Fbh% *HxDBHxD

HxD=Uhh (Z ԗ     7 "iFF\M}DF (2K{Dh	 F0@HxD@I`yD
hUPH!FxD2T  "i
 T  `H!FxD	H!FxD>K dY  BY  x q 0
FiFF(H!FxD+|.+HxDh# FpLOK{Dh|.)*}.+
H!FxDI F "yD
 6 F  0 X X  -AFFIMyDdK}DXhT"!M}DF\>5ONhD~DDUOiF F0@F!F FpBO1h9FI hh ( fJ . 'W  9Kp{D8JFzD`6I  FyD	3N~DF1J!X3hT#  "OaFO`ObF0F!F	,(	!Or
T ( x "	O1Or
? (O0k !L."

IHC`d "0FOaO0F!FOb!0F:  p Q W t   I -CFF $$?W_IF+h@F*FG)y C	V /ф ihpA
SBS pGzS+,iB   -,  \ _   mhB   pGhiJBR pGhiJBR pGFFh!FF@ pGzHi+,h-,	јB,   B   PBPAx-+++ 0pG-AFFFh  FV' F' hY@#P #`@!0 { #s(q(F-GF  #0tD AFxDuh
(FHxD6(HxDAB(H "xDvBvvv+(F<
AIyDA$ ,HxDLw, , S L #Q @!0,ѝ  ,K "hF!{DuZuuuJzD,I  JyDzDuHuuuhF!,JhF!FzDRd	,HM  J!}DzD(uhuuuhFB3F`FS+*HIxDyD
<x;)+)Ux&ip a#iHxDAF %i`hO
O R% 09Fr (I
5
,,,F#4F`h%HxD
x(*Dx ,3)*Ax );ѢJ!c`hFzDF0N~D f`.F (ؙJ!hFzD,`
*ؔJ!hFzD,` $$s,эJ(!hFzD)F "0,$чJ!hFzD*xb* c* d* p* f* l* s* zH)FzJxDzD
`,wJ!hFzD|F(x r(Fo
F (@nH)FxD2,lJhF!zDc,iJhF!zD\,
gJ!hFzDTF(F`_,`J!hFzDD
" !F(F`h *K(FQ,UJ!hFzD, !
"F(F`l h (3(F>`.,IJ!hFzD)xFr(FDIyD
L #ca a,@J!hFzD+xFr(F
A`9HAFxD
 6   OAO Q
OA
OQO AO AO@Akx +?E<    .P P O O O   O   iPO   r  N  u!   S     G G     /  B  8  
FF
+mh#z< PC++;0B-+сB   8B;0B   8  88  
FF+mh#zHPC++ <B-+сB   8B 0 B   8  8Q 0F $  )F"7@;)\
SBS   F0F{h +" " 8  8FFgBFxSAB
/(
x/*1+{h +" " 8  8-OF Fi $4J zD0` 
nF>XF =aQ$PF(F0	BS$  	 
oxaF)FHF`bFYFRFDhHF5D(FhF ()FHFyi:i4P0B  F$ 0F	0h>V ( 8  F FH "xD   V   -FFiFFp@O!JzDShh "
V" %F BB2B $ $M}DhE, hE (iIF:FFhiHF:ipLOK{DhE ,аdI 6I H z+,#тBs-,ѐBq   BB   -A "NLF8 !|DD F&O3  !#s"csss!u`uuu!w<F&F4uhe+x-+	hx8AFh*Qx ):I #8F#`yD7ODLD:w3HxDABw%` %
:x-*u!* (*xx (5T%p /&M}DD\%4FO#N  '~D0aD%piu`@F
T=F0`N~D2hSQ5`Y ( %TN<D/F~D
2F 3F (%T ((FH   ,H H  G G G pFF=K{Di
iXIyDKi;Jj`BHxDK !"{DhuYuuu\b(H*FjxDvK{DhH!F*FxDlJBBzDh B0Fp@9p(G G $  G h K o K -O %$F/FzDK &{DJA(zD	K{D	h HRգF 21XF F ( hZE@  \ )@ + ZE !0 	(A a;+_)  \ )qС0 	(A a;+_)f, K@ 
 {D, ZhMI "KFyDF{DhBbb"hYF $37 (:h
3hZj:j 8 &*F('hQj! <  #0	)C  a8(_+ВjD 0k0	)C  a8(_+ *&N~Dh&h  4dDfE KA7{D  F  \ ODj OЈHxDhB Ҁ @%JzDiA iK{D 	JIzDyDh<y Y! )F
 AFFY*  (YF-"a  P*  
 A*FO 	D 0S*  (ѹ@
 .]\K{Dhh4llDD `qjjr]`:" +<p6 0" $37h 0ZjjXbb F:"  F-"	90  P% R hA%@LF\
F FD/HxDhչ ,K{DhBF (('K{Dh
%IyDh $HjxDX#H9FxDR!K{Dh IyDj '8FB lF B $K E A BJ D D zI D pD ZD ND I <D C ? ? ? G B G B L  jG B pFF	qFIyD
h(FK  !{DtXtttpK{Db%h( `0F p F A A H "-O$FxDILCt-yD`|DI 8FyD(Nt~D	E\aԺM}DaA%@H $MxD}Dh!`,vlvvv,wlwwwIyDi +ݳ_O4%vLvvvL|Di 
 bJHzDxDhj`0 eh
```$h ,џM}D,h!7xD(Eh ,(F	F0 
F`@FPFF (PF-HF (ьM}Djp0 
JzDF`( h`L|D%h(xf(уIyD
hB@`L|D hH1J#zDqQqqq-xe-ЂzL|DahAb`wHxDChCE`uL1YuL|DhjrW p {0 5
mF`( a+hKih9iH $"xDsDsssfOD9hdK $ {Ds\sss`O "D:szsssx5t $tDDDU/F,  x-)Cx3X,VILD  Q&
T pAO  pIK"{DsXsssGI$ #yDj	!Bl= CJzD	$"@K{Dj	F <JzDhj+9K  "{DtXtttXF$XFCU<#0IyDiP:h5 * 8    % rF @ A ? 8 ^A F JA ,A A E @ E @ @  E $E E :@ $@ @ @ ? D ? ? ? ? ` (D ,? ? > C > > 8F
L|Dhr h 
P `K{DhhBA P`8= = -AFFFFMDK}DX4hhAi` )(FrC*h*`B  (0F&F?DE #0F#p 4 -OFFF d@N $@KD~DFXF =HxDqhGFJr` *@F4BF	0h;0`]E[ #$,,SE $FB_	ʲ*>*<>'+@"+= $,;.Ѻ к' IyDIyDHxD	AhXFx}hk{` +8F0]F8hA9`XFF; J 
 $ME	]E\+$F$ "XF*pD4 "=    -OM #FF}D
(+qkqDqq FIyDFih
x*qjqqq՘M}DM}D\X	0h6W p/I6yDE=  | b *ݲ OFO KO K !o B	F
O 	zGDZ ( /{HxDCx	aF
!o B	uF F#  	pI #yD`oHxD N FX *jK jHF{DxD	RF8F`YFG  uhCXKx^HxD		 ADР	\	DATX 0\aFY/ *c
 	`KL|D h	F9HHxD	DJX1FDHxDF	ahKc` + FF h `HFbhQa` ) F#h#`A
( F0yйY(ѽ h hh+~%%%-!h|%%H	hxD	"h!HhxDr}% -{% % -{-PFL(F
 < 3    s ; ; :  # G l: P  B S -AF*MF*K $}DXD`8F1FBFC?(p($!IhX!I0yD JIXmXhXB	I yD2h~ zH !B
H!FV# H!F
F (HxDHxDl     20      K0{Dxh $D x 4 BKFI{DMyD}D`Fn)ԪbHxD !,
HxD   Z   0< ] < F A  ~ LhDh#$xy,n, U  HxDsJ  iFzD	THxDHxDL
y,
@Oq@  Tv       K9{DD3 Q81 |z 0| !K"{D FF8 'JDzDO1 $K,0	F (!FK,2PK{Dh (	B+ *8 (HxD	HxD	 x(HxDHxD	IyDh	HxD	 F	
HxD	W `;     ;  u -GF
F$ 4Q/ *%H#,xD$JD0pzDD 0OQ	Z IhhyDFHIPFyD k\D 0/PHxD/	  	H)FxDP&` FG `y 1 : { ^ W 1 . & -GFF" (!FMI(F"yD (@eh -K  P"FLA-F	T! BH|DxD	9AHDDxDD	2>HxD	.k % F8FBPF	 %@F%	HF	 F	r&x .+HxD	=*I(F"yD>︹'L 'O!b|DD
 F	8F	 FAd x (I(FyD(h +#`` 4 h/N!F~D0`h0h	HxD		  $ z  .   >   V y   8  8
FKJ{DzD`h`x-)D`
L|D h `B
K)F{D` h h	HxD		x8 n b8 / _ 8 %KJ{DX% )	)chX`` (
 FXB	ѵySBS 8!h!`
(@ * F: H!FxD2  F2 H!FxD$  F H!FxD   h  h  hF  F@	F  F@	hhp
"
F !F Fh0FGF Fp h	h8ĻK"{D8ǻ 8Fx
Fӱ0	*"$O5`O4
C  a8(h )#` F)F8sFFF%`+x0	*
C  a8("!O<O2`
 #2F!F`(F"hF
F`FF|sFFF%`+x-+kx0	*C  a8)"#O<O1` "!F`2F(Ff"hF`F|FFF%`+x0	*C  a8(x"!`O0r &!F:F`(F1F"h`sFFF%`+x-+kx0	*C  a8)N"#`O0H "!F`2F(Fz"h6|  Fh h0HxD2fh	Oh@	V 
!B #ppFF %
 F1FP F50$#x +O5(Fp-AFFFFȱ $O7(FAF2F ]x{'F(F4Am+x +<FO4 F8F
F F=0$ - F8  p
FFL|D/! F)FF1x/*JzDJzDH!FxDp@	 з    Ax.+Jx*.*ыxο  pGFFM}Dh FV ( KJIXzDyD#Fh0 (v!F`HxDO0^& 3 U J -OtFFDFK K[ PFG (`@ ĀMHQFxD
@F B (
8h)HxDAF #BB8gBBHQFBFxDu % %
pBO@HxD`FHxDQF	]$p@O#HAFxD(0CFCq@F
 (0FHxD@F  (  !YPFF ( *)q $! PF F F@FFXFaF N4 (O4XF `F8Fh (8Fj -@
@F#d (HBFIxDyD+`9M[PPFAFG ( ۸@FIF@PFAFG (򬀖HxD5в Om칲 OhFAF (@FIF@(FAFAF !PF	0Հ
@FpF OOw!:FBF@FIF(F@!@F:F(F41F(F q?O4 $0F& (dHAFO4xD(F
 pA O@V5
pL O/
$IF`@FL܁PF	FAFF F -LHxD
@F
 (FHBFFIxDyDc $]Oм _м@Oм_
ё@F $f (:HxDs9HQFxDj9O4: "@Ff (.HBF.IxDyD+@F
N (

BF(H#@a
'IxDyD@F(B ("HBF"IxDyDO4 ,? F; % P 4      -   L   [   -  	    0K-OF/I{D]F[X
PhF,`dBOO  2O9O	OT %_"FORPFHxD
 /8F2FB	ڸ HxDO7?5DѤO5
R(F
h 0B
] z!   
FpG  F ,dBB0HxDc  "y  8FKM )FO` "!F$ +OCOS k@9@"028 	K _S$@ B-CF0<FO%O F:!+*2%*,-fx0	*F a.W:*Y0	.
I a	W>O62C*/*Ђ,3,F%F^+ *,8F  -AA f%FF@F1FOrۦB=!"F:8F-O '̰̐DEhD	
U+ihwNliFFD%(AcF+XFF .  (.)#FXx408	( F ( FF1"x0:	*#xPFF  xs)FD_)bdxc,p,u,6  6 F4 x (hw-h -8F;  -OK "L{DNh|DIXyDb	8wiO " Fph u`:FF%)`Od/al`F\F!x (O	$FQF (Ѻ.FљF09	)F	F2 x08	(O	 F 
c"j`JzD0iHF
F1xBx
F +x +7ѐHxDylѢTFF!x^ (k	B؈J  h`zDJO qi`zDHYFxDJ (тHYFxDB J!i`zDsр"j`3i`E`?vHxD{_4cx
c+A+a+*
p+u+%NahB `#k`x
d)o)x)!pbJ!i`zDaJ@ c#h`zD#p{Orj`]JzDu\HxD!FG  "8Fbp(aPF F;%+E ! *iFJ FQFF(a kh,i`0iH <HxDFWF<x ,ٮ0i6h	shh1i4ah + .Į\h ,9 hhPjB
ڡh!i)h`h(chFh *i	_***F " *F
F (Za$h0i3 (_ T Q     6  ` f      -NԠFаАDDD;ih1J$QFbhY h;ihb<i":aj ,D b9h )6>i  iF6h2Fp@ _аOа_:hFBuF8j>` >b^FI "Y 9h0FN:j;h8`9ba;ih
9a8h (    < O2!B`"`c-OF844FDh &[ h(FI`BF-h -fbh1F F6h .I'ayD	1&j(pVFh K}h{Di (1"jB.ih@LChs" h`
p*iF2x%(ii	HhaFa	H (1 (Ѹkix !phh (h('((@( (@;p@(\Ѐ(@b  o@\(i!jI(iyDI2xyDE1 )Ѣ  ^(h\K 
"{Dhs"p(iih++f	2h(i

z
S0+0h
(qh (i
#|Oh( 70( (i(B (i ^)qF.!8(i1F5H)ixD12xh*
s"D
p D(i"*s#p(i~*c  x ph((((i1x
3(i(0(1h

(i,kiph!j#bh-h -8 ?h /߮ 'b ӮekfjM%b0FS`c0Fsckicgca b| %7FO	DFbh*!k FйBtЦhf`k*Fk0.jRHxDdebk !P:F!jMaDbhckQ :FB:FFI[0!CI[0h ,"" iPZ0ch0Zc`?ѥh=-`k2Fk8=-"`4-@Fi %7Fa b- 3ci˱i!jaN]h~Dhh(аo(ii)i0FT-h -jhB   }   h Ѩ   W צ -GF Fh`Fh *`8O0FD_F x (  8`FF!x09	)ؤFF 00	*٣	 ))]9HxD_ F$<``
 /F#x/+`(F"x0:	*`F0	)ٮ	_+>+<6"x"*`F )xF3")!FBFhax`\(]xY\]x	Eѓ  ( FK2/+О
HxD1F. F(a
 F9  I !Fz  
 FiF ( pA CZBR -AFFhO  F:!F#xc F9FcF5` F,F , FF!F hK{Dh*~  pH!hxD   pF
NK~DX
hF#`H1XB(F4C Fp@ 	K
J{DFXT0h(HIxDyD F    -OFFFFF 0 $&FFF dFjhPh` ((FnCF)h+)`<0B
6XF 1F BFU4  IF:F   (Ѻ dFXFaF    @XF  JC- "  -OF &RpAOб _ЁF
O	#H$IxDyDFh YF@FPPFqhXPFAF0 @F(
#BBphXBB
( %4FD8F1F (8FJ0F   -AF  $&FF7 9F" (7є0 /@Fa0B(@D 9Fp  9F8 i 9FP2F(F@A%j@& 6F FIF (h (E& (F ! p # 3P#   *Y{F	Tl9S\2D]Cl3Bp-M lF@FZ
F  $E@F(F (/!ml.XFRFB@F9Fd8i pCO
ѽn,F %BB@FFO|.*!}9.,8FF(0FF (0F F  KJ{DްXiF#h] pAO 
IyD$hF   ]#hB^   FFF $
8F1F*F ( ,F$6- - F/!F D F/!F BBxD F/!F  "8 F@ )x/)ѠB-A $FF%F Fq(FgU5 
/shXp` (0F^CF1h{1`  P4 Fi "FBU F3YB\
* #CT  FFFF!FFo @PBHxDtC "a(F0W
I(F"yD"F !(F
FOHxD F 0   -Om4DFa [ |dxbh`T|jaybU )4 Obd<c5x!-6=a3x++-+r 2FT;k $O)F ,  AP:h2A<F2x:+F4 1CFFx (I;cyD  L|DbhPF		DFO	  )O	  
bF(J@FB0J<HxJ	

ѹjO:k)S)FS B   ) ,K  :c{D`S  Sh243S (I #O20yDbaF	h;b: 𮀾?Jx0:	*Cb]-Ѣ0		-*CCIF=	0:1baE F    ѢHqFxD:*ъx:*"B`i+*
ё:и "B`"h8jC:bV-*ё:и 
iDB	1ArE  1a  	&yh?)  yh-)JE yh E	yihA 
F  ya  JFFy`1yh:)19fI  yD`  >`I"O 	[0`F`iO-
	x-+{R0F Y`~hI Y (_(F 0 )b  aEiBYњhh b @iDhJ`9H[ 	hZh*јi*F    j2F xjiC	U(UB B 5  (9j	B 0zjiBj +ۘBJzD`;i!+O4h FT$hBXgFOpG
 h     $  8FH!xDb F)F"8HxDmHxDks F8.  9 SK hF F@pGSK hF F~-CF
FTp*EMYF4OE  #@FȀqFDDF
F) 
gF	 sDY

LF
&O !FDD@0DO
BB
.  &$E" &
b.OD"O #ED&XD  "   H9F "F  D+F  F  
HxD ȝ w  ~ J :  p  -G '[NF
FFBBF
#O 
EU

@Q

FFBBO 

! F
!F FF 6Ozq(FCL|D!\ ) @L|Dd!(F
!c\ +0:L|D
!(F
!b\ * 4L|D(F
!xD`\  Kc-)(FOzqp+L|D&\ . `)L|Dd!(Fd
!Xc\ +0#L|D(F
!N(FF
!P
!Fa\
!(FHL|D"\ *  L|D(F
!2`\.! LD  
     v  k O A     á   #0+9)xC@CpG  -A#F 'OIFFyD`` (F! F(F O0ihh@Fa` ih0F
hb`8F ( 
 -CF+ $a!`YCh
[T*HxD*HxDMFHhh3$J7'zDhhBBiB0 h (W!"  h&F(hhF FH\D0 FFF   !Fp|  F  E 	 R	 p $F "F!FL
#(F!FpF8H)FxDO0
1FiSKBAK^  
p  #JF#HzD0Xh
(%Fa!`  +J#DhhhZiHZi:
HxDHxD $F !#. HxD%+hB'0   ݡ  7M}D+hhF(hI  yD
IyD
h	t 
 U  " >@pG  ˓ h -CFK{Dhg@7 #0F9FFT" Ah #
FBB	тh KEBE0 h (ѽ F @7F
F #F
M}D(FD03n)F
M}DFC`0h` j)h!@@(`JzDhS'  `C'@   -A $
N@H~Dh/`(h (40hDEK "{D`   iFiF@ pACZBR       KJ{D尞XO$ %3hDc|
 9F->\-  <c(F3hBeH  8
FF  8x +A`b\B8(	8((  pG pG(ؠ0ٲ	) pG@  a8²*  pGB	 B # A ZR3 , #  8KJ{DXh`k88ak=cQ% nk -`khec8n  KJ{DXhjZjVI kyDBP F@5־8   F:#\$08%F '
\.
9F Fz5As%<75k .5F'*"*	BV@ F)Fj@|$54 i  ($.;. &. |.ѤB&.4>)<)|.>)C ! F4PBFZWO004P -Ѧ`(j0FF`) F)FFA	30 ) F8 "56 (-(-{-2 F !&O224P -*F	 + % F !+F240 + )<)>)
u xc(ѥxd-+%34  * % " 240Q  +:`0 ) F !2<)>)|)&) #:S3 T ( (XF^ (S^(F  (FHxDI x 0     KJ{DIpXYXhT1jehfi #a)F0F4)F a0F(`p  -OM $KO[	}DF
$X0h
 I@yDFFk\.@Ԁ^xt.FB@ŀYx ) SX)FH),	$)6𴀡@/ 5T)3W)@;t)-]) h)[)@𝀔w)-x)[u)@qH)XhjoODdh.F@.! "p ($&#&w
 "	!8F2 " ,Fl FNFYJXhkFxFF!F:F`]/( 8 F~# ;r w.D F/!8 (<A; &Fs" @F(
8 ",
 Bs)F@F !"lƲ .?&NEщ	)F  '`
.D "U0hJa
]pU0hJiHaPFF8Fx *HxDB F0U0h(
hB  K ܍ + -OءFuK/!D{D (C )JpHZ  h%h/hmhlHxDhFU+xC:+ix!$/F8F:! G@x4  'F(FG%F `F:!PF{Bx*D%05%7FO 
G0F":FDl
7FF%8FO `Q0 (`g;x 	S|.*} )U.)@} (PHF9Fl (IIFVF 0FXHF*F0FIFFVpAO1/"2T  Hp+x@AZ	0 8 4 8 4 @"`8H8 0F (E
dE h F@F# ֘  0F %PL|D (	I \aXT10
 	KF	J{DXh"j`j:aj # pA 0      -O-;FFO DZF  IFFFhAh+UѸ DQ&Z0hD" *EDi )\iQC<F@ (h1`iXhJ`ah_hB .%  l"`(иO2HF
	2{ @ \fF 0F        KJ{DXhiajQ PF@?ah ?%(F= (h`/F %`hh .HxD!iJ"aN(F6(F 7F`  KJ{DXhiiBpG$ F$K%J{DXhiejU `0F _.iiBۢiiB FU&`0F (_.0FOiiBKU# B (iiBU   (  KJ{DpFXhejiiBU   (piiBU#  (pd %K&J{DpXhiiAfjB=jiiAB6V#P(F ((_-XiiPB$]V%P(F (_-p(FpAiiPB
YV!  (p(Fh (p  8KJ{DXhejiiBU  B (iiPBYU! 3 (8 r 8KJ{DXhejiU   ({`iU! H (p (88 " KJ{DXhiiB LK|DXhh"
 @5 -O %|F:,FD+F"5vFY' _` $
] ($$ 5TEQp4TE		J[  F $    F ~ KJ{DpmXLhYhfj2hF hh CXh.Oa$heh`$0hB(
mp   KJ{DXh hh	h:#hhA `x   K
J{DXh hh
hhB!hh0`[   \ -GFmipF (`Ьh &F

< > ,hF!FObnFla 0
V$ *iF$4hiB $Aia8F:F (8FkiK &@8F.i4B $]$  (]$p`48FB $p@E6a)iB
m-AF\O $O\D0@ F
8F4<+U4 )(F6 &K&J{DXhiB(F (=
Fa %Oibj R, B ` (-> -$hB- ` =H)FxD@4H!ixD: ""aiiB     "K#J{DpXhifj (: i )4V!P(F* (&_- i (#EV%P(F$ (_-p(Fop vi *
SV# b (p(F	 (pL 8KJ{DXhej Ui (
AU!  ( Gi *SU#  (8 F	HxD
 1HxD F@  - sFxL|Dh  FF
KXha`ubiiV#iiIB8FZ`| ( KJ{D-OFXhF hh Z p /rРk ( RiO ]FukgkW% 55EFB`hYF(F9F0F9FF0F
5'5FK JO {DzD'R
0		 F DaFEbk	R!  nEEO
AFO	i  O3%O ` P.icjOaS"PC"pFajiA P0FF0FLFbk"0FQFF0F~bJzD 

F   7UE`k %k{F

FS* < FZC%5kXckES* C% 5ck)0ek -o(hFF
`kP"  BЫB
_2bE3x )8" $(FpF(FPFUFFO 
 dk hFF(</+ "*U4jOaPFn!o!D0FIF 9FHFPF2I:F3FyDFHF:PF @% a"q iY(F0FO4V   R   8KJ{DXhej niU   (Z (ѡiJU"  (P( Xi +8 8KJ{DXhiiB/Р l D #c#dkD  bjR%0A;ciicjB  iYaHxDi@8@8   KJ{DXhi )   @ FO`Or`a  pFHp!F0F4iXN $~DhBp -OFtF4ɰDFFO W(  GOp$XF`P#C`DEAxDc cXF:XE	@Fh$(FQFX((FF XO4 ToOj 8d~D&`i#h0F&hO 	O 2hDh`V
T`b ƾ ! 0! K3`!F8 hAb0i= c&@Fh "1F0`V`DbHWxDT1@I O &yDD`   4`/
RF##dGH FHE |ܸ w: u$ uD p% iE@pc h d	@e? z  2G G M@LE ܸ ܸ	  󮀸&
 򽀸@. Ƃܸ ˀ ڀ@IE 
E @HE Ł='8E  8E 	E lۙE@wJE E 
8E@邡rHE -
܃E  YE@قkJE }E  8E@̂eKE ܙE 
܊E j 	:E@h\KE x3YJE PEI8AE@𡂏SJE [PE@OIE ցE@O
i !cjC"iaKHxDjIHxDdii  X3 ( #hh i (@@?HxD<i + i`jaJ  \ ii4i +
bjYR! M (i (@ajCQ# > (}O jbiD!HF4FO15(Fc(8(@5   @  @W  @   @D  @I  @i  @e  @p  @w  @x  @ /   
 ś  x ?  * /
~ #<J  BYYF	 #$0k (

| (<	 "hh/-iHIFF ` h @FaajH
	IF;bfii`a iX; +
{  _DL @Fnaj iib_Fba ii6Yi (@   3P &w &R
KFh )@=EѠieW/ܹBGܹ Sй$@_SE@Ze wѹWb@K-ܹEe
йw0F
0F*O	 R Fi	8E Fi9E  iiBk_ i	aj C  ibj Oxi ai 0R
FVh )@𐀨 + N`ji@"@F  ? hh &
Rxd((b(@Bf(C(@)i@F eՈ5 FXi9Ey ([q$!hahBq i !Tb_ ZWi~Re BB "aO8?i B  O2  1K B ,i`E&BajEa
A) !icjPC g	  `j@)i' '

D ` #+pi )(F
1a`jTi *@'h8h@+x + 𷀾hFi)F ( :ii '6 hi W` hiBi>F(6:ja!h
iWB(F'h6a h`#h`!hi (y@AAOr 	p !"(F
")F ' 
*TFHFRFUFHF&EW hCiYAa hiBiM h!hiaF"hia hIFF6HxD@A!OrFByDFPFYF7ihBPF'hHFi!hhJaHFh? i /0Fi
# "A+TajTh QiG FhBD (?
 &	/
pI?m  8F 
FE`"h` `88F
F F#h +  `E`8h3 `F8 F F8F
F`h)F$h , F8-AFRM&}QKF}DX0hCLHxD FF (h !
( 	
 
	 D\(%(@`hBb` * F#h#`n(?h(<D(d(4l(/m(/s(
o(r('t(v("C$
p!

Q ,@BFF,
@O8F 
MIiXT1TDahJb` * FvCЉ#h#` F_3hB
&}  @ t FB
L|D F F^0$#x +HxD    1t z K !J{DpX#h%F;DAjF8
HxD2F  $0Fn  $; F*hB6<p  b 8 !	DA "fF(FN $ F8  -O簁FF#pKpJ{DpX -% %heF)Fj 
% hDB !PF  % `" 'O48]K !" {D"@ "`0Fhp@O0F)F4 %h)r"BoFHClF 0FL2 (_h)P !0F\ % H@FDA*FHh+$ !"*QF@"8~#@FOA0#ZFF*@FDA@FDAPF>`0#BBO4FO4@F A74joXF|\ @$"  8 $ FehB6g   ~  -OFxFF.+Dx , Ou
>FF %0F/*	qxF1/,  0p4F+ *O|E F 
@FEE(FF $8F@ (h* h(&ѻ &8FiF (#pNO ь'|?#8F ( oIyD4pIyDIyDIyDIyD
IyDO4H:FxDSEE(Fh FY O \ V P J G Fxn+Ixo)4 % %h0FdF0F!F:F]`,(
 F,!D %(F  m-O\ @BmFDmPFfFD;FJF'@/h_D
wboh
sh
@K@7Shh@g@
h5h1EE<D
$VsMsO&}DP5DP&`DBD
bUlP*`@f@UlP*`S&@V@UlP*`AU@eEo84OO<DD7.h
DlP&`VDnhl2rP&`hsSP(`^@h58A7eEP(`4Dx$.ODD 7|d.hD>xP&`DnhBDbP(`bf@hSP(`cV@h5xA7eEP(`a4DDD$JDeDeeep xjBp Nq p o 0p o -OKFLO M{D|D}D	
 E

 

	(2
( 1()	 E
E "
(		2hh} Epd DwE
 E
 E
E

EE
EE
E(E (3(* 'HF]7
V20ZFAF@F
FHFAF/@ A  F   Q0Q#(QE"#	QA#Q#F+*	A#[F *+Q
A#) #Q$%
F EA#(

#d 'M
 @	 C4@@  #  #3F2F ! 3Rr o m  8-O #X 
3@+oF
dJ m #mnFm'FmF?MFF1F}DeFOV$ VF:F2FEFVF
t

W|D+,J

G


WFZLW`|Z| WF Wx|O{WFDG@J<3?jDO
D)FF4F,7F-
eeEeef) l -O #˰X(3@+iFbP
 "
k^jX2Yh
tGI	
L
d3*mmFmmnnFEnnF1OFFD %	fF!FFF[F:FO&'sj
D$YDE5hDD

Or7Z
	GDFFeeR	CfeBefffKk -O-E}
#Fg
PE##g '#  +
7/ aF o+ #C1+KoqhGC2GF2	Fg	
O
#gV@
o_@gNoO
o GV|CRwHg#r@{@O^C+BFsBwK@f	0
g#O'r@G f 
@n\gWkC #1WP/O DFFFF	$ # OBAB7OAO3O7A6CBGAOQ#g_@OSV@CY"AX##V@_@6#G	  !	 gN C+#28_@@@V@@B *@B ! # `jK@@B"#" K@C9HWkN QSgC##WkE#EEC#
#EC
##WkA#C	##C##C#
E} i pFlF# ?JcT@ !*F-
ll ARq  cc#l FG "-pK	J1AeIe3eyDe " #d#pG#Egܺ-CFEFF?E E@DE(DFIF@?"FD?3l0FG8
F !FP`4)FS+BA+8  	K
J1Ae	Ie3e "e ##JfzDdpG#EgܺGp HLF|D(#F`FQ`2BHxD(dpe K8$ !	ODDY "\0C 1()E d Zf -O % gFFF	GFBB g#  !C#	PTE(TF YF

"FDF	@FkF!FJ#l %zD FB""m65e0B8FP @2ֽK-GF hF" MP 	P5 ! JFP @ FTq  xp~ '2  CPr F G d0@F %$  T< PSFP@ECѽ !"20F0FFHB(*F\T3BH+D Fj #08
F0F\TGCG S@(FT;B@;8	  "FB FpG  JIzDl-CyD\-'d "DOXDpOt %+FBwpPupF3d+2HBMD*5xp1*HxD qh   kh eh  GF  `IyD+  Fh hZhh F@2u-OFFFF ( Ӳ(bJ zD !HF "hF 
8ݧhi
Aa<
+Ѻ
$
 \)"h
:&#i
E	8F!a 2`F 
 hF "
  k 0h8Fi?;x +Е EO F JI+pE)xB	i )F8F^?8F ^Fy?`F   (;x Eч 8Fi?:xE(xBECFiZF	M;O XF	  -OFxF0;+"FxC_%ҩ  UH
xD,)4RN 'H"FD~DDDxsFB
`x2<0C (  Yx )CO  D +и-и=5@aE6K{D5H #DxD0 V31BC3+4*Fx .cDIDDF2τEX( !: CxF * ю8F? FHo
 - 5CC"x
,*!x )_ P e e e e e ae fe \e 2e e SKTh*P hF Ff@pGSK<h*8 h~F FN.FHxDͿ X FHxDX   ׿FF+
BpG3FR H"F(FF F<@pG9F/F+ *pG  -GFLFHFF %DDW0B -HFUF"F)FEFW& FB#x +0Ff X 8 sF
F
HxD䲛,,@4,?$ {$^ )F, F)F8@& 	(ђ
($#;(M#-"p8Jp1((р@ ^"+p  HppG
FF;+رb`B``+~+x	N
O~DD4hFW$ >`)FG$P 4`F @ . h#xx+4%#% # "!F{G 0	.WB-+f.3!F+2FJzDS\\FB1"Fx3 ,ђz`в\  "b  #hA 0_	)Wɲ )`F0Fh
%08 08F )`0F+ *F9pGp
F !v	)F@2F0FO4$s " FTp-A #FFFEh	'hYxzXB03Bk*Fc`B hm
 `FQ hA0FG"F8Fw"hU(8 $M}D(hn,`l`M}D(hf,`l`8   FJHzDxD il FJHzDxD g\ F h.`h*h: i8 F@2-OFKFJlM{DF !X"+hF d4K{DF (  !8"&
.I(F"yD*Xi$aI(F"yDXhp'j#bwI(F"yD` \gi	aanI(F"yD` H'i"aeI(F
"yDXXF5h`\I(F
"yDXXF"h`n(F-!Ob (e>
IFG !8" ":p"

9F!8F;I"yDF(8I8FyD2逹= w*
"h `-*
`ha`-I8FyDi
av8FB&HxD #p`j
ab(FOaBF (@F^
IFG    0Fd$ B
m   } \ < # 
  x n K 4 KJ{D-G
FXmF1hFHX h{FHxD `v"zQ!r
:brD`h8Fh`hf` hF  F4Fa  !
"3F h (hahaK1" {D^fa`` !" 5b ahQci !1"H K{DK 1"{DD	D (
c"d  QF8F+ ()!Ob+ !Obp(!+z"A  7x0Z cV`cRcNQK_!adA !dP:`b6! bCx-**FC# !/b
abzi a+Z)W"  "  < N     * "0FLF+I8FyD i aKh"I "8F`yD+ (5
E`(F!+*F`e+G` F 0B
m     < u .~   ق ۂ  h -CF8KF8I{DFS ! 0F "2K{Dr!F D  `U5b] * ! F? !p Fo #F`](cU=jј P8F--9FF@F*FD 5B`!FrjJ F1F;FzDBe #  <J F1F;FzD B
6  O 0 FF! a ##`````  -OFFFFkhDFh`EҘE VFӤ
O)
    aIxa[	_I
`yDF*i ,Gd#!FWIyDFh  "i1 /. !
bF;aF9i   !F~*!F8i?I:ihyDhF{iO+Yya 1HE7KZF
 5I{DyD0*hhB).`hC` !)h)HxD&HxD
,1FN

0Oaa B4FF@F@FFOaa<!F F<!F FPF2F+F IyDF$F  6   u   ~ ~ ~ k~ F
FF F)F2Fh+8FFFF $8F1F*F ( ,F6$- - F8FF F(F88F !Ff (!F*F8@8-O#ġFDFF0 !` x?
!JF ] !`"8FAF (@Efx@F*F.@%p &B!2" : ( v "`"8Fo (jh+   p50BxbE	
FF2  ) 
 ##p l6F   *R!2"  (P6c &"Y`8F/B*h)?&pF5-7`x[(4a]R)1Ѣx0:	*-ؠ
"2Fx;+#Ax09	)
"0$xR+Ѯ@YEoFF "oVF #@E"po FC+CG{-- %p # ""p1O0O3F PW 8F xB(FB*F#x%p8-CFFFFO	  F1F:F F1F:F (Fh+ hF!O2  W(F-GFF h &5F`FF@E(FAFF"PF!F&FF(ЬB3x4
+E&F !1pr:`s(FYGԹ F8   -CFF	h !N@FiF # "#p $%Fo o)		E(Fa(FIDJFF@F)<C(F  HEDӆBoT26o,	?(O9(Fa #U<` 8F !!FF(F  $ F8F:BHxDN  pG-OFIKFF{D+FD D /""2B@H @HX FG (r d %gh- F (
pEO FJF;FG FJF;FGFF	 F@F (%x  FJF;FG ((- F1RF CF1F ( %`FFXF*F (XF*c FJF;FG ( F  %(F! -C
FFiF]O<D (0h.YHxD. &VHxD!Fp@OfhPH!FxD! F* (0F (FH#FFJFI8XzDyDh0 J ( FF (h & F1@FP)F6 (O6HF@FF (@F (/HxD F (Bڜ'I*KxX{D*Ih0yD#F (1"! F (pB O0Fn (LKIW {DyDh0#F (?b FR (\\O60F  &J ?W 1U  ?x x L w  w KJ{D䰜X#hcE 
E HxDA!c"hB6d  Nw FFF0F9F"F ,ȿ<0h+, h(HxD(Fv 2: $T@1B #\T3 *pGF
FF F)F2Fd h+8F  FFFx(M}D(M}D5 i\h$H!ixDq"HxD!HxDNOD8FpF+8F1FhIyD1JzDQHxDՠhHH!hxDH!hxDH!ixDH)FxD@N N ~v mv ?E v N N ^ Dv ?v {T 3v 0#`O0 !"t  9 ))n"`O0#hA`  K{D`pG  "1-O3 "A=FF% &%B0F9Fd6m  ,F!F  " !F F FD 0FFhF !"(FiFOS 00FFhF !"(FiF 0FF 
Fx/)x/).)Qx/)Б.)
ёx/) I2B	YF9x/,xYp3QRx *уBx/( 3 !Fp8Fx/+[F
  d!FFF(F F F8  F@h(IyDd 4`hh6 J FF+ *	:*pGFF;# +	;+pG  I"yDF 4 F |r 
J #zD2#@ BP@BP
3+   2M  $OFD[(FB4T,O5(F M FA) 3۲<; +pGpFxF $,(F1FFEF FpF!@HxD  's -OF:! #F0F (['I
(F yDBF;F
(B
	I(F RFyDKF( I (FbFyDSF(cilrba!iH aI(F bFyDSF(܋H)FxD t0:+@I yD(F-!
PI 	 
(FyDBF;F(ci!ilrbaH atI(F BFyD;F()x@) !
"hr hhHFĕ  1".!(Fgi?
C+	\I"(F3FyD1\ (+WI# (FyD	1N(+QI#(FH yD1<(do+II yD 1(F(([J
+, <I (FyD(C"iQ1/!a1d!8Fcid"2 0Bd027`aciBd;ca+&%I#  yD(F(bilp`a#iZ"a.)(F"IyD0"F3F( "  )	
s r r r ,J r xr \r r q q q oq %q p FFNCH!FxD @ G 7F
FFJ)FzDF F >ip 7F
FFJ)FzDF F >Fp hF(Ozq <IF#FF@B hFI* OzqF#FF@B hF   !
"FFhP*I F"yDH 4'N %'~D Fa, =5 -!I F"yD2Fby */+*O0
"cFh + ,  I F"yDF (`y-(Ѡ
"GFh ) ,@ (F@  o H o lo (J#CCzD\
7FpG 
H $M&O}DD\8F!F4 ,H@!JxDzD@0$G n n n s"LF% !|D #F 0F)!2"#F| E -O1LFĐF|DFFT	 @,,
,  =O  !ZF8FB !">1  )(,ih" 

)
,2#
)$ , PFBF	 B  -AF.MF.K}DX  !"(h 	BF !0F# (/*F #&^h>h.!!Zib`).ўh2.3
!$R˚BDh6&sDB ++hB : FpK, & "d 2** FD
.x]) ?eE+F,O2` `Fp)
F#@tR	3B+F?	DT:O|\LCpFp 0B`E $kmB\1# BZB 0  0-CFFFFW(FAF  -$,WhFIFBF
(FiFBF  ED ,0sFFF
QZFF	
E;< ,0 F|pF (  +(}а@?zҰ@|AI$"yD~ (s@ABq
Bp;N[#~Dj6PBPBZSBZX@_NӤ}B:*IOqOsEAд?&I0	"yDC88_.B)0B*B*2B&Ф:QGOlaEC?tEѤ,@B3B٤yB Ӥ~A 	(09?)٤C`+;+d $`ppO0p  p p_E E E -OO FFFF^F\FFAFFAKBL (?   ԡDPF6F eF$)PF1vD #F
04= "
 PPF Fy o B #F
F  F#':T\L $%F  $l]p|6]Fp	?]p]p01 * !p@ ͐B-GFFhD %FVF0F6xHFB"F (  @(T5--ݝ 	-G  p40-Abp4PEp47F -8F @ {D :K-OF9J{DFఊFXO 	Dh!"ahJb` * F#h#`OBѹ BC ( '
			H?'
 #	  H<YF"@me"SFF0F/*xrHxD (F)FB#FJF!hB#  ]h g -OFEJFFzDh (~
AM}D)FFt>IyDh 	F$ FF 'F6K	
{Dh
 F\F(
"U6/2F+NHD~D1h:! " rp(x@



rp!F
 DK
{DPDhIyDh% 2FjJzDhI yD:  3 d Z  ڦ ʦ  2  "QW 7 "QL@pG7 $F 
)F(h ho J!F"F .O1`F>@ 8  pF%HxDl    
H!xD	H !xD  FF,*!nF  1F F! F! F
W8 Ff-4F,p {3 1 M3    F@IyDIyD(HIxDyDO|L k: i1 < 8F(F(FQ F8  IyD/V+: IyD 4: IyD/JL IyD (L @ @ 0  J	KzDB{Dx-)BxIyDſHXpG;  9  <  K{DBx-)Bx !    pGF;  ( #-OFxFF-+F@K++I	;ز(E(CGE?   HFYFFO0O1RFBB

EeD			 xBB#BB$EAFH2F;F ExDHAFxD "F !`@FF
Fh * F)F qc  B 0E E $z0O2O3 #
! " #k  !-GF xFFF-(5+(3	8)/)-1B)p`0FQF&@O09FRB|C6wh /xkDELE!H # )FxDBFH)FxDBh>"F #`(FXF4h * Fob A  $ O3 " 7
FF 
!*F#F>FF
! " "FO3  "
!v !sFxFF++-+bx`-*O Co Co C  "Y!x-)@BB۰B
H1F*F
 xD!F| a  #O B o CFF
! " "F #
! O Bo C !o B !OrKJ{DFXFhF ##)F*!!	3	 (
(	:!"HxD
HxD	"F F   );hBP+t a a KJ{D-AX
F!D$!+h"FFF	G0 *FF8FA+*FG!F2>  %	(F 0B
 # !K"{D7 # !K"{D6 KJ{DpXFF#h a  ! "(FF 	H1FxD(F"hBp H 
` KJ{DX~ F (#+	`hIyDFHxD{HxDw_ _ _ -AFFF !
"h(FFh?	(FAFbhd 4F` F
+ + ApG-OFnKFmJ{DF X &xF>`h[*FycF]!0FF0@x:(  ( `HxD)F& $ W:!F:!(F.FEщ !
" F< h?LHxD.F
	$
 1FBF ("0F90P  zh!F` `D  % 
#`F   1 ! "8"$`{`0F !:;F9hA(H)FxD
Flh,i -
F(i0 C*iF@+i*iKF[ ?8hyk F  B1F2,
hF 0:+Fcf<F 6 1_ ^ G^  ## "F "# "#FFF9
 F"FR$ " F)F ,,F
,%%n%%
$( `8`0F7
FFXxJ!F " 
F !"F)FFI0 F" Fh  F>"ҿp! "FF5 F0F)F"hO F 0FppFF!4 " *h!FF<0Fp!k!h!e
!bK{DhpHxD xܤ Л -G
%LFFFO HF!F!FFHFF Ѹ ,>
0
 F
!=F8F  ʚ;!FF F!B b@/!FF F!" b@/!"/"/e
FpGB (@B:-#;FpG"L|D!F #p F  "L|D!F #p F v F
L|D[/	L |L \3B B  S1 "
 F!FF @8F!FF @-  FFEAjF # 00P0 P8 % % @DHxDv %FG-PB$<`@D	HxDb %FG-\aEP$4`(FZ Z FEA  /ιFFF(F1F:FF0h+ FF"O0 (O0 "0 A (̿p    8FF0-HIxDyDf F8 % 0 F0,HIxDyDH [% 0 F00,HIxDyD6 7% |0 8F !*FFd F8  @4(HIxDyD$ B0 8BFF; +` ")FU"F8@/  F H!FxD ' F (H!FxD& Or8FH!FxD(F8 & OrO aF H!FxD X 8FF(H)F"FxD8 X HxD X FBHxD X BF F@/F:BHxDu8# 8FFF!FF(F8@  HxDZ DX 8
FF,C	$H)FxDIHxDE8/X 2X F8 (H!FxD5X KFI{D[Xh 0  H!FxD   X KJ{DIXyDT0ٿ  -   /C  8FMK}DXh  F!0- F8@/. R Z (HIxDyD@pGm" - "(HIxDyDE" - =!FXF F@.	F8 F@.QF F@.HHxD V HxD V HxDv V HxDj V -CFF
FFFFHF@F)F FrF8F0F FF H!FxD< S F| H!FxD.HxD@RV k" 8FF H)FxD F8 g# F H!FxD
 I#  (HxD5 FHxD U @HxD U   # (HxDU F H!FxD # F4 F. (
 h:F@pG h"F F@pG8F F(F8F ( F  K
J{DX"#h!(D   !"hB" FH !xD8!F"n(F84F %g]j``U5-&0F &y z ?A@lq#rT  (HxD0 V  p%F@5 F)F)FFbF(Hh"+ FA Fp@ FHxD0Fp6T p %F,FP5 F)F*FF0F!F>C F $B ""T Fp	'F0 FFP h(+h)&? F $x/+ F1FgF)F(F F,F FF F8FFx h(FJzDH)FxD F8[S cS KJ{D]X
Q
iF#h`B
S
h#hB
]  -A'˲FFyF
6
QqCzAFrCF v(FF,hFx ")FF,5F)F;FF0F"F,+ F F  FF H!FxDR Bxxxp:c;Bu8Q    pG K!J{D!H-A°XxD|O4
3hDAFP ,(FlA3h`B  (
8FAFjF"( BFOq*F (B }R $ HxDxslPHxD0@i (x )N & x_+C a9)pG_+У0	*C a9)? +pG
F#-A1";x:-0 $ F&FF[0	/E aW?:-
McEFKB xO0  6K-GF5J{D FXFF:!3hF{`FpD  
AFhFnFD FF  
" !0FFXh @F" !
" FFBh0F  h+`hh`d n` F (Ђhj` yh 0BF < "F H!FxD,P 8FFF.!b( F:!\P:"pI FyD(`8BI0yDh`8Axp(F!F8@ȿ__OK-G{DNJ	zD` FKIyD( !D
F	
F BB
a
@
"
F 
	
C@

p	N

(
*H xD 'J'MzD}DDB$LX@ PFT(FTO	(F8Am7? +.H1FxDtHxD
@H xD T  * O O  CO ( ( O ( N KO 
JACzDO1pFpgF@!FFr F  ( -CFNO~D6'HFh' ah )/F*h:`hh(F=h -#iC h0`h F &F4h ,ѽ  7HSKxD%x hB&ۀh@@AA (!-F "  # @=IHyDxD	hx   ( >@pG  `0 -OFFFO4'F+x*+t5 'q0;	+
" /(F  ^ع2HxDY(F"`5! /XF>FG:FCO 0 + ,54$(<F/)h
"bFO	#zOgFP1F  C
FF1F  KF
?ТB)x,)5 ))x-) N -OFmL8F|D(jH9FxD8FF ( eI8FOyyDbK (OyXh!     | (@ +@ TDDF8FK.QIyD`PHxD	x@FEJ[FF (o" (,ݔ 0` &FhW<"3F 
h" 3F7 "3F aFhO3	h "
*KQF"{D 3Fh
{"6. ! ! #7 "3 + & &B`F ! ""PF.&F``H !1`xDi*`a H9FxDT@F'G  RM WM M : M 9 | K 8M}D+iZihh +LH|DxDh` (HhxDM}D(FFxH)FxD	 .!(F4(F F ( F8@.ٸ (  K K   K KJ{D-O尛X $J%NhzDK~DO{DcDpTp pp`` FIyDaC IyDhRL!NH"|D%~D h5`O<$DhKH{DYxDhH9h'FxDh  FHxD  !FTaH  JzDFh #JzDQhBP`'?=<'DPFFPFO # #2#OqJF (HFfai_	<!(FFHxDE -@0F<!tDB<2>O;JJzDiF1hi-h-lhO
&YhbW  hbhb7 ib{ib|xh )ݩhbh$h , -ѼEEzN~DzKD4i{Dh$hر "eh`Dh )HF^F0nHIFxDFahXihIXFyDdfJzDPa2ii`HaIxDyDP_IyDa /0F-0i (WLXH|D1ixD F (SH!FxDRO|QJ &D |zDkh!F FMH!FJFxDs0FIHxDkO PFhbFkh_ ##a-h -wl ,h:HFO
xDi*iʱnhh (
 !" (۳hB6h .)id-h - ,Կ<$
$FF椂 | 6K @ JK AK B ؏  "  E J FK Њ  GJ xJ   wJ  
J I C 6 I "  I zI H {  \I lI T HJxDK-AzD`FF}I{D yDkF]zLzI|DdX F8vHvIxDyD;Fn.@W(  (x-+Bx2 !hhF .F -- -` h!h #A 9FFWHxD@B!OrFhhF ! h 
1F@FB !0F
F0F~z (CHxDJ  F`i"F!<HxDF8:HxDF8L|D!F F*F #Z5H!FxD4H!hxD@AaOrF AF0F<@F8F!h'H:F xD(F9F"h0F0FMO}DD(F@AAOrRH*F xDp   4 \H G PH V~ A v G  GG BG G  !G F ?E P  F 	IyDhHxD1C`Q0 chC+  cF 
K{Dh~*HxD2C2H`` 9F WkQF
F0F9F`@i@A@˿QCCA@WkQF
F0F9F C)CA@WkQF
F0F9F~ @)@tA@iUKeQjFF F)FdFF0F9FFFTA@c-F@B@R-5@1( @A-$@ 0H@0-@8 @  sFBx:AL|DL|DN~D6 F)F&`hG4BH)FxD|(l "l l RD p
H
LxD|Dj(xe`MH1FxD
#eq#qqqp /  'D -AQ-@+K{DFXh
F
( FA0H$HxD#HS+xDA-((HxD"F+FA-HxD?! &O GR O69R0 1 O6]V
 AS n C C C C 8
K
M{D}Dh
<a U1 ChC+ ,8   IyDhQ0 chC+@k t S+
  QA]  K "-A{DH
$ZqqxDqqKh FxFRxF0F(F>IFGX8FFHFFT`h (    &x -CFdKhD2 !
F`xhIFhx0	*Dx#F
KMA KN}D~D(F@6\h@ !
F*F
F? & $ %h +h9J>H9IxD +F;IX0h2	FhEI  XB	   B""#C-HxDh ".. .@.
 ²0P0F # #HxD HxD.. .
@.
 @
ल @	@@ E
HxDM     w - - A A WA YA A K{DhjQbpG  K{DhiH1xD- ҃ @ FK"F{DhiH9xD@-乬 @ K-A{DFh h O $bk8F Y "F+ 20PS B @A  @"PP 56!iBٽ  KI{DyDh-O
h q,H$ %D0FV P+i)ajk0FR!0F)imkU!044F  `O h "sID yD !jjBګjh *%  @B  hb  jj( *b2i	(	Z9b`<	*H1! @E3
*`b" !	!F *
"+F77x'hi'CkaELOa|D$h"i`k q"iF`c0F4A00C!  ibkciR A< biQaa#i?  `bE hi sE0BHF  B.aj )  h("bbHxD0B  VBK<
&is#ad4F(HFO2 	    } } ́ 
 K{Dhh (!g#hK!iiB: @Mal
IyDk+H"lxD@-OHxD@-I = = = 8 %KFp{Dh K{DhkB !"%r8Q
IBBFIt
F	IyD	IyD F8@-8   B < ^= S= 'EAK{DhPhr@-Q  F ,`B) F|@BK !-OJ{DHPXxD
FDO 
#h{cRHxDa @0P , `U*$I
yDLFya.FD0 FyiF"\ Z0F!FxNO wL~DXF|D70F!FF{` xh6dF FYF^.!F0FF{`yhvd#x +  YF!F 0F+FFXF`yj hmDF " hIF*:j{jB( IF  (MH(*FxD
JH(ZF+FxDXFzF[( U*@nF"		
!F8i(9KD{Da;IF FTFp"\ " FF00H"F\FxD|.I FyDj #O{O?\)	)32B  TH)FxDT x (

ESizkhB<F q $ < h ' ' P< < ; ; b& & K; ,& : K{Dh #PkkP, A# 3iBٙ hi Ek3kDP1iBٽ@ | 8K{Dh`k@ckS% 58  %!iB`k "bc`l %O3%`#aea0)F)F
HxDI`d  !bb`  HxD8@| 8
 & K ({Dh!lkBHxD@   d`lb#llYP! `d@@)HxD| 9 i9 8FK{Dh hA!`L"h * ##`#hi i0E]%` ""`"h  +Ŀ#`8@8{ K{Dh
h` #`@% h{ 8 t
K{Dh,`
i*i!BT##t,`8@ <{ 8K{Dh )$ t Bjj *@0sB\$t@Q$ 8@HxD8@8{ f8 -A 2J #ȀzD D hwqh phEA:Fi4h3i(Btj ,̿ $$ $h *@F2`LYphqo
FAF
 (F!FO23j ( h(s}  \$ % F)F z   Kp{DFO6h``(
((py -CF lK $D{DhF `m
(F(( ,HF<P(iJdE.U(Ff4FF #O0+U`(Fg y H8xD	 xF3/(F8@,t!& HxD
HxDh`ll"ed
`"dc8@ 6 6 x 8Kp{D %h  PPP( *P-M_}D)h O/ ? H gxF*p@h+h 1F " "3F0F=(FE(Fp@, P (FL R# "hB
IyDh 
300BZ  p@k x x x -O0d04F~D FV  xdOpyDF`$%O3zD`cyD0cdEb Q@FH1X(Fh
cH ik@PHxDl(h`dL|D hIJyDzDhc YF8H !xD
A !F F - N(F;(F~DEA4hve`u2F 0h(`4(!!
!"`41( #?>1`hi* ٠i(@FJIHyDaoI yDiq  cK{D;aJzDh3jph]5bt IyD
hi("ai.#aia(kliV +j(c +kkO IFFyD   h
,Z,HFFbj
Fj & p )8	)6 6QfE

  Pp
FjR{`P`j`ha2jiB@FOaZFYFFiH+ {hfE*iE#ZlbS) `8{`+hi)iKEZF		Ea{hhS)jZBѡF`4h  i`+a)` zi-jF -=&j .7O0rF
9b}bGz
 @aa/Q( >%( ܆ 	
 0 ] @
-} -Q>( /( '(@w:( "<(@pE( ^?(@hG(yN(@b m(|e(Ub([d(^R(g(eOj(Ik(@MGs( 
p(Xn(@Bq( 8r(@;w(:u(@4>y(,z(@.* N j w }	 5 L5 8w 0w t : v > Pv 2v u   iXiPiqHJzDhiqH  O0 `  hHxD @ a:Ѳ)l+dl
qD;  "hBed,HxD'HxD uFrI a:в(l #mEPm3Bl(`EЯHxDpHxD[
 ^xFAFckPF9iS& 6 iBPFHxDHxDHxD8@FviN~D0h  C0X PyYN~D1hA C3`PHxD n(<d(	e(B3q(9x(:p(;1k*7 l(O0"#l31XPFkBqc! "#l31XPFkB&lKcr"d

 O0    _0	+?;HObH)FxD,	HF(F	,0:	*\FH ! 
" 0FgCF?G-<%-Cܫ25)
-) -%<--/-L>-&?-Ln-;	e-d-b-	g-ܭw-p-u-ӭy-z-ͭ0FL0Ft,IyDhi`p
(Kd!{Dh(iiFCr*`0Fm HxDhPp~IyD
h% @IyD
hB @`yl 0B`LF2s 1 0 0 0 0 (0 z 0 r q 70 x/ Pp :p p p o 
+-OFFFF  wF!\ (:K{Dh@Ff KiF@F# 'OvBw>!F@FF0+I"yDF F-
! Fp j/!F@Fp/!0F\0@F/!蠱 #pHAF2FxDF FPFAFJF (   @F !y HxDHxDQFF F do - W- ,  -GF#HFFFxD.!Fb9F*F#FF0F[ (.I@FyD0F9F*F#FL (I@FyD0F9F*F#F?I@FyD0F9F*F#F380FIF*F#FG*  ,   w KF-OFI{DJyDMzD`%}D
H)XH
hxD	D FHxDF&OFDH pxDF@HxDFD HDxDYFF ([}HYFxDF (SzHYFxDFL ,Q8YFx8FYFP. F:!^F B !FR (2FHF@ALF FxI& 6 DFO !x )XHxDx	_	RORLD|D
(F<JF ((FFIHxD
UL/! F FAPF!F" #F@	=OD F:!q 'F  U
U:F #FPFaFC0?`FJ/
DF"x:* *R? +>HOUxD5h (XF  G m Q,  _ =, @, , ., +, + S, , , + ~+ *' l+  *  "mII&
aFEU^_	wCWSwCS3WR2 ", DaKjF{D"
}
m* K{DhA, ,A!mAYl  DAm" ! @j 
K{Dh1+++ppGpG`pG

	BpppGVj -OFFF( F,0 K{DhFq`*h^FW8FQF1>D4	  (ڽ j YK-O{Dhh
;hpP GGG eyC#hF  :  	`F)FHF)F{1DD"ih  ah@Ah	 ;F)FWHF)FSD
Dժ
7U
<[
d!F 	d FFCv0F)FAFCFJFd>d0 8F4<  F!}HF YF"~
#i -OOp
F4KN{D~D`F !HxDI (FyD \FPIЂyDВ[DDF
FHF] (ڬHxD<((FJCF_ ((FH%j
!6KOA${DFKDa(F{Dk))	)
 )(F#HxDamlk! #nj    1QC#" HC `}HxD1bkkyC@D `(F=+rI "yD jx-*AxY ! ( j}FgOYgODJDF
)cHxD@8F*FZ (#!8FO 
YF	 F HF(F*$( PFjE(FF`jE(F{'!RF+FPECHxD!jV F#h ;   		FXFDE8FEJ(F (1'L6YBF!(N  ~D1F"V혱 F!x09	)d( F (FF (/I "yD2  T Dh Z ' ' '  O' #' #' ' $ & a & _& % % H% 
FKh0HxDhyl*Ѩh (h , ! !FhF &O4!hh"KI{DF I #yD 
hyl+!BBH1FxDc)FF	BFH!FxDrKlC 8FjFI{DK8FIjF{D   M M@M@d $ td $ $ $ $ -OO PFL|DFO PKI{DJyDzD`F8F@H!X  !W) EwI`h=vI
F (yHahxD #BstHW)xDbh4đ
;XDQF,nK "$D{DO
DF& yd#
9F YFRF;F40FSIF (dh #ZH xD

EUOD8h
 HO 
DDD !O WO 	
FO !0F
FJHIyD  ʱd O"PC
F >IyD  {	:б _8F)F:F ѷ _QF R #)FO R`0F _F&HIFbhxDR0FAF:F(FAF:F HIFxDDDJzDh
 

  - M M@BV c ^$ m $ $ bc $ $ # b b ># c# " # # a dKF-N-FbI{DbJyDaMzD`}DF_H)XhT&p8FF (@( (@pAO
KKF_NH!xDLl`IHxDu"`p@OeDH9FExDF (YO1O [ERES+O0O  
#EE && F
"K _! 'HLxD8FF!IyD!H:FxDJzDJzDH9FxDHxDHxDHxDH7FxD9F+&0F  ta " \ S d" 8" 7" !  ! o!  ! o i c [ -CFiF  " )C 
F!hFnF> % 1F"i{  1Fbis#iEEӽF-CFO
FdF`DDDhB	HxDh
yd*HxD  IjF0F;F FX 
yd*HF!Fh F M@  _   _   -OFINyDKH~D
h{DxD	yd-ѧI
H	yDxD` FI yD
K FIO{DyDD`KFO{DYh7hyd. Bh		x-+Ax@A!d. !N~D2hyd 	YN~D0hT' d! !jKyI{DF !_4h!yd)FO9 !
QXE 
	cxHxD FFSB
E
8FZFXEFjIyDhyd*h
NE	FO6`I`HE(F_JyDxDzDvhyd(:F "FOYB
SE"RF8FFhyd)QFEi
E
	ECQF "8FRAF"FF (6РB:HxDhyd)8HxD6HxD  !XF"FAF0K{Dhyd*
-KI8FB,{DXFBDE%IyDhyd(	F  AF"FHxD   M M^ Q   ^  b  ^ W   J^ ^ ]   ^] &] $] C \ |  Z\  $\  pG"
  2F  , O0  KEAJ-O{DM%O O
	   X/FFDFF3h4`C   
F'IJyDzDHF 
򶀺ѻ()
,*	( !ZF`1F XEoHxD" ۺ
ݺy 
#0F@F q 	 g j (bEZHxDYOkOO 
 S (K
 

E H@= O*@P
7x_E:ECHIF:FxD(ͱ  F3\O, OOL\90XEB
(FF3\0XED_B	 +O	 7DO  
$O	F@O $- 4
, $C(%FЍ HxDI 
"yD*O0   EAO F\ 
F&$hB

mM      a p 'K(J{D𵕰XhFK@B!EAF   F
)h"l,!` % A#p!K@0EA0FI yD8FxF.0FEA
C@K pFF %
 F1FP F5|0$#x +O5(Fp !
F.  FFFEA۠0FESAa0FEA:F"0FHxDHxDHxD4 (F      4F-OF{D$yDTzD`}DF)Xhzh
F  	@рT#P@<(F ΁(F J,x%^	 R	sDF^ (HxD
 Ѡ)HxDF Ѓ	+HxD(s %,3:IPXm$R" IyD1@#L|D4 C LHF(	EHF!
>HF
7HIFxD (ڼHIFxD(HF!HF< HFQF@HFYF(HFOpD @F!,FHDDxD#h +L	!@Fy`( l?LD|DWO@ F@ (-  F)܏HxD`FK{D-q$p5 
FH$ !FLxD	D<|Db ( H!FLxD D	|D
(P
~H !FxD}LF	D|D?
!F	wH xDuH< xD
rHxD DiOxAEnHnLxDD|DlHlLxDxD|DjHjLxDD|DhLD|D,A00**
 *_A B!
!!!- ! !VHxDF8TH!FxDRJzD "FDOD10-ج	 (aFPFFFXFrFCJzDѢBDHFyh )!?1!
 (  W   I  b t    C  Q =  R &   i         H =  9 ] +      )      ? [ )   KhFt (p    -OF
FJKKI{D,B=yDHHDo BY 	
h!F  :T%`2FF=K=H{DG<xD?:L|D:M7:J !}DzDW/F (K3N
 %~DchX`` ( F<F!hk!` ^*	."ѝB0F"`hWth[QFlHY XFT15B
  %6

 F7$75h -P3 + D    "R R  ZKF-OFYI{DYJyDXMzD`WI}DmX.hT&@	zhxF FF F!o B0DFF *B!0F( (EHg!xDh	 $k #'D
.`1) *F #<A  +" "F2H1FBFxD   (F    FDO2O3XF # ! #"O 
#WFF
F  !:F)@ @CJ
7 /0F!B(Hs!xD2F1   *HFN*C  Q   TC p ~ 5 E   8FFo @)F8B٤
8eC
8  4F-O
F{D$yDDzD`|DfX7hd~Dd~Dd~Dr 	xD8F! \!

F TF0
h-xD !RF2HE AF6 YF2! HYT@*$h4xD9!!(xDOzq+
!D @FDd! (F%0FQFtF8H2FIFNDxD%@vxC>5. 6 C T          BFQUYnr}H>xD0VXXFrh *X	 F
F F)FFHxDCTOzqHFaoFOaa
OaaF0F F<! <!F0FHxDF<!<!F0F HFF
!d!HxDF 2FHxDHxD	 F
F F F)F0FHxD F{FHxDHxD1FHxDHxDHxDBqFHxDao0FOaaOaaF0F F<!<!F0FHxDF7<!|<!F0FxFBqpF{HxD:BqhFwHxD[ao0FOaaZOaaF0F TF<!J<!F0FLjHxDF JF1F]<!@<!F0F<FBq4F`HxDIFI_H
xDQ F)F FZHxDFYH!FxDBXHxD>Ozq0F
!F0F
d!PHxD
FIF(-NHxD%
 F)FFIHxDHHxDGHxD	 F)FFBHxDBHxDAH	xD F  A
 \ ( Q+ @F `O X A A           W  _ C          g O Q        c M E = '  # 𵇰 #F.I
 .KyD.NB{D-I~D`yD  F*M#}D&HxD$OY)hT!0HxD|8F( K + ! (1F
<B	"2-h      I #  ;   F  EAjF P `&P%ch+HOxD0DH)F2FxD
xw*)Fh*1F4ah )
 E   N J @ 6H #pxD5JFzD`  F2IyDo/M/N}DY-h)+HxDO*BT% !@;C Hg!xD%A1Ĳ)L|DL|DHxDF F~!OpCB30Hs!xDT% 0F,  p ZH  
 z: 
 
  z
 g q
 8FrK)F{Dh _H
" "xD8@)HxD4F  4, RG   -OFUhF KI2yD"o C8FF=1FFH8x/(~JFAH;FDxDQF1FFFhHF:HQF:FxD1FFFHF$3HxDjW EU/IO	yDCE	=@wG	JFFW)`0F!F	
 FO
1xrD1F:F  ]=)B1FRF `FL  X		
 FO)ۺ   '  f+ -O)}JLFJK !|DJOJJXDzDII(hF:`yD0FEID@p
FdXE"h@L?N?H~D|DIF
r3FxD!FF (38HIF2FxD!FF@3I
pyD"?7 h:!.
	 &p>F hIF IF "t8 h
qFV (DD(FJSF!F (x"
qW (ѧ 0B
)} G 7 E   i ch 0  h |  B ,; +pG7
Fo CA=[FX
M}D*F F% % Ff(F> b ((((
HxDpGHxDpGHxD0pG)HxDpGO
 
 Y
 M
 /H-GxDF (T,K & "{D1FOFh`&a h>; 5 !!'i@Az"a:FF h `@3x h(FN`&h `"hhxx(FF8x)HIxDyDF(FF ( 
 C 	 	 8
F
IyDF F_"-!F:)F FF F 8  8 	 K{Dhi0X!ji@)B -A
FFFF5F- F1x*FF1FBF 7-<F -  pFpK{DhiFi B ja b j1Fi*FiMap"B FL &E09F*FFFUr F !2F F-OObFFC-FЀА %̠DDDF1HxDhasBFFYFvFFYFJFnFQF鐱$I(FyD`"HxD(Fi#j !BTaiCa=-!_"x`bJ !0FazD@FhxZ,! "R F-!_"M FZ`0FO)W    A \ Z ( K-O{D~J~OFzD %hDDQFH#hAhY` h5 h&nCY (ѡh )2=h*xd*mK{Dh,@F@!OrD$ h(d%LP07 %=^N_H~DxD1FP0F@A!tFO5 %O &'BhYF hXhFF
HFQF "&hHF8BD  )XF6 -p'!h?Q  -a(FFDDDFHhx  +SF[F0IyD aF-I@8FyDB"hR  *`"HXh8FF8FBX 
HIxDyDHxD-HIxDyD ("`0F @ 2 d@  P@ = N      N     -AFrK_"FqO{DDh@-!nHnIxDyDyF)FZH FcJ;F (F ' FtGE@G`H)FxD_9FF}F ( 
! "vXHxDXHxD0q"FHF FJ4F@FFQJzDh\`  $OIyDh3iO0MJpa!LHzD xDmsi +2h!&(FhF /d(FOaP@JzDhO>H)FxDI<IyDhxr+PB:HxDhxd*<8H)FxD6hFF(F ![(FC*x *@F,*I FyDȹ !`!F0hX h(5h hl)FFHxD FA(L .hr .ѯ . C V>   Yw A ; = = O   h=  &= =   u -GF(FIyDFcXK@A'{Dh&iwCp a2F hF `(F$IFH PF!hfa)F	JzDh(Fah 6 .< ; -OFjI}iOjKyDD
hX-xhl-eHxD  $ aK{DF` i- `r-\HxD!YHd-?XXI0F "yD9hV!  
p
pOH !xDdh 8  oJJ0FJIzDJLyD|D`?hr-
FM}D,hD $*`Li-\
pl $FD#FD ,XF!FAFF FI?F  *i-#o AV' (,HV'xD)L|D"FV'` h81FF"HxDnRU!Fhh (hB

p^ (ћ
}; -  ; a  ÿ ;    ; "   ƽ 0 -AFFD
 %3xKF@F0F4E F9FF ((F8FF!OpF(Fc #-*_"T3+\
.*  T F F8  -OF x &xxDDDF'@F1	(F=!F@FFSxRD ! Fd0IyDIFQF YF CF.6W (F      -CF !F  #E
FBs & '"# 8F!FCFhJB @!F@F0FELFFF	N~DK8FE=)FFp!`8F)FTF0 hEB'  ' "!F3F` xh FR(F   8FFd #)F"F` Z h8(B((&(
HxDpG	HxDpG	HxDpGHxDpG (@B(`HxDpG   7   3H-AxD1IyDF0HxD6/H !xD蘱G!P! "F"&H #S#xD(#HxD##x3 F !   	* " CFF
!F8F FMO@}DDD0FJ+F (C       R Z  -AF
FF<FhAFb8$h ,6h .ѽiiaiia8Fa)Fiaiaah  OK-GFNJ{DKI°FX LI;hyDA< (iF F7F  EI"yDF  (` F Paah  FDDDh` F4F`G FAF"J혹4_!#F-( (,J FzD+ FIF"00F  FQF
""ȹ
4I" FyD툱I FyDX FF  F$4 
:dE0FA 9hBB  B(       2 * K	J{D	IyDXFT2 H!FxD&  3 -C
FqL}pK|DpIXyD #nI8hyD (FrkJX&hU& `fI yDF(U&P4!
u
_K{DX(FB(F#h  `c&F !VBFFqh ) !OHOJxDzDNJzDhLHxDKN0~DDih0Fd)Fhah@FZiiaiiaaaiB
 -h -:K{Dh9HxDS8N~D`h	8.!F HFBF+FF0F&!i )$h ,)N~D1h(HxD+'N~D`h	.!F HFBF+FF0F`i ($h ,у F;hB
} &      3  l o V3 4 8 3   p°*L
F*K|DX0hAF(IyDn'IbXhOd$HD tB  !F%(A  3hB.+h)HxD9 U#P
"!FPh h
FHxDU (FBp$ i (  8Lh !F FF8!FFHxD(F8 6 }K~J{D-O1}XFhyM}D/hiG (vH!FxD(h!DiGFpH %xD/F!DFoJFkKkI{DyD-# "O<1=!
<2
x="/ 	o( -  7(	hBv,!F (oh
x"@F| (fLN5~D1h	(D 0iG (  6hCiL AGF
<XFX DD	
dF 7HxDJF6HYFxD	20HxD0HxD.H/hxD+HOxD|*H2F*I*KxDyD{Dl(HAFxDno!JF (Wq"IyDhhx"H9FxDX  hB&
1} # f, m T ., H , l0 +   { q i f f a    Q * - -O$DF 4 "|DTT}DyD  3 `F!HxD(`HxDIyDh`8F FT@ F
m(`(HJxDzDsK{DX`0HJxDzDb  %XssssM}D )H xDNkhh *HJxDhzD W(pHxD q 
D	 !D"@Fj 8F1FG (HxD gh HxDK{Dh*9F""K  H'"{DGh@khphBоHxD

T
  O%DDDTmh8FjiG (ڴHxDYF8F ( π 

 E%%	EHxDHxD4'chIyD`  XFIF  1FiXFG (ژHxDYFM 
hE  4  ѐJ4 zDh"8K HUBF{D

D"@F08F1FG (ڂHxD9F  hmhh"졤{K %*D{DDLHFv(E 
"EE* *C*kHxDjHxD;4)`h(gJzD` XFQF 僧1F8hiXFG (]HxDt 
_F *C *4!h )TI" -%4 yDh! HSBFb (, h(* HSBBF*P (@HxD@HxDO0 (h)9HxD9FO0	6HxD  W( 3hB5.! * $   x O Z ) - I b) / =  @   -    W ~(    (  '    + V'   '  & J Y & :     KJ{D-O-XJIhzDyDKq{D
(TCFѨHMxD!h}D ! ".F@𢀢K' & p{D`H@BFA &p`HxDK{DW& aH1FxDZai H
i(FO 
8
0,4ZHaxD2
z,. ѝg0|HxD|HxD{K!!
 "H(Fi{DO 4(̡̱FDD!S) eJ mHIFxD XFOPFe		 Ѹ 
 G6B|' K.WKH HJF .aF{Dh (iIF*ؤh FmHH!FxDGKH (FHi.qF{D~.?HhxD[ (=H=MhxD}D*h) "!    q)m3Nh~D Fv\		BA0.H!F.JxDzD{KBr
J0 {
 #        .A@B T  	   )   4   T S     A     ' .   	+G./РhTF(.H.JxDhzDm! !"O 	 F)K  "
H(Fi{D4T)AEF		 O88hh.DfDCF	L
F    
(FHi7(F<F!h )FqhBxs   B    # 3\ *\.)T " 23pGKJ{D-O}XLMh|D }DFIyDF8h!O24 x _e!Or( 5&_H`
 1I"yDh!PK"{D` $OttDDDF?(HixD4  HxD0.! `FAv   r`` ò"A  SF" !XF&XFZ(FJ;FF ((F1F	6!ZFFF5p"h)FFw0F,'h78F;
8F7(FFHIFxDhHF~IJKyDzD{D
!F:F
 
#h0F@" #wF QF<)hՍHxD3
`	 "	
 0HxD  !HxD@
l
x F +@P> >@< < @oz$00+љ **	 <	+љ *(	!XFDFXFrF
8@o	O	  SIOa{yDGXFA(FBFE MFmTPTJF(FMDYF@K{Dh>HxDOpOf  !9IOkyD
8IOkyD6IOkyD5IOa{yDo
h
Ւ/JzD/JzD/HxD^.IyDh?O|jKK #KB 0F%hG  2 6 ; &% 0  (%      * ($ $$    / "          "  

	 ?@ KJ{D-OX	hKhkx-*
Xxa(ћx+H	"xD`  T  " $F F0F\%x--4*% %OD7
 F7@ѠHaxDW )ќO\FPDP7&0 𿀘P ;BYJ	HzD0 D K )@\F @ٲ )i= IHFyDR ( !|IHFO yDBHF/!FPYF"0e "pF F/" !HFF
(  + pdH!hxDT0	dh ,(^H!FxD F (LF
,		F `FQ`2E
F hNP8h2FMK{D PF$+p #:)Z )<-+#@ Ų% \F>KH2FPF{D=d 8KPFI"	Hd {D2F(F@	 , FhB41! "'KH32F{DFL		FhYh3[E qF:h(FK{D  
	k  !  0 V  "   5     \   (
KB!  {D Pk QcO2uZuuupG "  (&\pG8F@h %Bh>h<j8 k6k2 l0c5Xl*P-8   iFL |D B8F  o(Oa "hB
HxD iF (HxD #`   F " &;(8F
(%% n%(`8  
K{Dh
 hCД)Ѡhk , F  F  *C
FIyDF Fn  !hFN H ~K-AJ{DkFX@M23h{`hI$yD
1,FD;@#0 , (9F #B
" (h@F*yh3hBzF   F"A
 Fw K-CJ{DFO@PSF 0{`O@R@#Fkh@F&
4FD)FP  @F3h)F #(F"zh  B&F  8FL|D4@M2(F!F%(F!F[8 ~ -C(K(Jk{DFS@M2h 0%
{`@#5FEKL` |D4!F| (   :B
8FK@M2 !{D  F.@M1 F !F #F0hHFjyh 0BF ^
   F #` !"! F5! F1! F-  !F"F@&˽   (KB$ {DTkLQcZi *ېB	Xaah;Bٽ@8 P -AtNOl~DDDh (#h#iBФk"@F!lA*!l8FrF# h#a ,B`   K{DjZ!!  < " # &^pG  8F " HxD8@0+k0k(Fh (HhhxD(F8@)K(F{Di(FK%`8 i   8 "K{Dhh  ! " #  hC Fk ,`8 -OL|D h kHxDH cjL|Djb ( Âh $ak .pMD}D O3F`jJSFF  F4Fbl:!8F2F !p8F	`` `.
(kJah)ck``8F.`~HxDj~HixD F F.yHxDxN+~D3Zx"utIyD`F `u-'0Fgu6!RF !p
 `ujI0F"yD* hHxDfI0FyD#acI0FyD"a6&>pi )]K.!	{Di0F"b`0xn( !
" g bh )o# ##a6KI0FyD (~
o.!bF2 0F:!.( " +_ c[=IyD dzF &1@F(ؔ	1)̰DAF"8F@6.-HAFxDa< "iCBgcS 	JE3$6PdO
i. l`d`.ѣi+.dѠi(?_G  ; x  R    2  o j z n .   ^   O "O1F`!F@h`h`jb8k8c8l8dD TD 0F kccx`O 	`h,!F ( , ꀔNTO~DDDhxhah (@hh (@hh (@ i /ј O8]!F"F  hc`$8h#ij;a"j:bjbb"k;k:c "#c9l l8d!d2DP*KlCdD F2 !aB	hl"F  hFh !
"F@|h?h"Rh60PHhxDh0J AFxhx**
Cx[  K F  IF0HFhh{h
$kQ  hB 1vp8h8hkO2<:`@F;hZ8Fk F<F /~#M}DjH,@-@.@/@MD}D5i8k(` ho h0+Ѡh F F,h ,`k!  x  I J ( -OF\E %X#|Do yD%pcppp tetttb,8uD`b8(P)P*P+P E0F U %|D}DzD"`yDXW	p;hV#`FbxDj!xD6 u_Hv$	!T$zD}Dh",`tD{j;X2A
 d ~D1phE0` !"1prppp
,
" !
4!PF|D!PFtT!PF|D
 
`t
 }DXd

 D

 $~D<
8
 


 D
Dv F;	4  )! ! '
FDVekF2BJzDhQa=aB" "~iF pR 
h-HxDU $IKHyDh{DxD1q&hp ms
" PB ^!i
: )<єP-0F
F|h. IHhxDBO7 >F)"є ( "8 h@M2@#)7k(Fh\ (	(FjO5/FO5	ckC (@y ) "j*cjX`b(bBjB<*ءhO6h h h6  &``b #cbn ( |	(F8F ۀ a hpi(F!h 	  h  `	 ck0F*!FhhG  :j(F B#YFZFF 0FB (x0F9F*ht(FjlF(eHfJxDjzD	 kPf8bHbJ!kxDzDaX`JhzDSj3B]HxDUL'k1h`(FI	GFU )FRIyDJhhB	 1 (MHxD0F !  ! i!FODh(hBk -
 	6D l.;H!lxD@,?h7I  @M2@#yD1]k ?9 ,4!i )?.(O O84 ,F 
   & T
   (
      ='*    J z 2 E  n y V h R	 V 	   !  Kp{DFh 1F| (dh ,OpA1FF   FHxDl`h*`
U`IyD
`,F` Fp 8     "FbHO4xD),NOpt~D!F HjF3F'F(F ( tB $ 4 0B $O4(Fx: F n  ~KJ{D-G XF  "+hFF	9FF0FHf (0FLO0 |9F` ! "(F0FH'J (Q/gKh0 9F % lHa0F(0 (a9F[ "H!"b0F  ((F#b" !9FF0FHp(
  9F5HBO0`b0F8 (ab9F"" ! @F"0FHF (J%g  H9F"@FQFH0F (  X9F !"@F|H0F (  h49F !" FfH0F (  0F|  	 0BD
 -GFdFF
F !D '
 O@6BBO$DYO( LFEFO!HRF ExD4P  -AFM}D+h1 t(`H4xDDh5F+(FAF56BJ !/zDh         "ٺ  0F
M}D(hx!xbx  yx`yHxD(`0h  I -O3}FxKDY
huL |D `tHtIxDyD#FFO q*F1'.O q*F1(iI1yD (@fI1yD'y1FFF+:* 	:в(
(0F"F# !1U
 #3p0F !p" FFV   	p

 ['8/
/ " #,#.#     #0 	@F1F D1O q*F (y LY h(F 0 PH $xDJzD`O4 F(F* FhB
,ag
3}   )       p Fh+ hFJzDHxDkO0 < E OsQE0{HxDpGD pF
LF|D hd*OsPB(F1FK `pHxDp  pFLF|D hH*OsPB(F1Fo `pHxDpl  pFM}D= h1FUO , Fp  pFM}D= h1FUO , Fp  JzD:hBR? +FpG  4${D-OXFTh}D.92FhB
R_ -hV_ -Ѵ @@E@ \ &F O0FHzhxDAF:i| h # 3B۰GFHxD`  Q
K4p{DHS'xD` A
HxD
 +o /5ki!8 /hG9FFHxD` 
J!oiH GFHxDK!jiX GFHxD!oih GFHxDHxDF (RыAF`FF (PK("{D 
/*
 /
!(!FHxDRHxDN *:*@*Ѐ*HxD
HxD
HxDHxDHxDHxDM}D	
 #

8FKF	*F( 440w8F }HxD  {HxDyOzMD?}DD7@F)F(FC*x *inH!j *"xD
 +  (VhHxD (#  `HxD.^HxD\HxD *#   UHxDSHxD.QHxDzajKMHxDrLHxDnKJ,zDIJ.zD20+j!k1"CHxDV2@HxDN!)>HxDHj!<HjxD@39HxD:
 
 9hBi )?KO; d         w n p U = Q 3 4 3 2 3 2 0   > c      G             pF (1)IyD
h*(H)NxD~Dh#'M}D+h ( (6 F %@ ( F-a2h Fh$h ,%FK{Dh$(FF ( F % ( F FFO5p   2      hF)HxD;O0K0{DS  FG î z HxD  -O %ɰFxFKFHD{DFxD.F,FHl(6DIp(Z0h "O8w(hF1i(hF*f(h!F"e(цHZ  hEE ih`FFW# 3`AhCE`@F9F` (rIZ  3+ ++ܹ hI yD HFl ֱW* c1FFd8F !8F
F(YHxD$ॹ8F@hW*@0TI2FyDF 1F FAF '   . (HHxD ! Fx F !  !u)F(h8=H)hxD)F"0Fe:!ؐԀF% D3hDC 0` %"1F(6` (*F+FB*HxDO
j
~
Q<$(FAF@B
BF (  * / F	!0h  F2`  IF:F- XF`B%F r  v  B ` 5   " 8!
KF{Dh1T! BhB  8 h (HxD8  sFzF (H%I"yDFP Fx])I(F"yDF@
FFhO4(F` ,J# F!zDhk`\JhB

F)h ) 1F"(`D`0> |   -GFFFO $@DD4G PFAFb0F4(F9FF ((FG$5  k KJ{DpX
F#h IyD$.#
 B
 
 (!hBp  ' FFFFdh.9Fh F@fFJzDH)FxDF(F F  ٱ (K)J{D-AFX}yh09	)F5"J!#FzD@1FF (  #I
 %yD5T 0FFJ+F!!zDF0 F Fh - ;hBl
}  p Q  pG  -GmNFmK~DXxhF + Ā 	gI "
yDV(@_HxDhh+(   TDPD
o/	 OM}D
NM}D
NM}DMM}DMM}DLM}D+ HL|DFL|D
FL|D
EL|DEL|DDL|DDL|DDI
yDAI
 "yDj>I
 "yDbz;I
 "yDZ9I "
yDT	 
QF4HxD2JzDhk	F/HxD
!	e F !p(H1X FT1O ,
  F  F 0B|    v ` M T R P ~ 6 : 3 B F F % | Z K @ 3 *  r  -CFFF3(JzDhh%K{Dhh?#N'FW,*F~D 6h3h73hah*FF8F.X3)FllFHxD.IyD
hQ mDFHxD"
 @F8FC$k  l  "  *K+J{D-AXF03hH F#ILyDP	 #F($!!	 (
	(F,H	'DAF'(FAF0    2hB    KFJ{D0XhF#h%F, 
(
B @Q $( )$
J#FzDFhF    +hBF0V  "K !"J{D0XFT"hF#h<hF)FPH((IyDIyDIyD, 
*
C@\ #* +#JhFzD    #hB0 ̍ x  z K !J{D0XFT"hF#h)FhFF`JhFzDR!
JzD(F  #hB02 b 
 7OWp
FTkK{DF`jI  `(FyDF!h!B#` h@!`+"hB#`	#h   3 UIjXyDT#QJc`!!QHzDQKT#xD "{D H`h(KHxDJHxD;!h!E#` hp#CHxDz!h*?HxD>HxD=HxDhTX:K:J{D:H zDxDFZ!h6M7H}DxD)F5H)FxD"h2M2H}DxD)F0H)FxD#hZ-M.H}DxD)F,H)FxD h )HxD&!h*%HxD$HxD#HxD"HTxD H!IxDyD  >  dw ]  %R m t       y             +K "+{*b 
"!;Ca!K pGZ7_gK{Dh 1pG     p/K!/KhFDF-H #xDh  [E+u;:` Z3+ ;+4KqѴ [ " {$k Akvf{2*{'ؿhp          iUMu>Mb`?   !Kе{Dh hT !!" ;3 K[@[ K5@kk	  & ' Gk+3:1
{w +
+IyDh 
@K   Կ   pGO0pGԿ   pGO0pGK{Dh#E@  ra  ,  H    
A*+g0pG  A !hF
 z+	
K{DhB0  ư>   OuA  -GFPF(EHEIxDyDDK {Dh= @IAJ0yDG]zD0F
`:F=IyD (F@/8FFOp{!F@FsF(`0  h`(F@F)FtckZbcO9O#
 )"=  K{D`r  oFHxDhB A`
  IL yDnO0!ir | h L     .MK !MJ{D-X@#h&F
z
>?K !+B0+
1B;#[(05HxD%4HxDh!k)!.HxD!)H xDO7 k;[6{jsK {ukKklhH F{wh (>` F!-h -
3hB ư>    .Az ]  D > :KF-O-{D@h j )]4k  /HxD.M}D= D(F,OIFDDFP)HAFlxDFFE &9F(F"N~DF8H1FS+xDF.}HF@F8F0FXFzPFx(Ft FO#         t K0-{D
Fh	"k*@HihxD ȫ+ݰHJzDh  jH#"E0= xDHd8  " #D C+9[EEDE (!l! "#dE0!8a+@;; KSD hkHxDh #D0!Dk}=ZE_HH= xDNk++Մk;#{ KKFG{z)}<+ic[ku{{
tI:ؿl !"}?0( <1"@ ڲ{z
 A E  *!o)C^ (#HxD!#k (F B2+d@1ih S+HxD    '0Mb`?iUMu>{Gz?    .A      ,  h4-O-`${D
FXD"h+h{e@#}`B.@ahxD hq(!Ohp+he)hd* ho(hc+h)0(D(HahxDXHjB@SL1jB@Mh9|O0`+z|
*HahxDuj!ubum
Ig;G+2[} *m
a;i0!a  K`+2[[8 @K{}K{Dh kvK;
kpH[skkHgkk dk	ݵHS6+ahxD	hHr@ (AaX8K& O C``3 *kpF{* +  QB
cb|}.Fu(k@3F3+N~D3hՔ{ {"}S+`}&iHxD++ah FT ik#YC 62
j
(
.l
(	 .>KSh{;} K
[k;+@H@ (;Es KtE[EK{BkGkt;;@߁
 + &OO:F>? *0F!bFP.k. ئHHIIxDyD+GK1F@F"{D! !` #
FFO  XEK  32B$K  
r F D\DEO  [
  3:8?[BBK=O ZFl     @Mb`?        {Gz?iUMu>      @        f  S 3  {   P d '1A?v.k.ٶHRFKxD{D &S;;;SO {	 Ikv23Bۻ 
.k.ٞHYFJxDzDUKYFpHFl"{DDDIyD`Phh #Y  #հa; "2ZEY K3D[E#ݰ`F3[Ek @;
	 	Ȏ  `^E.m  vq}S}B	Y0B0  XEF*eFaK{DhQ0FQەE0  d+"< (:(o(بlC(+ܫd0E H**QE&lE0Cd(	+Z E jZhh )
ڕE }h +  ȋ	 F@)(@! F.r H0;r H0+;6 H0;hxhzmhBZ\F          UUUUUU?7 "        -O-

Fx" ! F4K{D`(FOĲD DF JzDFO  ,L
0|DF|h++}ؠhAfѸ"hC!#h"	qFi	`FhюK!PF " !{Dn	  k#HahxDHLT} hQ uP; "@#`0" qPFD0( ĀIhO3 F`!O1o `ah}FSFU FQF;;hXH; ) F5I%@-C?h
 /]8@ȋ*tg(M0F)FOzrF<Fm#EH!F*FxD'F0F)FOzrzCF /0<M}D/h
+1'5H xD, z h (  C2 #`TY* ?

'%LO 
|DEe@,Ah}z h (H#%m0xDeP(h (?ή F!V        @     @        n ] P     ͺ P   A -C!4M }D2Hi)mxDi#F)j.HxD-K{Di)
d PCF)M)H}DxDjs3/j #(k:ik:OzqjF0FrOzqF0Fd8FFOzqfOzqF8FX(F OzqZOzq(FLHBF3FxDIFtD
HxDk	  iB z  Ĺ   l V    s#2L &|Dl+pni@耡`(Fh1
h i 5h " h a#h0Fl5 X*FBHIxDyD!i!kiBI yDRHxDkJlKdBI yDD ikj%I yD6(Fp@" O` _ w cGd %48"~DD-HFX|D
#hO0
esss=P>P?PMI}D"s<0yD( ) 8* + < )`!I yD8FVF`_`L|D`hF `@`h)F%qeqqq`LJ !|DX"3hW#  eFh@B ""rbrrr8LK|D!mF`eHxD^h>0>FHxDTKH{DxDhN !" (,h*HIxDyD F (ڿHIxDyD !FHxDAh  M}Dh0hddh097dX5F i`IF(`5EѮODh"h  #F  "zHxDh12hM  '}D"h``A   C! ^lit5  " F+FT   !"F+FLI MyDP  qH}DDD  "	ljlF & (h,XF8hl1B'x E@" )t 
@6 F
$zFαpK2h{DYkkcA  jXcB8biK{DjBb 4FfIh3 yDO  jxXbD
pN  XTDi		XaWIyDh\QF;F THxD:Ozq FOzqF FMHxD
FQF(HF<):)/
..1
...."%(+ @JzD%?JzD"?JzD>JzD>JzD=JzD=JzD<JzD<JzD
;JzD
;JzD:JzD:JzD9JzD9HxDp /?`B     F W B "   ɸ ¸   ^ ?i u^ h N @  *   ۷ ~     u R Զ Զ  " * < C K W c m {    ´ [ 0U#	L
M ;|D #}DU# B03]p *0   F
hF.hα1Fp(8`axӲ+hh5=``x#x x (0F-OӰ]N
`	\K~DX hFQZHxDYIZJyDzDFYHxD
 UI
	2
yD(F	(
 #O: (HHxDGJXh@(F# +_7#F,*(+э FR
!\ ,PF1
|TFԼJ,$O 'ID
tJF
 h
!X@qfFg!RF#F1 ('^ Ff
	H "FxD1 FTj(FQ BTS  j  G Q  * %  ` hKiJ-O{DFXQK;h FcI#yDF(1F"* F/!8 !" F & F (TH!FxDE !H"(F@ D8x`D .  !! &FHFR!+ !Z! C !(XF,(!rXFz (3HYFxD 
d !C ! .(Ql (Ph (  
 !ZF_F "YF	1F	K FH3{D	
" FKH*F{DKH*F{D#9hBj%  ó   5    KJ-G{DFHXxD#hFF0h !T"B1FQHF/!F "0 !)O2" C6  &&p< N~DHF (ڈHIFxD>/!!p
  (%%LPDDHFRL
 LZ! BL( F0X ( * F)F (kHxD!F  &Fi(ѽL   *}" FLLL0 (RZHxDZHxD(
ѽL F@!O BL@L0;(
ѽL  F!Bo BL+(ѽL @q FL h@Hd!x`Ch  +-(R< (#Qh )h +]L p!-K{DʱF C H'HxDnKB%H1FxDgC"HxD/O3  "F/KH{DKH{D^  B
  ˃ g ѱ Ă  S  &  m     -OF\N\KF~DX(h1ZHxDs
F VIyDVIyDVHxDUI FyD| (RHxDQIRJRKyDzD{D
! *F FT( (V0h@ F\! )M
d>XF3!#d0 !"| t G AGAFFQFJF FzPFBHF>  H
XxD 
d F
1hB.3  #    e  U p   -C4N
F4OO#̐~DDD F9F  FIF 5lh ,)IyDF%I(FyDP#I(FyDDKXhS" @p  "  HxD (
h *#sV  l C F "  * } K{Dh P`pG r  L|D"h ##pcppp V 8F	KF{Dh}( (F F8@Ϳ 0 JzDz3  EAr!SpG JzDz3  EAr!EpG K{Dyy (H"IqxDyD]"Z@ۿ(!	HqC"	IxDyDJ@     ̭ 6K{Dh4HxD  "
 ( Ee)>c)@l)z);,&K{Dh%K{Dqy q !e JzDhH !xDqLq !P !L8_!  hgV  
HxD~IyD
h
I
K "{D`      ^ X J KJ{Dp°X
%
&hFAIyD1;+i+pSp2
+
+F[VpF2BB RsA!hBZBp | R -O  L
F|D+HvxDEA2F`  z (+p2F##rFRB@L|D<aHD!&c@+ L"p#)
,K@0<@HDqnhhH5xD 5I"yDV-hF -0F\!0K	"!{D  !I DyDNHDJD~DzD$#2@$@!O2D (	 @ B pI  "yD1 (L  &p / " 
ܱHxDg6  $IK%FyD{D3y~c)$4q,F
)@#l3qX( 	 
7J'zDq ) )ћK {DK{D4
)v@ q)ѕK {D4v))	K {DK {DYqK {D)3){)H)vKJzDSy+ w+xy+ +qЀHJxDzDy)q_s   !vHxDUuHxDyBy_	* *HЇnHxDq	   !8iJzDh 2 kfHxDhw)GiO @ = :O( 6@F3808F- * '
SK {D_y// 9OK {DQ+4)LK {DI)5(Dp8F + ?     (  )'q"
q5UEޮ.OD9yq=h
+HxDy* #q ,?%F YF*Fc y   `  X     G f d &          K T 2         K{DFh  8JzDhB!h`FhB h` ih FH "IxDyDsBsssJhzD
ihB`hhB`h +$ B     pO6M}Dh   (
+hZhB^`h +`p PKQJ{D𵓰XFOP;h5FFIHxDhBȿ`0F.a0FDK" F !	"{D` F $<K`{D;IhyDB Fȿ`"i,(F %N0F1HxD	Gl`D!FO0F Fr!. F!p F!l)F FEA Fp	FOARBD	 UEvChxh
 (F:hB  j S * $v fJ  -OѰ #`%zDX5XU{DTe}DZ`FB_~DHU3}D.`
F< yDF@XF
@)"!xD h5"{D`   yD` ( c %
F !k!Fl ]F(F
 ! yD !'$lzD	 !"@w FFp0 !"jp4&{DhMZh 2FJCi )i
~ AQL A,iBܘh AT! N D! j )h
| AQN A,jIEiXT LD 0CF +ѻ 
KT!`{D@D! hBȿ`r	N~D0h   "N #~Dh 0H!F ( o T' B(FYFZFz 	];HF"3h`0`HFN~D6hu7i
|1h" { Q|8B ii, c 	BԿ		FOFA:F(
(7њB5xx
( Ј/B0yx)()#B$)Ѻx* Bٗ9yA,:xyyB !8EA0i	 FBGEвi iaIF aFF0iIFF9 (Bh)@i@si9aaB 'ah#
~  J P<BVwjjbBFF ' 1И )"	(7	9@F!JFR  FbFAF`EDgD		 (  ? F / h(}sjjqb@wBb "rbisaaj	1bqbh" AT!p*qicb,1B:Fq (Kh+Fqi +p8i@qBapa 'wa0i" CT#B)1jjb	b2	B:Fp (jh/
j@r3jb0bB !1b0F= . Q
      ^ h  w8t  L 2  ½ -OFOp
FFFFOp! "F
 
  *h
)2K{Dx *@Wy (@SXjIyDh
 |@A.@!qF  !  FOr (ڪL I|DyDp (HxDh;8"x-* cx FL0F|D!hO	O	 	FӗH $xDp
1F FIXF&yD $#& &4F1FIHr
xDhYFO r (ʀ $DO	O	IFIzHOd"xD 	)h+
 QF/ r!
ZF,(@SdHxDqaoOk CF
Or" 9Fp
O8*hE
9FOr^+9IzR+9y!  :
@HaFxDF<JzD<HaFxD/	hչѴEѣ9ZFXE	1L1I|D yD $1plEh ,?$$ ""N#I~D0yD!JzDy# HxDgL!
|D ap@1!F+B(h 0Ff 
.  ֹ   r    Ľ  m @ U · f?  0? t ? ^ -AF&H #&JxD zD`F#IjF#MyD"I}DmX.h( FEC(F/! E  T& 
IE" yDuFT&  F  FH x-)Cx F  M L Э  -G  
FXDF h0~#hQIyD`F(FNIyDMHF
`2X 0 
IJ!zDh"GH!xD`sLCK{DXbU( F:! O r h=M  }D(F+F[D)'  (?
3+;ؕ* .*:*	-IHFyD (4@1HF(EDA	 B!$IyD๺  HxDhAHxDhC`  J F9FzD #*28IyDIyDIyDIyDHxD0f .  ĺ |    
     {   < ִ -OOpFO |KO{DD`FN!JH ~DazD%2`# I&($ yD'("! FIX?h	zF"AF"s#!"  0$5(%!o B" XH(HIxDyDr&!Ja C' !J (! )T' &!``  O B`!" C!	УK!  "!{D  "OF-!!" XF (ڕHxD! 
 !" XF (ڍHxD ЋK ! "{Dh(`*h2j`ha !1  !  ! "h 
F  SFvHxD QF  HF;Ch0
T'FiHxD gH xDeHhxDh!h"h!F2
hhwh hrOzq #QCUHxDETH 'xD<F!'LKHO"xD<h
),<yh xhSAp ! @F: (=H)xD]9hd	cF[hhJFQFh3 @F^HEF,HIFxD(i)KOzr{D򊁗    AED HxDhQ@| vAFFHxDnpQ 6 4 r    ;  F E  ș hE  @ F :   z  x   A   ;9\  Zx8a*؈@)8a(&)z  O$ XE)X|(d8pD@
	

E)9W9hB@ F8k)FاJzDR! JzD RFYxcFHO
xDYF	
QF

S,EO7:
h (P
	HFFHxDhՎHYFxD
+ыhCHFzF (FYF YFHZFxDXXFVJzDhIh|K{DFh  zHZFxD tXF:
IFh^ 

OzqPF8OzqFPF*iHxD
FAFT
*rdH(xDH{ y)@#'669*-<<*03(p/ XHxD0!iUHxDUHxD&&SHxD #ZQH)ixDPHxDOHxDOHxDNHxDNHxDMHxDMHxDLHxDLHxD48! OL*JF (F
O r
 @Fh 0@#FkF
 Ozq h0		<<Bխ
 $SBABHxD   -` t 4 *   ܳ г Ȗ   ] R P J > ? = ; 9 / 1 / - + x FF3x) #ppG  K{Dh@HxD| z 8F
K)F@2{DhK`4{DB8F F= F8 P C KFp{D@qh`4 F	HxD
! F %
!xp Fp0Fp& / HxDK !{D
FhA`@l@L ڰ pFhF(Fs=I"yD `FX:H":IxDyD# a`6I0F"yD`63HP"3I`xDyD # aca/I0FyD 0F[F*HxD`h/!0F ?!F0F% B(F F0F#!%HB(FJzDb`F)x/) !
p1Fh  S`e`h@!"@F !h``p    Δ Ĕ    L3 pF0#K{DFh`P -< `aFC \F;0	-C a=--+.+_+:+`FFHxD ! }
.FbhP`` ( FC#h#`
((Fp   FFFP	K{DI(FyD(FzOD(F<h`00;	+ؔc` .  c ` +c` ,2 m Ү 8F
K{Dhk @ (F !@IyD(HIxDyDl8   1 < Kp{DFhA$jIyD
h hL|D$h lahh+#m##h  #= jb%b
 1`p @ 4 $ ^K-O{D]IF]J_XzDh;hk    O0l *|
@{X
;h# `(FB !`#m+"hZE *LOR`
!+FPFp 	`lQFJFdh!m 	`	k#h  `h h(:h(F!ѱ  ]*HxDhF!Ozr@>>M#HxD F:h*!`(F .l(F(F`  !"
 `!!etL !"|D$h`lXF0`lN  "d"e Э /   -OP'OPFzD '	E4}&<7{DF`8Oapc yD('(zD(7cyD$'{DqczDxD`yD`<4 8 ( FyD0$*	X
hD0kO3@!sdd/'`h7"$h? ,8FvDFb(F9FF Fl$ (x-*
CxC!qdxDh"`@A!dp& zDdF %|D$$hP`kyD ( <xD8xD0x 
O
 F
 ܂+x[+(F%!<F`]!(F6F0Bx:* 8FyDh cx/- 5{D#c`j!k kIF cO  k '%g`zDh`! k<B`d9F"`` $ p5{Dh{F  y	\FPXXKF0yDHFRHUHE}D|D-h` 
 #+ed  /@-@FF %zD%zD F yDl
9hyDyD\ FyDkT!FxD\0F FF 
@yDF F8jh* FyD0j!F8$zDh9կj8F;FyDF Fx!FxD  Fr F
NBF(Fd((@(۠q)؋ Fy (kh + ~hh ({
iFxD$ ! "A JpB9 +	+
Cй
" !8F
 ((`8FBFHxDGh )(eI+8F1
608F(FHxD#d6+4rE0HHxD F<x/,:x8Fk (@FH JOzDD
 FF (F!HxD@FWF  "FF!(d FHxD:!rF "+H"FxD(@K`EѰH9F"FxD(d FHxDbH !"FxDH"FxD(ѥH !
"xDhd L (8`ڠHxDh +!9eH !"FxD(	` qIyDFHxDY`)!8Fj "p8F,!bF ( !0"O 
,!F 8FP (QF"0	 !
FR @FjhF{I8FyD8FQF"F{ѕ +`wrH"FxDk(	8FmIyDFmHxD@F:jIyDhiM}D-hkl +(kl'hdHFcJzDhhlO0hdEHF~  "FF4(	XN~D0hd0FVHxD Fj XFQ (pl (c	O 
  z (   ƫ  \   G <   ؏    L >  ͎ ҩ ̩ F @           N  
  #X   i*  v f j e  G C / . ь   x    V 3 -AF$N$O~DDD0x-*0Xx-(љx4(Y0F[ (H"4xD`(ah% )HxD/ (I`hyD8%F ,9p#h +KH{DxDh )
"\"p FvU  oU  U  ^  L|Dhahi (HxDO0   w`www \ ' Fh
FF0)F*hF0"F$h ,`8F)F"FL FKJ{D-OFXOOr
FhD ! F&a:x! &H!`FxD"tFF7F (+mh
6F(ػ ЮHxD
)h"|#|54!t  FOq"6 `t(.ظ ПHxD)hD)hx+(Kxӱ-(Jx±"|1!|H  tI  FOq "IiO8foc(HxD)h"|
 |H!tI  FOq "I0D()h & wI(hyD&t2(/h.( HF"KFA F Oq{ hH)hxD)h"|!|  "t!0 FOq" 	_! 5)h ):XHxD< 8FIFF8F(QH9FJFxD 
)h	! !`Oq ")} "} 8ںFН|@,;HxDs
ĽJ+h)#` "F  	?CC2EڝI Oq "  ( #~!03$# #08F[ " ah (   BJc  h zT x o ۈ  _ #  ۇ -AFMK}D!hX:8h+-   HxDBjaiB@K{DXki@ !h"! 3F!HxDK{Dh.( 
*1 "p (|HxD{HaixDvhwHxD0FFtHxD0F oHxD< NA (iHxDhH(@hIhKxDyD{DFeHxDdHxDcHxD!aHIhxD	"^HxD
CXhYFYHxDIWH	yxDFUHxDTHxDjB ! "L " !jJK0FHB{D (0F|z!BHxDnAK{D(	)7>N`~D6x1FF;HxDZh@#b0 94JXT1ji0HxD0HxD>b@#0 9'JXT1N
   O0-;hB. | l  6   { s @ G "P P ', 3 , , !   P  * ΅  И   } ~ -AFM }K}DhX*8h ٟ>H1FxDvK{DXh)@ ! "!3F9				IyDKjbiB@uK|{DhiH@B@lYii B@ch+N~D< 1
	1`i-FH "xD h (H$  !"N 0#<>  (HxDAh )5i!h j#E&؜M}Dijh#V!F"h0F.# 󀰀hia`  !h80nh9 : a;  (࢈*цHxDK{DkHfi0F1FFHxD!|)~HxD
)}HxD{HxD	AyN1?Os |YT1>	60F"(oHa|xD1F? |Osb|FiHxD[ |?OsFcHxDY1 |?OsF]HxD|+FYHxD| VHtxD@ٲ1.@ tPHxD Ӳ3LH, txD|HHxDz t|DHxDp
< UT1
 ,2<K{DxhQ9IyDP7K  !"{Dch!3j0IyD:	`-I
|bhyD`DX*HxD0
   O0;hB
 }  ~ H 6       '     !  ߂ Ђ       }  U U K N W KJ{D-OFS %H|mNP" 0xD~DF )F0Ft>J!0zD,-P.P/Px(0 /  h(HIxDyDH+.FvHxD@HFeah	PF( M(P -Zј<(U(*bh   *MO3}D+tktttahdhI FyD I FyD!(thtttJzD`((K %!{D45P6P7P(`h (йJzD`(%dh ,,F&H!hxD&hF	>FDD<
!h )ѫM}D Fb"  FI FyD.0FIyDHbN  O~D#Du`5F0wpwww  !0" # `F(" Fk8`9` F:`9F;` "xk ( ڀ ( OD()	" FJI FyD^JzD(0 + + k
 
 |HDxDO	<nxM}DgiiBb(qEZєh+i BRѡ}jii BKѕ<*h *  ! "Zch!;
<ѱñ !"BPF#
1:YF> OHxDh +W	1iFIJzDh " (F$h ,?>h .FO @N@O~DD' (()"*ch+٠iHEї(aE  !F#$h ,-h -(Ft.hB5h=`7F
}
@m X   & G =  @ ~   t  > qI    9 Or N L 8  t H F FhHxD hL|D!h4)	 )  !F@!J FSBS@E Г   "F2 (
 ! ", (
 ! "@  KJ{D-OMXOFOb !3hDF F |4.:x  !D"t@b ' `F>F*@F(5 #0( (nh(~(
'I(hyD+mh -F/h(F)h )шFR  !hO  Oa""cF F2@FOa"CF  F')h ) "hOa "#cF  FI@FyDl (@IJDyDzD
	@F~I(hyDih )?|zFzIyD"Oa 
*"*  F*	xO@(H , kHihxD#"  FOaCD (@F}F`HxD)
A
"HA %)
B
#عB )
C
!hC 	C
!C 5)h ){
C Oa " Fm!h" $ !h" `R /68F`a .>F HF"Oa " F:0FC8(I0FyDX  FOa"3F%!F " (     |$hB!
mЅ 2 DF N| { ~E D BE { }{ @{ 9{ Vz JFIzD-ORXhh ) HxD{Lh|D!h3)F )!!)@𞁎QF^F ED(E$Fv(_h
 /o(Yh
 )и?HxDFIyDFY(Yh
 )2пHxDFYFE(
 <(Yh )F&HhxDhYh
 )+ (ڨHIxDyDEUDT$T+ (ڢHIxDyDE$D
p 'IO8HDF<F=F>FyDxD  Y&HIxDyD k! RFg "QFF1F
KXFH3{D#QFF"O@  FXFKXFBHLXF$0 "QF'n1F
. *!!, JFh ( XEeHIFZFxDbKH${DFHFhױ0F9F許1F9FUKH#{DFm0F>FLC " !F1FHK8F{DHCP8F0? " !F1Fi<K8FH"{DL48FM1FW3KH{DF"L*BЭ+K, @0FH{DLP	0F  "J  !zDpFhB Z C  B] :] y dx yx ] Wx \ Yx MA A  4x [ xw w kw ?w w pZ MZ D L|D`ihh (HxDO0   s`sss ( r  !L"|D FXO3J0K0r0s0  -AF4yD"hX8ho (Q ረ0 yD\8yDh+@11FxD |
( *$( %O5zDh +iڑ@ -})@	-@}+ !}B@<4{D4 JB@6aE  4{DH RB@びJ )c|BہyD\ JB@ҁ^aE ˁK{Dp RB@Ár  (ۡ|B !D" !"	 !"!3F=y#|
1
+""#% &qb|1 |# 
("" K{D4)IyDH 	46 8 (lK{D\aJ  (H1b|& (ZIyDp z		\^  (JK{Diar  (	p1| (9 * 6PhB@2K{Dh )A!
)}(Sh3 !N h~Dh2i! EHxDM"h}Dhh! !F0F "iiia` #!h(qhkqq`q࢈*ђHxD}(\FHxDa|B/ |Osb|FHxDFHxD!HxDHxD|B/ |Os|FwHxD
FtHxDsHxDqHxD" B1 |/OsuFkHxD;XhUFgHxDa]1 |/Os\FaHxDz"_HQhxDr |
(M5i -EЩh9<VLWH|DxD!x^h ,-SN~D1h	RHxDFPIyD(%HB0`@FpIN~D3h 0`FIyD	h F
FCHxD,hAAHxDh@HxD"X>JzDi;@hF;HxD
 ~o  ;hB
5M}D-h -ܭ%p @B } u  zs R   ʅ     ̄  z V ?r 0 ap  [ r Z r r r r r > qr er Or Jr  .r > #r $r  ~ q q q 4 q 
 K !J{D-OMSFN@B% 0~D04f7xtP % !pF.Fv/FD`XF:(9 &**/U4 ah	 P,  -9 @A".@%@DF0gh /fh .DF'"@s""dh ,DF!h  ,-0; @A"_.  O
4!h )ѝ MHxD: P	8F@A"FN0F@A"F0  
F% (Xۺ N -L(F*Fjt)0HxDp<.H!FxDi)FD"#F!#@[ X  S  
HxDN "Z G!v#t0
F  (   F    $ BR%
m>x } `9 o zo yo Ho -O|mJF &IzDHUXxD @*ht.Ko{Dp^ppp - :h *@HIxDyDHFyh=			 ( ܀HFyh	( ՀIxhyDAE-~h= .@ɀ(= @(yh= )HxD 0()yh= )HF(KO1{D	(K !{DpYppp
( 	yh8 IxhyDNJ	zD`(ѸMO0}D(phppp{(>yh )HF
(ѹh )ЭHxD\0C(	ѹh )?~HxDp07=(h /?qO"F)hDppF[\`FPBB;(	yh= )?QH/FxDd
(yh= )?E 4 "F4!(yh= )?7(8h /?.F9h"FXF
4
\ZFR˚BA=F/ࡰFDwHxKD
HxDH0{D9h )4rL|D!h )$ $(F x(F9  @FhJzDa.0FfK{Da (IdN~D0hC
,aH!xD_I"yDJ(\HxD0F,jXO "`D#D`>F:szsss:t{ttt}aF!F"(F c7qwq(FqAFq " tph (F5 ( @EIyD
hS(F!F" G.&OBF
2F
i #J(0aO s*b
8 02F: 
 (h
D@Y (+HxD5*I(F "yD +  t.hBX
}
@mu <{ ~  n gn ~ } } m } } p} X} :} 5 | G5 z| v| d| :| ,|  | 4  0l { { tk IK-OFJ\]{DN
FX !@BN~D#hFT5E2x #N -><QH!L1N$ !&MANOa $"#: 80&FFDDHFyh=	WH!Hq H N@A "(yhD= )H!lHH0N"@A  (yh )HF(Ѻh *O =I(hyD4Oq"F (yh= )uIxhyDDMn(yh= ) lIxhyDLq[-~h= .T{	(xh= (?uYF@A"FN A(8h /?cF9h
x0:	*	P{h9 +?TDFOQMH9hxD9hH!H H!D0I; N@A" _=F/9h ) [f 0F @A"FN '8 (ٸ Oq"CF Y8PN") @A .O!*
*#*
** *	-##N1H!H "N T% 0 (   BW
mrq v 2 L K ?i  i h Fh HxDz"(( ,0

 $ Oq(  !%F@ !F@ Oa Oa O qF!	H!hxD
 Oa O@a@ c/ 5g J-OFIzD\MFWX !:hT$@B$I #yD" -<P >0HM @`O0> 0 #,,DDD@FCцM0h}D)hM+qh	uH   @AJ " +qh )H `" @AI` )&F)ph (QFi@A"F+qh )  _IphyD5K0+F
ph (IFH
"@AF +qh )OIphyD@A" &FV*qh ) DIphyD &FL @
8(vh .?n0F<"3FA @A
,ph (?Y@A"F 
#O0v+vh .?F&F+1h	"I0hyD~O 61h )H"H   -#L0 x " mT:h (   B
m m s / f f z f e e ,e -AFpMpK}D	hX .8ha@Ȁ ƀ !D"hF!hFCF i"|*
*&O6Ih^HxD]HxD|ñB! |Os|FUHxDRIiXT1	!PHxDNHxD  a|B! |Osvb|FDHxD
mFAHxD@HxD|8 wF<HxD|
":HQhxDv!8H1xDn }8 F3HxDdCh /F-HxDV0F &F*HxDN}
(a1 |!OsF"HxD<!HxD8	( JXT1L
   O0a;hBb k Od Ld ,d d   c c c c c c c c I c c 0FhHxD (I hyD	hW4( (!   !FK%h{D @ ,$} !F"" O	I*FyD c(FO00 + nv 8n 7 !$"F! " G%F#" `%?)FJ )FB
 hJ  a>$FFF !"F
 j# 9F02F(h
>0% $ @2
 iTab*F0  -OFO PF
DO SDF "
 "	8h
h-HF3HxD!)4F30HxDE0 h"md'hhBѡh:jBѡ)3)#+#HxD"iQB`HxDO3@F!FRFG-

#h+٫BXF -H)FxDF0F  HxDuF a b }a |a ba ^a >a <a -OhFO PFF"	 !#

Fi  %A "0h (KHxDd((DD "0hO TZh,PF?HxDO4i+<FS:HFxD"h 
B1HxD1HFxD hhB1Ѡh@E.ѣ+Ѿ'HxD"iQB` h ](F!F"h HxD-(F!FLFXF  ! $)
HxD )?HxD,F8F F ` ` ` _ _ R` \` _ _ x_ z_ 7F h%BJ"
 $ @=hK`!h" 0 `  O0>FhF EܡOFS#h" -  %`O07F %BJ"
 $ @=hK`!" 0   O0>  
TBؿ@$ 4$+
,HFxD@B +^ )-OFFF
%Ѳ@вB@
3B 9FBF+FOa )F6ZF;x=4RF]=46	 $D&FDNE@F]^ Y^ -GFFF.!FTx!F" :HxD/   ' F:!@F FQFjF(HxD!FO0 +0N54FFFDBh!^ ] GX KF{DhXP! ChB h (pGpGh p
F+Sh,M !h"hFhF!  & (A"L|D h@ 
 `JkizDhbhB&F4h ,, 3hF`hi``4`i`i a I1;`*"^`"F XO0   p g g 8FFh 	J F!+FzD L|D F8\ '  IyDg  f iKJ{DFX  "F#h	H)FxD)F_O0H30F"F0F
 / (	"hB \a i\  !"FpI F "yD  c-A %LF8F|DD50B F50&-DI0F:F4FyD F# ^# [ -AFIFNyDq~DF ! 
FFH9FixDPH%  FiFJ3Fu ( F^G =( [ O`
K
J{DzDF`HKxD`H{D$xD	H 41xD@ e T B a[   R[ O`K{DF`HxDAHxD@ Xe f  *[ O`K{DF`HxDAHxD@q e 	 [ O`KJ{DzDF`H$xD`H
KxD
J{DHzD 4(#xD1@G d [ Z Z Z Z Z pO`c
K
J{DzD0 `+FF`"FY`3B h)F`HxDp@d T Z -CF hFFF8Fhih1` $ 
@F9FV( l`4`4 !8FJF(0`  O0	Kp{DFFhI"F #yDh)Fp@ c c (8F
FI(F"FyD(F8K{DhGIyDhS"  (8
 c vc 	Kp{DFFh/I"F #yDh)Fp@} Xc Dc 	Kp{DFFhI"F #yDh)Fp@e 0c c (8F
FI(F"FyDF(F8K{DhIyDhS"  (8f b b (8FFFIyDK{Dh	IyDhS" 0I FyD*F F8$ b b X 	Kp{DFFhI"F#yDh)Fp@ xb db (8F
FI(F"FyD(F8K{Dh5IyDhS"  (8 0b b 	Kp{DFFhI"F #yDh)Fp@˾ b a FF(( -	!$L|D%L|D"L|DL|DL|DL|DL|DL|DL|D
L|D
L|DI FyD
L|D F$X Q 7 P 7 GX KX QX TX TX RX  X 7F!HFxDC+!Ђ* + + + + 	+ 
+ + +  " F&Bxӹ( 
    
      	 (`  O0> FFF/! ':/`Fpp!F(F/#3p*h4F(`;!x1*hB (`  !F (O0  p
FF !"F-I(FyDdX+I(FyD^()I(FyDX0&p
.&&fp(F:!
!!p&BO0p
 ")FN ("bpO~  p.##p #=
&F0_	)+ؠq.(2* #5hx (!Orapbpa  V *F	H
JxDzD@H#FIJxDyDzD GV V tV 31 hV *-CF
FF9H:JxDzD !"6I(FyDX4I(FyD(2I(FyD Q(F/!^F #p)F FBF@F (>"x
*   ` .9	
FHFTFhAgE؝0+IFBF (	OBC
7I  )Ѵ Bg	H+FIJxDyDzDn/ 0pU bV 5  U pU /0 U F!F"@H#FIJxDyDzDF  U KU U HxD7 .U FH
FFxD,
 7Fx
F[ "
x"?Ҁ F)F>7Fx
F3 "n
x F)F>  FH
FFxDT FH
FFxDT WFF01 f옹O3 $ qhxh B   O0 F(
(BHxDpG T aK(aJ{D-OXh-p &pDDh!(FFHF6F@F!" SF!Fb8F"YF"IHxDORJ1 F
CFBRJ1 FJ1 F.@a FBA]! (4HxD FO+A:F0HxDH(F/!>B *F
)K  ! F|"{D ! F ( (F !#0F1F4 FJ1 (
 FJ1 FJ1Ph5+8F&h Fd`  -hB,/2W   HT S S S FK{D3 9^)  pJzDFIyDKH{DxD3v^ z (S R^ %S FKF{Di(H)F"FxDIyDhIyDJzDN*F#F~DhtLO|DD9F(F(F@1hf#~0;	+~ .  v(Fv,^  S ^ S  S ] ] R  ! L|D F( F~H)!@2xD0 #pM,!@2 $}D0F!F" K|,!@2F0F!F" Ko  FIhh@U I p] X] 8FF0(F~ F|  FS(  *H !xDI  8 8 Q -GFF9FFAHxD5(?K "{DuZuuu0x-(
qxA:LO	|D!uauuuO9ԠD00F (0HxD# $ %Bu
 "+F    "F " #$L|D`i #!K !@2(F{D: !(F !!uauuuL9F|D F( F?K@I@A,0F{DYi )aFIFF@FIFUo \ |\ h\  \ Q G [ FF#x-+F`x( F !yF F	M9F}D(F}(Ж((Fa F1F@ qP IH-CxD
FhGKGN{Dx~Dg*EODDODDLEJ|DEKzDEHEI{D#`#FxDyDC`AIBHyDxD` >I "FyD(FV`:I"6hyDU&FHF`$iT0U&P+)FF/HxDD.L|Dh
,IyDv`   F(  %M!h}D(F
(@K`E Mah}D(F((FH !xD  )FG _ 8D (R K [ _ P P  _ P P . ?D |Z C  O E 85!/F+!b $(Ȅ 8-C $F "F!F#0F!FF(H2F`9FxD.FDi6Fi{1FJFF (
# #@F8Fi ,H1FxD6(  N N oN FKh#x-)(0h$$0HIyD
 h}I`hyD@6N (N VKWJ{D-OX	PTL3hD|DSOfDQI ( PJ  yDOHzD OKxDOI{DyD(MHxD$
 
	#	E
BR
O, O!LS	
O!	O"BS
8FBS
DR
1HxD
 bC	E	


@S DR
 #HxD E

@P
  O"O!BSDR
3h  Bz O |X .N 0N N M M M <  N M  JKzDp{Dhhh #"F EBBfMh*FEBB	h )Fp p [ V pFL|DTh #"F EBBMh*FEBBF	h )  `3h`"h0nP`pV LKMJ{D-OXF+huF (}FHxDh   !
 F
,(F>M$}DM<M}DH:M$}DC5 )F2F;F(B#"#  D!$(   0*AE'
}#RK_   C2
B
<FH\\\DDD5!"F* (F FuhBxw  tM BV L EL K jU 8Z 6Z -O F ( LK $0{D00DhDDP`v 1FF (m )<)O)` !
"0FF@h +UEL(F (I @HF`1H1FxD/H "!xDsBsss,K{Dh	.*H1F$NFxD((PF1F(! 


 (F
(F !(F (F (FFF$ &(F&8F (8F
HxDhQ` F FT T  Y J jT .Y |+ S -ACN
FCK~DCLX|D8h!\ "	!bt!ttt``,F/x-(,Zx-*јxȹ8I(F8L
~yD|D`6IyD_5H6X3h4N~D74*6*љxiX\ (-K{DabhD+ *T? +1F~%I(FyDCFt(	! <T>T[ -HxDXJzDhJ
 HxDh  !;hB$"J S $X  I I "S gI 7 W R -OFW[F(F(l vК  -*rњl)5њ  (GѦhJJMdF}D2x0F0:	* !
"\F hHxD !
ڙHxD1F9(FTo .a.q)њ0s P P$--&  $l.
њ o*}hEs)њ07F@Fw}HAFxD]{7 $ F%8l.Fg
FO0!& $GkZED *BjHE?(=:F1 -)cHAFxD0o+ј  QhF !
"FFHh*SHxD&j@E
bF  j)FFF F	!(F (Ѻ{!O0u AHxD&la. &DDYF &;ODDPFhFF6QFHE
)F06$XFZZ (8FX 1 )


"PFlFhsh*HFQF6x ) F)FV @F!FX6  )W 0F D ( G uG  F G  G F 
FIFyDhHFxDHFxD T F  -O("F !hwKwM{D}DhAxk)O
bh *x-.P5F4FmImHO3yDB0=xD`iI FyDgIhJyDX
hFhSxk+	ѱ  .TO'B  0 9	"" $4F'FDejBahbS)* #KpHB (!kBI +ۢkBC  j&-O )F "  .h3
a(F ^ `F  B@F(FKF  Cx8Fg+)FQF> FF (Ѹ 
J8FzDhKxg+AFQF$ 8     S F S E E PS R Q 6H #-OxD
F4IЀyD`(F2IDB=yD1N$~DF FAFF(``)J$
XD3h.@	FF 
 U@ LF	Hh U,Bh )U (  $@FV (
  F Q C C C C C K  -OJ{DNXL~DBd
F+h|DI4`yD0=aFj0(O c#b(FjJ oO bb xaЂHxD^  aL  (l~b !ybG3fxH@1fxDFvJvKHFuHzD{D $xD:b``4O 
iQFBF;j}i  - bj!jPd!jd!Fjd{ji L@`-QF<;jaip `l(JId(HK)FA;l?*@:S d)pMKQF "(F{D)ly`{hFFF9JEDJzDCJzDD!iXF|#k   <I HFOaaz`OaaHFF<!<!HF}hhk)FjkzCFF  hjjF  
j(FY(FF F1FF (B9i hBFpts tty Q C P B B B B B C B .B A A -OHhpx-+
Bxn*
фxh 0'& 'O@Ao@B %1Iİ,FyDDF/HxD M 0-+њa*H"xD0 y *:

-PF "HxD
 !
"FR h XFQFH !`AF(FjF@hg!

	 JF(FAF`  s!$6  F I  ? 4  -OF8/"O .# 
F+TTF <.
ф(F !:pFDE'F  U-OF FpAOD)рJzDh #F (  F1$hxF.+Bx/*0C8F0FF (0FI.'FEF/- |[ -dHxDh0F =!_HxDBCx3]HxD!FS%pGOreT0F@A! 9F (Fڿt h(OIyD
hMHxDMK{DhKIyDKIyDKH"FxD$D   9F(Fj Pi\@H!FxDX8FQF(FT F7HDxD86H!FEFxD: p!F4/I	ZpT:FmAe )nB
-Qm[QeaF(F Z 
-F[ -љ P -@F  % F0FO5(F> L 8L !? >? K ? K >  ? K > VK > > FF,I,LyD+K|D+JXzDh`*D  `V# $HxD}#M#O}DDF"HxD
 v 8FeF Ff0FiFJ+Fw (
HxDHxDF
SU{CU ( FG > < TJ = =  = =  hhpGhhB   pGO0pGhhpGKhBhB   pGO0pG $
MFF}D0F9FU# G4,IyDh@B vD \D K{DhSP# Q#0BBjKjB   O0IyDh@BpGFD D K{DhCHxD0pG H  D -pOF3MF@!}Dt Fd (VЕ1c+Q8(I   (0 yD F2F(6 #
EI	
I
J	K

L
N	
I	icE   pC U 5HxD4LP"|DX1FF p(F1F~(,H-IxDyD#iF`P&E! F !(F]1(X#tctttP XCJzD LP0  & P' !0(F116fE(F@  C    B -O $+M'F}DDhhD@@@ @N-hF/jh  F4 `P L 9FXhXEohh`F  	HQFB4,5dEL|Dlchd#e B B B A K{D #p8 J-CzDFFhF #OLD|DwX  9FOzrZCAFFѿlh)}HxDhC`zK{D)fE –-vE ݀kAk1 !Xh
kZiRXikPceK{DZhkBPcbK{Dk * !<=>?I q+ n+WKXM{D}Ddm+
UHVMxDVJVI}DzDdyDAddC3e|h+H! B rp+
LHMKxDMNMM{D~DdFd}Dt+
JHJJxDJIKMzDyDdAd}Ds+GM}Dlh #!L0pM0N0O0P0Q0R0S0`H!7r+8HxDh`.c+1+6&iv   ! aaaa````#H !xDi8 &aO5(FF &A $A E @ @ @ P@ @@ @ eMe? S3C? ? >? FN F  BpFIyDF+OzpHCFd!Fd!F(F ##p
F06 F
!fp(F
!00p. p(F " #qq01!q%!aq Fp '7 -Oݰ4F3
t

x	
|yDX0h[xDr#FyDF (&P!*F FhyD (Fn


 

 
'\RF#F(FyDTP(FJFyD#FL( "<BF#F(FyD@0#F(FyD2F8(FT8}DPOP
{  MAF}DP#XF ")hNHxDHxDYF?xK{Dia &O MIB2FO}DyDD|OP  	
	8l1lEi%P`F
,
,Z	0%R	 ,*F2i9i*F'hh*F)ii*FF+;j*F1jY-jj*FF/?k6k*FM}DF1AFP# " XFrXFt,E#p!FO"
H %PxD
!P" FK*FAF{DpXF P#FXFJJzDhM՚HxDHxDJ
'zD@O@!FxFO?E#!jOzBHxD`P@o@EdE8TC$& 6B~K{D iC F<F>@2B#!.	nHxDkEhEF8h, iK hIiJDyD{DzDp,5
rhU, #
"!#U$#"
"U,<6IB٘
 ! "XF  !"XF<U ,U<U
h
GIyD# !"IF02@# "
 $00	hBFJE s	U ,
2,51IQXT1,
Y,HxDh
 
 $T[hBп]  5 6 6 6 b6 e6 ^6 a6 Q6 A  5 < < <  X5 !5 5 6@  < 4 ; : : t: B4 r: F4 3 F> TKUJ{D-OFX]F
QPMh "}D#`Q2,*
DJH@rxDAFa ("j ajDDJpzD@!?HxDhk)>HxD( %CF PO
耫FD
F	1h`DZaFD% 5-Ѿ+HxD1FDu*FD	 @!i#JzDi(Fj1F*F@Fbi@!(F J#izD1F*F@F9h
P;`hhBо
] /   '1 l8 p2 "= L2 e 1 7 1 1 2 -OUMFC
0$}D8FH*hkD$F&NIpyD~h#KJ PzDhhJ#FHxDFHxDFM9F0	}DrDdD{XjhkUBȿ<M04}DxK &T0BF 1FT1FrT1FrT1FrT1Fr{T1FrtT1FrmT1Frf0/Ha 0 IFT0,3oPF9FZF040B *IyDh
 
 b$7 1 {1 ; 9  6 6 i1 6 : KJ{DH-OXxD  XJ#hzDK aC3fP{DFI`yD	oH!F
 x-(eFO		x-)\		FHLxDMI|DHJyDxD}D dzDeddh C
`	EA
84JFJFhFQh2B UFh(`

!K
aIHyDM !0F}DM}DDDHxDhУNO4#@'~D4utuuuiu#uO"u+u A4-hi(	)XFz@'B  "NO F ~D D |H!B5BA8hz`rF G,#8` j `#kai@ 8haj#j`DB`k"Aa0 8h `D0Al!mS<C0hr`bF 0#"0` `D0  j1hA 3h mlCSalaamm[b nm cDam!nCSbmbanb FlF ({HN~Dqh!GHxD+IH! B1mqZ)H0h24ptppp/K:K0h,"qh{Dpi<0h0"pi   "E     ۸YFY
    hBо N  , 5  H: (0  5 Q9 ikv9 4 4 4 9h4 4 4 2 - /3K4J{DpX+hF,HhbhxD#h&IFP(&JzD%JzD%HxD<!<!F!0FF<!
F,H!FxDHxDd ɞFC6BC &`C 	HxD+h  Bо^p Q ( z, ^,  j, G, F, !, -OF0H0I#xDB=yDjF` F,I-MyD-N}DYD/hT'PF)FHFFT/ *FO7DDDHF8 B	0FXF "F+FF,٤! "PF1F'F(F l 5 + + '  " + + 7FH
FjxD	#j
Haj xDici	HajxDH,bkxD0@U 6+ ++ 0+ (+ $K%J{DpҰXFFOq*F3hQK{D H)FxD (HxD> !8"J(FzD#F:F	H
 xD
HxDQ(F3hBо\Rp& * * * U* .+ pFFIMyD"
K}DFXh $
1F (*$U ( Fp* % -O-L]N
FK~DX8hDH IyDF`J# !CdzDd" D`IOyDD ( ``~H~LxD`(F6Y|O1hD{N~D@
F F1Fꈱ Fd F !F@	 !Fb<h  `FUKD"x0:	*W 
%
 aOO a`ND~D8hdAd]L#]J|DzD%h*dkd[O
yHDJ?h QPJ !zDHF  &yhKHQxDAX$(&?HxD !"FF0Fb.QPG1 +&ܰ $RDYFF^,0 #A`F4	,xh(	`QOa*F ( L|D FIyDF(8H!FxD       Y@% D3 *  3 s* g* 2 2 R* z2 ) d2 ) N2  )   ( ( R XF.hd!`C` #F##(FE# F)FaC$ %E
$Q@!zDQ^ xDT # Ee ,u  + * !#dEA F)F#A0a (q .
+ * %$@A#EA	 C
 C A
E Aa (q ,+ * "%A#A	a (q ++ * $# A#A	a (q -+ * %$@A#A1;a (q #K+ * %#@AK ˍ۾jS+A	kHxD&
 V Axh(E# F)FaC$ %EI:lyDK{DHI xDyDHLxD,|DFQJFh@IFB (   Pd8s9@a=Tљ 0:	*0IF4h4F&h .H IF" `0&h8I0D  QyD@b(4crc tdh;=h-1ltl , {JzDhյj3lBjtlB pl25ljjAa ,u   " E A F)F#FFA	+$eE ,u ") (# %!ADgl#EeA3K ,u  d[k	+ * #!A F)F kJZF #A7(dZF # F)F\S+0HxD0    Q!BF" (@F
 
 -l
D%
+hB F (O3# 
 (RS
m( 	( & & & l& & & & & t- $  K  {DhSj"Y\  pGx+ -C #EgE#CEE
#GE	C	E g#L	eEg		gi
cEcc	cc	FFJKzDpFX hk	LJ!3FzD(FK J{D	hhHxDF
Ak#hBнlp Y z* '# KJ{D-GFXH#hxDF	F!2FȱIjFyD(H % xDhid!xCbFE E0F	 0BнR
t ! ! ) WK-OFVJ{DFVH4MFXxDP
/
;hD,4	F{ (vН/  *JK{Dhh (lHIPF
yD6(d
hB`KOHW /F !H"8F  0 8 (@IF:F # C A#A# A#L#C
/pA / 
2 #R Oa"FJ ({ F	,9hBн

m   `" `) (" KJ{D-AFXmH+hxD4Fh9F"PI@F2FyDO
	DOa"F  ( F)hBнR
m l '    -OFbI yDF:b   
3#
F (  %}bSL(F|DFb &	
"0,BiB& 6j!F4.0B(FyjBF (F

 $	`O(F:!`F (HB 0 *"ya2 1)F	 O 	/i;jR)OA 0hJh,{`:a
"yi{h0	*C ;i #C  #j		E4(FyjBF<H@F(F# !cC	:jB  43q8jB۸iF4F ' k  -O-C+sKFFd{Dh(hб
 $O		 0y9 00 4BbH $O	xDlF DFh	 yq0
!qFPFP$E
 O 	LKLJ{DzD&	~0F)j )ur $.BKO
{Dd
h y )Y *h48 F8`B
 F F+h#		

X[ QHDzgA0 	h S1+4B
 +6DhB}%   x ~ [ -AF0K $T{DDhh98FF0FAFVB*40F9F*F0(F0FH,F F $ ݴ I yDK{Dh h@# -O-mK{Dh


FF
eE%CO
O h(#FF
kZ$ %Exi{i@KHF(O 	xDDJ|HF ( сOH	 W$0W!P 7HxD7HxD	2 h #B C@A #BC 
EJKCE#@
A AFCB
R
0FH" " #XP0K "   !A<H# 
xDS<+X       Y@  Y@x# 2      #EFF#
k #
k#
k { #+ * "#
KAPFYF#A+a (q 
"
;;+ * "#A#Aa (q 
,	+ * "#Al#Aa (q 
+	+ * "#AP#AFF
 a (q -	
ڻ  "#A.#AFF
 a (q .	
ڻ  "#A
#
A+FF
 a (q "
ڻ  "#AA3K a (q d[[- , $" A#A6{a (q g+ * $# A ˍۍ
#A:+*		hE#yiJ@tMH &xDd0F (^EHxDDHxDrαH#sCW% W, F
FT
7H " #xD7E d   #c *s 
) (  !CFF2A F)F,zgA0 HxDh S1+6hB݅p # h{i | 9i#! 
 !  3  KJ{DI-CyDX 8 &O,	+hFO!	D	:F3	!:F30F!F	*hBн    -OF,(4 !DX T0OpFxD`O1!`O	O
` aHxDhH`xDbhH!6qCO%a%FFqeXFmhfh
pCf(g i
 pC_g5	NPaSIyD`b8FX0FhW  pO7g` `qh1AF``"h * ##`
fi ! bF`jgaiHxDrG$biD Bca`i @fanL|D$h'j /=?I%%byDNOD~DDF) FAF0=h!hjiP F4hhB۱HxD0cj$ LYUI  yDF ,ѻaj"
pvAFN@FNh+ F " ##|m(@`i`nsfiБHph #xDei(ՌH|"i #xD&FV{h% ά   H"9Fm9FOnh9FkC`o"i jC9F8Fc  	cΩ Ω  & 
#h#H"}jCm n annh!orCojCai	"irC jCoSO%LH&DDh !hT, rCH0pO,I		IFh*	 " #  #i T  bi @nai   1 #! " #hB8Fph+Fbi@F|"i+F(Fah )܅Kc` +J )FzDF   j     + -   .    )     a ,K-J{D-GX $hFDD5vjB0  !#"CFFnF"|.(1
"PF|F`HFj"i3F0F
D(FbF ((Fb F@F (:hBмt 
   K{DhKiZiB[j +FpG  F( FF"9FFKfa{DahBibbDa F -CFFFFFF0@F1F:FFAF"aB %(FF0H2F)FxDF F` !FHF (	 iB/=h -P &b 
 pFF젹
K{DhjisiBii(h!hPmhdh ,  p 8  p K{Dh
hKh2
`B+ ]pG D (-OFJFIzDRXh
F ( S/5 '? 0S$  pBHxD
HxD Yx	XF PF4	FKDD{DB|K	  !"{DF	ܡ8ر $DD\)XF4  ^(F4x
 " !SF4| )dHxDhZki	" aK{D$	h^IiyD  d] 	9H 
 O2 0Bq      8 #U   gD<A&@ B
 w ! L8JO	ܰzDiD@:FO 
RO8h 0DE

dh`  ѹ  ,XFi
8 ! 0 q8h 	Y'FO 	 /
hBм   Y {  h T O   p  - sFFiBHxDhi
 $ ! (F"F#Fai h1Fdh ,| -OCLFCK|DX(h	 @IyDF`  1F<K=I8F{D<JyDzD` :H$X!hW! Px0?	/o %F'FĠO DFD!,`iE<"  !"SFTIFBF[F IF"kk, FIF (U8Fp")F$ F e)FdiHxD  	hBм 3 @   f 
  
 >
 -OF5M5K}D5I5JXyDzD4O
`0h4IА	yD F̠kYĀDD+hD4T\IF"'F(F 5 !
"(FFh!$H)FxD8" SF@TFFhj h(мd h  FYF@Fr(F88h4 (	1hBм:  L 9       	BFx 8  pGx00:	*F=*FF+ *pGKJ{DXhhi`apGh KJ{DXh
h`hC`
i`Kh`H`pG D 9+B? +pG  pG $k4=+
]
]B=+ #=* " FF	
I yD /JKX'! h1  =*   h	hɿpFFh1F,F%h - FpF!Fhlchh  G`hԠh@e  Kp{DFhfh)F0F 0Fp@R$h ,(Fp@ο  JzDhBii`a)	JzDhC})iJzDha`pG Z > ( F#0hULM|DdYSh$h?@, Sh:B ++}@u F 0   pG  pGK{DxpG K{DhhCiQ`ZBapG
 KJ{DXhiSabi!6 F"M#O#N}DD~D ,<#h*h\P(`+5         ""--------//2 h@ *hK{DhJ`hh
h h3hY
2` i hdh   L 8FM}D+h`h3+`$h ,8 6 4 KO1{Dh```  0hY` )pG-O $FFF5F'F YFwpPF "
jx<	FFE=+<FME1F %(F-NF	F
FFO )FkIFPF "lH x(44 .4F FpFx"F@ )'!K{Dh Fqh5F.h .(Fp  )F,NF $3F,F-h; !!`1FF(FFF Fhhah (5`.F*h *,`4`&F h (%`	h1y  -AF9K   8J{DXhV )x ,$$ $wh?,%--	-$$--4 h7  ($$
45 )$$ ,F8@p(F9FjF@ *	і50 (/ЧB,, !IyD !FD (FiF "O3@@' {4  pFM1F}D,h FP0F0! F)`p  8F (O)J*IhzDyDh\!`+A!!******//66< h :`khc`*hh`hh '`h`(i a
(i ah`h`h`hh``)h!` F F8  C F	OD
>h;`.``hp`$h-h ,,`l FF	F / *IH!K{DhT!@
 )F^&F$h ,(Fr0!)FF0`O0`
 J FzD`  ((FpG*"KI{D yD#F W0 F	  K{Dh   -CFlFhFDD(F!F:F6EE FC𯼻@h+&F FF0
h *$ 0
K{D ( V?MFFA; +2 0 0 2KK{Dh *ݑBh +pAAh $iB3B      8F
F&@B  )LF|D Fx4D    
J zD2A 8 8F8 8  I d 8ykh%U ( F8@8-AFO $D FU$0` +р FF-EX (I(`zXh(F#,`+q` 	K
J{DDXh@ +! @ 0 K  J{DXh b ` j`h40K !      B K{DJXhiJaj  -AFMFKF}D{D,htJXhiLa *h`FL|DKf`{D`` .       LS+,|DT@#hi4aRF F@pG   pF
F!,  F*(*
((,&  J !zDF0F*FJ0!zD$#!+	JzDp@JzDp@ $ FpÉ F ? 6 ,K-A{D+NFh~D *M)M}DhB
'OYhiSa(hh^/`;(h (jhBK{D`I`yD
`` 
F)hJzDKhBJzD`OYhiKa/h8h 0 
M}D(hh )уhBȿ` Z ~     v FKJ{DXhiMaFh;hh03Bл65hBл} F!ou@¾ FGK@GGH{DGLxDh|Dh h
F,F:I$(FLCp`F !FP|9BgD@|P|gD@|8 )1K{Dh `/K{Dh`-K{D`k O3 o}oo k oO3 u_s,@s[[
B Fd4 !" FJzDh}@uI.`yD
h`}a@u pC` F      @  ~ KJ{DXhiJa@
  
K
J{DX
hi1a S1n@ֿ 8KJ{DXhxIyD
hj}-	HxD (F8  8F8   " 7K0{Dǰh5IyD F 0MQY0JhzDia-HSxD,M`}D`Zh,`G(IyDp{ &HR0xDxh1$IPX`   HXT0XòCKH {DpXhCISX`  ``H XT0DI yD 
`S ha FG0  0     n @ , -CFHLFHK|DGIXyDh0hBO0@ o@JX hiKa>JOzDh+}*ћi&h" $\5 
FUAEEUF?B	a"  "E , + ("JzDhL`}BLu*u F ! FB"'`
@
!  #87<@F1hBл &  : @   F[L|D (KX
hSj  8FKh{D *HX
hiPaIh[Xhj`h+`(h!hB`h`h+abhhP`8@a8 8FK
J{DXhiLa 	J(FzDheab #a` ``8@>d  FFNNK~DFXhiVaN~D3hi0 1hi`  
K{DhQiaA`h``$hA`aUa`@    
KJ{DXhiLaJzDhh h`h)`h F@⻰   KJ{DXQhiSaF F@pGj -G LO|DOzx4DF<)FPl0F<!F<!FHF0FF)F)FJF QFF8F (U  KJ{D-AFXhiLaOPDD<h|h
Ch* 0Bh)`| F(h (4B%FAN  F -C &(KF(JO7{DBtXDhP5F(x+B
:*:(*t 4FeF4FeF%*y@FIFb (7FO7:*65K{Dh )z`HxDh *۷? $ FyK{D`4  | l T KJ{DFXhiJahX` (
 !Fn!h
"+!` F@ƺ _K-OF^J{DFFXhhYI*hyDWHRIxDh	TJKC!zD3FQHxDhB
x	+ 	JiB
x- WEJ
$ !zD+h 
 FO}X	
 :IyD
DDD!(
$X
 !i "
  !$b 3F(h0!)JzD	~C !#h!O "sB QFIFh8FYF5	EE8F2}}(ou F"hBк4m۶2    :  y x  o - F
F  ! (
K{Dh'} ʲ"0F!F*Fi , K J{D-GFIFXO^XhD9F@FbiK{Dhݱ`i)F @F9F*F4 *HxDhh +J IzDyDh6QFJF0F0FG H      HxDT   Q@pGQ8   -AFF(L)K|DX
h1F;PHFhdah@,+0FNh=!0FK2FHxD*%h/k0F4GbhѠh2`h q
C( F8h `<`0FF`e`H  8
F
K{D
JXhibaF`h)F$h ,ѽ8@۸8 -CFFF1=!xDFиBH)F2FxD`H 'F FFKY hiSaR1F*FFC<=!:FAUX!F "HFpHqDCP b  "  -AF)FO
DhFlch , # rb`'XTW hiJaѠh#h F 0zW  (F1F`h a`    "K#J{D-AFXhFh)H!F"xDYiAa p08iBРBкB=aB N  Fn ((F8af0FBFЬB F(4F  `H!F"xDA$4 \  -OO 
2K̀{DȐDhDT0HX 
hiVa #x-+F`x 1w=5FTˬBB!xp %`( F+!FFI=!h FTFm F!]" Ph`kh`hh@j` F !G 0u` `3`WK , FJ   8LK|DX(hM pdY$hQ&@"F(F1#@8 !
")h (F"!8 NHxD  KJ{DpFXhiMaF!F} (. F%}_FcH1hxD	h h} }+ F%(Fp 8  BJzDFAKh{DB{@I[Xhrh *u -N=H!xD<F	4$ F ( F !
"d /F8F6 , Ft F*H %xD`5P5B  !"HxD` 4 1 .6h  1F F1F[LN|D~D$h6h F1F1F(F   
 , F %O4IKyD{D``4       z 4 KJ{DXhK{D4 hBB	 `  5 J> 0
JzDhhA JzDhh! `    
F" A ! (ںdh+o H!FxD $K%J{D-GFXFh)iJ*a *9NYhiAahO 7F <ihѹ Fй к b $DA A F$@>7hE3h`ph(a0FGн K	J{Dp %XFhh%a 0F !p D KF0{DLJHzDxDYhiPahFF F:(F!F0 90K J{DX<h!iB#ٵ,.FOv0HIxDyDHS0hiSa!hFB&a6`` `Z;hhiA`Ua u  8F^D F)F"F8@>F !"F@8F F(FK{D``Zh`\`8 -OFFFDF !$*+ ?+[+{x!+{ x\(3x/(xX[x]+
F\+7/+~ !7;x + Fx\)2x ; )ѬB(F(F (ڃB Fx\,2;B ;FӬB
jB)x/)  (F7HxD6HxDF (^ЬB/#<:x"O 	O	1x\)p 0Fx)J[O/h, .(.+%0F "aF4ȹ  FaF(F@ !F/+ *(F:FBj2PFf 	PFZF (/!   gu  I"yD`
hIyD`
h`   'K'J{DXhF.it B$H$IxDyD*h,h4B)bE%M^Y7hiPa
h!.h0F7h`(``,a`kh)h`hZ`(i`hhBн@ F\9F2F,+i,a` 
 r >~ 	K
J{DpFXhhM iABhPp X -GFJFFFzDhp  0FO
F{w 	8FIF(({BK{D` b  sF	N
F  ~D1hJ !zD0` E3h1`|  ~ -OF $
@RKRN{DRO~DHhDDDDDDDD0 | *FLN!FLO0~DDDn+"'+T"+Q$+TN\+LЁ+=+M8+,؃+!Є+E+(%ӈ+?&RFGSx9Tx
* F4с"#*TJFI $(2F&bF$:F""#ऱ+I "_K=\# ""F :# ; ;; +*FF; +"! K "p{D` &      N     -CF!KO'	 JO"{DXhh'! F1F!F*F F `]6'(   (FE')1F0*Fa  B#xV + !1ph  Dhh!FFHxD@w % -OLhDDF %DDc7N~D0hY(F-h -4,W`=!萹 FK hP,MQFZF#FX %0>;F # F;4"I FX hiHa   0F0#  F F 0F  7|h ,(FN  /  -AF8IF8NyD~DF (b* ;/I0KrX{DhhhFhEFF 0F)FBF@D.F 0FCO\sF)C4sF\)
Ё)acZdx/, [!F #sF!F sFF !x )p9MB}D*`5F(F f : Z  8KJ{DXh`i%i (۵oӡh*F{h8h@8J K	J{DFXhhBFF K  -OFxFT9-D0-$-!-#-@ŀ*-H--@!?-@-@;KJzDxKY hh	~HY 
h1O:FPFyM O 
}D)hrI#(`Y tMh}D19U#

  3һgIY0h Z
y %9F(F^(ЂSBSOuO FOVIY hh +VI	TO 
yDD&F ,FD 
,:F3F0,


,
	h Ё /F(F+  Y/ *f (pԠY
0h
hB?g hBQ"P3+MY h]i- @FF%@F=!Q % 		=!HFC E	ZFHFAF ^  (F   -?*(F ,F
,(FQF:F3FAJzD`,
,
HxDh`PF *        K-GFJ{DLFA
XYhhh	VK
ah
CEhBjh@$h ,NEhB]8` #@;hGZ -CFFFKt{DD
F"03xOD 7F\D=! hJ4X0Fh)x	005(FT<1F:FHF  FB   + w  -GF(NFh~D -G*FF;SHFgR!IvX6h0 
:+%+2iREӬBh0F)F:Fj/ U^IF0FhI#x "yD%+
```F	:)"x:*4 @ # 0PFGo(F@ 0 -CF F  !  "
%h/!F(F~(F!F:Fh$> 0!F:F h(йh)йh@FD%D!hgF (Ѯ.JzDW '	K(F	I{D$hyDp[I"FyDF t    ڀ pFMHh}DK $Xh4@5@J0X"F+h1p  FHxD #Kp{Dh
x!M}D.h3h  px-*YxZ )6-).`ћx +FFHxD%x:-4%FBhx:(RxR
HxDhR;`
HxD	HxD` #JFzD`p h ( "   >  pL%N $~DBF0F ( Fp 8
K
J{DXhhH!i0 B(F !%iH)FxD  8  "y p &L|D F Fk (KF{Dhf.<D v.
U !7 h(U ( pv  -C
F#N '~Dn('0F7 ((hIxyDr+ '&&oh<h	 F=!"FE F!F h0BhFC` F)FJFWO ,1F"F     6K-O{D5JX5hF0 2K{Dhh1N~D Q$ PF F9FF0FY4 , %AAh	0 FF %O
D0;XFV%% 0iPaT!x-)cx# FF F   R( ~@(@8FpV ((F b 
 _ , -OFBKFBO{DDh x%(buxxɹ+-%--- ,Y9Mi}D
8M}D7M}D7M}D6M}D ,<L3F/0:	*Xx (D/LB!|D h_)M}D/?-'MWD%M '}DDhAFhG'F]Fi ,я<F } ˲M}DM}DM}D(F1F@FIyDhB F j    { u  d B 2    T ;K-O:J{DF FXh`xaHhHIFPFIhzihBZW1IyD (MF.IDyD`Ux%*A !(}F &_O +#F#0 
 lF" AhH (ј^  {`  F )hYFL {h$6B ##phh (ѝF    p $NM~D}Dl(DD(FB (KJ{DhX)h= TU !"FF0Fhh (T0!F  p   -OF|N~D {K "Xh`yKDyHD{DxD
hh3F-)+)  qM-)}D(`
Yx ) -)ћx +  % %hHDxD^JXh9@8@Qh )c* ,xUJXh`o*W    "VJ #zDR#XF10GH1X
h1P|3+KH -+!-!ZFxD u=IsXEIhyDQ+ A1 AJzD hZ+0 <H1xDZ +!-!C`2ıl*$J Xhb)}-*
-I8FyD (SJ XhbL !X!  EJXhA1P
1)H -+!-!xD:+ *e- ,?S4 ,?W0HxDhh ) J  D R    L l    I    KJ{DIhX1h "00@hiLa  F@JzDhh< Fn  FKhHxDTvbh *C    -OMLFMK &|D0XD(h &HFF (FIbXhiYa @HxDhhn=O,&DDFDO=O]p3 ":	2*4k, !9)HxD4#x0;	+<Ϭ0*!HyhxD009 bx *C ~B F!- H!FxD30C
  +hBи	  f  ̓ 8 Q 1  %K&J{Dp
FXFhiba !<ګ4H1FxD	,
!F F .4FHxD FH #xDhaIyD
hi`"O`aH !"xDha`Z`! Fp  _     -O $%F,JD&F'FFDzDDn) p"K{D 
DhDM}D-hPFy (KY hiSaHxD HxD#FIF FHxDqF, FW 
       i	K	J{DX
hi1aST1@ -OFOGHhD<XxDf> hDF&00@IyD
h5U!Fn1F3:JzDh2JPFQC1hhh!BhXF  2BE+JXT0T 0iAa}*6 $(h #uh> IyDhF  PB!h "3O>S )C23E FFU<#5h ) F m۶   N   KJ{DX"(h ^ 	1iXbbXb z K{DJ !Xhaj
 @ pFF1FF)F"F p  -OKL{D|DFhh-HxDKF)x-)
jxZHGxD>FMfY5h05+x/+3.+
hx.(/(,Xx.(M}DHxD! )FF^ (ˀpJO@Ā и:G .FT0  AFx0FeJX#hhF0x/(
 0XE e!FoF0F:!F0I3xh/+	
F/)/ LESx/+F;qx/)	ѳx/+ЄAp	 FEI@FO/yDrDx.)Cx.+
тx*</(	LE+!FF  YFT (LE< ""ph&F  $0FnF  .0* F!q&I&K2FyDO{DhhXhY)Yh	h ɲ ,݃h +2|* .#H)FxD'  HhxD    j 
 nf   Y Y   ? \j CF/0:	*Xx (F@кHxDg K{DhK *  {D`HhܿIyDxpG   F>H`h K{Dp ]    -K.J{D-AXh`j L0 'IyD
h.h&M}D(h (=Ђ}*}FuiXcj +O=&ODUx%,<h䱢hQS BФi !F3} (} FFuFkh + F0F    8
FLhL FQ (H!FxDH K{DhB +F*hxJc)  IzDyD``  8#  X  -ANHh~D"F $KJXXh7h)hiBȿ $Xa)h&F
*`)yW7>$th #XPP3 -N(F  &K'J{D'I0yDXF
hh-"JzDR%Pi
 J !zDR%0"XK {DK@"  !{D ,,
 IyDQ$ 2
K" !{DS$@K` {D
I(FyDt<     } v f D I pL|DhFH!XhiSa,hh@`
`h&hh F4F,`  p pp  K!H{D!JzDXhhiiKahhPi )	)JzDh@` ihBиhh"`hhXh
JchzDhKah`"ha 1B F@r  p v KH{DJzDXhhiPah (۸iti +J F!hzD`h@C  6  rK-OFqJ{DqNFıFX~DDhF	 h`1hYE  (ݸv6h "`Ѭ#hh`IhyDXphH "H  `q
 F[;۱xȱiKa PE[    !K+ِPZFBAJ  ~ zD`>}_ ѾFhh  1F 2J1FzDhY    \ Yv'O0F1FD8Fl #H9FxD( ѕ4)   #h{hhIhyDj8IyDhOxL|D$h Fqi ,JzD`"   y   P 5T F   * qJ-OzDpMh}DhH` (h1	h:[i (	(@Āi3hhJ` *YiYa_NF~D#hi *hZlۘi ii +lWKWO{D\\hDXDXiDDtaYSOhD48hhcPJ#zDh@2h!FV6A( U h0HFZJ`g8PFcBHxD^AKO1"F {D  hOc  (cp
& &pj#ڷh2HobxDh`YiHXaOp:-L|D&hti!F;0F F
(FriH` +riH` (tH3aU0h91%x   ppi\%pK{DhQiQa@   j > S R . D 2      4 @B-C/M0N}D~D2a,0.OY(hiaa %D  VWY4hhC ``h (h$ F"DF4`B&F7h /5-<F$0FF (	HH9F4hBF(X#h$0FIyD
h`N
O4~DDD3hh ( F i X .  " $ -OFNO@~D<D<D8DDD , 	#h+!   = = [ 0 .  ? f c x                : {M}D]FzMh}D`h$h , ڀ(FUFsM}D`h(FhHFdhlHxD`hjHxDhShfHxDheL|DhdL|DcHxDehbL|DaHxDaHxD`hx^HhxD^L|D(FnB[H[NxDhYH~DxDeh(F[jh0Fmh -hPL|D!NNh~D(FEhh0Fmh -HMh}D(F F3dh ,ѽh@L|D F@?H@MxD@Nlah}D~Dhf<HxDbhh(FZh
0FTdh ,3L|DEF1M}D=F0M}D5F.M}Dhc;(F8 h8(hWO-$i 3 [  $   m[ 3 c   | 3 + Z Z   F  6 Z +  Z Z      < = 6 # -CFFF7N~D FU4HxD
2I:FpXAFh FQR-L|D!h),HxDhZ`G  ! ($K/V} ʲBhh )F(Fb/  FQ9Fh#CCAPO0J 0zDx`03`h 
LJ0YzDh@Fh`*h`(F H  ֿ ο  2 -KKD[0hiNaF ( ȁH[ @#hiQa	( $5F+h+4 4mh - 0DhFh@  o iZ 
a	1<AA
O3 "0h)hDE nHF!F ( 	'!F`HxD8ti(d UY ! F6 FB!M;h:  *@ FH0
 pA O- F!OrF*A! FOr 쨹$pB O #BB8#BB8FlL%`n / F@A! F@AAOrZ^  (ڈHxD4h,hh(F_FF!)F : $  "FF (1 0    
 )F\1hh)!"Fh)F!F[ h*Ffa gHhxDh0Fj  N! EO4/]IyD hRF[HxD	YIyD hGFWHxD!F% {  #	h@Er3BGFO46O7O >  #	h@E53Bgb !@FF0ѷh	- /8FAF`7HxDHFAFg EEoH*F	` /h (ڸ?@FH AE
8FH A2h*Ѹ8Ff1h)'Evh . +hHa	,
":@   V S ] g h տ JKzDưXh i iF0 a a,j)!HXhaij| FF Z -O˰KIyDXhii ( 
aFHj, ah+7GGPPP~rrK dDA`D)!`hK{Dx8 $h `!huFH`hHxDx  F!D1@ ,:O4 $2DD $)\aJ@hByvIyD
x8O EorL|D$h ,jhDDFDGX!XhRgJzDh (MfIyDx4hDh +F8inhJa[O$0F %D<`YL|D%`?h h8eUKUJ{DzDF0F``%`!@F	+Fh(hhf	$` $,si`FIyDp $S
ha *HXhBj:=JzD .3:M 'Gb}D F8O _
%DFO	
5 - -  ( (IF  ( %K{DhA ` Shaij	K K4  G7   ʺ 8  E6  1  p @ 2     ̹    Z F 6 Ҹ -O
FTP4FyDXh	5l
,4{DZ$xDyD`% ' 1x)p 0Fx~+RрF,L/,:,,
Ј,A2F@
 , 'pAx)HxDEF00 !Й 0@NOYD:hhHFh"FHFh<h@F "VF@  4FHNOxDJ~DIDzDyD

4HSpxDh  O 

 nD
`.1Շ.

 PF	hl!FRF PD` 9 *E@FYF=F:.

TD=. . ;j<E@rfL~,?;4F (Q  DG s   }   ?        W  !     F
"lp#y+Ѓ+	by*`)F "Du O 
 8    *?z<

sO
 F)FFW &K1H{D!hS  iPa?hhhXFO0 3{ixa (mHxD/ AF"F5(QIC  "@F1 !<xaFF "#@FaLKIyDhh ;B,
*FHxD`&XFY2FKCN~D7h;h3` "`<;h,8 )CFB F,;*	CD
PF-HxD` ' IF3 Go".F?PF
 "@FFHF
p	5hBж7    v v v R   ޶ v ֶ Զ   ޴ 2  z س  -OFJhDMzDh`X`KJ5h{DzD &h``OD>`F	
h 
FN!F  ~D1hSA1` / UhJzDR`F HxDh , 𛀫MX h0 HxDI5FHDJyDxDzD 1HX  h01O 	\ x(F aFHAaF 	O	Bѹ O	%F2 " "pE`eh(```  \E!x)e %F qF`aF( lFl%F0B  .F4xL5F bIyDE`Jh`H``K &`I{DyDXhD`]N[`h~DVVMX 2 JXM !}Dkh``hl`C`h1F ( ]hA!`hF`h oO `/ZFFFdHFbhEXFw>K{DXhB !`(hFh1 *(` Fh ) $h ,# -IyDF`Kh`H`+K{Dh LX hiLahh` F ,#K$J{DzD``4!H !xDCh`h{h`@hx`	   0   
 F F Zs  Hs Fs    ܱ ֱ б Oq  D  ~ ذ V  -AF 'O8G  #h;+?

 iiF
") Khca0 ipiF" HxDgEh(F(h(""`
" !(FhFh .`)x-)kxHxD6dh ,ѽ   L7UK|DX #
h!02 T J ! HzDxDhhhF
FIcXhhԨ  & 0L|D (2K "){D`)
MbYhJXh
H!X
h05hFyH$X!hLi|D(FF hR(F `hF0 z    "KM{DNO}Dh~D`D!(hahhh+!!h  1h;h"```bh`$h ,Э 
  N OK-O{D"(F`0 $,,D,DJNDD~D
 GJHL!zD|D!`R  x +sF (
(
!  (F & &# 0jF  g  `:h*z`* XG`F 8`< P" F <F.*)) W([-(# 0!  HK"{D`Q  x *K{Dh?-O0
J zD`  $ F  ʭ ƭ ܭ     `  -OFXhX~DT8xD7h	XL8h{Dzhu` #
nBV)!0h9JBRY hh~D h
(8XzD{D}DwDgxDyD~D'X-hh9)  F( :J     UZR, 8N' / QyDW K}Dh!(hbhVf`5]F}	"#;\,@ـ / ՀI F<!FxD0` (@!1`p08($7F3;hY9`Xp08(<x,%7F :h.FS;`Qp09	)@  a8²*=.Fx.L4`  " !*p )F',",Dt~\'{wF&\#.pkp
(p&!zDh$(	"\#2pspr\(`(
"(	3&\'.pop! F<(' {K$n'	 (i!2	M>/KXO (  F,F6t{$K7EK/9b)(
E

bVBV$[&,I>(&$Ot@BK7F(xDY%zDh6	#xDgdD~D|D7hxD}h%`	hz>,<,д#0FA (qe4yD{D``! h)i$`zD(a `$zD	 /?*@BF+F	,	xBa}PaB	.F5
(nEE #3p	rxB3
|Ex
/Z hOthAh+`NF`a !5x%0FhFO6 }>,F!`v>(!1|(!-&(!)#,#`a!]<(>(&( $R`F LL|DE` `G-(
 h"`!)`!#+`H .JxD`zD` `+(F(( {((_(&@ a9β. ٠!/اJ"_p',$&k$r(( 4j  
 !hqp6{,@N#(F}( DF
%  %,_,D a:Ӳ+1F FF(F5_(Р0 	)D a:Ӳ+%ಠ0	)
1F FF0FӲ	+!<,oN&_qpFHxDt},
-= 1F%,%#,#/,):,:(F$(Р0	. &%! & &!FF (Ų% %`BjղY/(
% &.F%FEI-FBXhhU?} (?S%
h!舱NH< !xD`!S
 hatHJXhi}a(I`Xhh(Fh*F<N!Yhia/
 + 6O؀ؐDؠDD4IDyD!8h`(F 
( \(@Tq) q 
ª   k ƫ T P J D B ګ   Rj  Z L M   L   Χ B  Ҧ  ` : ,     x
(F
 0YhH!X`hA\("`( $("*\ YFe*F_L_O|D_HD%hxDnh>`* 0YhHX` 0;`YFFKF]  YFEhBЀ
tF?h / (  
`(GIyD `( i
F"AHxD  #
(
  0
_`9 '`	 iBh{*F Fdtiia &B`SP)ha'"F#;"F  n.$<pK"$ |p7
~  "Hp
to4uShB%w ~  & 
 AK!-A{D@LhW?H?O|DxD?N?MDh~D}DJh"`s (F	(@`E#(	f
(а\(Z
(F<h`hA(ha`1`!"'
(%N&J~DzD3h%NhXh~DA5`Y`"N!F"~D0FF.,BF5	&,>.M}D5XXDKD{D ` ! F
FFA` ֠  ڟ ʠ Ԡ l j Р ` S` G` `  -O6N6L܀~D6M|D6KD}D4	{D h  !!`hFF 0X*h"  p5FO 
D//1"HxDh ),!JzDhI"H#yDxD hIF(IyD`JzDhHxD hhIhԈhx /K  {D`8F V j P :  .  P  ڟ (  9K{Dhn(O0H h(83N3M~D}D7h-h""`0L|D'h,
Ё,Ѿ	 ! F()HxD7F>FK ,6O(8F!F"H3hxD,`h``
Fh )`8(I
"yD
h !!a(FFh .`+x-+hxO1` aN~D7h8FB (Ѵ   b   ǥ Z &  8F
M $
K}D{D,``HxD`8( (`8@O08 F8>   -O $#F8( oo     ]           r    \ \ i 'F`  ``( s  &F` t`F`  h`(  .F`x(xDh+  `$ %!`zD`% IIyD
h*
&	&F`  ``P(d J(FHxDL|D h (N~D0hx + 2h!`F`HxD`*(% ;h ```(`O|&DD(J #+`zDha`((O0l %KN{D~Dh)````)H"xD`N%~D5`  %!`H '`FF -A NI~D"yD3hNh~D`````5`(мHxDh -%'DܲDJDDzD#`(<  	( 
"0`FFF+ y F0`&``  `  ({ 0
+
  .`M}D/`j((  !1` 
%GF  `  ``  %FOH$D$ &xD<`
(		
DE=F4FJKIzDH{DyDxD )+vCuuuKyH&xDnxK({DF` !F` QF$8XFQF  ( & &hJzDh` PFvEx=) @<`O 	']L|D$h,`%f	9B$

(Uh(FMxPHxD{(F hxKH##`!xD```?GH&xD` & >` `.``F	
`C``*B(F:K":N{D~D`1h)`
(3H "*`!xD`U#h+ ^# F` F
 @ 4   " T ܜ   r P w[ H X z   ؛  4 ̛  ԛ \   > ȡ  @ ס   f      X d -CO
(!H"xD` K{D` '9F(F" h!DO	F` FF`E`  Fh`%`,F( #+`5F
H"xD`? #( (F | r  -O
FIFKyDO7X! !hD gaOD  9h 
8`й0й{(FAF L7Y;h03 М )	Kp{DDhDdDH QxD*FCF
8F"MFVCFxx*=33Bx0:++":* (FB  F-CFB(Fx/33< ,GF.x*+38 (ѱIF8pyD`D MHO 
}D0xDh`f	!(FIBFh/h] Fx	8F!!.h
)h
 ܀ )F9F:Fxñ/+Ѻ  #FP\+pqFSx\+Ѻ  +ѐp tJXh 0
O vH{FxD %
! XFAF	;Ft`h  hpF`~  *ћ a5`FhBf5EW8x*(
. )E FSFh^\*	 5	h*`
	h 
h`B'5+ *ѹ
:OD
9hhCE8`5  (Eu/N  ~D1hh

@FjED5`'  	O`EDDAF (F	;FGF (?;4?(F:F?fKF "
p{D`@Fz   t ` X P _ ` N H h v F 	ԓ -OF{챒F'D[@x@( !sJ[@%h+h +!pJȲpK[@{D%hh5h=! 	@F.	D9F@FSFjF =.C. -'RF (OO| FLdu	* - "  FAF3Fn (bHF +OX -[0h=Y00CK BHqBF{DxD
.%~pF/.Y^ -4܀  D h   3F ZF  F !8;h   HF$HxDhhHF.'N#~D0h F!x)Ѣ|b_. - h)fx)3);L|D `F F   0  ə >  F   
FNNhF~D !hF4h,  A $*K {D`p x N pKLh{DhHXhh FVKF$  ?F F:h@F FoJzDxp 
 K{D°JxzD rL FYh9j)JzDxa@< F FP  "  X ̐ -O %FD(NDD~DhFC 0+$H!0X0"IrXh4    Cѹ   %1-03  (XF56pGQ9Fk1<=FhFJ  )  "  N  P ։ -OF/!FDFNxO7g`  '`20F (K[
hp{JBR
 	ђIyDEE(0F !FhC+$D !)B:{O 
WF0F-F hxʲ *@΀+ը@ɀyHxDh +@W:{bh+tIyDhxhO1O0"nKO0mI{DmJyDzDSYhF n   @lijFa (dИ  /(B[ےFh)Uд@h+Pд<hK@F (p@ O=IM}D-h
@F0Z!@Fv  s0F !WFh*<H1FBFxDn@FQ  c`O4O[hiPa!0F5F`A`7
 1F`F (w' 
$IyDW1FF"HxD)O0 ` #O[ hiZa!0FF `vh !9s#`zhb`#   M   x    / Ґ 0 -CKNFKK~DXh0
FZ	FI"FH#yDxD41  FJ  -TAL|DQ FMhg==HxD8Fb:HhxDQ9F FF hCh F"Q*%*+ *< 
!FF8 Fm'$H1X	h01"IyD"HJFxD	"HF%HxD? F -hxIsXh01IyDHxDUHxD$HxD     L } _ &   Ó  i   _ Kh&2Fx-( &" $%F1F5C49Q ((F8 $M}DV(Dv(D(F	 (LK{Dh h a8@  8& B @H-OxD?M}D  n;K{Dhh )/F9OFDD!0F !Hh++   */0I"hXh0F03h:h?$9`  h .9$L|DD&hD(VK#hI
ghhXh QQFF? {0TU0h02 JF@FYF$h ,HxDh|3B $ F[ \    V  m"  6K-A{D5NFF~Dh`h!_$h ,}h -R-H-IxDp(FrX/!h`s<.F0F( pA OЮB0F)F;F (H)FxD5F
Д 
7  "&`"q`!(F K  {D`F6 FȄ 	IyDx   (  8 8  ! (  F-O8KFF{Da %`hA(]"t0HĀxD0N1IDĠ~D0JyDpDzDhAh<
=h`R0 "
`!hh0`h3hhB0`   #!ph YF F
S IyD
hjhIF6dh ,mh 0 +;  d *  "  އ -K-O{D,O,LO D|DDhD)IDFPyD`hh!;hñ"h*	  A  )# ##`*HxDhK` + ""`(h	(x8 !Qh1F 0  +
KI{DyDh P`  t n ܆  ` v  T  -C,OFFDk #thE=iF F#"|9h )>dh ,!M		}D I*hyD`DW/`Op D!hihhIFm;h+  A  )<`+HxDhJ` * #;`-h -K{DhP`[ ؅ ~ ҅ R  p -A̰]N	\I~D\KyDX7hhʄ F (-SMKYhiTaQIiyD4a`S LIhyD.qhhgFD{X` FW`/`<HX9hi\a<HxDhW`;O;D;%h=`eh1IhPXh12SsEBxph~h$ )Ѩh heGjhѨhbhh`h` F\<h ,L9`S h F
$K  Xha
IyD
h" `0FL  H X V   l FhFOABDQ hKX.h~phiXa ')F2FFx$Dh !	hh!F58F   JzDp@¹} ܃ -OFBOhFD  $h0 ,=KXhiUaO4hFF[  hxj W0hh03*hZhF ( F%HxDPFihrh m .  , F ! F(!hhI , F Cг-h -ph(PFK{Dp8 "}  Ă -OFZJ #L zDIp|DyD
 
p
$Oh h7x F` %oXFXE x=(0F""0F< 	h5 )vh .k/F OFF^hBkh +H`!Xh4 @IyDh -R, #T	@ 0  !@	`FQF" !FhShF  (F і8  (5lD aFFPF J# zDaF
    ;щI" yD - /FM"DO9
h}D4  
#F |
 Q %#C*6ѹ?hx	cE)
H B' FP;x-*Zxj-*ћx	p*+ *F  "F% % FSHF%UHxDpv(aк%Ֆ~ iKa AF "Fy@0FEJzDpS!XF!F=K{D`p /5/Կ !!! )F ! ^9FZFPj(Ѱi! (rj2" "'IyD
p (й ! !PF59FZF ()F(FOHxD (rFO9rx { q  ?% %  Tp #   ~ V  -A@$OpzD  04X ` 0 `a aOpt Y`F  vDOu`aO7`GaOp R0` &DFV6|h@h 5T.ќ MK}DN{D~D`| (` 0`  :F (IH %NxDJ~DhzD5`FN`a~D`K9hBL  O|DMD `8` VY7hj+I yDp+$4P
zh
;+N Y0 , , #,@g0I: MbX}Dha^0`O`9Faha 9F HxxD hh!``4DE=' O	R0h(F9F(FAFT[ -ѴFHxDHxD0  "FHxDGHxDF 'x/, (іH xD
 ( #BBE8BB '8F ! & #'Uqa3+1pсL |D%`` $hh hH-{H{IxDyDo!7wk\K'"LE
  0  4 5)45 #F1 *13+=%FU`dhL,F7 X)F h)%F,F\JT{zDwa`%`hY`U ()h!x-,'bjNH"xD)LH#xDHIIyDF@F|'I  eX*h4`FAHxDxI  eX.hh !7 h /40̀D@F0HxD/IyDF@F!F F>@F(IyD
ha }   x u } } } { } } } z} } } |      7  4{   z > u 5  ނ  т z     -OFJFIzD FWXE:hOD1F F (@ZEdBeE@0T $$CC1 (  "2)O0O2$E1 ^Eи`,8 "ODC0ѸZHF1F  (@+P@ZE$^E
 J
EиBC
CT
P%	и"@
@иbD@M@PT
 %%  %,F
ѩBB $$ %*ѩBB $$KѠBq*,и"FBи"F}+фBuѠBq
 $$kфBu $$и  EuDV
и$EL-иaB3+>ٸ/ ,u k"F+F$ %? ʤ EUD[0
C??TPи.и#"F+FNиC"F+FxFFF
F+;+9+7+"4%K !" E{D piGO0O33  #$EOD ! EqaFODOD8FhBqi )B
 2s  ? @    K-OJ{D FFa&XO #hD{baaK<a{D``0  MuC5
 mF 
F
 FihaxiB " #0F #hBa8jB@hi ( HF)F iBFC>jZ(
hFa8j $Ot08b0>	.;j &^a2F`i<j h ):j   ! hFx(aTx'xB23F2x )јx (T#F3и,
,1$-,3,2$$$Oq)..Ѹ/F#4,
<щW .&( B...HF*F CXziFE4,
KF2HxDO2O3 #<i  zj#h Bв,Fo 5 5 w~ -AFHi
F chGFh>Fphii6h .hiA} F`AF ` hHxD " # # '~  "``  Fh+ ````h	JBC hISB  (c` B"`KX 
f _n<KhXhYHxD*xH# #xDB} )7 бxB a;+_* 0Cx0	*C a:*_+YHBHApG  pG  -OFLK
F|DX8h)t !*`
8F !  0H9F'xD+lR /ѹ 9F
"HFڽOD[Nh
OF  !
"XFF@h +@B AOz{	v0F !
"ڨOD/"h )Ѹ 0F8J@FX1JK{D+EA	0F2
$ ľ  !`O  $; ":@!h0FEA	J
; H O O	FDF F>F1 *qO2  !`!  (Fв \0FFbF v(в gF Y0 +Qи 
+89\+=
+9(hpF   	@	_)2)0ykh  p!FU G 	 ))O	O	F FO O '7 'FO	O O	?jF*h;	 ²*=*; #Kp!F(hDGIFGU (!H!F xDG F0FEA0 ODOD8FhB	ѯH (ѽBl r} } | 82 z  z z z -OF`O%`KDFX`F 5QO ,hhDZH
h
DxD	h	1F(F>A H(DS(Da(0D	(D XFJF F	SE		(f DBHћ  7JX  L 0V# >Й -):Z  = !
"HFFh+(HIFxD# O0 ,$HH   (~HxDE    FShIHFyD (й h ` ` / n` y (`  %y x 8 
F Fu  UO ,: F8-AFKhmh ,x-*Xx-(+M+N}D~D5@F1H{{_27L6B F7Fxh (йh )jFaE1h0xhr
  ²*L
D\\
aF#F (((
H
FxD #H
FxD  - -  0 -OmKDmNmJX@~DzD2` h
FiIyD#F  !p ( aHxD 
 
FbOOAĿOuF)FH (F  (r, $(
'(DDD
/5+]<+2(`IF(Y)0k =K&!"{D 	 !"<" ! 	"SF2F	 )]4>)ЄB-J(]4X0FmFJe *nB
(ZmZeTBK !" 	"{D	F 
/)F 
)
   
hBвf s x x sx p x "- w Zw JzD:xBXpGR? +HxDpG\ C  #F\3+B 8  pG  K{DhjijJC  "`pG q H !xD!@k   K{Dhi!j	bjڹHxD@i
HxD: jHxD4aj	HxD.HxD   dq Wv av \v Yv \v K{Dh!k1d !ahp  !"ipGK{Dh
i#    ??HxD p v FCh`pGFCh`pG-CFFF#A@M}D*h #mZ<JzDhZJ  (p(F)q1a(F2JzDhckki!j 0FIFzo$O&>!j0Fh0FJ_!jfiFZ0Fipi^pI	`kXi8F&jNC1FLoӷ?!j8F<8FJֲq!j<iF08Fiqi4!q Fq Ddp Rp &p K7{DFO0hP#   u*F (  D!c!
* #c1%`H `!hxB*>To F F (K{Dhhx n HxDHxDHxDHxDHxDHxDHxDHxD~HxDzHxDvHxDrHxDnHxDjHxDfHxD@- St Zt kt xt t t t t t t u *u Cu Xu mu K{DhjHxDpGHxDpG *n 8u ;u ,K-A{D)Jh #&n
v)F0F(BqFB$H:F xDahOzqZd!F8FV
!TH BFxDFahnHxDʲfh(	#i nY
6FHxDZjIyD
IyDh#i HxDJ @B n u u u 'u t t u hpGh h hpG  K-O{DF $hF&FO; %!FF#  (((Ѕ(GH(F F8QPF	 JH  564hB۽ m SK-G{D'Fh @  a
h (@-Oܙ))Ѕ)kB" !#`EeHFp2yz-4Уh=Z`D
-$83FGz:FScEB0FXF8F0F^F8F # A:h*hjFh BmA0Fm#x:p
hO*8O D
5f'8h0`EE۽D
G6l -A %"N~D 5V%@ ,Ѩ!kOFpD%FDFP
!F %
!  !W,0@F+5-S Q,E4B
 AcBU U r -OBFFFӑB^O&D]OD\OD &p\J\KDzD${D 8FBFKF	|H
#
hrd1*`ehhx
->Х0	*:--+-0FO hZ
`[x0	*M+G+K+?C+g+c+k+8m+jCjiKCXC*J.*J,-- @BPDFO 3`hx0:	*ټ #H!FxD\ F@EHE*HxDObOzr Os h	i #OZC FRFF #@B  ʚ;sr r r   pj jj q q 7
F
K !F {D FFD	HxDhU"0:yHxD F>%q h q -CFKF %O4{DO	 	
(a ,,F5B ,HaxD	HO4xDV8F1FC Fh p p  %K'O4{Dh`
(-b,F5-c
HaxD
HxD$  !@y F ,h xp p -OͰLK%|DJ{DF$hXFBhk`$E
ha i
0Z 



aCy0HxDP|PFi*i!jF
 n #jiXCajHCmFk(FJ"0k9`F(F{`}h9hi(BC! m(F	F(F5nj}dJOqzDF$ I "yD` #jhh)h;`;h 83hPCEhB " "Fh!FMF;a #
OBZi-iP#̿i  eEpDBE318iB۵B4h	eEBIFhF *@MEjjh(FF;`9h 	0FBF2F$ IF  #HFj * ɀ8hXCBÀ!i@  a:mB3`i)5h #  B*BҖB(VZ# BҖB(V3B۵BFYHxD@󈀠hB`jhh(FF;`&9h 
0F BF2FE.IJOqzDF$ jph(FF:` 
0F>h1F F F1F$2F PFSF/jF)hFC>NE(NF ! @F*F3F6"!0 C!*3F&лл i< B:e\Z iY"#d*` q`
T pX
yiFxiFFFMEܮ6h$hBбwF g Z ! o o n an Kp{Dhh(T*y& E i "! f5`1u0a s ps``hX`h!Pp@ d p4O-O{DFh # wF`F|  `vF`X3`+`au .@ $`hzDh! ! `h1F - ,HxDHahxD2!@FH 9FO r$ -HxD`i Ah!.#a!i HxD
"i ! !babOR(aeae!ed@1(  !0`ee$U*,є)( #&OrFFw Зy?.`EѹB#9F`F & #2d!ebl*lbm *"la+#mm +?##b Iйx
 '@Rs
O6 #BBЮHxDBg OQ눱 ! "  !B!iR ! 
Fak" fa#jaiZC>`b l`bU)@O4+@JHxD S?M}D-hjNijoٯkHxD@ &J zD y++Ѕ+@׀h/}HqxD&"cP@F (@tHxDh ;) Z
 g
J WlHxD  

@F\ 	(ib HF *i)iB #00{`m@Fe{pFHFౙ))Ѕ) hQ 0+hQ 		EyhA Erz` @hEs0hY`.IyD0+?m+?j+?g'O	D	P
Dxh)T:yByPF`8Fx' 7hB 63. T%O	'D3 rc hc   xl jl Wl k Ck fa wk m l l l k k k 	N f6hU)ѓ!*5hB  
(FO0E!@Fk7t HI8yDxD %K )F{D@"h`0b(FFU!"$e#0o! 8@R uk ^ cK-O{DFhFi ) *j * , yyByGx?r/jF0Fk0Ftkj.joi	9	O@r@FB
?
F\F@FP
FF9FR9FFDOECEѺE5HaxDh4HYFSFxD`1HIFBFxD;FZijo> @p@	

: PFAFAFFPFFF1F1FFPFNOECEBHaxD$H9FxDHIFBFxD3FiPB)jBHaxDO
Z^ ej j j Sj j #j Qj -OOK{Dhfh0FFP608	(5-% %~Hi~J 'xDzD|J}I}KzDyD
{D  H a	  @F<F (@@F!ioFO`~F0FQFzQF0Fl	oЋ
CC  zqPF	H
 
,0:	*TDPD
 <
D!XFP!
;	 1)O?O*O jHF:h 
FjHF[
 .>h0
 	 .> 	 . !+!`0F	ZFSF @F9F@7hB?jL-F & aKhy"B0F5'(FhB5HxDO
> \ j Nj Ij Lj Tj   ?V =i h LJMK0zD XJJzDhh7FX`d  (tH "` * (DQ>H" xD (7 d!:JkzDTFd!*F2I"yDt (C/I"yDl8 $
  0 $$  $%(F  ,$(H xD@h
)H xDLVh+k]$7R0hBа90 L HZ Sh Gh 8h .h 1  g 1K2J{D2H-GذXxD0I#hyD&FD WfDF: AF(/ !x"KF 9( !9xCF@1 F(F 9 !9x! (
| }<0;	+d!:F< (W1hBаX@K g #  g g -O\\7DFX  g@`DyDF`%#O r`aab`Ec,$$DyDHxD`0F yD@'X h#i ~~O<#eaacl;+ #cdl;>+ #d #bV!0!cS!cT!nch +*' +Ph (c`txD`
 hxD@ ɲa R,rDG ]                                            [  j h& EF bUh(y((Ѕ(+x+1xD)x  )" "*p0txDjckac) jaxD"axD0{|xDu h (ok`xDNc7 (_F"0 3P(kh;)(xDm,xDm5{D5{D%, P!UzD}D, 0@ Fڲp* ( !l(m{e(
m@~ (!	(F*+2
   h+CF?& Cj xDHF hxB l)
	0F (XixDY !"L(F(<xDv((к \   3y++г Q "BHxD$E?_0q1iRFFHxD # E:j 8  b=jIyDIyDHxDhГ 
3#  


 
B
	F (@(IFPFfFI%yD.F`xj" K a  * * * 𨀅* yjXF{`xh2ZBH)FxDXY0? A aaN;b  j9ji  + 
ѾH)Fz`xD 2 zhiB	ӸH)F2 xD$ #jiBӲH)FbFxDcj8jBӮH)F xD
cjoiZEh)Fi[FY6Z0O pSF+ZS+BY+ BYY+ BؑB*Fh{`{hZ Y+ SB,vYB8FvzjE5hjzbB;m (=k% ED
xF
% xHSFxD{b8b T
6yA-*XFiZ%0mBY% yjBki8jZ5hB!jiJCcjZCB`H1FxDn]HxDfF>{iF;jͱXHxDWHxD SK  "A_!{DI 0 Vj!P(* P
<:%PZ%&OUO	@  c*rhh QF"i95hB۰3HxD
9i  ohBаFTJ W W f f i f ke e ze e Me -e Fe je Td dd e e Pe Le Pe |e e @[ D[ e df 3e e e .e Ie (e (e d #e !e ?e Pe -` -AF4I4HyD4KxD4J`{D4I FzD`yD2MG2N}DY-hwhFT% ߱OqOr
ڰdh*'HT%xDT% OqFsh4{x-(Yxc)њx*IXyDA8Fb80h + h  FAP   O 
 f ,B c  nf FF[!chAa! " K{D   ?  p
F/I/KyD/H{D/JxD`.IzD(F`yD " !)N~DFO2O3##IyD3 IyD*cIyD!
JXhU P(F(FK	I{D 	H)F#xD    pyXN N   ^
 e @ 	 	 	 Oe Be F#L|D#h[ս@
N 0'h'!\$ GOnF'*p\ppp௱!*p\ppp3
*p3	..	++ *'!Zppp\p, M -OFSKFSL{DF|DFh@OI "fX2`8 &8 MIT
0D0yDD`  HF 9FBF+Fа8AFO?(K:(I  +;HxDX Jh *T0h4HxD]F2HxD%+.H!XhRF.HxDF@F& (Bx:*T0h#HxD6F"HxD&L|D hHxD)hM}DF(F4:R (
 0F	NM ? &M Hd M c     i    1  NL oc   -OFuH #
FxD	ānhDFN(nHxD0FlHxDd0x-( ѬjIyDhC@ `hI0FyD0)h #F(F@yaI
$
`JyD`KzD`H
`{D`IxD`yD (FZIyDFYHxDKPFTF&F>6  &0!X )6XFhB0:+B<:+т# #   "CHxD #2F FAD26F K``XFhP  F 	 +$0I0FyDv.I0FyDp,I0FyDj(*I0FyDd0(IyD
hB @`%H1FxDb X0hJ U!0<F +hPy#FK  b = b b K   K  @K b b b b 8b  b a a a @J a -OFFM 'K}DD{DFHxDw@F 		 F FS)C(xI FyD
vI FyDuI FyD e)rJ FXhf(mIjXhFcF x #( FXFHFrF (HF2n+]H)Xh6``s*do B # !U  # "TK{D # h `v) "`R)'1FPFBFX (F?~hIGI FyDEI FyDDJXh' FAFScV @$>OYG  FFF@4 0	)J a:* FxF0 +У0	)C a:*! FIF(U0mF9e )nB
)ZmZeT@F4`D8FFF8Fph (Z	 ;   4 ` ` a   g` _ -OF_M_K}D_I_JUyDzD^N
`  \IyD FY-hFT%  (;{h +8F PHT%xD(	T% 8 (zT% s(GN $GO~DD !"3F \F88F*F(F4@<dEV

&oHF4HxDl̰  D !"[F  	PFPF.~ ).T%0PF8)T%   zhFF " # T%79hQ B (8hA  hBЯLh9 G _ _ A g  zA @_ 
  7I-OyDؠo5I԰DyDDF
F F $0KF&F{D%F4i(
QF(8F -0=YFHFP!!FFIHFyD F	IHFyDF8FJ (H)F2FCF xD(F0F 	G u^ k^ so^ m^ ^ ^ ]  $H!J#F xDzD F] K{D3S)B  pG pG  -AFFOF !2FF!BF F#  CMPOG\G A!TA	8FF  "F !F*F8@      -O-FIJ#yDHzD$
`xDI "%" #$%yD!	 F

MJ!}DX-hT% 
!^ &T% *pGO	жK{DhԵHT%xDLT%  !HxDL qh|D"hOb S %J #
4FBB	 -@o4O [O[OKIyD	hHBB4OVOf4Ow'OH!h|Os3BБH1FxD#(ٰBBBЋHI!xD E҇Hi!xDgF 	O 
Y

_\Ѫ
 F)FDBF %DFFFBBFtHxD;(sHxDA$2+pHm!xDd"D OV # ZFD[F(FO9Fe(FH B0IF>	 BEXF2 YE1F0( B(8F (F E0pC   1FF B0HZ #9FA2 aEd!A+#E(H
xD O$ 	@H2FCFxD	
%MId}DyD9 C 7]   (] 5 6C ^ \ C B p\ f\ T\ \ *\ [ [ Z Y Y XFD FIF)FE
 JzDh сO`%+FdNSpX08 "\!^!!@O 0TP@ $(     p$pJ!\@:
FD <dH0 @  ` `	h P	 w !"	x ˲%360qCFF0FoFd:FZXFDBDH ] 0 P  #i0R  F1FDB(;F   3F"FD0P F1F { !F2F
 DDEdO J+@F  #H ѶoO`    !JFOcQ#CRFDE F !2FO XP3Fz7"FBE
H '0 Dr
`!b !%a``%a"Ff`je7C
``a #3bB !0
"jCF"F+F F !2F%         N ? 0Z3F "F5sB !q.#P#r%#ucuCOO	3Fq`"Ft?t MI
"%`wyDw   "F3F)4   A W  H-OxDFI $:yDJ`0FIzDC-"FyD #F	LOMD F{YhV"`!I F^$p@Oа OlhHxD#KXFAh!{D H!FxDO tihOb#XF!FF$@1FXF`耹]i\ ЊF!_,&&;XFIH0hlnO	O?
oص4еo4oе_"  (#"!(F&O	O	
(ݣOZHxDOH@1FoCB
  )
KBA\.ыHxDv OXAՅI
xX0KFI yDF `CyIyDF@ ~s "s!s?9t8P!"0lI=byD %-P.P/P1P3P)%$, xu 2 hBPMhC "R G VPWJZzD8
RREAoUxR O 	
A%pU!a"pXpOr pXFQp!
O푃U9FQ%QRF5XF9FRF0IFb 8FKO1y`@K:``XF9F"FO	XFF"F		E=)FtC8F"Fx("8F2"rXF9F"F  ; *< 
  b  W 4. @W EW =W {V RV IV V V V -A
F/H/IxD/KyD/L`{D.I(FB=|DyDD+J!X7hU' J#qhOb &FT@'h"L|D !HAFxDp(F!FOb#9F#pfp@Fpp:"`` "(F!FOrz
2F(FI(F
"yDn(F0F 8   D  4* T 2 T  
 JEAzDR< t F2 -O FD HxDwF FFKX
h MEA}D,FD"F
( FT;dE@;њJ zDQk? !
EATc $>@R(IH yDjJzDxh0IyD$FMX@ # "#h  FP
h 0FD	_	O 	kF	FO5vJzDr+Zл WFC Fd!RF[FACF:RF[FFfHxDpD
DDrhSs` +0F
1h1`òA ( 3۲ZFIFL *{
*yq*	RJEAzDRX  |r*kPF6F	-o
 %

E !!
- Й			E
+OO
-O 
 )|1JX0mHF (enB
(Ym[Ye(FT1:`hBb` * FCFQ#h[#`J F{7Zh *xh (H7I	O 	yDFFh	C	% 4)   1 1 ES   S R   R |0 / -CFF
FFz #)F"F`0F CFF
HxDAh)	H1F *FxD#FHF / FQ xF0 +:+ F(F 9!`,
*H"FxD@   -OFF.KO FDO 	{D F,!F  %FXF!FFXFbF L P :P% )@C'5 (-D!x   XFF ]F F+XFe  ,"BU5@!F'<F,%[0F  Obh&K-C{DF
FhF@+D+F   2F)Ԯh
)+
h*HF!hiEHIxDyDUN~Dph(
H xD S &h+0F2 $P u  ̿ T- O -CFhF +;x (07 FB,!F F  GF8F!F2F`],*Њ8F,!GAF2F#FHF!F(h$/`4F6#x,+D!x )ѽ F(` fO 	J #FzD\BIyD\B3+HxD Q \ 0O lڮhHBѮ H!xD F!! FK"!{DhH"xD`    @  0 ' K-OFJ7}{DL|DXh%h}!ep!ppp8OB"ep"ppp0FO3N 'F0hH:!,!Ep pHxDf ; F@HO7xDh)HxD>ihh;
	
 h WFFuHxDE`8xıDD;tZF9FFmHxD/Fh0`K !Or%@<' &YZ[\] , 6_I F &%yD|\KBr{DFF7F

FFH	QIRHyDxD
HF=!r ( 𦀂F  
IFJHxD(FC)$(
($CIPFyDFPF>IPF"yD ( ΀;IPF"yD ( ǀ7HxD ŀPF$F(, 
+!#%''+)VWXYZ[\Z[\]	F࢓HIFFxDaO7O f   " + dN W  TN =N y    N     X*  5 cM   
  1M L HF"j		F "IF<(3 	B+/ 
7420-)F'$h*كHxDIyDIyDHJFxDz%F
 FI  yDTF IBsJ&FFF%'F	

 #" # # .O lO  (O
O 
 QFJ *O	O 	A	 ( " "HA cJ +OA !zD@KUh+@ -@   +@U  .O ~O +NU@𕂫+   BLH9FxDOO .@/""~X! -&F&XK ;:x0:	*  ?r(5HxDh)έi&`h:h? '!&8F<#	IBF>F #J#	zD	) >o#0 F@%*(":! "#OhBJYhҹ!BE   L |  j  L ͺ  ' K   & *))ѺYh)#عOOYE"hBhB
F  E i +!"!#@{ #"""#I"
l	O;( (>RF  F#R   !> ! F` .@ /@HxDB$" !  Fb! (I
pyD
   @F !JzD
p	I
yD
   ! @FJzDGF (6Э8ho)аI@FyD>7I@FyD  jiG i@FG4
O2&    R	B
	8O
*O UB0FHxD%
|CrF `sFQ`2E
~
| 'r    $BPF~HxD2F!IF "MKIFB"CDpB#"(U@U}oHxDh)mHxDiO7p !" "Fh (FeHxD ![ (bHxD)W
o#0:RF -##2@ (F

FR
 L^  Orb  jiG i@FGn
O3y.9vB/8F /' ' @h0K`F .۸ 	  jiG0@FiG8 /8F2n& F0FhB"/ms/moB8Fz*("
 *ݮ
 /ݮ/SW
7} /    7       H G x# G G G -O F %Gp]9F`hzFh(IyDj `h6I0FyD` (W#hx/*\*PYxBMD@FYFnO7A 0 +  YF0FX1\FHxDHxDS3F AFD9F-@F ! (0WFHxD19FO F)FD`|6I0F"yDJx h:!P|JzD` F)FWF h (<C  /8
 pL O( hT " '` #F F1F (%ڭ h(dHeIxDyDh
/`HxDhOѦh6EU &F >Fh"C ߱O 	h8,!>F  F F)FF (sи [`EHxDh /;DD#9F7/&YF"8 	:Ѳ))@Fx#+*++1F&@FrHFF (*HxD`)JO7zD F`)FFб   h,hh*8WH xD  ' '8F! F E E kE E lE RE     O   D   PD 6 , C 8FFH#h3(F! "8@ 8  sFNF~D#h"(F@#2x	I  O3(FrX  |l -O F}M #7F}D
$R
x-*Kx-+1eF$4W )HOF$xDJDIzD;`yD 0F
FYF@ )gվIyD6 ջIyD/JX V(  (/>ԴNI~DyD0F4FH1FxDF
Bp
@ 0F MN}D5~D F*F@3 ( '&YhY
  ! !F
ЕHxD V(F (V( 8D4DIPFyD HQFxD
@	 !0"MHFLFKI}D{D 'yD	
 ,FLE	 "
MF!FOsAF(V( )@𔀻  "hXFF (F (bhXFF ( (,F F
< (hYFOѠh (h -;nn)jxo*5OO (F,! C`FF)F`  Ђ,(\qC`F,!  nZ)x )/6HxDAhi5H6IxDyD> F! 7hNR/h'-HRFxD!h+FCFHF (FYFF F h !``hF (8F  "  B B uB jB   [  7B  B ܤ    iA   p  h f xA & 7@ i  <@ HxDF(HxD      ? -OFFNIOOyDNKDXhT! (DOpEOtO 
FXvF (qO 	;#	 02FR (]  ),
*W0h( @0Ff8 !Y@9(F!FF )F"FF (!B["
)т FF  !^1ChN<S8B(FYF"F?XFJJ(FXT10FO
  (PFr"      Cl
F ~&	HxDhJyn* !Tb  B -CF
F'I(NyD~D (0%O&IDyD8FF8Fh9F 0Yyn)(h$(FIFHO $\\DDD0FF (KXhU$P
wFU$hh ( FJ  z )= c  $=  l= -OFFtI 'B}yDsNrK~DȑDFX
E8F HFjIyD@F@)gHIFxDP
	 F`
_F   hD0F
JF@C  (0F@	k<FPIO 	PJPNyDzD~DT( \F (h, h"FFp p .n0FF;Fh@F (YQh@F (RГh +0Ft (2к Ѫ 0FQFn (% h(є "1F !#`hL%HxD$HO	xDah O	F2FkՄ`h	D
 @Fahh ,@FhFHFD=  ٫  s  ѡ   <   < ; ; HH #J! xDzDK{Dh  G  F K{DhFHahxDhxHxDh
xHxD!i	HxD
 $h , 0   ; ; ; -C !F   R )IjFF@F " # # F # ȹ 0+a A!  %!O Fa PFO F  HF@D @F4   F"h *  ```a rB ipBO	j#+ 8FK{Dh$ 9Fhx@(F `h8@$h , F8 8FK{Dh$ F
(Fh `h8@c$h , F8 8"hFI FyD`	I F"yDF+hB,`  8 8 9 |9  &OFDY FGбehŹ6.O0 "  # F
N '~DY FG bh5- F chXB   F `FP h F  F@ǻ-A $@|&F6#\\E% #UgB-EeEEO8H <F' '?GEU4U46Bp  FF(F(F1Fd	 0	;ٲ))FB (  "  p7
FF  0A!*F#F>  *0F% $% #\3Ba*_,Ux a xJx+K{D	x%" !Jy yKy
yxa xJxK{D	x%" !1
x HxxxyKyyyzJz	z
z
{%"H{
a {{
K{D !a d*F !a07 7 \7 8F i %J%a``iF " #ea`#8-MF0FF O2C  #BB 0+O0 D&FEJ $ %#?EgBB 2 G BBӦ-@FEYF &F  "  !FFBB -?	  AFZF
XE" PF      7O sOb  #F~F`NSpB'"(Fxh"(Fan(#n K{D0  mIyDHxD O0>6 6   x+
А?*+т
C+ 09  pGFpG-OO s "  #F!FO0I0"yD (RI"0FyD (6ЉI0F"yDx6I"0FyD0I0F"yDI0F"yD x(ѡx) (b *c{ +XBa}))"|*Ѵ` жoж oж_Ѵp'jcjq |OJ 1F
IF; OrB4  #(F ( QFO tM  " #F(FF (?i>LI0F"yD  +HI"0FyD (F1F"(F'd	OYd',,
 !@F 
#(F
3M (EF(F 3F= (5hJ#pK B &?O t(F  " #&F (?>I0F"yD GI"0FyD (F1F"RC(F "wI  yD 5 ~5 0 b5 ]5 U5 4 r4 3 3 3 EKO qEJ{D-OXO BF3h  #F (i<I0"yDf (R F( "ܐؠذ&DDDOGO p:F  FF (>x*;*- XIF"@F<x &@!( #",
@FQF"& (@FYF"0 F2F
 g>I	 "yD
 K  {D0O0hBЬ %3 3 	3 3 2 w2 -CO s "  #F>F (U-I0"yD (MH"8F4kp{ PCEqk@` . U#vB FC"rC E 	8FBFKF
FI"yDȹ*ShhBC`(Q8F "@4cF@#RJ  zD O0 1 1 թ  -O%FOVDDD
'o	  FO3C FO0@AF:FT (5XFIF:FN阱XFQF	"HhIXF	"yD@0IXF	"yD:鸹@,@ "  # FF ( FA" FA"v =I  yD P1 Y1 b1 1 1 . -O-o# "  #F^F (c8I"  yDF (Yјl !mPO
 `pX  !DCsCHFA d $ %O ! HFE(F(I  yD*x +Ѓ+	CxHF "*
[ w  (HF"*
w S+E -HoO0         0 90 O s "  #F h
JB	IB	KBJBHxD   O0hsqssqshqshsshsq  7@|COb  #FFرhHBIyD+(F| "@#(Fl"  O0>  M/ K  J{DX`pG  pF
FF6H0F2"FF(F@  pO0p  pGpG  -OF)O #FDFFFE=@FQFJFB $<@F9F*F & (x#) `9Ffa0F&a*F `` (0F9F*F` (0F9F*F`
HxD`0F9F*FX9F*F a0F`a F . P  IOsJyDzD  p
FhF4F F)FnXB<,+с],)=)pFB`O0MpBZppphB lB`03F \ .\ ]\ 3_<C4pB  FhFFK,	,D,,; ,>A,$
,<<,83\x V, +`, %Xx3, x !0 Xx  9`   s
FFD
x*
XYx# F)F2FB |-AhFFFF
O
x*@*CLHx $?*F  =],B0$
<+\+*FL$ (1  
0F9F*F/ (Bӿ  -O F0zgF+f;9g{DehXhhid@Die@|e{a^O3#
`Э
dЭ
4Э
0Э
(Э
$Э
Э
nF
F
maaxbb 8cxcxf8f@ ,O0Yzo@`B* # zD004|nK >nPPL Lo`<l3Bb`F:o2xoF $|g<g zo;o Bg
 c8ohD<e{oo
f>e{o +B<o;md ~on
 0! O :OrD1{DH<g `   5FlB@PhdEp~oV:oHbEظoE ##{o  #`PfE)lB !!`P!k si>n2}n(3X)X~jL 01P  "@0bE!dc3)H<oE:mnoEF n`  "(2}j`[ @.XynL @P9l0Bۼln] P XE@ƀmӲ +  mn(8 (` 0FnFP`0Fn`o ) (йm `Bw(nm*hB)` hh*+h h`h$ih` ) (n5h0Prh[E`h:o~o` #"O5D@`n[ vh@EynXAEnhPP-yoA9oBعoB9oA xo 1`nyohad9o[ BعoB9o@dyo\   0`23n@hE8`FBmO2 
n,hhh,PPn3j5hB.{o
>g>o.F( \ D`G =1   Y      3    u      E  c  #  #  U  i  
  {	     y           u      
  
  o 0D  ʽo#PPD  ]xmkx@ hdE NTF BT+PB@u;nB 5TFPdE+B@`;0 +
0#PE#3oB#nBP 	TFdEнmhZxm!x A\
) 2zm%xU] - )0 +N0#L# 3oB 
AHBHAFnB  ЁTFdEzm#x\jxLH ) 00P#L#3oB#0P64`nx&  *l  '&`&kx ~k# >nV#0$zDB#F`9nhx`A @,0C, hx@ o kx`gBF`>b #00>k{n, S,0@d~DB#F`ynjx0A"@hx `o ` oBkxXòS`g#Ѳ )Op@g0jx`" ò# E@ lB (x 
9	) " "`+y 
   0 (  р\.@̀x)@ɀyE@À0( POi kxo 0  ` N~DR o ( ix4:n ~n0D #D F\`DH`\ B$`P23PxD`EӪ0hP B?  1
IF hFFz C 0PAE`	8n}nO "
X1ClXCl\`2Clo3B0 PI+0I"`NI `I,@ 9@ 5kx:n R#PDeE 'xnAP#E zoB8oBعoB ##{o  #xo@;oCEعoE ##{o  #P BFnB?0 EE?UFEEnB TFdEymBFFy #\xm\\3\BcE  
 bF F)F 0  (@dDeD )0#L# 3oB  ;o}o -SFB  m(  

)@8dEѸm@Ӳ:oB !x
SBS - nm۲ + cd n      4  t 4 ;oxo (SFB?0 +? <kB nxo (PY JDPC0P  0CCB?t  1
IF hFF0X  PB 	:nOxnU @P "P1XC\XC\\P2C\o3B0 I+0I!P %I  I#P(`!`Z 0lB1x * 6Xx@ xBF CghPhB? 02IF
 hFF| A o%0 O  AE 	=nxnO @ "XP1C\XC\\P2C\o3B0  I+0I!PI PI#@nxF" FlBx.LaEӂl B~x.x)	оm Ʋ6
)$x Fx.PyB c1)b>pBPy ƲB
Py@H )LI)Ix)XxRy?xF_s74)Xx !^xfaEہB%61B)Xx !^xЁB
1BڒaEyB!)p*xn*
 (p,iY,0Y%0	   "XDFS\9FHPS\PS\P:P;B !3F`" % 0kCB?  1
IF hFF20X  BEP	yn 8n  U "\ 1CX CX2Co3B0I+0I%   I! I, P#  XCB?D  1
IF hFF C 0PBE	8n}nO  "XP1C\XC\\P2C\o3B0 I+0 #I"PI 0I!0G  # +^p3+q8p+qx #;p)qn'nx,`  x!0n
]p;o}o -SFB?0 +?kB>ocBњ 0TE
o<<JzD\oiKBSBњ P
5B
o%x\HxDA]JSBSAcEr;o}o -SFB   ( kB ocBњ 0TE
o<<@D oPABQ Bњ  
2B
o"x,M}D\AKBKAcEqoBњ 
1B
o!xJzDU\-@Ѐ;oxo (SFB>y0 +>tocBњ 0TE
o<<D0+~^8o}o -PFB  ) 🀸ocBњ 0TE
o<<lD *@oBњ 
1B
o!xK{D[\+~&8dEp nB0?0TFBиoBњ 
<dE
o JzD0+N0 +t " @"2oB2nBP?TFdEкoBњ  
0B
o x P-0 +@0 # B #P3oB#0,X]F z0	PY 0 +FY!0Y+ Y&`Og}n mP=n !R\;LPR\KPR\HP9:BP .LfE!3x
;	+ # #r  ux , P- -9oB> #P0o0BF2k ,~}i+hB*ŻFF $ b 8    L    -O
F
F!DXi0O p.	 ([  #``oE"wyDa	h1jOr~D0F
a#"U3{+
A"!xDT2[*0# yD"XT:+с_ yD
``h h !   `"h"	 &f`
 #O 
}
%h@K@ FDlFF|F!
.7غ) م
غ$ 𕀺( ˅
Aƃ н* +A\ օغ? [Am{ | 𵅺^A.FO;S
ABS
PZB\ 	Y    <²(+ _|+ O " " *q+?yA  h(YFa` ` (oE 

   O; `h
E	 s(rEeaYx\	 [	3sE( #))
 JC ) 	Y     |) #
BCx|  P F# ++?Q HF(YFa`z ` (E 

   O; bh
E
  (A^ |A3FF #F!+I	(?C_rE۲&F!	
*л  \(PE 𤼐!
+к?! .2 +u/?uR  h(Fb`F ` (hE B    O3 bhB!0. ."Eѹ !(cE z 
"EJ	s
"*phpOpsO "hp*pp5 FFO2,?I (F(Fa`p ` (킅B 
 v  %hah
Bڻ   1F
SF
P An%?Z @F(RFb`F* ` (𪂀E 		C6 O: ch		E 1F"+F ?|A HF(YFa` ` (rE 

    `h
E y(rE( ?CJ 0F(RFb`F ` (8B 		   O:&hah		!B.FO;+?
Q HF(YFa` ` (E 
 
 
   bh
E!Fx^)OO	!+x^+j!!O;'?āI  h(YFa`: ` (𺁅B 
	
v  %hah	
EMF " !+(F\<+ՙ @HO 
DDtDx!([E ,F+! \\*(qE wZx!\!*\B+T]*  B.1 -*(Xx](	Oe-*
<`E[(
pE[(^(Xx]( !
-јx]((YE$@YF F (	'@@с[*@΁:@ʁ(QE3!SE Ѡ  !_(cEۀF+\:*]*(E(
  0F
:*O  @~Zx]*@z">":"4eIyD".cIyD"(aIyD""_IyD"]IyD"[IyD"YIyD"
WIyD"UIyD"Fرʱ q`RA0	Oz(EG3!sE	Oj#F< *=94H0Z  h\P&P.J0Z h_p (A% м	A
0Z h 
_P  L  T *A1 	(V  B 6     
 
 D > 8 2        0Z h
_j0Z h
_h0Z h
  J*Th+0\ h
_`jt0Z h
_ZT0Z h_pԻ 80\
 hD
  L*T3@SEO
! _ BK!	!
\
@TO 
8     *< +- ¾    o O@ \_@(RE	O !? Å$غ9غ1Z(Bغ'@ D) 𣀺+@ 𧽺< >@ Jb غWк` 섺B@ 𪼺w
{ 𴁺|@(.FO;.FO; uiZlHaSE	(!YC	 ( xr 	&"hNC
Q&h7_`. ha`.!hO9o`? OY 0F(IFa` ` ( EB  &hchB& '.ppip5 'C>FF ؽ 
 Hg@? I  h(YFa` ` ( E 

   O; Fah
E"+!xp9ppS 	O| 	!#h~qCGXBWhy_ih)  f_h _O3&? A @F(Fa` ` ( 𕅀E    `hB#+p5  O@SH V+? ^J  h(ZFb`F ` ( SE 

  O; ah

B+F 5IF27":p{pp/FO:? Y @F(QFa` ` ( E 	   ch		E &5F @΃ [_ ȃ
B(rE !(RE u_F;!\O:
 *q( <!YE0
	;!\0	),+)!(pE ;!\O9
 )q( 9!aE0		;!\0	)ٹ  F ۹ OE  \+	O	 !(YE Z;! ( |\ y	O
  wv	O
 l@.F BѩFO;,? 1C (F([Fc`F ` ( &B 
	
B    %h`h	

B
 1F	KF	
""O<0? I  h(aFa`\ ` ( ؃E    ahEع"
"+F*Fh9B
5"qp+	2ppF_p(F ͲB "O 0prpp 3u	0"r
sr)²Zs(FCF B#qp3p	pp	(Q!QE L!
 7
B@3,\*@.%? 6A  h(YFa` ` ( ,E 

    `h
E 3? A HF(YFa`x ` ( E 
    `h
E ? ̂A HF(YFa`B ` ( E 

 
  O; `h
E ƾ? Q HF(YFa`
 ` ( E 

 
   O; bh
E ? [A HF(YFa` ` ( QE 

 
   O; `h
E T? "A HF(YFa` ` ( E 
 
 
  O; `h
E ? A HF(YFa`` ` ( ߁E 
 
 
 	  O; `h
E ߽? Y HF(YFa`$ ` ( 𣁁E 

   O; ch
E BhԪ0_E	O!	S ": iXEN; +.FO3-? QQ HF(Fa` ` ( EE 

 
    bh

B#+p5>J!
O)
 
И   	E( FNFO3^!x*+^+\+Qx+)
?) !++?+ !! ! )}Q{+x\+ђ{  \ j? ĀQ (F(Fa`: ` ( 𸀅B 	  v  %hbh	B# % 0	P		*? A (F(Fa` ` (xЅB 	 v  O3%h`h	EMF  S 0O !(SE~T7":pxpp)	O^A#?,R 0F(JFb`F `B
  O9&hbhB#;	O !hm`-O*O'O$F *>ïʿ *>߯ *?"1 nGyh}+}+XF%K !-OJ{DF XhOrh &+h PF a`JA	Mo 	zD}D!O	`}`;he,F\E"x*ј . 3 >I O	` S&P*  P"P(D G 5     9        1  1  y   k  k      k  k  k    k  -       A0x%
PObx4 B I_uH
 :U9`x  
 5-bx 4 jI_uX
 :U| $D (
 4 " |h]-
 2]FO 	A
  %$
@5 @	ъ
  	p]F( ex4  ( ?"\**%E .?
tS$ B&F     xa *:aZEҎBѹh 
hBCB6  1
F hF` q cF:iC& 6 @xi (?ѮP" *e I	i   o hi+hBШ$Fp    -OFFFF ,	 LE  (eBHEȿ	hI2hx+ - ,@% 3hx0 ʲ *0F/0o	* ,3  )lмBʿaD,
*aѸ ?LE=39 -&ݼBb`B]jZ+F ;B     (;B   (dFB   r -LEѸ 20F:F YFcF2 (0 -=45<~O4[F - F	0
F !
 +F
F0F
JzDLwLYhK{DS     -C-KF-OFFF &`DF``a "Op`a (>$J3FX aih3_rxX h ZҲ
p `a! '@`A!wHF#Gwe#w:F#FFHFw(   ܲ  6 -OFFFFFt+`F 7'  'ĕ  "4PiE@	ibB4P8FpF8FlUH #F AFZF #!F̱ (62SF  !BXC,bX1C,3B  (FF٩K{DS `0FGlB(F1Fb,  ,8F 8F h # i#`c`F` %ao  w`i !aa8pGCjFJhh!G8FEjhh(i`j i F8@G  0EjFOrhF #:hF!F 
HxDhF (hFiGi
hFG 0   pFDjBhO chB6Рi#Aaahh - %)FhF 	)FZiG F (Д  0F  
	iG(FpF
hF*%EjhFh#Ih(i6  (ahF1FF !hF 1F /a  Fa -OFF;KDFX`0hu( &FOp F|3HX 3H1xDL F(F $I (,J #,I`byD!bX Ȍ  Fa v 	Or 
O yF;iG!)`F`h` (:F   Fu F3hBШw R    !K
 !J{D-AİX#h&FC`F0 FF!0  F!FF(FtAF:F+# AF FVC2h(FBШZD  sFNF~D  $(F!" ((F ((F (	H# #1X(FR 0 | 0K1J{D-OFXFhFA"$@	)` O57#M}D `FOqw/Ob OvO5D@:O{8F[AcHF!FEԿ= ">F (ڧhb*(F 0BЧ 0  L|D#h#Op `HxD h  J #zDR3 BBhD 3+HxD     GKHJ{D-AmXFF#h'F4F (pphiFh0FG=IBF(FyD, F F FJ $*JQQQ		QQEQQQQQQQQOb+I FyD-*I FyD3)J #zDR3 BѐBhD3+ & I FyDH F$ F61F> FIyD`
I FyDI FyDT$
! #!pcp$(F9hBЧ
md     
            WLK|DX1@ 1K2J{D-AmXF#h'F4F (C )IBFyDF(F,0h
F F F$0h((%I FyD F$phF FI FyD FzOb$h F Fl$
! "!pbp(F;hBЧp
m  /  9    hF$2ʃ pGFh!@LFGpG9Fh);::":$&+-15  X` !Y`)   a3  3˄ hk"hP cl!h	dk  `"hc   8Fhch h4 miL G F(F8@u  -OhFFdL:iD*Ƀ 0h%h% %O
9k #d{bK;c8mF0lh FGzj:m FShG (0hjJh!FG ( FYFG8#{b F!c F)F  -\иh h xbV.K".IdX  X  
     F 9 F xj (3JE$ D{j0hjhG "#zbb FGxj!yb! Fd 	
0hjhG (nxj (F 0 -AFFFF0hAF"FCFѧ6/Fh pbb$D ,8F-AFFFhh *:#hOzv1F"  D!hFBF|AFp%h* `bhb5F*F h9FBF`%h bebO5#hcbb(F  -GF FFFPDFd Fp OJX1FNHxD#3``s0FQFJF# qF8 F(FEFy@p9h ) !" v !8`m8h ( F 0`h`8h (4T"1FL" ( "b`O ;h#` &  0L"CF0F 0F (ch8hv mi0FG"mdi0FGH#FIxD yD0F&J`zDj`(` F(F %(F  a  ?L hF,2ʃ pGFh!@8FGpG9Fh)B#A%(.16;  X` !Y`0$3$33  &3   3˄ hmh"hmP `mim h amh	!`m h `   )K*J{D-G
]X
QB`"1#hFF`H  %
	 6 DFĕ  HFHBF (۸ 6)? 6 / 
R2h 0BЧf
$}
 ]  8Fhch hki8 G F>(F8@Ĺ-OpFycbDa!Kza`aOzqZ@i h 0j*j<aHS 9b~ $b $`<c F {b`$j8 )@k "1m(FcZiGmhK`k(F4ShG %  jJh)FG ((FijG (ki(FG8c i #:k0hmx;kBЧh 2cb"ll>JZ0 # xii 8k2h qD0:d!`!@ :j A0h 1jidKt+tBFܸlElB  h(F	 +kh9k 
:g
| P"yexgPg  gO R0p Os00h 	@`FmJF (95zo/*-ѷ ()Ѹh"~
qE *F #Xh h(h'h0 cD B +O	<<  #m0hyj^ڧ h(Rh1c  jkX yj# _X  m82m3nhB, , j  jhG #b3c"(Fc jYb
  jhG ("bj;i hB	h+*쮨F ?B ֵ -OF F !h!DF d vF QJ[1FOHxD#3`` , ` #eQHFQF#  (s@ BJ`
tzDj` 	  aO3 O 8	cbb\O ge v:FCF 
m$HF HF  (8kHFiG e0h@E("XFYF'@E0`	 F 0`h`AFE!A0h""AFC4} "0hxg`3h#` v(` F(F %(FOpG:   v 	B`$ '@pG
L
H|DxD,!hIhF* X@!!`FHxD F~ x R 𵉰O3<!OBOsB2"I % "FN~DFHP2XV`
+F    F `!G I FyDhbh FiG  x	  .   -O
FO3FD=OA*KFAOr{DF\h '"h "Ip!M}DF (3 -I|
 D	ghFH*XmX    F=h!G@YF#A; FbhhG    ah F
iG  p     8FF  (#h+(F! ``(F8@ X(F!8@   8pFF H(F!Osp@ ιp8FF  8(F  (h+bi(F!iG8(F !8(F8@  8  7FF   (F! _ (ch+K   (F{D > ^ 8" #`K`FhFӹ (F! ;(F `(F 0(F8@ Ҹ  8h**i`+
	"	"
""
" "	$ "`h+"
`
"$`J``#`hJ`h+	++
iJ`@iiJ`iK` j`  KJ{DXpG  -NFFhFDFF   (I6hBO0QFB 0+= P--7 .6
(FF8`HJ%FH[xD1$ !*F%O 	!FHFO2	GTDFE -  (
8hp !9`F % %(F     pGhBhSh+BhhGHBHA7
Fh,ӡHBHAAh
hG0(` FBhShG>7
Fh,ӢPBPA
ChA-ZhGAhhG( F>7
Fh,ӡHBHA
hCh 2"A-ZhG
AhhG( F"*`>  8F *+ h(ӁJBR 8`hh FG  8ah Fh	IyDch FhG (=`hIyDh F*FG8 8 d| -CFFhFDFFe (1-h;hME+'+++  - t(FF0`@HX H1xD
8F!F*FCD F !1`       -AFFFF
9h3S,B(F1FO2GS| /4(F1FO2G F  -CFFhFDh+5  5 F.(F (NE(h((O pl<F8`@
JHXxD1f !U(F!F F=`  (F   pGh ipGihYCiB`QAa pG  pGBiFBPXahA`pG  pGCi+
Bah	h	`h` pG  pGCi+
hBah
`h` pG  pGCi+
Bah	h	`h` pG  pGCi+
hBah
`h` pG  pG8FCiFB
Ә`aFhh M`8  88FCiFB	Ә`ahh M`8  8`Ka{D`C`BapG 0hh*i\iAB
a0\kB
jkBBabYc0F0  0pFkjBjeDj h)FGCb- %cp  p8F
Fj"k F08B(F-b - 8FFFj&kv F`B.F8F2F2jb - "F  	c +# @`c FFhfkFk	   FxB8.F F9F2F (ck`c - h`h F@ K8 !h"F hlB+h+	"ihj!k`D8O08pFFh0(h(
"iiQBbiB!a pbkjB
%k[BإjBQbacp  p8Fi)O A !i)C	`#ih h]h*FGBh aa 8  8-AFFhO i9Ffi6B8.F2Fr#ibi aBE F ! - 8
Fh!i`i
"aB
!a# Fa !0!i
"a(h ` 8FhYkj)
k)	h"`YkjXcb"  ` -OF
FD 
FF0c-Ozec.Ozf!DF ;FhHYxD1" F(FO Oc`` !`#HbxDaga5&d @  `%aafb'cbacc< [  ڞ 8 %h
 F^  8kec! F (ak )ܣk +  c 8h1i#iBiB #!ai[B C`i
aa pG  K{Dh;JhF(hkGF   pG pG  pGpGpNM~D}D4h4 @!F00`kJXȅ  "IhFyD!b(!FhF)FhFhFiGci	hFG Fp   -AFhFXXBDP & 4F!h(F
"&h6
H!F"X 0(F *  /$h4     z 8FF(F!`(Fz0(F8@r  8-CFh
FhFDF̹h**"8FF(`HI'FHXxD1 !:F0F!FO2G3h+F F  (` '8Fܢ   /៤xGF bxGF TdxGF bxGF exGF hxGF bxGF HbxGF XcxGF exGF  bxGF PexGF |bxGF 8cxGF 8kxGF |exGF fxGF xdxGF @bxGF gxGF tbxGF tjxGF `exGF ,hxGF 4hxGF jxGF  dxGF ixGF <h         Android    0o	oppdpp(rttq ~yR{{|6|d|?}tq l?Ћ<h.4LؕL\ @dܜ,8Tt \Xpر xp ,|p <hxp t|p p 
l?
ܺ\p `p  dp (?,<Tl#	?
do |
o o X,X*Xp($o *Do  xn n d0
HllPPn hn (n Ln `H0`$DLn  dD$4`"5p%%m &&*  -m 0-P-.D012334(4@4|44
5߄748(9::4;;;=
@ A`A@C*8E"F8GvGzGG|H$IIhM
N,P0S5pTUVVW4PYYZ\\4]^^^^
<aXabbdc l dl (fl Hf`fhk j mnoo,\rrrk sk 4ss	4tk <tttvk wwxhxz~k ~|?4,3Ȋ`,$(?`
k (=0$7\j $\h̚$(j xlxj hTt$|ʧ"4j Dl,x j j ЪĬT\i i Dɀfxɀ,4hi (Hi xi x,0$h Ph L(h (h x4(@H "lh h $\ p g g  <L"0,$t,g L\g 4ptg (8`g 
Lg  hx(g P  !H!g !!"T#?
 ->T@BC$CXCCCDEEF@GGpHdIIII JJJ,J2JpJ(OOOf O4PQf $Qf (Qf QQXSS
pXX$\\]8^ aabbce ,ccd0ff,g|e .ge 2ge 6gZge \ge ^gxgggnhh i(iPe 0iViiiijpj:ne oooo$p<ppqq
<u vd 0vz |*|l|||}}d }~0`߄?`ր@Xd B\d XȁXd ԆXd \d (ĉP,	& (d Ԍ8t ?$8LL|c "hȕc Ȗ@Xؘl4tc ܛLĝȡ(c  ?Э%@|;د?&̱Xص((\?
b  (hܾpPPDPTpb b  b b JX,x8Bl,a a  \h |?# 
 a &a LV a b~Dp.P` hp ` $Hl8RHt("H_ V_ h_ TT_  _  _ ((><_  _ " x_ _ _ *,	x_ |_ D`|Td _ |8h^ PTrv^ ^ 0X^ ,@^ Pth^ Hl^ `h^ l^ p^ t^ LdxX^ \^ `^ d^ `^ d^ 4BP!H^ | 4^ `?t^ @0) ]   & ?$	
] H
v
] 
6] P] j] ] 8ɀ
4
P
] x

x0PL] lH] X4$] 4$$#<$$t'\ '0(X((*h-
L.,0\ 2\ 2h36z66\ 9999\:8?X?
@DB`BHHXIXJJK(TM`MMMNNN<O|OOPRTlU\WWW`XX<YTYYZZ?<\h\x^?8_h_0a4f [ jjLorrrXsZstsssZ sLt\ttuu4vvvw x}2l̃L	H<2LTl:4Z  Z (?ؒ\`dH| ؝
dȞY @Y СY آY xY  Y 0 ض@?$t24\$Y (Y ?X
h?0,<HX `X H4<l?"-??lX (thX lX  |?/XX p	\X 
`X |\X ?!(
48r ,L48W @
lW W W W p @ |  \!!!!"#`#,$h$x%%TW %XW %&TW &XW &`&p&.(DW P())*8+,,
d--8//?6 12!36699$<=H@ ATAAABCPDpV \DFlV F`G?L`V HNOSTpUU?lVV,V ^^X_?+_	H`V aV <bcV efV 8fV  l
tlpqqq|rrrr|uu
wxxxx(yXyyyzlU 0zzz`U z{d{{{>|@|0}P} ~(~~~U ~~ U ~DD\ЀT HT  ЂhT T ?<`dT ЈLlT$XT <\T L`T `DԎԎА,,T <Ԓx4|4S ܗ8dpԜTȟ\ȡTS آl 40̩DP,R XR ĮR R ̱@|tx`(,9?|?
6HdH?6((hh
l?"`8`PhlD?0L4?9
(	,	h		D
$P 8P  hP 4P &,|
$d,dP (
$$$
(&t(8)?* 2334856
8L;<=>>l>>O F:,JKO ,K$$NxNNpOpOPPP4Q6`[ ^^^bHO b$d `d e(g,O Lgglh O h@iii2jhjxjhkkN lllmopqxrN xsst,tLtLttu2uRuuXvvLw($D\L NHV|Я
P?6?<hM M M  zLԸ
LRhM \V\M 80HM 
|P(L *&h`l @~:$h   tgz %s.%s /dev/null %s: unknown suffix - ignored compressed data not read from terminal, use -f to force it cf Z cfvqdtn cfvqdt bz2 lzma xz short write write error read error s2 cfvdt123456789qzs 070701%08X%08X%08X%08X%08X%08X%08X%08X%08X%08X%08X%08X00000000%s%c %s  it0uvdmLF:oH:p %lu blocks
 cfvdtq123456789n gz lzo %s.out %s.lzo this file is a split lzop file corrupted data checksum error internal error internal error - compression failed internal error - optimization failed high compression not compiled in bad magic number header_error %d cfvqdt123456789CF %0*lo ustar   ././@LongLink / gzip bzip2 vfork -f can't execute '%s' can't stat tar file error exit delayed from previous errors waitpid %s: unknown file type %s%s
 %s: socket ignored %s: file is the archive; skipping - --:tt:vv:X::T::::c:t:x:c--tx:t--cx:x--ct txC:f:OopvkchjaT:X:zJm TAR_FILETYPE=f empty archive can't open '%s' %s: not found in archive can't read standard input -d:lnopqxv can't open %s[.zip] Archive:  %s
   Length     Date   Time    Name
 --------    ----   ----    ---- invalid zip magic %08X unsupported method %d zip flags 1 and 8 are not supported %9u  %02u-%02u-%02u %02u:%02u   %s
 can't stat '%s'    creating: %s
 '%s' exists but is not directory replace %s? [y]es, [n]o, [A]ll, [N]one, [r]ename:  '%s' exists but is not regular file   inflating: %s
 inflate error crc error bad length new name:  error: invalid response [%c]
  --------                   -------
%9lu                   %u files
 can't remove old file %s can't stat old file %s not created: newer or same age file exists can't create %slink from %s to %s hard can't make dir %s sym can't create node %s unrecognized file type TAR_%s=%s TAR_%s=%lo MODE TAR_%s=%llu SIZE UID GID -c '%s' returned status %d '%s' terminated on signal %d FILENAME REALNAME UNAME GNAME bunzip error %d CRC error unexpected EOF bad lzma header 7zXZ YZ unexpected end of file write incorrect length short read compressed with %d bits, can only handle 16 bits 07070 unsupported cpio format, use newc or crc %8x%8x%8x%8x%8x%8x%8x%*16c%8x%8x%8x damaged cpio file TRAILER!!! corrupted octal value in tar header /../ removing leading '%.*s' from member names ustar invalid tar magic invalid tar header checksum malformed extended header, skipped path= warning: skipping header '%c' unknown typeflag: 0x%x %u %s %s/%s %9lu %4u-%02u-%02u %02u:%02u:%02u %s  -> %s invalid magic no gzip/bzip2/xz magic read error from '%s' seek failure [H[J c(B[0m[J[?25h stty sane 7[r[999;999H[6n [%hu;%huR 8 /dev/tty /dev/console ?1 r TIOCCONS -- %*s%*s jy %B %a %s %u %*s%s
%s
 
 
%s%*s%s %*s%s u etv :%s invalid mode '%s' -R -2 Rh -i -2:l--s:s--l:Pd:rRd:Rd:apdR pdRfilsLHarPv with --parents, the destination must be a directory b--bcf:c--bcf:f--bcf expected a list of bytes, characters, or fields the delimiter must be a single character suppressing non-delimited lines makes sense%s a delimiter may be specified%s , missing list of positions %a %b %e %H:%M:%S %Z %Y %Y.%m.%d-%H:%M:%S d--s:s--d:R--I:I--R Rs:ud:r:I::D: TZ=UTC0 0123456789 can't set date %Y-%m-%dT%H:%M:%S %a, %d %b %Y %H:%M:%S  %f writing '%s' %lu+%lu records in
%lu+%lu records out
 %llu bytes (%sB) copied,  %f seconds, %sB/s
 conv can't swab %lu byte buffer      Size    Inodes Capacity Use% k-mB:m-Bk:B-km kPaiB:hm POSIXLY_CORRECT %s-blocks Filesystem           %-15sUsed Available %s Mounted on
 /proc/mounts %s: can't find mount point rootfs %s
%20s %s%*s  %9s  %9s %3u%% %s
 u--d:d--u du %sXXXXXX %s	%s
 h-km:k-hm:m-hk:H-L:L-H:s-d:d-s:d+ aHkLsxd:lchm . total u:: +iu: putenv %lld non-numeric argument division by zero warning: '%s': using '^' as the first character
of a basic regular expression is not portable; it is ignored syntax error ( ) : * % + < <= = == != >= > & | too few arguments %lld
 80 bsw: 
==> %s <==
 count is too big: %lu (%s)    groups= ?1:u--g:g--u:G--u:u--G:g--G:G--g:r?ugG:n?ugG rnugG uid=  gid=  euid=  egid= s--d:d--s cvbDdpsg:m:o: strip -p can't change %s of %s permissions ownership ~ -1 sfnbS:vT -T accepts 2 args max '%s' is a directory %s%s '%s' -> '%s'
 %7llu  %6lu  %-10s  %4lu  %-8u  %-8u %-8u  %-12.12s  %-12.12s %-12.12s  %-8.8s  %-8.8s %-8.8s  %4u, %3u  %7s  %9lu  %.24s  %.6s  %.5s   %.4s  [%u;%um [0m  ->  %*s  %s:
 el:t-S:S-t:H-L:L-H:C-xl:x-Cl:l-xC:C-1:1-C:x-1:1-x:c-u:u-c:w+ can't read '%s' scwbt -%c is meaningful only with -c     * invalid format %s: OK
 %s: FAILED
 WARNING: %d of %d computed checksums did NOT match %s  %s
 m:pv -2:f-in:i-fn:n-fi finv mv: overwrite '%s'?  can't rename '%s' non- can't remove '%s' %d
 setpriority(%d) nohup.out HOME appending output to %s "%07.7_Ao
" "%07.7_ao  " "         " "%07.7_ao  " 8/2 "%06o " "\n" 16/1 "%3_u " "\n" 8/2 " %06o " "\n" 16/1 "%03o " "\n" 16/1 "%3_c " "\n" 8/2 "  %05u " "\n" 4/4 "     %010u " "\n" 2/8 "          %21.14e " "\n" 4/4 " %14.7e " "\n" 4/4 "       %08x " "\n" 8/2 "   %04x " "\n" 4/4 "    %11d " "\n" 8/2 " %6d " "\n" 4/4 "    %011o " "\n" invalid number '%s' .* usage: printf FORMAT [ARGUMENT...] -+ # %s: invalid format %s
 =1 fnvsq f-i:i-f fiRrv can't remove '.' or '..' pv '%s' +ws: %s%0*.*f 0123456789. bad field specification unknown sort type %b o--o:t--t:k:: bad -t parameter unknown key option Check line %u
 %s%c x ?2:a+ l:b:a: suffix too long suffixes exhausted %s %llx %lu    File: "%s"
    ID: %-8llx Namelen: %-7lu  %lu %llu %llu %llu %llu %llu
 Block size: %-10lu
Blocks: Total: %-10llu Free: %-10llu Available: %llu
Inodes: Total: %-10llu Free: %llu
 can't read file system information for '%s' %lx  Type: %s
 .000000000 regular file directory block special file character special file fifo symbolic link socket weird file regular empty file UNKNOWN %s %llu %llu %lx %lu %lu %llx %llu %lu %lx %lx %lu %lu %lu %lu
   File: '%s' -> '%s'
   File: '%s'
   Size: %-10llu	Blocks: %-10llu IO Block: %-6lu %s
Device: %llxh/%llud	Inode: %-10llu  Links: %-5lu  Device type: %lx,%lx
 Access: (%04lo/%10.10s)  Uid: (%5lu/%8s)   Gid: (%5lu/%8s)
 Access: %s
 Modify: %s
 Change: %s
 ftL affs devpts ext ext2 ext2/ext3 jfs xfs hpfs isofs minix minix (30 char.) minix v2 minix v2 (30 char.) msdos fat novell nfs proc smb xenix sysv4 sysv2 coh ufs xia ntfs tmpfs reiserfs cramfs romfs squashfs sysfs ^- undef %lx:%lx:%lx:%lx%n :%x%n %lx:%lx:%lx:%lx :%x rows %u; columns %u; %u %u
 line = %u;
 <undef> %s = %s; min = %u; time = %u; -%s only one device may be specified -F invalid argument '%s' -a and -g are mutually exclusive modes may not be set when -a or -g is used %s: cannot perform all requested operations appeared been replaced s+:Ff fc:n:qs:vF no files %s has %s; following end of new file %s has become inaccessible ia %s: %s out of range bad number argument expected closing paren expected missing ] ]] missing ]] %s: unknown operand cr:d:t:fma +Ccds STRING2 cannot be empty unknown  %s GNU/Linux f+:s+:w+ cduf:s:w: %7lu  end short file line too long o: begin-base64  begin  no 'begin' line d -base64 
`
end
 
====
 -1:?2 m begin%s %o %s  %s
  %9u lwmcL y m: =2 123 8 it: ta ft:a 	  %*s%.*s %u %llu %s
 %05u %5llu %s
 sr TMPDIR /data/local/tmp dqtp:u tmp.XXXXXX 22 =1:a:: a:u: %s exited with code %d a PATH %u %u %u %u %u %u %d %s:%i: %s diouxX eEfgG 

 w popen %s%s%s %a %b %d %H:%M:%S %Z %Y RSTART RLENGTH %*x formats are not supported Empty sequence /dev/stdin /dev/stdout /dev/stderr v::f::e:: F:v:f:e:W: warning: option -W is ignored cmd. line awk -1:?2:l--s:s--l Files %s and %s differ
 Files %s and %s are identical
 
\ No newline at end of file --- %s
 +++ %s
 @@  %c%d ,%d  @@ /data/local/tmp/difXXXXXX =2:L::U+ abdiL:NqrsS:tTU:wupBE can't compare stdin to a directory Only in %s: %s
 Common subdirectories: %s and %s
 File %s is not a regular file or directory and was skipped
 File %s is a %s while file %s is a %s
 line number %d does not exist bad line range for %s inserting at bad line number  (incomplete) bad line for read "%s",  %d lines%s, %d chars
 search no previous search string can't find string "%s" bad mark name delete print $
 :  "%s"
 No file name bad quit command Really quit?  no file name substitute bad delimiter for substitute missing 2nd delimiter for substitute unknown option for substitute no substitutions found for "%s" no file name specified %d lines, %d chars
 no arguments allowed unimplemented command bad file command bad read command bad write command Hunk %d FAILED %ld/%ld.
 Rup:i:NEx Possibly reversed hunk %d at %ld
 ---  +++  @@ - Really? %s removing %s
 patching file %s
 creating %s
 +- -+ unmatched '%c' 
n	t
r bad format in substitution expression empty filename %s
%s 

 no address after comma missing command bad option in substitution expression command '%c' uses only one address unsupported command %c unterminated { no previous regexp can't find label for jump to '%s' --version This is not GNU sed version 4.0 e::f::nn i::rEne:f: [7m '%s' %s '%s' is not a regular file Trying to insert file outside of memory (NULL) '%s' is not implemented !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~ No current filename Put %d lines (%d chars) from [%c] [%u;%uH [K bad search pattern '%s': %s %d%n can't read user input last_modifying_cmd overrun   [Hit return to continue] No file  [Readonly]  [Modified] %c %s%s%s %d/%d %d%% [J  )]}  	  [New file] no 
shell returned %i

 %d edit No write since last change (:%s! overrides) '%s'%s%s %dL, %dC file No address allowed on this command features These features are available:
	Pattern searches with / and ?
	Last command repeat with .
	Line marking with 'x
	Named buffers with "x
	Some colon mode commands with :
	Settable options with ":set"
	Signal catching- ^C
	Job suspend and resume with ^Z
	Adapt to window re-sizes list 
 $
 quit next prev %d more file(s) to edit No more files to edit No previous files to edit read No filename given '%s'%s %dL, %dC rewind set all %sautoindent %sflash %signorecase %sshowmatch tabstop=%u autoindent  ai flash  fl ignorecase  ic showmatch  sm tabstop= version 1.22.1 bionic 2014-04-06 21:24 +0200 wq wn '%s' is read only '%s' %dL, %dC yank Yank %d lines (%d chars) into [%c] :s expression missing delimiters search hit BOTTOM, continuing at TOP Pattern not found search hit TOP, continuing at BOTTOM Nothing in register %c ()[]{} Write error: %s wW ^0bBeEft%$ lh cdykjHL+-{}
 Change Delete Yank %s %d lines (%d chars) using [%c] [999;999H[6n %d%c cdy>< ^%$0bBeEfth H-k{ L+j}
 ^0bBh EXINIT hCRHc: [?1049h [?1049l ,  --- stat %s setting version on %s reading flags on %s setting flags on %s = is incompatible with - and + can't set and unset a flag must use '-v', =, - or + %5lu  %-28s  reading %s 
%s:
 Radlv L:c:i:C: -exec {} unpaired '(' -type unrecognized: %s HLP +HLP %i%c %s: H-h:C-AB:e::f::m+:A+:B+:C+ lnqvscFiHhe:f:Lorm:wxA:B:C:EaI (standard input) single double unmatched %s quote +trn:s:e::E:px0 echo can't fit single argument within argument list size limit argument line too long  ?... %s: exited with status 255; aborting %s: terminated by signal %d np usage: %s [-n] [-p] [rebootcommand]
 %s: too many arguments
 reboot reboot returned
 hpr d+ d:nfwi is y is n not a tty stderr  multi-call binary.
 
No help available.

 
Usage:  --help test must be suid to work properly busybox BusyBox is copyrighted by many authors between 1998-2012.
Licensed under GPLv2. See source distribution for detailed
copyright notices. Merged for bionic by tpruvot@github

Usage: busybox [function [arguments]...]
   or: busybox --list
   or: function [arguments]...

	BusyBox is a multi-call binary that combines many common Unix
	utilities into a single executable.  Most people will create a
	link to busybox for each function they wish to use and BusyBox
	will act like whatever it was invoked as.

Currently defined functions:
 ,
 	 --list : applet not found
 unknown user %s unknown group %s unknown uid %u unknown gid %u can't set groups %s: overwrite '%s'?  can't create '%s' '%s' and '%s' are the same file omitting directory '%s' recursion detected, omitting directory '%s' target '%s' is not a directory can't create directory '%s' can't preserve %s of '%s' can't create link '%s' error writing to '%s' can't create symlink '%s' unrecognized file '%s' with mode %x times    bad byte count for conversion character %s %%s requires a precision or a byte count bad conversion character %%%s byte count with multiple conversion characters stdin  -0+# %03o del bad format {%s} /dev image size is too big image is too small NO OPT %c! /dev/ptmx ptsname error (is /dev/pts mounted?) can't find free pty %llu %llu%*c 0 %llu.%u%c  123456789 default getaddrinfo: %s: %d getnameinfo failed  `"#$%^&*()=+{}[]:;'|\<> [%uD 
[%uA [%uA %s%-*s %4d %s
 [6n [H (reverse-i-search)'%s':  %s.%u.new  login:  %lu %s /dev/block/loop%d set permissions of create can't %s directory '%s' bad line %u: %d tokens found, %d needed M- /proc/%u/smaps Pss: Swap: Private_Dirty: Private_Clean: Shared_Dirty: Shared_Clean: /dev/ /dev/zero
 [stack]
   [ anon ] /proc /proc/%u/task /proc/%u/task/%u/ /proc/%u/ stat exe cmdline /proc/%u/cmdline {%s} [%s] 
%s %4u%%  |%s| %6u%c   - stalled -  --:--:-- ETA %3u:%02u:%02u ETA  kMGTPEZY %s: descend into directory '%s'?  can't close '%s' %s: remove directory '%s'?  %s: remove '%s'?  ? poll /tmp can't change directory to '%s' TERM USER LOGNAME SHELL clock_gettime(MONOTONIC) failed %u:%u%c %u.%u-%u:%u%c %u.%u.%u-%u:%u%c %u-%u-%u %u:%u%c %u%c %u-%u-%u %u%c %u-%u-%u%c %2u%2u%2u%2u%2u%c %4u%2u%2u%2u%2u%c %H:%M:%S %Y-%m-%d %H:%M:%S SIG RTMIN RTMAX %2u) %s
 ==== truncated base64 input number %s is not in %llu..%llu range number %s is not in %lld..%lld range [%s]:%s %s:%s can't bind to interface %s %s (%s) can't connect to remote host bad address '%s' bad port spec '%s' LINES COLUMNS can't remove file '%s' can't move '%s' to '%s' can't create pipe can't duplicate file descriptor close failed lseek(%lu) lseek can't create temp file '%s' %s: I/O error setgid setuid setegid seteuid can't change root directory to '%s' bind listen sendto SELinux support is disabled /dev/urandom getcwd not a symlink %s: cannot read link: %s bad regex '%s': %s /proc/stat unknown user/group %s error =0 qo:f:p:t:     mode:         %d
-o  offset:       %ld
-f  frequency:    %ld
    maxerror:     %ld
    esterror:     %ld
    status:       %d (  |  )
-p  timeconstant: %ld
    precision:    %ld
    tolerance:    %ld
-t  tick:         %ld
    time.tv_sec:  %ld
    time.tv_usec: %ld
    return value: %d (%s)
 Iuser %s: parse error at %s ignoring file '%s' (no such user) root # 	 MAILTO= Iuser %s: too many lines cron.update chdir(%s) /system/etc/cron.d/crontabs f-b:b-f:S-L:L-S:l+ l:L:fbSc: crond (busybox 1.22.1 bionic) started, log level %d Itime disparity of %ld minutes detected user %s: process already running: %s Ican't get uid for %s %s=%s Ichdir(%s) /system/etc/cron.d can't execute '%s' for user %s can't vfork USER %s pid %3d cmd %s vi ?1:dr u:c:lerd %s.%u VISUAL EDITOR %s.new can't create %s/%s can't append to %s/%s stack underflow stack overflow syntax error at '%s' error, base %u is not supported %llu
 %g
 %llx
 %llo
 /dev/mem mmap bad width 0x%0*llX
 [%u;0H[K [7m%.*s[0m (END) [7m%s (file %i of %i)[0m [7m%s[0m %7u  %07u  %s%.*s[7m%.*s[0m [K%s%s
 [K%s%s%s
 [K%s %.*s No next file No previous file No matches found Examine:  Cannot read this file Error opening log file Done EMmN~I missing filename Mark:  Invalid mark letter Go to mark:  Mark not set Log file:   : :%c gtbl | nroff -Tlatin1 -mandoc 2>&1 | %s .so  %s/%s %s.lzma /usr/man more +aw 0p:1:1p:2:3:3p:4:5:6:7:8:9 MANPATH MANPAGER PAGER /etc/man.config /etc/man.conf /etc/man_db.conf MANDATORY_MANPATH MANSECT %s/%s%.*s/%s.%.*s no manual entry for '%s' FBIOPUTCMAP /dev/graphics/fb0 cs:d:i:f: syntax error: %s #= FBIOGET_VSCREENINFO FBIOGET_FSCREENINFO unsupported %u bpp [?25l bad PPM file '%s' P6 %u %u %u exit [?25h MEMGETINFO %lx is beyond device size %lx
 %ld are too many sectors, device only has %ld
 MEMLOCK MEMUNLOCK Writing kb Verifying kb v %s is not a MTD flash device %s bigger than %s 
%s: %lu/%lu (%u%%)  Erasing block erase error at 0x%llx on %s write error at 0x%lx on %s, write returned %d verification mismatch at 0x%lx not  %s: not a block device qdxn %u:%u
 %s/.. %s %s
 %s is %sa mountpoint
 not enough space in MTD device MEMGETBADBLOCK Skipping bad block at 0x%08x
 os:bf:l: ps: start address is not page aligned Writing at 0x%08x
 input size is not rounded up to page size, use -p to zero pad MEMREADOOB crc error, expected 0x%04x, got 0x%04x checksum error, expected 0x%02x, got 0x%02x bad block ones compl unexpected block no, 0x%08x, expecting 0x%08x too many errors; giving up  can't set serial info can't autoconfigure port can't get serial info undefined , Flags:   ( 	Flags:  -1:b-aG:G-ab:a-bG bGavzg invalid flag: %s can't invert %s illegal UART type: %s %s, UART: %s, Port: 0x%.4x, IRQ: %d %s at 0x%.4x (irq = %d) is a %s %s uart %s port 0x%.4x irq %d baud_base %d %s, Line %d, UART: %s, Port: 0x%.4x, IRQ: %d
 	Baud_base: %d, close_delay: %u, divisor: %d
 	closing_wait:  %u
 %s:  {%s}:  4 afon: %7lo  +p can't %cet pid %d's affinity pid %d's %s affinity mask: %s
 +vp wait Command terminated by signal %u
 Command exited with non-zero status %u
 %\ %lu %uh %um %02us %um %u.%02us %u%% ?%% %u.%02u t+ +s:t: unknown signal '%s' %u %u %s: prio %d
 n+:c+:p+ +n:c:p: bad class %d ioprio_%cet filename %s/%s/%s /system/lib/modules nladvAsDumpF:0 modules.dep license author description alias srcversion depends uts_release vermagic parm firmware invalid module format unknown symbol in module or invalid parameter module has wrong symbol version modules.dep.bb error in %s at '%s' .ko alias= __ksymtab_ gpl strings symbol: depends= modules.dep.bb.new deleting stale %s %s%s%s
%s%s
 %s %s /proc/modules /etc/modules/%s remove '%s' module '%s' not found blacklist '%s': %s naAeF:qru qrfsvwb %s "%s" can't insert '%s': %s %.*s%s  %.*s"%s"  no such module unknown symbol in module, or unknown parameter kernel does not support requested operation %-24sSize  Used by Module /proc/sys/kernel/tainted     Tainted: %c%c%c
     Not tainted %s%*s %8s %2s %s
 ./ aAb:eF:nruqC: %u.%u.%u modules.alias alias %s %.*s
 modules.symbols alias symbol:%s %.*s
 wfas rmmod can't unload '%s': %s /proc/net/arp %s 0x%x 0x%x %s %s %s
 ether %s (%s) at  *  <incomplete>  %s [%s]  netmask %s   on %s
 No match found in %u entries
 inet A:p:H:t:i:adnDsv %s: unknown %s address family hardware type %s: kernel only supports 'inet' %s: %s without ARP support need host name need hardware address can't get HW-Address for '%s' protocol type mismatch invalid hardware address feature ATF_DONTPUB is not supported feature ATF_MAGIC is not supported 255.255.255.255 SIOCSARP No ARP entry for %s
 SIOCDARP(priv) SIOCDARP(pub) 	yes 	no SIOCGIFBR bridge name	bridge id		STP enabled	interfaces can't get bridge name for index %d SIOCDEVPRIVATE %s		 %.2x can't get interface name for index %d 					 		%s
 bridge %s iface %s timespec port opcode != 0 class != 1 type is !REQ_A and !REQ_PTR name is not found dropping query sending error reply 0.0.0.0 /etc/dnsd.conf vsi:c:t:p:d error at line %u, skipping name:%s, ip:%s .%u.%u.%u.%u accepting UDP packets on %s packet size %d, ignored got UDP packet packet has 0 queries, ignored response packet, ignored returning positive reply %s, %s bad: '%s' invalid hw-addr %s SIOC%s SIOCGIFFLAGS SIOCSIFFLAGS SIOCGIFINDEX metric mtu txqueuelen dstaddr netmask broadcast hw pointopoint add arp trailers promisc multicast allmulti dynamic up down SIFMETRIC SIFMTU SIFTXQLEN SIFDSTADDR SIFNETMASK SIFBRDADDR SIFHWADDR SIFADDR DIFADDR can't extend file limit, max = %d setrlimit %.24s
 %s: exit status %u %s: exit signal %u %s/%s: bind parse error on line %u, line is ignored unix rpc/ no support for rpc services tcp udp internal unknown internal service %s %s/%s: unknown service %s/%s: unknown host '%s' /etc/inetd.conf R+:q+ R:feq: non-root must specify config file select accept (for %s) %s/%s: too many connections, pausing %s: no such %s user group non-root must run services as himself error: no inet socket available SIOCGIFCONF X bytes:%llu (%llu.%u %sB)%s %02X- %02X:%02X:%02X:%02X:%02X:%02X /proc/net/dev compressed bytes Device not found %s: error fetching interface information: %s [NONE SET] %-9s Link encap:%s   HWaddr %s   Media:%s (auto)           %s addr:%s   P-t-P:%s   Bcast:%s   Mask:%s
 /proc/net/if_inet6 %s:%s:%s:%s:%s:%s:%s:%s           inet6 addr: %s/%d  Scope: Global Link Site Compat Host Unknown %4s%4s%4s%4s%4s%4s%4s%4s %08x %02x %02x %02x %20s
            [NO FLAGS]  %s   MTU:%d  Metric:%d RX packets:%llu errors:%lu dropped:%lu overruns:%lu frame:%lu
              compressed:%lu
 TX packets:%llu errors:%lu dropped:%lu overruns:%lu carrier:%lu
           collisions:%lu  compressed:%lu  txqueuelen:%d  
          R   T Interrupt:%d  Base address:0x%lx  Memory:%lx-%lx  DMA chan:%x  %n%llu%u%u%u%u%n%n%n%llu%u%u%u%u%u %llu%llu%u%u%u%u%n%n%llu%llu%u%u%u%u%u %llu%llu%u%u%u%u%u%u%llu%llu%u%u%u%u%u%u 10base2 10baseT AUI 100baseT 100baseTX 100baseFX DARPA Internet inet6 IPv6 unspec UNSPEC loop Local Loopback Ethernet ppp Point-to-Point Protocol sit IPv6-in-IPv4 timed out lp:w:i:f:e: accept socket:[ [0000]: %s: bogus data on line %d %08X%08X%08X%08X %s/cmdline fd ?? STREAM DGRAM RAW RDM SEQPACKET FREE LISTENING CONNECTING CONNECTED DISCONNECTING %*p: %lX %lX %lX %X %X %lu %n [  ACC  W  N  ] %-5s %-6lu %-11s %-10s %-13s %6lu  %-20s %s   %6lu %6lu %-*s %-*s %-12s %.20s %*d: %32[0-9A-Fa-f]:%X %32[0-9A-Fa-f]:%X %X %lX:%lX %*X:%*X %*X %d %*d %lu  %X raw ESTABLISHED laentuwxrWp PID/Program name     can't scan /proc - are you root? showing only processes with your user ID Active Internet connections  (servers and established) (only servers) (w/o servers) 
Proto Recv-Q Send-Q %-*s %-*s State       %s
 Local Address Foreign Address /proc/net/tcp /proc/net/tcp6 /proc/net/udp /proc/net/udp6 /proc/net/raw /proc/net/raw6 Active UNIX domain sockets  
Proto RefCnt Flags       Type       State         I-Node %sPath
 /proc/net/unix SYN_SENT SYN_RECV FIN_WAIT1 FIN_WAIT2 TIME_WAIT CLOSE CLOSE_WAIT LAST_ACK LISTEN CLOSING dd:p::wn nqNxwp:S:d46aAbgL settimeofday current time is %s.%06u setting time to %s.%06u (offset %+fs) executing '%s %s' %s=%u stratum %s=%ld freq_drift_ppm poll_interval %s=%f offset update from %s: same or older datapoint, not using it step adjtimex update from:%s offset:%+f jitter:%f clock drift:%+.3fppm tc:%d recv(%s) error malformed packet received from %s reply from %s: peer is unsynced reply from %s: delay %f is too high, ignoring reply from %s: offset:%+f delay:%f status:0x%02x strat:%d refid:0x%08x rootdelay:%f reach:0x%02x no valid datapoints%s , no peer selected falsetickers:%d, candidates:%d%s survivors:%d%s sending query to %s send failed timed out waiting for %s, reach 0x%02x, next query in %us poll:%us sockets:%u interval:%us periodic unsync 
--- %s ping statistics ---
%lu packets transmitted, %lu packets received,  %lu duplicates,  %lu%% packet loss
 round-trip min/avg/max = %u.%03u/%u.%03u/%u.%03u ms
  (DUP!) Echo Reply Destination Unreachable Source Quench Redirect (change route) Echo Request Time Exceeded Parameter Problem Timestamp Request Timestamp Reply Information Request Information Reply Address Mask Request Address Mask Reply unknown ICMP type =1:q--v:v--q:c+:t+:w+:W+ qvc:s:t:w:W:I:n4 PING %s (%s)  from %s : %d data bytes
 can't set multicast source interface recvfrom %d bytes from %s: seq=%u ttl=%d  time=%u.%03u ms warning: got ICMP %d (%s) /proc/net/ipv6_route Kernel IPv6 routing table
%-44s%-40sFlags Metric Ref    Use Iface
 Destination Next Hop %32s%x%*s%x%32s%x%x%x%x%s
 fscanf %s/%d %-43s %-39s %-5s %-6d %-2d %7d %-8s
 resolving %s SIOCADDRT SIOCDELRT gateway %s is a NETWORK lo netmask %.8x and host route conflict bogus netmask %s netmask and route address conflict   MSS Window  irtt Metric Ref    Use /proc/net/route Kernel IP routing table
Destination     Gateway         Genmask         Flags %s Iface
 %*[^
]
 %63s%lx%lx%X%d%d%d%lx%d%d%d
 %-15.15s %-15.15s %-16s%-6s %5d %-5d %6d %s
 %-6d %-2d %7d %s
 -net -host A:ne 
Entering %s mode
Escape character is '^%c'.
 character line 
Console escape. Commands are:

 l	go to line mode
 c	go to character mode
 z	suspend telnet
 e	exit telnet
 continuing...
 telnet Connection closed by foreign host
 
 /bin/login /etc/issue.net wF:w+:i--w:w--i f:l:Kip:b:FSw: can't open file remote filename is too long octet timeout server error: (%u) %s g:p:g--p:p--g: gpl:r: malformed packet dot in file name rcu:l /. OUT-OF-RANGE -1:x-x FIlnrdvxt:i:m:p:q:s:w:z:f:4 SO_SNDBUF setsockopt tos %d traceroute to %s (%s) , %d hops max, %d byte packets
 %2d setsockopt ttl %d sent %d octets, ret=%d packet too short (%d bytes) from %s
 
%d bytes from %s to %s: icmp type %d (%s) code %d
 %2d: x%8.8x
   %s   %s (%s)  %d bytes to %s   %u.%03u ms  (%d)  !  !N  !H  !P  !F-%d  !S  !A  !C  !V  !U  !I  !T  !<%d>   * ICMP 1 ICMP 2 Dest Unreachable Redirect ICMP 6 ICMP 7 Echo Router Advert Router Solicit Param Problem Timestamp Info Request Info Reply Mask Request Mask Reply download timed out error getting response restart failed ftp:// ftp http:// http // not an http or ftp url: %s bad header line: %s %s%s
 r+ ftp_proxy http_proxy f ht on Wget -1:T+::: csqO:P:Y:U:T:t: %s
 off index.html Connecting to %s (%s)
 GET %stp://%s/%s HTTP/1.1
 POST /%s HTTP/1.1
 GET /%s HTTP/1.1
 Host: %s
User-Agent: %s
 Connection: close
 Proxy-Authorization: Basic %s
 Range: bytes=%lu-
 Content-Type: application/x-www-form-urlencoded
Content-Length: %u

%s server returned error: %s content-length %s is garbage chunked transfer encoding '%s' is not supported too many redirections anonymous:busybox@ USER  PASS  ftp login: %s TYPE I SIZE  SIZE value is garbage PASV bad response to %s: %s REST %lu RETR  RETR ftp error: %s protocol family can't send flush request peer anycast scope local need "dev IFACE" "dev" (%s) must match "label" (%s) broadcast can be set only for IPv4 addresses nil ifname Deleted  %d: %s @NONE:  @%s:  NO-CARRIER, %x ,M-DOWN >  mtu %u  qdisc %s  master %s  state %s  SIOCGIFTXQLEN qlen %d %c    link/%s   peer   brd  wrong nlmsg len %d %u: %s     inet      inet6      family %d  /%d   peer %s/%d  brd %s  any %s  scope %s  secondary  tentative  deprecated  dynamic  flags %02x  valid_lft forever valid_lft %dsec  preferred_lft forever  preferred_lft %dsec        %s flush can't flush link addresses dev vlan type vlan id unknown VLAN encapsulation protocol '%s' argument of "%s" must be "on" or "off" name qlen "dev" wrong address (%s) length: expected %d bytes SIOCSIFHWADDR SIOCSIFNAME SIOCSIFTXQLEN SIOCSIFMTU Not a route: %08x %08x %08x
 %s/%u  0/%d  default  from %s/%u  from %s  from 0/%u  via %s  dev %s   src %s   metric %d  %c    cache  /proc/net/psched %*08x%*08x%08x%08x  expires %dsec  error %d  iif %s need at least destination address not a route? wrong len %d can't connect the route "ip route flush" protocol table can't flush routing cache can't send dump request to unknown command %s preference TOS fwmark realms table ID type %u:	 from  %s/%u 0/%d to %s/%u  to %s  to 0/%d  tos %s  fwmark %#x  iif %s  lookup %s  realms %s/ map-to %s  masquerade OVERRUN EOF on netlink sender address length == %d ERROR truncated RTNETLINK answers message truncated remnant of size %d! dump terminated can't talk to rtnetlink truncated message malformed message: len=%d! unexpected reply! deficit %d, rta_len=%d! :%02x "%s" is invalid lladdr if%d can't find device '%s' [%d] database %s is corrupted at line %d main /etc/iproute2/rt_tables /etc/iproute2/rt_dsfield /etc/iproute2/rt_realms global nowhere host link site /etc/iproute2/rt_scopes /etc/iproute2/rt_protos 0x%02x none redirect kernel boot static gated ra mrt zebra bird unicast blackhole unreachable prohibit throw nat xresolve any "%s" may be inet %s, but it is not allowed in this context address an %s %s is expected rather than "%s" prefix IP command line is not complete, try option "help" duplicate "%s": "%s" is the second value either "%s" is duplicate, or "%s" is garbage ??? login failed BLKROSET NBD_SET_SOCK /sys/block/%.32s/pid  to  unexpected server response%s%s: %s %s %s
 cmd %s %s EOF QUIT REST %llu STOR anonymous busybox@ -2:vv:cc cvu:p:P: PASS %-10s %s
 Address %u: %s%c can't resolve '%s' Server: Name:      %13s%13s%13s%13s%13s
 used free shared buffers Mem:  %13llu%13llu%13llu%13llu%13llu
 -/+ buffers:       %*d: %64[0-9A-Fa-f]:%x %*x:%*x %*x %*x:%*x %*x:%*x %*x %*d %*d %llu %*s %*s %*s %x:%x %llu kill pid %s mks64 /proc/net/ %u/%4s bad signal name '%s' bad option '%s' you need to specify whom to kill %s: no process killed can't kill pid %d %u %s
 s+:P+ vlfxons:P: o:: so: %PPID  %u %b%d %H:%M -:ww Tlw S   UID   PID  PPID   VSZ   RSS TTY   STIME TIME     CMD   PID USER       VSZ STAT COMMAND  mgtpezy %d: %c %5u %5u %5u %5s %5s %-5s %s %02u:%02u:%02u  %5u %-8.8s %s %s   sett error: '%s' must be of the form name=value error: malformed setting '%s' error: '%s' is an unknown key error %sing key '%s' %s =  error reading key '%s' /etc/sysctl.conf +neAapwq /proc/sys # 	=   100%  [H[J%s
 meminfo MemTotal: %lu %s
 Mem: %lu %lu %lu %lu %lu %lu MemFree: %lu %s
 MemShared: %lu %s
 Buffers: %lu %s
 Cached: %lu %s
 Mem: %luK used, %luK free, %luK shrd, %luK buff, %luK cached CPU%s:%susr%ssys%snic%sidle%sio%sirq%ssirq loadavg Load average: %s   PID  PPID USER     STAT   VSZ %VSZ %CPU COMMAND %6ldm %7lu 
%5u%6u %-8.8s %s%s%3u.%c%3u.%c  %.*s
 [H[J%.*s
 Mem total:%s anon:%s map:%s free:%s  slab:%s buf:%s cache:%s dirty:%s write:%s Swap total:%s free:%s   PID   VSZ VSZRW   RSS (SHR) DIRTY (SHR) STACK COMMAND 
%.*s ^_ d:n:bm no process info in /proc s  %02u:%02u:%02u up  %u day%s,  %2u:%02u %u min ,  load average: %u.%02u, %u.%02u, %u.%02u
 -1:n+ +dtn: Every %us: %-*s %s

 %08lx  %7lu %7lu %7lu %7lu  %7luK  %.4s  %s
 no such process %u: %s
 Address	  Kbytes     PSS   Dirty    Swap  Mode  Mapping --------  ------  ------  ------  ------
total	 %7lu %7lu %7lu %7lu
 mapped: %luK
 xq Blk k--m:m--k cdtzkm ALL  MB  kB %s %s (%s) 	%s 	_%s_	(%u CPU)

 /proc/uptime %lu.%lu %x %X avg-cpu:  %user   %nice %system %iowait  %steal   %idle         %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f
 Device:%15s%6s%s/s%6s%s/s%6s%s%6s%s
 tps _read _wrtn /proc/diskstats %*s %*s %12s %*s %*s %*s %lu %llu %llu %llu %lu %*s %llu %-13s %8.2f %12.2f %12.2f %10llu %10llu
 %s %s (%s)	%s	_%s_	(%u CPU)
 %u  %*s %llu %llu %llu %llu %llu %llu %llu %llu %llu intr  CPU 
%-11s  CPU  %*s/s %-11s %4u %10.2f         N/A %-11s  all 
%-11s  CPU    %%usr   %%nice    %%sys %%iowait    %%irq   %%soft  %%steal  %%guest   %%idle
  %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f
 
%-11s  CPU    intr/s
  %9.2f
 /proc/interrupts /proc/softirqs AI:P:u not that many processors Average: /proc/%u/fd/ %d	%s	%s
 -+- `- |- |  %d*[ \\ \%03o (%d) p {%.*s} no processes found /proc/ invalid process id: '%s' /proc/%u/cwd %s: %s
 ash  (core dumped) Done(%d) You have stopped jobs.
 %lum%lu.%03lus%c builtin [%d]    %d  Running 
%*c%d  %s%*c%s%s line %d:  %.*s: is read only %.*s: bad variable name OLDPWD PWD can't set tty process group (%m) can't access tty; job control turned off %d: %m ${# ${ "} $(...) )) $(( "$(...)" %s=%s
 %s: %s not found
 %s%s%.*s%s
 not found illegal option -%c no arg for -%c option LP vf trap -- %s %s
 %s: invalid signal specification No current job No previous job %s: ambiguous %s: no such job job %s not created under job control  -%u -l lp illegal option %co %s %-16s%s
 set %co %s
 login illegal option %c%c expression expected S %.4o
 Illegal number: %s illegal mode: %s out of file descriptors p:u:rt:n:s IFS [%d]   | %s CDPATH can't cd to %s "%s" unexpected %s  (expecting %s) trap jobs LC_ALL LC_CTYPE LANG unalias ;   &&   ||  while  until  ; fi ; done () { ... } <<... esac >| >> >& <& <> ! if  ; then  ; else  ; do  for   in  case  )  ;;  can't fork pipe call failed nonexistent directory can't create %s: %s no such file can't open %s: %s redir error bad fd number missing '))' unterminated quoted string missing '}' bad substitution EOF in backquote substitution illegal eof marker for << redirection -a -o bad for loop variable [[ bad function name parameter not set  or null %.*s: %s%s 
Use "exit" to leave shell.
 %builtin func %s not defined in %s  is a shell keyword  a tracked alias for special  alias   is an alias for %s  is%s %s  is a shell function  is a %sshell builtin : not found
 pvV %s: not found _ PS1=\w \$  PPID SHLVL /etc/profile .profile ENV HISTFILE .ash_history eerrexit fnoglob Iignoreeof iinteractive mmonitor nnoexec sstdin xxtrace vverbose Cnoclobber aallexport bnotify unounset 3. 3: 2[ 2[[ 6alias 2bg 3break 2cd 0chdir 2command 3continue 2echo 3eval 3exec 3exit 7export 2false 2fg 0hash 0history 2jobs 2kill 0let 4local 2printf 0pwd 2read 7readonly 3return 3set 3shift 3source 2test 3times 3trap 2true 0type 0ulimit 2umask 2unalias 3unset 2wait end of file ) ;; ` do done elif else esac fi then } PS1=$  PS2=>  PS4=+  RANDOM malformed ?: operator arithmetic syntax error exponent less than 0 divide by zero expression recursion loop detected unlimited invalid count invalid file descriptor invalid timeout read: '%s': not a valid identifier REPLY -%c: %-30s  error setting limit file size (blocks) cpu time (seconds) data seg size (kb) stack size (kb) core file size (blocks) resident set size (kb) locked memory (kb) processes file descriptors address space (kb) locks scheduling priority real-time priority s+:n+ cs:n:rC klogctl %c[%d;%d;%dm %c[%dm Unknown value(s) for:  heads  sectors  cylinders  (settable in the extra functions menu) can't seek on %s Command Action a	toggle a bootable flag b	edit bsd disklabel c	toggle the dos compatibility flag d	delete a partition l	list known partition types n	add a new partition o	create a new empty DOS partition table p	print the partition table q	quit without saving changes s	create a new empty Sun disklabel t	change a partition's system id u	change display/entry units v	verify the partition table w	write table to disk and exit cylinder sector cylinders sectors 
Disk %s: %lu MB, %llu bytes
 
Disk %s: %lu.%lu GB, %llu bytes
 %u heads, %u sectors/track, %u cylinders , total %u sectors 
Units = %s of %u * %u = %u bytes

 %c%2x %-22.22s %s (%u-%u, default %u):  %s (%u-%u):  Using default value %u
 Value is out of range Partition number Warning: partition %u has empty type
 Selected partition %u
 No partition is defined yet! All primary partitions have been defined already! First %s Sector %u is already allocated
 No free sectors available Last %s or +size or +sizeM or +sizeK '%s' is opened for read only
 can't read from %s Note: sector size is %u (not 512)
 device has more than 2^32 sectors, can't use all of them Device contains neither a valid DOS partition table, nor Sun, SGI, OSF or GPT disklabel 
The number of cylinders for this disk is set to %u.
There is nothing wrong with that, but this is larger than 1024,
and could in certain setups cause problems with:
1) software that runs at boot time (e.g., old versions of LILO)
2) booting and partitioning software from other OSs
   (e.g., DOS FDISK, OS/2 FDISK)
 Ignoring extra extended partition %u
 Bad offset in primary extended partition Warning: deleting partitions after %u
 Warning: extra link pointer in partition table %u
 Warning: ignoring extra data in partition table %u
 Omitting empty partition (%u)
 Warning: invalid flag 0x%02x,0x%02x of partition table %u will be corrected by w(rite)
 DOS disklabel Partition %u has different physical/logical beginnings (non-Linux?):
      phys=(%u, %u, %u)  logical=(%u, %u, %u)
 Partition %u has different physical/logical endings:
 Partition %u does not end on cylinder boundary
 part %*s Boot      Start         End      Blocks  Id System
 Device disc %*.*s%s%-2u %s  %c %11u %11u %11u%c %2x %s
 
Partition table entries are not in disk order /dev/hd /proc/ide/%s/media cdrom tape Disk %s doesn't contain a valid partition table
 /proc/partitions  %u %u %u %[^
 ] /dev/%s l   logical (5 or over) e   extended b+:C+:H+:S+ b:C:H:lS:u Command (m for help):  WARNING: Partition %u is an extended partition
 %c: unknown command
 DOS Compatibility flag is set DOS Compatibility flag is not set The maximum number of partitions has been created You must delete some partition and add an extended partition first Command action
   %s
   p   primary partition (1-4)
 Invalid partition number for type '%c'
 Hex code (type L to list codes):  Partition %u does not exist yet!
 Type 0 means free space to many systems
(but not to Linux). Having partitions of
type 0 is probably unwise. You cannot change a partition into an extended one or vice versa Changed system type of partition %u to %x (%s)
 Changing display/entry units to %s
 Warning: bad start-of-data in partition %u
 Partition %u contains sector 0
 Partition %u: head %u greater than maximum %u
 Partition %u: sector %u greater than maximum %u
 Partition %u: cylinder %u greater than maximum %u
 Partition %u: previous sectors %u disagrees with total %u
 Warning: partition %u overlaps partition %u
 Warning: partition %u is empty
 Logical partition %u not entirely in partition %u
 Total allocated sectors %u greater than the maximum %u
 %u unallocated sectors
 The partition table has been altered. Calling ioctl() to re-read partition table WARNING: rereading partition table failed, kernel still uses old table FAT12 FAT16 <32M Extended FAT16 HPFS/NTFS 
OS/2 Boot Manager Win95 FAT32 Win95 FAT32 (LBA) Win95 FAT16 (LBA) Win95 Ext'd (LBA) Hidden FAT12 Compaq diagnostics Hidden FAT16 <32M Hidden FAT16 Hidden HPFS/NTFS Hidden Win95 FAT32 Hidden W95 FAT32 (LBA) Hidden W95 FAT16 (LBA) <Part.Magic recovery APPC PReP Boot BSFS cGNU HURD or SysV Old Minix Minix / old Linux Linux swap Linux OS/2 hidden C: drive Linux extended NTFS volume set NTFS volume set Linux LVM BSD/OS Thinkpad hibernation FreeBSD OpenBSD Darwin UFS NetBSD Darwin boot BSDI fs BSDI swap Solaris boot BeOS fs EFI GPT EFI (FAT-12/16/32) Linux/PA-RISC boot DOS secondary Linux raid autodetect +sxnu -command o:l:m:v FITRIM %s: %llu bytes trimmed
  --%s  -%c  -- GETOPT_COMPATIBLE missing optstring argument l:: +o:n:qQs:Tual: , 	
 empty long option specified bash sh tcsh csh unknown shell '%s', assuming bash "%08.8_Ax
" "%08.8_ax  " 8/1 "%02x " "  " 8/1 "%02x "  "  |" 16/1 "%_p" "|\n" "%07.7_ax " 8/2 "%04x " "\n" %x  "%07.7_ax " 16/1 "%03o " "\n" "%07.7_ax " 16/1 "%3_c " "\n" "%07.7_ax " 8/2 "  %05u " "\n" "%07.7_ax " 8/2 " %06o " "\n" "%07.7_ax " 8/2 "   %04x " "\n" ?2:d--ofar:a--ofr do:far no free loop devices /uevent DEVTYPE PRODUCT BUSNUM DEVNUM \/= Bus %s Device %s: ID %04x:%04x
 /sys/bus/usb/devices , %u 
Superblock backups stored on blocks:
	%u -1:b+:i+:I+:m+ cl:b:f:i:I:J:G:N:m:o:g:L:M:O:r:E:T:U:jnqvFS can't format mounted filesystem blocksize %u is bad -%c is bad block count doesn't fit in 32 bits need >= 60 blocks warning: %u blocks unused

 Filesystem label=%s
OS type: Linux
Block size=%u (log=%u)
Fragment size=%u (log=%u)
%u inodes, %u blocks
%u blocks (%u%%) reserved for the super user
First data block=%u
Maximum filesystem blocks=%u
%u block groups
%u blocks per group, %u fragments per group
%u inodes per group lost+found Ab:cCf:F:h:Ii:l:m:n:r:R:s:S:v image size must be specified BLKSSZGET for this device sector size is %u the image is too small for FAT32 can't make FAT32 with >128 sectors/cluster Device '%s':
heads:%u, sectors/track:%u, bytes/sector:%u
media descriptor:%02x
total sectors:%lu, clusters:%u, sectors/cluster:%u
FATs:2, sectors/FAT:%u
volumeID:%08x, label:'%s'
 Xmkdosfs FAT32    L: Setting up swapspace version 1, size = %lu bytes
 --More--  (%u%% of %llu bytes) 
%*s
 (Enter:next line Space:next page Q:quit R:show the rest) mount('%s','%s','%s',0x%08lx,'%s'):%d %s is write-protected, mounting read-only would do mount('%s','%s','%s',0x%08lx,'%s') %s,%.*s unknown nfs status return value: %d warning: multiple hostnames not supported only IPv4 is supported addr=%s %s%saddr=%s  	

, warning: unrecognized proto= option unknown nfs mount parameter: %s=%d warning: option nolock is not supported unknown nfs mount option: %s%s NFSv%d not supported %s:%s failed, reason given by server: %s NFS over TCP is not supported nfs socket nfs bindresvport unc=\\%s\%.*s,prefixpath=%s unc=\\%s\%.*s auto cifs /\ ip=%s can't setup loop device nodev mounting %s on %s failed /etc/fstab ?2o::vv o:t:rwanfvsiO: ro rw no %s %s on %s type %s (%s)
 swap according to %s, %s is already mounted on %s can't find %s in %s %s /
 noauto %s busy - remounted read-only can't remount %s read-only forcibly  fldDnravt:i can't %sumount %s  LABEL="%s"  UUID="%s"  TYPE="%s" UUID= LABEL= %02X%02X-%02X%02X %02X%02X%02X%02X%02X%02X%02X%02X %02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x ext4 ext3 NTFS MSWIN FAT16    MSDOS FAT12    NO NAME     vfat CD001 %/@ %/C %/E CDROM iso9660 FILE SWAP-SPACE SWAPSPACE2 S1SUSPEND S2SUSPEND ULSUSPEND EXFAT    exfat f2fs  	
 alnum alpha blank cntrl digit graph lower punct space upper xdigit Success No match Invalid regular expression Invalid collation character Invalid character class name Trailing backslash Invalid back reference Unmatched [ or [^ Unmatched ( or \( Unmatched \{ Invalid content of \{\} Invalid range end Memory exhausted Invalid preceding regular expression Premature end of regular expression Regular expression too big Unmatched ) or \) auth_none.c - Fatal marshalling problem authunix_create: out of memory
 RPC: (unknown error code) ; errno = %s ; low version = %lu, high version = %lu ; why =  (unknown authentication error - %d) ; s1 = %lu, s2 = %lu  -  clnttcp_create: out of memory
 clntudp_create: out of memory
 pmap_getmaps rpc problem xdr_array: out of memory
 xdr_bytes: out of memory
 xdr_string: out of memory
 xdrrec_create: out of memory
 xdr_reference: out of memory
        
   (   y   l  E    q&  Ts  Y 
 ) }$ extract  ilist  tcreate  oformat Hpass-through  pverbose  vquiet  to-stdout   TRAILER!!! stdout  cto-stdout  cforce  fverbose  vdecompress  duncompress  dtest  tquiet  qfast  1best  9                           	

    		



LZO 

list  textract  xdirectory Cfile fto-stdout  Ono-same-owner  osame-permissions  pverbose  vkeep-old  kcreate  cdereference  hbzip2  jlzma  afiles-from Texclude-from Xgzip  zxz  Jtouch  mno-recursion  to-command numeric-owner  no-same-permissions  overwrite  exclude  0000000 0000000 0000000 00000000000 00000000000 .zip .ZIP         @@@    		



         cc       	 
   ! 1 A a    0@`      	 
  
       # + 3 ; C S c s          	

        ?   ? recursive  Rdereference  no-dereference  h archive  aforce  finteractive  ilink  ldereference  Lno-dereference  Precursive  Rsymbolic-link  sverbose  vparents   b:c:f:d:sn  only when operating on fields date hours minutes seconds  rfc-822  Rrfc-2822  Rset sutc  udate dreference r notrunc sync noerror fsync swab  bs count seek skip if of ibs obs conv    c      w      b      kD    k      K      MD  @B M      GD   ʚ;G      @        ignore-environment  iunset u quote length match index substr  n:c:qv directory  dpreserve-timestamps  pstrip  sgroup gmode mowner o  |  /     @ =       ##%"%## %$%#%%                                @                 @                        Cadil1gnsxQAkcetuSXrvFpRLHhT:w: always yes force auto tty if-tty  color  mode mparents  pverbose  v pcub      `interactive  iforce  fno-clobber  nverbose  v can't overwrite %sdirectory with %sdirectory aBbcDdeFfHhIiLlOoXxv  	


	diouxXfeEgGcs parents  pverbose  vignore-fail-on-non-empty    s      m   <   h     d   Q         ngMucszbrdfimS:T:o:k:t: b      k      m      g      @        %s %s: no size information for this device %lu
     speed %lu baud; evenp parity oddp nl ek sane cooked raw pass8 litout cbreak crt dec decctlq tabs lcase LCASE parenb parodd cs5 cs6 cs7 cs8 hupcl hup cstopb cread clocal crtscts ignbrk brkint ignpar parmrk inpck istrip inlcr igncr icrnl ixon ixoff tandem iuclc ixany imaxbel iutf8 opost olcuc ocrnl onlcr onocr onlret ofill ofdel nl1 nl0 cr3 cr2 cr1 cr0 tab3 tab2 tab1 tab0 bs1 bs0 vt1 vt0 ff1 ff0 isig icanon iexten echo echoe crterase echok echonl noflsh xcase tostop echoprt prterase echoctl ctlecho echoke crtkill  intr quit erase kill eof eol eol2 swtch start stop susp rprnt werase lnext flush min time     b      k      B                                                                                                                                   0       0      0       0 0                  @                                                      @                                               @                                   @                                                                @ @   @                                                   @                                                line rows cols columns size speed ispeed ospeed      	

 w a -r -w -x -e -f -d -c -b -p -u -g -k -s -t -z -n -h -O -G -L -S = == != < > -eq -ne -ge -gt -le -lt -nt -ot -ef ! -a -o ( )          	     
       
  !"#$%&no-create  creference rdate d alpha:] alnum:] digit:] lower:] upper:] space:] blank:] punct:] cntrl:] xdigit:]  snrvmpioa all  akernel-name  snodename  nkernel-release  rrelease  rkernel-version  vmachine  mprocessor  phardware-platform  ioperating-system  o   A   first-only  itabs tall  a initial  itabs t arg aumask ureverse  test  exit-on-error  list   Unexpected end of string   ?Not an array Possible syntax error             !  a 
 w 
 | 
 p&	m&	P&	M&	 ' J+"J-"J*"J/"J%"J&"J+-&"J&/%&*'' '''!-~- 7 ;?%@: C 1 P  %+&-&!&                     0   1   2      	                 #  
  3       
 A     
              	 
  	    $         I I                  Internal error Too few arguments for builtin %.6g %.6g     
 
      CONVFMT OFMT FS *OFS ORS RS *RT FILENAME SUBSEP $ *ARGIND ARGC ARGV ERRNO FNR NR NF *IGNORECASE *ENVIRON   Division by zero ()/>>>|++--++--$===+=-=*=/=%=^=+-**=**/%^*!=>=<=><!~~&&||?:in,|+-!]{};
ifdoforbreakcontinuedeleteprintprintfnextnextfilereturnexitwhileelseandcompllshiftorrshiftxorclosesystemfflushatan2cosexpintlograndsinsqrtsrandgensubgsubindexlengthmatchsplitsprintfsubsubstrsystimestrftimemktimetolowertouppergetlinefuncfunctionBEGINEND Unexpected token Call to undefined function Invalid format specifier %.0s%.0s%lu %3o %3o
 cmp: EOF on %s
 sl %s %s differ: char %lu, line %u
 ignore-case  iignore-tab-expansion  Eignore-space-change  bignore-all-space  wignore-blank-lines  Btext  aunified Ulabel Lshow-c-function  pbrief  qexpand-tabs  tinitial-tab  Trecursive  rnew-file  Nreport-identical-files  sstarting-file Sminimal  d saicrw:btTydDgGhHlnNpPqx={} in-place iregexp-extended  rquiet  nsilent  nexpression efile f ; 

	 cCdDJoOpPrRxX<>~ -IR- Indexed_directory Secure_Deletion Undelete Synchronous_Updates Synchronous_Directory_Updates Immutable Append_Only No_Dump No_Atime Compression_Requested Journaled_Data No_Tailmerging Top_of_Directory_Hierarchies  IsuSDiadAcjtT                       @          @        c      w             b      k              -follow -xdev -depth -a -o ! -print -print0 -prune -exec ( -name -iname -path -ipath -regex -type -perm -mtime -mmin -newer -user -group -size -links -mindepth -maxdepth           ! * 3 9 B H P V \ ` d i p v |                         %+0;HPV[`lsy &+17<AIMTY_gnu%C*8>CLU\_fjot} #(059AHMTX]aimt|D%.17:?ELRU[_[ [[ adjtimex arp ash awk base64 basename bbconfig blkid blockdev brctl bunzip2 bzcat bzip2 cal cat catv chattr chgrp chmod chown chroot clear cmp comm cp cpio crond crontab cut date dc dd depmod devmem df diff dirname dmesg dnsd dos2unix du echo ed egrep env expand expr false fbsplash fdisk fgrep find flash_lock flash_unlock flashcp flock fold free freeramdisk fstrim fsync ftpget ftpput fuser getopt grep groups gunzip gzip halt head hexdump id ifconfig inetd insmod install ionice iostat ip kill killall killall5 less ln losetup ls lsattr lsmod lsof lsusb lzcat lzma lzop lzopcat man md5sum mesg mkdir mkdosfs mke2fs mkfifo mkfs.ext2 mkfs.vfat mknod mkswap mktemp modinfo modprobe more mount mountpoint mpstat mv nanddump nandwrite nbd-client nc netstat nice nohup nslookup ntpd od patch pgrep pidof ping pipe_progress pkill pmap poweroff printenv printf ps pstree pwd pwdx rdev readlink realpath reboot renice reset resize rev rm rmdir rmmod route run-parts rx sed seq setconsole setserial setsid sh sha1sum sha256sum sha3sum sha512sum sleep sort split stat strings stty sum swapoff swapon sync sysctl tac tail tar taskset tee telnet telnetd test tftp tftpd time timeout top touch tr traceroute true ttysize tune2fs umount uname uncompress unexpand uniq unix2dos unlzma unlzop unxz unzip uptime usleep uudecode uuencode vi watch wc wget which whoami xargs xz xzcat yes zcat  h11AY&SY _ppw`OD π^vBgCwFƼHQ(} _@
/m\ݭ.[fF$}r^Mw(
#y{=a(e)0ifճl99
vIP))Uzo!}n65,u!'37 @10# CTFOTx=MD=54SG4h""JyOTz4'S@=CCMM(	4D5Oj)4F (IɡMi1O	6PM4 P  d&2bz4S=FzS =@%?^o|d5?W2gⴟXx$ژ}A~&%tW"	SIQ)É"!7QTDi\q'qJ׽[|<m2ǆָki[LlujIǇ{pگ|\@d@ǨlX^_7l.hE|Zd\;kyusDҤjs-/uԚѼot'fZZC#R DK	$/dA'Wٶz5N=:Pxchw4u,F+>Q	Z9cmm.u98+u5,I"p]kYqZLmV%)y:OۙN ̫t%:>~YXIy^Y#* A8_&̷~Aׇ&Pe]JL6V9`XjbS?ӌ:
eUqP*ѣxغ#<]chwC:aub
*2>3o<BP"-[\3ı[O11	١*6Y24EdRKL"@I	Z``s
YU9eu}mH-}OIsMX,Y9!ZJaǯ,)Vx;JVʶw˒ؿx9&ѯ8^W"Yd$4cyfG c)/>z~~U!s~ )?m9FDT!OOt.zK@ԓ
VEZתycY}3 lNJ@cSN֩j=dYǜI(d[8|eQQ;rJRA14
OA	]pPڴ5.q֪ƥ	Ou!@]׮[N4a'N4m,y6X7Y0|SzBiZΜ+}qus1UuVZ]le!q"]Ca\

f3Շx/pY,=x<td.ݑa&^}} a^cXqFV_uZPRs\lꂵR/)2)R=hZSm.MqMb%r,k0C
![Ƀtijdϛ١|c7HdG4~@gJӺse
eh ]T5g#|ҧW[O/ý:V'?GRԂt	X<k\s4E΢k5,@:E;>F
QgD&sϾZǳ;-leK_cJurGN1d4L!CHf>l
_DKڷx֑X*Q8WCKt0\c{)Zk$45qF>ڄ6dAE\\6B`AC@44_ξޞkۑiY?WGKv)sX&ئĲ!'$aKT|S䮝Z
Vqdj9iکA}]}>]K4{1}w37V}9vd1st
*0F;=L\dw&,*<_G:e:̲.R=uvG䭲t	ڣP
5˻~kǕ1=S.~ʀGL)F{JGA Y,y~q^_ciT|K#Z3mT?ϳ2WJ)Ҙ#$hu#1^=-e<O4ְҁv<zHRb~DݡΦa6u;2xT^|F/.hmG:bc	I2t+j!JE,ID40zDﳻ5q%IFn[GML+S$嵄hȋI0<n8_1 g]&eBAP<PRPD};	#@nb}oh&48.s,2$@&_喆&ά 
߹IHIT:X6߱9gåх:0Ej.
!x4KaKA"d	v59jMkA]Aw!y>
CЌd+kI[X1bmU`(!z%f< A#\l#RzL7MZ̤y qBgy_nԚd\YjAq"lwg*V<2c˫nF!{"X,L2a\ރ,GFl>ݬ}hYc7Ww#rS'^	{`1y3&·kLJ)J@w9#+Gw$yʊAV!Pt
h3j$.0ۘ4UAcNuZ1D@&bH奚cfޡhS[U2Y)Ri[fre}Թ 6:@m\'7FxN#|#_z*EǗ̡]PѼGp՛vq2[(Zf̶ a<R<W:W(2* DZdۦ#"FU!f7(&%,5<*?1CޏRoIw=@_MUThz~[݊4]6!`8]
jFUvĻL+%3akDt͆btU8Vl$K1!>ʛ;%肝Rgb\){/£I2G`4kpH1(*{x*8|E
$qNK۸WMCa!سǄRV\> 8bt
"N(/
!*HP}>HgI<=$Iֆ1CZ+vpPt&[)`5kmhɀ")Uc\_Sm6:-lrfԎׄ%+"V=~_."4iƓQ^&@ЩjǼ'6Of[QQTx1w5ґq*%-қ+s3Om&Fο"; "rP^g7mJPoǄli;j#<71*+P^ȇ17k5̢C`gMw{,0#}`D~GБԨ|>o9{@*9)w}&@9NMϛJ:&m9,ݲ׹4m:[fY=9
9}d:{S^;U-YSC.ע
~*ZL88JGאͷW#"~A%],߇P skZ
v(4tN,,N,2|uo8l(2Zȱ,-!PUHn#_9I'dY1Ņ]WʇY"I3p*HzJBLhQjHaNM;ͻ9xy'N7ݠ:v$=bTUiTrV%th}~뛌pk%01rP%@sUf
=,X03B4
-bڪʨ5V?E4ugd)9bR-v|ွW.<ðb(ԭT6B1Xp`^wJEKQ!%Cs|
zyZPsP
f27OP6KU/\=s#UUP(R*˦ÆVGJstzBXg8٘%'Ԣ92IUfͣKuug7ںlNko:T7#r1X/_'$жÎb%;=KT"Cpݫq)}A#䂁B88Ņ3:hy~pk`,m^<Ah,Zx	POu]bEE;=%LH\u#aMKJR&#݄9Cp߆&r3Hbwxr<=J@٨~$rh;3G|/w~E,@nwj:DHqzxFPj=
qSDp$dYʽ0z<4hqBF&xNQ,OI!ɂmƚzU"

b7B2|NB_Ykfhdh- 	Krb3	x~اvR
Xҵxׯ@pms%-mjmAr~\}@}0c$A:Nn}zzO(,Hmv(X Hʭ"[n=Z0(CPWύ#$udAd
5 (H6w&8s5i!';F&M0Yz!z<R].hn<Bև,;S0M2
cho)"MgZN/dR9"%Ȑ&=	%,EIP MH%j@Nq~.  Ȉ}rO$ a^<yp;`J#N:xzz7%[e&\1ү%z5	C<cCF-]tsVUSKtc5sU)T5 ,jh8 ;]<⁞1X
_<:E!8nMbucbh$Q
T&mū
(	(HQ>{wX[
9hiN.R
ظ,VQP14a.;QH8`WoZohf!S}b߿y ''0WLoZ$:rҎvk(ŵ
w6TLaBeȰS\W\&
CDF2gH(1Q{4ϛ܀MWPUa.̵_(3~/8-YiTr'7RFR3Co
tIL0C _LB""0{y !hiBqrFL6eH0ftK~|7=<"n&ަ/µ@j<h=H
[D׎Aѝ{1Pa*(^p,mz;{[;O&~1X 6V#Gt=C#G6>U61, >K 0{K`|O
C
Fitp2?>k$#RSYf1zXѳUl37;TgSF.f$jqN"9,]NJ'b"AB -.^&"")evN!{ް+dJykl{N
6ߵkE3 AG]F\љA-vl	'dYO?a.HI@e/thd~B5EXyzED_dWW;iSfLCz犇8=T+4Ň_(AZ-/Čt_
t͟ĴzϯcPLjGHdh
 H66ʦXG/^B28jLIl8ܹ'A?*/Дuf +8r5T5'k2]x־'ʹ!B@6k㑜d5 `ypQ9ZCT"aDn',KoO_:Ёڕ",YDg뿊'fu4|[FQI=ȟe{Z6(B,,4PG[EYgjgV7Cb.[i
Ol#!
"F(&!eSI{-ˣXT r"rAMcLD}+"DKRPK	J`a)rIS#KB_zKc$GĕS゘mJ,m-I
th`)V)#[8(FEKF˃]8#EċX:}ˎY6iG
]L%Gda|
qVUwgj&`*ߟ~(TCTm>I2<SV@In1PzoMl6I+ K/#|h}чK3t.DWr+	CC)y!Ao,?r`B,٤cl5I8G@%t`A-6CN7Lu=V!3y>anm|jJ
H%>PBmv}OH<7ORU qΟd|lxM[B忿v&ngq1˥c(&otf6gfmIZ
uW E	\Ćԑ
tD?Xe|Q|Ec.aNΨqO38AE$?ÄO_ɏ	(Qx|f,l\}6Y>(b?vL3_bO7:v5׺>
EE#WŊFk ZCҜU=rc?)ޞ_U/FdJn2Kd NU=qXj9'k
|Wc(6r!t4thvz'3C0"k-70}JlA yן $WU0&WrWbIM7
gery@h]~g9l\L]n}{MuM;}D{	D%фwE[vSҋB#יZk7gGU:N;%	#2QdDDDAv/-	Q\z1Rq)\K!%uTa+
>g֮
.MKie&Ã-da(YY >F%tA|:\i+3|+O$H( U"*
32<+7#<ʛgFTd*<i_.qӇzxӬ]O~ʔ)m v@o
bABԜ_+z0wCjT3~)Ao۶ƅSl(qBew]>c;T?TX(E
ȤI+# Z^8Wa{0B[h50 tk2!o HH5DFt Ap6ͷGfEYHn͍HoBFtgmFVQ+1gh,d:[Pu]4isb1񐿳&2diTH &!5;mĐ;=4OF\і1F'Zi|Cib\"	mX//pD	bc^f\Pc[}/
y?p,1ߨ.9q剣>X,cA"`k&%H1QT@XOe&UPb(AA(f*"AY/1E_Ǚ$CdB ,X{RcB,u~ϺJ:c?)-'CǞ1!Mχ_?h}!39jjA,`>IfV~S7MJO>Pvdi~4DoBkǼ!7GmL
t+)JXcb@a!C3ylɐkF̥wxMg\$Q8LA+YĊo5=;Z)(#&-/'}zܸdsd
ܙ`~(ze-7W\rR=$W-7La@%?f\&(3yq	K%5	C&wjb<bK
|D"Xt7abv'W䚂"$N*8-{_A>a c#뒋)`ZW*pk@`[H^W{]A)OC)rڸ4,D@bgI}#Zeו`"y>}J2Γ*\r;~a\j}q$PO=M-@QHA"Z5;<`LgЗJ*ļœyS!ZvRk.g?ʜaC0skس.ڱwl=^8B^Xrj إtѐ_R~s-9 w8HN#ElIv{M:ШĲf7L$O[oz1,W$wMبnmيK{Z*2l>؟8jD8Q*&b3$3SXI
D<9玄<>u0N٘deN,~&0ЧJ֍WcΔR5n̝0XgP WqRY]EcPIDĆu@=QF咚̱Cy̢c8$zHKˈv	5Blwۻ?ol(|jxO%vBBZJ
+@RyVfg^=@&|n ɕ8|O:k=\ɁܙN%K	0<Ӄ<cgVތte땆yNwZ/FBz0(C[.FF ~Ki4项
׎AdAkCĚV&o*eD2/AB
9pq)`P$U00`
3}'oGTC:YC"?^2Kd[+D:<"TI(iJa #~ U$A"בSX(d/k˔e	dvk	\	9d`*StI*Pm:TH0Ky,Y&,G\a-.=ԸnYi44L1\1ߢӆ9U8[ʹ*ZP)k3Ӏ^)Ƿ
w=ӄ<
5'6V=5ʨ0(D_!m_eq9[u&bǪzst߳kmeE{hԞzW?*vR Nhit[$@wO!S(d)~t_~˟Jiѧq:L˿+CDC)!G6'
0Ngq,IlcK,\LҮ-r0Ű)sa)P{U	7U+ ai86ˢjxdʍ#W_L)-SFDYEbuxF*=I1SCQ6p>81aE6[ej©epvm:j֊RwF\B1Ui*f@9j.R"2;ݨ^j!lutȡ
TZqCF6a۠9ePEP3x`Ҭ]Z$U*%P7d垭VuH.N)lQIEdɢ_{A}FU]pd:Ek	e"H9*[J;m!룶-pMkCsJ
N5
RD^ɌWo
C4hT$1MwZ8^Bh
#T)OwbKW@؝1JOtcA'MЁqaF0%
>L/Q=DK^pWjIA%mMKD$ZCC
`6XH)r)",Dvl1;p8z
*#RJ.m1UGctQ#iT'	d&ax
YNQiY1!
;چs
x-VcRrO}
mOI1ب	^HϓiUJQH[ڱ+(ݓnw\1
ڄGn'HO,(bZT2dw0VMOF0O>!Z0E39hS$aTa?y0;"1T}CCE#2M@j|[
t_uK3 c 0m]L1xd@*T|2q_(\|`"[qzSSq@
2ܩ*xȺcvچVck1R1r	fUPMUBtVU|5!Fֈo@v150:ˑtƲ. R*֒M9\eP#&Y[П&Rk><ƓX0cд-t-[H@U'~{̯3rY3ko̭y
4iڅѬ:ܣJ7
5O<Vz")Kqe/J-X*׆zg14.'C$栚n߀6u5-{0h̀9#_myY</➗F"ƸaaPfL0$X[+$PxgS<ݑnK'9C.3lkTaÐ|u{FZrP',H{Y[" 0TM,PǪ7	t"}
qg֜٣t;-?eNf`"eLqa4dj#9eU(xu:d:p\9(hkS+=)s5:ofA'֊Tu{0E*1=-hѝF!Z1[ ~J6%J?P=I/{gj~$>:,KIŇ8D8E¸V\>o,},36tweQdaIá<,Tc
KV[~v	oMw=F1=ohM+zⰝ+qNfQr-ۑ<z'^\WGc?X'pbmMC5C4EhGk@uuT]m4l#r2[6C۱{&GY"{5H39@!.A+AhhCmM
$P<oEVCrĠ<Ose`
 t4'}:kL>!~gED6D
t9CTXl!+&ekʼu0/`.42-Qj/B${m;t̔
$)Z]\<HE@D[ZvX,U2
*E$,
}ϢɁrLx}X^ rҟG_<S8B" |Zψv'ZMb"ȤMO Eb?;LޢRJ
5wh$j*-낆z p8#ܘ!ȠDQj#dDc
.03t.s%ttd!`bb+~>o|NﻝC_v%LSݺ͆Kl?}8g=f,@ 1w}PTb Kjֻ4Tx0\XPA	{r0{\e.͊iH(."kLfɡBj
.^Zs6eTX|GH>IpոQ`*4
 v3LUEZE}RA%3hl̪8[2,efyT*n8m
1qȥrH}Yy1?y >dbk>,cZ?|Xws$X;`
'A)Xa239j-e1.nMs2g|$e{IOpPLLݯk4|핆%l1FE	ELmbᇃI!vf+R|`bfFb5MJܹ8"tL.(K%Mf:b	ipr}|Mw|֏\|)(cm<Tfs(yglM3]lҵ@tj0QCb[AQQ$_qJ3': 
rhJB˰;kWRͼRseț4T<)Bl" |=٩CW.k9o=0|t^Ng#yÚBtishY)4;4-"`ІfiH$3h2E	`dH	s"$$Đ̹TU&`
i51,FhayDnXiJ)m[aB]%Y*wҿgm^~{wf
P
']F&v,]3Hi'ըiLil\ؠb{ӓDB:Pg&Zp0jc6Lx1pZJ8ѐÈUXS6Wu:}a@}2\+Ajxd
0 c$b4fN;c	ʦE#
}C]ulM/u,qw W&)lho]/v<>M2]'3p``t
lX#lPP-(62єe%֤iQd̜(+,\K,4	5!+4T[sr.A'b^'gasR"xi
lc"1r܇6~O2fɢ.զR&]Pd`||8Jz+%ZQY*UaK(0iI {X7t+m(l#-fX=>"w耛}
$xdAdꇵ*,ǻ b1F&({X"d6=eCjh^̈́}~sEgt8"K6$i4!(M1m9OlȚe뽮.3wwN8:0QQJȂ930ʊwސB(aI{@^!niAJ10dҚ$`αJB'WX		kxIa3H.I}L18c3Uu)rCn	)bCygͼxC2祖z)2^=#XAR  nG1הz4
AwL4j^M7FYBSK:ED:84@0X;;aw oWO>PfaKthd'цl{`وkE4(F$dz['Rf#`H<\:(g `+8a,/CT1VUX
2a
4&?>!Ճ*s^flvtue;XJgtIIY%D0P*b_Q`%7X"
PQUEBaZUtIAc4Kt".yB>OOݰRSڪދ!.<xln MV IEZjOf(X#(e)71p(Yc Ef%\?]M}s8>#M8/IF'N駽˴
J@NP&驑?
'V5**DݺdPbKf4
`P`BE-&l8L`LHox1*$t0D`=x$XA'ZvNIs\pv	Sf+"}0
St" 1CF 2'Ѭj[@KjZ%VS^st׮y&)4[_
\_rrxᰅjZ~40>#4;7ai3~Et8:}WVNH@~I
rŌ1ᘨV=
ΙB^ŭ:L]YXz!r$r1qmqPZ]rhwa rj}A%UFj1{&^%ң yB#a0P2+<b܁#LS oD8DYq.P2@r$ ߓUJ8̴jk0}H"𲋇cBa$ծm#$Q#&kPM"m#V8;Tr
h;rGLu}*F󂸙gU K+28ѧSL
I
(\chl}܅@Ы XQ
8A.%qmsLqU_b8
tK}><"=4*QDNdC6Էfl!(l1Zxd)C`!Sro\ DiG}dgՙ59o5^ˤ9toe
L94A{py0()"Y$_Y' w12P:WajA(D<&!U@j4@TUMp]-`BPP@'%9#HiqSǮx:zj҉wir=Jۙʷ~0هD0acM0XDONͼSt Y["g.qbGMH%	ԇ@ȝ7y 
fBɝ{)BŁvx7h"	+) >̌r7 _,p"+UciD_b;\ʤ!d2b&%XVJf1|<S@tp.
34Niiv)pN-dC
A ]ZXatY!boyzdӋp^$Ke;RbqrE)VUb`N@F.fK9j^;f206FnR2@8#d̪R+l{";(w8!a`0'),g\+6rL4fX,R6Lb]0bI`oW*6ÀWy%5v^)*&mQk뱕޴>+{]5=/t4/`e"^10bZNCn*LQPMX-|sJK&h^$GՖݹ퐍kVafԡ\eau"V-N܆:֡Ό0Y$ QXPh5A^^lH$":0*$Z^pù> _ThaID[ss#$"&G4s0LBͷr)yyƗ-WӖE!]ȁs<-TRM&̞[bzfh?c;?oSBߐ kvḰuLR?Ψ /_PǝgK˘vj {vc,/7<&L3z8J}><RDwϋ\[-MoK$B0
G
Q;MJ|vꇌg y甆"kj#1}fD}!E"X`ߞ93&-m*#f92*u@s7ʥn\3n[3Qbh:Yj糍&QpxGDfa$IBzAf"M!"l(K#Lݘi.6~sb'!Ki5o?vkL&m',;bfo-sl4}I l-C3J
?W;{gY@{-adٜ^J}z}:oO<̤ricAj+*	PO~Mgk<&,BP$I%2ّCKj0 iQF 7]J#ZRq
iaH
P(.ăT^pPWT^mx1.Oȫ^\.Ӳ
3~DmVCD2v7
C]jI/3e[   Qbw[|Y߀.ǶƮb/zޘӵ]%EܑN$:酀cdiouxXeEfgG  \0 \a \b \b 
\n 
\r 	\t \v  diouxX .#-+ 0123456789 nul soh stx etx eot enq ack bel bs _ht _lf _vt _ff _cr _so _si _dle dcl dc2 dc3 dc4 nak syn etb can em _sub esc fs _gs _rs _us                  KMGTPEZY %A, %d %B %Y ENV BASH_ENV HOME IFS SHELL LD_LIBRARY_PATH LD_PRELOAD LD_TRACE_LOADED_OBJECTS LD_BIND_NOW LD_AOUT_LIBRARY_PATH LD_AOUT_PRELOAD LD_NOWARN LD_KEEPDIR      	  	
   

            g	jgrn<:ORQhك[xjVp $ν|*ƇGF0FؘiD[\"kqCy!Ib%@@QZ^&Ƕ]/SD!7Ç
ZEogL*B9q"am8D꾤K`Kp~('09|eVD")*C#9Y[e}]O~o,CN~S5:*ӆyZnܼb 
	


 	 

	
$-7)8+>'=,        ɼ;ʄ+6_тl>+kAy!~"(ט/Be#D7q/;Mۉ۵8H[V9YO?m^BؾopE[N1$}Uo{t]r;ހ5%ܛ&itJi%O8GՌƝew̡$u+Yo,-ntJAܩ\SڈvfRQ>2-m1?!'Y=%
GoQcpn
g))/F
'&&\8!.*Zm,M߳
8ScTs
ew<
jvG.;5,rdL迢0BKfpK0TQlReU$* qW5ѻ2pjҸSAQl7LwH'Hᵼ4cZų9ˊAJNscwOʜ[o.h]t`/CocxrxȄ9dǌ(c#齂lPyƲ+SrxqƜa&>'!Ǹ}xnO}orgȢ}c

?G5q}#w($@{2
<L
gCB>˾L*~e)Y:o_XGJDl

	invalid argument '%s' to '%s' BusyBox v1.22.1 bionic (2014-04-06 21:24 +0200) you must be root 0123456789ABCDEF permission denied (are you root?) invalid date '%s'        standard input -/system/bin/sh can't create raw socket (unknown) standard output PATH=/sbin:/usr/sbin:/bin:/usr/bin:/system/sbin:/system/bin:/system/xbin %s requires an argument out of memory /proc/self/exe ?pc?d?b?-?l?s???rwxSTstrwxXst augo 	8 $ I I   abefnrtv\ 

	\\OOOOOO[[[[[[[1[2[3[4[5[6[7[8[1;5ü[1;5Ļ[1;3[1;3       2  K  n        , X	 
  `	 
 %  K EXIT   HUP    INT    QUIT   ILL    TRAP   ABRT   BUS    FPE    KILL   USR1   SEGV   USR2   PIPE   ALRM   TERM   STKFLT CHLD   CONT   STOP   TSTP   TTIN   TTOU   URG    XCPU   XFSZ   VTALRM PROF   WINCH  POLL   PWR    SYS    !<D$$4%G%%&&'4''(()).))**+4++,,,-4-X-. /4/01+1U1223133545(7J7X78::a<<<<>?@@@@aA|MJ\\I]]^_t_.`bdddd]hlllmwe oK^0JA	H	

4:GNq~`6:ks  * . j o   *0/0%&  #





8
:
?
?
gisтхыѪѭBD`!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=  b      k      m              PLL PPSFREQ PPSTIME FFL INS DEL UNSYNC FREQHOLD PPSSIGNAL PPSJITTER PPSWANDER PPSERROR CLOCKERR        @         clock synchronized insert leap second delete leap second leap second in progress leap second has occurred clock not synchronized h11AY&SY6zb 
߀ X?``< Ά Pk H"Ȧ7 mmRA6+=kّ)LS@ mM@
2&     HHh    OT"~ d@h'S 4he3S&54D@@MBh @ŜvIDhd$3m!r/svb$Q;t%qLM/F4mr.讆;8PfdRFx	
ݝ42hؽ=z^bdL-'{o:ne51a&<{=0dl1$q͑<\3̠f/z֭o?Z;.LJ*[)o9I#0~-[љ٣qAXN=ax>Sz#X=cN0IQB>vlRfv\Rіc6$`\ߞxn}'QŨǉͽ6Yq]tiR^=j҆w
lLj1&Ubɪ M^}miTQRZy q{Y>l̔Y9Tq YIvة̽TD($$BP
9q>!C#x	JMʉM.e5KT&uxB5ҽplۥ"ҵ5}%k|-4}WCŠ2^`kS/CxCrLtR\yz+lH'|{!pNBFq@{1eI`_<*^I#pیHRN/^:[uC	uE@tL]:oSQ mg)Z鄱'\VrdG-E4F^P9LaB,"0@1	Lbi'#Dʲ')N$KuPvFAj']9$\{$yY'D}k9VLS0!gW]V,-![z#aYd:N0a{r|\c)DޟÞUʹfLLt*xMz }K2gmo} <9оb9_Z
ˣM6gȨL(NqT'9,yM+@D(v51:@1=2YEUK
~k֚CHGgڊIr5gtM*5%P_l@`aIFKǋ3F}IKr)&.@a|p.H*:ZRC,}PP,RO 6ڤ6#ᑘS$iȒ2X)$ZJM,ƨ
,V(BTFQ#E)4BBL)
a"Jl"1J)܋$a6Ix&SS&('w2XPS4\	$b,u ѱH)Dvwܠ3Ƒʚh𗮥O&rчYm@dD/oeX|Nq-̴:TMP otP1(9Z5{M;Opjֲ̯JWj22|LG^lLiaAESLb+7cT7)JRhkp5}S{Aw[ХRtO[*?Hi<\[mz3^"@8rN٧ŷpzqDDֺ'hzDFRMmV.>_|ox/Z}F ,Wv`GCo]VFwmA+HE*büߍ<`A/	ZNrE
GEX5Q2W	(zW^gHW|rWykr8[@"G_^:}Ijiش'8jp;iguIl*wST}3L.c46VHyzz5-x`Pޫze*Lec
\ h/qP'[Ȗlз+4Zh^m#
(h&KBR5JI̅:2SlQSف!aK+Q`KCmkqG|w6.Gی%!@B݂= Kw-0i#a9L՘k $QG=y1׍74FvV[!=^yLa1WrRĪW
{/ چg_<[3R=̪րpV4l$KH_eխZŪ5UX^겼[z+WjܭW m"UA H̔5 $ΚJM.MDK0eh2F5VoA.XXI[Q,<z1ΐ-&@CϷxX/Lrxvi&l >ZG6$ KK57b)hXGs<Sq# x灢xPÝf[(FPJAq#Dry0P='RXkPm1KlXAǇ5U75!D=gOT<1u\Aņ-PKS`=~ꎗgy6pǉH!vI>KHKe,$<7sb]^E˨`ix[gG	%3=x2]1T470/S'\i^Ps۩[pgYD/JI>|^׆UtQz.St7}D"cR#sYF+1Hm&L[$F8}5oR K^Ka*7,+n@!vk
{H81\GcC59ԍ-Q6#"eBcje-i2<A@G
_
F=4pXP(#I*]Gbɽ	{XȃVHgdh	@lT`<ѱ+Tr)`-0/ T`h_:0V!V
|+]*H%22
; (.Hsz^-St5ueUs gTfyOazRH#36(:{ڇk#7}yo0]I-T-#P0R0{EBڃ1n2!)FhFj	CfX4bM-ixs'!{QxXJs/<ffmA&vDH@s Lauq/]̊2/Z=0ZŬwi0bky^ ǱvnblO;Zgafؕ@g)xUy8!wm
l{,Ӆ9Cl9m͝\/,C$$*V'ˌc -3JH4J#O"M:tN{Vg$\XxRD;:i44â%I2K;Ft6N![HK׸Y{rC5ApvAZHFGAٗlJ!Ɣ,)V6Q۬4uò7emPEAk("C`[\Y#-=LAA*
!' ={zrղCTڬ îvs]w9J<0i[(;"1
=U
 7]G gՐR@瑝664c)ZwpS 6I0.Be;7vѼs:G#q6zdߌ>T"teL%!
ˉWPQѣhDH;a~V*j,QVT^:ꎞᣯ-HǸײIPGC0cOE	)KEj"Ǌಓ8ϸBWDʴW|dvg%j"]kRfDғjA!N0D]N֜(v-ZI!4njBfjW0
5"춬eflBc1j[	^oR<Qfir}z'PI-yqc~2ɧfCY= Km"ظAmE4cfK~hLlf	z.,m6L,hkB<fL"{RpK g|_4l3d/{@a1DB>wQsRZOk4`U!pFZ≘D2G(7\Ykh0qq!ϬHRHV'J]Azz<-Mt$)j-EC.8t BU,o-ذbQ`B:˼306D+!Ƶb2eXmwh*BcB"!}D̳,uskdKH9ecTT%ۆ"I
`e61wSӥA_ts0_τ[mиAs9U苡9! aj!kL7采`qWE$y{Nr!(620]40YǂuSAı]b,I-DhO=ehL\"xMgD %;F1B'*(ڼ/9Ǌ׍4&U߸Ґ0m$]UyT$IZ@zd4C
[lNQd=$Brlժm K%	Ȝ(6+D!&65ԲT#iEu`H/K9|ǥ"oG5n/(/A<`1ۈBTkY9z=[͢w#jN	3Us¹dhE,dMa彉F=j"X/l 2You}ݲy!`]8AML<9U
.PFWj"{JQx.{]0dml̃2鋤XѴ8o*Q䋐L$x@z񪒙0@##st#`F#zQ q ;WӽaMQFHKĎN	 dk"[N6R1#˳V)$֤8bDa2bADh-vBCsD*YNhEr=ÁA#Ѓ߫M%\ѿ2kIJ͸@Awzm槊o B\c Bxg[g Xא@+p@ BԾG;~orE8P6zbsunmontuewedthufrisat janfebmaraprmayjunjulaugsepoctnovdec 
    bhwl 

 @ABCDEFGHI@KLMNOPQRSTUVWXYZ[\]^_ cat man BAR_WIDTH BAR_HEIGHT BAR_LEFT BAR_TOP BAR_R BAR_G BAR_B  unknown 8250 16450 16550 16550A Cirrus 16650 16650V2 16750 16950 16954 16654 16850 RSA NS16550A XSCALE RM9000 OCTEON AR7 U6_16550A  none spd_normal spd_hi spd_vhi spd_shi spd_warp spd_cust sak fourport hup_notify skip_test auto_irq split_termios session_lockout pgrp_lockout callout_nohup low_latency port irq divisor uart baud_base close_delay closing_wait autoconfig  infinite       0    @        current new real	%E
user	%u
sys	%T 	Command being timed: "%C"
	User time (seconds): %U
	System time (seconds): %S
	Percent of CPU this job got: %P
	Elapsed (wall clock) time (h:mm:ss or m:ss): %E
	Average shared text size (kbytes): %X
	Average unshared data size (kbytes): %D
	Average stack size (kbytes): %p
	Average total size (kbytes): %K
	Maximum resident set size (kbytes): %M
	Average resident set size (kbytes): %t
	Major (requiring I/O) page faults: %F
	Minor (reclaiming a frame) page faults: %R
	Voluntary context switches: %w
	Involuntary context switches: %c
	Swaps: %W
	File system inputs: %I
	File system outputs: %O
	Socket messages sent: %s
	Socket messages received: %r
	Signals delivered: %k
	Page size (bytes): %Z
	Exit status: %x real %e
user %U
sys %S none realtime best-effort idle pub priv temp trail dontpub auto dev netmask  PERM PUP TRAIL             0 off n no 1 on y yes  addbr delbr addif delif stp setageing setfd sethello setmaxage setpathcost setportprio setbridgeprio show  	
ether  stream dgram rdm seqpacket raw         @          Ki Mi Gi Ti UP BROADCAST DEBUG LOOPBACK POINTOPOINT NOTRAILERS RUNNING NOARP PROMISC ALLMULTI SLAVE MASTER MULTICAST  address route r link rule     add del delete                                          	metric 
netmask gw 
gateway mss 	window irtt dev 	device 	 reject !mod "dyn #reinstate GHRDMDAC #net #host  file not found access violation disk full bad operation unknown transfer id file already exists no such user bad option content-length transfer-encoding location  continue  cspider  squiet  qoutput-document Odirectory-prefix Pproxy Yuser-agent Utimeout Tpassive-ftp  header post-data no-check-certificate  no-cache   inet inet6 link  
oneline family 4 6 0                         add delete list show lst flush  peer remote broadcast brd anycast scope dev label local  LOOPBACK BROADCAST POINTOPOINT MULTICAST NOARP UP LOWER_UP  to scope up label dev  UNKNOWN NOTPRESENT DOWN LOWERLAYERDOWN TESTING DORMANT UP  on off  up down name mtu qlen multicast arp address dev  link name type dev  802.1q 802.1ad  on off  add delete set show lst list  id protocol reorder_hdr gvrp mvrp loose_binding  add append change chg delete get list show prepend replace test flush  from iif oif dev notify connected to  /proc/sys/net/ipv4/route/flush protocol dev oif iif via table cache from to all root match exact main  src via mtu lock protocol table dev oif to metric  add delete list show  from to preference order priority tos fwmark realms table lookup dev iif nat map-to type help          !    
generic loopback ether infiniband ieee802 tr ieee802.11 ieee1394 irda slip cslip slip6 cslip6 ppp ipip tunnel6 sit gre void  local nat broadcast brd anycast multicast prohibit unreachable blackhole xresolve unicast throw  NBDMAGIC  BS continue cverbose  vusername upassword pport P cwd exe root fd lib mmap maps  %cetpriority pgu  	MemTotal:  MemFree:   Buffers:   Cached:    
SwapTotal: 	SwapFree:  Dirty:     
Writeback: 
AnonPages: Mapped:    Slab:      cp%*s %llu %llu %llu %llu %llu %llu %llu %llu CPU SUM SCPU ALL   ~ vi  pipefail  newline  redirection  word  ;  &  &&  ||  |  (  !  case  for  if  in  until  while  {    	
=: @= 
 T wp

",f`nrbtfavx\01234567 rwx	
 !"$&'()*-/:;<=>?[\]`|}~ 
()&|;    }  -  +  ?  =  %  %% #  ## :  /  //          }-+?=  *?[   
 
 	
   @        ugo<<= >>= << >> ,|| && != *<= k>= K== 
|= B&= "*= /= #%= C+= -= -- 3^= b++ ** /! 0< > += | & 	* / .% N+ 
- -^ ~ , ? : $) 4(   IFS= 	
 -HSaf::t::d::s::c::m::l::p::n::v::w::e::r::   ]  setro     	]  setrw     	 ^  getro     h  getss     pgetbsz    q@setbsz    
 rgetsz     `  getsize   rgetsize64 a  flushbufs  _  rereadpt   Ħ  Empty Partition %u is already defined, delete it before re-adding
 Building a new %s. Changes will remain in memory only,
until you decide to write them. After that the previous content
won't be recoverable.

 shared  sexclusive  xunlock  unonblock  n KiB    kiB    K      k      MiB    miB    M      m      GiB    @giB    @G      @g      @KB    MB  @B GB   ʚ;        offset olength lminimum mverbose  v options olongoptions lquiet  qquiet-output  Qshell stest  Tunquoted  ualternative  aname n bcdoxCe:f:n:s:vR "%07.7_Ax
"                  	         1   Q   }      W  q      a	  5    	=  A  L    -1      S e yH W  k GgAאÅQJ:I۳FEsHuw|"tV ^2This is not a bootable disk
 SWAPSPACE2rsize wsize timeo retrans acregmin acregmax acdirmin acdirmax actimeo retry port mountport mounthost mountprog mountvers nfsprog nfsvers vers proto namlen addr  bg fg soft hard intr posix cto ac tcp udp lock rdirplus acl  
?BEFG/etc/filesystems  /proc/filesystems loop defaults noauto sw swap _netdev nosuid suid dev nodev exec noexec sync dirsync async atime noatime diratime nodiratime mand nomand relatime norelatime strictatime loud rbind union bind move make-shared make-slave make-private make-unbindable make-rshared make-rslave make-rprivate make-runbindable ro rw remount                  @   @                         @           P                         @  @  @  @        
$'ztBAuthentication OK Invalid client credential Server rejected credential Invalid client verifier Server rejected verifier Client credential too weak Invalid server verifier Failed (unspecified error)                  ,      G      _      x                          
      )      B      V      m      |               	      
         
     -  
   F     X     n            RPC: Success RPC: Can't encode arguments RPC: Can't decode result RPC: Unable to send RPC: Unable to receive RPC: Timed out RPC: Incompatible versions of RPC RPC: Authentication error RPC: Program unavailable RPC: Program/version mismatch RPC: Procedure unavailable RPC: Server can't decode arguments RPC: Remote system error RPC: Unknown host RPC: Unknown protocol RPC: Port mapper failure RPC: Program not registered RPC: Failed (unspecified error)         <           ܲ                                                          в        ʲ                                                                              !                                                                                                                                                      o                                                                                                 D                                                                                                                                                                                                                                                                                                    ?2                                     &        (                                             ֲ                                                                        Ҳ            
                                                                                                                          
?    ?                         ߄                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               " X" a" j" p" " " " % %     - - - - - - . 4. H. `. t. . .   2   2 }  2 Q  2 S  2 JFS12 BSFX2 I2 `  2  @  2 @  2   2   3 h$  3 x$  3 DM  /3 @  53 LV  93 ii  @3   D3 {Q  I3 /M3 /S3 /Y3 /_3 T c3 m/g3 NTFSk3 p3 sIeRv3 E=(3 ur  3 X3 hsqs3 reeb3     ~1 g     +    add  -    sub  *    mul  /    div  **   exp  pow  %   M mod M and  or   not  eor  xor  p    f    o   y ^ 4_ <_ C_ B O_ U_ `_ h_ t_ }_ _ f   f   f   f   f 3  g S g   g S  g C  }K C  $g 	  (g 	   1g   9g   Cg   Lg   Tg  A Wg        A \g  fg " mg C wg  g  g  g $ wg  g  g 6 g  echo   } 5} time    } | daytime U| } sm zm                    8 \      m m                       m m                   sm zm                               l l l b Ym           A U                 m m                        hm nm 
          	 Q                 5 (m 0m 8m <m Em Om      X      b Uo 1q :q Cq Mq Wq aq gq rq {q q 5u | | | Xu | | | | | | u | | u | } } } l q z                    P   !           Ú 9 ʚ Y Κ Y ՚  ޚ 9         E   U        Y " 9 ( 5 . 9 3  : S B  G  M U W  _  d  k ! s  y !      q  M  e  I    m 2 ; C N [ d l s {     QP UP  _P hP uP {P ~P P P P P ě Ǜ ˛ P P Λ қ ؛ ޛ   P P P  P P P  	f    t $ 
d 7 
s J 	c Z 
m r 
l   p   n  	
v  
 w ʝ 
 e Н  r  +S Q X d n u     ƭ ٭     . B Z r      ˮ ׮ ޮ    & 1 9 O X a m u       ʯ ޯ      L j   ű    ׻   # : L ^ k    ˼  
  Y 9 G  [ q    E   o       O /  y 	 + c  
 O  y A  C G K             Y~ Y~ m j =     E$ e$ o E^  E^  y{   Q
 
 > i   
 ) q  
 ~    a  !  d  y   E% Ms Y ]  "  R "  + 5, 0 @ R K 4 4 5 I y, ; J -J i 9 9 @ QM R )2 ]    [ u. O )2 w  g 4 P e  A A A A! 6 Q ]A @ a e T ^  ^      Q+ E \ 5G \ QU G QU \ 5H a  aS M] b 1v 7 { H A: A: !4 љ  J IK ];  L I 1E EG  ] 1E ee [ N P =H y R  	z S S [ J A  1z S T f  Y @  =U y uA YF = E E E E V \ _ d F l ݓ { { Eq N Qq ]r ű  G w Y  Y~ a  I UO ^ - y  	 =P A | 
 ]    Y ^    %_  =  yb Q 5 q : mc     )X %_  %_  	 ]  b m       ]                a"    >R        E'                          ,    ,        
    U   Ո         m        \    0	     0B           *     p        o            H             
        t!     b     j     w            !                                o                                                      i`                                                 ,                       I         ܘ { %   9 ̘             `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K  `K        % P  N  ' ) Q  ?  GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"busybox '< .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .rodata .ARM.extab .data.rel.ro.local .preinit_array .init_array .fini_array .data.rel.ro .dynamic .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                  4  4                             H  H                                              #         t!  t!  L	               )   	      *  *  p               2   	      0B  0B  0	              6         `K  `K  
                 ;         @Y  @Y  x                A                             U     p     0               `         X X dA                h         \ \ x
                 s         { k 	                           u                             u                             u                             u 0                          ̉ y                          ̊ z 4                              0                           0 0 	                       0       0                                @                        p        \ 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ` ELF          (      4   <S    4    (                1 1           :               Ptd1   |   |         Qtd                             pt t t `  `        Rtd :                       H-MP00L   D   <      K   0 0! N lptx H-M   00 j  0 K <` -O =MK
 1}DL1NX|D~D8h` F@Ozq
F FI0FyD &F  h ¥I2FyDFU 0 #  No ~D_IyDF F0Fv (YA!0FOrN (C (?ђI2F FDyDD FDHDxDOQRF (FA!(FOr% 	
)FORxHF(FV? +mH#zH!FxD  3  h NtIuJyDzDF F^rI F2FyDWDDDCmJOQ3F(FzD JFs(F *Fй z h dI*FyDF F! QFFPFYF(6h &D8F  (8F  F6TI2F+FyD
QI*FyDXo . )FO 2 9 h GIyDF F0FDDH!FxD uCI(FyDUG@ODDDF+9F!(FIFh9I(FyD87I(FyD& FAF*F2I(FyD0IyD ( &  F(F -
 22hhB M#
 =gE#2N |
 
 !
 
 "
  
 

 
 zG  ! X  F j   j Q 8 G * / L 7 3 '     HxD  l 8FCh  h)FAhC
 z h(```  8 (hchBY`a`88FAx F8 !`A``   F8OABн@  8 F F(FF F
(F88FXP[v F(F8@Ծ &#`O08  !K-C{D JFhX` a !iFU` {	'b" ?8O 4O 4	MO}DDc(b@F H"FIF@F P !(F,(F` I ] [ J8zDhFM`  !}Dh`Hah+X`hHxDKJ{D` iX` 

K{Dh` G "$  "8@x] PI 	 [ [ pM}Dh3F $ 4V/ * V9<Z ИG ,H)Xp@ pH 
h #p
&F2%x0=	-S `Fp-OF0FFdиiиoSBSx	иXиo'
    W ,u 9dBeE-"+17FFOz( F)FJFSF
 F)FSFFJF
_EF
Fм	0 
XOaOA
 ²+TѷB_E0#; !9p]p\rT1U?Bӽ𵉰OFFD8FI:F0  h( F"" FAF h+ F(F 0F9A(F3B	  4 -AFFF!Fhh6еB.F9F2FKh` h&`O  -ܽKFJ{DFX"+h	,&F&8F2F ,)hB F |K-O
FI{DFNF[X "~D
.
h
F]#%+ 6B'0ݩ8F
'  ( 8
O 	FJO
& FF\PK
"% )
8Fi0+-+ +++Ѝ'00;	+
(FA(-
r
'FO8'.)(F
y
B
.\'`O3'l)h)'t)z)"
\h(^!

!
\l(^!
 !
Z
'
J
'!'s&$h ,zwc"h !&-, jpx#0 "h&, !-0  #EdлiлoлuлxлX6ѻoZBR   N.wvvvv&"x"& #
#h&F4$ ` F@F"F
"F
vFF ! %%!  ,- (JOqzD
#&F$L|D FF AH@JxDzD
EK8F  !0!8F!FZF]EJ8F  !0!u4F3hB^ jF |%     -AFLFIm|D &eX
AFF(h`f"F@F9F$+hB$
m hC |S+@pG0 #
!
M$}D0	I(FAF  h(" F0 th+ F60  	 FF F@FO3" "#E  )F F0N~D0hбHxD1hhh: F9F@[J	HzDxDh`@ݺ X X X X K
FI{Dpm]XF
A  1F+h 4I"F yD F$+hBf
mpA | QFFvH!FxD  Q@pGF	F% O4#`$ CF
"
 1F"h F ` FFO~"  OQ`X```aXapG	Ѳ _
A`` F F
HxD	K "b`{Dh ` D`IHyDxD`@! .W W W W p?XhpGHIxDyDV pF M}D(hbF@! F(h!Fh0F!F"  FpV I #yD3TLBRh *F F: FFF  h0F)FF8F	JzD	J3FzDB,O5 %("$ `(FM H p0pGFF
8M}DF $2$F (8FOrB ! O %$`
HてaJ)XHabXJb)XbX#bC F !" F ? pFM)I}D mX*h F Fc+hF F0Fp? F   # (O0  \3+A  pGFF;K0	),+-+++pGȱx0	,F $O
0=TB
5x0F60	/ٔB`   "F#  #OabSC#`x:)0 ";# ("h<#""`x:)
0 " ("h!`8Fx-+0%++0 %!F!hJB"`8FxFJ*  "AX@m)M* "AX#  x.)0"#z (x.*0! "#0:	*# "A;se (x/+0@vOQ!a  -OFF
FFFd!
F	&(FOq
 )  &#h++[o<H0"h #xD:7H`h5IC .^;(\<rW`h.I RQ# 3 SE	 !
/ؿ=(Fd!
d!F(F
#
F
!
B -5 / =F! G 
fghh )1yOH1"#D
W& BJ3FB "#i	 Q   h +o LBԿ "" BB ""Y`FpG pGFhFF ,F FFFCCD8F4`@Ϳ  HxD HxD -GNKOHOI{DOLxDOJyD|D<OOzDhD`DZ` #` ` 3	U5hMh.R2G%B@KO@O{D@JD zDh?KDh "{DP~P0}hh.W7I%p -H$2RE0HO_
xDD`D-L|D!` $,IyDhHF.U)z4B $$OODFDuSi.P0=(F((FIF4B۽XIB ; Q Q 4 x; ( h; Q  Q ; ΃ 8Q  	 &Q z L 	 FJi@ii
ihh
јhhXhJhh	h@pG  -OFFFF #`&ŗ   <"(FP<" (O0	)F" (
 -!(FtF!CnC"
 U
 (@lq@O1 (
$-Կ
FM(Fd!F	 (FOq )PFW 0	OD	 +xD	"
-ԿFE(Fd!F	#(FOq ) #X# !	; (}ODd!(Fj(F%FOqb
	 Ѻ   )   ,W, B
2* !
!	
 (LnI
	 (D;-E+o: (5;' F ' 8oo Jr~QnEEԿ !#FG0 +̿ O0BWE?7	BEѸ O?8GE? (ȿFؿF +WBTD;L|DB:L|D:L|Dh":WCQ1g<WB
:?3h";^  "XBXW< !#FGX^0B;  ډBB)F )~#FG  !  
 
 W   8O F F #FF1#h3 8F1F"F#(  -OF
FF #`j+  bQF F+F )@"j *EEM}DEDM}DCM}D "hFF"2Bnh'
ls &
R~Q"  L& 6A"p; +O 
gPW(0 "j SQhB?BW) #j [[ B- \!h8 # #b+F  QF ` F g  #h!j"` 8   b		O 	E۹EO0
 m   ~ M 8ocOq- F(8CC8  -O-FFFhG 6U5TVYE>E6s,u  
)	O	' gBw		ER<FR_BQ 1:WkBB O 	EKFKO 	nPFoI@roO@mDFF+Oq0FF  .!O1		 (d	XlFHdf 6 .Fd!
F
 
FOq )   W 0BDLZFBIUKcEu "dE> ,u $E
66J #4HO:Bs"O1a  8Fd!
F	!8FOq )F FZ!0D .wPFd!r	'PFOqj )  '!R'0$0JIzDyD %PFd!Nɱ                 Q Q   | x PFOq. )  S  B@F<I@ (`x!Fp
oq!  FOab )1 #)F&)F #Oab  FFFFF<" #<" #!F (F	   8Fd!F	!8FOq ) !K0"   {D1P  Q"0B@F6 !` $  FhF5L|D#iiB`iHbhST# B#ݢiB)H*H(BbhPT  B2F#FB>qiiBqqAa4  2bhiBBWjAT# BO' 
FBR}!KCS"F3(FX3Fhyh.SJ3zD1bB!@bY`y 0 -OMK}DFz`FXh8`e !0FaBF@ǀ h(o " FAF Ch*(~HxD~I~JkXzD~I  yD|I@F"yDwOtHwIxJ(XyDzD 03F F O09m	 " F ?F@h)~4" F RA h(J4(HF
(rFcF`FQ`2[E  IF( pFHym	9 8;:OCC`?@= C"><zh?CaA @#`FFhE F O0 " FAF $?FFh)/ FhF9hmhBDAD !"@F 8/ h%I&JU0yDzD  Uxm :m4!^O ` hDIJU0yD zD CF hcdF/ |         d       -OFFZN@ !/B8Fx<+E)FF+ * >*FF8Fx + F ( H!F "xD F   `   F<
7;FF ( ʀ>(F8FxB,*;*X acx" вHxDx,+;+@0VF ( x0,+@
J ( 𐀐  @ `\D
 WF    
# QB0QK zB \{D 	@wG9F@FJ9F
F@FCE
J#  	<J		J "!	,J	bha`8Fd!F	#8FOq ) #

cI		P# E@7F`h@NpE݊O0 +`h'Q	J
Rh2AhyB"F #O$3B ![	LWi'i
_Da	I	Wh  yB32B\	DOF     ! BBQ "XB
`  K``%`'MX}D*heF:`YB 
pX`h ?j.P02FO sN.Q 'r].V*F	4 FgU8F (F Q 0    HD 2 B LB -O%Mt4FD
%A &XT1fa&aF*h
`d~D1F	xD1F	xDF0
T3F$xYyDzD0 -O0#
CQ	1(F \F(F x ( /  -ݵ .۶oܻ ۻ2ܩEй B +!"jC,.  	PE
CR 2O 
,



aE
  #\QB
v3B 
 #OPFQ1bP (P`?}

YE`?u3B #.P3r[E
.PO 
FO
 6SXF3

P |O|`E(q #OP0  )`?$3B #OP0 	a)a?3B#FO 8
Eژi	iB3E
EQ1| x< +?Ё #\T3B5
CP0  
CS3F 
CR2 
CQ1F `  ``F
DP`F
CP0 ( 2F` * /@
EQ1|<
+@?]
*@-  "
U0w ({-xh
2)s

(VW5i1a~h{`
(h 0.U.Q6+z`rB # 3B,bh
( UiT%`B
( 3i W2b`D&PVh 0v@LBbhbEO
VA6W7(hL8`U51h`)``h "hQ~ +52B#P"~LQh8FLQh3 #3B!NRh (  #BT  b
%BT2h+hB (W
$M) |        l  8FM!F"}D(Fo0(F!F"8@8  K{Dh *
LO0"`|D  !FT F@h x< 2m 2H8xD	F (Q/L0H|DxD!Fe (HM,H!FxD h (J F (IyD(   `0%H!FOrxD #x"HxD Q```aIC`` .P0yD M F"}D)F p"x:*HxD F)F " (ѽ8@K{Dh (ܸ8@~8   :   ; < : l   l vl ; @׻8FFt !"F(FF&F F8  IyD鿆9 @#  FTI " FyDjF F p   p
p/  `5 p   p
p/  `5 p   p
p/  `5 p   p
p/  `5 p   p
p/  `y5 p   p
p/  `q5 p   p
p/  `i5 
 -p p    
p/  `_5 [p   p
p/  `W5 p   p
p/  `O5 p   p
p/  `G5 p   p
p/  `?5 $p   p
p/  `75 
p   p
p/  `/5 p   p
p/  `'5 p   p
p/  `5 p   p
p/  `5 'p   p
p/  `5 gp   p
p/  `5 @-  
 /B π  -@@*SӀ n*& !Т_|D !  _C|ڡ
=!
  @@:ӑ!
!
B@: 
 
B@ :!
 : 
 !
 
_B|!
 
ڡ

_|D; ;!  @pG - _|D; ;!K[ K [@:ۑ QQQQ@:@2 :۱QQ : 2_|$xxD_|$Q;@;D1K Kxp HIxD8   R  -  >8     R   -  R  :P!   R
 *      

 ΰ   :
    
ϰD$$ /@- 0`0 S0!!ϰ$$D R@/@P`p 0`0  
 S0 B>@(@(@H1$  R0  J  RP*  .
P(@H!$@! %@/     ]@` ` p @ RRχ  \N   SSχ  \F    
  ϰ  
  *r4S
    S  
r8S    S  
r<S    S   /]@` ` p6     
 @ RRχ  \   
P  RRχ  \  @ SSχ  \  32/
  34/  25/  35/  24/<`@Н  P  
o `12   Q  / $(@P \  
-  %\0D0  3P  ,\  @%T8  41   P$̠3  $̠P0  Ƞ0D,Ƞ0%\  3P  ,\  @8  P$Ƞ  X$Ƞ%X  %\0D0  3P  ,\  @%\
     
P$ĠT    `@Н/   P P!,Ġ%T
  B`@Н/1+ +; ;K Kı[ [+ +r; ;KK K$[ [1 @E@nɑ@<,<@<,<@_LNp1$1_L`1 +OCp1_LNp1"@+1_L 1 ;ODp1_| + +K K ,1[ [ -1?Q+<,<1 0TxQ+<,<xsLx|xQ;@_l p1 ; K1 ; K [1Q+<,<lxMxQ;@ _l?֯ ;OCp1Q+<,<HxtQ;@<,<Mp1 Kp1 ɢ<,<%ɑ@<,<- 
x±KxñxԱQ+Q;@_n ]<,<p1 +p1 + ;p1 
xKxQ+Q;@ 1_l 3<,< 
x±Q+Q;@<,<<,<ˮp1 +p1 +OBp1`1  F@B ɑ@<,<@
<,<@뿡  _LB  pG pG 8pG pG  _LB  pG pG 8pG pG_| +++z?Q+<,<˯   pG  FF9Ȑ@<,<ѣ<,<_LBУ?ӣ; ;6ѣ3_LBУ+ӣ' ;"ѣ_|++z+bP+<,<ѩ @ sEʀ*SӀ?Ъ*& !Т_|D !  _C|ڡ
=!
  @@:ӑ!
!
B@: 
 
B@ :!
 : 
 !
 
_B|!
 
ڡ

_|D; ;!  @pG - _|D; ;!K[ K [@:ۑ QQQQ@:@2 :۱QQ : 2_|$xxD_|$Q;@;D1K KxpHxD9  BHIxD@y8 #  O2 iF  
J+ZC*B
  MbP?@B   !FhF ( O0 `K{D` L pF  p%i -Й&h%`ai !`j)Fi2FG (ܢB@ O0p6- .
KJ{DpFXhF	 FF(h F0Fph Kp{DF(HxDp@JXhF	} 5&O5	"` FF3h Fo(Fp4 KJ{DX HxDLNK|DXhF˹JFMOGzD}DXQ3cT2H``0 JT0zD0``	HxD@(   (  -O:K;J{DXh8H9NxD
~Dhqh  *7T496h .1HxDz@01F (? %
"Rw`B`gz`DFOI
T YFT"AE$lGGT5>F7UEH!xDF"k #Op#`OA`c`a#acacdd`S``4F

HxDK{Dh``h FH   | x   * R@pGh-OFF  ဉ 

#iC F 	#`	᠉ p 
>h}h7>h}h7 -j1Fi*FG (@ 6-  ( >h}h7 -ТAO"ѠhB i#h

OI	E1 ( cih	 aPD` ` s hMEF1FJFoh h` 	F"`'!iBMEJF1F\ h 	 F"`_biFBj1FiG 	
w1F*FCh"hC`Q!`ND0 +J>hO }h7FF -л 0F
!*F.  

O hESF+F!iBbiّDKE1FJF"h F	!`*Bj1FiG 	
 F1Fh!hF` `	
 F`F ND 0 +桉A@O0 )o A!
 9OB	 $O|O~*( `p@pGF  ("m#e#QpFpFF)  !"1F "\*Fp@rF C#RCQ e HhF^ +hFO  O1O O"1F9F"h(`:)h"hF(h!hr/`"h !(h&`    -OF% %5F
$!{DFO
	Xh	
$%* @Fx *`F; Z) VP!D G                m                                              g                !                                              c  k        '  k      =    K      Q      W            ]  F #	bFx0 	(;*+2F #	bFx0 	($)ыB BFTBB%F"U4;0	) "AF0;	2;0 	(F$+G h)G gG@  l*GG G wGgLG 
МB[B%F U4x
՜BKB%F ՜B>B%F 
՜B/B%F x
՜B"!B%FUdkBB%F 
ДBB%F BB%F
  
МBB%F 
՜BB%F	 z
՜BB%F t
՜BB%F gy
՜BB%F ZBB%F OBB%F CBB%F 7G  &z
՜BB%F #
՜BsB%F 
՜BfB%F 	z
՜BYB%F BNB%F  +-kO0 "#`"   	  # A#`\)



 6&6 63BPXE	h  '_hB	
|t 8Fh %K`F8V`e`8  K-O-FJm{DF&FXh|0[PF8dO4	"`  
-@Ѻ
< ,  "!!"DOaH=?BC"FIOE $=A (= (O4 !@  +QA@@I- "'K퐋{D %-F0%x -O8Oe-A ). 	PFQ (A 
	
	S
	@  4_ O<F
$+	 	  Z( ,a **g ******]  *  *          **********D************2**[ **********7FF!*$**.*14**h*4O 
_  *  5H+x
F10	*$+X%
R+`0h5P'`3h76 +ZYBHT+ _ P;*+	?)FO +x
F10	*$+8%
R+`356h          |  P'`36h7F|F	  %	0	)$( E|H %	0 0	*	$)/F *%8/FHH@HXxl+PHH H xHhT'`5h76|R %_PH_  P'`67& E   
o 	@
R'`7 @
R'`1h7F6 ,u ,-"dBeE_ $?(		g-G-Ѽ OOS'`I  S+# C7Bz@-%$_PD %
S+@ G{aL\E +@s *@p	Hxf*e*E* ,","ձH-!H !
 Q	g*FG*
#	f*ћ  0(ѵ@@#`"` 0!"hB	$hg+ G+
dE`	g,E%e%	f)G
F=Tp ,dB-  + 	,Xp'
{" F
!	x F01
!		(F`F04 M
~KKpE0!pd>p( 
!4 ,	ݼ 
 $B
4 ,Կ$g%
 * -!	_ %(H_  

U'`67& E     o @P'`74P'`4h7 %6
R'`3hx!H7 %HxDF6 	     6  T'` 75 D XFbF !cH dEdFF dF !.F_
F
H_  	Q'`7" E   o @T'`47 %6 DT'`5h7,FM}D_  S'`67&   E   o @	Q'`74	Q'`2h7F %6T H  "_    (TѼ j((J
:
3Q0 DErFF0FTٲ3 ]FG0)E0!F@ F)F
" #	8
 F #02-
"
)F	,F
F	  !BB
04;L
3
S+"@$	(Dpx)	FZF
FT9

v{  eF
	 ,  %|B_P$

{Ա %$
D
ȱ %$
D	
(_0B F(F
0


@
 *:   1 A 0)		PF (@S
	:QK{D*PH xD  X (
D		 PF (@4
	_I 
_ !  Z! 0 0"	!   		P(PF[ (@
	)@
 *:   1 A 0)		PF8 (@
	:K{D*H xD  X (
D		 PF (@
	* *5T              ̿  R      n  b       1 A P)0		PF (@
	:`U#}D* TU }D PB* 		PF (@h
		 @ 	 	e,@q@e$ @LB4, {D 0	PF (@7-B ҁ$ yD`B\`3L ,PFn (@- ; ܳ B0 13* PFT (@-XD%|DL$zD  +m$ @TH,4, {D 0	PF$ (@΁-  yD`TX`3H (PF
 (@- 	 1 Q0 03) PF (@-	L%|DJ zDB3*	 PF (@~-  BY  ` (	PF (@a- 1 B0 13* PF (@F-L%|DܾJ zD3  Q)PF} (@'- ƀL  |DX``T `0(	 PF\ (@- IX`yD `3QB* PFC (@-` `X`y+WЛ @.! !  H@( 0 	PF (@-@2  & ; Q0 03) PF (@-nL%|D kJzD 3	 	! B B*PF (p-=`\` 3 H(PF (\-4
 , P0 13( PF (?-CL%|DAJ zD  \,PFx
 B	#PFi
 % ,> F $PFW8 "
Fx(%B  @ +O4|#hB3
!}
m     #        Q        b  V    ]  
    F  :   FKFJF{DXhF	2F F9FF(h F0F  -OF6LF6KF|DXh-L3IgX:h
1NY4h ,DchhXB? F)F"O4.1h9" "b`! 3h#`4``HxDh	 "`ch Ya` B)F F"n (F;hO4O O3"XF"#)FFCFѵ F     -OF:L:K:I|DyDX
h  *e7OY;h}5HOРxDhJ`T
0hF3fhC3+FU
0 SEѕ 
 " FAF0BAF F";hLG8h?+F>$h ,ѹ HxDhJ`Z  hAF F (  ;h#O#  d   t zs F  u FfK-A{D8JXh,FF{%F=/2FEbEО\ .<s`
/FU;K "F#F3x=+F  F    O0pO0@O0  +[ 0pG  pGhF !ԘY `pG` pG	 0
0	0[0`pG  pG  pG  K0{DBЙBi
i  01P]Q-BO3B # #F0  r I: Pr *FQB #

*O #C "2*Oڿ3bFC+pG  -CF0K{DBRi 
 FFEFVK FS
(  0E$EUE@V\ %0 %L&E=V  !+ B\BL@! DUL $$ NDT
FD@C+       dq  XK-O{DBFF 𥀙B i"iB	E  
ZhAhF1TF (H  BFIFFQO@ KRO@L" OCoCoC "OCoCoCQEr) =CEF%ah; * F9F (66 #BFYR@" )oCoC" (oCoCE*YhY =CEF%ah; *0F    p 8FK{DB
M}D(FHbhxDP"@"@(F!`8@
8,o <o 8o pFHxDK{DS%@"hC% 
&p F(E`` !!a`L|DHxD Fpo o n n -CUKF F'K{DBFE%@
W pA ̱hF X L" qa ta *$$4aa$4ara 0G3N5  p
2@  di! 0F n SK-O{DBFFPHxDBiiB)F5FF7ihhhBȿ0WEJzDB  1 " C+ B75 P1 %VSOH
	OE#^L#̱EOE`1|?R\FO VF3#\OE

 #3E	EOH P2FaE  < ,aQ- * m m m F K{DB!Daa |l -GF@N
F~DB>HxDB"B"Gaa &#F&,FF`h1IyDB!i *i #`475UTOCI2 .oBoBD bFOC""loCoCETk+ -oCoCFV3 ."[oCoCB 9R= +a ^l Vl l -CF,KF{DBOOQ!i@h	h	0m BF"HxDB 5  FB 0@E(r!i3F  #h CA;RrE `C	REC>.a F,F F Jk  k 8FKF h{DBЙB,`8
i0 8@ʼ8 j F KF{DB9i  #h3lNC@B @BhBbhPFHxDB F<Ff#i   FY<F5%aNa F Tj j 2K-A{DBFFZ.JMzDR% "FL)ODD8F @@q }F#HxDB(F%F8Ff0 # @#`<FlD(F!FF(F=Fv'h / F!F@E(FEF
HxD< `F`
HxD4(Fi R  i i ~i Vi ~i li     ' #-O-FzDO 
O KFX
hxF3h  (-)%F
+)F
%x - Ä6iXh0i) F"yDh"(FyDO 
|,F n) F"yDxx(+  F+)*  * 0-`xF00+ + z'	 &	 &
%3F+0+ܿ̬03/Fݼ9 !FFf.Fh2 +QFF10:FЬ1/LF !H05l? O
 4, ,ؿ   dB )i)M)
!-
$  F2 !FF0	, #FeF+F !FFEFFP%	 ( ԃ+м-   $P 0	,400FЬ1	*ج0 
$0dF / Dl(9EF FX FFF FO  F= )@|	 *LFvzg +FF-+F#	+[0 j@D
R+a;@;[3->ܸ  N)ݸ
OK8D {';(% E'KD  kfK [dk[6"IKyD ;[ /\xK:D i[;7 𣀱 &5FF7FMO 
"!`
	 ) 0K #D	 K%[3R*H[T{K=xDI  lK[>B_FءBT{زO:YX{BKD Kk[3D	+K8 'D &5FF7F%
 {h7[+|D  {hK@K[4x[ek@kO 
O ""` /@KZO O
 	!Z' & 6B0FNI~DBF0"	aCa		# 8F
! 0:|3KEF	 8 
 O			 8F
!		0:cFE۸  %  ۶  xhK A
F9F)K
!F %
(r +FF  opE3F6BF1FaEaF ) [v(FOIFF?FHFF +HFFwF"F4 .1Fi .(F1FaFHF #hF`)F (A (@k @g +@b!0FA)FF (DV  |  B      Ÿ      n  J        h  0  й    c B+CI#pBѺ?ѬI

Fy + BO:
oSo[
  ( J3: ;[:@+@+[?HxDB)ЅB'0F(F*i3iC *Q^^qFA?/p͋ SF +ѻ ?N̋( (aH I  H^I_K B*ѫT{KS+K%K2TH\I +[2 cE
OKB2?z0O:IT{Pش̋	8ɛɛ
IJJI [07KB#8@)  p&;ԟ%#HF(F0F
HF(F8F0F LF`
 APFPFYFL4       5?55  ?5?     ` |-O-	 *!" D`  `KJ B,Bt`*-M}DM}DM}D	!(F[0D`EF ք)F + фx@$` zJzDBF 𵄠IyD + a` 𪼰H
VFnS+#C#p5GQ &A@%oc
E3G		!@
}M  jg5&S0+s+C+j+klK0b Z!+;++ո[E+
:{D  kk
:" #
}J O O  D( '  !
	*%* % %)$ "  	 +!F$ "	 
3 +FO1% "F#O3 "F#!	#	F #  !0I E*JzDB F[ 8 - 5 [U
 OD [	# #IyD3  `(?aCoc?yPD?<sOu  Ϯ  ɮ  ׮  (^ ] e  Ա  [   v  Ց K%[3R1 *K     #yD ;	e{yD kg{3R1 *gKK #ѱ չ  *@
<3FkMFF{:{
Ps:q ȁG nj ;5{D kK k4{{;0 FqǛ vǫ B:''{iD  +]"k+*0BqѶ ;0Kk3@[
FF:0(k`[ (iۺf	, )D ڹ O @1MF.;;$(BD.+JEFK0 n%1++ܴn+@_r
B0!

pFFF:9)xHp!/2@ %:+	 3B
6=F^F	6B۽
7F
  "^FJF DD=F^Ff 	ݰEFF / -
)F!FF Fby F F9F
F 
 /F9FF(bQO@G' ' HxDB
B)i  iw  #
 )F  #3DD  FYFF (FAFF F)F ( F "
!
:aF*
! "Y )ݹ !(FJFHF F)Fo (	o
F

1&k & +  .1Fwph1FG
8F !W	)F F1F8F 0 F,(FFh8F FF !FcR@9+ *	1 )ҹ +_F! FQ)FF (9/	1CF +ݻ99 iCFtFBF
! " F
! "BF0FF
! "F7| F)Fe 0 6NE F
! "xF    ذ  ,    D  W  &D! F)FF (B1"

pAF,F99*PpCF80)(Fj.B0F F FBO 
0  "p
`*`   F  𵂱
M #}D\\/]]Bи43B  F F V  -AFxN%F0FjF,F;KB(F1FBF ~ ( F Fh;
FBK ,`FFKFF[B ! &F`8 - k0bpG k0TpGB 1@н @pG  FIH #Ni(
K0
J p{DNzDhYhhB`h `	h1Xp  pS   	K	I{D[XhBIyD2h   pG~  XS F
F FFh*F9F  c%p "u_0` F-OFF8F<p .! F] FO  FŲd3i0i% /^ F)FF (UxB	 F*F  (
ڳhh	 /B F)Fhh} /5 F)F 
ph phjF$	a @F JF ` v	 FOc`BF@;i_p`  $ F  <HO!xD:L|D]!" (Q&4HxDVO4S &(F ( .`	Q &#*s  $OFY:`"T@#`F B
ЁhJBhKBIB9hHO4L"|D"pK ${D`fO4(F6h+ѣ F PROPnvOCE      0Q ,Q 
Ks{DFx$p@ O FF(F )F#F²0FpP -CFKFF{DxC a  F)F "%h.HFAFr_ hB'8F`0FP F( !"F@ǿ p  -CFKJ{DX 5GFWk(F؀WKo	$@*F HF!F8> .4F $ F F 2  -CFFF  	HF)F "h%j.@Fr$/#jB8F!FK0FHxD O HxDvO 0b #\\B`043B  0F0 F09FOK<L3B:pBLFBDBFxBЄB
҆xB	ГBx3B0  p Fp(Fp  0@- @  0M  8  P0#S8t 8@ 80   8   PP  "0 p   
 ʠPl <Ѝ0  |0@-PM @  Q  (     U 040  
   Ѝ0   "  p@     0 a4  8  @- @ P  U   0  S    Ì0 S      0  0 S   
< P`r`pQP 0(  g  PO dM (M M L N 0@ S  p /  /p@- P `    0  S
    @#0 Sl    @E T  P 0 0C   @,0 ,  pp @aN HL L K N K{Dh
hG d  K{DhJhG P  K{DhhG <  K{DhhG (  -CFP;*NFY~D  F0h ,] ,|F &@"hBEѣhai#l, r"c"#V 4LE,h GT )lh GT? +ѩh!MFpY Gy B  Rtd  Q   Q   0P     / 0P       /  P  
  Q    / /    0: Q  
 Q  
  Q 0  /99A- @P  
 Pyj   ?  3  Q VP  	  τ 0\   V_    0%S%  
p U83  
    ^	  0%/  2τ  \ UP     0 P U   1  P W_	W  
 ? ^  
/   2  P U P 8   1  P U P # p@- @PM+  
 Pi  _/0B_  U R  
   M Ѝp   0%S     R  
0E  0  Q  U
 P _`ϔ_  U ^  $ @- @P  
 `yZ  /   2  P U  
 _ K 0&SP80  
/   2  P
	W  
  Q  
?   3  P V `#  @- @  P0>M 0 0P	  
  Q      
   R     / / / phBBhaEӀh (pGcBaDaB`K`K("J`{Dia I HxD pG HxD pG FK  J{DX`HxDVR    -OO 	F waF0h		hh	+@
  DBch (@#(EhiB_hiBТh(iBhB `` vHxDci;#i 0bFXi ( (iB iiLU, BE,0*iB#ih! h`*iBiBaKa +a!iBaa`iBXaaYF`!1 `u_"(OwB#آsR DC   11(  A "!ohaLLE.@i` *U.0R      F_h'AER 9S!  (*iB?=C!@a``
*ihB2B/````7F .hB?@sE, +b  -AFMh h0F)F (@J!&iB<eiB O$؍h(hEEеBсhB@́B%&h& %`r@EаBhB@``fhiB
ЏhBhB ``HxDHi8i  FGi  /i  /ѴE p -8iLT,pBD, &iB  fh&e`"&iB.iB(aha (a
iBaaMiuBEaa	Xh -Ѣ`  X` &iBXh@𴀧iBhaci`B BH`@Qea`eiB	ѣhaa`B H`P bDO$؝h(hEEеB!hB@B##h#   `i@EаBhB@
``]hiBПhBLhB F``Xi8i  FGi  /i  /ѴE+ p -0iLT,pBD, &iB ch # ``&iB
.iB(aha (ai%Baa[i#BCaa`iBPBK`	Ѣ` P]`BK`(%"h (3BC"`Fh iBЮ````
'а?#Ҡu/ V0 DE.33"  C   'fh %a Ma7B
a LD,>Cf`a(T,0E 3F]h%B@ 5S%` ."ibE?oC%a`` ihBcB````` #a
HxDHxD	hB?KL	HxD	HxDhB?@        z  7FO3   ""#!F CFJ!FzD(F>   HxD p ( 0  f@ 8LH|DxD#h+( dF8<HO2O `xD#a`a`!aa(FU2B,#`$  $
HxD><	H	I
JxDyDzD  8 B B @ A -CFJK
F{DhA !xi )(5E {@J FzDhFoѹD	1H9FrEqhB_0hs BcEVӛh +K2h)F
(K&K)HBxD ER   FB %hBF  ?иB=HxD-qhKs`hBi F!Z\ FAhiBO3a O:F0Ѭ %zA PA @ @ -GFGhFF'EHxDdEn@tf F. j0BJzDh@@u%hIyDJh9FPBfD@`2FB JDu"c`e #J`IE<yD
iB8aHxD1vDaB@@a<Bӊ*@7EB>Cf`K`]hE]`iBhB@	L>CAf`Z`a`CiB+уhB+٢LC >Cf`P`HhP  H`IyD`Ja"KLC{Dg`QhA P` "`Za ɀ"
EO
)ȑhDh	(	HE`EhB@𳀃B	iK {D h! `lKEcE𦀟hB@```hiB
ЯhgEhB ``WHxDki;+i 0F_i	 /i	 /E p (2HOL	DW)BG)0+CIyDiB#xh y`?iBiBaCa +a(iBaaiiBYaa*ch

 BA
c`BhBA`4 @BNf`K`Xh@ X`!HxD74HJxD!FzDX
K` $BjhHxDHxDhB?fg F P> ? ? = = =  = < <   < ; p;     ֒  Β  ;-O{DFhByD!,	٦p &$ (Ao
,4$ $h;{Dh !(4hhB"  `iBhB`` xD XhB@? )tO   wBGqBz"W	"aD&& &@&(1hhB ! `iBhB`` D4q`B P``ձh:O{D h(0Yi=B=C`FhiBӁ````4yD`La s   q
 ! w	
&

  !  N!@ 
L1S!KhF#
Ah!F
E,FFRFi (Hi (yDVEfEhiBзhWEhB )``p	xDnsi	;3i	 0F_i /i /E p )3,y
LDW+ BG+03	xDiB#
(
y`?iBiBaKa +a1iBaapiBXaa*
Bq`ChCB` DB t` L ݱH'|D(1ci=BE  `Fh$iB|````p8{D` A ҁ\h4$~D  ȁaB"
&в?"Ңw;PC 33$C "7L {DS 0S*V  'O fFXh   BFF (WOxXiS(0B`FF F (D .Bo
*^B C#C	 fD "V " D@" @7L2 &{DS"0FXh B(
Fi8FYiFF + . #xDhBFE3BhiBзhGEhB ̅``xDri:2i  FWi	 /i	 /E p (3vL	DW)PBG) 2xV}D-iB"*}`=iBiBaBa *a0iBaapiBPaa)	
Bs`Hh@J`ADw`]`-YP'xD h(2
B
CF`h iBӓ````{
(а?$ҠrOG PD@77!  G   %O  %zDa]a LaH B'0P`!(R' E :FUh%B@ =R%p /$yDi`E?B%0a``hxD iB
B```` "a6@O44{DhB^i*0`XaBPC`  !`Ya2@q`ShC P` hB {d~D2h
4{DTxDhBNh *KAhaHB@>!E;ٴE9إB7(F2F2 KBPr`#K` !4B{Di
ByDaxD1!QBQ6@*ODh/pB B JzD1KaB@B HxD!Q8FBF@&  iF FHxD 5@F?F ,K{D^hqBuBB   =FKB{Da@IB 8E@	E (F@EF@>MN}D~Dhh /EBH@B (Fl `EF@ރCѰ0BҹK 	{Dh/KB IBE
@FJ0EDHFCHxDp?m/FM}D(Fd8F1F  -F(Fq Zz WBT(B@NO 	MI}DyD1:!B!i-iBґHxDaI@sHyDxD
haqBb "Бb 2(1 *``1F(hshXh vE9E
эBӵB	zH^`)FxDh-vIyDDisB 8ah + hB HE@Zh`_`XB  FvD ZB 
3B Dt`	ZJzDha@`@Z`VL|DaiBѢhca`@Y`PQh-@!O/ 򘀕h(hEE$iBłhB@B	@M!}D,h$)`AE	;L|D$iB𱂌hB@`` < : : ϑ  |9 L9 8   48  8 7 n7 P7 6 ,6 5 9  p5 \5 4 R4 3 3 3 D5 V3 (5 2 2 2 4 2 f2 4 3 1 3 1 T3 3 3 0 0 0 2 0 X0 F0 D0 / / `/ J/ hiBЗh$iBhB 5``"|xDٺQi9i GFLi ,i ,LDGE<` -48DL	|DT)pBD)1$tD?iB!eh%a`$iB,iB)aia )aiB
aaTiBLaabD`DUh@P%T`Y`)H%xD h(2L`Fh iBӓ````l
'б?#ҡw:U,DB77 G !JO $zDa\aLWhaLB%0W` )R% L  *FTh$BI ,R$P -ѸHxDiqE?B$0a``HhxD iBB```` "aH)FxD  '/
JB1F
|E8F(DPF
r! a&qБ8[E~`ӨE BPqh! p`k`(؃I&yD 
h(3LF
`h	iBzHxDy````s
'б?#ҡw>QD@6 6" F !aKO  {DahaL_h(aLC.P_`)S.0H   3F^h&EI 0S ` .KJzDiqEC Pa``
EIhyDiBӂBӝ```` #a?K{DhB0i`2a@S`Dt`6 &!`5IyD!?pp:hB?ԨոhB?12*N~D@!O6bKBgO	h?hHxDHxDhB?ȭq" %0F  - - - f- , ~, d, B, , + ,  + * * z* L* *     -A(F&s3B@   BFo?B%`
)(O F %w<HxD1t'B@ pH (rB<@W<a )W\R  ah @Na`Xh@Y`W< @AG<AhAC`H)FxD%Fkh# BLNk`B H`Xh@ X`
HxD	J5zDpb(F) |( :( 0( F ( sxD1T}D.iB6 p (W ( )! Wdp1 F1FN (@!B
DhiB /'ؠh(h`EаBhB@
B
L%xDh!`vaEбBhB@``jhiBХhBhB ``xDai9!i eFOi /i /ѵB/` (<iML}DU,pBE,)M}D-iB!hh i`"-iBiBaAa )a iBaa`ipBHaa	Yh (Ѫ`!Y`,BnYh@j@ƀHxDiBhaCi`BBa`Ea`HxDiB@X !2SEiBуhDa`Ba`PG!.)؝h (7hB iBOhB@KB	ѳK!{Dh `rB	ЮHxD iB:hB@6``chiBОh iB9hB )3``Yi 1i 1h0FOi /i /іN~D6iB` -4iHLxDP,pB@,)N~D6iB !Ch#A` iB(iB)aia )ia Baa[i#BKaazHBPxDc`AiBт`! PX`Bc`(pI%yD 
h(3BCF`h	iB````
'б?#ҡu/SD@7 7" G !PK%  a{D`aL^h a7B>CC%@^` )S%0H   +FXh EI (S P -;JzDiaE?RC @a``5IhyDiBEBB```` #a.HxDjJbZ*H!F*JxDzD]J`(IyD1p@չ#HxD"HxDhB?HxDHxDhB?Ԯ ' ' P' r~  & & :& & % % @% (% % $ $ $ # # # q  z  \# z  z  z  z  8
FFpE  C FBO4 F FF8P !"F\(F8  FF F@A%`%!"H
)xD%%!)F"8FFHxD1 p ( %  pF
5 FF (V!""1FB("F0F(F." 
" (F_pP +  +""pG  pG0o   "D=!FHxDhG  % 3OR 
F!F*F   ! N# FHF)FxDF"Fo  K{DhBHhpG1
h *FpG" F!FcF(`O0pF
L|D h `M}D,h0FC
аB#`O0p(` Fp" " F`O0KJ{DIFXðHyD+hxD.FAFP9FjF:( 	Oq"F s (O5 F O5A(F2hBC(  |_o  Mo  KJ{DHŰXxDI#hyD&FCoFO $D !Or !p9F
(4Oq*F * ((F  $C F3hBE𽬜  |n  n  n  d(  3^69<a^CTccc>@CQ33FIKaTNaaQQTWY[^accpe OTqOztn@4kd$i$gOtdO4ao D^$\O DYo@DVOdSOtP$N$LO TIO dF $D$LB <!L?O47HxDdFN $~D|+01F
B((F\ ($"HxDHxDF
&!`O4c$4(FM Fp 
 m  vm  bm  mm  'K p{DF2m	%`O5?!I[XhF
  FF!j1iG5 (O5 i"kh@@B#k  ``l "bd0h #Oq`c` F(Fp  -G 	-KFF{D 'Q+JXhF F`	9=FAfh FhB !)p" p / F7FO1fh NE(NF
!2F@Fah0 AF	 2F(F  U   F.b`(F#`AF2F		 8F  8Fxr*w*a*Ob!`  8 " FOr$ ]xb-3 3x+-3$ xb-3xx-3Bxe+B ""C
`8
KJ{D-A &XFhgh0 +(FGCT5?$h ,0F   *K+J{DFXhTbPN	!`@@O0
#kh@@B k "` i !a`,$ `B#i F bi  `SBaai F`    <K=J{D-CX
FF3hF#`1hB ^3I(FyD!CȾi(/NO~D hD#i+'D(OD	'J
!#FzD0F 
!0F)("K{D!K{D hh
ah !"hH"1H!

(XDuE(F
|K#`    B!̗  |j  r  j  r  i  Wj  i  i  N IyDl p^+-L|Dг#+@FF8F@BFF[nTP-hP[ -7BF4tkTP6-hP[ -%N]Y6hv]K_&KXh30;B
; +BFOK ,Fp  FLFK|DFF!XrF;F hhF1F*F #hF!hB^̕  |0(_(-(F
FJzDFpG xh  -OFd!FFFHF

Fd! Fmd!nd!FHFjd!$(Fdd!$(F
 ,d5< , -5d=4 L -H1F:FCFxD%
I@FJyDzDF2F;FF F|F I@FJyDzDF2F;FFppOd 0Fg  g  g  g  g  -OFF|7yDF	Xt7
h{D
h#h'yD/zD%+@O BxAz* zQ" DG                                                                                                                                      c                  q            ;  M        =  Q                O  s          O      3  M                G  q        '  y  i) 94xD5i*$2"(xD,-2i*2W" xD-#!F*FFd*2xD2i*W" 
xD0@lqpi" # 1F"F +F  )F ;! xDXF$yDzDF
XF4yD{D
FFh xDxXFx$yDzDF%h!h$XFzD )FO	XyDTXFT$yDzDFFi7DXF@4yD{D
FFhh!(4XF{D )FO	yD
FXF$yDzDFFphxXF $yDzDFsF0i0jHxDah+̿  Yh*FOs)!F̿  0H xD~H xDxIXFJyDzDFDF0h<F
H      ?JzD !H xDKHxDIXFJyDzDFii!FIFiI ( yD"F+FpiOqi@ly
HFOq
[Fd!OsOq )@m
!!Q1E		O
(E
 !J 
	9OqHF
SFd!OqOq )@mDV*
їIXFJyDzDFFPFg+ IF  0Q0IFTH xDii
 9O	IXFJyDzDF\!F
 YFO~IiyDK  v$"1FCL-"F +F F(#  Bs p! pi@lq0 "#pi@lq0"F-j 3j +U_HO O	XS, !F*F[F0j (D$ UH 	xD *F[F!Fi<!FHF<!FOd<! PFXFDFFHF  1F"F+FXB
 F#hB Xx +b
%j  |g  g  Yg  #e  e  d  d  d  d  ld  od  Yd  Rd  Rd  ,d  /d  d  d  d  d  c  c  c  c  c  c  c  c  P  hc  bc  (c  +c  .c  c  c  b  b  b  a  a  a  Xa  [a  4a  `  𵅰FF
FFl #HxD 0F
e +F9F"FO Bp  F |_  L|D    p   p
p/  ` -p   p
p/  ` p   p
p/  ` p   p
p/  ` p   p
p/  ` }p   p
p/  ` Np   p
p/  ` p   p
p/  `   B   p
p/  ` Cp   p
p/  ` ~p   p
p/  ` p   p
p/  ` Xp   p
p/  `y p   p
p/  `q   p   p/0  p   p/ p   p/ @ P  / @ RE  J@- @ 0d0  
 B  P9  0S $ A   $ R  J  0  0   0   0   0   0   0   0 
    R*    J  0   R*   	  
  @DA   P   R@/  R  / 0  P/ R/  P&   R BJ.Ƞ Ȍ 0.Ƞ Ȍ 0 .Ƞ Ȍ 0 .Ƞ Ȍ 0    R*A   
A@D  -Q `ep B7Šp ƌ 07Šp ƌ 0    R*A    
AA@D  ɲFBF	 , Fx3BH !xDm[  FBH !xDf[  FFF yBH !xD Y[  T; @pG    Q@- @  0` S  : @  Q  * a  R   @- p `P @P  
X p`  PD0   Q  @,  @(0 @     ԗ      		)  pG  BKCJ{DFXh !a` m  3	#`[
b FI (UѴ`.a@"khp@`EI#k  k`a`k"`!i Fo@BHoRNxD	, C	) F
!ibicj!`iG" Q (``L   ``L@O0    7  pGOAp %"  	Tk1F"F 
HxD p@pG-OF<M}88FyDX=h˕F((Xh
uO 	OFFxDyD	 hgYhB6`h73#`Aa``h (#h
h  Ax_ * F (%)]ZFFO
 ZF;g+-e+G+ 9+
0+%+E*+\ + D+  E+@X+ L+QO+@~c+ ̀ [+@p+ Ȁj+;h+Ki+@n+ fl+@It+Sq+Ms+@fx+_z+Ku+@V`h (#h E@I F (:bhY7!`P``RFfFRxd*#i*o*u*x*#CwSxh+FFmSxl+FdFaFv^F@[80VFF fO	F fFFK##Sx^+2O x2O !( 1F ;" F
F ZF-)])Б ](ИB3jF(BFF v#JF v #FFII O	>q?-h/pr+heF q  	 0-h/`h`*h`h ) ~ FyHxFO 	O
	#ah )ݲ% F (R`h7Bb` *1!` F (@B!h
x hPx _ *;+5    Os &ch!hCE
 F#`\ ( .@ FD``"`(h!BF#F.  ( 

5F O8vah62"`HE``b ( F*[ &"h
 0 + .P.h+D5FahH``˨E"`bh * FBѽ"h
   (Ѯ  !

)pF# O8pah62"`HE`` ( F &"hhxYHx _ +п.hD5FbhP``;;E!`ah ) FP!hhxZx ò + "*p

eFw1@JB(FJF6Z h8x9+	8+(0+++--+Y*X+/أA)Qa+Nf+x+J" F FO	&6'	1&PF!1
.+&VF V1$ _JOOaDE& FO	<FchYa` )0 ` F- 2Yq	JE@!F kx(X(!F8 _l@À a JaFJF cJF   2 -h r  *h*hu1p`1@JB(F1F62 h8x9+0+-+.+++3E+e+.&F_'&V O!&F<?&8HF<Fch;c` +0 ` F29s#J!F8 ECF;3e(E(!F !F Faш J*hA0  { z

eFJGD O:h* FO:PF˚hB
M} $  |X_  V_   $ODo D$
 Oq	"FFO|< 
d "p      K-O-FJ{DFXKFhF;Fexв (ѻ-O
+F?F . .
9xx)X)@&73+5444444444)  @OO2o`CH& @OO2opC<
& @OO2pK1 @OO2oxC& ПbcQ2F+F +FQF2F FF и   !C    $ %0	)؋F	hYDWW!7!ENAIк !ДBu۝BB
E $O E"#`O0!aCEMeu#Bs۝BBEO4o E""`O0aCEeDEu q9 'O  "O`CO  "OpCo #yO  "OxCsO0 .?(0 0* F)F        4333333r{   iK-OFhJ{DFXKFhF3Fexв (Ѽ-O+F6F / /ѕ1xx)X)@'6
/)//
"O:opK#'"O:o`K:FO0O1+F :F+FFFO0O1 "O: ! $ %0	+؜F
h Cx0W 7 E'K"ЫEE]ETEєE O4""O1O5`cC0EEEu! )dBeE	9 O0 /t0xd0?a
' F)Fx   !
"S @pG  FF  !"FH AMVSF , F,"F[SBApG-OF
FOhO 	Ey۴e		o`O1A	d" #@FIF CJO3FF@FIF AO@vO@qA	 'Bwo

O2I	d" # F)F R	 # F)FOr zR?O1
O2BPFd" #YF jR	 #PFYFOr `R+" #@FIF VFF (q !PBwJzD #@rBs
JzDR      # I	  # I	 pVT  T      CikJlq-O-RO4D +C*FF*#F
D ͨ   9F0F$lp
lyFOyEyO:O
 ! O`Bq0g #Or OsCCgwow :JO;OtOrK # DC6Gw3MB ,EeD0 $ %- #@FIFOr R Q 	R #	d" #@FIF R #R##$EuI	\PFIyDOEFEQF #`C

EuDE F)F        MY`Q R    *iЁBg.A Ё *  F #\T3B	 #,FXP3<ѫ > $]U4BA Ё *  FcdB 	\T3Ҕ

FF#FV};E}ocC
SRB T3pFFhHxDK{DBjHxDD 1F"F 0
 $h +
H$xD2_h\` Fp &        F N
F (F~D !9`iF (p@ QKBS:`O`(` O)`d	Hj3XBO `O`O ` Fr  MF
}DiF F8FXNC "`"a`a
K8XUP aga`F `0  F
C q  
 -p p    
p/  `=	 p   p
p/  `5	 p   p
p/  `-	 P-C   P
p/  `%	 ꃉ		)1  pG  -OFkNFFSC~DFFF ƀgH7X9h Fbh * #c` 
 * k +@\IrXhV  `` :8h (  F0 c:hA@ F:	#`
Z F 禉`&aࠉ@&k0h@@B#k "`5HoCAoQBxD	& @	+ F|FFcjIF2FiG! \F (C C@6D8h (2 F6.ZFD#h  ` F`=h F" QF FFFHF!h^E2Fr`h"ha`&`FO5(Fp  -GCSNFF~D QKXh	OJXhF F@ P FO5{
R F (Ѧ`&a@&k0h (=whahB1@BO` (0`Ocs`BA #@ 0 `OG	IFF ( 
1F:FPF k @#hY!`\bhPࢉ i" H#hBB;#` h@bh!c c"F3`q`B_"```   FU(F n  KEAJ{DXjF#h	 	"h 8  BK
 m  |S @pG  6p   p
p/  `9  Q/#  : P     
?o/o C02   P @  ! P @  !!P!@ #!!P@ !!  P#2! /   //o b0/  P  t    Q
@-@ A/  Q0  
  aB Q  
 0 0`B S      
/oo  B     S0C  ! S0C  !!S!1C "!S1C !  S""!  \  `B/  <  `B/  3 //o b  \3  `B/  P5    Q
@-@ A/ 0R b0AQQAQ/ 0R bAQ0A/  S  R    Q  P      M `-  Ѝ /  S  R    Q  P     M `-  Ѝ /@- @@-` @Ppc 7' 0 T0 @-` @Ppv &q'0 T0  011 /O-  Q `  
A p	@O@Q  T   
00 V0  * T  
D @  V  pP   P    V: <0 P0  
 P  
  P            /  /`i   0@-  @   H   
s    m  0    p  0   o  0 #@ 07@-0  @PA   R  
    0  P0
  
     0`10  PP  P	   0 SH  0 0  
  S L 0  r 0L L P0 0  S  S  P 	     c   >h   0  S 0 /	 //G- @p MM `        H  W
p	p PPp@0
  H0	-00 /3/2 L0 @ 08/  P    U   	-p Y
 Y   H  	P Ѝۍp@- P@ @c `P   
r@0  003/ P
 P @  D /<0@-@0 P@M 	m        0@2& @8  P
  0
 3/ P p

  W   	 ߍ < @   jp@- P`@0  V@0  
 `  0  3/ P  
 P     @Q ]     R   < @   D/@- 0  S 3/  Q  
 Q  / R  S!  00     /@-  0 00 Ѝ   Q  
 Q  / R  S!   00   /@-0  #  00Ѝ O-`LP$M S@p   P  $0 0	   Z  "80( s0  Q WP8P      ZH 0P0P     0  0  R      P  # 300 S  
  : S  L    W      P  
 8 P     P  
  5  P    W    P2  
  q  
 qX  	  
 /0     P!  
    
e X 0$   , =  ;   
 Y  X  (0 U      i   e q  PQ     W$    PB  
0  X0  S  <  00W  0      P  
-  X00 \ 
#0  $0(P F   0 
 0 0  S  (0 U   0(000,40 0	 S	        	 0  SPQ        X; Z      Y   
      P      0  	 $Ѝhc  00 0<0p@-@0 P`M \        0X0
   P  
	@  X 
 X 5/  P 
X 03/	 P P @X c ߍpE- @gMP Q                 S  r8  0`` S
8   
    R   S%huP   R  S q V 
     X   RB pp S  X   V       
 S H              W  
 0   
 00    Z  
    W     V      W  
   Pf8   U0  P1    cQ*1  W  
 V ! 3f∀  @    R0  Z0  Z80  
K  B   V  J    W<  
 J  9   S5  "hrP0 S0   0   
01Q   PN   a80    f  0S*Q 8P.     R  S   0   
002K  
 I  8  0 0 S8 
 8          gߍ48 8 - !/!/ / / / /!1AQaq/!1AQaq/// -- 0 -@HЍ/ -- 0 -;@HЍ/ -- 0 -P@HЍ/ -- 0 -0"@HЍ/ -- 0 - @HЍ/  0  R	  	   R
  
 B	        B   "$  / /@- 0  00. Ѝ G- P` p  P @    W  @0 @   @  0+  q  Q   @@0  
 y0t@  Ti	 !  0  S   D  	P  	    *  0 "(]  P	p S  
0 
 S
    0   
 0 S
  @     Z"t@.  T) 
   S<   P   r  P
 0o   P   
 0  @ `    @Z0  ?    P   L0   0   0  S@ @   ' ' S2   P   30   0 & P   (  P
0~ %  0  S  @   
( P        0   Pg 0   0 &  0  S[@   '0  PR  Ѝ@-L0  $     0
0Ѝ @-H @-L0  @-&@-$O- Q p P    p  P p  \    r 0P  \
@`   Z0  ?o  SC  c7"c$xt  )8
8  S `!  *0`@  * S`@200by
 
   Y !  *@@  * T@2Ȍ    Z    @?o  Sd `2  
C c87$ 
tp `
(88  S !  *0@  * S@200`b
x  0
 0v 0  Q `!  *`@  * Q`@20gh$ t
 p
_)88  S p!  *0p@  * Sp@200b
y x 0
 0I 0  Y !  *@@  * T@2Ȍa   \]  o  Y   X
 W `3`##	`!U  *S   i:A8!I7 $ t`L  0 0 0(  Q 0!  *0@  * Q0@20bx 3     0  Q !  *@  * Q@20`fȌ,*(


    (" 8 ( R   ``	S ``  V  
L `   `  U 0  
  r 0 ЍO-  S `@ p   R0  ?o  SC  c0"s$Xt`
 
 '88  S !  *0@  * S@200bwp
 
 	x  W 0!  *@0@  * T0@2    R    @?o  S`d P0  
C c6s8$c	 t	 P{&88  S !  *0@  * S@200Pbv`  f 

 Q P!  *P@  *
 QP@20`j	X$ t~ P'8	8  S `!  *0`@  * S`@200bwp	 i	 ;x 

 W 0!  *@0@  *
 T0@2^   SZ  o  W   Q P P3P# #P!R  *P   gW2A6G0g $t
@  
  &ȠȌ  \ !  *@  * \@20c
v` (  
   		 Q 0!  *0@  *	 Q0@20i %(X("8,(	 R   PPS PP  U  
 @ P   P ЍxGFxGFxGFxGFH2 xGFyxGFw奯  xGFj         Android                                             
    ֲQ                                                                                                                                                                                         ?&_                        8tx tXX  `04
p| L$Xl |(@th			
l

Pz<hlhh,0T8#X##|$@$$$4$$%% ' '(','(( ((8))0-P1 2333 3344$4 55|566829L9|9999??QQRSS T"TTT<UVdWWWXYZ[[[\l]gqr:rrr rrr$sRsdtluuuvvvvv8ww|xpyyPzl\zphzttzxz<{{}}~~l $<$PL\ԥ$4Ld??tī ܬ $,p|lx̾L tLHD(H`	h    \`h(8P 0%4   (HD 444       /data/tombstones /data/tombstones/check-lost+found-log a Can't write %s: %s
 *** check-lost+found ***
Started: %s /data/misc/check-lost+found-rebooted-2 Wrote %s, rebooting
 %s/%s dirty Reboot failed?!
 Found %s
 lost+found Can't open %s: %s
 . .. OMGZ FOUND %d FILES IN %s
 %s is clean
 Can't read kernel log: %s
 --- Kernel log ---
 
 yaffs: dev is yaffs mtd msm_nand %s
 yaffs_read_super: isCheckpointed /system /data /cache stack corruption detected <unknown> /dev/log/main (null) bionic/libc/bionic/libc_logging.cpp conversion specifier unsupported sign/precision unsupported /dev/log/events libc FORTIFY_SOURCE: %s. Calling abort(). %s Unknown error %d Unknown Real-time %s signal %d Success Operation not permitted No such file or directory No such process Interrupted system call I/O error No such device or address Argument list too long Exec format error Bad file number No child processes Try again Out of memory Permission denied Bad address Block device required Device or resource busy File exists Cross-device link No such device Not a directory Is a directory Invalid argument File table overflow Too many open files Not a typewriter Text file busy File too large No space left on device Illegal seek Read-only file system Too many links Broken pipe Math argument out of domain of func Math result not representable Resource deadlock would occur File name too long No record locks available Function not implemented Directory not empty Too many symbolic links encountered No message of desired type Identifier removed Channel number out of range Level 2 not synchronized Level 3 halted Level 3 reset Link number out of range Protocol driver not attached No CSI structure available Level 2 halted Invalid exchange Invalid request descriptor Exchange full No anode Invalid request code Invalid slot Bad font file format Device not a stream No data available Timer expired Out of streams resources Machine is not on the network Package not installed Object is remote Link has been severed Advertise error Srmount error Communication error on send Protocol error Multihop attempted RFS specific error Not a data message Value too large for defined data type Name not unique on network File descriptor in bad state Remote address changed Can not access a needed shared library Accessing a corrupted shared library .lib section in a.out corrupted Attempting to link in too many shared libraries Cannot exec a shared library directly Illegal byte sequence Interrupted system call should be restarted Streams pipe error Too many users Socket operation on non-socket Destination address required Message too long Protocol wrong type for socket Protocol not available Protocol not supported Socket type not supported Operation not supported on transport endpoint Protocol family not supported Address family not supported by protocol Address already in use Cannot assign requested address Network is down Network is unreachable Network dropped connection because of reset Software caused connection abort Connection reset by peer No buffer space available Transport endpoint is already connected Transport endpoint is not connected Cannot send after transport endpoint shutdown Too many references: cannot splice Connection timed out Connection refused Host is down No route to host Operation already in progress Operation now in progress Stale NFS file handle Structure needs cleaning Not a XENIX named type file No XENIX semaphores available Is a named type file Remote I/O error Quota exceeded No medium found Wrong medium type Operation Canceled Required key not available Key has expired Key has been revoked Key was rejected by service Owner died State not recoverable Hangup Interrupt Quit Illegal instruction Trap Aborted Bus error Floating point exception Killed User signal 1 Segmentation fault User signal 2 Alarm clock Terminated Stack fault Child exited Continue Stopped (signal) Stopped Stopped (tty input) Stopped (tty output) Urgent I/O condition CPU time limit exceeded File size limit exceeded Virtual timer expired Profiling timer expired Window size changed I/O possible Power failure Bad system call abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 :+-._ Local time zone must be set--see zic manual page short read %s: could not read header of "%s": %s
 tzdata %s: bad magic in "%s": "%.6s"
 %s: couldn't seek to index in "%s": %s
 %s: could not seek to %ld in "%s": %s
 ,M4.1.0,M10.5.0 posixrules localtime /data/misc/zoneinfo/tzdata /system/usr/share/zoneinfo/tzdata %s: couldn't find any tzdata when looking for %s!
 TZ persist.sys.timezone strncpy buffer overflow 0123456789ABCDEF 0123456789abcdef Inf NaN 0 inf inity nan Infinity ANDROID_PROPERTY_WORKSPACE  heap corruption detected by %s libc_malloc invalid address or address of corrupt block %p passed to %s max system bytes = %10lu
 system bytes     = %10lu
 in use bytes     = %10lu
 %s:%d: assertion "%s" failed %s:%d: %s: assertion "%s" failed /proc/meminfo r /proc/stat cpu%u%c /sys/devices/system/cpu MemTotal: %ld kB MemFree: %ld kB ??? %.3s %.3s%3d %2.2d:%2.2d:%2.2d %-4s
 %.3s %.3s%3d %2.2d:%2.2d:%2.2d     %s
 ??? ??? ?? ??:??:?? ????
 %Y %d -0 %02d %2d ? - + %m/%d/%y %Y-%m-%d %03d %3d %H:%M %I:%M:%S %p %lld %H:%M:%S 	 %e-%b-%Y %04d %4d %c Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec January February March April June July August September October November December Sun Mon Tue Wed Thu Fri Sat Sunday Monday Tuesday Wednesday Thursday Friday Saturday %a %b %e %T %Y AM PM %a %b %e %H:%M:%S %Z %Y read beyond buffer strlen read overflow vsprintf buffer overflow                                                                         __bionic_open_tzdata_path __bionic_open_tzdata GMT  m  n                  0000000000000000          ?      $@      Y@     @@     @     j@    .A    cA    חA    eA    _B   vH7B   mB  @0B  ļB  4&kC 7yAC ؅W4vC NgmC =`XC@xDPKDMD      }       ؗҜ<3#I9=D2[%Cod(
 7yACnF?O8M20HwZ<sOu          	 
   
                     ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ a b c d e f g h i j k l m n o p q r s t u v w x y z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                                                                                                                                   	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~  libc    pthread_create sched_setscheduler call failed: %s   pthread_create failed: couldn't allocate thread pthread_create failed: couldn't allocate %zd-byte stack: %s pthread_create failed: couldn't mprotect PROT_NONE %zd-byte stack guard region: %s  pthread_create failed: clone failed: %s dlfree tmalloc_small tmalloc_large dlmalloc try_realloc_chunk dispose_chunk add_segment prepend_alloc release_unused_segments SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec 
         	 
   
              (((((                  AAAAAABBBBBB                                            	 
   
                     ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` A B C D E F G H I J K L M N O P Q R S T U V W X Y Z { | } ~                                                                                                                                    m  n                                                                                                                         zR |
                  ,        D   D       A     \   $    F     t                d    F            B8      @   LBBZBBb        	    C       zR |
                    4       B     T   
          h   
    B        x       ;T   l0 D h p  	P	
l                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    o w }                     đ    ԑ                ' 	   9 
   I    \    f 
   t                    ̒    ޒ                    1    E    V    e    t                  !   ʓ "    #    $   * %   = &   W '   p (    *    +   Ô ,   ֔ -    .    /    0   ( 1   A 2   ^ 3   y 4    5    6    7    8   ˕ 9    ;    <    =    >   ( ?   6 @   O A   m B    C    D    E    F   Ȗ G    H    I    J    K   , L   R M   m N    O    P   ȗ Q    R   
 S   = T   c U   y V    W    X   ǘ Y    Z    [    \   3 ]   J ^   a _   { `    a   Ǚ b    c    d   ' e   7 f   N g   z h    i    j   Κ k    l    m   H n   k o    p    q    r    s   ϛ t    u    v    w   4 x   R y   g z   x {    |    }    ~       ל                #         [ _ c g k o s w {        k     ã ˣ ԣ     k     ã ˣ ԣ ݣ             " ) ; 	 2 A D G     q                                    Y )+ 0 0 1 1                ` 0U T     w        tP 1  U ,U   U    U U P        p p |p     Ԏ t                          memcpy buffer overflow memset buffer overflow strcpy buffer overflow                                   `   w      p                                                              w                                                   
                 w                                                  J              @               @               @  d    ` d    x /dev/__properties__                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             @  @    z |  GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"check-lost+found    Ьhg .shstrtab .text .note.android.ident .ARM.extab .ARM.exidx .rodata .eh_frame .eh_frame_hdr .data.rel.ro.local .preinit_array .init_array .fini_array .data.rel.ro .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                                                 ԃ                    %                            0     p   t t `               ;         ؎                    C         h h/                  M          1 |                  [            :                  n          ?                   }          ?                               ?                            @ @?                              ` `?                               @                            Q s                       0       Q                                Q                        p        Q 6                                2R                                 JR                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ELF          (    ,  4   T     4    (      4   4   4                  4  4  4                                                h  l                             Qtd                             p                  Rtd      h  h        /system/bin/linker                                
                                          %              +              3              :              @              E              L              Q              X              \              c              h                                                  __libc_init __cxa_atexit fork chdir umask setpgrp setsid close open perror exit fflush dup printf __sF __aeabi_unwind_cpp_pr0 _edata __bss_start _end libc.so libstdc++.so libm.so                                       
                                                                         	   
                                                                               	    
            
      -<   Əʌ< Əʌ4 Əʌ, Əʌ$ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ H-MP00L   D   <      K   0 0x   H-M   00  0 K 8  p
FZ'N~DBFD(h"$HxDT FVZ^DCF4PL\)F|D F\ T! FV ( FV ZKX&T0Z > Z0F68	H)FxDR F   Fp        V            Android    ,   / /dev/null %d
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         p                       (         o             H             
         <                          !                                  o                                                                           p  p  p  p  p  p  p  p  p  p  p  p  p  p   GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"cpueater    * .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .rodata .preinit_array .init_array .fini_array .dynamic .got .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                   4  4                             H  H  @                                             #         <  <                  )   	          (                2   	            p               6         p  p                    ;         ,  ,  p                 A                               U     p                       `      2                        h                               w                                                                                                        X                                                          0                                                                  p        ,  6                                b                                  r                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             0  ELF          (    \  4   T!     4    (      4   4   4                  4  4  4                             ^  ^             .  .                 .  .              Qtd                             p      0   0         Rtd  .  .            /system/bin/linker                                
                                           &              .              3              :              A              H              Y              k              p                                                                                                                                                0           0          d0        __libc_init __cxa_atexit fopen fgets fprintf exit fclose strcmp sscanf __stack_chk_fail __stack_chk_guard __sF __aeabi_unwind_cpp_pr0 fputs fscanf __sprintf_chk printf putchar atoi malloc sleep free _edata __bss_start _end libc.so libstdc++.so libm.so                                 	                                                                                                               
   
          /     /     /     /     /    /    /    /    /    /    /    /    /    /    /  	  /  
  /    /    /    /    /    /    /    /    /    -4*   Əʌ4 Əʌ, Əʌ$ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ H-MP00L   D   <      K   0 04)   H-M   00  0 K )  𵓰%LF%K|DX9h$IyD4F("O"IYyD0
@!2F,PNIYyD0*F* ,0F0IyD0IjFyD0( P
H*FI XyD0
 ;hB  (  
  z
  u
  v
  k
  W
  -OhNhK~DhIXyD h+gHxDF8dMeHqYxD1kbL|D _I#yD"FYHxDxk` $\DDi0Q`  F"jBPOO$OK !D@"{D ;h  HF?K !@"{D <IyDfF (2.L8I0YyD0f jiO 8F	x  +KBD{DiiP5 A5 ii JhXhY`5"J %"HzDxD	 jB8F46 0BHF.+
hB:-'  	   
  
  "(  
  %(  (  (  '  	  	      '  	  '  -GFjF +J&HxDx ,?$H&FxDDDDi i@hQhBS4@F +j4BPFHF+jBH1FxDG i iS40FRh4	N $~D)jB۽&              -OFBKFF{D
F
hx (N	h R
h 	!i`iiiih'hD
	DiDqD
ahgh

h
h#iH1FnhxDt .(F!FOBKhhh'h@h h@!i(i@aihi@ii@1FfhHxDL(F!F 
 O  %      -OFD4
F|Dd!X~D4D1` &h{DFO	%O0`yD|pxDxx$pDt4zDpdp{Dp~DyDxD	^U(`QF0FȹEHtHYxD61F<0FyDU( 	`;0FYFEdXxD4!F FyD*h U( `0F 0FFHHI*h XyD0h0FEHxDFHxDBHT	xDTO$"D=`UC(FK{D` IHaXxDC(FN~D0` (x %FDEN$'IoC~DKyD2h{Dh !	 @" 
LIyDF0JIXyD0 & "FYF0 ) :6NHYxD1nIyDh8j 6a (5 BH !xD hFWlO jBliV3`U3PB3B1$2qE#  #IyDp + 𱀬HOxDMDh}Dj>b.b 0Fa (0Fa (7FϱF
0DF  DF̩ ̩ !h L9` |DOD   K h:h{D8`h"`I   yDbF tFl 
'lh
pphE3KE0$2$4@ED #'  'tH#tI $tJxDБyD̡zD́DDD  !"SFRlH $"xDbC4h;F 0B
 JbMcN}D~D,hb?ac ,+`?\^IyDxH]J]OzDDiHiFZO $hZNDD~D
  $%eC4Bi43h]i.;hBPIyDh&NHxD h"%  hBF ` `FN~D0h2j  a (' #  $    ~$  p$  i$  {      F$  H$  8$  .  >               >#  #     #    "   #  >  8  *  w  f"  l"  5"  ""  !  !  !  !  !  !  x!               !        j      r   H   |      P   X      (   xGF xGF          Android    H,4&   r Could not open %s
 Could not get %s contents
 0
 0-%d
 Unexpected input in file %s (%s).
 /proc/stat Could not open /proc/stat.
 cpu  %lu %lu %lu %lu %lu %lu %lu %*d %*d %*d
 cpu%d %%lu %%lu %%lu %%lu %%lu %%lu %%lu %%*d %%*d %%*d
 /sys/devices/system/cpu/cpu%d/cpufreq/stats/time_in_state %u %lu
    %ukHz %ld  + 
    =  %ld
 ,%u,%ld %s: User %ld + Nice %ld + Sys %ld + Idle %ld + IOW %ld + IRQ %ld + SIRQ %ld = %ld
 %s,%ld,%ld,%ld,%ld,%ld,%ld,%ld -n Option -n expects an argument.
 Usage %s [ -n iterations ] [ -d delay ] [ -c cpu ] [ -m ] [ -h ]
    -n num  Updates to show before exiting.
    -d num  Seconds to wait between updates.
    -m      Display minimal output.
    -h      Display this help screen.
 -d Option -d expects an argument.
 -m -h /sys/devices/system/cpu/present /sys/devices/system/cpu/online present cpus != online cpus
 Could not allocate struct cpu_info
 %lu %*d
 Could not allocate struct freq_info
 Total cpu%d                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  /                           0         o             H             
                                 .  !         .           .              o                                                   .  .  .                        d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d   GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"cpustats    Z,] .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .rodata .preinit_array .init_array .fini_array .dynamic .got .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                   4  4                             H  H                                               #                             )   	          0                2   	                         6         d  d                    ;         \  \                   A         h  h                    U     p       0                `      2                       h         .                      w         .                               .                               .                             /    p                            0      d                        0                                                                    p        ,   6                                b                                   r                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ELF          (    \  4   T     4    (      4   4   4                  4  4  4                             "
  "
           d  d  d               |  |  |              Qtd                             p	  	  	              Rtdd  d  d            /system/bin/linker                                
                            !              '              ,              1              8              =              B              I              M              S              Y              a              h              o              x                                                                                                                                                                                __libc_init __cxa_atexit printf close open atoi perror exit fork fflush dup chdir umask setpgrp setsid getpid snprintf acquire_wake_lock sleep execv execvp waitpid release_wake_lock _exit __stack_chk_guard __sF __aeabi_unwind_cpp_pr0 _edata __bss_start _end libhardware_legacy.so libc.so libstdc++.so libm.so                                                 
                                                           	                 
                                              |                                                              	    
            
                                              -\   Əʌ\ ƏʌT ƏʌL ƏʌD Əʌ< Əʌ4 Əʌ, Əʌ$ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ H-MP00L   D   <      K   0 0    H-M   00  0 K   -CFx]K &D(X 
h	YH!hxDD0F7FUH1FO yxD #d(f(a(Oif`xh``xhF)hJ*`Hx (,F`h%x-+v0FIAOr (0F 4N!~D0FAFP`h-IX T0  (HxD0F&0F6gJ !zDF Bx8F)F`h`h)F`h	7iF "       p      6  
              Android    H
   Usage: %s [-f logfile] [-a] [-d delay] <program>
 /dev/null / daemonize%d                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             h           8     0         o             H           8  
   6     p               !     .      d  !         l           t              o                                                   d  l  t                        (  (  (  (  (  (  (  (  (  (  (  (  (  (  (  (  (  (  (  (  (  (  (  (   GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"daemonize   Y-w .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .rodata .preinit_array .init_array .fini_array .dynamic .got .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                   4  4                             H  H                         8  8  6                 #         p  p                  )   	      8  8  0                2   	      h  h                 6         (  (  4                 ;         \  \  T                 A         	  	                    U     p   	  	                  `      2   	  	  J                 h         d  d                    w         l  l                             t  t                             |  |                           |  |                                                            0                                                                  p        ,  6                                b                                  r                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ELF          (      4        4    (      4   4   4                  4  4  4                             n  n                   ,                           Qtd                             p                Rtd                /system/bin/linker                                
                            !              8              O              W              ^              e              r              y                                                                                                                                                                                                                                                           
                                                     (             1             8             >             I             P             W             e             y                                                                                                                                                                                                                             	                      8        __libc_init __cxa_atexit printf __aeabi_unwind_cpp_pr0 __aeabi_unwind_cpp_pr1 strrchr strdup strlen __strlen_chk malloc memcpy __swbuf __sF puts putchar __stack_chk_fail __stack_chk_guard fputs free snprintf putc __isthreaded fprintf strchr strcmp fputc memset getopt optarg optind open __errno strerror unlink close strcasecmp access getpid __sprintf_chk __android_log_print __aeabi_idiv __aeabi_idivmod adler32 memcmp calloc strcpy mmap lseek mprotect munmap write read lseek64 memchr inflateInit2_ inflate inflateEnd _edata __bss_start _end libz.so liblog.so libc.so libstdc++.so libm.so %   =                 2   )               8   5   !              6   3   0   :   ,   '   4   1   $      
   -   /         %   <   9         ;   &                                         	                                                                                               
                                  (   *              #   .   +                7   "                                     $     (     ,     0     4     8     <     @     D     H     L     P     T     X     \     `     d     h     l     p     t     x     |                                                                                                                                                                                                                    $     (     ,     0     4     8     <     @     D     H     L     P     T     X     \     `     d     h     l     p     t     x     |                                                                                                                                                                                                                    $     (     ,     0     4     8     <     @     D     H     L     P     T     X     \     `     d     h     l     p     t     x     |                                                                                                                                                                                                                    $     (     ,     0     4     8     <     @     D     H     L     P     T     X     \     `     d     h     l     p     t     x     |                                                                                                                                                                                                                    $     (     ,     0     4     8     <     @     D     H     L     P     T     X     \     `     d     h     l     p     t     x     |                                                                                                                                                                                 
           $    (    8    <    @    D    H    L    P  	  T  
  X    \    `    d    h    l    p    t    x    |                                   !    "    #    $    %    &    '    (    )    *    +    ,    .    0    1    /    2    3    4    5    -    6    7    8    9  -t   Ə
ʌt Ə
ʌl Ə
ʌd Ə
ʌ\ Ə
ʌT Ə
ʌL Ə
ʌD Ə
ʌ< Ə
ʌ4 Ə
ʌ, Ə
ʌ$ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ| Ə
ʌt Ə
ʌl Ə
ʌd Ə
ʌ\ Ə
ʌT Ə
ʌL Ə
ʌD Ə
ʌ< Ə
ʌ4 Ə
ʌ, Ə
ʌ$ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ H-MP00L   D   <      K   0 0P    H-M   00 D 0 K p  HFxDFF#F@ w  HxDt   w  8/!Fp5 E(FnF(Fp #.!  < F$* + * F8  FZ %F.ta][)oL)@6c]B;+&
(%%%%%%%%%%%%%%%%" /L|D.L|D.L|D-L|D-L|D
,L|D
,L|D+L|D+L|D*L|D F!" 'F	`|;/>o /FEX #
@/,$,.$ .$T3B&v*F[!]$:L3 *%u !EU5 Ew  Iw  Jw  Jw  Hw  Gw  Gw  Fw  Hw  w  B-OFU0F+O031l37&
D
3XCqCH &OHO FFZHFBIFF FBFDD6mH. #8F#p |  AԂHxDpGHxDpGHxDpGHxDpGv  u  v  v  -A "?&\$0'O.On\+
+pGpp0
  pp(F2* !p  K
 J{DXmZe *KmKepGT10  hjR!  )pGhS!hx*YYx)dܙx)B2
x)BDRYBr`FFhx)ZA &Zx *Lܚ@
 x*@<L x *L@QA ZyAp"`gKhJ{DpXhDhhF -:cHxD)F=`HxDh^H
FxD\HhxD)iZH
FxDYHiixDziWH
FxDtUHixDpTH)jxDjRHijxDf
 OHxD!FLHxDVKHhxDPb{!{ GHxDHFH!jxDBDHajxD>CHjxD8!kAH
FxD2?HkxD.k=H
FxD(<H!lxD"al:H
FxD8HlxDl6H
FxD5H!mxDam3H
FxD1HmxDm/H
FxD.H!nxDan,H
FxD*HnxDn(H
FxD
 3hBp  t  t  t  t  t  t  t  
u  u  /u  =u   t  u   u  Au  Qu  au  ou  u  u  u  u  u  u  u  
v  &v  4v  Mv  [v  tv  v  -Ah ->$HxDiX ($ HxDAKehBHB;FCF 3FȲH"5 xD
C%fdNOD~DDD!hJB
 Ax PKLCPAMRDNEA0v  4v  4v  u  u  u  -COAiFDij !@=vF@)HY )H1xD`E'HAFxD%HYxDah#H
FxD"HhxDh H
FxDH!ixDaiH
FxDiH
FxDH)hxDHihxDHhxDHhxD
 (F    u  u  u  u  v  v  (v  6v  Mv  fv  vv  v  v  F	
JzDhF9H!FFxD@VFH!FxD F@Ž   Bv  Kv  -OFΈF&5HxDb3H1F̐xD̠|hDD5E5 ')h,HRxDjh3C2 @=hFz (!@B "  @0 O05Q.JF@F!F IFPFZF&75BIv  Vv  'v  {v  Jv  FHFFxD<*hci F32I{yDFhh %1F  FDu  
FHFFxD*hci F32I{yDFhh %1F  Fu  -AFChFFmBGi h` hF` F76(`    -AFChFFmBi~h` F` F76|(`     -CFrKFrJF{DjFXh])W"iK 0_$/
@@&@&& $, 	* 
,Ec}YJ(F9FzDXJ(F9FzDVJ(F 9FzD lB!F@F#PJ 9FzDF(FMJ(F 9FzDhkB
!F@FFJ9F zDF(F^_BJ(F 9FzDO@F!F;9F;J (FzDDF:B5J(F 9FzD1@F!FAh(F/J 9FzD&'*J(F 9FzD(J(FP 9FzD%J(F9FP zD3F!J(F9F zD3FJ(F9FzDFB4 FF0*F@FIF#FF(F	@ oF  Yt  _t  ^t  ]t  ]t  Vt  Tt  Kt  It  Dt  Et  Lt  Ut  Xt  St  -OFMFK}DFFU,D  DO 9HxDX0KHD{DxDEڻF2BZx: HFUT1rѸj @JxN)ѴHxD ѲHxD!FRF@ѯHxDH!FxD!FFHxDj
	+@F9FJF#sF FHj)X
h\)  " ( + + 9 @ O U h m s }        h        HxDzhH9hxDӲ
HxDr;hH ++"-"xD +[BHxD 
 Hrr xD ++#-#*zh|H9hxD+zhyH9hxD " uH9hxDsHBF9hxDrH xD;ipH;ixDٲ  j;i  ++ -  ppeHxDXt;icHxD aHCF xD_HxD9hS{h:
\H xD9hS0+:V{hXH9hxDVHxD<N $UHTYxDTNDT1f~D
PFyi0FIi48hBKHxD,LJHJN)YxD( $T1~DFD	PF9i:i0F4;hB@HxDAF
#=H #xD9h:HxDU0hH)X
 T1&E@F9hB; 2  s  s  s  s  Is  bs  ws  s  s  #s  #s  0s  #s  r  s  r  r  r  r  r  r  r  r  r  s  r  r  q  r  r  r  r  r  r  r  r  r  r  -OFhDj	h@F, 'u

)F*FFKF 6HxDFYex!xA xx@"m ; xxB % 1@yy`y"yC!B %xECx@"ZCUsY
ò+МFE|I[ hPUP:FI[ yD0R FQF\:F @F1F+FtEhBHF*  iq  q  pFhFjH!xDHaxDHxDHhxDHxDAx(F1FE(F!F(F!F2F(F!F2Fp@ p  p  p  q    K-O{DFM| }DF Ih ] HFahz`dbaF 8:FHF_!FphKyh{DFh (9ѢHRFxDZHYFxDVH!FxDPHqhBFxDJh!HxDtHxDpHF1FgHxDCx + JXhD
 UT1z(@  F<  \ {añPFFHYFxDXFTPFFHYFxDXFHA|HYFxD F)!(tJxIXyD0]0FtHYFxDXF*qhHpIyDoIyDoHxDrhmIyDlIyDlHxDphSK iIyDhIyDhHxDphfIyDeIyDeHxDshcIyDbIyDbHxDph/F_HxD^HxD!x()EJ[IXyD0"F6 FO 
WJzD:a0 UH
fxD`F?0F[FkFk[.L.	F;(FF8i1Fz``zhh8(HBI(XyD0$kV "XFp QF
FhF`BhF3x)+yi0HxD0HxD`F Ft@Fp$F    p  n    p  p  p  p  p  p    p  p  p  p  p  |o  }o  p  do  eo  p  Ho  Io  {p  0o  1o  up  o  o  ip  dp  lp  \p  dp  }p  p  p  #p  LK-G{DFF|F Ih  (FqhqF(F89F(F!F`h9JzDhF8HBFQFxD6H9FxD4H1FxD3Hah*FxDN+L/H9FxD0F6F,H1FxD|0F`h 'IyD'IyD'HxDnahI$IyD$IyD$HxDbbh!IyD!IyD!HxDVchIyDIyDHxDJ`hFHxDBHxDn(FGf    m  %m  7m  Gm  n  m  l  l  n  l  l  n  zl  {l  m  bl  cl  m  m  xn  K-O{DFF<OAi|DF wh ij !@M 6F0HQF'FxDnR(FxFL+@D|;/
ؒBFI[	 yD0>IyDh*9 O F/!;8F  :F.!8p/( ( 98FxHxDH9FxD   p8F !phhKF(FmFO 	K{DhйHQFxDlHAFxDhHqh:FxDb ЇHIFxDZHxDH@FFHAFxDN@F HFF}HAFxD>@FqhHxIyDxIyDxHxD0rhuIyDuIyDuHxD$shrIyDrIyDrHxDphFoHxDnHxD<h lHxDhٹj 	O 
	HBF(F?  E_HxDO !iBF(F
"hEVK{DhUHxDO 	ciJF(F		ahEMJzDhLHxDO O	i(F	!BFhEBIyDhAHxDO O	iBF(F	 hE6is(F1FtF3JzD3HxDh92H1FxD~
 /JzDh+.HxD <F F8FZ  N  m  m    tm  um  4  Gm  Um  em  xm  m  m  m  .j  /j  Gk  j  j  [k  i  i  Ok  Jk  Rk  \  l    l    l    l  k  V  kl  >  rl  -AFhNFKxx1@C'F H ## CDxD{C,`wk  -OFF
hhFAih]Yh1F*FF.HxDF))HxD/)0)0)%#HxD .*FhxA !HF %@F5UE
 4\E9`& & $x0 H+DDok  ok  bk  k  k  -OF`jhD
%THxDxjx+xA'QFG  '@	bLH	xDFIHxDBHIHKIHyD{DxDwiy0F\YX$  9F
 ?HxD&Y (aСi*		ja
@ ! dF85H[ 1PK	F		hhH!qE(HO hxDO
iBF0F	hEO hO
i0F	!BFhE F7B   j  j  j  Gk  j  _  j  j  sF&HF "xDA|1bhF#H2xD!K{DXy F!6x- F FN~Dh)HxDN %~Dx F)F5)F F5abhnB0HxDIyDh*
HxD|  j  r  R  j  >  g    i  -AF#K{DDX| !H1FxD4 O0FjF #Dh 
FH:y  *"" FPIO5HXxD1V?x'HxD>0F!Fd=FhF, F O5(F Ľ  ʸ  ~i    Vi  _i  K J{D HxDX4!F"IJ FyDzD2!F
 @H!FxDH!FxDH!FxDH!FxDH!FxDH!FxDH!FxDH!FxD@$  i  >i  i  zi  i  i  i  i   j  $j  Gj  -O"fNF
F~D !0FcOcHDcI#xDyDst &DDDD& F\J F)FzD (jc8(R 0DG I   Q   [   c   m   u         "  @K!{DYp  =J#zDp q9HY 
h9FF|5K{D`AFFr! (0JzD`Ptt"Zq)J,IY0yDh`)OYp8hB
'N(I(JY yDzD&0@%K{DxQyBHY !H1xD V U# Y9`C;hB0  ^  P  j  j  >  8  *  (  i      p  Z  @  i  g     i  -C3MFF}DFP ,I.I:FhX.I0yD@!0FOr 	$ h"J$IyDFX2F01DAFFPHBFI;F(XyD0JFKBFI$XyD;F00F	$$ FHF , F r  ?i  9i  Ji  >i  =i  -OFsMFsK}DFFU 
 (ܸ @ŀjH)XjH1xD@hI88yD (V ,/dH!xD@aK!F "{D ^H!xD@[K!F "{D RJXHXxD1tUK "!F{D r8F!FBF(Fȱ(
Ѹ CIKHiXxD1 `(^<KFHXxD1V'FO	O 	 !8F ڸ T h.I:FFhX7I0yDE1F('J2IXyD0 "3F aFPH*I(XyD0:FO
 BF3FF  F8K"FIXyD0PF
hB	XFO
O
t   h  h  h  h  h  h  h  i  h  h  h  h  h  h  0
FF#0 @<)F
<M08FF h" F(` Fh` F` F` 8FF h"FX F/h F7`p` /`FF h"Fx F7h Fh` F/`` 7`-OFhFE  )F "F:F $   
	   F   (З   %a ea ХaeD
 	 / % 'aI}B#%B*
 	O
 'I}B*
 	O
 'I} -7B)7
 	 'I}#i0FAFKFE7F (bi0FAFKF77Fi0FAF
2KFC7Fi0FAFKF
R87F F,FF F	  𵅰F
{bYchhL|D;F Gf  7FF IJ+FyDzDF   F0@ e  e  FFXh8jS S_bF  -OFFh
F`j F(
 ! 

 O
O F  8 a{` v.jmFO	H#xDF* 	hsQ`  O 
 VF6   F(HEټ hj@F|  D*J*		XO	#	D	 `s

FE &Oziza	 R*0DG s  )   5   A   A      	   6 D )aE;naF2Fxn #F@FOD  ;h 8R  , Q  _aFԺX`@F;`;h`3 !`0 )aEI;nFxn2FaF #F
 "sm })aE1`FX )?*Xh (?&{ *UP

!PF !6PF Dm +?@xn1FJFG (?9 &9n#Fxnh 1FQ6(B4FPe  bA`k`Kl`KmamBalaKnakbpGQpGF  FF"j:@Q  o)-AFFFQI QJyDzD4 F (  !4"jII F"yD (/FI "yDp`y#y  yy@IyD@JzDi,` F1F*F  (a)hhhBؤ	6I 6J yDzD3FvO(F!F~lh F (E#jB.* FFhB  %I%J yD zDP(@F Z$BF  IJyDzD<"n
I J yDzD.I JyDzD$(FG %(FMb  0c  )c  a  a   c  a  b  }a  b  Ua  b  9a  b  %a  b  8@PABC,L@0pG8iiiE  FF)Fb8@g  -OGhFFiEBda[BI BJyDzD_+ .FDDE>I >JyDzD
B	;I ;JyDzDCBS@E
4I4J  yDzD19$ ( "@ bF& YF#FzFF4hHB {ОI JyDzDf  sh!  EҶNBIB	 DNEAPKLCPAMRi`  fb  U`  b  I`  bb  1`  hb  
`  pb  _  |b  K{DS  pG   8FCh
F#B hx-  ! `a`8(F~! 8 ! A``rpGFFhBYh) "Z``pG-OFhBhO i :!jnoXF7F %O	E F58DB F. HF P("O +H FF(FYFXF-E)# F;F(F    
KJ{D0XF#h!(FF!"hB#0$   #`$`
hIhi1hjC`h`hFhB@h B2`pGO0pGFCF#hh@    DhhBӁB؊BӂB	  IJyDzD6    I]  l  
FhF
K!F{D2F8\ 3C #FB.`l  Kp{DFF%hO  p(FpK50F!{D*F (pl  l  Kp{DFF%hO  p(FpK50F!{D*F (pxl  Kl  K"F{Dw ( F  ?l  ABF=(0(^*8R(,)(+а_J)B B6AB($۳ _'BcE8%BB*&PB)AB,(      @  OpO pO`O `OPO PO@O @O0O 0I JyDzDT    [  nk  dK"FF{DF wh /0з _𓀲 !OF(h"h mB WJWIzDWKyDWJ{D zD1 ѓB  QIRJyDzD314BO F , h /2з _k !OF(h"hmB CIDJDKyDDLzD{D |Dg 
ѓB  =I=JyDzDY14BO F ,Ph .Nж _@I #'F(h"hmB/K {D/I/JyD/KzD {D_B	  *I<F*JyDzD(14 'BF!%K(F!F{DO (c K(F!F{DC (	K(F!F{D8 ( $ F9k  [k  ![  @k  k  [  Rk  Z  j  /k  =k  Z  ?k  j  QZ  Sj  j  3Z  j  i  i  i  -C $FF#F-hY~h-m	BK  {DIJyDKzD{D4EI JyDzD*  
&A!_E5@}`34cE 1j  IY  Ki  j  /Y  *j  F %RhhmB ,H,I-JxD-KyDzD {DTh!Ng &@ 6&fE	#I #J+FyDzD  +SvI J#F yDzDKN&@V`h?I J#FyDzDCI JyD zD52B  
    i  X  h  i  X  i  yX  i  WX  i  IX  j  K{DFF8`%h -0h3lBK  {DIJKyDzD{Dj  B8F
'KE0F9F2{D ( #i  i  W  g  i  i   )KF"F
F{D (E0h*hlB "H"IxD"J#KyDzD {D%hih?КB  JzDIKyDJ{DzD+iZЀkB IJKyDLzD{D |D $
!B"+G`@i` F Fp5g  [i  5W  9g  qi  3i  W  \i  
g  V  f  Pi  bi  "KF"F
F{D (63h)lB  IyDJKzDI{DyD hlB HIJxDKyDzD {DjhkB  IJKyDLzD{D|D $ F Fp Uf  {h  [f  h  MV  h  3V  7f  h  V  f  h  h  !KF"F
F{D  (51h*lB  JzDIKyDJ{DzDhB HIJxDKyDzD {DjhkB  JIKzDLyD{D|D6 $ F Fpe  g  U  g  e  g  qU  ue  Jh  Ye  MU  h  g  KF"F
F{D(3h)hkBK  {DIJKyDzD{DhhlBJIKzD yDL {D|D $ F Fp d  \g  T  d  g  d  T  g  f  KF"F
F{Dy3h*hkBI $ yD
J
KzD
I{D yD F Fp Cd  f  Md  Xg  ;T  sBFF*1 dM %@ub$>I JyDzDxBJx  IJyDzDv  xL+[+  IL#JyDzDI JyDzD` |S  g  S  g  S  g  S  0g  -OFF &8a3Ho
xDShh
B 	 JF(FaF (CaF;3"I "J yDzD4FB(FIFGkhF 0I J yDzDhE
I JyD zD3F   )(i!FZF6dFB`  f  S  f  R  f  R  f  -A
#0AFT@F ,}JI JJyDzDBEHI HJyDzDFK#+dcccccccFF ,X<I <J;FyDzD Fd9I 9J#FyDzDZVx (4I 4JyDzD)x2 (0I 0JyDzD@??L4DB")I )JyDzD/Vx*%I %JyDzD3F!?FX~(I JyDzD5 %@qBF;CI J+FyDzD$   9R  Zf  )R  [f  Q  Kf  Q  df  Q  af  Q  Gf  Q  Cf  mQ  f  MQ  	f  %Q  f  -ChF
#!F0`.I JyDzD,!F
tpF/I JyDzD?1٬I J3FyDzD  B!F
W ѣI JyDzD爱+hAkBӞJ zDIKyDJ{D zD7  'B &Ow	 
    u f f    "!F
!F
@!F
0B Y!F
 ) Ȁ*h8kB vHvIwJxDwKyDzD {D!F
 )  ( *h8kBjIyDjJjKzDjI {D yD
!F  * B@!F
0 +zиBٍ`u!F
 )kЈ*h8kBQJzDPIPKyDPJ {D zDU!F
~ )NЈ*h8kB EHFIFJxDFKyDzD {D8!F
a )1 (/*h8kB*;IyD;J;KzD;I {D yD!F
C+hBkB1I yD1J1KzD1I{D yD " +I +JCFyDzD *? P  e  {P  e  gP  e  ?P  e  e  P  ~e  `  d  mO  q_  d  d  5_  d  #O  4d  N  Dd  ^  c  {N  ^  d  c  I^  c  7N  c  ^  c  M  M  xc  𵅰hFnnB>DӱBI J#FyDzD
0 `+hBI JyDzD    M  b  L  b  sF@hF@#I #JyDzD F<(F!h"i#F(I JyDzDah #bi(F(Fh#iF@I JyDzD5F(Fhi #F8I JyDzD % FF
 (F| L  b  L  b  mL  b  KL  b  h@i	iJh"@iIi
hi
h@iih2@ii
hCi32 pGO0pGKhCi	iih*@i	iBi21 pGh +O0pG  B
FFI J yDzD+FB	I J#FyD zDP#$O3
;F@  K  b  }K  !b  K-O{DFF ( "eBh  I+FJyDzD	+ٓB	  IJyDzD  q )_ * X
40;I JyDzDh  3C5"9a9bwhzF ѩI JyDzD8O|`E٦I J+FyDzD 
3#8i
h`;jB


#

O w
 IFxb$  j F)I JyDzD > ?وI JyDzDf (CB xa "zahFA(<$ IF+|I |JyDzD1hlByIyDyJyKzDyI {D yDX$ IFF*qI qJyDzDbh;BmI mJyDzD {iӱ$ IFF*eI eJyDzDBhBbI bJyDzDfyjEl  Zh0F3 CVK{DAF  (AO 	HF=Ql1<B1HI HJyDzD+VEDI DJ3FyDzD "hP" E2BB<I <JCFyDzD1PE			8I8J yD zD  E:i hF(F/K0FH{D*FQ (,F[  
K  a  J  a  J  a  J  a  kJ  a  I  Za  I  Oa  I  (a  /a  Y  a  I  iI  a  SI  
a  )I  `  I  `  `  H  `  H  `  aH  `  IH  `  `  sBFF i	hoibihj )5hE; + F)F (
I J#F yDzD   0| G  _  FF@i	hCFF@
I 
J;FyDzD 
ikh"hB	  IJyDzD     F  u_  F  u_  FF@i	FiF(I JyDzD
hiahF1F@I JyDzD;Fi"B
	I JyDzD   XhahBEF  Y_  aF  b_  ;F  O_  FF@i	F'F($I $JyDzDhiaF$F(I JyDzD
hiahFF@I JyDzD;F`i"B
	I JyDzDN   XhahBE E  ^  E  ^  E  ^  yE  ^  -Oh
F"F9FO`.7I 7JyDzD+hlB4K{D4I4JyD4K zD {D19F"F`F .E-I -JyDzD!9FZF0F3&I &JyDzD(hkB#J zD"I"KyD"J{D zD   ѡE	I JKF yDzD(F 06O 8F &FFVE	D  h^  \  D  T  nZ  D  H^  D  B^  Y  }D  Z  }T  WD  "^  KJp{DF3 ( F;[-    * * 2  :          2 :      > ] {  {     +fI fJyDzD2+
cI cJyDzD+aI aJyDzD3+]I ]JyDzDZ F"hkBWNWJ~DWIWKzD yD {DX+SI SJyDzDZ F&h3lBz MHMINJxDNKyDzD {D:+JI JJyDzDaZ F"hmB\EIyDDJDKzDDI {D yD+AI AJyDzDCZ F!hmB> ;I<H<JyD<KxDzD{D -+8I 8JyDzD$ F |	+4I 4JyDzD Fu໱0I 0JyDzD
+.I .JyDzD-I -J+FyDzD   p ]  kC  |]  UC  z]  EC  ]  -C  ]  X  S  C  X  B  ]]  _Z  B  R  TX  B  5]  wS  R  X  B  wB  ]  WB  {S  YR  W  9B  \  #B  \  B  \  A  \  A  
]  𵅰F
h#0@FI JyDzD0F5FH	I 	JyDzD
 F %B
A  B\  @  ?\  ȿpM
KF*FF{D#x+	I 	JyDcxzD0F)Fp@  pZ  @  \  	 pG-CF
FJ)hAF i i  O biV<i03BUVA i6 (IE  (C  O biV<Pi03B1VA i60E    &biU<Pi03B UA i65(FE ѽ  -OF@hF0F!F#h RFP  +4%,
 +;ѧhO	piZ	Bi21E %
 /9hO	piZ	Bi21E %
 /8 F
B(F@ch QO qi;'iizY=02E %ui;gi)iX10 ^:?0iB
	h (Ѱ?0iB
	h (ѱ  -O &FFFT'F< Bh (840eh
jMjx*ݨx( cx (B2
+y+ȿkyBNRȿBrgE
  	ICF	JyDzD8F6 'FVE	 0 =  tY  FFTk %8iAh5B#F FF  -GFh
F@i1FFF(iI iJyDzDi"v	Q&0C A& `I `JyDzDCFm iAhY (  iBiiP (  iO RiG (  iBi> (@`iKFF0HI HJ;FyDzD9hfi!i/h .\;jWR &F`i*FF0:I :JSFyDzD6NE#C  "B qE`i/I/JyDzDF ?2B3KEӾch !@-MFx F1FBа0GBGA '0F6/I JyDzDki.hah FB0
hK|I JyDzD    o=  Y  C=  Y  <  X  <  X  g<  }X  <  AX  ;  )X  -CFF@i	hhAF(i| tahhi"F0x (iki66IiiFF ,I ,JyDzD$@FI@F9F "} (@6xF$I $JyDzD8F6iKZh`hBI JyDzD0F'mi	1iFxtFCiЅB I JyDzD  
 %;  W  :  ~W  :  sW  :  DW  I"yDFFxbxxx JI#xzDyD   O0F"D9F퐱0Fy"`byyy 	J
IzD#y yD  *W  W  /:  lc  
W  9  -OF
F,  ! ". F (@' I J yDzDJ "I J yDzDX I J yDzD7jHjB!knnйI JyDzD;k, YK{D ( ݃;k, YK{DF ( ̓cjbo+	p!J  IzDyDp+ p"I  JyDzDj
T
)JnEa;b@ j6@IsEӖI J yDzDjjEӒI J yDzDsF(
I JyDzD~9jF:b ( =68нi IJyD+zDgV<Ca @FB}I }JyDzDOP(ByI yJyDzD (B@jk +@𝃁k )@𙃝jBl *@l +@𜃠jl (@𣃊l *@🃣jYm )@m (@𢃦jm *@𩃙m )@𥃩jhn (@+n +@𭃥WI WJKFyDzDR:k, SKR{D ( j;k9?3  KIKJyDzDSbjB	GI GJyD zD(A B .. .  y. Հ. ံ_@BvE SAfE ' _ -BB@4BB XHQB `KB@yfxV4UUU9  V  9  V  w9  
W  [9  W  !W  W  W  9  8  W  8  V  8  W  8  W  U8  *W  +8  $W  8  (W  7  V  V  G7  V  -7  V   &yDzDU &+FyDzDv=kkjb PT=yDk)F (BFkR x&PT=zDlBF ()F[lAj(X&lzD)FBF , l1 @PT=yDm)F (BF[m   &PT=zDmBF ()Fm &PT=zDnBF ()F[n
 %yDzD %jCkB % yDzD+F9k"HY U+b]F#(  )FBF, ix5 (A {D, BF)Fh#(  )FBF, h\(T5!,  BF)F{DN ( )F, BFhB,5"( , )FBF{D4 ( B, BF)F{i&# 4( )FBF, {D!( , )FBF;i4  , {D()FBF<F $3FyDzD=$ 9j3FzDXzj	92zb - Ɓ?@ā FL!F(FR=d  T
@iXX4TxDT{DPyDP$ &|bDzDa;bDaza  !O2 F, !FKF"O O>, PF4!F{D  !O2 F, !FSF{"O O>, PFK!F{Dm  !O2 F, !FiajFl 0{`A	  !
  

@FDO3"O !F|h, K"F{DnD FF?"O O>, P!FFi%  !O2 FK, !F{D"O O>, P!FF;j  !O2 FK, !F{D2FI JsFyDzDrLJ yizD5<h $65txjB@〻 I JyDzDTI JO yDzDLk;ز#jBޫջ  FFJ"jh:DBFثc{cK  !F8dcpxd{Dd, <cc (ʫ4 i  S, K{D (u5 #}b!.FFFA9j	B"I JyDzDD /(B?\I JyDzD7 "(B?Y}I }JyDzD* (B?VyI yJyDzD (B?StI tJyDzD (B?PHFc@SmI mJyDzDT
 "jMb9}DhH=bhKxDhJiI{DiMzDyDa}D{a:a``<O ?F=~jjV\VB6lM*5A Eؾ_	?fؾ?F?P?tdx _?	AE?QEѮB EޮBEǮF 5  U  5  U  _54  U  4  T  S3  C  S  y%3  ]1  A  *R  1  ,R  s1  RR  R  @  0  Q  0  Q  0  Q  i0  Q  O0  Q  +0  Q  0  =50
FI"FyDI F"yD0 F)F0@.bxxx JIzD#x yD 0 O/  K  O  .  hF;`_ٱ `̲dx?`? @3C ?BF  x2x +O0  xIFhF   F++3 ++(+((    F Po,    B(bE
ز _	BOsB3B   hFxH	I`"[yDQ# B   pG w  7FF  0Yx[)( D:B9Zʲ*;L!L@,S(.[x 8  ) &[x# # #x/).)
;)଱眹CxO OE	CB# (  > x<+0$  $
x>*
 lKx 8  l (F  F !
F}FH xL(а[QBQ  F( xLJBR F xV8   Բ,DtfK{Dh^h-]b7]kb+ *  # * , 8 0 8 3 3 8 8 < C J J R R Y _ c c c l l    l  '`B6 `N`B#`0)
` 1`B-`xK`@ _`xJ` X'`K` P&`J`@I@@C`^F``CCBJ`Q`DL`+ I-	#I #JyDzD@J#Kb8b&aaOaa)I JyDzD@0
`FN`a
` "@LC@F2C#
I 
J+F yDzDvRx  C*  DL  *  .L  )  L  pFhx(\\x,fܜx,@0x,@FPy\@p,`	B,y) #ppF
FFh#h
Bؙ)2y* #;p-A"F !F: !"F8F4!F "F8F.aj&I &JyDzD-5$I $JyDzD* h I J+F yDzD ")F (	IJyDzDh  `  `PPO0  "# )FCF (  qK  (  K  (  tK  (  K  -GFLFF@ ,`o RoS\"
   9FFF0V hZ
I
J;F yDzD v0F  4``  '  J  7FhBhEB h#FIJyD zDP$c *""# $al`hh hO0> }'  J  7Fhh˱h\ (ڥhh hIJ+F yDzD   ``> '  J  -GFxFtFFDD(@F1F"F2CF#h+h FIJ;FyDzD  B  IFRF;Fvd , ( F &  J  &  8J  (K-CF'J{D MFFX
 A1hF`& O4&FO F2FHFBF&nh*!I J+F yDzDK@F*F{D d , FO0
 C3h:hBB
 Mbp  %  I  I  CxxxxCAB bB pGR:F *iB jP2I  IJyDzDBO2Fa%  }I  F h (  jO3  c`#`aa b  -OF	F$" !	# "  # @ FV(q NJ #BsHFHFdF ( = $ " #   6P hIJyDzDF "  YFC@فh+ hIJyDzDF  %XFO 
XIB@ĀE 	e   "F+FFFBBr hvIJ#FyDzD    YFJF?F@Xh*@R hT}I~JSF yDzD pL

0
P+@v(FB@p{rI rJcFyDzD X lI lJyDzDLVE
R%W"dI dJyDzD'A & %oO7GBu#oO0@#4gBuRI RJyDzDKaF	JF^HJI JJyDzDO50UFXF -@5!O LF0! (	(   FkIB0I 0JyDzD	
.B-I -JyDzD+F* R BF'I 'J yDzDazN#E I  JyDzD    PKPKPK$  H  g$  H  
$  H  #  cH  #  VH  u#  dH  O#  NH  "  H  "  H  g"  G  Q"  G  /"  G  "  G  g#C'B #!   B #0F:FpJI JJyDzD>+O  3FsE>   0   	Q0  *	` .7gD[E
0I 0J yDzDI5UE,  H(?8'E?p:#I #JyDzDy
izGs,y
#*zL	# B*
j $nyyF b)}FD h}EBAcT@F{O0
Y!  8G     F     F  8$"F
FF !Z ! F
Fb (dhK` h8!F*F8@eO08-AFFF #FF 3 Bi?j8B	1F*F| P04W4  (ѽ-OFuLFsK{DY#h (À @Q0#$<C (
 *" `% (` F0` F    / 𕀫  FEPI PJyDzD  F "BFII IJyDzD"  $Aqh+AI AJyDzDSFYj4JB<I <JyDzD# "A #7I 7JyDzD7 69 8I#DA ""F`FBq	*I *JcFyDzDE'I 'J yDzD
 	E
!I !JyD zDcF|   O0 8FhB(Џ PKxi    E    E    E  e   E  I  D  
  D    E    E  -OF
FF (tI tJ+FyDzD !	  F)FF  hRF	<	B	gI gJyDzDO0B@F!hD (  $hO @bFO @^F .  ( QFP8"
D#
o8#RF
O K80FHI HJSFyDzDGI GJyDzDfD  O4FO I1FJFF0_~h)X8I 8J yDzD;
 !
(FKF

.I.J yD zD"J(Ѳ OB $
@F)FZSFjp
8 I JyD zDbO4
O40F(F ,?OAKEФ5  D    D  cD  q  5D  e  cD  D    ?D    2D    +D  
KBF   `C0 (  #` ` * 7htheS%0B  	I	JyDzD	hC$hh# hQ`>   C  p "hh<[V#PB\Zh2 pBO0p7F
FB ( 
I 
J+FyDzDI+FJyD zD    >U  ;C  C  RC  xGF ԉxGF xGF xGF xGF $xGF xGF  xGF |xGF ༊         Android    0D  P0\lp4t:̛hpP
ة,
 4`$P|xL^|̸Ը й"&<T@T  0d$<
,,84tvf@4h X.x  @$T      $,X0             ?                 0x%04x - 0x%04x reg=%d %s %s %s
         0x%04x line=%d
 byte char double float int long short void boolean UNKNOWN "protected" "private" "package" "public" Optimized DEX file header: magic               : '%s'
 dex_offset          : %d (0x%06x)
 dex_length          : %d
 deps_offset         : %d (0x%06x)
 deps_length         : %d
 opt_offset          : %d (0x%06x)
 opt_length          : %d
 flags               : %08x
 checksum            : %08x
 DEX file header: signature           : %02x%02x...%02x%02x
 file_size           : %d
 header_size         : %d
 link_size           : %d
 link_off            : %d (0x%06x)
 string_ids_size     : %d
 string_ids_off      : %d (0x%06x)
 type_ids_size       : %d
 type_ids_off        : %d (0x%06x)
 proto_ids_size       : %d
 proto_ids_off        : %d (0x%06x)
 field_ids_size      : %d
 field_ids_off       : %d (0x%06x)
 method_ids_size     : %d
 method_ids_off      : %d (0x%06x)
 class_defs_size     : %d
 class_defs_off      : %d (0x%06x)
 data_size           : %d
 data_off            : %d (0x%06x)
 class lookup hash table register maps (unknown chunk type) OPT section contents: (1.0 format, only class lookup table is present)
 Chunk %08x (%c%c%c%c) - %s (%d bytes)
 Trouble reading class data
 Class #%d header:
 class_idx           : %d
 access_flags        : %d (0x%04x)
 superclass_idx      : %d
 interfaces_off      : %d (0x%06x)
 source_file_idx     : %d
 annotations_off     : %d (0x%06x)
 class_data_off      : %d (0x%06x)
 static_fields_size  : %d
 instance_fields_size: %d
 direct_methods_size : %d
 virtual_methods_size: %d
     #%d              : '%s'
 <implements name="%s">
</implements>
 <any>       catches       : (none)       catches       : %d
         0x%04x - 0x%04x
           %s -> 0x%04x
       positions     :        locals        :  <unknown-index> <no-index> <index-varies> // thing@%0*x %s // type@%0*x <type?> // type@%0*x "%s" // string@%0*x <string?> // string@%0*x %s.%s:%s // method@%0*x <method?> // method@%0*x %s.%s:%s // field@%0*x <field?> // field@%0*x [%0*x] // inline #%0*x [%0*x] // vtable #%0*x [obj+%0*x] <?> %06x:  ...   %02x%02x       |%04x: packed-switch-data (%d units) |%04x: sparse-switch-data (%d units) |%04x: array-data (%d units) |%04x: nop // spacer |%04x: %s  v%d, v%d  v%d, #int %d // #%x  v%d  %04x // %c%04x  v%d, %04x // %c%04x  v%d, #long %lld // #%x  v%d, %s  v%d, v%d, v%d  v%d, v%d, #int %d // #%02x  v%d, v%d, %04x // %c%04x  v%d, v%d, #int %d // #%04x  v%d, v%d, %s  #%08x  v%d, #float %f // #%08x  v%d, %08x // +%08x  { v%d , v%d }, %s  v%d, #double %f // #%016llx  ??? %06x:                                        |[%06x] %s.%s:%s
 GLITCH: zero-width instruction at idx=0x%04x
       registers     : %d
       ins           : %d
       outs          : %d
       insns size    : %d 16-bit code units
 "true" "false"     #%d              : (in %s)
       name          : '%s'
       type          : '%s'
       access        : 0x%04x (%s)
       code          : (none)       code          - <constructor name="%s"
  type="%s"
 <method name="%s"
 bad method type descriptor '%s'
  return="%s"
  abstract=%s
  native=%s
  synchronized=%s
  static=%s
  final=%s
  visibility=%s
 > ERROR: bad descriptor '%s'
 ZBCSIFJD ERROR: bad method signature '%s'
 <parameter name="arg%d" type="%s">
</parameter>
 </constructor> </method> <field name="%s"
  transient=%s
  volatile=%s
 >
</field> unknown Trouble reading class data (#%d)
 Malformed class name '%s'
 </package> <package name="%s"
>
 Class #%d            -
   Class descriptor  : '%s'
   Access flags      : 0x%04x (%s)
   Superclass        : '%s'
   Interfaces        - <class name="%s"
  extends="%s"
   Static fields     -   Instance fields   -   Direct methods    -   Virtual methods   -   source_file_idx   : %d (%s)
 </class>         (differential compression %d -> %d [%d -> %d])
       #%d: 0x%08x %s
         (no map)         (unknown format %d!)
         %4x:  %02x No register maps found RMAP begins at offset 0x%07x
 Maps for %d classes
 %4d: +%d (0x%08x) %s
 NOTE: method count discrepancy (%d != %d + %d)
     direct methods: %d
     virtual methods: %d
 Opened '%s', DEX version '%.3s'
 <api> </api> Processing '%s'...
 ERROR: DEX parse failed
 Checksum verified Copyright (C) 2007 The Android Open Source Project

 %s: [-c] [-d] [-f] [-h] [-i] [-l layout] [-m] [-t tempfile] dexfile...
 dexdump  -c : verify checksum and exit
  -d : disassemble code sections
  -f : display summary information from file header
  -h : display file header details
  -i : ignore checksum failures
  -l : output layout, either 'plain' or 'xml'
  -m : dump register maps (and nothing else)
  -t : temp file name (defaults to /sdcard/dex-temp-*)
 cdfhil:mt: plain xml %s: no file specified
 Can't specify both -c and -i
 PUBLIC PRIVATE PROTECTED STATIC FINAL ? INTERFACE ABSTRACT SYNTHETIC ANNOTATION ENUM VERIFIED OPTIMIZED SYNCHRONIZED BRIDGE VARARGS NATIVE STRICT MIRANDA CONSTRUCTOR DECLARED_SYNCHRONIZED VOLATILE TRANSIENT Unable to open '%s' as zip archive
 Unable to create output file '%s': %s
 classes.dex Unable to find '%s' in '%s'
 Extract of '%s' from '%s' failed
 ERROR: filename must end in .dex, .zip, .jar, or .apk
 dex /tmp /tmp/dex-temp-%d /sdcard /sdcard/dex-temp-%d NOTE: /tmp and /sdcard unavailable for temp files
 dex-temp-%d Not Zip, retrying as DEX
 Zip has no classes.dex
 ERROR: unable to open '%s': %s
 ERROR: Unable to map '%s'
 ERROR: Failed structural verification of '%s'
 WARNING: unable to remove temp '%s'
  dalvikvm Invalid debug info stream. class %s; proto %s this V Z B S C I J F D Ljava/lang/Boolean; Ljava/lang/Byte; Ljava/lang/Short; Ljava/lang/Character; Ljava/lang/Integer; Ljava/lang/Long; Ljava/lang/Float; Ljava/lang/Double; too short to be a valid .dex dey
 bad opt version (0x%02x %02x %02x %02x) File truncated? stored len=%d, rem len=%d ERROR: bad checksum (%08x vs %08x) ERROR: bad opt checksum (%08x vs %08x) ERROR: stored file size (%d) != expected (%d) ERROR: DEX file has no classes in it, failing Unaligned opt data area end Undersized opt data area (%u) Bogus opt data content pointer at offset %u Opt data area problem for chunk of size %u at offset %u Unknown chunk 0x%08x (%c%c%c%c), size=%d in opt data area Bogus opt data start pointer nop move move/from16 move/16 move-wide move-wide/from16 move-wide/16 move-object move-object/from16 move-object/16 move-result move-result-wide move-result-object move-exception return-void return return-wide return-object const/4 const/16 const const/high16 const-wide/16 const-wide/32 const-wide const-wide/high16 const-string const-string/jumbo const-class monitor-enter monitor-exit check-cast instance-of array-length new-instance new-array filled-new-array filled-new-array/range fill-array-data throw goto goto/16 goto/32 packed-switch sparse-switch cmpl-float cmpg-float cmpl-double cmpg-double cmp-long if-eq if-ne if-lt if-ge if-gt if-le if-eqz if-nez if-ltz if-gez if-gtz if-lez unused-3e unused-3f unused-40 unused-41 unused-42 unused-43 aget aget-wide aget-object aget-boolean aget-byte aget-char aget-short aput aput-wide aput-object aput-boolean aput-byte aput-char aput-short iget iget-wide iget-object iget-boolean iget-byte iget-char iget-short iput iput-wide iput-object iput-boolean iput-byte iput-char iput-short sget sget-wide sget-object sget-boolean sget-byte sget-char sget-short sput sput-wide sput-object sput-boolean sput-byte sput-char sput-short invoke-virtual invoke-super invoke-direct invoke-static invoke-interface unused-73 invoke-virtual/range invoke-super/range invoke-direct/range invoke-static/range invoke-interface/range unused-79 unused-7a neg-int not-int neg-long not-long neg-float neg-double int-to-long int-to-float int-to-double long-to-int long-to-float long-to-double float-to-int float-to-long float-to-double double-to-int double-to-long double-to-float int-to-byte int-to-char int-to-short add-int sub-int mul-int div-int rem-int and-int or-int xor-int shl-int shr-int ushr-int add-long sub-long mul-long div-long rem-long and-long or-long xor-long shl-long shr-long ushr-long add-float sub-float mul-float div-float rem-float add-double sub-double mul-double div-double rem-double add-int/2addr sub-int/2addr mul-int/2addr div-int/2addr rem-int/2addr and-int/2addr or-int/2addr xor-int/2addr shl-int/2addr shr-int/2addr ushr-int/2addr add-long/2addr sub-long/2addr mul-long/2addr div-long/2addr rem-long/2addr and-long/2addr or-long/2addr xor-long/2addr shl-long/2addr shr-long/2addr ushr-long/2addr add-float/2addr sub-float/2addr mul-float/2addr div-float/2addr rem-float/2addr add-double/2addr sub-double/2addr mul-double/2addr div-double/2addr rem-double/2addr add-int/lit16 rsub-int mul-int/lit16 div-int/lit16 rem-int/lit16 and-int/lit16 or-int/lit16 xor-int/lit16 add-int/lit8 rsub-int/lit8 mul-int/lit8 div-int/lit8 rem-int/lit8 and-int/lit8 or-int/lit8 xor-int/lit8 shl-int/lit8 shr-int/lit8 ushr-int/lit8 +iget-volatile +iput-volatile +sget-volatile +sput-volatile +iget-object-volatile +iget-wide-volatile +iput-wide-volatile +sget-wide-volatile +sput-wide-volatile ^breakpoint ^throw-verification-error +execute-inline +execute-inline/range +invoke-object-init/range +return-void-barrier +iget-quick +iget-wide-quick +iget-object-quick +iput-quick +iput-wide-quick +iput-object-quick +invoke-virtual-quick +invoke-virtual-quick/range +invoke-super-quick +invoke-super-quick/range +iput-object-volatile +sget-object-volatile +sput-object-volatile unused-ff Bad offset range for %s: %#x..%#x data..data + size set..set + 1 item list..list + 1 item..item + 1 Unknown map item type %04x Bad index: %s(%u) > %s(%u) (item->fieldIdx) (state->pHeader->fieldIdsSize) Out-of-order field_idx: %#x then %#x (item->methodIdx) (state->pHeader->methodIdsSize) Out-of-order method_idx: %#x then %#x field->fieldIdx state->pHeader->fieldIdsSize Field in wrong list @ %d method->methodIdx state->pHeader->methodIdsSize Method in wrong list @ %d Bogus method access flags (synchronization) %x @ %d Unexpected zero code_off for access_flags %x Unexpected non-zero code_off %#x for access_flags %x pTypeList..pTypeList + 1 (pType->typeIdx) (state->pHeader->typeIdsSize) pType (item->classIdx) (item->superclassIdx) (item->sourceFileIdx) (state->pHeader->stringIdsSize) (item->protoIdx) (state->pHeader->protoIdsSize) (item->nameIdx) (item->typeIdx) (item->shortyIdx) (item->returnTypeIdx) (item->descriptorIdx) Invalid use of void Shorty vs. primitive type mismatch: '%c', '%s' Shorty vs. type mismatch: '%c', '%s' Bogus shorty: '%c' offset..newOffset Non-zero padding 0x%02x @ %x Trouble with item %d @ offset %#x Item %d @ offset %#x ends out of bounds Bogus utf16_size String data would go beyond end-of-file String shorter than indicated utf16_size %#x Illegal start byte %#x Illegal continuation byte %#x Illegal representation for value %x String longer than indicated utf16_size %#x Bogus line_start Bogus parameters_size Invalid parameters_size: %#x Bogus parameter_name parameterName state->pHeader->stringIdsSize idx Bogus syntax for opcode %02x Bogus offset for data subsection: %#x Out-of-bounds end of data subsection: %#x Unable to parse class_data_item Trouble with static fields Trouble with direct methods Trouble with virtual methods Bogus offset for section: got %#x; expected %#x Bogus size for section: got %#x; expected %#x insSize (%u) > registersSize (%u) outsSize (%u) > registersSize (%u) Non-zero padding: %#x Bogus handlers_size Invalid handlers_size: %d Bogus size Invalid size: %d Bogus type_idx typeIdx state->pHeader->typeIdsSize Bogus addr Invalid addr: %#x Bogus catch_all_addr Invalid catch_all_addr: %#x tries Out-of-order try Invalid start_addr: %#x Bogus handler offset: %#x Invalid insn_count: %#x (end addr %#x) insns Out-of-order string_ids: '%s' then '%s' Invalid type descriptor: '%s' Out-of-order type_ids: %#x then %#x Invalid descriptor for class_idx: '%s' Invalid name: '%s' Out-of-order method_ids Invalid descriptor for type_idx: '%s' Out-of-order field_ids Bogus encoded_annotation type_idx Bogus encoded_annotation size Bogus encoded_annotation name_idx Out-of-order encoded_annotation name_idx: %#x then %#x data..data + 1 Bogus byte size %#x Bogus char/short size %#x Bogus int/float size %#x Bogus string size %#x Bogus type size %#x Bogus field/enum size %#x Bogus method size %#x Bogus array value_arg %#x Bogus annotation value_arg %#x Bogus null value_arg %#x Bogus boolean value_arg %#x Bogus value_type %#x Bogus encoded_array size Bogus encoded_array value Bogus annotation visibility: %#x Out-of-order entry types: %#x then %#x Invalid class: '%s' Duplicate class definition: '%s' Invalid superclass: '%s' Invalid interface: '%s' Duplicate interface: '%s' Invalid class_data_item Invalid annotations_directory_item Shorty is too short Shorty is too long Out-of-order proto_id return types Out-of-order proto_id arguments dex
 ERROR: unrecognized magic number (%02x %02x %02x %02x) ERROR: unsupported dex version (%02x %02x %02x %02x) ERROR: Bad length: expected %d, got %d WARNING: Odd length: expected %d, got %d ERROR: bad checksum (%08lx, expected %08x) Unexpected endian_tag: %#x linkOff..linkEnd dataOff..dataEnd ERROR: Small header size %d, struct %d WARNING: Large header size %d, struct %d Out-of-order map item: %#x then %#x Map item after end of file: %x, size %#x Unrealistically many items in the data section: at least %d Duplicate map section of type %#x Map is missing header entry Map is missing map_list entry Unable to allocate data map (size %#x) lastOffset..sectionOffset Non-zero padding 0x%02x before section start @ %x Section overlap or out-of-order map: %x, %x Multiple header items Header at %#x; not at start of file Multiple map list items Map not at header-defined offset: %#x, expected %#x Swap of section type %04x failed Cross-item verify of section type %04x failed ERROR: No map found; impossible to byte-swap and verify ERROR: Byte swap + verify failed pHeader..pHeader + 1 Map is missing string_ids entry Map is missing type_ids entry Map is missing proto_ids entry Map is missing field_ids entry Map is missing method_ids entry Map is missing class_defs entry ERROR: Bad magic number (0x%02x %02x %02x %02x) Invalid arg count in 35mi (5) Invalid arg count in 35c/35ms/35mi (%d) Can't decode unexpected format %d (op=%d) mmap(%d, RW, SHARED|ANON) failed: %s could not determine length of file file is empty mmap(%d, R/W, FILE|PRIVATE, %d, %d) failed: %s mprotect(RO) failed (%d), file will remain read-write mmap(%d, R, FILE|SHARED, %d, %d) failed: %s Attempted to change %p; map is %p - %p munmap(%p, %d) failed: %s %s: write failed: %s %s: partial write (will retry): (%d of %zd) sysCopyFileToFile: copy read failed (%d vs %zd) sysCopyFileToFile Zip: invalid ZipEntry %p (%ld) seek to start failed: %s couldn't read first signature from zip archive: %s seek %ld failed: %s
 Zip: read %zd, expected %zd. Failed: %s
 bad offsets (dir %ld, size %u, eocd %ld)
 empty archive?
 spanned archives not supported comment size runs off end of file Zip: cd map failed Zip: missed a central dir sig (at %d) Zip: ran off the end (at %d) Zip: bad LFH offset %ld at entry %d Invalid General Purpose Bit Flag: %d Filename contains NUL byte Zip: bad CD advance (%d vs %zd) at entry %d Zip: EOCD not found, %s is not zip Zip: bad local hdr offset in zip Zip: failed seeking to lfh at offset %ld Zip: failed reading lfh from offset %ld Zip: didn't find signature at start of lfh, offset=%ld Zip: bad data offset %ld in zip Zip: bad compressed length in zip (%ld + %zd > %ld) Zip: bad uncompressed length in zip (%ld + %zd > %ld) Zip: extract can't find entry %p Zip: lseek to data at %ld failed 1.2.8 Installed zlib is not compatible with linked version (%s) Call to inflateInit2 failed (zerr=%d) Zip: inflate read failed (%d vs %zd) Zip: inflate zerr=%d (nIn=%p aIn=%u nOut=%p aOut=%u) Zip inflate Zip: size mismatch on inflated file (%ld vs %zd) Out-of-order data map offset: %#x then %#x No data map entry found @ %#x; expected %x Unexpected data map entry @ %#x: expected %x, found %x 036  036  035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                B  I  Q  [  b  h  h  h  h  j  t  h  }      h      B  I  Q  [  b        Ƣ  h  t  ͢  }  h  h  Ԣ  ܢ    B  I  Q  [  b  h      h  h  h  h  }  h    h  h  h  	  
      &  0  A  N  Z  m  |          Ǩ  Ψ  ڨ              (  3  E  R  e  q              ǩ  ة        
      (  6  A  L  X  d  m  s  y                      Ū  Ϫ  ٪                )  3  >  C  M  Y  f  p  z                ̫  ѫ  ۫              "  .  ;  E  O  Z  _  i  u              ˬ  ٬      	    0  D  [  e  o  w                ͭ  ٭          !  /  >  N  Z  f  s  {                  ®  ˮ  Ԯ  ݮ          	      $  .  8  B  L  V  `  k  v              ϯ  ݯ          "  1  @  O  ^  m  |          ư  ְ          &  7  H  Y  j  {            ʱ  ױ         
    '  4  @  M  Z  g  u          ǲ  ۲        #  =  M  c  }        ³  γ  ߳      $  8  R  h  ~                   ,                           
        o?            H             
   P     h     !     )     3     ;     H        !                                  o                                                         7                                                                                                                                                        






						      













   































            











      









































***** *****  




















 

*





****


           						  GCC: (GNU) 4.7    	      GNU gold 1.11   A7   aeabi -   ARM v7 
A	
",dexdump V& .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .ARM.extab .rodata .data.rel.ro.local .preinit_array .init_array .fini_array .dynamic .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                     4  4                             H  H                             P                 #         h  h                 )   	           
               2   	                        6             l                 ;             lt                 A                               U     p                      `         X  X  0                  k             >                 s                                                                                                                                                                                                                                                              0                                         0                         p        L  8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  0  ELF          (      4   d!     4    (      4   4   4                  4  4  4                                          t  t.  t.                 .  .              Qtd                             p                    Rtdt  t.  t.            /system/bin/linker                                
                            !              2              D              L              c              h              o                                                                                                                                                                                                                                                  0           0         0        __libc_init __cxa_atexit printf __stack_chk_fail __stack_chk_guard _ctype_ __aeabi_unwind_cpp_pr0 mmap perror __aeabi_uldivmod puts open exit fstat fprintf ioctl fputs fflush lseek64 write read memcmp __sF munmap close __aeabi_unwind_cpp_pr1 _edata __bss_start _end libc.so libstdc++.so libm.so                                   	                                                                                                                
                
   /     /     /     /     /    /    /    /    /    /    /    /    /  	  /    /    /  
  /    /    /    /  
  /    /    /    /    /    /    /    /    -)   Əʌ Əʌ Əʌ Əʌ Əʌ| Əʌt Əʌl Əʌd Əʌ\ ƏʌT ƏʌL ƏʌD Əʌ< Əʌ4 Əʌ, Əʌ$ Əʌ Əʌ Əʌ Əʌ Əʌ     H-MP00L   D   <      K   0 0(   H-M   00  0 K \(  -O5MF5K !}D АFX̠DȰ8hDD-(L  ,pcc DHFAF9FPFU
 
hXx.',|XFE&v #<L|D F6.HxD
hB	  '        w  [   $FO3"  FJ"CHxD F 	  -O-(ԒDгHxDLhI FAFѮHxD 0ѩHxDp@O
"FIY yD0(FAh!
0ўHxDlz(FI0
"F FF FFp0OHYxD1t /@<D#@+ *ӅHo JxD:HxD6 	BCaHOO 
O xDm$$O ܡDD(,*
YF !+ +\KY
T   " K F"2$BE
O CC >#(FsD(F?LHxD8
O;DEӣEDHxD2
O CC< (F#cD(FBF5HxD@3H
xDO8DEE-HxD
$"F0F9F" #
C (L#HRF[FxDJ!HxD^AF0FHxDV8FAFOB       Y@  r&            |  y                          # EHO xD8F!FV0HxDf0F!FJ0	HxDO(FD@F+S  N  8           Android    8      *    %08x   %02x   %-16s
     mmap Usage: directiotest blkdev_path open stat %s is not a block device
 ioctl Error allocating test buffers
 Warning: Device too large for test variables Entire device will not be tested Starting test Testing area %d/%d (%6.2f%% complete)
 write write returned 0
 write failed, aborting test
 read Unexpected end-of-file
 read failed, aborting test
 Readback verification failed at block %llu

 Written data: 
Read data: 
Test complete munmap                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   /           L                8         o             H           (  
   (     P                      t.  !         |.           .              o                                                   t.  |.  .                                                                       GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"directiotest    z .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .ARM.extab .rodata .preinit_array .init_array .fini_array .dynamic .got .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                    4  4                             H  H                         (  (  (                 #         P  P                  )   	          8                2   	      L  L                 6                              ;                              A                               U     p                        `                               k      2                       s         t.  t                             |.  |                             .                               .                             /    |                            0                              0                                                                    p        ,   6                                b                                   v                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ELF          (      4        4    (      4   4   4                  4  4  4                             [  [                                                Qtd                             p@	  @	  @	  (   (         Rtd      x  x        /system/bin/linker                                
                                           7              ?              G              N              S              Y              ^              j              r              x              }                                                                                       @           @           D         __libc_init __cxa_atexit fstat __aeabi_unwind_cpp_pr0 syscall __errno printf puts fputs __sF getopt_long strtoul abort open strerror fprintf mmap __page_size optarg optind _edata __bss_start _end libc.so libstdc++.so libm.so                       	      
                                                                                        
                                                                           
                                            	            
                  -   Əʌ Əʌx Əʌp Əʌh Əʌ` ƏʌX ƏʌP ƏʌH Əʌ@ Əʌ8 Əʌ0 Əʌ( Əʌ  Əʌ Əʌ H-MP00L   D   <      K   0 0   H-M   00  0 K    iFT  !@[ 
FFNF@PhHxDP HxDP F    KJ{DHXxD1      -OFsNFsK~DrMOGX}DO  ĕ jM}D  PFIF*F $  (s(	?( h(t(^IrX!Fh"F`V0h

	Y  !F!FFhh F (
 hGIFpXFI0yDrXF 
U HFi
MOF:K;HXxD(" )FH FH D2
"AFF F?C	(HVxD1/ A	@["% W 
^FX`I"FyDhH0X0
HxD^HIxDT F     D      v    C    G  P  xGF h         Android    d l   ERROR: kexec_load: %d 
 Kexec test: Success  usage: kexecload [ <option> ] <atags path> <kernel path>

options:
  -t                                       tests syscall
  -s <start address>                       specify start address of kernel
 s:th Error during opening of atag file or the zImage file %s
 Atag file is too large
 Unable to map files into memory Kexec_load returned non-zero exit code: %d with errno %d
 Done! Kexec loaded New kernel should start at 0x%08x
 start_address test help                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  x                 X     X         o             H             
                                   !                                  o                                                                                       (  (  (  (  (  (  (  (  (  (  (  (  (  (  (  C         s   Q          t   V          h                    GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"kexecload    .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .rodata .preinit_array .init_array .fini_array .dynamic .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                     4  4                             H  H                                               #                             )   	      X  X  X                2   	          x               6         (  (                    ;             8                 A         (	  (	                    U     p   @	  @	  (                `      2   h	  h	                  h                               w                                                                                                        h                                  @                           @   @                          0       @                                 P                         p        l  6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               `  ELF          (      4   pQ     4    (      4   4   4                  4  4  4                             C  C           M  ]  ]  p             <N  <^  <^              Qtd                             pP.  P.  P.  H  H        RtdM  ]  ]  p  p        /system/bin/linker                                
                                           %              *              A              O              b              {                                                                                                                                                                                                                                         !             &             /             :             C             P             ^             f             o             y                                                                                              `          `         `        __libc_init __cxa_atexit close puts exit __aeabi_unwind_cpp_pr1 mixer_get_ctl mixer_ctl_get_type mixer_ctl_get_num_values mixer_ctl_set_value fwrite __sF __aeabi_unwind_cpp_pr0 ioctl printf __stack_chk_fail __stack_chk_guard scanf __strlen_chk sscanf open write rint putchar __errno atoi read strerror mixer_open pcm_open pcm_is_ready pcm_get_error fprintf pcm_stop pcm_close pcm_start usleep poll pthread_create fgets memset sigaction _edata __bss_start _end libtinyalsa.so libc.so libstdc++.so libm.so    %   .   $              
      '               (      &   #             *   +   	                           %            -   )   !       ,                                                                                                                   
                         "                                 ]     ]     ]     ]     ]     ]     ]     ]     ]     ]     ]     ]     ]     ]     ]     ]     ]     ]     ]     ]     ]     ]     ]     ]     ]     ]     ]     ]      ^     ^     ^     ^     ^     ^     ^     ^      ^     <_     @_     D_     H_     L_     P_     \_     T_    X_    l_    p_    t_    x_    |_    _    _    _  	  _  
  _    _    _    _    _    _    _    _    _    _    _    _    _    _    _    _    _    _    _     _  !  _  "  _  #  _  $  _  &  _  '  _  (  _  )  _  *  -@U   Əʌ@ Əʌ8 Əʌ0 Əʌ( Əʌ  Əʌ Əʌ Əʌ Əʌ  Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌx Əʌp Əʌh Əʌ` ƏʌX ƏʌP ƏʌH Əʌ@ Əʌ8 Əʌ0 Əʌ( Əʌ  H-MP00L   D   <      K   0 0whS   H-M   00 k 0 K S  
K
J{DXx)0"S0p(D  HxD  R  bS  "  -AFHDF(FF $B!F(F:F4 (K!H"X0xD3ATnR  "  HxDHxD|HxDxHxDtHxDpHxDlHxDhHxDd
HxD`HxD@) x"  "  "  "  "  #  (#  <#  X#  p#  3HxD@2HxD<1HxD80HxD4/HxD0.HxD,-HxD(,HxD$+HxD *HxD)HxD(HxD'HxD&HxD%HxD$HxD#HxD "HxD!HxD HxDHxDHxDHxDHxDHxD@ p#  "  $"  t#  #  #  #  #  #  #  #  $  $  $  ,$  8$  D$  h$  x$  |$  $  $  $  $  $  H@rxDEaB=jF hH $xD FHxD Q  l$  2$  H@qxDEaB=jF hH $xD FHxD^ P  d$  6$  HOcxDEaB=jF hnH $xDl FHxD4 lP  X$  "$  )KE6a)HD{D𵟰X&N 'BH}+h~D0hB,E8a0h,8'zGH"Ozr*xD<F+"S+  F+hBHxD
HxD     @@`O  P  B$  #  #  'KEa'HT{D𵣰X"$N 'BX}+h~D0h!,E8a0h,' H<F"Ozr*xD!A+ +S2+! F+hB#	HxDHxDN  DO  #  #  ,#  #J@#IzD"H0UXOxD*h!%ZH!FxDd! FBHxDvHEHaxD hf
HxD6% F+hB'0
HxD,^M  |#  #  j#  PN  #  `#  #J@#IzD"H0UXOxD!*h%H!FxD8d! F:CHxDHEHaxD h
HxD% F*hB'0
HxD8M  p#  "  ^#  M  #  D#  IOjFyD KEHa{D$h@  $HxD FHxD h#  2M  P#  "#  p!MF}D(F"!F	H!FxD0Fj(FpHxDjH)FO5xD H#  #  V#  6#  IOjFyDKEHa{D$h@  $bHxD2 FHxD* "  bL  `#  6#  IyDbKEa{Dh@r2H $xD0 FHxD."  K  N#  #  IOjFyD0KEHa{D$h@q  $HxD FHxD!  K  2#  #  IOjFyDKEHa{D$hOc  $HxD FHxD X!  "K  #  "  @Kp{D@L@I %jFYyD#h<HE6aDxDBH] hP1z z''
 1QA
1DVb%#	E9a,D  ^"۳ ;ZHxD+"K*b[+S2+N0F"hBpOzuHxD :jHxDS+48   zFJ  #  J  <J  "  $  *"  SKp{DSMSI $]YyD+h#(Kzz''
 1kQ*$BXMACHEaTxD h
j2OzvBA؁B?E9a,D  &۳ ;j/H $xD+"Ka[+S2+# F+hB;$pDTb&	*:HxDS3+ [j*HoxDKdkd{e S:+HxDL   zFH  !  RI  I  !  !  ,!    )0'K{D`LEaH|DjFxD@%h h( DH %!hxDB(F0H !!`xD
I	JyDzDJ JH  :H  H  2!  !     G  H@xDEaB=jF h
 $(
HDFxD 0 FHxD G  G        Kp{Dh2F*ȿF"  `F (MH}DxD)h)
$Ozv#  )hBHxD  p hG  JG  ,      Kp{Dh:H "  `FN (
MH}DxD)h)
$Ozv# )hBHxD  pG  F      0L %H|DxD  0 +'  LEad|DjFD@	 P  ( `I %  HyDxDQ"Z(F0+%HxD F     rF  RF  *D      H@	xDEaB=jF h&$ $D\!  FHxDE  C  h  I0yDFIyDH $xD#OT` 0TjFERa0D`  F h) ,
 $ F
0	HxDHxD h  b  d  RE     *  p!MF}D(F"!F FIyD@HxD0Fv(FpIyD
HxDr	H)FO5xD      F      F  0 !L|D F#"
 (
 IyDHHxDp(F8  0IyD!FF
HxD`H!FxDZO0  |    f      p !L|D F`"~ #0pFHxD00F(Fpp!FFHxD"H!FO5xD    P  D  p!MF}D(F&"!F& F:FHxD0F(FpHxDH)FO5xD\    |    p!MF}D(F"!F FIyD@HxD0F(FpIyD
HxD	H)FO5xD   |    p    r  p !L|D F#"

 IyDHHxD0FN(FpIyD!FF
HxDvH!FO5xDn8     f        -G  OJDX ` (  %K1ODO
Oc `O2M! .WBFtMN hL!BFI h@!"D hA!RF? h7!": h6!"5 h3!"0 h	!x"+ hH!"& hI!"! h"!" h2!"0F1F2F
}DH(` J (b(hJOIyDF<W 0F  P*FKO hL!*F h@!*F hA!*F h7!*F h6!*F h3!*F h	!*F hH!*F6N hI!*FD h"!*F~D2!*F h8h
0h8h
0h P'HxD^  
$H%LxD0F!OR|D `0 hIyDFHxDn h(hHxDd   ,!H"W0xD3H dA  A  A  V  @  @  &    |@  l        KEaHT{DpXK %BX]jF&h{Dhzz
H.FxD 
`*0F"hBp	HxD   G  B?  ?  d    %KEa%JT{D𵗰X"KjF 'DX}5h{Dh'(!dEajFTD  I*yDIyDH %xD(F3hBHxDvHxDr|>  ?  >            KEaHT{D0XK %BX]jF{Dh#hpI*yDIyDH %xDh(F#hB0	HxD.`=  d>  :  <  v    AKEaAHT{D0-X=K %BX]jF{Dh#h.W7H0xD5HxD(jfz2HxD
 az+HxD
 +%I*yD$IyD$H %xD*::JHxD#J$$ZZHxD(F#hB0HxD        ? G  B@=  =          `  b    $  |     KEaHT{D0XK %BX]jF{Dh#h

IyDH %xD(F#hB	0
IyD	HxDL  <  <        f  -AF
FF(] O%SH2FxDZRK{Dh (W(zOHxDA MH2FxDF,KHDxD P`O FHBCA2 xD"<K<H{D<IDxD`yD p``8HxD7HF!xDA 3H!FxDA 0I1HyDxD
h+ C P`+ID+JyD  zDhR  3'K{D'I(HyDxD&I&LyD|D
hD%I'hyD @*,p\ppplHxDfK{D  @<  B    ;  ;  .  ;  ;  ;  ;      t  ;  b;  X;  8;  8  N  (;    >;  :   ;  2;      (K)J{D-OFX}O 	OhS
 0C!
"F (8F)FOrЫF*] 4Bۚ 0 +HxD
h  B
}4 9    -CF9N9K~D8HEajFXxDTO  h=hDXN0IyD
x *+
 # 
EajFTD  :۹$L|D$x %#HDxD^$(F;hB*%
p
A
M}D,x,\V`1x )HJxD 0zD4p@,xHxDHxD8  9  9  Z9  X9  07     9  8  
    xe;+
Ի$HxD   x?;7+;> : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : @ B D : : F : : : : : : H : : : : J L N : 8 
HxD Ժ.v2  x+;K+sQ r S r r r r r r r r r r r r r r U r X [ r ^ r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r ` c r r f r i r r r r k r r r r r m o r L 0! "e׿   0Z0ٹ00; pG x1;?+DD F H K N C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C Q T C W Y C C C C C C @ 0=pG0e0ʼ00d00p*LEa*KT|D)H &XxD& h+h&/& (5!HxD HxDIdXd!"FX g*q*
Y HxDPD  8HD 0/*hB0pHxD ,5  5  R  ^  >  5  |5    p"LE7a"KD|D!H &XxD& h+h
+ ('HxDHxDIdXd!"F<H g*q*
I HxDn++hB,p
HxDd T4  5        f  %KOA%Hh{D0X"K%h{Dhh$H(I %HyDxDbHxD^HxDXH
xDTHxDN(F#hB0IHyDxDBHO5IxDyD8< 3  R4  `                  
  -GFKDFHFLXxD|DEM }DBH!FxD! F ((`axd !"hF:LiF " |D  iF "z3H4O4N5MDԠ~DX @}DD8F0F(Fd!"FT(((PFt"HxD!JX0x!H"X @"px $D  l F 0B
H!F $xD(hX 2  >    3  \  P  R  T  Z  X  2    xGF xGF PxGF          Android                       DXx0"&8`#D xL	X T /+(x   Terminating..
  Error: invalid value
   Available FM TX Commands:   f <freq> tune to freq(in MHz)   gf get frequency(MHz)   e <val> set pre-emphasis filter value(0 = OFF, 1 = 50 usec and 2 = 75 usec) p <val> set FM TX powerlevel (91 - 122) 1 to set RDS Radio Text 2 to set RDS Radio PS Name  3 <value> to set RDS Radio PI code  4 <value> to set RDS Radio PTY  5 <AF Freq in KHz> to set RDS Radio Alternate Frequency Available FM RX Commands:   gr get rssi level   t  turns RDS on/off gt get RDS on/off   + increases the volume  - decreases the volume  v <0-65535> sets the volume gv get volume   b<value> switches Japan / Eur-Us (0=US/Eur & 1=Japan)   gb get band s switches stereo / mono    gs get stereo/mono mode m changes mute mode gm get mute mode    c<value> set rds af switch(0-OFF & 1=ON)    gc get rds af switch    < seek down > seek up   ? <(0)-(127)> set RSSI threshold    g? get rssi threshold   ga get tuner attributes A Start FM RX Audio Routing q quit rx menu  Failed to get FM Tx antenna impedence value FM Tx antenna impedence value is --> %d
    Failed to get FM Tx power level FM Tx Power level is --> %d
    Failed to get preemphasis filter val    Preemphasis filter val is --> %d
   Failed to get modulator capabilities    Failed to read current frequency    Transmitting at Frequency %3.2f MHz
    Failed to get tuner capabilities    Tuned to frequency %3.2f MHz 
  Enter RDS text to transmit  %s  Entered RDS text is - %s and strlen = %d
   Failed to set FM Tx RDS Radio text  FM Modulator RDS Radio text is set and transmitted  Enter RDS PS Name to transmit   Entered RDS text is - %s
   Failed to set FM Tx RDS Radio PS Name   FM Modulator RDS Radio PS Name set and transmitted  %d  Failed to set FM Tx RDS PI Code Setting FM Tx RDS PI Code is Succesful  /sys/class/video4linux/radio0/fmtx_rds_af   Can't open %s   Failed to set FM TX RDS Alternate Frequency FM RDS Alternate Frequency is to %s Succesfully
    Failed to set FM Tx RDS PTY Setting FM Tx RDS PTY is Succesful  Failed to set FM Tx antenna impedence value Setting FM Tx antenna impedence value to ---> %d
   Failed to set FM Tx power level Setting FM Tx Power level to ---> %d
   Failed to set preemphasis filter val    Setting preemphasis filter val success  %f  Failed to set frequency %f
 Started Transmitting at %3.2f MHz Frequency
    Failed to set frequency: Frequency is not in range(%3.2f MHz to %3.2f MHz)
 Tuned to frequency %3.2f MHz
   
Volume:    
Volume is : %d
    Failed to set volume    Setting volume to %d 
  Failed to get volume    Radio Volume is set to %d
  Mutemode = %d
  Failed to set mute mode Setting to "%s" 
   Failed to get mute mode up  down    Seeking %s..
   Band limit reached  Seek operation failed   OFF ON  /sys/class/video4linux/radio0/fmrx_rds_af   Failed to set FM  RDS AF Switch FM RDS Alternate Frequency is %s
   reading %s failed %s
   FM RDS Alternate Frequency is %s 
  /sys/class/video4linux/radio0/fmrx_rssi_lvl Current FM RSSI threshold level is %d 
 Failed to set FM RSSI threshold level   FM RSSI threshold level is set to %d
   US/EUROPE   JAPAN   /sys/class/video4linux/radio0/fmrx_band Failed to set FM Band   FM Band is set to %s
   Present FM Band is %s 
 Failed to open mixer
   Unable to open PCM device (%s)
 Playback device opened successfully Capture device opened successfully   Trigered the loopback  FM RX Audio Routing Done    Failed to get tunner attributes Signal Strength: %d%%
  STEREO  MONO    Failed to set stereo-mono mode  Audio Mode set to: %s
  Audio Mode: %s
 ----------------------- Tuner Name: %s
   Low Freq: %d KHz
  High Freq: %d KHz
 Failed to get frequency range   Auto Scanning.. failed to set freq  %2.1f MHz(%d%%)
    Scan Completed  Failed to read RDS state    RDS is: %s
 Music   Speech  ----------------------------------------    block A - id=%d
    block B - group=%d%c tp=%d pty=%d spare=%d
 block C - 0x%02x 0x%02x
    block D - 0x%02x 0x%02x
    PSN: %s, PTY: %s, MS: %s
   Radio Text: %s
 unknown block [%d]
 RDS thread exiting..    Failed to set rds on/off status RDS %s
 unknown command; type 'h' for help  Failed to set RX mode   Switched to RX menu type 'h' for help   quiting RX menu Failed to set TX mode   Switched to TX menu quiting TX menu Failed to read %s capabilities
 /dev/radio0 %s is not radio devcie  
***%s Info ****
   Driver       : %s
  Card         : %s
  Bus          : %s
  Capabilities : 0x%x
    ** TI Kernel Space FM Driver Test Application **    Opening device '%s'
    Unable to open %s 
Terminating..
   1 FM RX 2 FM TX 3 Exit  Invalid choice , try again  Mute ON Mute OFF    Attenuate Voice None    News    Current Affairs Information Sport   Education   Drama   Culture Science Varied Speech   Pop Music   Rock Music  Easy Listening  Light Classic Music Serious Classics    other Music Weather Finance Childrens Progs Social Affairs  Religion    Phone In    Travel  Leisure & Hobby Jazz    Country National Music  Oldies  Folk    Documentary Alarm Test  Alarm   Off On                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A  A  A  A  A  A  A  A  A  A  A  B  B  $B  8B  LB  XB  `B  hB  xB  B  B  B  B  B  B  B  B  B  B  B   C  C  C  pA  xA  A                 `_     (                x     p        o,             H           (  
        $                          $^  !         ,^           4^              o                                                   $^  ,^  4^  u,  `  `          `              
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
   GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"kfmapp  /s .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.extab .ARM.exidx .rodata .data.rel.ro.local .preinit_array .init_array .fini_array .dynamic .got .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                     4  4                             H  H                         (  (                   #         $  $  T               )   	      x  x  p               2   	          (              6         
  
                   ;             ("                 A         .  .                    U          .   .  0                  `     p   P.  P.  H               k      2   /  /  x                s         ]  M                             $^  $N                             ,^  ,N                             4^  4N                             <^  <N                           <_  <O                              `   P                          0        P                                 P                         p        ,P  6                                bP                                  nP                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 0  ELF          (    (
  4   P!     4    (      4   4   4                  4  4  4                             )  )           0  0.  0.               H  H.  H.              Qtd                             p                    Rtd0  0.  0.            /system/bin/linker                                
                            1              8              ?              G              L              ]              l              s              y                                                                                                                                                                                                                                                         #             +             ;             A             G             O             `             r             y             ~                             0          0         0        __libc_init __cxa_atexit __aeabi_unwind_cpp_pr0 memset getopt fprintf exit pm_kernel_create pm_kernel_pids malloc fputs strtoul asprintf fopen fgets fclose free strlcpy printf puts pm_process_create pm_process_maps pm_process_destroy snprintf open pm_map_pagemap pm_kernel_flags lseek read realloc pm_kernel_count close qsort putchar __stack_chk_fail __stack_chk_guard opterr __sF optopt optind _edata __bss_start _end libpagemap.so libc.so libstdc++.so libm.so  %   ,                                            $   '                   )   (            
       &      !   "      #   +         
   *                                                                                                                                                        	         %      H/     L/     P/     T/     X/  $  \/  %  `/  &  d/  '  h/  (  x/    |/    /    /    /    /    /    /  	  /  
  /    /    /  
  /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /     /  !  /  "  /  #  -&   Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌx Əʌp Əʌh Əʌ` ƏʌX ƏʌP ƏʌH Əʌ@ Əʌ8 Əʌ0 Əʌ( Əʌ  Əʌ Əʌ Əʌ Əʌ  Əʌ Əʌ Əʌ Əʌ Əʌ H-MP00L   D   <      K   0 0,%   H-M   00 t 0 K <%  Fiih!h@-OF<G87"|D
F !X8hk$ #bXF
w`D0F)F:FC9h(?(a(s(v(J
J
J
*h`X0yD  fY$XyD7"h8F8FyD*h 0vYxD.
j (phf|YxDtv>Y8hBLvhYyD0 rFH0VPaYxD1l9h
"U! j0`hJ(aXxD1XW yDhZ (yDXFh+Oq*FV (& &(FT &V>+OryDR+hxDPO 	xDP
в
OR)HhXT yD0bY$p:FX:(`Xh0yDH (  PL%)hzDKh
h@!"?( 򝁨hFH!X$1xD9F ($O8XyD0oR8FO07tQ< Xh0yDRhn/ (FS7FD0T 0yD #P
#  O @R  hRBFHhF0@T yD01FhhBFă T yD00F" dCF	 Ch	BU3sEB
OKF0lHTxDx C !Or`h, C(FZFQjF`$HTxD1	 "h \@E2BfOpY 
 C )ai	ұPO hB
h\ E P`CZi	B(O hx1FpxHTxD1O89ix"  !XZi
2Za"iPCL ih  H`ih `iJaiJa7BӮ~ABO 
[pE5hh  %B0F\ Vv.		LnE
|K "{D &DFtHxDsHhxD2rHixD,i*s lH #xD # +*s p) l
 j
_ +@6FOp\JzD 'D(h	Qh
! [hFZh
lpDZF
hIH75xD`/#iB
 $BI %yD iBӶB| $
_
k FhB E5h  %B0xm f$    ]  "	  1  	  	    	                                W  C    9              k  )  F,H0FF$h9ZhdhD3@$0t`Dl$  <`0Dt<$  <pD))))"h@YhDh@pT <@0tL < 0ﾭ         Android    0<?,    hvsa Usage: %s [-s | -v | -a | -h ] <pid>
    -s  Sort pages by usage count.
    -v  Verbose: print virtual addresses.
    -a  Display all the KSM pages in the system. Ignore the pid argument.
    -h  Display this help screen.
 unknown option: %c
 Error creating kernel interface -- does this kernel have pagemap?
 Error listing processes.
 Error allocating pid memory
 Invalid PID
 /proc/%zd/cmdline r <unknown> %s (%u):
 Warning: this tool only compares the KSM CRCs of pages, there is a chance of collisions warning: could not create process interface for %d
 warning: could not read process map for %d
 /proc/%d/mem warning: not enough memory to malloc data buffer
 warning: could not open %s
 warning: could not read the pagemap of %d
 warning: could not read flags for pfn at address 0x%016llx
 warning: could not lseek to 0x%08lx
 warning: could not read page at 0x%08lx
 warning: not enough memory to realloc pages struct
 error reading page count
 warning: not enough memory to realloc vaddr array
 0x%02x byte pattern:  KSM CRC 0x%08x:  %4d page  (%llu reference                      0x%08lx :%d [%d] %-12s                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       l/          l           $     H         o             H             
                                  0.  !         8.           @.              o                                                   0.  8.  @.  
                                  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |   GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"ksminfo  .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .rodata .preinit_array .init_array .fini_array .dynamic .got .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                   4  4                             H  H                                              #             L               )   	      $  $  H                2   	      l  l                6         |  |                   ;         (
  (
  l	                 A                               U     p                        `      2       ]                h         0.  0                    w         8.  8                             @.  @                             H.  H                           H/  H                              0                              0                                                                    p        ,   6                                b                                   n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  0  ELF          (    l  4   t!     4    (      4   4   4                  4  4  4                                          X  X.  X.               p  p.  p.              Qtd                             p$  $  $  @   @         RtdX  X.  X.            /system/bin/linker                                
                            1              6              M              S              [              d              k              s              z                                                                                                                                                                                                                                                        $             +             1             6  0       =  0       I  0        __libc_init __cxa_atexit __aeabi_unwind_cpp_pr0 exit __aeabi_unwind_cpp_pr1 fgets __errno strerror strcmp fprintf sscanf calloc strcpy __stack_chk_fail __stack_chk_guard __sF __sprintf_chk fopen fputs fclose __aeabi_uidiv __aeabi_uidivmod atoi bsd_signal sleep opendir readdir closedir puts printf qsort free _edata __bss_start _end libc.so libstdc++.so libm.so     $      !                               "       #                                                                 
   	                                     
                                h/     l/     p/     t/     /      0     0     0     0     x/    |/    /    /    /    /    /    /    /  	  /  
  /    /    /  
  /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /     -l(   Əʌl Əʌd Əʌ\ ƏʌT ƏʌL ƏʌD Əʌ< Əʌ4 Əʌ, Əʌ$ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ H-MP00L   D   <      K   0 0 '   H-M   00  0 K '  h hh #h
FF FBsېBq   O0    -OFWMMVKF}DO q:FX hFXON hNIyDFY0LIyDh1F0$FF
D[BL2FEI-YyD5(FCI(FyD  QF  4F )4  (=$h ,Bh`""h` OqFX O h$IyDFY0`` `&`&FO q:Fb ($0F 0BhbhE ``ؾL+Yh ,x
m&    f&          -CF6L6IF|DfX !0hF @"1K{DhN "-IyDLF /A)O hY'I4yDF F$HxD"$H1FxD60F:!J!IzDyDh&FM hdYI4yDF FHxD!F )FF0F(F 0B$  $          $    |    FMI}DLyD(h|DF-h hJIyDFX*F0 
I:FyD0F@ [  $     |#        ǿ  -OLFK %|D'FX.FK :
h{D
I!yD	
JKIzD{DyDu	HFTpWEHTxD \HF
@툹WE	NHYxD1f  lEHF*F`HI   XyD0$(FHF`WEJHXxD FF HF`WEIHaXxD 4FOJFIYyD4 FI F  yD7B-&NHYxDO O YD'YF YF 
HFxD IHyD
xDF .@M#   9F2F+FjFnK)F@" {DF蹑I2FdXI4yD FH!FxDU|0:	*0 9F2FFHF?FFF@F (@F8籍OIDyD8hFXZvN h\IyDFY0SH9FxD8F
I hyDxFX>hM h@|IyDF`Y07 !7F@FpwHxDn5uH)F2FxD	rH1FxDpHxDF ' 7 8F!(FLM heIyDF`Y0H*

 E^K@F9F"{DO 	`ZH[IxD[J yDZHzDZKxD{DN@X)		  FL0OzqFD	FOzqBF
!8OzqF2OzqF0F
!&
	cF E@F ' *?Eܮ  
!  hB# 
#        i        ~            "          z!  x  o      7  K  =  Y  j  X  k  O  S  2  U  xGF          Android    "4   $8   "            Could not read latency file version: %s
 Expected version: %s
 But got version: %s %ld %ld %ld %s Could not allocate latency entry: %s
 w Could not open %s: %s
 Perhaps the process or thread has terminated?
 erase
 r %d
 -d Option -d expects an argument.
 -n Option -n expects an argument.
 -h Usage: %s [ -d delay ] [ -n iterations ] [ -p pid [ -t tid ] ] [ -h ]
    -d delay       Time to sleep between updates.
    -n iterations  Number of updates to show (0 = infinite).
    -p pid         Process to monitor (default is all).
    -t tid         Thread (within specified process) to monitor (default is all).
    -h             Display this help screen.
 -p Option -p expects an argument.
 -t Option -t expects an argument.
 Invalid argument "%s".
 If you provide a thread ID with -t, you must provide a process ID with -p.
 /proc/%d/task Could not open task dir for process %d.
 Perhaps the process has terminated?
 Could not open global latency stats file: %s
 
 Latencies for thread %d in process %d:
 Latencies for process %d:
 Latencies across all processes: Error allocating array: %s
 %10s  %10s  %7s  %s
 Maximum Average Count Reason %4lu.%02lu ms  %4lu.%02lu ms  %7ld  %s
 /proc/%d/task/%d/latency /proc/latency_stats /proc/sys/kernel/latencytop Latency Top version : v0.1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     /           (                X         o	             H             
   k          N     V     c      X.  !         `.           h.              o                                                   X.  `.  h.  i          0                                                                      K  7  g     GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"latencytop  E* .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .ARM.extab .rodata .preinit_array .init_array .fini_array .dynamic .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                  4  4                             H  H  @                           k                 #                             )   	          X                2   	      (  (                 6             d                 ;         l  l                   A                               U     p   $  $  @                `         d  d                    k      2   |  |                  s         X.  X                             `.  `                             h.  h                             p.  p                           h/  h                              0                                 0                             0                                                                    p        <   6                                r                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 @  ELF          (      4   `1     4    (      4   4   4                  4  4  4                             %  %           .  >  >               .  >  >              Qtd                             p$  $  $              Rtd.  >  >            /system/bin/linker                                
                            1              B              I              `              g              w              |                                                                                                                                                              @           @          @        __libc_init __cxa_atexit __aeabi_unwind_cpp_pr0 __aeabi_uidivmod malloc __aeabi_unwind_cpp_pr1 printf __aeabi_idivmod puts sysconf memalign perror mprotect memcpy memset memcmp strcmp strlen strcpy strcat _edata __bss_start _end libc.so libstdc++.so libm.so                                                                                                                       
   
      	                     ?     ?     ?     ?     ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?  	  ?  
  ?    ?    ?  
  ?    ?    ?    ?    -h:   Əʌh Əʌ` ƏʌX ƏʌP ƏʌH Əʌ@ Əʌ8 Əʌ0 Əʌ( Əʌ  Əʌ Əʌ Əʌ Əʌ  Əʌ H-MP00L   D   <      K   0 09   H-M   00  0 K \9  0 )FDEuK@C$euCEu F0pFF $ F`!< 1)U4B #(F+Up@@4(O@a@ #$!T3+Qp   !FZ\*XBx*"H[\xD  1) 1"   -OFFhh@DF F $'FFC@F`! 1_	E7U@	pCFڲ  (2T	 3BӺ kh!Fh2FhXF+h0FIFG@H!F2FKFxD  oDFO       -OFF F2hhO 
@HF0F%3FPF`! 1ɲAE

0
 
 

oO 
 F 1F G3HxD2  pF x   h*HxDh!F H F1FGFP$HOa "FxD3F1 F1F  G(HxD:  (  pF   hhHxD!F  F1FGFPHOa"F3FxD     "  <  _  c    -OF( FA FF(KHxD  1F "FHxDo9Oi	 F (?KVDp{D $D TFO 
PF`! 1Ȳ
 
 

E "*U2U !F(F1FG(*H!F*F3FxD XF!F0F)FG8#H!F2F+FxD
1#+U
  H!FxDt(F1FGF(H!F*F3FxD H!FxD`0F)FGF8H!F2F+FxDE  }    z    R  0  4    3    -O
FFFF @HxDF>H $xD,D 8FAF	3F  d4,ԐO DD ľ ľ Ğ  ,HxD+K{D,8F AFJFC (4,O 
TF8FP AFJF
/ (

 $ 	FHxD0F)F (HxD      ^  F  0          -OFFFFFF*40F #HAF "FxD;F~O  FG@EFHAF *FxD HAF "FxD;Fdk "T3CE FGBFH)F xD#FN  	(F`!< 1aU5EE  ]  [      -OFFQHxD;PIh" $yD(F@1@KJLHxD(0F9F*Y0x (6^E4h, &?HxD( A FF ( !F " 6HxD
Ao8Oh &0F`! 1U6B< &`8  			  0!FJF YHFGBF
!FVh Vd<HxDKF  `!4 1DEp6
.K  ${DHxD !   	    ~    2    k  -O4F(LHxD  *F (GHHMxDnGH}DsxD	cNF  
QFjhhhF F<FF	1F@F ! FJFhBФ  	FckhBF SFhh	1F FAFGBF"H1F"FxD@F!F2F@HxDB!Ф FعHxDHxD1F &@LE5BHxD F (
        r          -O
 YHxDwF (UHULxDTH|DsxD	
OF  
YFbh7hhF 0FFF9FPF:d!*F0F	r !FJFFEЦ E	?p ah
9Fh*FhSF`0FQF
GBF )F*H:F3FxDR  d*%H)FxD
6  &BPFJFt0H1FxD:F8EЫ 
й   '1@AE}5!-	4B %HxD" XD (/    z       S  k  y  -O%}OP	FOP  #(kHxD   "T3_dIOryDO 	1_HxD^HxD  
AFrh
ThhF
 MFTF	bsh:F h)FhCF ! F*FTEФ aXF\9F F*FG !c\z\Bù=HxD~ *;HxDx
0	Bh hh5HxD11BTEIФ 9F (A-HxDb
0	)HJhxD hh%HxDP	Jh hhHxD)F:FCF2O5@ Bi		6& %4
]HxD( XFF (
%} 
              
         
  -OOPF QHxD[OI
(
x"O 	yDPFBqJHxDIJzD	w
	Z	` _h1F:FcF0 )F	"F3F   ""T0BDEФ ~aO Fw(F! F*FaFG0cE*H)F ZFxD  <EDE/Ф XFHHxDH YFxDHxDzH)F xD"F3Ff5@uE		x %HxD` )F ()    K      $  E  k  3    p(,N~D	Hh+IyDf8 %  %'HxD,&K)FXF$HxD"#H)F0X ( $ HxDIpX)F ( $HxD
J)FX ( $HxD\)FV q ( $HxDK)FXp p*                         Android    l   h   (L 
|$(p                                                                                                                                                                                                                                                            @       @                                                                                                                                                                                                                                                                                                                                                                                                                                                           @                                                     mismatch at fencepost[%d], expected %d found %d
 Testing size %d, align_str1=%p[%d,%d], align_str2=%p[%d,%d]
     Failed at size %d, src1 %p, src2 %p
     strcmp is too broken to do difference testing. Testing difference, align_str1=%p[%d,%d], align_str2=%p[%d,%d]
    Did not miscompare at size %d, src1 %p, src2 %p, diff %p
    strcmp is too broken to do difference testing. Testing reverse difference, align_str1=%p[%d,%d], align_str2=%p[%d,%d]
     Did not miscompare at size %d, src1 %p, src2 %p, diff %p
 Unable to allocate memory.
 Unable to set protection of page.
 Testing size %d, strings equal.
 Testing size %d, strings equal reverse strings.
 Testing size %d, strings not equal.
 Testing size %d, strings not equal reverse the strings.
   Verifying equal sized strings at different alignments.   Verifying different strings at different alignments.   Verifying strcmp does not read too many bytes.   All tests pass. Testing size %d, align=%p[%d,%d]
 Failed at size %d, length returned %u, align=%p[%d,%d]
 Testing size %d with extra zeros after string, align=%p[%d,%d]
 Failed at size %d, length returned %u with zeroes after string, align=%p[%d,%d]
   Verifying string lengths at different alignments.   Verifying strlen does not read past end of string. Testing size %d overread, align=%p[%d,%d]
     Failed at size %u, returned %u, align=%p[%d,%d]
 Testing copy_len %u, src_align=%p[%d,%d], dst_align=%p[%d,%d]
 copy_len %u returned incorrect value: expected %p, got %p
 copy_len %u failed to copy properly: src and dst aren't equal
 copy_len %u fencepost before dst was overwritten
 copy_len %u fencepost at end of dst was overwritten
 Testing copy_len %u, dst_len %u, src_align=%p[%d,%d], dst_align=%p[%d,%d]
 dst_len %u, copy_len %u returned incorrect value: expected %p, got %p
 dst_len %u, copy_len %u: strcat overwrote dst string
 dst_len %u, copy_len %u failed to copy properly: src and dst aren't equal
   Verifying variable sized copies at different alignments. Testing size %d, src_align=%p[%d,%d], dst_align=%p[%d,%d]
     src_align[%d] is 0, memcpy wrote into the source.
     mismatch at %d, expected %d found %d
     Failed at size %d, src_align=%p[%d,%d], dst_align=%p[%d,%d]
     wrote before the array.     wrote past the end of the array.   Verifying variable sized memsets at different alignments. Testing size %d, buf_align=%p[%d,%d]
     Failed at size %d[%d,%d!=%d], buf_align=%p[%d,%d]
     wrote before the beginning of the array.     Failed at size %d, buf_align=%p[%d,%d]
     wrote after the end of the array. -v Testing strcmp... Testing memcpy... Testing memset... Testing strlen... Testing strcpy... Testing strcat...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ?     x                 x     P         o             H             
                                >  !         >           >              o                                                   >  >  >                                        @  @  @  @  @  @  @  @  @  @  @  @  @  @  @   GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"libc_test   m .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .ARM.extab .rodata .preinit_array .init_array .fini_array .dynamic .got .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                    4  4                             H  H                                              #                             )   	      x  x  P                2   	          x               6         @  @                    ;                              A                               U     p   $  $                  `                               k                              s         >  .                             >  .                             >  .                             >  .                           ?  /  p                            @   0                          0        0                                 0                         p        ,0  6                                b0                                  r0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         @ ELF          (      4   3    4    (                P P               0'        Ptd   \   \         Qtd                             p(  (a (a           Rtd                     H-MP00L   D   <      K   0 0 . `dhl H-M   00 m  0 K @ 0 )FDEuK@C$euCEu F0pFF $ F`!j 1)U4B #(F+Up@@(O@a@ #$!T3+Qp   !FZ\*XBx*"H[\xD  1) 1" x  -OFFhh@DF F $'FFC@F`! 1_	E7U@	pCFڲ  (2T	 3BӺ kh!Fh2FhXF+h0FIFG@H!F2FKFxD  oDFO   o  $  -OFF F2hhO 
@HF0F%3FPF`!" 1ɲAE

0
 
 

oO 
 F 1F G3HxD2  pF x   h*HxDh!F L F1FGFP$HOa "FxD3F1 F1F  G(HxD  (  pF   hhHxD!F  F1FGFPHOa"F3FxD               -OF( F A FvF(KHxD  1F "FHxDo9Oi	 2F (?KVDp{D $D TFO 
PF`! 1Ȳ
 
 

E "*U2U !F(F1FG(*H!F*F3FxD XF!F0F)FG8#H!F2F+FxD
1#+U
  H!FxDw(F1FGF(H!F*F3FxD H!FxDd0F)FGF8H!F2F+FxDE        )            h  -O
FFFF @HxD>H $xD D 8FAF	3F  d4,ԐO DD ľ ľ Ğ  ,HxD +K{D,8F AFJFC (4,O 
TF8FP AFJF
/ (

 $ 	FHxD G0F)F (HxD =    ~  B    e   "  ?  -OFFFFFF*40F #HAF "FxD;FO  FG@EFHAF *FxD HAF "FxD;Fgk "T3CE FGBFH)F xD#FQ  	(F`!j 1aU5EE        +  -OFFQHxD;PIh" $yD(F@1@KaLHxD 0F9F*Y0x (6^E4h, &?HxD (  A FF ( !F "  6HxDAo8Oh &0F`!~ 1U6B< &`8  			  0!FJF YHFGBF
!FVh Vd<HxDKF  `!4 1DEp6
.K  ${DHxD  !         E    m    -O4F(LHxDe  *F (GHHMxD GH}DsxD	cNF  
QFjhhhF F<FF	1F@F ! FJFhBФ  	FckhBF SFhh	1F! FAFGBF"H1F"FxD@F!F2F HxDB!Ф FعHxDHxD1F &@LE5BHxD r F (+      [    +  T      -O
 YHxDwF (UHULxD <TH|DsxD	
OF  
YFbh7hhF 0FFF9FPF:d!*F0F 	r !FJF FEЦ E	?p ah
9Fh*FhSFd0FQF
GBF )F*H:F3FxDU  d*%H)FxD
6  &BPFJF 60H1FxD:F;EЫ 
й   '1@AE}5!-	4B %HxD  XD (  :  ^          
  -O%}OP	XFOPS  #(kHxD  "T3_dIOryDO 	1 _HxD T^HxD  
AFrh
ThhF
 MFTF	bsh:F h)FhCF ! F*F TEФ aXF\9F F*FG !c\z\Bù=HxD *;HxD{
0	Bh hh5HxD11BTEIФ 9F (A-HxD 
0	)HJhxD hh%HxD 	Jh hhHxD)F:FCF6O5@ Bi		6& %4
]HxD  XFF (
%}   h  f    L  u      K        -OOPUF QHxD[OI
(
x"O 	yDPFBq JHxD dIJzD	w
	Z	` _h1F:FcF0 )F	"F3F   ""T0BDEФ ~aO Fw(F! F*FaFG0cE*H)F ZFxD  <EDE/Ф XFHHxD H YFxDHxD H)F xD"F3Fi5@uE		x %HxD  )F ()                    p(,N~D	Hh+IyD 8 %  %'HxD &K)FXF$HxD #H)F0X ( $ HxD IpX)F ( $HxD J)FX ( $HxD \)FV q ( $HxD rK)FXp p     p  t  x  |z  p  KJ{DIFXðHyD+hxD.FA FP9FjFV( 	Oq"F w (O5 F O5A(F2hB	4C (    KJ{DHŰXxDI#hyD&FC FO $D !Or !p9F
(4Oq*F . ((F  $C F3hBEt       d(  3^69<a^CTccc>@CQ33FIKaTNaaQQTWY[^accpe OTqOztn@4kd$i$gOtdO4ao D^$\O DYo@DVOdSOtP$N$LO TIO dF $D$LB  !L?O47HxDFN $~D|+01F
^((F ($"HxDHxDF
 &!`O4c$4(F Fp 
 U  ?  +  6  p0pG'K p{DF2	%`O5?!I[XhF
;  FF!j1iG5 (O5 i"kh@@B#k  ``l "bd0h #Oq`c` F(Fp` -G 	-KFF{D 'Q+JXhF F	9=FAfh F*hB !)p" p / F7F1fh NE(NF
!2F@F0ah0 AF	 2F(F !  U   Fb`(F#`AF2F 
		 8F FF	BM}DF $2F (8FOr ! O % d$`
HてaJ)XHabXJb)XbX#bC F !" F  pFL!M|DK&{D@cYHhF$XT -T4 F,*h (
&O6 F$0Fp L   p   p
p/  `2 }p   p
p/  `2 B   p
p/  `2  @ P  / @ RE  J@- @ 0d0  
 B  P9  0S $ A   $ R  J  0  0   0   0   0   0   0   0 
    R*    J  0   R*   	  
  @DA   P   R@/  R  / 0  P/ R/  P&   R BJ.Ƞ Ȍ 0.Ƞ Ȍ 0 .Ƞ Ȍ 0 .Ƞ Ȍ 0    R*A   
A@D  -Q `ep B7Šp ƌ 07Šp ƌ 0    R*A    
AA@D  B π  -@@*SӀ n*& !Т_|D !  _C|ڡ
=!
  @@:ӑ!
!
B@: 
 
B@ :!
 : 
 !
 
_B|!
 
ڡ

_|D; ;!  @pG - _|D; ;!K[ K [@:ۑ QQQQ@:@2 :۱QQ : 2_|$xxD_|$Q;@;D1K Kxp HIxD	8 b  R  -  6$ 8 S    R   -  R  :P!   R
 *      

 ΰ   :
    
ϰD$$ /@- 0`0 S0!!ϰ$$D R@/@P`p 0`0  
 S0 B>@(@(@H1$  R0  J  RP*  .
P(@H!$@! %@/
x pG1xӳ  x  x  xs  @ˁȐ@<,<@
<,<@뿠 8@ O8@ 88+ +; ;K Kı[ [+ +r; ;KK K$[ [1 @E@nɑ@<,<@<,<@_LNp1$1_L`1 +OCp1_LNp1"@+1_L 1 ;ODp1_| + +K K ,1[ [ -1?Q+<,<1 0TxQ+<,<xsLx|xQ;@_l p1 ; K1 ; K [1Q+<,<lxMxQ;@ _l?֯ ;OCp1Q+<,<HxtQ;@<,<Mp1 Kp1 ɢ<,<%ɑ@<,<- 
x±KxñxԱQ+Q;@_n ]<,<p1 +p1 + ;p1 
xKxQ+Q;@ 1_l 3<,< 
x±Q+Q;@<,<<,<ˮp1 +p1 +OBp1`1_| +++z? P;<,<- 9     ]@` ` p @ RRχ  \N   SSχ  \F    
  ϰ  
  *r4S
    S  
r8S    S  
r<S    S   /]@` ` p6     
 @ RRχ  \   
P  RRχ  \  @ SSχ  \  32/
  34/  25/  35/  24/<`@Н  P  
o `12   Q  / $(@P \  
-  %\0D0  3P  ,\  @%T8  41   P$̠3  $̠P0  Ƞ0D,Ƞ0%\  3P  ,\  @8  P$Ƞ  X$Ƞ%X  %\0D0  3P  ,\  @%\
     
P$ĠT    `@Н/   P P!,Ġ%T
  B`@Н/1+ +; ;K Kı[ [+ +r; ;KK K$[ [1 @E@nɑ@<,<@<,<@_LNp1$1_L`1 +OCp1_LNp1"@+1_L 1 ;ODp1_| + +K K ,1[ [ -1?Q+<,<1 0TxQ+<,<xsLx|xQ;@_l p1 ; K1 ; K [1Q+<,<lxMxQ;@ _l?֯ ;OCp1Q+<,<HxtQ;@<,<Mp1 Kp1 ɢ<,<%ɑ@<,<- 
x±KxñxԱQ+Q;@_n ]<,<p1 +p1 + ;p1 
xKxQ+Q;@ 1_l 3<,< 
x±Q+Q;@<,<<,<ˮp1 +p1 +OBp1`1  F@B ɑ@<,<@
<,<@뿡  _LB  pG pG 8pG pG  _LB  pG pG 8pG pG_| +++z?Q+<,<˯   pG ɲFBF	 , Fx3BH !xD  pF  p%i -Й&h%`ai !`j)Fi2FG (ܢB@ O0p6- .
KJ{DpFXhF		 FF(h F0Fp Kp{DF(HxDp@ٺJXhF	 5O5	"` FF3h F(Fp KJ{DX\ HxDLK|DXhF˹JFMOGzD}DXQ3cT2H``0 JT0zD0``	HxD@ > F  : -O:K;J{DXh8H9NxD~Dhqh  *7T496h .1HxDB@0F (? %
"Rw`B`gz`DFOI
T YFT"E$lGGT5>F7UEH!xD"k #Op#`OA`c`a#acacdd`S``4F

HxDrK{Dh``h F  :  0 p >  h-OFF  ဉ 

#iC Fn 	#`	᠉ p 
>h}h7>h}h7 -j1Fi*FG (@ 6-  ( >h}h7 -ТAO"ѠhB i#h

OI	E1J ( cih	 aPD` ` s hMEF1FJFh h` 	F"`'!iBMEJF1F h 	 F"`kbiFBj1FiG 	
w1F*Fh"hC`Q!`ND0 +J>hO }h7FF -л 0F
!*F  

O hESF+F!iBbiّDKE1FJF{"h F	!`*Bj1FiG 	
 F1Fch!hF` `	
 F`F ND 0 +桉A@O0KRH{DXT0@pG f 		)  pG  BKCJ{DFXh !a` m  3E	#`[
b FO (UѴ`.a@"khp@`E
#k  k`a`k"`!i Fo@BHoRNxDD	, C	) F!ibicj!`iG" Q (``L   ``L@O0  0 7  pGOAp %"  	OTk1F"F 
HxDmp@pGF 8 ("m#e#QpFpFF)  !"N颉1F "\*Fp@3F <C#RCQ e !hF^ +hFO  O1O O"1F~9F"h(`v)h"hF (h!h*/`"h !(h&`  -OF% %5F
$!{DFO
	Xh	
$%* @Fx *`F; Z) VP!D G                m                                              g                !                                              c  k        '  k      =    K      Q      W            ]  F #	bFx0 	(;*+2F #	bFx0 	($)ыB BFTBB%F"U4;0	) "AF0;	2;0 	(F$+G h)G gG@  l*GG G wGgLG 
МB\B%F U4x
՜BLB%F ՜B?B%F 
՜B0B%F x
՜B#!B%FUdkBB%F 
ДBB%F BB%F
  
МBB%F 
՜BB%F	 z
՜BB%F t
՜BB%F gy
՜BB%F ZBB%F OBB%F CBB%F 7G  &z
՜BB%F #
՜BtB%F 
՜BgB%F 	z
՜BZB%F BOB%F  +-kO0 "#`"     # A#`\)



 6&6 63BPXE	h\  '_hB
  8Fh %K`F8`e`8  K-O-FJm{DF&FXh|0[PF
82O4	"`  
-@Ѻ
< ,  "!!"DOaH=?BC"FIOE $=A (= (O4 !@  +QA@@I- "'K퐋{D %-F0%x -O8Oe-A ). 	PFQ (A 
	
	S
	@  4_ O<F
$+	 	  Z( ,a **g ******]  *  *          **********D************2**[ **********7FF!*$**.*14**h*4O 
_  *  5H+x
F10	*$+X%
R+`0h5P'`3h76 +ZYBHT+ _ P;*+	?)FO +x
F10	*$+8%
R+`356h             P'`36h7F|F	  %	0	)$( E|H %	0 0	*	$)/F *%8/FHH@HXxl+PHH H xHhT'`5h76|R %_PH_  P'`67& E   
o 	@
R'`7 @
R'`1h7F6 ,u ,-"dBeE_ $?(		g-G-Ѽ OOS'`I  S+# C7Bz@-%$_PD %
S+@ G{aL\E +@s *@p	Hxf*e*E* ,","ձH-!H !
 Q~	g*FG*
#	f*ћ  0(ѵ@@#`"` 0!"hB	$hg+ G+
dE`	g,E%e%	f)G
F=Tp ,dB-  + 	,Xp'
{" F
!F F01
!	(F`F04 M
~KKpE0!pd>p( 
!4 ,	ݼ 
 $B
4 ,Կ$g%
 * -!	_ %(H_  

U'`67& E     o @P'`74P'`4h7 %6
R'`3hx!H7 %HxDF6 	     Q  T'` 75 D XFbF !(H dEdFF dF !.F_
F
H_  	Q'`7" E   o @T'`47 %6 DT'`5h7,FM}D_  S'`67&   E   o @	Q'`74	Q'`2h7F %6T H  "_    (TѼ j((J
:
3Q0 DErFF0FTٲ3 ]FG0)E0!F@ F)F
" #
 F #02-
"
)FF
F	  !BB
04;L
3
S+"@$	(Dpx)	FZF
FT9

v{  eF
	 ,  %|B_P$

{Ա %$
D
ȱ %$
D	
(_0B F(F
0


@
 *:   1 A 0)		PF (@S
	:QK{D*PH xD  X (
D		 PF (@4
	_I 
_ !  Z! 0 0"	!   		P(PF[ (@
	)@
 *:   1 A 0)		PF8 (@
	:K{D*H xD  X (
D		 PF (@
	* *5T                m  ֹ  ̹  .  "  X  L   1 A P)0		PF (@
	:`U#}D* TU }D PB* 		PF (@h
		 @ 	 	e,@q@e$ @LB4, {D 0	PF (@7-B ҁ$ yD`B\`3L ,PFn (@- ; ܳ B0 13* PFT (@-XD%|DL$zD  +m$ @TH,4, {D 0	PF$ (@΁-  yD`TX`3H (PF
 (@- 	 1 Q0 03) PF (@-	L%|DJ zDB3*	 PF (@~-  BY  ` (	PF (@a- 1 B0 13* PF (@F-L%|DܾJ zD3  Q)PF} (@'- ƀL  |DX``T `0(	 PF\ (@- IX`yD `3QB* PFC (@-` `X`y+WЛ @.! !  H@( 0 	PF (@-@2  & ; Q0 03) PF (@-nL%|D kJzD 3	 	! B B*PF (p-=`\` 3 H(PF (\-4
 , P0 13( PF (?-CL%|DAJ zD  \,PFx
 B	#PFi
 % ,> F $PFW8 "
F(%B  @ +O4|#hB
!}
m     >  
      l  H      "                 FKFJF{DXhF	2F F9FF(h F0F,  -OF<M}88FyDX=h˕F((Xh
O 	OFFxDyD	 hgYhB6`h73#`Aa``h (#h
h  Ax_ * F (%)]ZFFO
 ZF;g+-e+G+ 9+
0+%+E*+\ + D+  E+@X+ L+QO+@~c+ ̀ [+@p+ Ȁj+;h+Ki+@n+ fl+@It+Sq+Ms+@fx+_z+Ku+@V`h (#h E@I F (:bhY7!`P``RFfFRxd*#i*o*u*x*#CwSxh+FFmSxl+FdFaFv^F@[80VFF fO	F fFFK##Sx^+2O x2O !( 1F ;" F
F ZF-)])Б ](ИB3jF(BFF v#JF v #FFII O	>q?-h/pr+heF q  	 0-h/`h`*h`h ) ~ FyHxFO 	O
	#ah )ݲ% F4 (R`h7Bb` *1!` F# (@B!h
x hPx _ *;+5    Os &ch!hCE
 F#` ( .@ FD``"`(h!BF#F. ( 

5F O8vah62"`HE``b ( F[ &"h
 0 + .P.h+D5FahH``˨E"`bh * FBѽ"h
   (Ѯ  !

)pF# O8pah62"`HE`` ( Fu &"hhxYHx _ +п.hD5FbhP``;;E!`ah ) FLP!hhxZx ò + "*p

eFw1@JB(FJF6Z h8x9+	8+(0+++--+Y*X+/أA)Qa+Nf+x+J" F FO	&6'	1&PF!1
.+&VF V1$ _JOOaDE& FO	<FchYa` )0 ` F 2Yq	JE@!Fx(X(!F8l@À a JaFJF]JF	  2 -h r  *h*hu1p`1@JB(F1F62 h8x9+0+-+.+++3E+e+.&F_'&V O!&F<?&8HF<Fch;c` +0 ` F+29s#J!F8ECF;3e(E(!F!FFaш J )*hA0  { z

eFJGD O:h* FO:PF˚hBO
M}       -OF6LF6KF|DXh-L3IgX:h
1NY4h ,DchhXB? F)F"JO4.1h9" "b`! *3h#`4``HxDh	 "`ch Ya` B)F F" (F;hxO4O O3"XF"#)FCFѵ F     -OF:L:K:I|DyDX
h  *e7OY;h;5HOРxDhJ`T
0hF3fhC3+FU
0 SEѕ 
 " FAF0BAF F";h
G8h+F>$h ,ѹ HxDhJ`Z  hAF F (  ;h#O  0  (    F  u FBF    O0pO0@O0  +[ 0pG  pGhF !ԘY `pG` pG	 0
0	0[0`pG  pG  pGK0{DBЙBi
i  01P]Q-BO3B # #F0   I: Pr *FQB #

*O #C "2*Oڿ3bFC+pG  -CF0K{DBRi 
 FFEFVK FT
(  0E$EUE@V\ %0 %L&E=V  !+ B\BL@! DUL $$ NDT
FD@C+          XK-O{DBFF 𥀙B i"iB	E  
ZhAhF16F (H  BFIFFQO@ KRO@L" OCoCoC "OCoCoCQEr) =CEF%ah; * F9F (66 #BFYR@" )oCoC" (oCoCE*YhY =CEF%ah; *0F    B  8FK{DB
M}D(FHbhxDP"@"@(F!`8@8      pFHxDK{DS%@"hC% 
&p F(E`` !!a`L|DHxDH Fp    b  v  -CUKF F'K{DBFE%@
W pA ̱hF X L" qa ta *$$4aa$4ara 0G3N5  p
2@  di! 0F 0  SK-O{DBFFPHxDBiiB)F5FF7ihhhBȿ0WEJzDB  1 " C+ B75 P1 %VSOH
	OE#^L#̱EOE`1|?R\FO VF3#\OE

 #3E	EOH P2FaE  < ,aQ- *   |  L  F K{DB!Daa (  -GF@N
F~DB>HxDB"B"Gaa &#F&,FF`h1IyDB!i *i #`475UTOCI2 .oBoBD bFOC""loCoCETk+ -oCoCFV3 ."[oCoCB 9R= +a 
      -CF,KF{DBOOQ!i@h	h	0m BF"HxDB 5  FB 0@E(r!i3F  #h CA;RrE `C	REC>.a F,F F     8FKF h{DBЙB,`8
i0 8@8 6  F KF{DB9i  #h3lNC@B @BhBbhPFHxDB F<Ff#i  t FY<F5%aNa F      2K-A{DBFFZ.JMzDR% "FL)ODD8F8 @@q }F#HxDB(F%F8F0 # @#`<FlD(F!FF(F=Fv'h / F!F@E(FEF
HxD~ `F`
HxDv(Fr  Z    `  *    *        ' #-O-FzDO 
O KFX
hxF3h  (-)%F
+)F
%x - Ä6iXh0i) F"yD,h"(FyD#O 
|,F n) F"yDxx(+  F+)*  * 0-`xF00+ + z'	 &	 &
%3F+0+ܿ̬03/Fݼ9 !FFf.Fh2 +QFF10:FЬ1/LF !H05l? O
 4, ,ؿ   dB )i)M)
!-
$  F2 !FF0	, #FeF+F !FFEFFP%	 ( ԃ+м-   $P 0	,400FЬ1	*ج0 
$0dF / Dl(9EF FX FFF FO  F= )@|	 *LFvzg +FF-+F#	+[0 j@D
R+a;@;[3->ܸ  N)ݸ
OK8D {';(% E'KD  kfK [dk[6"IKyD ;[ /\xK:D i[;7 𣀱 &5FF7F/O 
"!`
	 ) 0K #D	 K%[3R*H[T{K=xDI  lK[>B_FءBT{زO:YX{BKD Kk[3D	+K8 'D &5FF7F%
 {h7[+|D  {hK@K[4x[ek@kO 
O ""` /@KZO O
 	!<' & 6B0FNI~DBF0"	aCa		# 8F
! 0:|3KEF	 8 
 O			 8F
!		0:cFE۸  %  ۶  xhK A
F9F)K
!F %
(r +FF  opE3F6BF1FaEaF ) [v(FOIFF?FHFF +HFFwF"F4 .1Fi .(F1FaFHF #hF`)F (A (@k @g +@b!0FA)FF (DV  |    8  *  
      v  R  "      p  8  ث    2  B+CI#pBѺ?ѬI

Fy + BO:
oSo[
  ( J3: ;[:@+@+[?HxDB)ЅB'0F(F*i3iC *Q^^qFA?/p͋ SF +ѻ ?N̋( (aH I  H^I_K B*ѫT{KS+K%K2TH\I +[2 cE
OKB2?z0O:IT{Pش̋	8ɛɛ
IJJI [07KB#8@)  p&;ԟ%#HF(F0F
HF(F8F0F LF`
 APFPFYFL4       5?55  ?5?       |-O-	 *!" D`  `KJ B,Bt`*-M}DM}DM}D	!(F0D`EF ք)F + фx@$` zJzDBF 𵄠IyD + a` 𪼰H
VFnS+#C#p5GQ &A@%oc
E3G		!@
}M  jg5&S0+s+C+j+klK0b Z!+;++ո[E+
:{D  kk
:" #
}J O O  D( '  !
	*%* % %)$ "  	 +!F$ "	 
3 +FO1% "F#O3 "F#!	#	F #  !0I E*JzDB F[ 8 - 5 [U
 OD [	# #IyD3  `(?aCoc?yPD?<sOu              ܣ      ~  Ց K%[3R1 *K     #yD ;	e{yD kg{3R1 *gKK #ѱ չ  *@
<3FkMFF{:{
Ps:q ȁG nj ;5{D kK k4{{;0 FqǛ vǫ B:''{iD  +]"k+*0BqѶ ;0Kk3@[
FF:0(k`[ (iۺf	, )D ڹ O @1MF.;;$(BD.+JEFK0 n%1++ܴn+@_r
B0!

pFFF:9)xHp!/2@ %:+	 3B
6=F^F	6B۽
7F
  "^FJF DD=F^Ff 	ݰEFF / -
)F!FF Fby F F9F
F 
 /F9FF(bQO@G' ' HxDB
B)i  ix  #
 )F  #3DD  FYFF (FAFF F)F ( F "
!
:aF*
! "Y )ݹ !(FJFHF F)Fo (	o
F

1&k & +  .1Fwph1FG
8F !W	)F F1F8F 0 F,(FFh8F FF !FcR@9+ *	1 )ҹ +_F! FQ)FF (9/	1CF +ݻ99 iCFtFBF
! " F
! "BF0FF
! "F7| F)Fe 0 6NE F
! "xF      4  Ơ  L  N   &D! F)FF (B1"

pAF,F99*PpCF80)(Fj.B0F F FBO 
0  "p
`*`   F  K-O-FJ{DFXKFhF;Fexв (ѻ-O
+F?F . .
9xx)X)@&73+5444444444)  @OO2o`CH& @OO2opC<
& @OO2pK1 @OO2oxC& ПbcQ2F+F+FQF2FFF и   !C    $ %0	)؋F	hYDWW!7!ENAIк !ДBu۝BB
E $(O E"#`O0!aCEMeu#Bs۝BBEO4o E""`O0aCEeDEu q9 'O  "O`CO  "OpCo #yO  "OxCsO0 .?(0 0* F)F        4333333B   iK-OFhJ{DFXKFhF3Fexв (Ѽ-O+F6F / /ѕ1xx)X)@'6
/)//
"O:opK#'"O:o`K:FO0O1+F:F+FFFO0O1"O: ! $ %0	+؜F
h Cx0W 7 E'K"ЫEE]ETEєEO4""O1O5`cC0EEEu! )dBeE	9 O0 /t0xd0?a
' F)F  𵂱
M #}D\\/]]Bи43B  F F 
   k0cpG k0QpGB 1@н D@pGKJ{D0ðXF+hAOr h[l F!FF  IFyDOqF 	I "yD A)hB~C0  G  ƃ  HxD&  HxD  pBLFBDBFxBЄB
҆xB	ГBx3B0  p Fp(FpK{Dh
hG H  K{DhJhG 4  K{DhhG    K{DhhG   K{DhiG   -CFP;*NFY~D  F0h , |F @"hBEѣhai#l, r"c"# 4LE,h GT )lh GT? +ѩh!MFpY Gy 6  Rtd  Q   Q   0P     / 0P       /  P  
  Q    / /    0: Q  
 Q  
  Q 0  /99A- @P  
 Pyj   ?  3  Q VP  	  τ 0\   V_   :
  0%S%  
p U83  
    ^	  0%/  2τ  \ UP     0 P U   1  P W_	W  
 ? ^  
/   2  P U P 8   1  P U P # p@- @PM+  
 Pi  _/0B_  U R  
   M Ѝp    0%S     R  
0E  0  Q  U
 P _`ϔ_  U ^  $ @- @P  
 `yZ  /   2  P U  
 _   0&SP80  
/   2  P
	W  
  Q  
?   3  P V `#  @- @  P0>M 0 0P	  
  Q      
   R     / / / phBBhaEӀh (pGcBaDaB`K`K("J`{Dia ~  HxD p𶺎  HxD p~  FK  J{DX`HxDF  6}  -OO 	F waF0h		hh	+@
  DBch (@#(EhiB_hiBТh(iBhB `` vHxDci;#i 0bFXi ( (iB iiLU, BE,0*iB#ih! h`*iBiBaKa +a!iBaa`iBXaaYF"`!1 `u_"(OwB#آsR DC   11(  A "!ohaLLE.@i` *U.0R      F_h'AER 9S!  (*iB?=C!@a``
*ihB2B/````7F .hB?@sE, +b  -AFMh h0F)Fr (@J!&iB<eiB O$؍h(hEEеBсhB@́B%&h& %`r@EаBhB@``fhiB
ЏhBhB ``HxDHi8i  FGi  /i  /ѴE p -8iLT,pBD, &iB  fh&e`"&iB.iB(aha (a
iBaaMiuBEaa	Xh -Ѣ`  X` &iBXh@𴀧iBhaci`B BH`@Qea`eiB	ѣhaa`B H`P bDO$؝h(hEEеB!hB@B##h#   `i@EаBhB@
``]hiBПhBLhB F``Xi8i  FGi  /i  /ѴE+ p -0iLT,pBD, &iB ch # ``&iB
.iB(aha (ai%Baa[i#BCaa`iBPBK`	Ѣ` P]`BK`(%"h (3BC"`Fh iBЮ````
'а?#Ҡu/ V0 DE.33"  C   'fh %a Ma7B
a LD,>Cf`a(T,0E 3F]h%B@ 5S%` ."ibE?oC%a`` ihBcB````` #a
HxDHxD	hB?KL	HxD	HxDhB?@D      ތ  ،  7FO3   ""#!FCFJ!FzD(F>Qv   HxD p ( 0  :  8LH|DxD#h+( zF8HO2O `xD#a`a`!aa(FhU2B,#`$  $
HxD><	H	I
JxDyDzD 8         -CFJK
F{DhA !xi )(5E {@J FzDhFoѹD	1H9FEqhB_0hs BcEVӛh +K2h)F(K&K)HBxD ER  @ FB %hB5F  1?иB=HxD-qhKs`hBi F!Z\ FAhiBO3a O:FZ0Ѭ %N  $      -GFGhFF'EHxDdEn@tf F. j0BJzDh@@u%hIyDJh9FPBfD@`2FB JDu"c`e #J`IE<yD
iB8aHxD1vDaB@@a<Bӊ*@7EB>Cf`K`]hE]`iBhB@	L>CAf`Z`a`CiB+уhB+٢LC >Cf`P`HhP  H`IyD`Ja"KLC{Dg`QhA P` "`Za ɀ"
EO
)ȑhDh	(	HE`EhB@𳀃B	iK {D h! `lKEcE𦀟hB@```hiB
ЯhgEhB ``WHxDki;+i 0F_i	 /i	 /E p (2HOL	DW)BG)0+CIyDiB#xh y`?iBiBaCa +a(iBaaiiBYaa*ch

 BA
c`BhBA`4 @BNf`K`Xh@ X`!HxD74HJxD!FzD
K` $BjhHxDHxDhB?fg F $                r  L      D  9q  T  4  ,  ;-O{DFhByD!,	٦p &$ (Ao
,4$ $h;{Dh !(4hhB"  `iBhB`` xD XhB@? )tO   wBGqBz"W	"aD&& &@&(1hhB ! `iBhB`` D4q`B P``ձh:O{D h(0Yi=B=C`FhiBӁ````4yD`La s   q
 ! w	
&

  !  N!@ 
L1S!KhF#
Ah!F
E,FFRFi (Hi (yDVEfEhiBзhWEhB )``p	xDnsi	;3i	 0F_i /i /E p )3,y
LDW+ BG+03	xDiB#
(
y`?iBiBaKa +a1iBaapiBXaa*
Bq`ChCB` DB t` L ݱH'|D(1ci=BE  `Fh$iB|````p8{D` A ҁ\h4$~D  ȁaB"
&в?"Ңw;PC 33$C "7L {DS 0S*V  'O fFXh   BFF (WOxXiS(0B`FF F (D .Bo
*^B C#C	 fD "V " D@" @7L2 &{DS"0FXh B(
Fi8FYiFF + . #xDhBFE3BhiBзhGEhB ̅``xDri:2i  FWi	 /i	 /E p (3vL	DW)PBG) 2xV}D-iB"*}`=iBiBaBa *a0iBaapiBPaa)	
Bs`Hh@J`ADw`]`-YP'xD h(2
B
CF`h iBӓ````{
(а?$ҠrOG PD@77!  G   %O  %zDa]a LaH B'0P`!(R' E :FUh%B@ =R%p /$yDi`E?B%0a``hxD iB
B```` "a6@O44{DhB^i*0`XaBPC`  !`Ya2@q`ShC P` hB {d~D2h
4{DTxDhBNh *KAhaHB@>!E;ٴE9إB7(F2F2 KBPr`#K` !4B{Di
ByDaxD1!QBQ6@*ODh/pB B JzD1KaB@B HxD!Q8FBF@&  iF FHxD 5@F?F ,K{D^hqBuBB   =FKB{Da@IB 8E@	E (F@EF@>MN}D~Dhh /EBH@B (F `EF@ރCѰ0BҹK 	{Dh/KB IBE
@Fl0EDHFeHxDp?m/FM}D(Fd8FSF  OF(Fq Zz WBT(B@NO 	MI}DyD1:!B!i-iBґHxDaI@sHyDxD
haqBb "Бb 2(1 *``1F(hshXh vE9E
эBӵB	zH^`)FxDh-vIyDDisB 8ah + hB HE@Zh`_`XB  FvD ZB 
3B Dt`	ZJzDha@`@Z`VL|DaiBѢhca`@Y`PQh-@!O/ 򘀕h(hEE$iBłhB@B	@M!}D,h$)`AE	;L|D$iB𱂌hB@``     ^  -  P       O      v  B  $       Ȼ    D  0    &  ʹ        *          T  X  :    й  η  r    (            l    ,          4    hiBЗh$iBhB 5``"|xDٺQi9i GFLi ,i ,LDGE<` -48DL	|DT)pBD)1$tD?iB!eh%a`$iB,iB)aia )aiB
aaTiBLaabD`DUh@P%T`Y`)H%xD h(2L`Fh iBӓ````l
'б?#ҡw:U,DB77 G !JO $zDa\aLWhaLB%0W` )R% L  *FTh$BI ,R$P -ѸHxDiqE?B$0a``HhxD iBB```` "aH)FxD  '/
JB1F
|E8F(DPF
r! a&qБ8[E~`ӨE BPqh! p`k`(؃I&yD 
h(3LF
`h	iBzHxDy````s
'б?#ҡw>QD@6 6" F !aKO  {DahaL_h(aLC.P_`)S.0H   3F^h&EI 0S ` .KJzDiqEC Pa``
EIhyDiBӂBӝ```` #a?K{DhB0i`2a@S`Dt`6L &!`5IyD!?pp:hB?ԨոhB?12*N~D@!O6bKBgO	h?hHxDHxDhB?ȭq" %0FVz  ҳ      :    R  8    ڱ  p  w  ذ    h  N       v  u  -A(F&s3B@   BFo?B%`
)(O F %w<HxD1t'B@ pH (rB<@W<a )W\R  ah @Na`Xh@Y`W< @AG<AhAC`H)FxD%Fkh# BLNk`B H`Xh@ X`
HxD	J5zDpb(Fܮ  P      F ( sxD1T}D.iB6 p (W ( )! Wdp1 F1F (@!B
DhiB /'ؠh(h`EаBhB@
B
L%xDh!`vaEбBhB@``jhiBХhBhB ``xDai9!i eFOi /i /ѵB/` (<iML}DU,pBE,)M}D-iB!hh i`"-iBiBaAa )a iBaa`ipBHaa	Yh (Ѫ`!Y`,BnYh@j@ƀHxDiBhaCi`BBa`Ea`HxDiB@X !2SEiBуhDa`Ba`PG!.)؝h (7hB iBOhB@KB	ѳK!{Dh `rB	ЮHxD iB:hB@6``chiBОh iB9hB )3``Yi 1i 1h0FOi /i /іN~D6iB` -4iHLxDP,pB@,)N~D6iB !Ch#A` iB(iB)aia )ia Baa[i#BKaazHBPxDc`AiBт`! PX`Bc`(pI%yD 
h(3BCF`h	iB````
'б?#ҡu/SD@7 7" G !PK%  a{D`aL^h a7B>CC%@^` )S%0H   +FXh EI (S P -;JzDiaE?RC @a``5IhyDiBEBB```` #a.HxDjJbZ*H!F*JxDzD J`(IyD1p@u#HxD"HxDhB?HxDHxDhB?Ԯ ʭ    $  r            z          l      r  T  AY  2o  0  o  o  n  n  8
FFpE  C FBO4 F FF8P !"F (F8  FF F@AD%`%!"H
)xD%%!)F"8FFHxD1 p ( %  pF
5 FF (V!""1FB("F0F(F  ާ  (F_pP +  +""pG  pGHxD  W  0o   "D=!F.HxDhG  % MOR 
F!F*F   ;    8FCh  h)FAh C
 h(```  8 (hchBY`a`88FAx ^F8 !`A``   F8OABн@  8 F F
(FF F(F88FXP[ F5(F8@B#`O08  K{DhBHhpG1
h *FpG  !K-C{D JFhX`  a !iFU ` {	'b" ?8O 4O 4 X	MO}DDc(b@F H"FIF@F P !(F(F<`   Ω    J8zDhFM` !}Dh`Hah+X`hHxDKJ{D` iX` 
K{Dh` G "$  "8@    U  "    pM}Dh3F $ 4V/ * V9<Z ИG ,H)Xp@ p  
h #p
&F2%x0=	-S `Fp-OF0FFdиiиoSBSx	иXиo'
    W ,u 9dBeE-"+17FFOz( F)FJFSF F)FSFFJF_EF
Fм	0 
XOaOA
 ²+TѷB_E0#; !9p]p\rT1U?Bӽ𵉰OFFD8FIIF0 h( F"" F AFh+ F(F 0FSA(FMB	  T  -AFFF;Fhh6еB.F9F2F[h` h&`O  -ܽKFJ{DFX"+h,	,&F&8F2F ,)hB   K-O
FI{DFNF[X "~D
.
h
F]#%+ 6B'0ݩ8F
'  ( 8
O 	FJO
& FF\PK
"% )
8Fi0+-+ +++Ѝ'00;	+
(FA(-
r
'FO8'.)(F
y
B
.\'`O3'l)h)'t)z)"
\h(^!

!
\l(^!
 !
Z
'
J
'!'s&$h ,zwc"h !&-, jpx#0 "h&, !-0  #EdлiлoлuлxлX6ѻoZBR   N.wvvvv&"x"& #
#h&F4$ ` F@F"F"FFF ! %%!  ,- (JOqzD-&F$L|D FF AH@JxDzDEK8F  !0!8F!FZF]EJ8F  !0!u4F3hB" 6  S  P  O  P  P  -AFLFIm|D &eX
AFF(h`f"F@F9F$+hB
m 4  S+@pG0 #
!
M$}D0	I(FAF h(" F 0h+ F0  O  F F F@FO3" "#E  )F F0N~D0hбHxD1hhh 0 F9F@[.J	HzDxDh`@         K
FI{Dpm]XF
A  1F+h 4I"F yD F$+hB*
mpƄ  N  Q hFFvH!FxD N  Q@pGF	F%O4#`$  CF
"
1F"h F ` FFO~"  OQ`X```aXapG	Ѳ _
A`` F F
HxD<	K "b`{Dh ` D`IHyDxD`@- :  *      p?XhpGF!FeF(e`O0pF
L|D h  `M}D,h0F C
аBJ#`O0p(` Fp֢  Ȣ  F:`O0I #yD3TLBRh *F }  FFFh0F)FF8F	JzD	J3FzD \B,O5 %("$`(FM  
M  8Fxr*w*a*Ob!`  8 " FOr$ ]xb-3 3x+-3$ xb-3xx-3Bxe+B ""C
`8
KJ{D-A &XFhgh0 +(FGCT5?$h ,0F   F N
F (F~D !9`iF  (p@ QKBS:`O`(` O)`d	Hj3XBO `O`O `   MF
}DiF F8F7XNC "`"a`a
K8XUP aga`F `0  fF
C 2  *K+J{DFXhbP	!`@@O0
#kh@@B k "` i !a`,$ `B#i F~ bi  `SBaai F`    p   p
p/  `4 p   p
p/  `, p   p
p/  `$ -p   p
p/  ` p   p
p/  ` p   p
p/  ` p   p
p/  ` p   p
p/  ` p   p
p/  ` p   p
p/  ` 
 -p p    
p/  ` [p   p
p/  ` p   p
p/  ` p   p
p/  ` p   p
p/  ` p   p
p/  ` p   p
p/  ` p   p
p/  `   Cp   p
p/  ` ~p   p
p/  ` @-p   p/0  p   p/ p   p/
 /FBH !xD[%U    Q@- @  0` S  : @y  Q  * a  R   @- p `Pz @P  
X p`  PXD0   Q  @,  @(0 @   (~  ~  }  }   iF 
J+ZC*B
  MbP?@B   !FhF 2 ( O0 `K{D` d  		)չ  pG  -OFkNFFSC~DFFF ƀgH7X9h Fbh * #c` 
 * k +@\IrXh  `` :8h (  F0 c:hA@ FF	#`
Z FR 禉`&aࠉ@&k0h@@B#k "`5HoCAoQBxDS	& @	+ F FFcjIF2FiG! \F (C C@6D8h (2 FE.ZFD#h  ` F{`=h F1 QF FFFHF!h^E2F`h"ha`&`FO5(F{   )o A!
 9OB	 $O|O~*(4p@pG  -GCSNFF~D QKXh	OJXhF F@ P FO5{
R Fe (Ѧ`&a@&k0h (=whahB1@BO` (0`Ocs`BA #@ 0 `OG	IFF ( 
1F:FPF k @#hY!`\bhPࢉ i" H#hBB;#` h@bh!c c"F3`q`B_"```   F4(F dy  KEAJ{DXjF#h	 	"h 8  B
 x  FF  !"FH 
AMVS<HO!xD:L|D]!"  (Q&4HxD O4S  &(F ( .`	Q &#*s  $OFY:`"T@#`F B
ЁhJBhKBIB9h6O4L"|D"pK ${D`fO4(F:h+ѣ F PROPnvOCEhy  w  O       *iЁBg.A Ё *  F #\T3B	 #,FXP3<ѫ > $]U4BA Ё *  FcdB 	\T3Ҕ

FF#FV};E}ocC
SRB T30@- @  0M  8  P0#S8t 8@ 80   8   PP  "0M p   
 ʠPp<Ѝ0u  0@-PM @  Q  (    U 040  
 O  Ѝ0   "   p       0 ,T  0T  @- @ P  S  0  S    Ì0 S      0  0 S   
< P`r`pQP 0(  e Pl    ܓ  ȓ      0@ S  p /  /p@- P `   0  S
    @#0 Sl    @E T  P 0 0C   @,0 * pp @aP        Ĕ  FHF)FxDF"FJ  pFFhHxDK{DBjHxD  b1F"F 0
 $h +
H$xDh` Fp       ڑ  VHIxDyD  pFM}D(h,F@! F(h!F20F!F" Fp  
 -p p    
p/  ` p   p
p/  ` Np   p
p/  ` p   p
p/  ` p   p
p/  `{   P-C   P
p/  `r K-A{D8JXh,FF{%F=/2FEbEО\ .<s`
/FU;K "F#F3x=+Fp   !
"S "@pGS @pG  6p   p
p/  `9 p   p
p/  `1  Q/#  : P     
?o/o C02   P @  ! P @  !!P!@ #!!P@ !!  P#2! /   //o b0/  P  t    Q
@-@ A/  Q0  
  aB Q  
 0 0`B S      
/oo  B     S0C  ! S0C  !!S!1C "!S1C !  S""!  \  `B/  <  `B/  3 //o b  \3  `B/  P5    Q
@-@ A/ 0R b0AQQAQ/ 0R bAQ0A/  S  R    Q  P      M `-  Ѝ /  S  R    Q  P     M `-  Ѝ /@- @-` @Ppc 7' 0 T0 @-` @Ppv &q'0 T0  011 /O-  Q `  
A p	@O@Q  T   
00 V0  * T  
D @  V  pP   P    V: <0 P0  
 P  
  P            /  /l   0@-  @   H   
s    m  0    p  0   o  0 #@ 07@-0  @PA   R  
    0  P0
  
     0`10  PP  P	   0 SH  0 0  
  S L 0  r 0L L P0 0  S  S  P 	     c   >Tk   0  S 0 /	 //G- @p MM `        H  W
p	p PPp@0
  H0	-00 /3/2 L0 @ 08/  P    U   	-p Y
 Y   H  	P Ѝۍp@- P@ @c `P   
@0  003/ P
 P @  D /<0@-@0 P@M 	m        0@2& @8  P
  0
 3/ P p

  W   	 ߍ < @   jp@- P`@0  V@0  
 `  0  3/ P  
 P     @Q ]  x   R   < @   D/@- 0  S 3/  Q  
 Q  / R  S!  00     /@-  0 00 Ѝ   Q  
 Q  / R  S!   00   /@-0  #  00Ѝ O-`LP$M S@p   P  $0 0	   Z  "80( s0  Q WP8P      ZH 0P0P     0  0  R      P  # 300 S  
  : S  L    W      P  
 8 P     P  
  5  P    W    P2  
  q  
 qX  	  
 /0     P!  
    
e X 0$   , =  ;   
 Y  X  (0 U      i   e q  PQ     W$    PB  
0  X0  S  <  00W  0      P  
-  X00 \ 
#0  $0(P F   0 
 0 0  S  (0 U   0(000,40 0	 S	        	 0  SPQ        X; Z      Y   
      P      0  	 $Ѝf  00 0<0p@-@0 P`M \        0X0
   P  
	@  X 
 X 5/  P 
X 03/	 P P @X c ߍpE- @gMP Q                 S  r8  0`` S
8   
    R   S%huP   R  S q V 
     X   RB pp S  X   V       
 S H              W  
 0   
 00    Z  
    W     V      W  
   Pf8   U0  P1    cQ*1  W  
 V ! 3f∀  @    R0  Z0  Z80  
K  B   V  J    W<  
 J  9   S5  "hrP0 S0   0   
01Q   PN   a80    f  0S*Q 8P.     R  S   0   
002K  
 I  8  0 0 S8 
 8          gߍ48 8 - !/!/ / / / /!1AQaq/!1AQaq/// -- 0 -@HЍ/ -- 0 -;@HЍ/ -- 0 -P@HЍ/ -- 0 -0"@HЍ/ -- 0 - @HЍ/  0  R	  	   R
  
 B	        B   "$  / /@- 0  00. Ѝ G- P` p  P @    W  @0 @   @  0+  q  Q   @@0  
 y0t@  Ti	 !  0  S   D  	P  	    *  0 "(]  P	p S  
0 
 S
    0   
 0 S
  @     Z"t@.  T) 
   S<   P   r  P
 0o   P   
 0  @ `    @Z0  ?    P   L0   0   0  S@ @   ' ' S2   P   30   0 & P   (  P
0~ %  0  S  @   
( P        0   Pg 0   0 &  0  S[@   '0  PR  Ѝ@-L0  $     0
0Ѝ @-H @-L0  @-@-O- Q p P    p  P p  \    r 0P  \
@`   Z0  ?o  SC  c7"c$xt  )8
8  S `!  *0`@  * S`@200by
 
   Y !  *@@  * T@2Ȍ    Z    @?o  Sd `2  
C c87$ 
tp `
(88  S !  *0@  * S@200`b
x  0
 0v 0  Q `!  *`@  * Q`@20gh$ t
 p
_)88  S p!  *0p@  * Sp@200b
y x 0
 0I 0  Y !  *@@  * T@2Ȍa   \]  o  Y   X
 W `3`##	`!U  *S   i:A8!I7 $ t`L  0 0 0(  Q 0!  *0@  * Q0@20bx 3     0  Q !  *@  * Q@20`fȌ,*(


    (" 8 ( R   ``	S ``  V  
L `   `  U 0  
  r 0 ЍO-  S `@ p   R0  ?o  SC  c0"s$Xt`
 
 '88  S !  *0@  * S@200bwp
 
 	x  W 0!  *@0@  * T0@2    R    @?o  S`d P0  
C c6s8$c	 t	 P{&88  S !  *0@  * S@200Pbv`  f 

 Q P!  *P@  *
 QP@20`j	X$ t~ P'8	8  S `!  *0`@  * S`@200bwp	 i	 ;x 

 W 0!  *@0@  *
 T0@2^   SZ  o  W   Q P P3P# #P!R  *P   gW2A6G0g $t
@  
  &ȠȌ  \ !  *@  * \@20c
v` (  
   		 Q 0!  *0@  *	 Q0@20i %(X("8,(	 R   PPS PP  U  
 @ P   P Ѝ- xGF=xGFxGFBxGF  xGF         Android             !8#$%& (
h)*$,(t.\/?/?X011h2(33$4|4 7 7L  7P  7T  8 8899=A4E\E8FDFFGJ  (J4JDK@K  KKKKKHLQ R  cdL`lLmPn  Xnn0opo8pqq$rr$t<tHu v0vvw       T  ?$4t           l̔Ȕ8P  l,T  |H̣4$ܼT  \H  ҽ008t     
HT  $  0D  T  T4lP4Tpp  p(\  X  L  0	X   8L4           |  PXp  (l  @| %8  $   84    $  $  $                                                                                                                                                                                             ?&_                                                                                                                                                                                                                                                                       @       @                                                                                                                                                                                                                                                                                                                                                                                                                                                           @                                                     mismatch at fencepost[%d], expected %d found %d
 Testing size %d, align_str1=%p[%d,%d], align_str2=%p[%d,%d]
     Failed at size %d, src1 %p, src2 %p
     strcmp is too broken to do difference testing. Testing difference, align_str1=%p[%d,%d], align_str2=%p[%d,%d]
    Did not miscompare at size %d, src1 %p, src2 %p, diff %p
    strcmp is too broken to do difference testing. Testing reverse difference, align_str1=%p[%d,%d], align_str2=%p[%d,%d]
     Did not miscompare at size %d, src1 %p, src2 %p, diff %p
 Unable to allocate memory.
 Unable to set protection of page.
 Testing size %d, strings equal.
 Testing size %d, strings equal reverse strings.
 Testing size %d, strings not equal.
 Testing size %d, strings not equal reverse the strings.
   Verifying equal sized strings at different alignments.   Verifying different strings at different alignments.   Verifying strcmp does not read too many bytes.   All tests pass. Testing size %d, align=%p[%d,%d]
 Failed at size %d, length returned %u, align=%p[%d,%d]
 Testing size %d with extra zeros after string, align=%p[%d,%d]
 Failed at size %d, length returned %u with zeroes after string, align=%p[%d,%d]
   Verifying string lengths at different alignments.   Verifying strlen does not read past end of string. Testing size %d overread, align=%p[%d,%d]
     Failed at size %u, returned %u, align=%p[%d,%d]
 Testing copy_len %u, src_align=%p[%d,%d], dst_align=%p[%d,%d]
 copy_len %u returned incorrect value: expected %p, got %p
 copy_len %u failed to copy properly: src and dst aren't equal
 copy_len %u fencepost before dst was overwritten
 copy_len %u fencepost at end of dst was overwritten
 Testing copy_len %u, dst_len %u, src_align=%p[%d,%d], dst_align=%p[%d,%d]
 dst_len %u, copy_len %u returned incorrect value: expected %p, got %p
 dst_len %u, copy_len %u: strcat overwrote dst string
 dst_len %u, copy_len %u failed to copy properly: src and dst aren't equal
   Verifying variable sized copies at different alignments. Testing size %d, src_align=%p[%d,%d], dst_align=%p[%d,%d]
     src_align[%d] is 0, memcpy wrote into the source.
     mismatch at %d, expected %d found %d
     Failed at size %d, src_align=%p[%d,%d], dst_align=%p[%d,%d]
     wrote before the array.     wrote past the end of the array.   Verifying variable sized memsets at different alignments. Testing size %d, buf_align=%p[%d,%d]
     Failed at size %d[%d,%d!=%d], buf_align=%p[%d,%d]
     wrote before the beginning of the array.     Failed at size %d, buf_align=%p[%d,%d]
     wrote after the end of the array. -v Testing strcmp... Testing memcpy... Testing memset... Testing strlen... Testing strcpy... Testing strcat... /proc/meminfo r /proc/stat cpu%u%c /sys/devices/system/cpu MemTotal: %ld kB MemFree: %ld kB 
 read beyond buffer (null) 0123456789ABCDEF 0123456789abcdef Inf NaN 0 . inf inity nan Infinity :  heap corruption detected by %s libc_malloc invalid address or address of corrupt block %p passed to %s max system bytes = %10lu
 system bytes     = %10lu
 in use bytes     = %10lu
 stack corruption detected <unknown> /dev/log/main bionic/libc/bionic/libc_logging.cpp conversion specifier unsupported sign/precision unsupported /dev/log/events libc FORTIFY_SOURCE: %s. Calling abort(). %s Unknown error %d Unknown Real-time %s signal %d Success Operation not permitted No such file or directory No such process Interrupted system call I/O error No such device or address Argument list too long Exec format error Bad file number No child processes Try again Out of memory Permission denied Bad address Block device required Device or resource busy File exists Cross-device link No such device Not a directory Is a directory Invalid argument File table overflow Too many open files Not a typewriter Text file busy File too large No space left on device Illegal seek Read-only file system Too many links Broken pipe Math argument out of domain of func Math result not representable Resource deadlock would occur File name too long No record locks available Function not implemented Directory not empty Too many symbolic links encountered No message of desired type Identifier removed Channel number out of range Level 2 not synchronized Level 3 halted Level 3 reset Link number out of range Protocol driver not attached No CSI structure available Level 2 halted Invalid exchange Invalid request descriptor Exchange full No anode Invalid request code Invalid slot Bad font file format Device not a stream No data available Timer expired Out of streams resources Machine is not on the network Package not installed Object is remote Link has been severed Advertise error Srmount error Communication error on send Protocol error Multihop attempted RFS specific error Not a data message Value too large for defined data type Name not unique on network File descriptor in bad state Remote address changed Can not access a needed shared library Accessing a corrupted shared library .lib section in a.out corrupted Attempting to link in too many shared libraries Cannot exec a shared library directly Illegal byte sequence Interrupted system call should be restarted Streams pipe error Too many users Socket operation on non-socket Destination address required Message too long Protocol wrong type for socket Protocol not available Protocol not supported Socket type not supported Operation not supported on transport endpoint Protocol family not supported Address family not supported by protocol Address already in use Cannot assign requested address Network is down Network is unreachable Network dropped connection because of reset Software caused connection abort Connection reset by peer No buffer space available Transport endpoint is already connected Transport endpoint is not connected Cannot send after transport endpoint shutdown Too many references: cannot splice Connection timed out Connection refused Host is down No route to host Operation already in progress Operation now in progress Stale NFS file handle Structure needs cleaning Not a XENIX named type file No XENIX semaphores available Is a named type file Remote I/O error Quota exceeded No medium found Wrong medium type Operation Canceled Required key not available Key has expired Key has been revoked Key was rejected by service Owner died State not recoverable Hangup Interrupt Quit Illegal instruction Trap Aborted Bus error Floating point exception Killed User signal 1 Segmentation fault User signal 2 Alarm clock Terminated Stack fault Child exited Continue Stopped (signal) Stopped Stopped (tty input) Stopped (tty output) Urgent I/O condition CPU time limit exceeded File size limit exceeded Virtual timer expired Profiling timer expired Window size changed I/O possible Power failure Bad system call strlen read overflow ANDROID_PROPERTY_WORKSPACE  %s:%d: assertion "%s" failed %s:%d: %s: assertion "%s" failed                                                                                                                                                                                                                                                                                 0000000000000000
         	 
   
              (((((                  AAAAAABBBBBB                                        ?      $@      Y@     @@     @     j@    .A    cA    חA    eA    _B   vH7B   mB  @0B  ļB  4&kC 7yAC ؅W4vC NgmC =`XC@xDPKDMD      }       ؗҜ<3#I9=D2[%Cod(
 7yACnF?O8M20HwZ<sOu          	 
   
                     ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ a b c d e f g h i j k l m n o p q r s t u v w x y z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                                                                                                                                   	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~dlfree tmalloc_small tmalloc_large dlmalloc try_realloc_chunk dispose_chunk add_segment prepend_alloc release_unused_segments libc    pthread_create sched_setscheduler call failed: %s   pthread_create failed: couldn't allocate thread pthread_create failed: couldn't allocate %zd-byte stack: %s pthread_create failed: couldn't mprotect PROT_NONE %zd-byte stack guard region: %s  pthread_create failed: clone failed: %s        zR |
       (          ,       D   D   	    A     \   	$    F     t   	             	d    F        	    B8      @   LBBZBBb         zR |
          <          4       B  ;
   (<D	T t                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    z    z    z    z    z    {    {    &{    ={ 	   O{ 
   _{    r{    |{ 
   {    {    {    {    {    {    {    |    |    "|    3|    G|    [|    l|    {|    |    |    |    |     | !   | "   } #   "} $   @} %   S} &   m} '   } (   } *   } +   } ,   } -   ~ .   !~ /   0~ 0   >~ 1   W~ 2   t~ 3   ~ 4   ~ 5   ~ 6   ~ 7   ~ 8   ~ 9   ~ ;    <    =   , >   > ?   L @   e A    B    C    D    E    F    G    H   	 I    J   / K   B L   h M    N    O    P   ހ Q    R   # S   S T   y U    V    W   ΁ X   ݁ Y    Z    [   * \   I ]   ` ^   w _    `    a   ݂ b    c    d   = e   M f   d g    h    i   ʃ j    k    l   0 m   ^ n    o    p    q    r   Ǆ s    t    u    v   . w   J x   h y   } z    {    |    }    ~   ҅                .    9             54 =                 e 5     ! !                                 
      Ԛ    U      )  K      8          9$       x     L M M M     0h (a                 memcpy buffer overflow memset buffer overflow                                  8   )    K  H                                                              )    K  X                                             
                 )    K  h                                                          @               @               @  <    8 <            @    /dev/__properties__                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"libc_test_static    a .shstrtab .text .note.android.ident .ARM.exidx .ARM.extab .rodata .eh_frame .eh_frame_hdr .data.rel.ro.local .preinit_array .init_array .fini_array .data.rel.ro .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                                                  a                     %     p   (a (                 0         0h 0                   ;         @j @  l&                 C           H                 M           \                  [                            n                             }                                                                                                      T T                                                            1 h                       0       1                                1                        p        1 6                                
2                                 "2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            0  ELF          (    (  4   P"     4    (      4   4   4                  4  4  4                                              .   .               8  8.  8.              Qtd                             pX  X  X  0   0         Rtd    .   .            /system/bin/linker                                
                            1              8              @              H              Q              X              `              e              l              s              z                                                                                                                                                                                      	                                       0             @             G             N             U             ]             p                                                                                             0         0         1        __libc_init __cxa_atexit __aeabi_unwind_cpp_pr0 strcmp realloc __errno strerror calloc fprintf exit strlen malloc strcpy pm_memusage_zero __sF __sprintf_chk fopen fgets fclose __stack_chk_fail __stack_chk_guard bsd_signal memcpy getopt_long abort pm_kernel_create pm_kernel_pids fputs pm_process_create pm_process_maps opterr optarg optind strncmp pm_map_usage_flags pm_memusage_add printf puts fflush qsort putchar __aeabi_unwind_cpp_pr1 _edata __bss_start _end libpagemap.so libc.so libstdc++.so libm.so  %   .   "                *                                  %          +   !      
                   (   )      $   -              ,   #                                              
                                                    	                                                    '           &          8/     </     @/     D/     H/     L/     P/      0     0      0     00     @0     P0     `0     p0     0     0     0     0     0     0     0     0     T/    X/    \/    `/     d/  !  t/    x/    |/    /    /    /    /    /  	  /  
  /    /    /  
  /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /  "  /  #  /  $  /  %  /  &  /  '  /  (  /  )  -%   Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌx Əʌp Əʌh Əʌ` ƏʌX ƏʌP ƏʌH Əʌ@ Əʌ8 Əʌ0 Əʌ( Əʌ  Əʌ Əʌ Əʌ Əʌ  Əʌ Əʌ Əʌ Əʌ Əʌ H-MP00L   D   <      K   0 0}($   H-M   00 q 0 K ,%  Kp{D	h hh #iiFBs۔Bu   O0pCp %  Kp{D	h hh #LhBhFBs۔Bu   O0pCp $  Kp{D	h hh #hhFBs۔Bu   O0pCp $  Kp{D	h hh #hhFBs۔Bu   O0pCp h$  Kp{D	h hh #iiFBs۔Bu   O0pCp 0$  Kp{D	h hh #LiBiFBs۔Bu   O0pCp #  -OFOM}DqNOD?0F, ( W )xGN~DGH 'GI*XlX F FZ'@1F`h (p7_EU@#hEPF   X h5IyDF4H(X0 hB "` (! Fx-L h,IyDF(Y0 0F0 ``X!O h!IyDFY01F `XN hIyDFY0 # ` a    KB!@ 0 F F 0"  #  4          F$NFh #~DhQ#P*hB:3B!iB۠h n`XpM hrIyDFpY0#iX  a !lFx\L h^IyDF0Y0b f@{zhhKB!P`(F    t  n  -AF%M%KOq}DX0hF 4Fx$L h&IyDF(Y0, .KFF{ !"{D BIyDBF q0FOq*F> q(F> F B<    0  B  E  -O-F홋ɰF
 !&lKHHD{Dh %O2`DY ,FNFJK~DzD
`{D" & @F9F (k(&R(wC(P(X?(@tc( h(a(@r(\m(p(y?u(Lv(Ns(rRmmHtLtI:hY yD0~0FpJY0h`4Fw*x*r*DD
D
cMfIY yD0^ b/ *ѐ|DlY0 XFVdD}`DyvTDrTHxDhNB`lRHILY YPh5OIr(FyDW" "LI(F:hyDp%S2/N@ $EIEJY   Yp>`Y0`
Z(.M<HYxD

P ( π'O6HYxD1L
S(JHH	S( Y  0S( : ( IY !I0RhyDZ           @              F     S    %    Qk  (  _         	Q& YFPi (E<S& iB< P&Hi)F (0 FR& S+pfO.YY dI0riyD[h8  +'  6 FBUIFFyD	
E1RMRLSH}DSI|DSJxDSKyD zD{D/OHPIxDyDNH %xDY@T "FhFK	h{DEHEJxDzD_4hBNT%@~D3Fi 
2F\'<H1FxDV`h &XT Zhh"SF԰X4HDxD*hQ&  0 
 
 

YF(/ 
!H	  6xDhB
 5&T hB  I!    6  6             #                            Android    4      ?    [anon] Couldn't resize libraries array: %s
 Couldn't allocate space for library struct: %s
 Couldn't allocate space for library name: %s
 Couldn't allocate space for library mappings array: %s
 Couldn't resize mappings array: %s
 Couldn't allocate space for mapping struct: %s
 Couldn't allocate space for process struct: %s
 /proc/%d/cmdline r acChkm:pP:uvrsR Usage: %s [ -P | -L ] [ -v | -r | -p | -u | -s | -h ]

Sort options:
    -v  Sort processes by VSS.
    -r  Sort processes by RSS.
    -p  Sort processes by PSS.
    -u  Sort processes by USS.
    -s  Sort processes by swap.
        (Default sort order is PSS.)
    -a  Show all mappings, including stack, heap and anon.
    -P /path  Limit libraries displayed to those in path.
    -R  Reverse sort order (default is descending).
    -m [r][w][x] Only list pages that exactly match permissions
    -c  Only show cached (storage backed) pages
    -C  Only show non-cached (ram/swap backed) pages
    -k  Only show pages collapsed by KSM
    -h  Display this help screen.
 Unknown permission '%c'
 Invalid argument "%s".
 Error initializing kernel interface -- does this kernel have pagemap?
 Error listing processes.
 warning: could not create process interface for %d
 Error listing maps for process %d.
 Error getting map memory usage of map %s in process %d.
  %6s   %6s   %6s   %6s   %6s   RSStot VSS RSS PSS USS  %6s   Swap Name/PID %6dK   %6s   %6s   %6s   %6s     %6s  %6dK  %6dK  %6dK  %6dK   %6dK     %s [%d]
 [heap] [stack] all cached nocached ksm help pss uss vss rss swap reverse path perm                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 h/          X           x              o             H           (  
        $                           .  !         (.           0.              o                                                    .  (.  0.    0  0   1                                  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  p	  k          a   o          c   v          C             k             h             p             u             v             r             s             R            P            m                   \  c  *       GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"librank  .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .ARM.extab .rodata .preinit_array .init_array .fini_array .dynamic .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                  4  4                             H  H                         (  (                   #         $  $  T               )   	      x  x                  2   	      X  X                6         p	  p	                   ;         (  (  
                 A         @  @                    U     p   X  X  0                `                               k      2                       s          .                                (.  (                             0.  0                             8.  8                           8/  8                              0                                 0                             0                                          !                         p        !  6                                R!                                  ^!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 @ ELF          (      4   @3    4    (                                   '        Ptd   \   \         Qtd                             p  p p           Rtd                        H-MP00L   D   <      K   0 0 . tx| H-M   00 |  0 K H@ jjB   pG  K{Dh`pG@ FFF"F FBFF"F h+F[  OFHxD6@ @="`  )m>F` #B``auFF ( `  u FF h (b F8
FhFiB& }0B`h"aF #` &C+h#ihB,   8"i ah#iB 8  8  -CF5NF~D F! (_bhh\P) F!XBxs*сxs)x:(hbhX\`
)` F!|ehhV h	  FO
	 F! Phgh]8Fx F!rxhbhX\`
)]0?6`	u , HxDHxDHxDHxDHxD
HxDHxDHIxDyD@   "  3  ]  a          CiB#hFpGF FF h(h
" FF   F FF L   F FhhF pGB-AFF<Бhh(FA]AFF8F2Fv F&``ah8FBAFYT hbh3h,XqhT h e` FhFh (
ChF[hhBhBFFpG  F
@:`a a `HxD) n  p
FQFF1(F1Fbi # appFF a`aIii F8F a
F`aFh)F* F F8pF !"hF nF   #` F#pc``p   TF F %%a8FKb{D%cechch2`0F ) pFF
h0F h F8!,F ,pFi;Ah  ```` aF8Kiii@iF-B"F*F8BԿ   O087Fh
FHh ""`b``A
F ```` b`` F>8
FFNiaiaj4 b4jb+k#c F87Fh"@-H)FF  *(  # F``>7F8#@=/)FF  ib,  ! F``>
JpG  B-AFFoCiVBiX0 h!i@BN%iovE.HxDFE,EDiEEUo@]F F#iai #\ 3  (ܼ   #\T3 )&v # FUED%`'a{!i #\:T3 * i "U!i;xp i&a F   x+AhKhBhЃhFh (ChF[hhBFpG-AFFFkh#`<F/F0F9h=G (&`B-CFFF.F!hV{8FG@* *ݰ!F*'`(F9FJF5FEEѽhh`hP`BhZ`
hB`BhhB```C`pGhh`hP`BhZ`
hB`BhhB```C`pG-AO FF &6hxhB(F9F,FchpbhPh ahHh9FKx:.ppchXhpdhdhhB(F9F,Fahp9FchZh `h@h;hB peh*x *ihhBѸBFFFFFF`h``P F `` Fv`FhB Fm`FhB Fe`1{3iX0a<`8F-AFFF
FNh 
@Fh h5FF .PhBэ` (FF .F AFh   9F*FCF""q!`&` q F-GFhFhFB+
i
y(FAFF I@F)F f FBF 0FAFM(F (Uh? FBh)F w0 #0F !F:F9!F> F	oIFF(FbF (7 )FZ (8/ ! HF)FLȱE.(FD@ 0F9F"F   0F9FBF+F4`9F*F93` FnF 0 +h +0F(K)J{D-AFXF4FuhhF 9Fhh%F,FF -ѴB
8F8(  0B!" !9Ff
)F1F(F> \# -OFtKFtI{DF0SF2F6 0mHxDh
hQKhk`z !(r Fl 
   YObIFFPF]IyDh!FhQRyOSq> ! (T
4IFjF%Ffh 
Uhh.F5FF .ѥB
E (%F

B
IFjF
 F"@+2	
 Fhk`
IFjF
 F
hFhB/`h`(fho@I+,XHEؘB8HF HFFAH
)FFY2F|FHFE{f`` `
  0BM" " l" BFFFFFF`h``P F `` F`FhB F`FhB Fe`13iX0a<`8F-AFFF
FNh 
@Fh h5FF .PhBэ` (FvF .F AFfh   9F*FCF""q!`&` q F-GFhFhFB+
i
y(FAF>F I@F)F7 f F|BF 0FAFM(F$ (Uh? FBh)F 0 #0F !F:F9!F> F	IFF(FF (7 )F (8/ ! HF)FȱE.(F@ 0F9F"F   0F9FBF+F4`9F*F93` FF 0 +h +0F  /K0J{D-AFXF5FthhF) 9Fhh,F%FF ,ѵB
8F8)(  0B/,@" ! F F! !p9F!F1FhF G4 , F# *  K-O-{DFh F0HxD PhFm nBF f FpFDEO
@F
 &PF4FF
| Fw 0$60<BHF F (UHF F.jFpF !Fhh_FFF /E F (V!F(F#!F(FBF3$ @i:iYFBF ?zi ;iEXFF" 2 :i 9a&9ixi8FbF !F(F " #!FC0+(F!F((F,7k!Fj(FiB!F(F1kja!F(F,40e(F!FjjB!F(Fjb(F!Fj +C(F!FjjB;!F(Fj!Fc(F!F
F(FH!FiB*g!; 
(F!+`+++kiKa0F]FFE(F!FRFM!F(FVjb   -OMFFFF(m F:T% T*G (UFjT%D&.FU ]EhT 0D&0FqrUBD&T% AFG (T% D& ns.F]-OF
FFw O G  F9FBFT'0g?U= F"h !*`* ))ZO h	9
T(GpT( UG hUG ('FWF hUG@T( UG (WF 'F F'FF_FQF8hG (ѨFPF GF (GE)F 8FKF=F:h 0G;  Cܽ S-O-0Fk`hBF``Po@KhF=ah(	hB eh/g`- h
/,}]EؽBo@E F:F h}FCh h   '`c``0F&FVE5kfhB,w #3I) "[ (FD1F 
C/@(FZMJF9F}D8F*FWB(F1FJFPI PJKyDOOzD QD
k5xKN U<~DJJ1FzD[i U<GJ 1FzDi UkBk_AU
zg=N=J ~DzD1F   U,!+6J1F zD + U<
`;0J1F zD#K K Ua[)J 1F5zD%k k $J1F zD }UlDvk 9FBFV; qU<kBѣch*B -/F       P?e    {  k      '      }  o  i  {   xK-O-]vJ{DF 
QX1h`萳pHxD R+PFPFPF젹E	dHxDQFKA . S+ mF]HxD' &FFXJOXKOWHzD{DxDE.7SHxD7F F@@DDZ) YF0KHZ)xD		)vFCHxDBHxDAHxD
	-IF  $ @@(P 'J,FEIF  # 00  FH#c F)F\A1$HxDS0+D   0
+	+ .VHxD PH !xD`@F7    eA ʚ;       m  u  y    V 	          ^'   0'  rF F9
KF
J{D
MX}D FU'0 F3`E'`@
  & -GF$LF|DDD#h    jCАBӚ"`.B	)F  #h 5%`"A  Z&p`#h   `J&0OD9h&B0FJ;hzD9``HxD`F b& & b& T& % 2& 7#FA=*e	I:yDA%0`FJ *`> % -AFhKN{D 4)`OYOD0F W(@#hG(0(hF0Ft Fz b% ҿ8 !L|D FIJ FyDzD@m% M$ O0pG  -AF.MF.HF}DxD,J+hzDB@*H&IxD*L#I|D `(HxD I``&HxDI`$HxD`"HxD(` h (ah )ۣh +L |D`h h IHO2yD"`xDb```K{Dh *h`HxDH9F2FxDh@FG  " (% 7   5  8  <       i $  (FF
K{DS P(F1F:F   h( 	$ F  8KF8J{DFXhF	4L|D4I FyD (11I F"yDvP/I F"yDo,I FyD*I FyD鸱(I FyD鈱&I FyDX$I FyD("I FyDH J#F	 !zD&	  & F"C(FI"yDh00FG9hB L H  C  ;  1  )         	      6 p
FLmI
c|DFS+dXOa  h0F)FV$#hB 
mp@pG HxD  V  8FCh  h)FAh ,C
  h(```  8 (hchBY`a`88FAx F8 !`A``  & F8OABн@  8 F F"(FF F(F88FXP[
 FW(F8@ #`O08  !K-C{D JFhX`  a !iFU ` {	'b" ?8O 4O 4 	MO}DDc(b@F H"FIF@F P !(F(F`` ^ # X! J8zDhFM` g !}Dh`Hah+X`hHxDKJ{D` iX` G
K{Dh` G "$  "8@H#        pM}Dh3F $ 4V/ * V9<Z ИG ,H)Xp@ pP 
h #p
&F2%x0=	-S `Fp-OF0FFdиiиoSBSx	иXиo'
    W ,u 9dBeE-"+17FFOz( F)FJFSF
 F)FSFFJF
_EF
Fм	0 
XOaOA
 ²+TѷB_E0#; !9p]p\rT1U?Bӽ𵉰OFFD8FIF0 t h( F"" F lAF eh+ F (F 0FA(FB	  O  -AFFFFhh6еB.F9F2F h` h&`O  -ܽKFJ{DFX"+h 	,&F&8F2F ,)hB $ K-O
FI{DFNF[X "~D
.
h
F]#%+ 6B'0ݩ8F
'  ( 8
O 	FJO
& FF\PK
"% )
8Fi0+-+ +++Ѝ'00;	+
(FA(-
r
'FO8'.)(F
y
B
.\'`O3'l)h)'t)z)"
\h(^!

!
\l(^!
 !
Z
'
J
'!'s&$h ,zwc"h !&-, jpx#0 "h&, !-0  #EdлiлoлuлxлX6ѻoZBR   N.wvvvv&"x"& #
#h&F4$ ` F@F"F
"F
FF ! %%!  ,- (JOqzD&F$L|D F#F AH@JxDzDEK8F  !0!8F!FZF]EJ8F  !0!u4F3hB^            -AFLFIm|D &eX
AFF(h`f"F@F9F$+hB$
m  S+@pG0 #
!
M$}D0	I(FLAF  h(" F 0 h+ F 0    F >F F@FTO3" "#E  )F F0N~D0hбHxD&1hhh  F9F@[ J	HzDxDh`@  v X R K
FI{Dpm]XF
A  1F+h 4I"F yD F$+hBf
mpb   Q FFvH!FxD ~  Q@pGF	F% ^O4#`$  "CF
"
 K1F"h F 8 C` FFO~"  OQ`X```aXapG	Ѳ _
A`` F F
HxDd	K "b`{Dh ` D`IHyDxD`@=     p?XhpGp0pGpF UL!M|DK&{D@cYHhF$XT T4 F*h (
&O6 F0Fp    p   p
p/  `t1 p   p
p/  `l1 p   p
p/  `d1 p   p
p/  `\1 p   p
p/  `T1 p   p
p/  `L1 p   p
p/  `D1 p   p
p/  `<1 p   p
p/  `41 
 -p p    
p/  `*1 [p   p
p/  `"1 p   p
p/  `1 p   p
p/  `1 p   p
p/  `
1 p   p
p/  `1 p   p
p/  `0   @- 
 / @ P  / @ RE  J@- @ 0d0  
 B  P9  0S $ A   $ R  J  0  0   0   0   0   0   0   0 
    R*    J  0   R*   	  
  @DA   P   R@/  R  / 0  P/ R/  P&   R BJ.Ƞ Ȍ 0.Ƞ Ȍ 0 .Ƞ Ȍ 0 .Ƞ Ȍ 0    R*A   
A@D  -Q `ep B7Šp ƌ 07Šp ƌ 0    R*A    
AA@D  B π  -@@*SӀ n*& !Т_|D !  _C|ڡ
=!
  @@:ӑ!
!
B@: 
 
B@ :!
 : 
 !
 
_B|!
 
ڡ

_|D; ;!  @pG - _|D; ;!K[ K [@:ۑ QQQQ@:@2 :۱QQ : 2_|$xxD_|$Q;@;D1K Kxp HIxD8 b   R  -  8 S     R   -  R  :P!   R
 *      

 ΰ   :
    
ϰD$$ /@- 0`0 S0!!ϰ$$D R@/@P`p 0`0  
 S0 B>@(@(@H1$  R0  J  RP*  .
P(@H!$@! %@/     ]@` ` p @ RRχ  \N   SSχ  \F    
  ϰ  
  *r4S
    S  
r8S    S  
r<S    S   /]@` ` p6     
 @ RRχ  \   
P  RRχ  \  @ SSχ  \  32/
  34/  25/  35/  24/<`@Н  P  
o `12   Q  / $(@P \  
-  %\0D0  3P  ,\  @%T8  41   P$̠3  $̠P0  Ƞ0D,Ƞ0%\  3P  ,\  @8  P$Ƞ  X$Ƞ%X  %\0D0  3P  ,\  @%\
     
P$ĠT    `@Н/   P P!,Ġ%T
  B`@Н/1+ +; ;K Kı[ [+ +r; ;KK K$[ [1 @E@nɑ@<,<@<,<@_LNp1$1_L`1 +OCp1_LNp1"@+1_L 1 ;ODp1_| + +K K ,1[ [ -1?Q+<,<1 0TxQ+<,<xsLx|xQ;@_l p1 ; K1 ; K [1Q+<,<lxMxQ;@ _l?֯ ;OCp1Q+<,<HxtQ;@<,<Mp1 Kp1 ɢ<,<%ɑ@<,<- 
x±KxñxԱQ+Q;@_n ]<,<p1 +p1 + ;p1 
xKxQ+Q;@ 1_l 3<,< 
x±Q+Q;@<,<<,<ˮp1 +p1 +OBp1`1  F@B ɑ@<,<@
<,<@뿡  _LB  pG pG 8pG pG  _LB  pG pG 8pG pG_| +++z?Q+<,<˯   pG   Q@- @  0` S  : @-  Q  * a  R #  KJ{DX  HxDL@K|DXhF˹JFMOGzD}DXQ3cT2H``0 JT0zD0``	HxD@\        -O:K;J{DXh8H9NxD~Dhqh  *7T496h .1HxDl@0#F (? %
"Rw`B`gz`DFOI
T YFT"E$lGGT5>F7UEH!xD8"k #Op#`OA`c`a#acacdd`S``4F

HxDK{Dh``h Fl         H    ^  h-OFF  ဉ 

#iC F2 %	#`	᠉ p 
>h}h7>h}h7 -j1Fi*FG (@ 6-  ( >h}h7 -ТAO"ѠhB i#h

OI	E1~ ( cih	 aPD` ` s hMEF1FJFSh h` 	F"`'!iBMEJF1F@ h 	 F"`biFBj1FiG 	
w1F*F'h"hC`Q!`ND0 +J>hO }h7FF -л 0F
!*F(  

O hESF+F!iBbiّDKE1FJF"h F	!`*Bj1FiG 	
 F1Fh!hF` `	
 Fi`F ND 0 +桉A@O0KRH{DXT0@pG    )o A!
 9OB	 $O|O~*( `p@pGF H ("m#e#QpFpFF)  !"^1F "\*Fp@F JC#RCQ e hF^ +hFO  O1O O"1F9F"h(`	)h"hF8(h!hH/`"h !(h&`    -OF% %5F
$!{DFO
	Xh	
$%* @Fx *`F; Z) VP!D G                m                                              g                !                                              c  k        '  k      =    K      Q      W            ]  F #	bFx0 	(;*+2F #	bFx0 	($)ыB BFTBB%F"U4;0	) "AF0;	2;0 	(F$+G h)G gG@  l*GG G wGgLG 
МB[B%F U4x
՜BKB%F ՜B>B%F 
՜B/B%F x
՜B"!B%FUdkBB%F 
ДBB%F BB%F
  
МBB%F 
՜BB%F	 z
՜BB%F t
՜BB%F gy
՜BB%F ZBB%F OBB%F CBB%F 7G  &z
՜BB%F #
՜BsB%F 
՜BfB%F 	z
՜BYB%F BNB%F  +-kO0 "#`"   ]  # A#`\)



 6&6 63BPXE	hz  '_hB]
  8Fh %K`F8@`e`8  K-O-FJm{DF&FXh|0[PFa8TO4	"`  
-@Ѻ
< ,  "!!"DOaH=?BC"FIOE $=A (= (O4 !@  +QA@@I- "'K퐋{D %-F0%x -O8Oe-A ). 	PFQ (A 
	
	S
	@  4_ O<F
$+	 	  Z( ,a **g ******]  *  *          **********D************2**[ **********7FF!*$**.*14**h*4O 
_  *  5H+x
F10	*$+X%
R+`0h5P'`3h76 +ZYBHT+ _ P;*+	?)FO +x
F10	*$+8%
R+`356h             P'`36h7F|F	  %	0	)$( E|H %	0 0	*	$)/F *%8/FHH@HXxl+PHH H xHhT'`5h76|R %_PH_  P'`67& E   
o 	@
R'`7 @
R'`1h7F6 ,u ,-"dBeE_ $?(		g-G-Ѽ OOS'`I  S+# C7Bz@-%$_PD %
S+@ G{aL\E +@s *@p	Hxf*e*E* ,","ձH-!H !
 Q	g*FG*
#	f*ћ  0(ѵ@@#`"` 0!"hB	$hg+ G+
dE`	g,E%e%	f)G
F=Tp ,dB-  + 	,Xp'
{" F
! F01
!	(F`F04 M
~KKpE0!pd>p( 
!4 ,	ݼ 
 $B
4 ,Կ$g%
 * -!	_ %(H_  

U'`67& E     o @P'`74P'`4h7 %6
R'`3hx!H7 %HxDF6 	     *  T'` 75 D XFbF !GH dEdFF dF !.F_
F
H_  	Q'`7" E   o @T'`47 %6 DT'`5h7,FM}D_  S'`67&   E   o @	Q'`74	Q'`2h7F %6T H  "_    (TѼ j((J
:
3Q0 DErFF0FTٲ3 ]FG0)E0!F@ F)F
" #
 F #02-
"
)FF
F	  !BB
04;L
3
S+"@$	(Dpx)	FZF
FT9

v{  eF
	 ,  %|B_P$

{Ա %$
D
ȱ %$
D	
(_0B F(F
0


@
 *:   1 A 0)		PF (@S
	:QK{D*PH xD  X (
D		 PF (@4
	_I 
_ !  Z! 0 0"	!   		P(PF[ (@
	)@
 *:   1 A 0)		PF8 (@
	:K{D*H xD  X (
D		 PF (@
	* *5T              P  F      y  m       1 A P)0		PF (@
	:`U#}D* TU }D PB* 		PF (@h
		 @ 	 	e,@q@e$ @LB4, {D 0	PF (@7-B ҁ$ yD`B\`3L ,PFn (@- ; ܳ B0 13* PFT (@-XD%|DL$zD  +m$ @TH,4, {D 0	PF$ (@΁-  yD`TX`3H (PF
 (@- 	 1 Q0 03) PF (@-	L%|DJ zDB3*	 PF (@~-  BY  ` (	PF (@a- 1 B0 13* PF (@F-L%|DܾJ zD3  Q)PF} (@'- ƀL  |DX``T `0(	 PF\ (@- IX`yD `3QB* PFC (@-` `X`y+WЛ @.! !  H@( 0 	PF (@-@2  & ; Q0 03) PF (@-nL%|D kJzD 3	 	! B B*PF (p-=`\` 3 H(PF (\-4
 , P0 13( PF (?-CL%|DAJ zD  \,PFx
 B	#PFi
 % ,> Fq $PFW8 "
F`(%B  @ +O4|#hB
!}
m         ۽  Ͻ  E  !    
  m  a  ͬ        Q  E   FKFJF{DXhF	2F F9FF(h F0F   $ODo D$
 Oq	"FFO|< 
 "p  -OF6LF6KF|DXh-L3IgX:h
X1NY4h ,DchhXB? F)F"O4.1h9" "b`! 3h#`4``HxDh	 "`ch Ya` B)F F" (F;hO4O O3"XF"#)FnCFѵ F V    -OF:L:K:I|DyDX
h  *e7OY;h5HOРxDhJ`T
0hF3fhC3+FU
0 SEѕ 
 " FAF80BAF F".;hG8h+F>$h ,ѹ HxDhJ`Z  hAF< F (  ;h#Ob  ,      C	K{DhQBxزpG  pG.  F  e FF    O0pO0@O0  +[ 0pG  pGhF !ԘY `pG` pG	 0
0	0[0`pG  pG  pGK0{DBЙBi
i  01P]Q-BO3B # #F0 l  I: Pr *FQB #

*O #C "2*Oڿ3bFC+pG      -CF0K{DBRi 
 FFEFVK FR
(  0E$EUE@V\ %0 %L&E=V  !+ B\BL@! DUL $$ NDT
FD@C+          XK-O{DBFF 𥀙B i"iB	E  
ZhAhF1F (H  BFIFFQO@ KRO@L" OCoCoC "OCoCoCQEr) =CEF%ah; * F9F (66 #BFYR@" )oCoC" (oCoCE*YhY =CEF%ah; *0F      8FK{DB
M}D(FHbhxDP"@"@(F!`8@	8      pFHxDK{DS%@"hC% 
&p F(E`` !!a`L|DHxD Fpn  n    2  -CUKF F'K{DBFE%@
W pA ̱hF X L" qa ta *$$4aa$4ara 0G3N5  p
2@  di! 0F   SK-O{DBFFPHxDBiiB)F5FF7ihhhBȿ0WEJzDB  1 " C+ B75 P1 %VSOH
	OE#^L#̱EOE`1|?R\FO VF3#\OE

 #3E	EOH P2FaE  < ,aQ- * F  8    F K{DB!Daa   -GF@N
F~DB>HxDB B"Gaa &#F&,FF`h1IyDB!i *i #`475UTOCI2 .oBoBD bFOC""loCoCETk+ -oCoCFV3 ."[oCoCB 9R= +a       -CF,KF{DBOOQ!i@h	h	0m BF"HxDB 5  FB 0@E(r!i3F  #h CA;RrE `C	REC>.a F,F F     8FKF h{DBЙB,`8
i0 8@8   F KF{DB9i  #h3lNC@B @BhBbhPFHxDB F<Ff#i  ` FY<F5%aNa F   v  2K-A{DBFFZ.JMzDR% "FL)ODD8F @@q }F#HxDB(F%F8FR0 # @#`<FlD(F!FF(F=Fv'h / F!F@E(FEF
HxD( `F`
HxD (F.  b  b                ' #-O-FzDO 
O KFX
hxF3h  (-)%F
+)F
%x - Ä6iXh0i) F"yDh"(FyDO 
|,F n) F"yDxx(+  F+)*  * 0-`xF00+ + z'	 &	 &
%3F+0+ܿ̬03/Fݼ9 !FFf.Fh2 +QFF10:FЬ1/LF !H05l? O
 4, ,ؿ   dB )i)M)
!-
$  F2 !FF0	, #FeF+F !FFEFFP%	 ( ԃ+м-   $P 0	,400FЬ1	*ج0 
$0dF / Dl(9EF FX FFF FO  F= )@|	 *LFvzg +FF-+F#	+[0 j@D
R+a;@;[3->ܸ  N)ݸ
OK8D {';(% E'KD  kfK [dk[6"IKyD ;[ /\xK:D i[;7 𣀱 &5FF7FAO 
"!`
	 ) 0K #D	 K%[3R*H[T{K=xDI  lK[>B_FءBT{زO:YX{BKD Kk[3D	+K8 'D &5FF7F%
 {h7[+|D  {hK@K[4x[ek@kO 
O ""` /@KZO O
 	!' & 6B0FNI~DBF0"	aCa		# 8F
! 0:|3KEF	 8 
 O			 8F
!		0:cFE۸  %  ۶  xhK A
F9F)K
!F %
(r +FF  opE3F6BF1FaEaF ) [v(FOIFF?FHFF +HFFwF"F4 .1Fi .(F1FaFHF #hF`)F (A (@k @g +@b!0FA)FF (DV  |  Z      Ü      ~  Z  *      x  @        B+CI#pBѺ?ѬI

Fy + BO:
oSo[
  ( J3: ;[:@+@+[?HxDB)ЅB'0F(F*i3iC *Q^^qFA?/p͋ SF +ѻ ?N̋( (aH I  H^I_K B*ѫT{KS+K#K2TH\I +[2 cE
OKB2?z0O:IT{Pش̋	8ɛɛ
IJJI [07KB#8@)  p&;ԟ%#HF(F0F
HF(F8F0F LF`
 APFPFYFL4       5?55  ?5?     R  |-O-	 *!" D`  `KJ B,Bt`*-M}DM}DM}D	!(FU0D`EF ք)F + фx@$` zJzDBF 𵄠IyDx + a` 𪼰H
VFnS+#C#p5GQ &A@%oc
E3G		!@
}M  jg5&S0+s+C+j+klK0b Z!+;++ո[E+
:{D  kk
:" #
}J O O  D( '  !
	*%* % %)$ "  	 +!F$ "	 
3 +FO1% "F#O3 "F#!	#	F #  !0I E*JzDB F[ 8 - 5 [U
 OD [	# #IyD3  `(?aCoc?yPD?<sOu  ˒  Œ  Ւ    N  a    `      Ց K%[3R1 *K     #yD ;	e{yD kg{3R1 *gKK #ѱ չ  *@
<3FkMFF{:{
Ps:q ȁG nj ;5{D kK k4{{;0 FqǛ vǫ B:''{iD  +]"k+*0BqѶ ;0Kk3@[
FF:0(k`[ (iۺf	, )D ڹ O @1MF.;;$(BD.+JEFK0 n%1++ܴn+@_r
B0!

pFFF:9)xHp!/2@ %:+	 3B
6=F^F	6B۽
7F
  "^FJF DD=F^Ff 	ݰEFF / -
)F!FF Fby F F9F
F 
 /F9FF(bQO@G' ' HxDB
B)i  iv  #
 )F  #3DD  FYFF (FAFF F)F ( F "
!
:aF*
! "Y )ݹ !(FJFHF F)Fm (	o
F

1&k & +  .1Fwph1FG
8F !W	)F F1F8F 0 F*(FFh8F FF !FcR@9+ *	1 )ҹ +_F! FQ)FF (9/	1CF +ݻ99 iCFtFBF
! " F
! "BF0FF
! "F7| F)Fe 0 6NE F
! "xF      <  Ξ  T  
   &D! F)FF (B1"

pAF,F99*PpCF80)(Fj.B0F F FBO 
0  "p
`*`   F  𵂱
M #}D\\/]]Bи43B  F F f   !
" k0!pG k0pGB 1@н \@pGKJ{D0ðXF+hAOr h1l F
!FF 8 IFyD2OqF (	I "yD"A)hB`C0p  H     #jF
 iF` O0 OR (o @iF hF #(8ah) O0<HO!xD:L{|D]!" (Q&4HxDO4ST &(FX ( .`	Q &#*s  $OFY:`"T@#`F B
ЁhJBhKBIB9hO4L"|D"pK ${D`fO4(Fh+ѣ F PROPnvOCEp           HxD  HxD   *iЁBg.A Ё *  F #\T3B	 #,FXP3<ѫ > $]U4BA Ё *  FcdB 	\T3Ҕ

FF#FV};E}ocC
SRB T30b #\\B`043B  0F0 F0pBLFBDBFxBЄB
҆xB	ГBx3B0  p Fp(FpFFF0@- @  0M  8  P0#S8t 8@ 80   8 
  PP  "0; p   
 ʠP
 <Ѝ0  0@-PM @  Q  (     U 040  
 =  Ѝ0   "
  pD      0 l  p  @- @ P  U   0  S    Ì0 S      0  0 S   
< P`r`pQP 0(  g  PH        l    0@ S  p /  /p@- P `    0  S
    @#0 Sl    @E T  P 0 0C   @,0 ,  pp @a,      x    K{Dh
hG   K{DhJhG   K{DhhG   K{DhhG |  -CFP;*NFY~D  F0h , ,|F &@"hBEѣhai#l, r"c"# 4LE,h GT )lh GT? +ѩh!MFpY G   Rtd  Q
   Q 
  0P     / 0P       /  P  
  Q    / /    0: Q  
 Q  
  Q 0  /99A- @P  
 Pyj   ?  3  Q VP  	  τ 0\   V_   & 0%S%  
p U83  
    ^	  0%/  2τ  \ UP     0 P U   1  P W_	W  
 ? ^  
/   2  P U P 8   1  P U P # p@- @PM+  
 Pi  _/0B_  U R  
   M Ѝp   0%S     R  
0E  0  Q  U
 P _`ϔ_  U ^  $ @- @P  
 `yZ  /   2  P U  
 _  0&SP80  
/   2  P
	W  
  Q  
?   3  P V `#  @- @  P0>M 0 0P	  
  Q      
   R     / / / phBBhaEӀh (pGcBaDaB`K`K("J`{Dia :  HxD pJ  HxD p:  FK  J{DX`HxD  {  -OO 	F waF0h		hh	+@
  DBch (@#(EhiB_hiBТh(iBhB `` vHxDci;#i 0bFXi ( (iB iiLU, BE,0*iB#ih! h`*iBiBaKa +a!iBaa`iBXaaYF`!1 `u_"(OwB#آsR DC   11(  A "!ohaLLE.@i` *U.0R      F_h'AER 9S!  (*iB?=C!@a``
*ihB2B/````7F .hB?@sE, +b  -AFMh h0F)F (@J!&iB<eiB O$؍h(hEEеBсhB@́B%&h& %`r@EаBhB@``fhiB
ЏhBhB ``HxDHi8i  FGi  /i  /ѴE p -8iLT,pBD, &iB  fh&e`"&iB.iB(aha (a
iBaaMiuBEaa	Xh -Ѣ`  X` &iBXh@𴀧iBhaci`B BH`@Qea`eiB	ѣhaa`B H`P bDO$؝h(hEEеB!hB@B##h#   `i@EаBhB@
``]hiBПhBLhB F``Xi8i  FGi  /i  /ѴE+ p -0iLT,pBD, &iB ch # ``&iB
.iB(aha (ai%Baa[i#BCaa`iBPBK`	Ѣ` P]`BK`(%"h (3BC"`Fh iBЮ````
'а?#Ҡu/ V0 DE.33"  C   'fh %a Ma7B
a LD,>Cf`a(T,0E 3F]h%B@ 5S%` ."ibE?oC%a`` ihBcB````` #a
HxDHxD	hB?KL	HxD	HxDhB?@  Ί  Ȋ      7FO3   ""#!FlCFJ!FzD(F>t   HxD p ( 0    8LH|DxD#h+( F8HO2O `xD#a`a`!aa(FfU2B,#`$  $
HxD><	H	I
JxDyDzD 8       J  -CFJK
F{DhA !xi )(5E {@J FzDhFoѹD	1H9FEqhB_0hs BcEVӛh +K2h)F(K&K)HBxD ER   FB %hBF  ?иB=HxD-qhKs`hBi F!Z\ FAhiBO3a O:Fp0Ѭ %
    z  <  -GFGhFF'EHxDdEn@tf F. j0BJzDh@@u%hIyDJh9FPBfD@`2F&B JDu"c`e #J`IE<yD
iB8aHxD1vDaB@@a<Bӊ*@7EB>Cf`K`]hE]`iBhB@	L>CAf`Z`a`CiB+уhB+٢LC >Cf`P`HhP  H`IyD`Ja"KLC{Dg`QhA P` "`Za ɀ"
EO
)ȑhDh	(	HE`EhB@𳀃B	iK {D h! `lKEcE𦀟hB@```hiB
ЯhgEhB ``WHxDki;+i 0F_i	 /i	 /E p (2HOL	DW)BG)0+CIyDiB#xh y`?iBiBaCa +a(iBaaiiBYaa*ch

 BA
c`BhBA`4 @BNf`K`Xh@ X`!HxD74HJxD!FzD
K` $BjhHxDHxDhB?fg F     v  ^  R      T  .  &         o  .      ;-O{DFhByD!,	٦p &$ (Ao
,4$ $h;{Dh !(4hhB"  `iBhB`` xD XhB@? )tO   wBGqBz"W	"aD&& &@&(1hhB ! `iBhB`` D4q`B P``ձh:O{D h(0Yi=B=C`FhiBӁ````4yD`La s   q
 ! w	
&

  !  N!@ 
L1S!KhF#
Ah!F
E,FFRFi (Hi (yDVEfEhiBзhWEhB )``p	xDnsi	;3i	 0F_i /i /E p )3,y
LDW+ BG+03	xDiB#
(
y`?iBiBaKa +a1iBaapiBXaa*
Bq`ChCB` DB t` L ݱH'|D(1ci=BE  `Fh$iB|````p8{D` A ҁ\h4$~D  ȁaB"
&в?"Ңw;PC 33$C "7L {DS 0S*V  'O fFXh   BFF (WOxXiS(0B`FF F (D .Bo
*^B C#C	 fD "V " D@" @7L2 &{DS"0FXh B(
Fi8FYiFF + . #xDhBFE3BhiBзhGEhB ̅``xDri:2i  FWi	 /i	 /E p (3vL	DW)PBG) 2xV}D-iB"*}`=iBiBaBa *a0iBaapiBPaa)	
Bs`Hh@J`ADw`]`-YP'xD h(2
B
CF`h iBӓ````{
(а?$ҠrOG PD@77!  G   %O  %zDa]a LaH B'0P`!(R' E :FUh%B@ =R%p /$yDi`E?B%0a``hxD iB
B```` "a6@O44{DhB^i*0`XaBPC`  !`Ya2@q`ShC P` hB {d~D2h
4{DTxDhBNh *KAhaHB@>!E;ٴE9إB7(F2F2 KBPr`#K` !4B{Di
ByDaxD1!QBQ6@*ODh/pB B JzD1KaB@B HxD!Q8FBF@&  iF FHxD 5@F?F ,K{D^hqBuBB   =FKB{Da@IB 8E@	E (F@EF@>MN}D~Dhh /EBH@B (Fl `EF@ރCѰ0BҹK 	{Dh/KB IBE
@FJ0EDHFCHxDp?m/FM}D(Fd8F1F  -F(Fq Zz WBT(B@NO 	MI}DyD1:!B!i-iBґHxDaI@sHyDxD
haqBb "Бb 2(1 *``1F(hshXh vE9E
эBӵB	zH^`)FxDh-vIyDDisB 8ah + hB HE@Zh`_`XB  FvD ZB 
3B Dt`	ZJzDha@`@Z`VL|DaiBѢhca`@Y`PQh-@!O/ 򘀕h(hEE$iBłhB@B	@M!}D,h$)`AE	;L|D$iB𱂌hB@`` @  P        ܼ  B  )  Ļ    2      v      q       r      j  >  Ը      f  X  P              .  L        |  z  T  (  F    ֳ  Գ  `  L    ڲ  hiBЗh$iBhB 5``"|xDٺQi9i GFLi ,i ,LDGE<` -48DL	|DT)pBD)1$tD?iB!eh%a`$iB,iB)aia )aiB
aaTiBLaabD`DUh@P%T`Y`)H%xD h(2L`Fh iBӓ````l
'б?#ҡw:U,DB77 G !JO $zDa\aLWhaLB%0W` )R% L  *FTh$BI ,R$P -ѸHxDiqE?B$0a``HhxD iBB```` "aH)FxD  '/
JB1F
|E8F(DPF
r! a&qБ8[E~`ӨE BPqh! p`k`(؃I&yD 
h(3LF
`h	iBzHxDy````s
'б?#ҡw>QD@6 6" F !aKO  {DahaL_h(aLC.P_`)S.0H   3F^h&EI 0S ` .KJzDiqEC Pa``
EIhyDiBӂBӝ```` #a?K{DhB0i`2a@S`Dt`6 &!`5IyD!?pp:hB?ԨոhB?12*N~D@!O6bKBgO	h?hHxDHxDhB?ȭq" %0F0x    r  ^    f      ү    ,  du    <  $  
  ܭ    s  s  -A(F&s3B@   BFo?B'%`
)(O F %w<HxD1t'B@ pH (rB<@W<a )W\R  ah @Na`Xh@Y`W< @AG<AhAC`H)FxD%Fkh# BLNk`B H`Xh@ X`
HxD	J5zDpb(F    ʫ    F ( sxD1T}D.iB6 p (W ( )! Wdp1 F1F< (@!B
DhiB /'ؠh(h`EаBhB@
B
L%xDh!`vaEбBhB@``jhiBХhBhB ``xDai9!i eFOi /i /ѵB/` (<iML}DU,pBE,)M}D-iB!hh i`"-iBiBaAa )a iBaa`ipBHaa	Yh (Ѫ`!Y`,BnYh@j@ƀHxDiBhaCi`BBa`Ea`HxDiB@X !2SEiBуhDa`Ba`PG!.)؝h (7hB iBOhB@KB	ѳK!{Dh `rB	ЮHxD iB:hB@6``chiBОh iB9hB )3``Yi 1i 1h0FOi /i /іN~D6iB` -4iHLxDP,pB@,)N~D6iB !Ch#A` iB(iB)aia )ia Baa[i#BKaazHBPxDc`AiBт`! PX`Bc`(pI%yD 
h(3BCF`h	iB````
'б?#ҡu/SD@7 7" G !PK%  a{D`aL^h a7B>CC%@^` )S%0H   +FXh EI (S P -;JzDiaE?RC @a``5IhyDiBEBB```` #a.HxDjJbZ*H!F*JxDzDJ`(IyD1p@]#HxD"HxDhB?HxDHxDhB?Ԯ ކ  x    p  T  B  ʩ    L  6  Ш      N  (    H  .    W  m    l  l  l  l  8
FFpE  C FBO4 F FF8P !"FB(F8  FF F@A%`%!"H
)xD%%!)F"8FFHxD1 p ( %  pF
5 FF (V!""1FB("F0F(F    (F_pP +  +""pG  pG0o   "D=!F *HxDhG  % 3OR 
F !F*F    !  |ަ  FHF)FxDF"FU  K{DhBHhpG1
h *FpG  F!FF(`O0pF
L|D h V `M}D,h0F NC
аB#`O0p(` FpJ  <  F`O0LHIxDyD   pF M}D(hF@! <F(h!F0F!F"  Fpܥ  I #yD3TLBRh *F ~  FFF|h0F)FF8F	JzD	J3FzDnB,O5 %("$c`(FT  T  KJ{DIFXðHyD+hxD.FA FP9FjF H( 	Oq"F s (O5 F O5A(F2hBC𽠂  _b  Mb  KJ{DHŰXxDI#hyD&FC FO $D !Or S !p9F
 (4Oq*F * ((F  $C F3hBE$  a  a  a  d(  3^69<a^CTccc>@CQ33FIKaTNaaQQTWY[^accpe OTqOztn@4kd$i$gOtdO4ao D^$\O DYo@DVOdSOtP$N$LO TIO dF $D$LB  <!L?O47HxDlFN $~D|+01F
 P((Fd ($"HxDHxDF
4&!`O4c$4(FU Fp 
 `  v`  b`  m`  'K p{DF2	%`O5?!I[XhF
#  F F!j1iG5 (O5 ix"kh@@Bo#k  ``lh "bd0h #Oq`c` F(Fp  -G 	-KFF{D 'Q+JXhF F	9=FAfh F  hB !)p" p / F7F1fh NE(NF
!2F@FKah0 AF	 2F(F  U   Fb`(F#`AF2F		 8Fj  FFxM}DF $2F (8FOru ! O %$<`
HてaJ)XHabXJb)XbX#bC F !" F ~  
KJ{D-A &XFhgh0 +(FGCT5?$h ,0F ~  *K+J{DFXhbP	!`@@O0
#kh@@BX k "` i !a`,$ `B#i FD bi  `SBaai F`  }  p   p
p/  `a -p   p
p/  `Y p   p
p/  `Q p   p
p/  `I p   p
p/  `A }p   p
p/  `9 p   p
p/  `1 B   p
p/  `) Cp   p
p/  `! ~p   p
p/  ` p   p
p/  ` p   p
p/  `	   p   p/0  p   p/ p   p/ɲFBF	 , Fx3BH !xDA[  FBH !xD
:[  @- p `P @P  
X p`  PYD0   Q  @,  @(0 @   謌    |  t   iFp 
J+ZC*B
  MbP?@B   !FhF ( O0 `K{D`   pF  p%i -Й&h%`ai !`j)Fi2FG (ܢB@ O0p6- .
KJ{DpFXhF	 FF(h F0Fpy  Kp{DF(HxDp@JXhF	 5O5	"` FF3h F(Fply  		)  pG  BKCJ{DFXh !a` m  3m	#`[
b F[ (UѴ`.a@"khp@`E#k  k`a`k"`!i F o@BHoRNxD	, C	) F!ibicj!`iG" Q (``L   ``L@O0  x  7  pGOAp %"  	GTk1F"F 
HxD p@pG-OF<M}88FyDX=h˕F((Xh
O 	OFFxDyD	 hgYhB6`h73#`Aa``h (#h
h  Ax_ * F (%)]ZFFO
 ZF;g+-e+G+ 9+
0+%+E*+\ + D+  E+@X+ L+QO+@~c+ ̀ [+@p+ Ȁj+;h+Ki+@n+ fl+@It+Sq+Ms+@fx+_z+Ku+@V`h (#h E@I F (:bhY7!`P``RFfFRxd*#i*o*u*x*#CwSxh+FFmSxl+FdFaFv^F@[80VFF fO	F fFFK##Sx^+2O x2O !( 1F ;" F
F ZF-)])Б ](ИB3jF(BFF v#JF v #FFII O	>q?-h/pr+heF q  	 0-h/`h`*h`h ) ~ F`yHxFO 	O
	#ah )ݲ% F (R`h7Bb` *1!` F (@B!h
x hPx _ *;+5    Os &ch!hCE
 F#`\ ( .@ FD``"`(h!BF#F.  ( 

5F O8vah62"`HE``b ( F*[ &"h
 0 + .P.h+D5FahH``˨E"`bh * FBѽ"h
   (Ѯ  !

)pF# O8pah62"`HE`` ( F &"hhxYHx _ +п.hD5FbhP``;;E!`ah ) FP!hhxZx ò + "*p

eFw1@JB(FJF6Z h8x9+	8+(0+++--+Y*X+/أA)Qa+Nf+x+J" F FO	&6'	1&PF!1
.+&VF V1$ _JOOaDE& FO	<FchYa` )0 ` F- 2Yq	JE@!F x(X(!F8 l@À a JaFJF yJF %  2 -h r  *h*hu1p`1@JB(F1F62 h8x9+0+-+.+++3E+e+.&F_'&V O!&F<?&8HF<Fch;c` +0 ` F29s#J!F8 ECF;3e(E(!F !F Faш J*hA0  { z

eFJGD O:h* FO:PF˚hB
M} w  r^  p^  K-A{D8JXh,FF{%F=/2FEbEО\ .<s`
/FU;K "F#F3x=+F2o        K-O-FJ{DFXKFhF;Fexв (ѻ-O
+F?F . .
9xx)X)@&73+5444444444)  @OO2o`CH& @OO2opC<
& @OO2pK1 @OO2oxC& ПbcQ2F+F +FQF2F FF и   !C    $ %0	)؋F	hYDWW!7!ENAIк !ДBu۝BB
E $O E"#`O0!aCEMeu#Bs۝BBEO4wo E""`O0aCEeDEu q9 'O  "O`CO  "OpCo #yO  "OxCsO0 .?(0 0* F)F        4333333n   iK-OFhJ{DFXKFhF3Fexв (Ѽ-O+F6F / /ѕ1xx)X)@'6
/)//
"O:opK#'"O:o`K:FO0O1+F :F+FFFO0O1 "O: ! $ %0	+؜F
h Cx0W 7 E'K"ЫEE]ETEєEO4""O1O5`cC0EEEu! )dBeE	9 O0 /t0xd0?a
' F)Fl  S @pG  FF  !"FH AMVSpFFhHxDZK{DBjHxD1F"F 0
 $h +
H$xDh` Fp   ހ  ր    8Fxr*w*a*Ob!`  8 " FOr$ ]xb-3 3x+-3$ xb-3xx-3Bxe+B ""C
`8F N
F (F~D !9`iF (p@ QKBS:`O`(` O)`d	Hj3XBO `O`O ` .i  MF
}DiF F8FXNC "`"a`a
K8XUP aga`F `0  F
C h  
 -p p    
p/  `)
 p   p
p/  `!
 Np   p
p/  `
 P-C   P
p/  `
 ꃉ		)	  pG  -OFkNFFSC~DFFF ƀgH7X9h Fbh * #c` 
 * k +@\IrXh  `` :8h (  F0 c:hA@ F	#`
Z F 禉`&aࠉ@&k0h@@B#k "`5HoCAoQBxDO	& @	+ FTFFcjIF2FiG! \F (C C@6D8h (2 F_.ZFD#h  ` F`=h FK QF FFFHF!h^E2F`h"ha`&`FO5(Fg  -GCSNFF~D QKXh	OJXhF F@ P FO5{
R F (Ѧ`&a@&k0h (=whahB1@BO`6 (0`Ocs`BA #@ 0 `OG	IF9F ( 
1F:FPF# k @#hY!`\bhPࢉ i" H#hBB;#` h@bh!c c"F3`q`B_"```   F~(F e  KEAJ{DXjF#h	 	"h 8  B
 d  S @pG  6p   p
p/  `%	  Q/#  : P     
?o/o C02   P @  ! P @  !!P!@ #!!P@ !!  P#2! /   //o b0/  P  b   Q
@-@ A/  Q0  
  aB Q  
 0 0`B S      
/oo  B     S0C  ! S0C  !!S!1C "!S1C !  S""!  \  `B/  <  `B/  3 //o b  \3  `B/  P#   Q
@-@ A/ 0R b0AQQAQ/ 0R bAQ0A/!   1#0@-@P 4 0 y  
JZt Pe  @  0!  "#  0!6 U0Ơ!  
  p 6#6  
  r 0 4W  
@D u  Π2 S   PE  RΠ#SQ  Z |   Q  :Q  :` l@*rU  *\  0  @D  1   ?o 00C  S      b1    b0@T0@@T
  @  @  d010@d  d0010  46#!@PE  
 4 0  
  0 1   0ʰ   #0E208Q  0 0  FV 10  0 /0@-K2@ P   0 /0@-K2@Q  `B  a43!/  23/0@-MQ /0@- P   /0@-Q  Z  p K2@!˰\
   ! 0bà01@O  S  R    Q  P      M `-  Ѝ /  S  R    Q  P     M `-  Ѝ /@- |@-` @Ppc 7' 0 T0 @-` @Ppv &q'0 T0  011 /O-  Q `  
A p	@O@Q  T   
00 V0  * T  
D @  V  pP   P    V: <0 P0  
 P  
  P            /  /\   0@-  @   H   
s    m  0    p  0   o  0 #@ 07@-0  @PA   R  
    0  P0
  
     0`10  PP  P	   0 SH  0 0  
  S L 0  r 0L L P0 0  S  S  P 	     c   >[   0  S 0 /	 //G- @p MM `        H  W
p	p PPp@0
  H0	-0V0 /3/2 L0 @ 08/  P    U   	-p> Y
 Y   H  	P Ѝۍp@- P@ @c `P   
~@0  003/ P
 P @  D /<0@-@0 P@M 	m        0@2& @8  P
  0
 3/ P p

  W   	 ߍ < @   jp@- P`@0  V@0  
 `  0  3/ P  
 P     @Q ]     R   < @   D/@- 0  S 3/  Q  
 Q  / R  S!  00     /@-  0 00 Ѝ   Q  
 Q  / R  S!   00   /@-0  #  00Ѝ O-`LP$M S@p   P  $0 0	   Z  "80( s0  Q WP8P      ZH 0P0P     0  0  R      P  # 300 S  
  : S  L    W      P  
 8 P     P  
  5  P    W    P2  
  q  
 qX  	  
 /0     P!  
    
e X 0$   , =  ;   
 Y  X  (0 U      i   e q  PQ     W$    PB  
0  X0  S  <  00W  0      P  
-  X00 \ 
#0  $0(P F   0 
 0 0  S  (0 U   0(000,40 0	 S	        	 0  SPQ        X; Z      Y   
      P      0  	 $ЍV  00 0<0p@-@0 P`M \        0X0
   P  
	@  X 
 X 5/  P 
X 03/	 P P @X c ߍpE- @gMP Q                 S  r8  0`` S
8   
    R   S%huP   R  S q V 
     X   RB pp S  X   V       
 S H              W  
 0   
 00    Z  
    W     V      W  
   Pf8   U0  P1    cQ*1  W  
 V ! 3f∀  @    R0  Z0  Z80  
K  B   V  J    W<  
 J  9   S5  "hrP0 S0   0   
01Q   PN   a80    f  0S*Q 8P.     R  S   0   
002K  
 I  8  0 0 S8 
 8          gߍ48 8 - !/!/ / / / /!1AQaq/!1AQaq/// -- 0 -@HЍ/ -- 0 -;@HЍ/ -- 0 -P@HЍ/ -- 0 -0"@HЍ/ -- 0 - @HЍ/  0  R	  	   R
  
 B	        B   "$  / /@- 0  00. Ѝ G- P` p  P @    W  @0 @   @  0+  q  Q   @@0  
 y0t@  Ti	 !  0  S   D  	P  	    *  0 "(]  P	p S  
0 
 S
    0   
 0 S
  @     Z"t@.  T) 
   S<   P   r  P
 0o   P   
 0  @ `    @Z0  ?    P   L0   0   0  S@ @   ' ' S2   P   30   0 & P   (  P
0~ %  0  S  @   
( P        0   Pg 0   0 &  0  S[@   '0  PR  Ѝ@-L0  $     0
0Ѝ @-H @-L0  @-2@-0O- Q p P    p  P p  \    r 0P  \
@`   Z0  ?o  SC  c7"c$xt  )8
8  S `!  *0`@  * S`@200by
 
   Y !  *@@  * T@2Ȍ    Z    @?o  Sd `2  
C c87$ 
tp `
(88  S !  *0@  * S@200`b
x  0
 0 0  Q `!  *`@  * Q`@20gh$ t
 p
q)88  S p!  *0p@  * Sp@200b
y  0
 0[ 0  Y !  *@@  * T@2Ȍa   \]  o  Y   X
 W `3`##	`!U  *S   i:A8!I7 $ t`^  0 0. 0(  Q 0!  *0@  * Q0@20bx E     0  Q !  *@  * Q@20`fȌ,*(


    (" 8 ( R   ``	S ``  V  
L `   `  U 0  
  r 0 ЍO-  S `@ p   R0  ?o  SC  c0"s$Xt`
 
 '88  S !  *0@  * S@200bwp
 
 	x  W 0!  *@0@  * T0@2    R    @?o  S`d P0  
C c6s8$c	 t	 P&88  S !  *0@  * S@200Pbv`  x 

 Q P!  *P@  *
 QP@20`j	X$ t b'8	8  S `!  *0`@  * S`@200bwp	 {	 Mx 

 W 0!  *@0@  *
 T0@2^   SZ  o  W   Q P P3P# #P!R  *P   gW2A6G0g $t
R  
 # &ȠȌ  \ !  *@  * \@20c
v` :  
 
  		 Q 0!  *0@  *	 Q0@20i %(X("8,(	 R   PPS PP  U  
 @ P   P ЍxGFNxGFxGFu, 1  xGFxGF~xGF          Android    6@hll  @L,P|>P|>@0Zz`@\) h  "0#4$\  &`  (d  ((`  (( ))*T*T*x*x*l++,  -  -p-  --X..0/00014  h4  x4
44\5  5  55  506B6667$8D8 9|   9 9;;h  ;l  l<p  = 8=8==T>AEE FpF|GI  I   :JTJJJJJPP  bbcc ee   eee<fgdhhhijklllmlnT  xX  ܂T  P  8?ȃȃ<  ؅68|pP  \  h  t  <l؎   <$  PL\Դ$8  4LdP?Ķ?L\`,  l  ht  Lx  |  ,x  d`8 ,@	t       DT<  <<\x  (L`p%(t  t   h XH  `L  tP  tT  t@                                                                                                                                                                                                                  ?&_                        out of memory
 Usage: memtrack [--verbose | --quiet] [--scan_delay TIME_SECS]   --scan_delay TIME_SECS     The amount of delay in seconds between scans.   --verbose     Print information about the scans to stdout only.   --quiet     Nothing will be printed to stdout.   All scan data is dumped to the android log using the tag %s
 MemTracker basic_string Cannot open directory.
 Dumping process list   Name: %s     Max running processes: %d     Min  PSS %0.4fM     Avg  PSS %0.4fM     Max  PSS %0.4fM     Last PSS %0.4fM     Currently running pids:       %d Must be run as root. --verbose --quiet --scan_delay The %s options requires a single argument.
 Unknown option %s
 Both --quiet and --verbose cannot be specified. Unable to handle signal %d
 Hit Ctrl-Z or send SIGUSR1 to pid %d to print the current list of
 processes. Hit Ctrl-C to print the list of processes and terminate. Scan Time %0.4f
 Terminating... /smaps /cmdline /proc/ /dev/log/main /dev/log/radio /dev/log/events /dev/log/system  HTC_RIL RIL IMS AT GSM STK CDMA PHONE SMS use-Rlog/RLOG-%s Assertion failed: %s Unspecified assertion failed stack corruption detected <unknown> (null) bionic/libc/bionic/libc_logging.cpp conversion specifier unsupported sign/precision unsupported libc FORTIFY_SOURCE: %s. Calling abort(). 
 0123456789ABCDEF 0123456789abcdef Inf NaN 0 . inf inity nan Infinity :  ANDROID_PROPERTY_WORKSPACE heap corruption detected by %s libc_malloc invalid address or address of corrupt block %p passed to %s max system bytes = %10lu
 system bytes     = %10lu
 in use bytes     = %10lu
 %s:%d: assertion "%s" failed %s:%d: %s: assertion "%s" failed %s Unknown error %d Unknown Real-time %s signal %d Success Operation not permitted No such file or directory No such process Interrupted system call I/O error No such device or address Argument list too long Exec format error Bad file number No child processes Try again Out of memory Permission denied Bad address Block device required Device or resource busy File exists Cross-device link No such device Not a directory Is a directory Invalid argument File table overflow Too many open files Not a typewriter Text file busy File too large No space left on device Illegal seek Read-only file system Too many links Broken pipe Math argument out of domain of func Math result not representable Resource deadlock would occur File name too long No record locks available Function not implemented Directory not empty Too many symbolic links encountered No message of desired type Identifier removed Channel number out of range Level 2 not synchronized Level 3 halted Level 3 reset Link number out of range Protocol driver not attached No CSI structure available Level 2 halted Invalid exchange Invalid request descriptor Exchange full No anode Invalid request code Invalid slot Bad font file format Device not a stream No data available Timer expired Out of streams resources Machine is not on the network Package not installed Object is remote Link has been severed Advertise error Srmount error Communication error on send Protocol error Multihop attempted RFS specific error Not a data message Value too large for defined data type Name not unique on network File descriptor in bad state Remote address changed Can not access a needed shared library Accessing a corrupted shared library .lib section in a.out corrupted Attempting to link in too many shared libraries Cannot exec a shared library directly Illegal byte sequence Interrupted system call should be restarted Streams pipe error Too many users Socket operation on non-socket Destination address required Message too long Protocol wrong type for socket Protocol not available Protocol not supported Socket type not supported Operation not supported on transport endpoint Protocol family not supported Address family not supported by protocol Address already in use Cannot assign requested address Network is down Network is unreachable Network dropped connection because of reset Software caused connection abort Connection reset by peer No buffer space available Transport endpoint is already connected Transport endpoint is not connected Cannot send after transport endpoint shutdown Too many references: cannot splice Connection timed out Connection refused Host is down No route to host Operation already in progress Operation now in progress Stale NFS file handle Structure needs cleaning Not a XENIX named type file No XENIX semaphores available Is a named type file Remote I/O error Quota exceeded No medium found Wrong medium type Operation Canceled Required key not available Key has expired Key has been revoked Key was rejected by service Owner died State not recoverable Hangup Interrupt Quit Illegal instruction Trap Aborted Bus error Floating point exception Killed User signal 1 Segmentation fault User signal 2 Alarm clock Terminated Stack fault Child exited Continue Stopped (signal) Stopped Stopped (tty input) Stopped (tty output) Urgent I/O condition CPU time limit exceeded File size limit exceeded Virtual timer expired Profiling timer expired Window size changed I/O possible Power failure Bad system call /proc/meminfo r /proc/stat cpu%u%c /sys/devices/system/cpu MemTotal: %ld kB MemFree: %ld kB read beyond buffer strlen read overflow                 0000000000000000          (((((                  AAAAAABBBBBB                                       ?      $@      Y@     @@     @     j@    .A    cA    חA    eA    _B   vH7B   mB  @0B  ļB  4&kC 7yAC ؅W4vC NgmC =`XC@xDPKDMD      }       ؗҜ<3#I9=D2[%Cod(
 7yACnF?O8M20HwZ<sOu          	 
   
                     ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ a b c d e f g h i j k l m n o p q r s t u v w x y z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                                                                                                                                   	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~  libc    pthread_create sched_setscheduler call failed: %s   pthread_create failed: couldn't allocate thread pthread_create failed: couldn't allocate %zd-byte stack: %s pthread_create failed: couldn't mprotect PROT_NONE %zd-byte stack guard region: %s  pthread_create failed: clone failed: %s dlfree tmalloc_small tmalloc_large dlmalloc try_realloc_chunk dispose_chunk add_segment prepend_alloc release_unused_segments 
         	 
   
           zR |
                 ,       D   D   L    A     \   H$    F     t   T             Hd    F            B8      <@   LBBZBBb         zR |
                    4       B  ;
   L`(<Tt                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        F    N    f                    ̂     	    
           " 
   0    B    N    d    |                    ȃ    ك                !    0    H    U    k     z !    "    #   Ȅ $    %    &    '   , (   @ *   d +    ,    -    .   ǅ /   օ 0    1    2    3   5 4   D 5   U 6   p 7   ~ 8    9    ;    <    =   ҆ >    ?    @    A   ) B   ? C   P D   f E   v F    G    H    I    J   Շ K    L    M   ) N   F O   ] P    Q    R   Ɉ S    T    U   5 V   a W   t X    Y    Z    [   Љ \    ]    ^    _   7 `   e a    b    c   Ê d    e    f   
 g   6 h   W i   p j    k    l   ֋ m    n   ' o   < p   O q   \ r   m s    t    u    v   Ԍ w    x    y   # z   4 {   C |   S }   e ~   x                ԍ    ߍ             ɜ  , 5              $ I* * Q+ _+                    4   ı @         p 5  | 4  ȱ     g         t   \] T] L]     dy p                 K T          
   
   D      memcpy buffer overflow memset buffer overflow                                  p   g                                                                 İ   g                                                   
                 g                                                  ,              @               @               @  t    p t    W p /dev/__properties__                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             @  @     GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"memtrack    "&) .shstrtab .text .note.android.ident .ARM.exidx .ARM.extab .rodata .eh_frame .eh_frame_hdr .data.rel.ro.local .preinit_array .init_array .fini_array .data.rel.ro .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                                                  p                     %     p   p                  0         dy d  L                 ;         {                    C         8 8 H                 M           \                  [                              n                             }                                        4 4                            @ @                              h h                                                            1                        0       1                                1                        p        2 6                                >2                                 N2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @  ELF          (    0  4   1     4    (      4   4   4                  4  4  4                             C+  C+           8.  8>  8>               P.  P>  P>            Qtd                             p%  %  %            Rtd8.  8>  8>            /system/bin/linker                                
                            1     (   "  9              A              I              P              V              z                                                                                                                                   4   "               9  +     "  F  +     "  S  A     "  f             m  A     "                              -     "                                                                                                                                                              "             -             4             B             H   @       O   @       [  (@        __libc_init __cxa_atexit __aeabi_unwind_cpp_pr0 isdigit _ctype_ memmove memcpy _Znwj _ZNSt12__node_alloc11_M_allocateERj puts abort _ZdlPv _ZNSt12__node_alloc13_M_deallocateEPvj open close read printf __aeabi_unwind_cpp_pr1 _ZNSt4priv12_String_baseIcSaIcEE17_M_allocate_blockEj _ZSt24__stl_throw_length_errorPKc _ZNSsC2ERKSs _ZNSsC1ERKSs _ZNSsC2EPKcRKSaIcE strlen _ZNSsC1EPKcRKSaIcE memset memcmp _ZNSs9_M_appendEPKcS0_ __stack_chk_fail __stack_chk_guard opendir perror exit readdir closedir __android_log_print __aeabi_ul2d geteuid strcmp atoi bsd_signal getpid clock_gettime sleep _edata __bss_start _end libc.so libstlport.so liblog.so libstdc++.so libm.so    %   0      '                    &      )                 ,   #          -         $   +       	                 !      /      "   %   .   *                                                                              
                           
                                                       (                  X?     \?     `?     d?      @     @     @     h?    l?    |?    ?    ?    ?    ?    ?  	  ?  
  ?    ?    ?  
  ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?     ?  !  ?  "  ?  #  ?  $  ?  &  ?  '  ?  (  ?  )  ?  *  ?  +  ?  %  ?  ,  -5   Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ| Əʌt Əʌl Əʌd Əʌ\ ƏʌT ƏʌL ƏʌD Əʌ< Əʌ4 Əʌ, Əʌ$ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ     H-MP00L   D   <      K   0 0(4   H-M   00 v 0 K T4  jjB   pG  K{Dh`pG*4  KB{D	JXhQBxزpG  pGd3  FFF"F FBFF"F h+F  OFHxD@ @="`  )v|F` #B``auFF ( `  u FF h ( F8
FhFiB& }0B`h"a` #` C+h#ihB,   8"i ah#iB 8  8  -CF5NF~D F! (_bhh\P) F!XBxs*сxs)x:(hbhX\`
)` F!|ehhV h	  FO
	 F! Phgh]8F
x F!rxhbhX\`
)]0?6`	u 2  HxDHxDHxDHxDHxD
HxDHxDHIxDyD@ s              6  s  CiB#hFpGF FF h(h
" FF   F FF L   F FhhF pGB-AFF<Бhh(FA]AFF8F2Fv F&``ah8FBAFYT hbh3h,XqhT h e` FhFh (
ChF[hhBhBFFpG  F
@:`a a `HxD()   p
FQFF1(F1Fbi # appFF a`aIii F8F a
F`aF)F* F F8pF !"hF nF   #` F#pc``p   TF F %%a8FKb{D%cechch2`0F L/  pFF
h0F h F8!,F ,pFi;Ah  ```` aF8Kiii@iF-B"F*F8BԿ   O087Fh
FHh ""`b``A
F ```` b`` F>8
FFNiaiaj4 b4jb+k#c F87Fh"@-H)FF  *(  # F``>7F8#@=/)FF  ib,  ! F``>
̹pG  B-AFFoCiVBiX0 h!i@BN%iovE.HxDFE,EDiEEUo@]F F#iai #\ 3  (ܼ   #\T3 )&v # FUED%`'a{!i #\:T3 * i "U!i;xp i&a F   x+AhKhBhЃhFh (ChF[hhBFpG-AFFFkh#`<F/F0F9h=G (&`B-CFFF.F!hV{8FG@* *ݰ!F'`(F9FJF5FEEѽhh`hP`BhZ`
hB`BhhB```C`pGhh`hP`BhZ`
hB`BhhB```C`pG-AO FF &6hxhB(F9F,FchpbhPh ahHh9FKx:.ppchXhpdhdhhB(F9F,Fahp9FchZh `h@h;hB peh*x *ihhBѸBFFFFFF`h``P F `` Fv`FhB Fm`FhB Fe`1{3iX0a<`8F-AFFF
FNh 
@Fh h5FF .PhBэ` (FF .F AFh   9F*FCF""q!`&` q F-GFhFhFB+
i
y(FAFF I@F)F f FBF 0FAFM(F (Uh? FBh)F w0 #0F !F:F9!F> F	oIFF(FbF (7 )FZ (8/ ! HF)FLȱE.(FD@ 0F9F"F   0F9FBF+F4`9F*F93` FnF 0 +h +0F(K)J{D-AFXF4FuhhF 9Fhh%F,FF -ѴB
8F8(  0B!" !9Ff
)F1F(Fv x(  -OFtKFtI{DF0SF2F6 0 mHxDh
hQKhk`z !(r F 
   YObIFFPF]IyDh!FhQRyOSq> ! (T
4IFjF%Ffh 
Uhh.F5FF .ѥB
E (%F

B
IFjF
 F"@+2	
 Fhk`
IFjF
 F
hFhB/`h`(fho@I+,XHEؘB8HF HFFAH
)FFY2F|FHFE{f`` `
  0B'  4(  (  BFFFFFF`h``P F `` F`FhB F`FhB Fe`13iX0a<`8F-AFFF
FNh 
@Fh h5FF .PhBэ` (FvF .F AFfh   9F*FCF""q!`&` q F-GFhFhFB+
i
y(FAF>F I@F)F7 f F|BF 0FAFM(F$ (Uh? FBh)F 0 #0F !F:F9!F> F	IFF(FF (7 )F (8/ ! HF)FȱE.(F@ 0F9F"F   0F9FBF+F4`9F*F93` FF 0 +h +0F  /K0J{D-AFXF5FthhF) 9Fhh,F%FF ,ѵB
8F8)(  0B/,@" ! F" F! !p9F!F1FhF G4 , F#* #  K-O-{DFhF0HxD PhFm nBF f FpFDEO
@F
 &PF4FF
| F 0$60<BHFF (UHFF.jFpF !Fhh_FFF /E F (V!F(F#!F(FBF3$ @i:iYFBF ?zi ;iEXFF" 2 :i 9a&9ixi8FbF !F(F " #!FC0+(F!F((F,7k!Fj(FiB!F(F1kja!F(F,40e(F!FjjB!F(Fjb(F!Fj +C(F!FjjB;!F(Fj!Fc(F!F
F(FH!FiB*g!; 
(F!+`+++kiKa0F]FFE(F!FRFM!F(FVjbv#  [  -OMFFFF(m F:T% T*G (UFjT%D&.FU ]EhT 0D&0FqrUBD&T% AFG (T% D& ns.F]-OF
FFw O G  F9FBFT'0g?U= F"h !*`* ))ZO h	9
T(GpT( UG hUG ('FWF hUG@T( UG (WF 'F F'FF_FQF8hG (ѨFPF GF (GE)F 8FKF=F:h 0G;  Cܽ S-O-0Fk`hBF``Po@KhF=ah(	hB eh/g`- h
/,}]EؽBo@E F:F h}FCh h   '`c``0F&FVE5kfhB,w #3I) "[ (FD1F 
C/@(FZMJF9F}D8F*FWB(F1FJFPI PJKyDOOzDtQD
k5xKN U<~DJJ1FzD[idU<GJ 1FzDiZUkBk_AU
zg=N=J ~DzD1F  @U,!+6J1F zD +2U<
`;0J1F zD#K K"Ua[)J 1F5zD%k k$J1F zDUlDvk 9FBFV;U<kBѣch*B -/F       P?]=  =      2  +      
           xK-O-]vJ{DF 
QX1h`됳pHxD R+PFPFPF령E	dHxDQFLA v S+ F]HxD' &FFXJOXKOWHzD{DxDE.7SHxDF F@@DDZ) YFj0KHZ)xD		)v\FCHxDBHxDAHxD
	-IF  $ @@HP 'J,FEIF  # 002  FH#c F)F(A1$HxDS0+D   0
+	+ .VHxDrPH !xD`@F    eA ʚ;  V  X  b        =    ?  9  t  w  8  B      xGF PxGF LxGF `xGF \xGF |xGF          Android    <bl(<  lxX|Hj|
jl\4:lJ)H8   \`,   0   p                    out of memory
 Usage: memtrack [--verbose | --quiet] [--scan_delay TIME_SECS]   --scan_delay TIME_SECS     The amount of delay in seconds between scans.   --verbose     Print information about the scans to stdout only.   --quiet     Nothing will be printed to stdout.   All scan data is dumped to the android log using the tag %s
 MemTracker basic_string Cannot open directory.
 Dumping process list   Name: %s     Max running processes: %d     Min  PSS %0.4fM     Avg  PSS %0.4fM     Max  PSS %0.4fM     Last PSS %0.4fM     Currently running pids:       %d Must be run as root. --verbose --quiet --scan_delay The %s options requires a single argument.
 Unknown option %s
 Both --quiet and --verbose cannot be specified. Unable to handle signal %d
 Hit Ctrl-Z or send SIGUSR1 to pid %d to print the current list of
 processes. Hit Ctrl-C to print the list of processes and terminate. Scan Time %0.4f
 Terminating... /smaps /cmdline /proc/                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     p?                     <     H         o             H           H  
             `     h     v                8>  !         @>           H>              o                                                   8>  @>  H>  A#                      	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  3+  <+           
   
   ,+   GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"memtrack_share   .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .ARM.extab .rodata .preinit_array .init_array .fini_array .dynamic .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                  4  4                             H  H                          H  H                   #             \               )   	      <  <  H                2   	                        6         	  	                   ;         0  0                   A         %  %                    U     p   %  %                 `         h'  h'  0                  k      2   '  '                  s         8>  8.                             @>  @.                             H>  H.                             P>  P.                          X?  X/                              @   0                               @   0                          0        0                                 00                         p        L0  6                                0                                  0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         `  ELF          (      4   R     4    (      4   4   4                  4  4  4                             {E  {E           lN  l^  l^  H  L           N  ^  ^              Qtd                             p1  1  1              RtdlN  l^  l^            /system/bin/linker                                
                            '              .              E              \              a              o              |                                                                                                   p                                                                                                                                           #           *  `       1  `       =  `        __libc_init __cxa_atexit __aeabi_ul2d printf __aeabi_unwind_cpp_pr1 __aeabi_unwind_cpp_pr0 sqrt clock_gettime __aeabi_idiv malloc memset sleep __aeabi_uidiv __aeabi_uidivmod puts putchar strcmp strtol atoi _ctype_ setpriority sched_getaffinity sched_setaffinity perror memcpy strcat strcpy strlen _edata __bss_start _end libc.so libstdc++.so libm.so                                        
                                                                                      
                                	                |_     _     _     _      `     `     `     `     `     `     $`     (`     0`     4`     <`     @`     H`     L`     T`     X`     ``     d`     l`     p`     x`     |`     `     `     `     `     `     `     `     `     8`    D`    t`    `    _    `     `    \`    h`    `    `    `    `    _    _    _    _    _    _    _  
  _    _  	  _    _  
  _    _    _    _    _    _    _    _    _    _    _    _    _    _    -W   Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ| Əʌt Əʌl Əʌd Əʌ\ ƏʌT ƏʌL ƏʌD Əʌ< Əʌ4 Əʌ, Əʌ$ Əʌ Əʌ Əʌ     H-MP00L   D   <      K   0 0V   H-M   00  0 K  W      -F@ 

(A1	H!FxD      eA      P?(   0-FF@

#F(A1	H)FxD 0     eA      P?(     FHF!FxD!  " +# ;+;        P?(   @-FFAAFFQ0@BC :F3F( * A2H)FxDb) d       P?P(    # A=iFX H#FF  ʚ;    -O-Fj
F FFF ( !"FDi!FWD,/xOmxHST %HHFgZ! 1  !YEEJgj,A+a FFA
Kwia[Z+kb;J!;"@c!дIH@@Kȿ@+F JF#F5?EEۧHJJQ02FJI+K;AHF!F  	O01O FFz	                P?    eA-G-
 &Ej HBHHLSPE aDA1 .qgj;;+cKJ"K#@d"дIH@@Kȿ@ HS+xD
6{оB۸ HJJQ0 S+ HxD #F
F  
              eA%  %   -O-
 &E jH,Bˑ DHH8s:gj;;+cKJ"K#@d"дIH@@Kȿ@ XF9FS+|6?FE۹ +HJJQ0pS+ 9FHxD^F8F
Fz aHA1   
             eA%   %  0 )FDEuK@C$euCEu F08#FF *(!F*F8@޿8  -O-jF	0Fh"iFO0iah (h̿0FF (!2FHFV  !2FPFi1F 'j HdxNOHHFc2FPFIF	GUEEjjgE,A+a  F)FA
K .x
a[z+kb;J!;"@c!дIH@@Kȿ@9  F)F3F{7bЧBۻ HJJQ0^BFJI+K;A1F   %~              P?    eA-O-jFFIh8FhF ( 𜀠i9FFj Qdx &HOPHHFc:FPF1FGUEEzgE,A+a  F)FA
K .p
a[j+kb;J!;"@c!дIH@@Kȿ@9  F)FZF;F6aЦB۹ HJJQ0BFJI+K;AXF9F  O0) %{	              P?    eAF
F $O F`! 11U4Bu #<-O-jF0Fh"i)FO0iah (h̿0FF (HF1F2F !PFFi1FPRj  'dxHLMHHF`PFIFG2BEjg,A+a  F)FA
K .x
a[z+kb;J!;"@c!дIH@@Kȿ@9  F)F3F7XПBۻ HJJQ0BFJI+K;A1F  = "F
F	              P?    eA-O-FF	 mHYFxDlj"ih0FFFO0iah (h̿0F8F (HF1F@FQFUi1F 'pj#xHdxPQHHdIF@F	G  ZBjg˝,A+a  F)F
A
Kpz*a[z+kb;J!;"@c!дIH@@Kȿ@9 F)FZF 3F7CЇBHJJQ0JI+K;AXF1F  X "
FF
~              P?    eAp   -O-jFFIh0Fhe ( 1FZi1F ', HdxTUHHFjGBFBNHQF2FxDVyBBEjg,A+a  F)F6A
K .{:a[z+kb;J!;"@c!дIH@@Kȿ@8  F)FRF3F7?_E۹ HJJQ0BFJI+K;APF1F  O0 "F
F}               P?    eA}   -O-jFFh0F"iFO0iah (h̿0FF (@F1F-HF1FY'i1F 'j HdxSVKT{DH	HFi@FIFGF	YFn4BjgZ#,A+a FFLA
K .ya[z+kb;J!;"@c!дIH@@Kȿ@0FF ZF3F 7BЇBۺ HJJQ0*FJI+K;AXF1F2   ${               P?    eA    )!I `AC 8F F(!F*F8@8  -O-jF FAFyhFi (̿  FF8jE,YF)F)FBF;iF   N0FYFzhh	 (ExjE4YF)F 
a!RFO 
F

RE !JF	rAFPFAFFPF>iBnFO
>pHxD:O0je:xHxdeH 'HKF !
FG
AB
DDDEPSEO$Jg,A  +
a		@FIF`;"A
[qz*akz+{b;K!;"@c!дIH@@Jȿ@H@F IF#Fv7AЇBk!FRFKHI+J;  	$
 !r                P?    eA   -O-Fi (ܫHxDu(XFQFqF qhjF0jB,)F!F^!FRF3iF  b T8F)FrhhY	 (KpjB4)F!FBa! 


JF"BFb!	O 	F IEQF@FQFF@F?
i
B ?qHxDO0je2xHvxde
H &H "8aF@FG " ,DJBDX
XRE		E !	/g˝,A  +

a		@FIF`;"d
A
[rs:akj+{b;K!;"@c!дIH@@Jȿ@H@F
[F IF6XОB
hYFK
HI+J;z  O 	u              P?    eA,    -O-jFF FAFF  )F)FBF0F F ( $ )F:F ' HFa!	9F7[BAF8FAFF8F> BF '.tHQFxD,0j  Hh
O 	gHHFO FG FB]HQF"FsFxDdE IBCEAB "IFJgz#,A  +
aFF`;"&A
[	xʸak+{b;K!;"@c!дIH@@Jȿ@AF #FFRF
SГE	kPF!F:FKHI+J;:  	O0s  q               P?    eA=    -O-jF	 FYFyhFi (̿  FF8jB,1F)F)FZF;iF   U@F1Fzhh (LxjB41F)F a!RF|a!JFxO 	F			[EYFHFtYFFHFt	
:
iBb" tH	xD,O0jj9xHximKi{D 'HH,JF  
FpFGF0	
Y
QEDBE
Y

BO Jg˝,A  +
a		@FIF`;"A
[ryakz+{b;K!;"@c!дIH@@Jȿ@KIF#F @F	Z7BЇBj	!FKHI+J;   !t                P?    eAe  !  -O-jF FYFayhFi (̿  FXF8jB,1F)FL)FZF;iF  P	 C@F1FzhhG
 (:xjB41F)F0! 	RF !JF
YF@FYFF@F	
:
 iB! mHxDO0jc;xHxbbH 'H4  aF"FGDHPE
DS
EZB	O (
2Jg˝,A  +
a		@FIF`;"fA
[qz*akz+{b;K!;"@c!дIH@@Jȿ@K#F @FIF7AЇBi!FKHI+J;}   "t              P?    eA   -O-jFMh F)FF  9F9F*F0F	 ( 9F$  0FAFAFF0F= BF &-lHxD, b  # H
__HHO 	IF`F"F		GEDE

E	O Jgj,A  +


aPFYF`;"NA
[{*H
ak+{b;K!;"@c!дIH@@Jȿ@BPF YF#FH
HBj!F2FKHI+J;b  	O0O 
r               P?    eAk   tHxDsHsLxDrH|DxDqHxDpHxDoHxDnHxDmHxDlHxDkHxDjHxDiHxDhHxDgHxDfHxDeHxDdHxDcHxDbHxDaHxD`HxD_HxD F\HxD[HxDZHxDYHxDXHxDWHxD FUHxDTHxDSHxDRHxDQHxDPHxD|OHxDxNHxDtMHxDpLHxDlKHxDhJHxDdIHxD`HHxD\GHxDXFHxDTEHxDPDHxDLCHxDHBHxDDAHxD@@HxD<?HxD8>HxD4=HxD0
 2:HxD(9HxD@ R
  
      @  r          O          
   
  e
  s
  
  
  
  D        
    e          3  v        A            2  }      
    0    ,      %  -OO3FSa &'pWpFV`F`O `aOQ`cJ8abDb0KaD{D babX'P(x-(@(F!!pI(FyD`pI(FyD|#|I(FyDtxI(FyDluI(FyDbqI(FyDZnI(FyDPjI(FyDHgI(FyD> cI(FyD6$`HxDzX" x-)p@xZ h_2VHxD)F & !7
FX'   `/3FO(FR3+BH)FxDY!k)?H!xD(F  
ZD, "c7OE="kP(4HxD#eh -2HxDh /0HxDi ).HxDk,HxD
z:B*HxD7 i (HxD%h%HxD#iB#HxDhB	0Bcu0F ʚ;b2  2  6    !                                *  N  o        sF  oF^F#HxD7!E
*FXHxD, ," F0 ( ,
, #HxD, #    !*F0 
HxD2 H!FxD  |     w  r  {  5F@ h	 hGO0  xGF          Android            
                     
            
        
                            D\ $T(l  $4($ $(,|0`,
   %s %ux%ux%u bytes took %.06f seconds (%f MB/s)
 %s %ux%u bytes took %.06f seconds (%f MB/s)
   %s %ux%u bytes average %.2f MB/s std dev %.4f min %.2f MB/s max %.2f MB/s
   %s %ux%ux%u bytes average %.2f MB/s std dev %.4f min %.2f MB/s max %.2f MB/s
 cpu took %.06f seconds
   cpu average %.06f seconds std dev %f min %0.6f seconds max %0.6f seconds
 sleep(%d) took %.06f seconds
   sleep(%d) average %.06f seconds std dev %f min %.06f seconds max %0.6f seconds
 %s requires --dst_str_size to be set to a non-zero value.
 %s failed, expected %u, got %u
 %s failed, return value %d
 %s: Chosen options lead to no copies, aborting.
 Usage:   micro_bench [--data_size DATA_BYTES] [--print_average]               [--no_print_each_iter] [--lock_to_cpu CORE]               [--src_align ALIGN] [--src_or_mask OR_MASK]               [--dst_align ALIGN] [--dst_or_mask OR_MASK]               [--dst_str_size SIZE] [--cold_data_size DATA_BYTES]               [--cold_stride_size SIZE]     --data_size DATA_BYTES       For the data benchmarks (memcpy/memset/memread) the approximate       size of data, in bytes, that will be manipulated in each iteration.     --print_average       Print the average and standard deviation of all iterations.     --no_print_each_iter       Do not print any values in each iteration.     --lock_to_cpu CORE       Lock to the specified CORE. The default is to use the last core found.     --dst_align ALIGN       If the command supports it, align the destination pointer to ALIGN.       The default is to use the value returned by malloc.     --dst_or_mask OR_MASK       If the command supports it, or in the OR_MASK on to the destination pointer.       The OR_MASK must be smaller than the dst_align value.       The default value is 0.     --src_align ALIGN       If the command supports it, align the source pointer to ALIGN. The default is to use the       value returned by malloc.     --src_or_mask OR_MASK       If the command supports it, or in the OR_MASK on to the source pointer.       The OR_MASK must be smaller than the src_align value.     --dst_str_size SIZE       If the command supports it, create a destination string of this length.       The default is to not update the destination string.     --cold_data_size DATA_SIZE       For _cold benchmarks, use this as the total amount of memory to use.       The default is 128MB, and the number should be larger than the cache on the chip.       This value is specified in bytes.     --cold_stride_size SIZE       For _cold benchmarks, use this as the minimum stride between iterations.       The default is 4096 bytes and the number should be larger than the amount of data       pulled in to the cache by each run of the benchmark.     ITERS       The number of iterations to execute each benchmark. If not       passed in then run forever.   micro_bench cpu UNUSED [ITERS]   micro_bench [--dst_align ALIGN] [--dst_or_mask OR_MASK] memcpy NUM_BYTES [ITERS]   micro_bench memread NUM_BYTES [ITERS]   micro_bench [--dst_align ALIGN] [--dst_or_mask OR_MASK] memset NUM_BYTES [ITERS]   micro_bench sleep TIME_TO_SLEEP [ITERS]     TIME_TO_SLEEP       The time in seconds to sleep.   micro_bench [--src_align ALIGN] [--src_or_mask OR_MASK] [--dst_align ALIGN] [--dst_or_mask] [--dst_str_size SIZE] strcat NUM_BYTES [ITERS]   micro_bench [--src_align ALIGN] [--src_or_mask OR_MASK] [--dst_align ALIGN] [--dst_or_mask OR_MASK] strcmp NUM_BYTES [ITERS]   micro_bench [--src_align ALIGN] [--src_or_mask OR_MASK] [--dst_align ALIGN] [--dst_or_mask] strcpy NUM_BYTES [ITERS]   micro_bench [--dst_align ALIGN] [--dst_or_mask OR_MASK] strlen NUM_BYTES [ITERS]   In addition, memcpy/memcpy/memset/strcat/strcpy/strlen have _cold versions   that will execute the function on a buffer not in the cache. --print_average --no_print_each_iter --dst_align --src_align --dst_or_mask --src_or_mask --lock_to_cpu --data_size --dst_str_size --cold_data_size --cold_stride_size Unknown option %s
 The option %s requires one argument.
 Uknown command %s
 More than %d number arguments passed in.
 Not enough arguments passed in. The --dst_align option must be greater than or equal to 0. The --src_align option must be greater than or equal to 0. The --data_size option must be a positive number. The --dst_align option must be a power of 2. The --src_align option must be a power of 2. The --src_or_mask option requires that --src_align be set. The --dst_or_mask option requires that --dst_align be set. The value of --src_or_mask cannot be larger that --src_align. Unable to raise priority of process.
 sched_getaffinity failed Cannot find any valid cpu to lock. sched_setaffinity failed Cpu %d does not exist.
 cpu memcpy memcpy_cold memread memset memset_cold sleep strcat strcat_cold strcmp strcmp_cold strcpy strcpy_cold strlen strlen_cold                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 _                      t     x        o"             H           H  
   _          B     J     W      l^  !         t^           |^              o                                                   l^  t^  |^  0                                                                    D  
      D        E  i%      E  q      E        E  (      )E  Q      /E        6E  9      BE  y      IE  "      UE  A      \E        hE        oE  	        GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"micro_bench N@ .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.extab .ARM.exidx .rodata .preinit_array .init_array .fini_array .dynamic .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                  4  4                             H  H                          H  H  _                 #                             )   	      t  t  x               2   	                         6             @                 ;             '                 A         0  0                    U         0  0                    `     p   1  1                  k      2   2  2                  s         l^  lN                             t^  tN                             |^  |N                             ^  N                           |_  |O                              `   P                             `  P                          0       P                                 P                         p        P  6                                Q                                  &Q                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ` ELF          (      4   S    4    (                45 45           ;     \  '        Ptd4 ش ش \   \         Qtd                             p             Rtd ;                       H-MP00L   D   <      K   0 0 N x| H-M   00   0 K `     -F@ 


(A1	H!FxDg     eA      P?  0-FF@


#F(A1	H)FxD 70     eA      P?`    FHF!FxD!  " +# ;+;        P?M  @-FFAAFFQ0@BC :F3F( * A2H)FxDb)        P?   # A=iFF H#FF  ʚ;    -O-Fj
F FF ( !"FJi!FW
,/xOmxHST %HHFgZ! 1  !YEEJgj,A+a FF
A
Kwia[Z+kb;J!;"@c!дIH@@Kȿ@+F JF#F5?EEۧHJJQ02FJI+K;AHF!F  	O01O FFz	                P?    eA-G-
 &Ej HBHHLSPE a
A1 .qgj;;+cKJ"K#@d"дIH@@Kȿ@ HS+xDr6{оB۸ HJJQ0`S+ HxDV #F
F  
              eA |  -O-
 &E jH,Bˑ DHH8s:gj;;+cKJ"K#@d"дIH@@Kȿ@ XF9FS+6?FE۹ +HJJQ0S+ 9FHxDF8F
F a
A1   
             eA\  0 )FDEuK@C$euCEu F08#FF (!F*F8@޿8  -O-jF	0Fh"iFO0iah (h̿0FF (!2FHFV !2FPFi1F '
j HdxNOHHFc2FPFIF	GUEEjjgE,A+a  F)F
rA
K .x
a[z+kb;J!;"@c!дIH@@Kȿ@9  F)F3F{7bЧBۻ HJJQ0BFJI+K;A1F   %~              P?    eA-O-jFFIh8FhF ( 𜀠i9F
Bj Qdx &HOPHHFc:FPF1FGUEEzgE,A+a  F)F
A
K .p
a[j+kb;J!;"@c!дIH@@Kȿ@9  F)FZF;F6aЦB۹ HJJQ0BFJI+K;AXF9F  O0) %{	              P?    eAF
F $O F`! 11U4Bu #<-O-jF0Fh"i)FO0iah (h̿0FF (HF1F2F !PFLi1FPNj  'dxHLMHHF`PFIFG2BEjg,A+a  F)F
A
K .x
a[z+kb;J!;"@c!дIH@@Kȿ@9  F)F3F7XПBۻ HJJQ0
BFJI+K;A1F  = "F
F	              P?    eA-O-FF	 mHYFxDj"ih0FFFO0iah (h̿0F8F (HF1F@FQFUi1F 'lj#xHdxPQHHdIF@F	G  ZBjg˝,A+a  F)F
A
Kpz*a[z+kb;J!;"@c!дIH@@Kȿ@9 F)FZF 3F7CЇBHJJQ0&JI+K;AXF1F  X "
FF
~              P?    eA4   -O-jFFIh0Fhe ( 1FZi1F ', HdxTUHHFjGBFBNHQF2FxDyBBEjg,A+a  F)F
A
K .{:a[z+kb;J!;"@c!дIH@@Kȿ@8  F)FRF3F7?_E۹ HJJQ0PBFJI+K;APF1F  O0 "F
F}               P?    eAA   -O-jFFh0F"iFO0iah (h̿0FF (@F1F-HF1FY'i1F 'j HdxSVKT{DH	HFi@FIFGF	YF4BjgZ#,A+a FFA
K .ya[z+kb;J!;"@c!дIH@@Kȿ@0FF ZF3F 7BЇBۺ HJJQ0d*FJI+K;AXF1F2   ${               P?    eA    )!I D`AC 8F Fc(!F*F8@8  -O-jF FAFyhFi (̿  FF8jE,YF)F)FBF;iF   N0FYFzhh	 (ExjE4YF)F 
a!RFO 
F

RE !JF	xAFPF|AFFPF>iBjFO
>pHxDO0je:xHxdeH 'HKF !
FG
AB
DDDEPSEO$Jg,A  +
a		@FIF`;"A
[qz*akz+{b;K!;"@c!дIH@@Jȿ@H@F IF#Fv7AЇBk!FRFKHI+J;  	$
 !r                P?    eAG   -O-Fi (ܫHxDu(XFQFqF qhjF0jB,)F!FZ!FRF3iF  b T8F)FrhhY	 (KpjB4)F!F>a! 


JF(BFb!	O "	F IEQF@FQFF@Fb?
i
B ?qHxD:O0je2xHvxde
H &H "8aF@FG " ,DJBDX
XRE		E !	/g˝,A  +

a		@FIF`;"0
A
[rs:akj+{b;K!;"@c!дIH@@Jȿ@H@F
[F IF6XОB
hYFK
HI+J;z  O 	u              P?    eA  y  -O-jFF FAFF  )F)FBF0F F ( $ )F:F ' HFa!	9F7[BAF8FAFF8F(> BF '.tHQFxD,0j  Hh
O 	gHHFO FG FB]HQF"FsFxDE IBCEAB "IFJgz#,A  +
aFF`;"A
[	xʸak+{b;K!;"@c!дIH@@Jȿ@AF #FFRF
SГE	kPF!F:FKHI+J;:  	O0s  q               P?    eA  _  -O-jF	 FYFyhFi (̿  FF8jB,1F)F)FZF;iF   U@F1Fzhh (LxjB41F)F a!RFa!JF~O 	F			[EYFHFpYFFHF	
:
iB^" tH	xDO0jj9xHximKi{D 'HH,JF  
FpFGF0	d
Y
QEDBE
Y

BO Jg˝,A  +
a		@FIF`;"A
[ryakz+{b;K!;"@c!дIH@@Jȿ@KIF#F @F	Z7BЇBj	!FKHI+J;   !t                P?    eA)    -O-jF FYFayhFi (̿  FXF8jB,1F)FH)FZF;iF  P	 C@F1FzhhG
 (:xjB41F)F,! 	RF !JF
YF@FYFF@Fd	
:
 iB! mHxD9O0jc;xHxbbH 'H4  aF"FGDHPE
DS
EZB	O (
2Jg˝,A  +
a		@FIF`;"2A
[qz*akz+{b;K!;"@c!дIH@@Jȿ@K#F @FIF7AЇBi!FKHI+J;}   "t              P?    eAu   -O-jFMh F)FF  9F9F*F0F	 ( 9F$  0FAFAFF0F>= BF &-lHxD, b  # H
__HHO 	IF`F"F		GEDE

E	O Jgj,A  +


aPFYF`;"A
[{*H
ak+{b;K!;"@c!дIH@@Jȿ@BPF YF#FH
HBj!F2FKHI+J;b  	O0O 
r               P?    eA/   tHxD sHsLxD |rH|DxD wqHxD spHxD ooHxD knHxD gmHxD clHxD _kHxD [jHxD WiHxD ShHxD OgHxD KfHxD GeHxD CdHxD ?cHxD ;bHxD 7aHxD 3`HxD /_HxD + F (\HxD $[HxD  ZHxD YHxD XHxD WHxD  F 
UHxD 	THxD SHxD RHxD QHxD PHxD OHxD NHxD MHxD LHxD KHxD JHxD IHxD HHxD GHxD FHxD EHxD DHxD CHxD BHxD AHxD @HxD ?HxD >HxD =HxD 
  :HxD 9HxD@ 𜻦          6  h          U  a          )  7  y        T  b        )  W  g        :          U            A  a          y    _      -OO3FSa &'pWpFV`F`O `aOQ`cJ8abDb0KaD{D babX'P(x-(@(F 
!!pI(FyD  `pI(FyD #|I(FyD xI(FyD uI(FyD qI(FyD nI(FyD jI(FyD gI(FyD  cI(FyD $`HxDzX" x-)p@xZ h_2VHxD)F; & !7
FX'   `/3FO(FR v3+BH)FxDY!k)?H!xD(F  
ZD, "c7OE="kP(4HxD#eh -2HxDh /0HxDi ).HxDk,HxD
z:B*HxD7 i (HxD %h%HxD#iB#HxDhB	0Bcu0F ʚ;* *                           }  ~  |          3  T      sF  oF F#HxD7!E
*F `HxD, ," F0 ( ,
, #HxD , #    !*F  
HxD H!FxD+  | F  V  ;  6  ?  5F@ h U	 hGO0   G0A 0+SG  P -@@N  
  SO  CjX  
T v/ oF pF /`0  @_ T  0dp\0਀ P    T0`0C d
 PUO0 
  
 P@   T  SZ  X   
 |p  
PP  5Q&: 0+C0Q/! 
  S`  Š`F  \

6	  0
 c @c0Č` @  00 8FF CF( !   88KJ{DXm;e +nBò
+JmJepGT1Z% pFL
K|DXhF"I`XT0v0F+hF#H XT0q0Fp $ pF ML!M|DK&{D@cYHhF$XT CT4 Fn*h (
&O6 F:0Fp $   ap   p
p/  `4 p   p
p/  `4   p   p
p/  `4 p   p
p/  `4 B π  -@@*SӀ n*& !Т_|D !  _C|ڡ
=!
  @@:ӑ!
!
B@: 
 
B@ :!
 : 
 !
 
_B|!
 
ڡ

_|D; ;!  @pG - _|D; ;!K[ K [@:ۑ QQQQ@:@2 :۱QQ : 2_|$xxD_|$Q;@;D1K Kxp HIxDZ8 "  R  -    8 "    R   -  R  :P!   R
 *      

 ΰ   :
    
ϰD$$ /@- 0`0 S0!!ϰ$$D R@/@P`p 0`0  
 S0 B>@(@(@H1$  R0  J  RP*  .
P(@H!$@! %@/
x pG1xӳ  x  x  xs  @ˁȐ@<,<@
<,<@뿠 8@ O8@ 88+ +; ;K Kı[ [+ +r; ;KK K$[ [1 @E@nɑ@<,<@<,<@_LNp1$1_L`1 +OCp1_LNp1"@+1_L 1 ;ODp1_| + +K K ,1[ [ -1?Q+<,<1 0TxQ+<,<xsLx|xQ;@_l p1 ; K1 ; K [1Q+<,<lxMxQ;@ _l?֯ ;OCp1Q+<,<HxtQ;@<,<Mp1 Kp1 ɢ<,<%ɑ@<,<- 
x±KxñxԱQ+Q;@_n ]<,<p1 +p1 + ;p1 
xKxQ+Q;@ 1_l 3<,< 
x±Q+Q;@<,<<,<ˮp1 +p1 +OBp1`1_| +++z? P;<,<- 9     ]@` ` p @ RRχ  \N   SSχ  \F    
  ϰ  
  *r4S
    S  
r8S    S  
r<S    S   /]@` ` p6     
 @ RRχ  \   
P  RRχ  \  @ SSχ  \  32/
  34/  25/  35/  24/<`@Н  P  
o `12   Q  / $(@P \  
-  %\0D0  3P  ,\  @%T8  41   P$̠3  $̠P0  Ƞ0D,Ƞ0%\  3P  ,\  @8  P$Ƞ  X$Ƞ%X  %\0D0  3P  ,\  @%\
     
P$ĠT    `@Н/   P P!,Ġ%T
  B`@Н/1+ +; ;K Kı[ [+ +r; ;KK K$[ [1 @E@nɑ@<,<@<,<@_LNp1$1_L`1 +OCp1_LNp1"@+1_L 1 ;ODp1_| + +K K ,1[ [ -1?Q+<,<1 0TxQ+<,<xsLx|xQ;@_l p1 ; K1 ; K [1Q+<,<lxMxQ;@ _l?֯ ;OCp1Q+<,<HxtQ;@<,<Mp1 Kp1 ɢ<,<%ɑ@<,<- 
x±KxñxԱQ+Q;@_n ]<,<p1 +p1 + ;p1 
xKxQ+Q;@ 1_l 3<,< 
x±Q+Q;@<,<<,<ˮp1 +p1 +OBp1`1  F@B ɑ@<,<@
<,<@뿡  _LB  pG pG 8pG pG  _LB  pG pG 8pG pG_| +++z?Q+<,<˯   pG KJ{DX$ HxDLK|DXhF˹JFMOGzD}DXQ3cT2H``0 JT0zD0``	HxD@¹  ( T'  -O:K;J{DXh8H9NxD~Dhqh  *7T496h .1HxD@0F (? %
"Rw`B`gz`DFOI
T YFT"7E$lGGT5>F7UEH!xD"k #Op#`OA`c`a#acacdd`S``4F

HxD@K{Dh``h F p  L '    h-OFF  ဉ 

#iC Fh =	#`	᠉ p 
>h}h7>h}h7 -j1Fi*FG (@ 6-  ( >h}h7 -ТAO"ѠhB i#h

OI	E1" ( cih	 aPD` ` s hMEF1FJFqh h` 	F"`'!iBMEJF1F^ h 	 F"`biFBj1FiG 	
w1F*FEh"hC`Q!`ND0 +J>hO }h7FF -л 0F
!*Fq  

O hESF+F!iBbiّDKE1FJF"h F	!`p*Bj1FiG 	
 F1Fh!hF` `	
 FQ`F ND 0 +桉A@O0KRH{DXT0Q@pG & F  ("m#e#QpFpFF)  !"1F "\*Fp@ÿF C#RCQ e hF^ +hFO  O1O O"1F9F"h(`U)h"hF(h!h/`"h !(h0&`  -OF% %5F
$!{DFO
	Xh	
$%* @Fx *`F; Z) VP!D G                m                                              g                !                                              c  k        '  k      =    K      Q      W            ]  F #	bFx0 	(;*+2F #	bFx0 	($)ыB BFTBB%F"U4;0	) "AF0;	2;0 	(F$+G h)G gG@  l*GG G wGgLG 
МB\B%F U4x
՜BLB%F ՜B?B%F 
՜B0B%F x
՜B#!B%FUdkBB%F 
ДBB%F BB%F
  
МBB%F 
՜BB%F	 z
՜BB%F t
՜BB%F gy
՜BB%F ZBB%F OBB%F CBB%F 7G  &z
՜BB%F #
՜BtB%F 
՜BgB%F 	z
՜BZB%F BOB%F  +-kO0 "#`"     # A#`\)



 6&6 63BPXE	h  '_hB
 8Fh %K`F8p`e`8  K-O-FJm{DF&FXh|0[PF8O4	"`  
-@Ѻ
< ,  "!!"DOaH=?BC"FIOE $=A (=/ (O4 !@  +QA@@I- "'K퐋{D %-F0%x -O8Oe-A ). 	PFQ (A 
	
	S
	@  4_ O<F
$+	 	  Z( ,a **g ******]  *  *          **********D************2**[ **********7FF!*$**.*14**h*4O 
_  *  5H+x
F10	*$+X%
R+`0h5P'`3h76 +ZYBHT+ _ P;*+	?)FO +x
F10	*$+8%
R+`356h         F
   P'`36h7F|F	  %	0	)$( E|H %	0 0	*	$)/F *%8/FHH@HXxl+PHH H xHhT'`5h76|R %_PH_  P'`67& E   
o 	@
R'`7 @
R'`1h7F6 ,u ,-"dBeE_ $?(		g-G-Ѽ OOS'`I  S+# C7Bz@-%$_PD %
S+@ G{aL\E +@s *@p	Hxf*e*E* ,","ձH-!H !
 Q	g*FG*
#	f*ћ  0(ѵ@@#`"` 0!"hB	$hg+ G+
dE`	g,E%e%	f)G
F=Tp ,dB-  + 	,Xp'
{" F
! F01
!	(F`F04 M
~KKpE0!pd>p( 
!4 ,	ݼ 
 $B
4 ,Կ$g%
 * -!	_ %(H_  

U'`67& E     o @P'`74P'`4h7 %6
R'`3hx!H7 %HxDF6 	     5  T'` 75 D XFbF !H dEdF7F dF !.F_
F
H_  	Q'`7" E   o @T'`47 %6 DT'`5h7,FM}D_  S'`67&   E   o @	Q'`74	Q'`2h7F %6T H  "_    (TѼ j((J
:
3Q0 DErFF0FTٲ3 ]FG0)E0!F@ F)F
" #	
 F #02-
"
)F	F
F	  !BB
04;L
3
S+"@$	(Dpx)	FZF
FT9

v{  eF
	 ,  %|B_P$

{Ա %$
D
ȱ %$
D	
(_0B F(F
0


@
 *:   1 A 0)		PF (@S
	:QK{D*PH xD  X (
D		 PF (@4
	_I 
_ !  Z! 0 0"	!   		P(PF[ (@
	)@
 *:   1 A 0)		PF8 (@
	:K{D*H xD  X (
D		 PF (@
	* *5T                Q      Q  E  {  o   1 A P)0		PF (@
	:`U#}D* TU }D PB* 		PF (@h
		 @ 	 	e,@q@e$ @LB4, {D 0	PF (@7-B ҁ$ yD`B\`3L ,PFn (@- ; ܳ B0 13* PFT (@-XD%|DL$zD  +m$ @TH,4, {D 0	PF$ (@΁-  yD`TX`3H (PF
 (@- 	 1 Q0 03) PF (@-	L%|DJ zDB3*	 PF (@~-  BY  ` (	PF (@a- 1 B0 13* PF (@F-L%|DܾJ zD3  Q)PF} (@'- ƀL  |DX``T `0(	 PF\ (@- IX`yD `3QB* PFC (@-` `X`y+WЛ @.! !  H@( 0 	PF (@-@2  & ; Q0 03) PF (@-nL%|D kJzD 3	 	! B B*PF (p-=`\` 3 H(PF (\-4
 , P0 13( PF (?-CL%|DAJ zD  \,PFx
 B	#PFi
 % ,> FE $PFW8 "
F4(%BH  @ +O4|#hBG
!}
m     "        P  ,      E  9          )     FKFJF{DXhF	?2F F9FF(h F:0Fl  8FiF` 

#iC F 	%`
 h!ibi@B F[O5"h0hY`[ci"`BС
- FD ((F8-OF6LF6KF|DXh-L3IgX:h
D1NY4h ,DchhXB? F)F"O4.1h9" "b`! 3h#`4``HxDh	 "`ch Ya` B)F F"| (F;hO4O O3"XF"#)FCFѵ F     -OF:L:K:I|DyDX
h  *e7OY;h5HOРxDhJ`T
0hF3fhC3+FU
0 SEѕ 
 " FAF0BAF F"
;hG8h+F>$h ,ѹ HxDhJ`Z  hAF F (  ;h#Om     ~ F  u FF    O0pO0@O0  +[ 0pG  pGhF !ԘY `pG` pG	 0
0	0[0`pG  pG  pGK0{DBЙBi
i  01P]Q-BO3B # #F0  I: Pr *FQB #

*O #C "2*Oڿ3bFC+pG  -CF0K{DBRi 
 FFEFVK FT
(  0E$EUE@V\ %0 %L&E=V  !+ B\BL@! DUL $$ NDT
FD@C+       
  XK-O{DBFF 𥀙B i"iB	E  
ZhAhF1F (H  BFIFFQO@ KRO@L" OCoCoC "OCoCoCQEr) =CEF%ah; * F9F (66 #BFYR@" )oCoC" (oCoCE*YhY =CEF%ah; *0F    
 8FK{DB
M}D(FHbhxDP"@"@(F!`8@
w8   pFHxDfK{DS%@"hC% 
&p F(E`` !!a`L|DHxD Fp  > R -CUKF F'K{DBFE%@
W pA ̱hF X L" qa ta *$$4aa$4ara 0G3N5  p
2@  di! 0F  SK-O{DBFFPHxDBiiB)F5FF7ihhhBȿ0WEJzDB  1 " C+ B75 P1 %VSOH
	OE#^L#̱EOE`1|?R\FO VF3#\OE

 #3E	EOH P2FaE  < ,aQ- * f
 X
 (
 F K{DB!Daa 	 -GF@N
F~DB>HxDB"B"Gaa &#F&,FF`h1IyDB!i *i #`475UTOCI2 .oBoBD bFOC""loCoCETk+ -oCoCFV3 ."[oCoCB 9R= +a    -CF,KF{DBOOQ!i@h	h	0m BF"HxDB 5  FB 0@E(r!i3F  #h CA;RrE `C	REC>.a F,F F   8FKF h{DBЙB,`8
i0 8@8  F KF{DB9i  #h3lNC@B @BhBbhPFHxDB F<Ff#i   FY<F5%aNa F   2K-A{DBFFZ.JMzDR% "FL)ODD8F @@q }F#HxDB(F%F8F*0 # @#`<FlD(F!FF(F=Fv'h / F!F@E(FEF
HxD  `F`
HxD(FN B   <         ' #-O-FzDO 
O KFX
hxF3h  (-)%F
+)F
%x - Ä6iXh0i) F"yDh"(FyDO 
|,F n) F"yDxx(+  F+)*  * 0-`xF00+ + z'	 &	 &
%3F+0+ܿ̬03/Fݼ9 !FFf.Fh2 +QFF10:FЬ1/LF !H05l? O
 4, ,ؿ   dB )i)M)
!-
$  F2 !FF0	, #FeF+F !FFEFFP%	 ( ԃ+м-   $P 0	,400FЬ1	*ج0 
$0dF / Dl(9EF FX FFF FO  F= )@|	 *LFvzg +FF-+F#	+[0 j@D
R+a;@;[3->ܸ  N)ݸ
OK8D {';(% E'KD  kfK [dk[6"IKyD ;[ /\xK:D i[;7 𣀱 &5FF7FO 
"!`
	 ) 0K #D	 K%[3R*H[T{K=xDI  lK[>B_FءBT{زO:YX{BKD Kk[3D	+K8 'D &5FF7F%
 {h7[+|D  {hK@K[4x[ek@kO 
O ""` /@KZO O
 	!' & 6B0FNI~DBF0"	aCa		# 8F
! 0:|3KEF	 8 
 O			 8F
!		0:cFE۸  %  ۶  xhK A
F9F)K
!F %
(r +FF  opE3F6BF1FaEaF ) [v(FOIFF?FHFF +HFFwF"F4 .1Fi .(F1FaFHF #hF`)F (A (@k @g +@b!0FA)FF (DV  |        ַ      ^  :  
      X           B+CI#pBѺ?ѬI

Fy + BO:
oSo[
  ( J3: ;[:@+@+[?HxDB)ЅB'0F(F*i3iC *Q^^qFA?/p͋ SF +ѻ ?N̋( (aH I  H^I_K B*ѫT{KS+K%K2TH\I +[2 cE
OKB2?z0O:IT{Pش̋	8ɛɛ
IJJI [07KB#8@)  p&;ԟ%#HF(F0F
HF(F8F0F LF`
 APFPFYFL4       5?55  ?5?     r  |-O-	 *!" D`  `KJ B,Bt`*-M}DM}DM}D	!(FI0D`EF ք)F + фx@$` zJzDBF 𵄠IyD + a` 𪼰H
VFnS+#C#p5GQ &A@%oc
E3G		!@
}M  jg5&S0+s+C+j+klK0b Z!+;++ո[E+
:{D  kk
:" #
}J O O  D( '  !
	*%* % %)$ "  	 +!F$ "	 
3 +FO1% "F#O3 "F#!	#	F #  !0I E*JzDB F[ 8 - 5 [U
 OD [	# #IyD3  `(?aCoc?yPD?<sOu  ޭ  ح      n  t  Ľ      f  Ց K%[3R1 *K     #yD ;	e{yD kg{3R1 *gKK #ѱ չ  *@
<3FkMFF{:{
Ps:q ȁG nj ;5{D kK k4{{;0 FqǛ vǫ B:''{iD  +]"k+*0BqѶ ;0Kk3@[
FF:0(k`[ (iۺf	, )D ڹ O @1MF.;;$(BD.+JEFK0 n%1++ܴn+@_r
B0!

pFFF:9)xHp!/2@ %:+	 3B
6=F^F	6B۽
7F
  "^FJF DD=F^Ff 	ݰEFF / -
)F!FF Fby F F9F
F 
 /F9FF(bQO@G' ' HxDB
B)i  ix  #
 )F  #3DD  FYFF (FAFF F)F ( F "
!
:aF*
! "Y )ݹ !(FJFHF F)Fo (	o
F

1&k & +  .1Fwph1FG
8F !W	)F F1F8F 0 F,(FFh8F FF !FcR@9+ *	1 )ҹ +_F! FQ)FF (9/	1CF +ݻ99 iCFtFBF
! " F
! "BF0FF
! "F7| F)Fe 0 6NE F
! "xF    ȼ      4  *   &D! F)FF (B1"

pAF,F99*PpCF80)(Fj.B0F F FBO 
0  "p
`*`   F  SK-OFRJ{DFX;FhFF[J#FPx _ *--[O+-F$F[ .x.r%xx-X-hex&4 1Fo IO IHFvHFF1FF л Ŀ 	   F0	)
F
  Q_r1W"7"B)B$и KE
]E"!O C`O0sC[KE
]E"%o C`O0S [ g`0% .&0-щ0-
&F n  𵂱
M #}D\\/]]Bи43B  F F    !
" k0_pG k0MpGKJ{D0ðXF+hAkOr hl F!FF N IFyDHOqaF >	I "yD8A)hBC0  '     (o @iF hF #8'h) O0HxD  HxD  pBLFBDBFxBЄB
҆xB	ГBx3B0  p Fp(FpK{Dh
hG   K{DhJhG   K{DhhG   K{DhhG   -CFP;*NFY~D  F0h ,> (|F "@"hBEѣhai#l, r"c"# 4LE,h GT )lh GT? +ѩh!MFpY G Z  Rtd  Q   Q   0P     / 0P       /  P  
  Q    / /    0: Q  
 Q  
  Q 0  /99A- @P  
 Pyj   ?  3  Q VP  	  τ 0\   V_   
  0%S%  
p U83  
    ^	  0%/  2τ  \ UP     0 P U   1  P W_	W  
 ? ^  
/   2  P U P 8   1  P U P # p@- @PM+  
 Pi  _/0B_  U R  
   M Ѝp    0%S     R  
0E  0  Q  U
 P _`ϔ_  U ^  $ @- @P  
 `yZ  /   2  P U  
 _ `  0&SP80  
/   2  P
	W  
  Q  
?   3  P V `#  @- @  P0>M 0 0P	  
  Q      
   R     / / / phBBhaEӀh (pGcBaDaB`K`K("J`{Dia V  HxD pf  HxD pV  FK  J{DX`HxDj    -OO 	F waF0h		hh	+@
  DBch (@#(EhiB_hiBТh(iBhB `` vHxDci;#i 0bFXi ( (iB iiLU, BE,0*iB#ih! h`*iBiBaKa +a!iBaa`iBXaaYFN`!1 `u_"(OwB#آsR DC   11(  A "!ohaLLE.@i` *U.0R      F_h'AER 9S!  (*iB?=C!@a``
*ihB2B/````7F .hB?@sE, +b  -AFMh h0F)F (@J!&iB<eiB O$؍h(hEEеBсhB@́B%&h& %`r@EаBhB@``fhiB
ЏhBhB ``HxDHi8i  FGi  /i  /ѴE p -8iLT,pBD, &iB  fh&e`"&iB.iB(aha (a
iBaaMiuBEaa	Xh -Ѣ`  X` &iBXh@𴀧iBhaci`B BH`@Qea`eiB	ѣhaa`B H`P bDO$؝h(hEEеB!hB@B##h#   `i@EаBhB@
``]hiBПhBLhB F``Xi8i  FGi  /i  /ѴE+ p -0iLT,pBD, &iB ch # ``&iB
.iB(aha (ai%Baa[i#BCaa`iBPBK`	Ѣ` P]`BK`(%"h (3BC"`Fh iBЮ````
'а?#Ҡu/ V0 DE.33"  C   'fh %a Ma7B
a LD,>Cf`a(T,0E 3F]h%B@ 5S%` ."ibE?oC%a`` ihBcB````` #a
HxDHxD	hB?KL	HxD	HxDhB?@(  ة  ҩ  ©    7FO3   ""#!F*CFJ!FzD(F>   HxD p ( 0    8LH|DxD#h+( VF8HO2O `xD#a`a`!aa(FU2B,#`$  $
HxD><	H	I
JxDyDzD( 8       f  -CFJK
F{DhA !xi )(5E {@J FzDhFoѹD	1H9F8EqhB_0hs BcEVӛh +K2h)F(K&K)HBxD ER   FB %hBF  ?иB=HxD-qhKs`hBi F!Z\ FAhiBO3a O:F0Ѭ %&      X  -GFGhFF'EHxDdEn@tf F. j0BJzDh@@u%hIyDJh9FPBfD@`2F<B JDu"c`e #J`IE<yD
iB8aHxD1vDaB@@a<Bӊ*@7EB>Cf`K`]hE]`iBhB@	L>CAf`Z`a`CiB+уhB+٢LC >Cf`P`HhP  H`IyD`Ja"KLC{Dg`QhA P` "`Za ɀ"
EO
)ȑhDh	(	HE`EhB@𳀃B	iK {D h! `lKEcE𦀟hB@```hiB
ЯhgEhB ``WHxDki;+i 0F_i	 /i	 /E p (2HOL	DW)BG)0+CIyDiB#xh y`?iBiBaCa +a(iBaaiiBYaa*ch

 BA
c`BhBA`4 @BNf`K`Xh@ X`!HxD74HJxD!FzD
K` $BjhHxDHxDhB?fg F       z  n      p  J  0          8      ;-O{DFhByD!,	٦p &$ (Ao
,4$ $h;{Dh !(4hhB"  `iBhB`` xD XhB@? )tO   wBGqBz"W	"aD&& &@&(1hhB ! `iBhB`` D4q`B P``ձh:O{D h(0Yi=B=C`FhiBӁ````4yD`La s   q
 ! w	
&

  !  N!@ 
L1S!KhF#
Ah!F
E,FFRFi (Hi (yDVEfEhiBзhWEhB )``p	xDnsi	;3i	 0F_i /i /E p )3,y
LDW+ BG+03	xDiB#
(
y`?iBiBaKa +a1iBaapiBXaa*
Bq`ChCB` DB t` L ݱH'|D(1ci=BE  `Fh$iB|````p8{D` A ҁ\h4$~D  ȁaB"
&в?"Ңw;PC 33$C "7L {DS 0S*V  'O fFXh   BFF (WOxXiS(0B`FF F (D .Bo
*^B C#C	 fD "V " D@" @7L2 &{DS"0FXh B(
Fi8FYiFF + . #xDhBFE3BhiBзhGEhB ̅``xDri:2i  FWi	 /i	 /E p (3vL	DW)PBG) 2xV}D-iB"*}`=iBiBaBa *a0iBaapiBPaa)	
Bs`Hh@J`ADw`]`-YP'xD h(2
B
CF`h iBӓ````{
(а?$ҠrOG PD@77!  G   %O  %zDa]a LaH B'0P`!(R' E :FUh%B@ =R%p /$yDi`E?B%0a``hxD iB
B```` "a6@O44{DhB^i*0`XaBPC`  !`Ya2@q`ShC P` hB {d~D2h
4{DTxDhBNh *KAhaHB@>!E;ٴE9إB7(F2F2 KBPr`#K` !4B{Di
ByDaxD1!QBQ6@*ODh/pB B JzD1KaB@B HxD!Q8FBF@&  iF FHxD 5@Fl?F ,K{D^hqBuBB   =FKB{Da@IB 8E@	E (F>@EF@>MN}D~Dhh /EBH@B (F$ `EF@ރCѰ0BҹK 	{Dh/KB IBE
@F0EDHFHxDp?m/FM}D(Fd8FF  F(Fq Zz WBT(B@NO 	MI}DyD1:!B!i-iBґHxDaI@sHyDxD
haqBb "Бb 2(1 *``1F(hshXh vE9E
эBӵB	zH^`)FxDh-vIyDDisB 8ah + hB HE@Zh`_`XB  FvD ZB 
3B Dt`	ZJzDha@`@Z`VL|DaiBѢhca`@Y`PQh-@!O/ 򘀕h(hEE$iBłhB@B	@M!}D,h$)`AE	;L|D$iB𱂌hB@`` \  l  6    (    ^  3      N            {              Z          t  l  ,  0          J  h             p  D  b        |  h      hiBЗh$iBhB 5``"|xDٺQi9i GFLi ,i ,LDGE<` -48DL	|DT)pBD)1$tD?iB!eh%a`$iB,iB)aia )aiB
aaTiBLaabD`DUh@P%T`Y`)H%xD h(2L`Fh iBӓ````l
'б?#ҡw:U,DB77 G !JO $zDa\aLWhaLB%0W` )R% L  *FTh$BI ,R$P -ѸHxDiqE?B$0a``HhxD iBB```` "aH)FxD  '/
JB1F
|E8F(DPF
r! a&qБ8[E~`ӨE BPqh! p`k`(؃I&yD 
h(3LF
`h	iBzHxDy````s
'б?#ҡw>QD@6 6" F !aKO  {DahaL_h(aLC.P_`)S.0H   3F^h&EI 0S ` .KJzDiqEC Pa``
EIhyDiBӂBӝ```` #a?K{DhB0i`2a@S`Dt`6( &!`5IyD!?pp:hB?ԨոhB?12*N~D@!O6bKBgO	h?hHxDHxDhB?ȭq" %0F:      z      *        H  n    X  @  &          -A(F&s3B@   BFo?B%`
)(O F %w<HxD1t'B@ pH (rB<@W<a )W\R  ah @Na`Xh@Y`W< @AG<AhAC`H)FxD%Fkh# BLNk`B H`Xh@ X`
HxD	J5zDpb(F  (      F ( sxD1T}D.iB6 p (W ( )! Wdp1 F1F (@!B
DhiB /'ؠh(h`EаBhB@
B
L%xDh!`vaEбBhB@``jhiBХhBhB ``xDai9!i eFOi /i /ѵB/` (<iML}DU,pBE,)M}D-iB!hh i`"-iBiBaAa )a iBaa`ipBHaa	Yh (Ѫ`!Y`,BnYh@j@ƀHxDiBhaCi`BBa`Ea`HxDiB@X !2SEiBуhDa`Ba`PG!.)؝h (7hB iBOhB@KB	ѳK!{Dh `rB	ЮHxD iB:hB@6``chiBОh iB9hB )3``Yi 1i 1h0FOi /i /іN~D6iB` -4iHLxDP,pB@,)N~D6iB !Ch#A` iB(iB)aia )ia Baa[i#BKaazHBPxDc`AiBт`! PX`Bc`(pI%yD 
h(3BCF`h	iB````
'б?#ҡu/SD@7 7" G !PK%  a{D`aL^h a7B>CC%@^` )S%0H   +FXh EI (S P -;JzDiaE?RC @a``5IhyDiBEBB```` #a.HxDjJbZ*H!F*JxDzD J`(IyD1p@w#HxD"HxDhB?HxDHxDhB?Ԯ ޢ        p  ^      h  R        j  D    d  J  ,  	w          ڋ  ԋ  8
FFpE  C FBO4 F FF8P !"F(F8  FF F@A  %`%!"H
)xD%%!)F"8FFHxD1 p ( %  pF
5 FF (V!""1FB("Fs0F(F    (F_pP +  +""pG  pGHxD q u  0o   "D=!FXHxDhG  % OR 
F6!F*F @     K{DhBHhpG1
h *FpG  !K-C{D JFhX`\ a !iFU ` {	'b" ?8O 4O 4 	MO}DDc(b@F H"FIF@F P !(F*(F`   z  @  J8zDhFM`  !}Dh`Hah+X`hHxDKJ{D` iX` 
K{Dh` G "$  "8@0    kt      pM}Dh3F $ 4V/ * V9<Z ИG ,H)Xp@ p  
h #p
&F2%x0=	-S `Fp-OF0FFdиiиoSBSx	иXиo'
    W ,u 9dBeE-"+17FFOz( F)FJFSF F)FSFFJF_EF
Fм	0 
XOaOA
 ²+TѷB_E0#; !9p]p\rT1U?Bӽ𵉰OFFD8FIF0 * h( F"" F AF h+ F (F 0FyA(FsB	  r  -AFFFaFhh6еB.F9F2Fh` h&`O  -ܽKFJ{DFX"+hR	,&F&8F2F ,)hB   K-O
FI{DFNF[X "~D
.
h
F]#%+ 6B'0ݩ8F
'  ( 8
O 	FJO
& FF\PK
"% )
8Fi0+-+ +++Ѝ'00;	+
(FA(-
r
'FO8'.)(F
y
B
.\'`O3'l)h)'t)z)"
\h(^!

!
\l(^!
 !
Z
'
J
'!'s&$h ,zwc"h !&-, jpx#0 "h&, !-0  #EdлiлoлuлxлX6ѻoZBR   N.wvvvv&"x"& #
#h&F4$ ` F@F"F""FFF ! %%!  ,- (JOqzD&F$L|D FF AH@JxDzDEK8F  !0!8F!FZF]EJ8F  !0!u4F3hB .  q  o  'n  ?o  o  -AFLFIm|D &eX
AFF(h`f"F@F9F$+hBR
m ,  S+@pG0 #
!
M$}D0	I(FhAF  h(" F @0 h+ F 0  n  F HF F@FO3" "#E  )F F0N~D0hбHxDh1hhh  F9F@[TJ	HzDxDh`@U j  ^  @  :  K
FI{Dpm]XF
A  1F+h 4I"F yD F$+hB
mp  }m  Q FFvH!FxD 0m  Q@pGF	F% O4#`$  ,CF
"
 1F"h F b ` FFO~"  OQ`X```aXapG	Ѳ _
A`` F F
HxD	K "b`{Dh ` D`IHyDxD`@   ־  Ⱦ  ʾ  p?XhpGF!F]F( `O0pF
L|D h P `M}D,h0F HC
аB #`O0p(` Fp  t  F `O0I #yD3TLBRh *F ژ  FFF bh0F)FF8F	JzD	J3FzD $B,O5 %("$ I`(Fk  k  KJ{DIFXðHyD+hxD.FA FP9FjF .( 	Oq"F w (O5 F O5A(F2hBXC\  y  y  KJ{DHŰXxDI#hyD&FC FO $D !Or  !p9F
 (4Oq*F . ((F  $C F3hBE  x  x  x  d(  3^69<a^CTccc>@CQ33FIKaTNaaQQTWY[^accpe OTqOztn@4kd$i$gOtdO4ao D^$\O DYo@DVOdSOtP$N$LO TIO dF $D$LB  !L?O47HxDFN $~D|+01F
 6((F ($"HxDHxDF
 &!`O4c$4(F Fp 
 Fw  0w  w  'w  p0pG'K p{DF2	%`O5?!I[XhF
e  F F!j1iG5 (O5 i"kh@@B#k  ``l "bd0h #Oq`c` F2(Fp̚  -G 	-KFF{D 'Q+JXhF F	9=FAfh F hB !)p" p / F7F1fh NE(NF
!2F@F^ah0 AF	 2F(F  U   Fb`(F#`AF2F		 8F  FFPM}DF $2ZF (8FOr ! O % $$`
HてaJ)XHabXJb)XbX#bC F !" F V  
KJ{D-A &XFhgh0 +(FGCT5?$h ,0F Ș  *K+J{DFXhbP	!`@@O0
#kh@@B k "` i !a`,$ `B#i F bi  `SBaai F`    p   p
p/  ` p   p
p/  ` p   p
p/  ` -p   p
p/  ` p   p
p/  ` p   p
p/  `w p   p
p/  `o p   p
p/  `g p   p
p/  `_ p   p
p/  `W 
 -p p    
p/  `M [p   p
p/  `E p   p
p/  `= }p   p
p/  `5 p   p
p/  `- p   p
p/  `% p   p
p/  ` B   p
p/  ` Cp   p
p/  `
 ~p   p
p/  ` @-Cp   p/0  p   p/ p   p/
 /ɲFBF	 , Fx3BH !xDp  FZBH !xDp    Q@- @  0` S  : @  Q  * a  R s  @- p `P @P  
X p`  PD0   Q  @,  @(0 @   |  p  L  D   iF 
J+ZC*B
  MbP?@B   !FhFb ( O0 `K{D`   pF  p%i -Й&h%`ai !`j)Fi2FG (ܢB@ O0p6- .
KJ{DpFXhF	 FF(h F|0Fp  Kp{DF(HxDp@JXhF	^ 5O5	"` FF3h FP(Fp  		)  pG  BKCJ{DFXh !a` m  3	#`[
b F[ (UѴ`.a@"khp@`E#k  k`a`k"`!i Fo@BHoRNxDf	, C	) F!ibicj!`iG" Q (``L   ``L@O0  L  7 )o A!
 9OB	 $O|O~*(Hp@pG  pG  OAp %"  	WTk1F"F 
HxD p@pG-OF<M}88FyDX=h˕F((Xh
8O 	OFFxDyD	 hgYhB6`h73#`Aa``h (#h
h  Ax_ * F (%)]ZFFO
 ZF;g+-e+G+ 9+
0+%+E*+\ + D+  E+@X+ L+QO+@~c+ ̀ [+@p+ Ȁj+;h+Ki+@n+ fl+@It+Sq+Ms+@fx+_z+Ku+@V`h (#h E@I FR (:bhY7!`P``RFfFRxd*#i*o*u*x*#CwSxh+FFmSxl+FdFaFv^F@[80VFF fO	F fFFK##Sx^+2O x2O !( 1F ;" F
F ZF-)])Б ](ИB3jF(BFF v#JF v #FFII O	>q?-h/pr+heF q  	 0-h/`h`*h`h ) ~ FyHxFO 	O
	#ah )ݲ% Fj (R`h7Bb` *1!` FY (@B!h
x hPx _ *;+5    Os &ch!hCE
 F#`, ( .@ FD``"`(h!BF#F.7 ( 

5F O8vah62"`HE``b ( F[ &"h
 0 + .P.h+D5FahH``˨E"`bh * FBѽ"h
   (Ѯ  !

)pF# O8pah62"`HE`` ( F &"hhxYHx _ +п.hD5FbhP``;;E!`ah ) FP!hhxZx ò + "*p

eFw1@JB(FJF6Z h8x9+	8+(0+++--+Y*X+/أA)Qa+Nf+x+J" F FO	&6'	1&PF!1
.+&VF V1$ _JOOaDE& FO	<FchYa` )0 ` F 2Yq	JE@!Fx(X(!F8l@À a JaFJF 5JF   2 -h r  *h*hu1p`1@JB(F1F62 h8x9+0+-+.+++3E+e+.&F_'&V O!&F<?&8HF<Fch;c` +0 ` Fa29s#J!F8PECF;3e(E(!FA!F9Faш JY*hA0  { z

eFJGD O:h* FFO:PF˚hB
M} p  r  r  K-O-FJ{DFXKFhF;Fexв (ѻ-O
+F?F . .
9xx)X)@&73+5444444444)  @OO2o`CH& @OO2opC<
& @OO2pK1 @OO2oxC& ПbcQ2F+F+FQF2FFF и   !C    $ %0	)؋F	hYDWW!7!ENAIк !ДBu۝BB
E $O E"#`O0!aCEMeu#Bs۝BBEO4o E""`O0aCEeDEu q9 'O  "O`CO  "OpCo #yO  "OxCsO0 .?(0 0* F)F        4333333   iK-OFhJ{DFXKFhF3Fexв (Ѽ-O+F6F / /ѕ1xx)X)@'6
/)//
"O:opK#'"O:o`K:FO0O1+F:F+FFFO0O1"O: ! $ %0	+؜F
h Cx0W 7 E'K"ЫEE]ETEєEO4""O1O5`cC0EEEu! )dBeE	9 O0 /t0xd0?a
' F)F~  FF  !"FH :AMVSB 1@н  <@pG<HO!xD:L|D]!"  (Q&4HxD zO4S &(F D ( .`	Q &#*s  $OFY:`"T@#`F B
ЁhJBhKBIB9h>O4L"|D"pK ${D`fO4(Fh+ѣ F PROPnvOCE    _  H  D   *iЁBg.A Ё *  F #\T3B	 #,FXP3<ѫ > $]U4BA Ё *  FcdB 	\T3Ҕ

FF#FV};E}ocC
SRB T30@- @  0M  8  P0#S8t 8@ 80   8   PP  "0 p   
 ʠPt<Ѝ0萁  0@-PM @  Q  (  h  U 040  
   Ѝ0   "  pj       0 b  b  @- @ P    0  S    Ì0 S      0  0 S   
< P`r`pQP 0(   P    l  X     @  0@ S  p /  /p@- P `  z 0  S
    @#0 Sl    @E T  P 0 0C   @,0  pp @a    P  ,  T  FHF)FxDF"F~Z  8FCh  h)FAh C
 h(```  8 (hchBY`a`88FAx F8 !`A``  H F8OABн@  8 F FD(FF F(F88FXP[, Fy(F8@8X#`O08  pFFMhHxDK{DBjHxD &1F"F 0
 $h +
H$xD)h&` Fp Ν        ^0HIxDyD  pFM}D(hF@!  F(h!F0F!F" Fp  8Fxr*w*a*Ob!`  8 " FOr$ ]xb-3 3x+-3$ xb-3xx-3Bxe+B ""C
`8F N
F (F~D !9`iF  (p@ QKBS:`O`(` O)`d	Hj3XBO `O`O ` 2|  MF
}DiF F8FwXNC "`"a`a
K8XUP aga`F `0  F
C {  
 -p p    
p/  `{
 p   p
p/  `s
 p   p
p/  `k
 p   p
p/  `c
 p   p
p/  `[
 Np   p
p/  `S
 p   p
p/  `K
 p   p
p/  `C
   P-C   P
p/  `:
 ꃉ		)  pG  -OFkNFFSC~DFFF ƀgH7X9h Fbh * #c` 
 * k +@\IrXhX  `` :8h (  F0 c:hA@ FN	#`
Z F 禉`&aࠉ@&k0h@@BF#k "`5HoCAoQBxD%	& @	+ FFFcjIF2FiG! \F (C C@6D8h (2 Fw.ZFD#h  ` F+`=h Fc QF lFFFHF!h^E2Fj`h"ha`&`FO5(Fz  -GCSNFF~D QKXh	OJXhF F@ P FO5{
R FQ (Ѧ`&a@&k0h (=whahB1@BO`z (0`Ocs`BA #@ 0 `OG	IF}F ( 
1F:FPF k @#hY!`\bhPࢉ i" H#hBB;#` h@bh!c c"F3`q`B_"```   F(F @x  K-A{D8JXh,FF{%F=/2FEbEО\ .<s`
/FU;K "F#F3x=+Fv  S "@pGKEAJ{DXjF#h	 !	"h 8  B
 Hv  p   p
p/  `.	 S @pG  6p   p
p/  `	  Q/#  : P     
?o/o C02   P @  ! P @  !!P!@ #!!P@ !!  P#2! /   //o b0/  P  b   Q
@-@ A/  Q0  
  aB Q  
 0 0`B S      
/oo  B     S0C  ! S0C  !!S!1C "!S1C !  S""!  \  `B/  <  `B/  3 //o b  \3  `B/  P#   Q
@-@ A/ 0R b0AQQAQ/ 0R bAQ0A/!   1#0@-@P 4 0 y  
JZt Pe  @  0!  "#  0!6 U0Ơ!  
  p 6#6  
  r 0 4W  
@D u  Π2 S   PE  RΠ#SQ  Z |   Q  :Q  :` l@*rU  *\  0  @D  1   ?o 00C  S      b1    b0@T0@@T
  @  @  d010@d  d0010  46#!@PE  
 4 0  
  0 1   0ʰ   #0E208Q  0 0  FV 10  0 /0@-K2@ P   0 /0@-K2@Q  `B  a43!/  23/0@-MQ /0@- P   /0@-Q  Z  p K2@!˰\
   ! 0bà01@O  S  R    Q  P      M `-  Ѝ /  S  R    Q  P     M `-  Ѝ /@- K@-` @Ppc 7' 0 T0 @-` @Ppv &q'0 T0  011 /O-  Q `  
A p	@O@Q  T   
00 V0  * T  
D @  V  pP   P    V: <0 P0  
 P  
  P            /  /4n   0@-  @   H   
s    m  0    p  0   o  0 #@ 07@-0  @PA   R  
    0  P0
  
     0`10  PP  P	   0 SH  0 0  
  S L 0  r 0L L P0 0  S  S  P 	     c   >tm   0  S 0 /	 //G- @p MM `        H  W
p	p PPp@0
  H0	-00 /3/2 L0 @ 08/  P    U   	-p Y
 Y   H  	P Ѝۍp@- P@ @c `P   
l@0  003/ P
 P @  D /<0@-@0 P@M 	m        0@2& @8  P
  0
 3/ P p

  W   	 ߍ < @   jp@- P`@0  V@0  
 `  0  3/ P  
 P     @Q ]     R   < @   D/@- 0  S 3/  Q  
 Q  / R  S!  00     /@-  0 00 Ѝ   Q  
 Q  / R  S!   00   /@-0  #  00Ѝ O-`LP$M S@p   P  $0 0	   Z  "80( s0  Q WP8P      ZH 0P0P     0  0  R      P  # 300 S  
  : S  L    W      P  
 8 P     P  
  5  P    W    P2  
  q  
 qX  	  
 /0     P!  
    
e X 0$   , =  ;   
 Y  X  (0 U      i   e q  PQ     W$    PB  
0  X0  S  <  00W  0      P  
-  X00 \ 
#0  $0(P F   0 
 0 0  S  (0 U   0(000,40 0	 S	        	 0  SPQ        X; Z      Y   
      P      0  	 $Ѝ<h  00 0<0p@-@0 P`M \        0X0
   P  
	@  X 
 X 5/  P 
X 03/	 P P @X c ߍpE- @gMP Q                 S  r8  0`` S
8   
    R   S%huP   R  S q V 
     X   RB pp S  X   V       
 S H              W  
 0   
 00    Z  
    W     V      W  
   Pf8   U0  P1    cQ*1  W  
 V ! 3f∀  @    R0  Z0  Z80  
K  B   V  J    W<  
 J  9   S5  "hrP0 S0   0   
01Q   PN   a80    f  0S*Q 8P.     R  S   0   
002K  
 I  8  0 0 S8 
 8          gߍ48 8 - !/!/ / / / /!1AQaq/!1AQaq/// -- 0 -@HЍ/ -- 0 -;@HЍ/ -- 0 -P@HЍ/ -- 0 -0"@HЍ/ -- 0 - @HЍ/  0  R	  	   R
  
 B	        B   "$  / /@- 0  00. Ѝ G- P` p  P @    W  @0 @   @  0+  q  Q   @@0  
 y0t@  Ti	 !  0  S   D  	P  	    *  0 "(]  P	p S  
0 
 S
    0   
 0 S
  @     Z"t@.  T) 
   S<   P   r  P
 0o   P   
 0  @ `    @Z0  ?    P   L0   0   0  S@ @   ' ' S2   P   30   0 & P   (  P
0~ %  0  S  @   
( P        0   Pg 0   0 &  0  S[@   '0  PR  Ѝ@-L0  $     0
0Ѝ @-H @-L0  @- @-O- Q p P    p  P p  \    r 0P  \
@`   Z0  ?o  SC  c7"c$xt  )8
8  S `!  *0`@  * S`@200by
 
   Y !  *@@  * T@2Ȍ    Z    @?o  Sd `2  
C c87$ 
tp `
(88  S !  *0@  * S@200`b
x  0
 0 0  Q `!  *`@  * Q`@20gh$ t
 p
q)88  S p!  *0p@  * Sp@200b
y  0
 0[ 0  Y !  *@@  * T@2Ȍa   \]  o  Y   X
 W `3`##	`!U  *S   i:A8!I7 $ t`^  0 0. 0(  Q 0!  *0@  * Q0@20bx E     0  Q !  *@  * Q@20`fȌ,*(


    (" 8 ( R   ``	S ``  V  
L `   `  U 0  
  r 0 ЍO-  S `@ p   R0  ?o  SC  c0"s$Xt`
 
 '88  S !  *0@  * S@200bwp
 
 	x  W 0!  *@0@  * T0@2    R    @?o  S`d P0  
C c6s8$c	 t	 P&88  S !  *0@  * S@200Pbv`  x 

 Q P!  *P@  *
 QP@20`j	X$ t b'8	8  S `!  *0`@  * S`@200bwp	 {	 Mx 

 W 0!  *@0@  *
 T0@2^   SZ  o  W   Q P P3P# #P!R  *P   gW2A6G0g $t
R  
 # &ȠȌ  \ !  *@  * \@20c
v` :  
 
  		 Q 0!  *0@  *	 Q0@20i %(X("8,(	 R   PPS PP  U  
 @ P   P Ѝ
2 xGF<xGFxGFxGFM  xGF)         Android            
                     
            
        
                                                                                                                                                                                                            ?&_                         $ $|   <$d(,40d$L($
(l,0$(|,04\8@"%%
%_''$(`((P)T)8** ++`+ ,,0d3789X;|;;;;;<<AAtS TlTXU\VXdVV<W|WDXYY0ZZ0\H\T]^<^^_itluuuu?$vHvXvvvvvvw4xyyzz{{ |P|h|||~Dlh(`L<$tܤPܥШ,<
 \\t$?? 0dԳ$Գ(D8L$( dv$8lD`@bDt	8   , <,$88t%t   `llptx       %s %ux%ux%u bytes took %.06f seconds (%f MB/s)
 %s %ux%u bytes took %.06f seconds (%f MB/s)
   %s %ux%u bytes average %.2f MB/s std dev %.4f min %.2f MB/s max %.2f MB/s
   %s %ux%ux%u bytes average %.2f MB/s std dev %.4f min %.2f MB/s max %.2f MB/s
 cpu took %.06f seconds
   cpu average %.06f seconds std dev %f min %0.6f seconds max %0.6f seconds
 sleep(%d) took %.06f seconds
   sleep(%d) average %.06f seconds std dev %f min %.06f seconds max %0.6f seconds
 %s requires --dst_str_size to be set to a non-zero value.
 %s failed, expected %u, got %u
 %s failed, return value %d
 %s: Chosen options lead to no copies, aborting.
 Usage:   micro_bench [--data_size DATA_BYTES] [--print_average]               [--no_print_each_iter] [--lock_to_cpu CORE]               [--src_align ALIGN] [--src_or_mask OR_MASK]               [--dst_align ALIGN] [--dst_or_mask OR_MASK]               [--dst_str_size SIZE] [--cold_data_size DATA_BYTES]               [--cold_stride_size SIZE]     --data_size DATA_BYTES       For the data benchmarks (memcpy/memset/memread) the approximate       size of data, in bytes, that will be manipulated in each iteration.     --print_average       Print the average and standard deviation of all iterations.     --no_print_each_iter       Do not print any values in each iteration.     --lock_to_cpu CORE       Lock to the specified CORE. The default is to use the last core found.     --dst_align ALIGN       If the command supports it, align the destination pointer to ALIGN.       The default is to use the value returned by malloc.     --dst_or_mask OR_MASK       If the command supports it, or in the OR_MASK on to the destination pointer.       The OR_MASK must be smaller than the dst_align value.       The default value is 0.     --src_align ALIGN       If the command supports it, align the source pointer to ALIGN. The default is to use the       value returned by malloc.     --src_or_mask OR_MASK       If the command supports it, or in the OR_MASK on to the source pointer.       The OR_MASK must be smaller than the src_align value.     --dst_str_size SIZE       If the command supports it, create a destination string of this length.       The default is to not update the destination string.     --cold_data_size DATA_SIZE       For _cold benchmarks, use this as the total amount of memory to use.       The default is 128MB, and the number should be larger than the cache on the chip.       This value is specified in bytes.     --cold_stride_size SIZE       For _cold benchmarks, use this as the minimum stride between iterations.       The default is 4096 bytes and the number should be larger than the amount of data       pulled in to the cache by each run of the benchmark.     ITERS       The number of iterations to execute each benchmark. If not       passed in then run forever.   micro_bench cpu UNUSED [ITERS]   micro_bench [--dst_align ALIGN] [--dst_or_mask OR_MASK] memcpy NUM_BYTES [ITERS]   micro_bench memread NUM_BYTES [ITERS]   micro_bench [--dst_align ALIGN] [--dst_or_mask OR_MASK] memset NUM_BYTES [ITERS]   micro_bench sleep TIME_TO_SLEEP [ITERS]     TIME_TO_SLEEP       The time in seconds to sleep.   micro_bench [--src_align ALIGN] [--src_or_mask OR_MASK] [--dst_align ALIGN] [--dst_or_mask] [--dst_str_size SIZE] strcat NUM_BYTES [ITERS]   micro_bench [--src_align ALIGN] [--src_or_mask OR_MASK] [--dst_align ALIGN] [--dst_or_mask OR_MASK] strcmp NUM_BYTES [ITERS]   micro_bench [--src_align ALIGN] [--src_or_mask OR_MASK] [--dst_align ALIGN] [--dst_or_mask] strcpy NUM_BYTES [ITERS]   micro_bench [--dst_align ALIGN] [--dst_or_mask OR_MASK] strlen NUM_BYTES [ITERS]   In addition, memcpy/memcpy/memset/strcat/strcpy/strlen have _cold versions   that will execute the function on a buffer not in the cache. --print_average --no_print_each_iter --dst_align --src_align --dst_or_mask --src_or_mask --lock_to_cpu --data_size --dst_str_size --cold_data_size --cold_stride_size Unknown option %s
 The option %s requires one argument.
 Uknown command %s
 More than %d number arguments passed in.
 Not enough arguments passed in. The --dst_align option must be greater than or equal to 0. The --src_align option must be greater than or equal to 0. The --data_size option must be a positive number. The --dst_align option must be a power of 2. The --src_align option must be a power of 2. The --src_or_mask option requires that --src_align be set. The --dst_or_mask option requires that --dst_align be set. The value of --src_or_mask cannot be larger that --src_align. Unable to raise priority of process.
 sched_getaffinity failed Cannot find any valid cpu to lock. sched_setaffinity failed Cpu %d does not exist.
 cpu memcpy memcpy_cold memread memset memset_cold sleep strcat strcat_cold strcmp strcmp_cold strcpy strcpy_cold strlen strlen_cold 
 (null) 0123456789ABCDEF 0123456789abcdef Inf NaN 0 . inf inity nan Infinity :  heap corruption detected by %s libc_malloc invalid address or address of corrupt block %p passed to %s max system bytes = %10lu
 system bytes     = %10lu
 in use bytes     = %10lu
 stack corruption detected <unknown> /dev/log/main bionic/libc/bionic/libc_logging.cpp conversion specifier unsupported sign/precision unsupported /dev/log/events libc FORTIFY_SOURCE: %s. Calling abort(). %s Unknown error %d Unknown Real-time %s signal %d Success Operation not permitted No such file or directory No such process Interrupted system call I/O error No such device or address Argument list too long Exec format error Bad file number No child processes Try again Out of memory Permission denied Bad address Block device required Device or resource busy File exists Cross-device link No such device Not a directory Is a directory Invalid argument File table overflow Too many open files Not a typewriter Text file busy File too large No space left on device Illegal seek Read-only file system Too many links Broken pipe Math argument out of domain of func Math result not representable Resource deadlock would occur File name too long No record locks available Function not implemented Directory not empty Too many symbolic links encountered No message of desired type Identifier removed Channel number out of range Level 2 not synchronized Level 3 halted Level 3 reset Link number out of range Protocol driver not attached No CSI structure available Level 2 halted Invalid exchange Invalid request descriptor Exchange full No anode Invalid request code Invalid slot Bad font file format Device not a stream No data available Timer expired Out of streams resources Machine is not on the network Package not installed Object is remote Link has been severed Advertise error Srmount error Communication error on send Protocol error Multihop attempted RFS specific error Not a data message Value too large for defined data type Name not unique on network File descriptor in bad state Remote address changed Can not access a needed shared library Accessing a corrupted shared library .lib section in a.out corrupted Attempting to link in too many shared libraries Cannot exec a shared library directly Illegal byte sequence Interrupted system call should be restarted Streams pipe error Too many users Socket operation on non-socket Destination address required Message too long Protocol wrong type for socket Protocol not available Protocol not supported Socket type not supported Operation not supported on transport endpoint Protocol family not supported Address family not supported by protocol Address already in use Cannot assign requested address Network is down Network is unreachable Network dropped connection because of reset Software caused connection abort Connection reset by peer No buffer space available Transport endpoint is already connected Transport endpoint is not connected Cannot send after transport endpoint shutdown Too many references: cannot splice Connection timed out Connection refused Host is down No route to host Operation already in progress Operation now in progress Stale NFS file handle Structure needs cleaning Not a XENIX named type file No XENIX semaphores available Is a named type file Remote I/O error Quota exceeded No medium found Wrong medium type Operation Canceled Required key not available Key has expired Key has been revoked Key was rejected by service Owner died State not recoverable Hangup Interrupt Quit Illegal instruction Trap Aborted Bus error Floating point exception Killed User signal 1 Segmentation fault User signal 2 Alarm clock Terminated Stack fault Child exited Continue Stopped (signal) Stopped Stopped (tty input) Stopped (tty output) Urgent I/O condition CPU time limit exceeded File size limit exceeded Virtual timer expired Profiling timer expired Window size changed I/O possible Power failure Bad system call /proc/meminfo r /proc/stat cpu%u%c /sys/devices/system/cpu MemTotal: %ld kB MemFree: %ld kB read beyond buffer strlen read overflow ANDROID_PROPERTY_WORKSPACE  %s:%d: assertion "%s" failed %s:%d: %s: assertion "%s" failed                 0000000000000000          (((((                  AAAAAABBBBBB                                       ?      $@      Y@     @@     @     j@    .A    cA    חA    eA    _B   vH7B   mB  @0B  ļB  4&kC 7yAC ؅W4vC NgmC =`XC@xDPKDMD      }       ؗҜ<3#I9=D2[%Cod(
 7yACnF?O8M20HwZ<sOu          	 
   
                     ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ a b c d e f g h i j k l m n o p q r s t u v w x y z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                                                                                                                                   	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~dlfree tmalloc_small tmalloc_large dlmalloc try_realloc_chunk dispose_chunk add_segment prepend_alloc release_unused_segments 
         	 
   
      libc    pthread_create sched_setscheduler call failed: %s   pthread_create failed: couldn't allocate thread pthread_create failed: couldn't allocate %zd-byte stack: %s pthread_create failed: couldn't mprotect PROT_NONE %zd-byte stack guard region: %s  pthread_create failed: clone failed: %s        zR |
                 ,       D   D       A     \   $    F     t                d    F        X    B8      @   LBBZBBb         zR |
                    4       B  ;
   ltl$H(P<Tt                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                D    L    d    ~                ʞ     	    
             
   .    @    L    b    z                    Ɵ    ן                    .    F    S    i     x !    "    #   Ơ $    %    &    '   * (   > *   b +   } ,    -    .   š /   ԡ 0    1    2    3   3 4   B 5   S 6   n 7   | 8    9    ;    <    =   Т >    ?    @   	 A   ' B   = C   N D   d E   t F    G    H    I    J   ӣ K    L    M   ' N   D O   [ P    Q    R   Ǥ S    T    U   3 V   _ W   r X    Y    Z    [   Υ \    ]    ^    _   5 `   c a    b    c    d    e    f    g   4 h   U i   n j    k    l   ԧ m    n   % o   : p   M q   Z r   k s    t    u    v   Ҩ w    x    y   ! z   2 {   A |   Q }   c ~   v                ҩ    ݩ             < R                 A ! q& & y' '                        0   @  \ <    L  D A)  H         C  g  ,   Ѻ    k k k     t                          ч  M  ƛ i  M  қ q      ڛ   (     (   Q         U   9  U   y  h  
   h   A          , Ɏ    3 	    memcpy buffer overflow memset buffer overflow                                   g    C                                                               @ g    C                                                 
               g    C                                                              @               @               @            Ȯ @     @  T T /dev/__properties__                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"micro_bench_static  B .shstrtab .text .note.android.ident .ARM.extab .ARM.exidx .rodata .eh_frame .eh_frame_hdr .data.rel.ro.local .preinit_array .init_array .fini_array .data.rel.ro .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                                                  ~                     %                             0     p                    ;         x x	 *                 C          3 H                 M         ش 4 \                  [            ;                  n          ?                   }            ?                            0 0?                            @ @?                              l l?                               @ \                          \ \R h                       0       \R                                lR                        p        R 6                                R                                 R                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @  ELF          (    
  4   `1     4    (      4   4   4                  4  4  4                              '   '           -  =  =  L            -  =  =              Qtd                             ph  h  h  x   x         Rtd-  =  =  H  H        /system/bin/linker                                
                            !              (              0              =              B              H              P              a              s                                                                                                                                                                                                                                                                                    &             /             :             A             F             Q             ]             j             w                                                                                                                                                                                        @         @         T@       __libc_init __cxa_atexit socket memset strlcpy __strlen_chk bind close __errno __stack_chk_fail __stack_chk_guard __aeabi_unwind_cpp_pr0 fcntl connect listen poll getsockopt err warn write sleep read shutdown fileno __isthreaded __sF __aeabi_unwind_cpp_pr1 __aeabi_uidivmod strchr atoi calloc snprintf arc4random strdup errx setsockopt getaddrinfo freeaddrinfo gai_strerror strerror fwrite exit getopt strcasecmp strcmp recvfrom accept getservbyport fprintf unlink mktemp optarg optind _edata __bss_start _end libc.so libstdc++.so libm.so %   9       -   &                            #   (      %      )   0       6   5   /         .            3       *   
   8      1      7   4                                                                                                             	                                            "           $      ,   
   !   '              +      2       >     >     >     >     >     >     >     >     >     >      ?     ?     ?     ?     ?     ?     ?     ?      ?     (?     ,?     0?     >    >    8?    >    >    $?  4  4?  5  H?    L?    P?    T?    X?    \?    `?    d?    h?  	  l?  
  p?  
  t?    x?    |?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?     ?  !  ?    ?  "  ?  #  ?    ?  $  ?  %  ?  &  ?  '  ?  (  ?  )  ?  *  ?  +  ?  ,  ?  -  ?  .  ?  /  ?  0  ?  1  ?  2  ?  3  -`4   Əʌ` ƏʌX ƏʌP ƏʌH Əʌ@ Əʌ8 Əʌ0 Əʌ( Əʌ  Əʌ Əʌ Əʌ Əʌ  Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌx Əʌp Əʌh Əʌ` ƏʌX ƏʌP ƏʌH Əʌ@ Əʌ8 Əʌ0 Əʌ( Əʌ  Əʌ Əʌ Əʌ Əʌ  Əʌ H-MP00L   D   <      K   0 0\2   H-M   00 P 0 K `2  &K "&I{Dp]XF$I ,h[XhBF!" !n"l"
 1F#0k(l!
  F ( F+hBpO4 FO4|$"` FO4rzv1  ,K-J{D-IpFX(h\X"h *0S0h-!" F^ !n"0l"
 1F#0,k(l!
 , FJ ( F+hBp FO4 FO4 $"` FO40  G! ( FO4 FO4 7K{DFhFFK! "!F(FF b0H"F(F9FF $D 03!(F2F07 F hs(J!$zD@h(F(O4n#`(F "FF (O4` (ѽ
I yD	I yDI yD 0  f0  60        -O*FD#ٕMBOFO	OD4B#x+bx0Pòʲ+
*44B
L#1FZ \F (8Fd .    -OFbMMaK}D
B`L2Xh`.Y7h /@[H,X bd" AFD  ` .O iOIPN ~DNI2hlX#h ({-н  h0K CL+Yh (@F9FJF .;H)Xh +?QF:F[FU  XE
B2hhBL	
M 9FJF@F!O3@@FYFO2AF:F#FU  LB@F9FZFDU	@ F3h  +?dT F_@Ff
I yDl @.  .  .  
  -G-!ȠFD (E/JZP.h .Q kF FBF>LFZ`D5 !E (1#F!BF4|BIZ h	 $5Ft9F4t*hBV!0E;F! ݽ FlKZ`(8FOFF  !I yD^,  
    p$NF~D"(F1FN(O0 <p  pL%KF|DX
h *'H#XhlT0hp!" 0F!,0I yD"! 0F"0I yD#)F *F0(F ! x+    j  𵅰
2O DB#
 (<
& (I :!" 0,(F(Fi"i@ (&(FO5>i ,H9X
h:i!(FP ((F@pG -&  !L
IzXh +I yDBIyDF  *      -OFFQO "FDF (@00LKDD{D ?O!hOb (]0Fii (]Z0F0Fi"i (?5H:XhqHFQFZFW0h +@sF0FO6i, ~'IzXW0h	
bhIzXh )"Oh )ѵ0F
OpGIyDF@Fn hIyDF@FIyDF )    n  f  `
  j
  :
  8FK!M"{DH[YxD38 x(  F
    LK!|DH@2XxD3  F(  
  -OFԶM6D̦̖F[ 
Cl3vDhDD&DyDzD`&(F!FzDF 4F. 	            | q j c \ N G  "[0`Ozv[  h  0% [`e"[0`&[ `}[ [0h`r"[ `2`k[[0h``e"[
`Y [0`R|e"[
`KLpe[0h[`>X"[ 0`5 eIF[ h0F (?*0F (?#0F (? yD|! [ [0h`d[hB$[0`[ `0h4[ ` [0`
&>`!D  T[ hT&F ) ʀP - ʀ`D[ ` .@P[ h +@ӀhD @, }d[ ! "0Fr   (@!$[ 0  @ , Ā $D	 FjJ[h (   (lF Ğ   8F)FF ,{ 0 + 

	D # F  [O4 *O bOB (] FIF
< ( FIyDh( 0 + ! F
F( (I yD:H[ @!h!I yD~[
 h#I yDrH[ @!h )?QI yDf 
F5D  *?.K[    T&
F '#"!GI yDB<: F#
FHFF ,@HF\(FMb[   J
KO	zDH{DLxDIJ|DyDzD	

@lF Ğ   8FaF}ˀ[0hrI[ h FO 	DU˼  , F`U  F (5   yU@	 
F  U<F, xH:F[   P08[0h *O 	 FK0 O	[  2 0c 0 +48FJF FN8F6M[`4h4$  X F8F .[0h<[
 `4D @,C8FF]  !FI yDAI[ h@I"yD0F0Fh8L[`U )GO	5I FyD (  (    (  (          ^&  &  %  R%  
%           $  
  
  	          "  	      -AFLKF|D FFX $B!!*8FGC  "` Fh+ h(
hi) $$B!O2hFBf            Android    T`T   $(   P,   x            ܲ    set non-blocking mode   poll failed restoring flags Write Error!    Polling Error   Cannot use -l with multiple ports!  %d  X   set TCP receive buffer size set TCP send buffer size    getaddrinfo: %s listen  udp tcp bind failed: %s connect to %s port %s (%s) failed   usage: nc [-46DdhklnrStUuvz] [-I length] [-i interval] [-O length]
	  [-P proxy_username] [-p source_port] [-s source] [-T ToS]
	  [-V rtable] [-w timeout] [-X proxy_protocol]
	  [-x proxy_address[:port]] [destination] [port]
  	Command Summary:
		-4		Use IPv4
		-6		Use IPv6
		-D		Enable the debug socket option
		-d		Detach from stdin
		-h		This help text
		-I length	TCP receive buffer length
		-i secs		Delay interval for lines sent, ports scanned
		-k		Keep inbound sockets open for multiple connects
		-l		Listen mode, for inbound connects
		-n		Suppress name/port resolutions
		-O length	TCP send buffer length
		-P proxyuser	Username for proxy authentication
		-p port		Specify local port for remote connects
		-r		Randomize remote ports
		-S		Enable the TCP MD5 signature option
		-s addr		Local source address
		-T toskeyword	Set IP Type of Service
		-t		Answer TELNET negotiation
		-U		Use UNIX domain socket
		-u		UDP mode
		-V rtable	Specify alternate routing table
		-v		Verbose
		-w secs		Timeout for connects and final net reads
		-X proto	Proxy protocol: "4", "5" (SOCKS) or "connect"
		-x addr[:port]	Specify proxy address and port
		-z		Zero-I/O mode [used for scanning]
	Port numbers can be individual or ranges: lo-hi [inclusive]
 *   46DdhI:i:jklnO:P:p:rSs:tT:UuV:vw:X:x:z  connect 4   5   unsupported proxy protocol  cannot use -s and -l    cannot use -p and -l    cannot use -z and -l    must use -l with -k /tmp/nc.XXXXXXXXXX  mktemp  recvfrom    Connection to %s %s port [%s/%s] succeeded!
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <?     p     \	           t              o             H             
                             =  !         =           =              o                                                   =  =  =        D@ H@              @ $@ @@ ,@ @  8@ @ @ @ L@ <@ 4@ P@     0@ (@ @                     
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
   GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"nc  ao .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .ARM.extab .rodata .preinit_array .init_array .fini_array .dynamic .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                  4  4                             H  H                                              #                            )   	      t  t                  2   	      \	  \	  p              6         
  
  <                 ;         
  
  H                 A         P  P                    U     p   h  h  x                `             $                  k      2                         s         =  -                             =  -                             =  -                             =  -                           >  .  8                           @   0                             @  0  P                       0       0                                 0                         p        00  6                                f0                                  n0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ELF          (    p  4        4    (      4   4   4                  4  4  4                             T  T                   2                             Qtd                             p                  Rtd                /system/bin/linker                                
                            !              (              3              8              =              B              Y              _              g              p              x                                                                                                                                                                                                                  	                                       &             -             4             9             ?             D             O             Z             f             l             y                                                                                                                                                                                                                             	                                       $             ,             ;             C             M             S             `             g             s             z                                                                                             d         d         (       __libc_init __cxa_atexit printf fflush strcasecmp puts exit __sF __aeabi_unwind_cpp_pr0 fputs sysconf snprintf __errno __aeabi_unwind_cpp_pr1 __stack_chk_fail __stack_chk_guard fprintf sigaction alarm atoi strchr fopen perror malloc fread feof rewind __strlen_chk __isthreaded strcpy shutdown memset select recv fcntl send setsockopt getsockopt getaddrinfo sleep gai_strerror socket bind connect strerror close freeaddrinfo uname gettimeofday __aeabi_idiv __aeabi_idivmod sqrt strncpy strstr fwrite strlen strtod optarg optind __strcpy_chk getopt putchar getprotobyname sprintf inet_ntop fputc __aeabi_ul2d listen getsockname accept __aeabi_uidiv sendto recvfrom getpid srand48 lrand48 strcmp _edata __bss_start _end libc.so libstdc++.so libm.so  C   Q       D          A          F   +   J   N   E   *           M              3   &   )   L           .       0       P   @      9   B                 C   5       %   "      ,   8              O      :       K                      <       1   H                                                                                                                                   
                                                 $           (           	                 2   6   /       '                      7   !       ?   4      >   G       #       ;   =   I   
   -                                                                                                                                                                               $     (     ,     0     4     8     <     @     D     H     L     P     T     X     \     `     d     h     l     p     t                                                                                                                                                                       x  :  |  ;                                 
  $    (    ,    0    4    8  
  <    @    D    H    L    P    T    X    \    `    d    h    l     p  !  t  "  x  $  |  %    &    '    (    )    *    +    ,    -    .    /    1    4    5    6    7    8    9    <    =    >    ?    A    B    2    C    3    H    G    J    K    L    M  -   Ə
ʌ Ə
ʌ| Ə
ʌt Ə
ʌl Ə
ʌd Ə
ʌ\ Ə
ʌT Ə
ʌL Ə
ʌD Ə
ʌ< Ə
ʌ4 Ə
ʌ, Ə
ʌ$ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ| Ə
ʌt Ə
ʌl Ə
ʌd Ə
ʌ\ Ə
ʌT Ə
ʌL Ə
ʌD Ə
ʌ< Ə
ʌ4 Ə
ʌ, Ə
ʌ$ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ     H-MP00L   D   <      K   0 0(p   H-M   00  0 K \  sF
F]L x&0F)F|DYKXhF 1hqPTMUHT aYxDRKXT0QH&X2hLIJM<`XaYNMT 4eY4T0 TP-hhHKHIXyD(F <H XfCI(FyD 6KXl[?I(FyD0T #N9I(FyD0T A4I(FyD $JX?6/I(FyD I`X++I(FyD H X &I(FyD#I(FyD/HxDHxDHxD 1h	   |   *        σ                ك  8(K{D(*XHS@xD!hV h: JJLXhB
`Y2!hq
HX
HxDMH]YxD)h:(h##`8     i    ((HxDpGHxDpGHxDpG |    {  J(zDF(	HxDITX !J FzD FHxD B  n  x  `  ((HxDpGHxDpGHxDpGZ  h  V  KJ{D0X  #h  	 #jFFy P3q:+#h B0   a 
L|DFKIXyDOs h	H!hxD hz  v      KJ{DH𵅰XxDN$)h~Dv(h\H #xD , FiF "X/h1F"Fh8Ft(hB4!,,    2  F%L&K|DXhQ$J%IXyD*F0hR0h !K "O PiF {D J (NHYxD!h"%hDIyDh(F2 h (F:hMeY.h.
IyDh0F(h
I"cX`              J #IzDRXB#03pG  zLK|DHJX!XOT1)`HXYJt3`!XX`7FT F ~CsEJXhI:h(hyDI(hyD2h(h@I      N  f  8FK!F(F (FM! $(FG! (Fk!Ozs\C(Fm!HDC(Fg!ILC F8 @B  ʚ;-OhYKDZ VIhyD
	hIh	 PIZ xUNIyDdF0LHxDd" $O	XB'F	j XF8AH!xD  FH p`	3  *;!+F@F!ZF4F-HZ 
h@(F *  0  (F ( D 
8 4!Bȿ $E		2`E:`8F
hB         ~   -ON%K $~DHtXxDD9hvHV  0( ^Y
	5 XXAF"F8hS$04h@,8h	O&      -ON%K $~DHtXxDD9h.HV  0( ^Y
	5 XXAF"F8hS$04 @,8h	O𮼖  g  x  (K{D\pG? pGn   K{Dxg('K(M(G(*m(x( k(#HIxDyD!HIxDyDHIxDyDHIxDyDHIxDyD
HIxDyDHIxDyDHIxDyDHxD                                     𵥰3L4K|DXhI2J3HXxD)hx(h\/N!~D0h0)OY4h*I*JyDzDh Fx0hD 1 !"<%7h
 %{' @,O` *F+FBNY%hXIJyDzDh(FD h8F 
HOr+F!X0h%,          *  Z  	K
J{DXhYLHYxD!h h@4    &M&K}DXhF*$I$HlXxD!hT!K $!N{D!JYhp`XhY Q4:h*IHmXxD)h7I(h"FyD3F(hK1FOr{Dh #.HxD        	      $  -G &MLMKF|D0FX9F:h %FQ6")FD
 0_	x+F '@,*F O`BF5NYhn3IKFyDh F\8F7D,IT #  IF2F'NY2hr*F$ITyD  6   #  X	P3yHxDL -O*FIYyD4 F F5h-2h*$ *              I  -GFDLDK )OO|D *F
FX7!BF !@ (9NYhF8M}D7M}D6I*FyDh8F0h 8h(+JXhF-JzD,JzD,IyD  n BF3FA
HF !
 (JX F|DxDIBFyDhPFz  FO11`8hJX hJzDJzDI3hyDd h0   w  {    ?  C    ~  ~  h  ~  ~  i  -OF0IFFyD4-I:F0FyD,O,(F%*IDyDDDF0F8bi0F
IF9FBF`h FhFh +FRF0F!iIyDi(xFx )yhyyyIyD0Fi ,0FOpI  m  o  ^    e  9  K  -OLFFK|DX(h IFTISF yD HF0F IyD HF  l ! "
#I"F yD
QF
	(F)hQJXhb hF 	 8FfRFFHxD.@FAFFHxDT*hR	T0 hSF !
 "DO ' !

(F*hIFT0 h$ h  0FFgHxD8F9FFcHxD*hR`T0 h[H\IpxDyD	Dy! "phv?F)h ) RHxD2iij*h (8B?JLIXyDhXFi:i^Fh-h -O6MCIcYyDEFhSFD(h (7/IbXh  hDIFBFF4HxDT0h  h*BFFF	hdhHiiXF /%	m
HSFI$XyD h^ h*O;XF|  	  .  (  ~  $    ~  x~      h  ~  ~  ~  ~  ~  -OFFFFM }DUK{DF`0H)X8F
hFXF

IBF3FyD(Fh F<  <  v~  8F
LKJ|DXX텱iI yD`d$T0`8@Z8     FL|DGEKHX!X(FlIjh(FfXshB)ht,rj`J*`hj@h1h:
R*IbX
p    $tI  C1+KA2{DxG8&)JzD !QpG       @  T  KJ{DX z
S0+п  -C+A*J*KzD{Dxg*K*$M*%G*m*
x*k* I\XI hyD h Q1      A     @_@    @    e͝A      @      0A    ~  r    -
AC+LLKI|DgX8hHNIIYyD0h
FI0hyDS0+
BI0hyDS+@I0h*FyD0h<KXh@9I`X @T0 	&+Z:h˺ʪ*;	K犷Z$jIS+dX%I hyDz$IS+ hyDr!IS+ hyDlI*F hyDfIS+ hyD^I hS+yDX h$

       @  }  }  }  ~  }  /}  Q}  q}  }  }  0F
F   "FI+F20  @-
ILK "|DX`HI#X`dX݄  
!z zy ` h        $"LK|DX`( 6IcXXh8hhT `    (?H # "?IxDyD #=HxD #<HxD #;HxD #:HxD #9HxD #8HxD #7HxD #6HxD #5HxD #4HxD #3HxD #2HxD #1HxD #0HxD #/HxD #.HxD #-HxD #,HxD #+HxD #*HxD #)HxD #(HxD #'HxD #&HxD #Q  #  Q #!KIA0{D pG   $  j  ,J    *  :  J      *  J  2                z  J      B  R  *  0  ˣ #}H#ʣ #J#ɣ #L#ɣ #N#ȣ #P#ȣ #R#ǣ #T#ǣ #V#ƣ #X#ƣ #Z#ţ #\#ţ #^#ģ #`#ģ #b#ã #d#ã #f#£ #h#£ #j# #l# #n# #p# #r# #t# #v# #x# #z# #|# #~# ## ## ## ## ## ## #
# ## ## ## "iKC6+? #k#> ##= ##= ##< ##< ##; # #; #"#: #$#: #&#9 #(#9 #*#8 #,#8 #.#7 #0#7 #2#6 #4#6 #6#5 #8#5 #:# "_(4KC3+<;Fc(      !
}pG '1Z	@+@q=
ףp@jt@7A`@~jt@|?5^@v/@/$@S@(\@S@Zd;O@~jt@K7A`@K@Zd;@^I+@v@?5^I@  
@  @xi)@ʡE6@~jt	@h|?5@ rh@~jt@Q@ r@jt@m@S㥛@;On@HzG@)\(@?5^I@(\ @zG @+ @X9v @㥛  @p=
ף @d;O @Zd;O @Pn @{Gz @ r @"~j @Mb @\(\ @tV @jtO@#@w/]@"~j@T㥛 @-
@ˡE@ףp=

@-O-C+FLK|D X!ڷh˺ʪɚI*FfX IyD0hI S+yD0hI S+0hyD0hbOZK-D x {D HIxDJyD KzD((DD OD k K{D+ +H<[xD +{"; [IyD { ;Hz'xD J
 IyD  Hy,xD I	 ۲IyD; HxD IyD B;O ;JzD Kk HxD KK kOD

 KJzD=!{ IyDˇ {[k +;GEk ˒K{D [J kB;  H +xD ;@ˀ$8NT	Y hAFD K8D[AQp9	k ;Af+hAFKzd[  [ k{AQ7Py	kJzDA9h hAFzlۖ  v AQ?,y	 YK{DA0!h+:B  ; { KsG+)kMH)FxD3D[sIKb;d[ ;ek[S6+
T0h2BKBJ{D zD {?HxD TghgHh{j{3IyD2I3HyDxD { {	        Y@  v  v  v                                     D  d          $  48  L    t  <v    |  8  0  &   L|D { zHxD  IyD IyD 
JzD + K{D ;+ * K; :        &        p-./M/K}D/HXxD!h@-H!hxD<,H!hxD6*H!hxD2)H!hxD,'H!hxD(&H&I-XyD  1#I hyD S+,J ;IzD +3BK hyD$[S+K kI{D {vG+ hyDb;S3+p@      Y@  r  r  s  &s  Ls  ]s  8  os  x  s  N  s   pF,!FFH !p/+ * #F\T3 *\T3 )pp
F,!FFHF #p (  p #\T3 )p  -AF)L)F)K
"|DX0hFhFZ%IbXhC$HjF+F!Xh"IyD!IhFyDN hF4!FIhFyDBFȹhF0!F0FJIXyD*F hjH!hxDN h2 8F 0BJ :  r  r  r  r  s      8FLFMGK|D}DX)FDH)F X~CI`XCIyDxBJBIXyD
" @I
"T yD>K>I2zX #`<HbX`"!X`:IT ``X`8HT`!X7H`!X z5H!X z4H!X
 `3HT`!X2H`!X `T`T`T`,H!Xc `T*H
`!X
`)J X &IyD`)F%KX8@^ ?    l  r  `  r  r  @DHLPTX\`dhlpt4x8"   p@qML}D|D(F
K!X4#FF(FM&@y!}D(F!#FF(Fp@  ȴ  g      -O-FL
KF|DX(hFh0\JX`@0hAHxDW1hDdD 4=C- D e    *I    D  Hg`Y |JX
Bh (vIeX(`$ * 
@qJ
BT0hP-iJX` ( ~
@dJX`uTP+hV# x0:	* !RtT0A0(hA)` 
\TH%X*hV" x09	) !4@T0A(hB*` ,T
hh`4 GHxDFHxDEHxD7IDHcX!Xhx
pBI2O
BYhE>JX(`:OY 
@{8`9h+hB)`*h* (`)!9`+h+"*`=h-@ 8`\
BT0h$I eXN(`*h_*Ac*?HxD        Y@h  |p  \r    dhplTHXLo  ?o  bo  xt4n  4s
@eX 
`+ +#Xh*!`TaYh(@o
 5xDVfxDcXh$zD yD
BT0hzP5x$zD` ( ;
@d$zDL
BT0hY 0@yD`T - 
@($zDTbYh$ yDOb`XT0h
BT0h @_IeX !(`$B
@RT0`I yD
BT0h (9IeX(`$ * 
@-J9MbYMh%I #bX`BT`eY+`@B(``H"XhJ
BT0hP-H
" XT$ *|I
"`X
AHt
BT0h *I"`X4T -]
@J
BT0h (I"`XT -@
@JMHaYxDMHaYxDIcXh(F0j  )F H!XHxD	hp#pTP+`T `HxDTHIxDyD  K@F1FRFCFH!X
xF⹈KX	h!)яIyDJXh
*ьIyD@HxDHxD(F {M`YxzKXh%-уIyDsIcXh	)IyD~HxDlN}HYxD!hO0yHxDhʱxM zxHO3aYwM`}DvI"XvHyD+`` "`T0 z%X*`KIeXpI(FyDtnI(FyDnlI(FyDh︱jI(FyDbhI(FyD\XfI(FyDV(dI(FyDP@F1F`NY#x&F?+^I(FyD0船\I(FyD*XZI(FyD$(XI(FyDx"2px+TI(FyD蘹RI(FyDhPI(FyD8NI(FyD m  p 0B$
 m8tx:n  .n  
  p  L  >      @    P\`Dk  l  l  l  Bl  Tl  _l  Ml  Ml  Gl  \l  Jl  l  l  "  lpX    LV  V  V  V  V  V  V  k  {k  rk  ik  Jk  Ak  8k  /k   4L4K|D4HXxD	h^2H"X2HhxDX1HT0xDhN.I/HbXxDhH-H#X-HhxD@+I,HbXxDh:*H#X*HhxD2(I)HbXxDh,'H#X'HhxD$%I&HaXxD$J%HXxD#H$KT !XX"HhhxD	h
 H!X HxD
 @.  |i  di  hi  p j  lj  Hj  Lj  D)j  (j  'j  %j  \P`j  7j  BhK*{DуiX@I\XI hyD hO0   i  KJ{DHXxD4!F FO0  i  FH#xD
FD= "+FN~DF8Fh$CF
H4X&hIyDh0F hl/`i  \  oi  -OF< )KFFDFZ hFI8FZ@ qF5FEI2FyD+FHFb h. ! "DO		D
0F)F(F  `XFZ0hh 	 _I+F2FZ_I yD   F PZI"FyDF(F  O0THPxDD8 B 0DcEIZ  hh0ɱ B  DhYFZ0hh  2K{Dh)HB`Z .H xD,H xD*H xD  r%K{DhHB`Z @H!hxDvH!hxDpH!hxDl hP 0K	J+FZ2F h5   /i  \  h  \  h  *i  ^  h  h  "i    i  Ei  h  -OFF7HFD7K[ F[[0  h-J8`[p8h T 8`[0h&I[pRF%I[yD    8hQF`JH[xD   I8hyD@\DXH[0[ xD 9hhN     h  h  d  h  Bh
K*{DуiIYI\XI hyD hxO0h  *e  -GF0'~L|D"CF({NY  hhFhDFhTF hoIBF3FyD HFl h88FhKX9hidJgITyD2F  X  $aJ !aHzD#X0Fhc_J|0FzD!T0hX[Kp  X[K`T `Xhph)+" C- 0F0FJT *MIyDhHF  ;h+<IGHTxD   BHxDh"AH
 O	xDH!" F0FhCF`08HxDHF8h0$J4HXxDh!" 0F!F (HT  )IyDhHF  0Fi*iR (:hOY'hIyDh8F(F'hIyDF8F hp0F $  g  g      g  g  Ҷ  d  g  g  g  g  g      -OFfLFfK|DeJO 	X)hF	T EF@xh(@ѻi#D8F LFxh=BFSI yDXF8ph(Ѳi#"0F wi,FphEI yD:F@FAH#Xh) 6>J6>IX T0bX(hhh8K{D8K{D8I S+yD5H"Xh +3I`Xh *2H)hxDT0h ).H"Xh +,I`Xh *T0h )(H)hxD'H"Xh#&H)hxD$I`Xh"#H)hxD
 )h	 0B  {Gz?Ƣ  $g  g  x8<4f  e^  f  f  f  f  f  -O-FO3!#( #
 )#D
HX @!h)H)xD(M"OO 	}D *` # "X#X0!M &)X `BFѦHxDJX0h9HX `H1hxD JX`3hCIX h *ؿOR2`pX	 0sIX 1h hB  *у 0qHH1hX  X
0  hh|9hAHX     JHX0hX  )@𽀄J
!HX0xDh`I`yDh`X HhaX  ~HhaX  |HhYaX  zHhaX  yHhbX   	  rIX hqIbX pIhbX nIhcX c(Bh*D  !dh(KJbHXxD	hN]sX
0 +1h:?IYHX0xDh6VH	UKX  ` X ` ` ` (t( ,``2'LpBIyD`X@  h>HxD> h ((Fii06HxD  0O 
 $H"X    8hO 	           @e  b  e  e  dT\    lLXP  od  wd  *d  Z  d   #(FhhFhEл PTX 
h*+2h+xDYFxD4W#		Cs#
h 

 h (к ,O3(FA$=!(F0xDf) #2h(Fh8h"h(F(hh<P$XPkhkhD$DX0xDhnh(t,yD`X@jh hxD
XFQF AM?h*XP)hq"   "F$   Q%$%*hQ "Xp}ji &'$%&'O$
&z 
Dz%'

"*#8h;hY9` I!Xp	JHX0xDhhBXDHX0xDhhBM%' *$"& MX
h*H;hX P3IX h + 첻NX0~DhDD0pHX  j=)h )F  ) 6H9hX 0h!h%J2xZAX0h#K{DK{DI yD!h':ZAtX0h#K{DK{DI yDS+
O#hXpk 3x `I yDFPFJ"
8h$O&*<%*X':X`JX0
h!h h*g:*JAX	h!~IyD~IyDK|I; +g
KyDZ(h (V(TUH!hX  h*#A|X	h!jIyDjIyD iIyD:IN'hX`G7hdIyDF8FXI"z0hVNXX XpX0!h hh*gAX	h!SIyDSIyDQI gyDT*h*D)L(IekJJX zDX@ iGH {:X hXhXhXh=IFyD(f[{% h5I hyD# h- Dc  )c  b  b  b  wX  L@  Hx  t      V  V  `  V  V  `  `  U  U  Ka  U  U  Ra  Ba  7U  1U  a  b  ldVa  <b   -O-FO3 $#(#) Ȳ#FHD[ @!h)H)xD(M"NO 	}DOF *` # "#[0!N #)[ `F0ќHxDJ[ 0;IH[ xDh8H[  0KI[ h (ؿOP  D[	 0{I[  h0C 0+0  wOI  [ [0 hhF(h@J[    |I|H[[  0 +@xJ^#xH[xDh`vK`{Dh`[ tHha[  rHha[  pHhKa[  nHha[  mHhb[   	  fK[ heKb[ dKhb[ bKh
c[ (cHh(pD    "d 0+?IVH[ xDhRH[ 0Yh )2  J4H[ MH	hxDl(	hII[ `i[ `iXi
` `h`(jj``fN7IlhyD`[@jh hN3HxDt h &(0Fii0X+HxD           @Ma  ҩ  a   a  hT\*    pLXP  _  Z  Z  	Q  N_    H " 0
`0txD(hO 	
#		?hRCs#   0FhhcF ( )  h+xDxDXE$[h+,O0A$
0F!0F0lxD*m(h"0F `nwH$[`qhi 08[  4hxD8Z Twh yD`[@rh h@xDH<A.h*I[P+hs!  8 "F$   Q%$%*hN "[MjiQ &'$%&'N$
&z 
~Dz%'

*#0h"
3hX0` I![P	JH[0xDhhB[<H[0xDhhBP%' *$"& տN[
h*@H+h[ `3I[ h + 𬀹O[0DOhD8pH[  jz1h )F  ) 6H)h[ 0h!h%J:xjA[0h#K{DK{DI yD!h':jAp[0h#K{DK{DI yDS+FM#h[Pk 8I;xyDF   PF2J"
(h$M&*[%*0'JJ*[
h[[0
h!hh:*:ZA[	h!}IyD}IyDK{I[ ;+
;[yDX0h (T(RUH!h[  h*#A|[	h!jIyDiIyD iIyD8HM!h[PA/hcIyDF8FaJ"zaIT*[0(h[P[h+h
h!hA[	h!UIyDUIyDSI yD2h*D)L)Ie{LJ[ zD[@(i:IH f{ [ hk[h[h[h>IFyD('k hV7I hyD#P h-^  h^  oY  DG^  ,Y  xX  N  L  Hxp  tZ      AM  ;M  aW  M  M  5W   W  {L  uL  W  !L  L  W  W  K  K  Z  "Y  lhrZ  X   -O-F! ##
 #L"K|DXh*H"xD#XM! &O}D DF)`K헋H{DxDO #HT 0!X`
h
'`XT	p;h 8` HJhIT0XyDh	hh#FfHN#X8hOYDh9hhF"BFцHxDIT  d2H#XHhxDJ)hAJT  E  }H#XhT )@yJ
 yIXyD
h`xH`xDh`T uIhabXtIhXabXsIhabXrIhyD
haqHbxDhYbT nIhbbXmIhblHbX !XiH
hc!X  
hc eH!X
hPBdIXc`X#dPh(|D   !Yd 0+DJYHXxD	hUH#XZh A;H"XRHhxDOI
h`XNI`i`Xh`i` 
#
`(OCInhyD`Yjh h?HxD ht #8Fii607HxD   (jO 	 )j      @  @^  T  N  <    dv  h2  F^  W^  T\  l  p  ~  LX`x  ]  }Q  JQ  G  ]  rJ X   (hm*mKnJ{DzDd8Fh #xhB h(Zh +UaHxD   #8FqFRFDPDC	h+
THxD8

   " "6hBH	
 	9h*
d!iBI*T    ~h (й (hh4HT 0S  ±/I0HcXxDhvP)O+IyD`Y  h(HxD:J(h%M$eY*h@  ~+ " ! FbQ05+hcH%Xjj![i  " Q!    P`  k\  [  [  O  N  mE  L !M* j *}Djz!:z:(h$#4)h8FK+`JIX ++eX	|T hhB?JXhhB7!$  7 4T0h)g,(hT`(JXh ) JXDDh  H!Xj2h *F  ׁ* ԁ:)hT hz  zhAT0h#K{DK{DI yD!
z
hBT h!IyDIyDI yDS7+jM8heYT
pȱ9xx)ѡI(hyD  V LI 0yDF   XFF`J $[T0XJ hzDK9x{Dx)  Q
	 
k "mK&{Q: JZ!j:hJZj2mJXh#yK{DyK{DRFwI;yD K
[kXFnInHbXnI#XyD(h0h (( 6[J$+RMXaYx
hx+S+bIbHyDxD
hh ; ";K#KQdFFhATh UHxDTHxDTI (FyD7J/hXT0x x),D(DQFFHF~4H̰ȊAI$'XxyD?HT x+xD    hQ
 "
K!Qh +_DT0h *Z+JzDW  ?  HxtDLV  L  C  C  M  [C  UC  {M  
Y  Y      oB  iB  !Z  ?Z  ޖ    A  A  jM  U  U  :    @  BJzDCFAIPFyDJF <I<HbX<I#X(hyDhh0h(]8NY=xx-m":p 4I5McX $bY'0K1I	 /J{DzD F-H&XhS+dXE7h&hi+j(
ZQ<)E$S+
FIFyD *i-Q>3@ERF;F
@FIyDp'    .AG@  RX  -X  &    dH  W  -O-F # 	 *+#KDZ h*H*xD+L &!M|D힛}D7F!``K HJ{DxDzD !"#JL "*Z`iF?іHxDLZ@!hFJZ0h (OyHEԿ ` OQ!`JZ h !`oO$ hZ Z0!hhhlF(h@IZ    JHZ0Z   }{J !Z0
hyI` hyD`
h`vHaZ uH
hZaZ tH
haZ rH
hbZ  	hbZlH
hbZ jH
hcZ  +XcIh)"JFBVcp`HZ 0k^IZ h]K]HZxD	hHh``XHxD 4+L QKZ `Z  `LK{Dh+@Fii0GHxD>IZ hjCHZxD   h( "`1I#Z   (hO 	1H`xD  X@Fh  Z]         h  @X       j  n  X  W  dT\0  lLXV  V  4  V  V    +i @FicFh    B ((h%h O;Dh)hi*		HxD?hXh +?jtIZ rZ0hIHZ xDh4VP`HxD [gk% 

{L`gQ9AQ-h,Z@#hs!  , "F&   Q(&(!hJQZP "iki ')&(')M&,# }D'*(*):%:(hND 9
+hX(`@FnIMZ@ ZP	 Z hhBJpZ D 0hB'() %&,  G9F9FF9FF0Fz狔 FՀLZ0h)(hZ@Z 0sKZh ( xOZ0DwOhDGeJ8pZi@  h ++ *hZ(jJ8xhI yD hS4+
)Z:;xcI yD hS3+(ha%h\I;xyDF   (F%&*:(JP)JL,kRIZ Z0 ;Z[Z *h;':8k
BIz+yD{ hhhAh *=*;9IS+ hyD2hA%h3IyDF(F%
)H,+Z  Z0 Zh#I+(yD hhh hb/U  iU  T  L  Hxt$  D    eS  MS  9S  S  S  S  /T  -O-F! ##
 #"6DZ h2"xD# %v&FFZ@D>`%`g6&{DxDFzDyD|DQ &>`Z 
h
#`fZ`7h 0` &hZ Z0hh	hFttVZ 00hpfZp~Dh1h:hsF"7CFPxDHL&Zp9hIDZ 0@hxD"hJ4Z    $$Z 0hZ )@ǀ& Z0
h``xDh`Z haZ hXaZ haZ h
habxDhYbZ hbZ  Z 
hcZ   
hc Z 
hPBXcZ `#dPh(D   !Yd;h+	$%lZxD	h'=XZ 0C:hJDZ0xDh8* 0Z  
`Z0``# *>T@yD`Zp 8hxD8h #0Fiit0xDK  8O  e#Z `  hO 4xD{DJ0Fh #hBh*@hxD0Fh h #hB
h+*@xD-h 8h+XFd!aJZZFhh h4h )и  hh(fZ0S:hұIHZ0xDh,LN@IyD`Zp 8h4HxDJ*: hL:z${Zp :h J4  - " ! FhQ:JJ;hŻ˽H "Z @kgji  Q=!
 JJJ J!JLj Z j|DZj!zjz h$#"h0FQ!`hNOZ` {{Z@
¬HZ0xDhhBOZ hhB! $  ՚HZ 0h)` hZPZp0rJZ0h ) NZNh~D^0pwHZ  jWIyDFp8h (g( d!hY
j3xI yD(hS6+	!
Z~I (hyDS5+>G:h*yI(hyD2x4wI:JyDZzh!zrIZ0yDZ  hKlIyD#Zj:k jJ
;*K+hh(h?J[IZ Z0yD(h8h (( 퀪*QI(hyD":S+       @~z  @U  (      h      dh  
U  U  T\lLb  p  X` e  T  >  =  =4  I  P  I  #S  S  =  `<  2  |  Hx*  tD    P  P  F    p  UP  ]H  L  :hB,h,!IyDF F*Iz
xyDthIZ0yDZ  h IyD'*+hh(hJDIZ Z0yD(hhh(h' ]B    h}  N  yF  s  LK|DX.hIyD

0FS0+H!X
h*<(hT0h+JIzDyDJIzDyD IyD|q  Q  DQ  Q  uQ  wQ  Q  sLK|DX.hIyD

0FS0+H!X
h*<(hT0h+J
IzDyDJIzDyD IyDh| q  ;Q  D(Q  Q  P  P  Q  -O-F! #
 #,E(5|DXh2xD &ueX.`FYh"` gX=h
&>`&Xh4TP{D2hh+h$8htcXXDh9hh'X:hBdYxD)hcXhF0$X0h0`TaYhT` (@""TT
0}DxD)h`Th``aYhaT h]a`XtThaaYl$hzDhhyDahb`TXbT hbaYTT
hFbeY zzT hcT
 Fhc2h,!X
hRB$Zc XdJh*D    Xd;h+IHbXxDhHYoH#XYh )/Ó
hIT `ibX 
h`i   ;h3MHeYxD)h 6IyDF@F*(h0MI~hyD`dYzh hHxD=M2x4}DD*h  B2-h Ij0hU0 & `F@ T0     휊IJyDKzDH{DIxDyD
d!F53hBh9hB51 )FCFѴHxD ii@0)h+ hb) hc(0F6HxD1FFHxDJFHxDBp0FDh #   Brh-cГHxDh  #0FQFrF<< (ݼ DPh-@ЂHxDh0F!0FQF" # (
B*h 8;h+DI`X *FPFh0F   *?. ?*  2h-	 TPkhK9hٱ,H"XYHhxD'NohUIyD`Yjh hRHxD  h%OM*NK}D{D/hh,MxBC *Q0`GI 0gYeX +@8h (@R     vp  @P  d  h:{  YP  HT\z  z  lp  zz  LX`~[  fO  E4  2O  &4  *  |  Vy  Py     N  x  XO  LN  >  (N  FN  >~  $N   N  X2  1  !(  |  v  DJX :@:ѝNHYxD1hH1hxD 0h  '[ " ! Fa+	
Q2	
 I8hhJX J@JуNHYxD1hH1hxD0hkw{I`X:f;Bj  "Q3
 h+h ++ jH "Xh!nIJyDgkIyDS:+_I>hgXVfJgKgIzD{D8hyDxxȊZbIbJcHzDcXbI&X%jhyD 
h_IyDJZKj[zkɊ{
2hh8hh@PKQIT XyD8hN*h *N*LȊ*5I`XHI" hyDJS+.O3hYC>h;@IyDF0F:Ȋ2H;J3IzD#X:HfXhxD h7IyD*:+;2hh8h(K/IT XyD8hhh+h+)I<`XT h!h
 $IhyD"h!        @TL  ?L  XL  PL  )L  L  "|  |  L  |z  Ft  ;E  E=  @  {8  y  s  D  <  K   -O-F# $ #Q6DZ h2xD  %fZ@%`Z`7hOZ0xDh`Z 
hF:FZP(hU(`Os&vxDzDhZ@hv``#`Z0||Vhxx aZpt:hbaZ0hh6a{DZ `hhyD
haXV bbbZPPP&+hbZ  hbZ zzZ	0hcZ0FhcZ hFvZP(hCBccZ  dWh/DP  %ed4h,	Z 0hxDZpzh<F *7
hZ phi;`#iZP  `*` 
0hp$uZPxD)h/htyDF8F(hpT~hXyD`Z@zh hHxD h<U8u}DD*h;hB-h9hIj  U( '`#Z p`?h  O j4xD{DyD5hB
hI2hB5RXFd!H))FxDs?FxDN ii0($h-
  G!ch +OY`xD.IFFPxDF@xDHF" #P?1h)JZ0hZFFhHFt h(HxDh (?q /?n1hHZ  HhxDfhOIyD`ZPbh(hHxD(hlvKI{DyDhh*M Q0* 0ZPhIZ  J@JѨNHZ`xD1hVH1hxDP0h6  xk "  "Fa+	
Q2*	
 Ihi Z@ZьNHZ`xD1hH1hxD0h;{Kbj:  "c[Q5
 h+h ++   Z0h2ʢIyDS<+JIyDS+fH!hZ @QNKI~D{D hyD2xx zIHJxDZ0IZ`'
hyD hIyDjzk{ʚɪ
 h2hhI hyDO*h *Q*O:yIZ0yD#hJ5K&hZ@F&hqIyDF0FǊdHkJeIzDZ 0jHZ`hxD hfIyD*:+; h2hh\_I hyD"h#hT)h)HhZ Z \#h hZ 	 hTIhyD:        @.g  @M  M  HTq  q  lp\w  q  LX`R  L  5+  zL  +  !  `v  :p  Po  v  L  SE  K  5  E  TK  1K  )  <)    t  ^n  DD  D  D  D  D  D  t  t  D  
s  l  =  5  9  1  Hr  l  G=  75  d3D   8@a	L	M|D}D FK!XT3F FL ` ^j  _  -OF EF4$
|DXh(eX+h %xDyD DV%PF5B
 4
"T DDIF@FD$IFFX
"D(F4yD{DxDS(  H(j?(?4(<6(@@C(QD(@TM( L(@N( P(@{-m( 
W( PV(@oSb(+h(@i%r( ʀn( p(@^s( t(@W$ #IT `KOHYxD4!F F-HxD:I#JyDzD`2J#IX`+IbXh
B Oa0IbXOa`FFL4 + 
@Ix
BT0h Oa0IbXOa`FF4 + ؀
@IIbXh
Bg    4 + 
@K{DIbXh
BK  ` ) 
@~IbXh
B0  r` ) 
@gK{DbJX h_IZH#XhXIS   lJ!zD`gJX
B h0+IyD`$ *R
@K{D/IbXh
B  HF
"|4 +7(F
A
"r0ObT0T h"oH#XhxIcX`wI #wHbXxD`ltH!XtHxD
`drI#T `bX`8F1FBF^CYlJXh +rjI(F`NyDYxgI0FyD,(eI0FyD&cI(FyDbI0FyD`I(FyD_I0FyD0]I(FyD
"[H1FxDO0  hrKMJIUHbYO5xD`SJcX4IzD`0F``cXPIyD`(NI0FyD 2JO0X
II0FyD0GIHKyD{Dh`	FI0FyD ($H"X`hB	
 m^  H  UK  H    i  4q  &I  ~i  i  o  G  G  :p  4p  m  0g  n  m  f  E  E  V  E  E  E  \  E  E  E  E  e  e  8E  1E    tk  Je  E  pG  pG   HpG  xGF zxGF dzxGF zxGF @{xGF ,|xGF X|         Android    }hDdh @@ȄD  $ԇ#@ Pďɀ@D  (DɀܓHD  pɀpܟ@C  ЫPC  xԭTl
C  xC  C   C   C  C  8C  hC     remotehost is %s and port %s
 TCP_STREAM TCP_MAERTS TCP_RR TCP_CRR TCP_CC UDP_STREAM UDP_RR LOC_CPU REM_CPU The test you requested is unknown to this netperf. Please verify that you have the correct test name,  and that test family has been compiled into this netperf. netperf: caught SIGINT
 catcher: timer popped with times_up != 0
 catcher: interval timer running unexpectedly!
 SOCK_DGRAM SOCK_STREAM SOCK_UNKNOWN IPPROTO_TCP IPPROTO_UDP IPPROTO_UNKNOWN(%d) AF_INET AF_INET_SDP AF_UNSPEC Sorry, this system has more CPUs (%d) than I can handle (%d).
 Please alter MAXCPUS in netlib.h and recompile.
 installing catcher for all signals
 Could not install signal catcher for sig %d, errno %d
 About to start a timer for %d seconds.
 start_timer: error installing alarm handler  errno %d
 error starting alarm timer, errno %d
 netlib_init: request_array at %p
 netlib_init: response_array at %p
 r Could not open requested fill file malloc(%u) failed!
 netperf This was here to try to avoid dead-code elimination %d
 request contents:
 %d:	%8x %8x %8x %8x 	|%4.4s| |%4.4s| |%4.4s| |%4.4s|
 response contents
 %d:	%8x %8x %8x %8x 	>%4.4s< >%4.4s< >%4.4s< >%4.4s<
 %-7.2f KBytes MBytes GBytes 10^3bits 10^6bits 10^9bits Trans shutdown_control: shutdown of control connection requested.
 %s  errno %d
 shutdown_control: error in shutdown shutdown_control: no response received Processor affinity not available for this platform!
 entered send_request...contents before htonl:
 send_request...contents after htonl:
 
send_request: about to send %u bytes from %p
 send_request: send call failure send_response: contents of %u ints before htonl
 send_response: contents after htonl
 about to send %u bytes from %p
 send_response: send call failure BytesSent: %d
 recv_request: received %d bytes of request.
 recv_request: error on recv recv_request: remote requested shutdown of control
 recv_request: partial request received of %d bytes
 netperf: receive_response: no response received. errno %d counter %d
 recv_response: received a %d byte response
 recv_response recv_response: partial response received: %d bytes
 hello world
 debug: %d
 SO_SNDBUF SO_RCVBUF send receive netperf: set_sock_buffer: %s option: errno %d
 netperf: set_sock_buffer: %s of %d requested.
 netperf: set_sock_buffer: getsockopt %s: errno %d
 netperf: set_sock_buffer: %s socket size determined to be %d
 getaddrinfo returned the following for host '%s'  port '%s'  family %s
 	cannonical name: '%s'
 (nil) 	flags: %x family: %s: socktype: %s protocol %s addrlen %d
 	sa_family: %s sadata: %d %d %d %d %d %d
 establish_control called with host '%s' port '%s' remfam %s
 		local '%s' port '%s' locfam %s
 Sleeping on getaddrinfo EAI_AGAIN
 establish control: could not resolve remote '%s' port '%s' af %s 
	getaddrinfo returned %d %s
 Sleeping on getaddrinfo(%s,%s) EAI_AGAIN count %d 
 establish control: could not resolve local '%s' port '%s' af %s establish_control: unable to allocate control socket bound control socket to %s and %s
 successful connection to remote netserver at %s and %s
 establish_control: connect failed, errno %d %s
     trying next address combination
 establish_control: bind failed, errno %d %s
 establish control: are you sure there is a netserver listening on %s at port %s?
 establish_control could not establish the control connection from %s port %s address family %s to %s port %s address family %s
 identify_local: uname %-15s%-15s%-15s%-15s%-15s Local Information 
Sysname       Nodename       Release        Version        Machine
 %s
 identify_remote: on remote Remote Information 
Sysname       Nodename       Release        Version        Machine
 WARNING calc_throughput_internal_omni: unknown units %c
 calc_service_demand called:  units_sent = %f
                              elapsed_time = %f
                              cpu_util = %f
                              num cpu = %d
 calc_service_demand using:   units_sent = %f
 calc_service_demand got:     thruput = %f
                              servdem = %f
 msec_sleep: select calculate_confidence: itr  %d; time %f; res  %f
                                lcpu %f; rcpu %f
                                lsdm %f; rsdm %f
 Conf_itvl %2d: results:%4.1f%% loc_cpu:%4.1f%% rem_cpu:%4.1f%%
 !!! WARNING
 !!! Desired confidence was not achieved within  the specified iterations.
 !!! This implies that there was variability in  the test environment that
 !!! must be investigated before going further.
 !!! Confidence intervals: Throughput      : %4.1f%%
 !!!                       Local CPU util  : %4.1f%%
 !!!                       Remote CPU util : %4.1f%%

 Attempting to parse address family from %s derived from %s
 inet unspec WARNING! %s not recognized as an address family, using AF_UNPSEC
 Are you sure netperf was configured for that address family?
  12865 0 malloc(%d) failed!
 Sorry, Demo Mode not configured into this netperf. please consider reconfiguring netperf with --enable-demo=yes and recompiling Only 95%% and 99%% confidence level is supported
 I don't know how to get dirty. Packet rate control is not compiled in.
 Packet burst size is not compiled in. 
 Unable to malloc space for result brand
 This netperf was not compiled on an IPv6 capable system! Netperf version %s
 2.4.4 A:a:b:B:CcdDf:F:H:hi:I:k:K:l:L:n:NO:o:P:p:rt:T:v:VW:w:46 localhost Netperf does not understand %d as an address family
 0.0.0.0 RR rr Rr rR Program name: %s
 Local send alignment: %d
 Local recv alignment: %d
 Remote send alignment: %d
 Remote recv alignment: %d
 Report local CPU %d
 Report remote CPU %d
 Verbosity: %d
 Debug: %d
 Port: %s
 Test name: %s
 Test bytes: %d Test time: %d Test trans: %d
 Host name: %s
 Unexpected Address Family of %u
 we never expected to get here in get_address_address
 tcp netperf: get_tcp_info: getsockopt TCP_MAXSEG: errno %d
 complete_addrinfo using hostname %s port %s family %s type %s prot %s flags 0x%x
 complete_addrinfo: could not resolve '%s' port '%s' af %d WARNING! Changed bogus getaddrinfo socket type %d to %d
 WARNING! Changed bogus getaddrinfo protocol %d to %d
 WARNING! getaddrinfo returned a socket type which did not
 match the requested type.  Please contact your vendor for
 a fix to this bug in getaddrinfo()
 WARNING! getaddrinfo returned a protocol other than the
 requested protocol.  Please contact your vendor for
 local_data_address not set, using local_host_name of '%s'
 local_data_address not set, using address family info
 what to put here? %u netperf: create_data_socket: socket: errno %d fam %s type %s prot %s errmsg %s
 create_data_socket: socket %d obtained...
 netperf: create_data_socket: nodelay: errno %d
 netperf: create_data_socket: [TCP|SCTP]_NODELAY requested...
 netperf: sendfile_tcp_stream: tcp_cork sendfile_tcp_stream: tcp_cork...
 netperf: create_data_socket: SO_REUSEADDR failed %d
 netperf: create_data_socket: data socket bind failed errno %d
  port: %d
  on result only  from %s (%s) port %u %s  to %s (%s) port %u %s  : +/-%3.1f%% @ %2d%% conf. %s  : nodelay  : copy avoidance  : no control  : cpu bind TCP STREAM TEST netperf: send_tcp_stream: tcp stream data socket send_tcp_stream: send_socket obtained...
 netperf: send_tcp_stream: requesting TCP stream test
 remote listen done.
 netperf: remote error %d netperf: send_tcp_stream: data socket connect failed netperf: data send error len was %d
 netperf: cannot shutdown tcp stream socket remote results obtained
 %6.3f %c %s
 Recv   Send    Send                          Utilization       Service Demand
Socket Socket  Message  Elapsed              Send     Recv     Send    Recv
Size   Size    Size     Time     Throughput  local    remote   local   remote
bytes  bytes   bytes    secs.    %-8.8s/s  %% %c      %% %c      us/KB   us/KB

 %6d %6d %6d    %-6.2f     %7.2f   %-6.2f   %-6.2f   %-6.3f  %-6.3f %s
 %7.2f %s
 Recv   Send    Send                          
Socket Socket  Message  Elapsed              
Size   Size    Size     Time     Throughput  
bytes  bytes   bytes    secs.    %s/sec  

 %6d %6d %6d    %-6.2f   %7.2f   %s
 
Alignment      Offset         %-8.8s %-8.8s    Sends   %-8.8s Recvs
Local  Remote  Local  Remote  Xfered   Per                 Per
Send   Recv    Send   Recv             Send (avg)          Recv (avg)
%5d   %5d  %5d   %5d %6.4g  %6.2f    %6d   %6.2f %6d
 Bytes 
Maximum
Segment
Size (bytes)
%6d
 TCP MAERTS TEST netperf: send_tcp_maerts: tcp stream data socket send_tcp_maerts: recv_socket obtained...
 netperf: send_tcp_maerts: requesting TCP maerts test
 netperf: send_tcp_maerts: data socket connect failed netperf: send_tcp_maerts: test must be timed send_tcp_maerts: data recv error netperf: cannot shutdown tcp maerts socket %6d %6d %6d    %-6.2f   %7.2f    %s 
 
Alignment      Offset         %-8.8s %-8.8s    Recvs   %-8.8s Sends
Local  Remote  Local  Remote  Xfered   Per                 Per
Recv   Send    Recv   Send             Recv (avg)          Send (avg)
%5d   %5d  %5d   %5d %6.4g  %6.2f    %6d   %6.2f %6d
 netserver: recv_tcp_stream: entered...
 recv_tcp_stream: setting the response type...
 recv_tcp_stream: the response type is set...
 recv_tcp_stream: requested alignment of %d
 recv_tcp_stream: receive alignment and offset set...
 recv_tcp_stream: got %g bytes
 recv_tcp_stream: got %d recvs
 recv_tcp_stream: test complete, sending results.
                  bytes_received %g receive_calls %d
                  len %d
 netserver: recv_tcp_maerts: entered...
 recv_tcp_maerts: setting the response type...
 recv_tcp_maerts: the response type is set...
 recv_tcp_maerts: requested alignment of %d
 recv_tcp_maerts: grabbing a socket...
 recv_tcp_maerts: receive alignment and offset set...
 recv_tcp_maerts: got %g bytes
 recv_tcp_maerts: got %d sends
 recv_tcp_maerts: test complete, sending results.
                  bytes_sent %g send_calls %d
 Local /Remote
Socket Size   Request  Resp.   Elapsed  Trans.
Send   Recv   Size     Size    Time     Rate         
bytes  Bytes  bytes    bytes   secs.    per sec   

 Local /Remote
Socket Size   Request  Resp.   Elapsed  
Send   Recv   Size     Size    Time     Throughput 
bytes  Bytes  bytes    bytes   secs.    %s/sec   

 TCP REQUEST/RESPONSE TEST netperf: send_tcp_rr: tcp stream data socket send_tcp_rr: send_socket obtained...
 netperf: send_tcp_rr: requesting TCP rr test
 netperf: data socket connect failed send_tcp_rr: data send error send_tcp_rr: data recv error Transaction %d completed
 Local /Remote
Socket Size   Request Resp.  Elapsed Trans.   CPU    CPU    S.dem   S.dem
Send   Recv   Size    Size   Time    Rate     local  remote local   remote
bytes  bytes  bytes   bytes  secs.   per sec  %% %c    %% %c    us/Tr   us/Tr

 Local /Remote
Socket Size   Request Resp.  Elapsed Tput     CPU    CPU    S.dem   S.dem
Send   Recv   Size    Size   Time    %-8.8s local  remote local   remote
bytes  bytes  bytes   bytes  secs.   per sec  %% %c    %% %c    us/Tr   us/Tr

 %-6d %-6d %-6d  %-6d %-6.2f  %-6.2f  %-6.2f %-6.2f %-6.3f  %-6.3f %s
 %-6d %-6d
 %-6d %-6d %-6d   %-6d  %-6.2f   %7.2f   %s
 Alignment      Offset         RoundTrip  Trans    Throughput
Local  Remote  Local  Remote  Latency    Rate     %-8.8s/s
Send   Recv    Send   Recv    usec/Tran  per sec  Outbound   Inbound
%5d  %5d   %5d  %5d   %-6.3f   %-6.3f %-6.3f    %-6.3f
 UDP UNIDIRECTIONAL SEND TEST udp_send: data socket send_udp_stream: remote data connection done.
 send_udp_stream: error on remote send_udp_stream: data socket connect failed send_udp_stream: connected data socket.
 Sorry, UDP_STREAM tests must be timed.
 udp_send: data send error send_udp_stream: remote results obtained
 %6.2f %c
 Socket  Message  Elapsed      Messages                   CPU      Service
Size    Size     Time         Okay Errors   Throughput   Util     Demand
bytes   bytes    secs            #      #   %s/sec %% %c%c     us/KB

 %6d  %6d   %-7.2f   %7d %6d    %7.1f     %-6.2f   %-6.3f
%6d           %-7.2f   %7d           %7.1f     %-6.2f   %-6.3f

 %7.2f
 Socket  Message  Elapsed      Messages                
Size    Size     Time         Okay Errors   Throughput
bytes   bytes    secs            #      #   %s/sec

 %6d  %6d   %-7.2f   %7d %6d    %7.2f
%6d           %-7.2f   %7d           %7.2f

 netserver: recv_udp_stream: entered...
 recv_udp_stream: setting the response type...
 recv_udp_stream: the response type is set...
 recv_udp_stream: requested alignment of %d
 recv_udp_stream: receive alignment and offset set...
 recv_udp_stream: grabbing a socket...
 recv_udp_stream: about to enter inner sanctum.
 recv_udp_stream: connected data socket
 recv_udp_stream: got %d messages.
 recv_udp_stream: test ended in %f seconds.
 recv_udp_stream: got %d bytes
 recv_udp_stream: test complete, sending results.
 UDP REQUEST/RESPONSE TEST netperf: send_udp_rr: udp rr data socket send_udp_rr: send_socket obtained...
 netperf: send_udp_rr: requesting UDP r/r test
 send_udp_rr: data send error send_udp_rr: data recv error %6.3f %c
 %-6d %-6d %-6d  %-6d %-6.2f  %-6.2f   %-6.2f %-6.2f %-6.3f  %-6.3f
 %-6d %-6d %-6d   %-6d  %-6.2f   %7.2f   
 netserver: recv_udp_rr: entered...
 recv_udp_rr: setting the response type...
 recv_udp_rr: the response type is set...
 recv_udp_rr: requested recv alignment of %d offset %d
 recv_udp_rr: requested send alignment of %d offset %d
 recv_udp_rr: receive alignment and offset set...
 recv_udp_rr: grabbing a socket...
 recv port number %d
 recv_udp_rr: Transaction %d complete.
 recv_udp_rr: got %d transactions
 recv_udp_rr: test complete, sending results.
 netserver: recv_tcp_rr: entered...
 recv_tcp_rr: setting the response type...
 recv_tcp_rr: the response type is set...
 recv_tcp_rr: requested recv alignment of %d offset %d
 recv_tcp_rr: requested send alignment of %d offset %d
 recv_tcp_rr: grabbing a socket...
 recv_tcp_rr: accept completes on the data connection.
 zero is my hero
 yo5
 yo6
 recv_tcp_rr: got %d transactions
 recv_tcp_rr: test complete, sending results.
 are cpus is cpu %g 
There %s %d local %s
 
There %s %d remote %s
 TCP Connect/Request/Response TEST send_tcp_conn_rr: send_socket obtained...
 netperf: send_tcp_conn_rr: requesting TCP crr test
 remote port is %u
 port %d
 netperf: send_tcp_conn_rr: tcp stream data socket 	attempted to connect on socket %d to port %d  from port %d 
 send_tcp_conn_rr: data send error send_tcp_conn_rr: data recv error Transaction %d completed on local port %d
 WARNING WARNING WARNING  WARNING WARNING WARNING  WARNING!
 Local CPU usage numbers based on process information only!
 DANGER  DANGER  DANGER    DANGER  DANGER  DANGER    DANGER!
 Remote CPU usage numbers based on process information only!
 %6.3f
 Local /Remote
Socket Size   Request Resp.  Elapsed Trans.   CPU    CPU    S.dem   S.dem
Send   Recv   Size    Size   Time    Rate     local  remote local   remote
bytes  bytes  bytes   bytes  secs.   per sec  %%      %%      us/Tr   us/Tr

 
Alignment      Offset
Local  Remote  Local  Remote
Send   Recv    Send   Recv
%5d  %5d   %5d  %5d
 netserver: recv_tcp_conn_rr: entered...
 recv_tcp_conn_rr: setting the response type...
 recv_tcp_conn_rr: the response type is set...
 recv_tcp_conn_rr: requested recv alignment of %d offset %d
 recv_tcp_conn_rr: requested send alignment of %d offset %d
 recv_tcp_conn_rr: receive alignment and offset set...
 recv_tcp_conn_rr: grabbing a socket...
 could not create data socket
 could not listen
 could not getsockname
 telling the remote to call me at %d
 recv_tcp_conn_rr: accept: errno = %d
 recv_tcp_conn_rr: accepted data connection.
 recv_tcp_conn_rr: Transaction %d complete
 recv_tcp_conn_rr: got %d transactions
 recv_tcp_conn_rr: test complete, sending results.
 TCP Connect/Close TEST send_tcp_cc: send_socket obtained...
 netperf: send_tcp_cc: requesting TCP crr test
 remote port is %d
 netperf: send_tcp_cc: tcp stream data socket  from port %u 
 Transaction %d completed on local port %u
 send_tcp_cc: data recv error netserver: recv_tcp_cc: entered...
 recv_tcp_cc: setting the response type...
 recv_tcp_cc: the response type is set...
 recv_tcp_cc: requested recv alignment of %d offset %d
 recv_tcp_cc: requested send alignment of %d offset %d
 recv_tcp_cc: receive alignment and offset set...
 recv_tcp_cc: grabbing a socket...
 could not geetsockname
 recv_tcp_cc: accept: errno = %d
 recv_tcp_cc: accepted data connection.
 recv_tcp_cc: Transaction %d complete
 recv_tcp_cc: got %d transactions
 recv_tcp_cc: test complete, sending results.
 %s called with the following argument vector
 %s  This netperf was not compiled on an IPv6 capable host!
 Initial request burst functionality not compiled-in! Local send copy avoidance not available. Local recv copy avoidance not available. b:CDnNhH:L:m:M:p:P:r:s:S:T:Vw:W:z46 STREAM SENDFILE discard echo MAERTS chargen No default port known for the %s test, please set one yourself
 UIPTLRNKSCEMO         A      @      @      @      @      @      0A      @      @      @      @      @      @      @      @      @      @      @      @      @      @      @      @      @      @      @      @      @      @      @      @      @    e͝A      @      @      @     @_@      @    @  scan_sockets_args                          ,    ,    &    .    &                                                                                      l                        oU             H           X  
        D	                       !                                  o                                                         %  p $       `     $              
     H X l P |      8 @ h 0                x t                                                           d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d        $      $?             $      $   
Usage: netperf [global options] -- [test options] 

Global options:
    -a send,recv      Set the local send,recv buffer alignment
    -A send,recv      Set the remote send,recv buffer alignment
    -B brandstr       Specify a string to be emitted with brief output
    -c [cpu_rate]     Report local CPU usage
    -C [cpu_rate]     Report remote CPU usage
    -d                Increase debugging output
    -D [secs,units] * Display interim results at least every secs seconds
                      using units as the initial guess for units per second
    -f G|M|K|g|m|k    Set the output units
    -F fill_file      Pre-fill buffers with data from fill_file
    -h                Display this text
    -H name|ip,fam *  Specify the target machine and/or local ip and family
    -i max,min        Specify the max and min number of iterations (15,1)
    -I lvl[,intvl]    Specify confidence level (95 or 99) (99) 
                      and confidence interval in percentage (10)
    -l testlen        Specify test duration (>0 secs) (<0 bytes|trans)
    -L name|ip,fam *  Specify the local ip|name and address family
    -o send,recv      Set the local send,recv buffer offsets
    -O send,recv      Set the remote send,recv buffer offset
    -n numcpu         Set the number of processors for CPU util
    -N                Establish no control connection, do 'send' side only
    -p port,lport*    Specify netserver port number and/or local port
    -P 0|1            Don't/Do display test headers
    -r                Allow confidence to be hit on result only
    -t testname       Specify test to perform
    -T lcpu,rcpu      Request netperf/netserver be bound to local/remote cpu
    -v verbosity      Specify the verbosity level
    -W send,recv      Set the number of send,recv buffers
    -v level          Set the verbosity level (default 1, min 0)
    -V                Display the netperf version and exit
 
For those options taking two parms, at least one must be specified;
specifying one value without a comma will set both parms to that
value, specifying a value with a leading comma will set just the second
parm, a value with a trailing comma will set just the first. To set
each parm to unique values, specify both and separate them with a
comma.

* For these options taking two parms, specifying one value with no comma
will only set the first parms and will leave the second at the default
value. To set the second value it must be preceded with a comma or be a
comma-separated pair. This is to retain previous netperf behaviour.
      
Usage: netperf [global options] -- [test options] 

TCP/UDP BSD Sockets Test Options:
    -b number         Send number requests at start of _RR tests
    -C                Set TCP_CORK when available
    -D [L][,R]        Set TCP_NODELAY locally and/or remotely (TCP_*)
    -h                Display this text
    -H name,fam       Use name (or IP) and family as target of data connection
    -L name,fam       Use name (or IP) and family as source of data connection
    -m bytes          Set the send size (TCP_STREAM, UDP_STREAM)
    -M bytes          Set the recv size (TCP_STREAM, UDP_STREAM)
    -n                Use the connected socket for UDP locally
    -N                Use the connected socket for UDP remotely
    -p min[,max]      Set the min/max port numbers for TCP_CRR, TCP_TRR
    -P local[,remote] Set the local/remote port for the data socket
    -r req,[rsp]      Set request/response sizes (TCP_RR, UDP_RR)
    -s send[,recv]    Set local socket send/recv buffer sizes
    -S send[,recv]    Set remote socket send/recv buffer sizes
    -4                Use AF_INET (eg IPv4) on both ends of the data conn
    -6                Use AF_INET6 (eg IPv6) on both ends of the data conn

For those options taking two parms, at least one must be specified;
specifying one value without a comma will set both parms to that
value, specifying a value with a leading comma will set just the second
parm, a value with a trailing comma will set just the first. To set
each parm to unique values, specify both and separate them with a
comma.
        GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"netperf OY .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .rodata .ARM.extab .preinit_array .init_array .fini_array .dynamic .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                  4  4                             H  H                         X  X                   #         D	  D	  X               )   	                         2   	      l  l                6         d  d                   ;         p  p                   A         x  x                    U     p                       `             %C                 h                               s                                                                                                                                       p                                d                          h  d                         0       d                                 t                         p          6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ELF          (      4   ,     4    (      4   4   4                  4  4  4                                          8  8  8    !           P  P  P              Qtd                             pP  P  P  H  H        Rtd8  8  8            /system/bin/linker                                
                            !              (              5              <              E              K              R              W              ]              n                                                                                                                                                                                                                                                         #             *             1             <             C             K             R             W             ^             e             m             r             y                                                                                                                                                                                                                                                                                 &             6             ;             B             I             P             U             \             i             t             |                                                                                                                                                 ȱ         ȱ         ,        __libc_init __cxa_atexit strcpy fflush __strlen_chk getpid snprintf fopen perror exit chmod __stack_chk_fail __stack_chk_guard __aeabi_unwind_cpp_pr1 fclose close fileno dup fputs fprintf __sF __isthreaded __aeabi_unwind_cpp_pr0 memset getaddrinfo sleep gai_strerror socket setsockopt bind listen setsid bsd_signal accept __errno printf fork strlen malloc strncpy atoi getopt getsockname optarg sysconf sigaction alarm strchr fread feof rewind shutdown select recv fcntl send getsockopt connect strerror freeaddrinfo uname gettimeofday __aeabi_idiv __aeabi_idivmod sqrt strstr fwrite strtod puts optind __strcpy_chk strcasecmp putchar getprotobyname sprintf inet_ntop fputc __aeabi_ul2d __aeabi_uidiv sendto recvfrom srand48 lrand48 strcmp _edata __bss_start _end libc.so libstdc++.so libm.so   C   X       J          L   #       1   8   7   U   A              T       3      @   9      S                  =       W   K   /   D   M   E       H       N   (         6   2   :   <          -   V   4   ,       R                      G       >   P                                                                                                                                                        "   	                            !              $   %                                     &          0   
   +   ?   B           )   
       '   .       C   5       I   O           F   *   Q      ;   H     L     P     T     \     `     d     h     t     x     |                                                                                     Į     Ȯ     ̮     Ю     Ԯ     خ     ܮ                                                   X  
  l    p      ,                       $    (    ,    0  	  4  
  8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x     |  !    "    #    $    %    &    '    (    )    *    +    -    .    /    1    2    3    4  į  5  ȯ  6  ̯  8  Я  9  ԯ  >  د  0  ܯ  B    C    K    ;    J    ?    Q    :    P  -D   Ə	ʌD Ə	ʌ< Ə	ʌ4 Ə	ʌ, Ə	ʌ$ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ| Ə	ʌt Ə	ʌl Ə	ʌd Ə	ʌ\ Ə	ʌT Ə	ʌL Ə	ʌD Ə	ʌ< Ə	ʌ4 Ə	ʌ, Ə	ʌ$ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ Ə	ʌ| Ə	ʌt Ə	ʌl     H-MP00L   D   <      K   0 01T  DHLP H-M   00 % 0 K 蔞  ]'L'K
R|D%NX(h`$IyD6Y h6OQ8OQF2F4J
QzDF 0IyD0 `0HxD0 4Oq4
Sh)hB2
]   TX>  >  >  {>  -GoLpK|DX(hmODDD8kIbXh
* *+*@*f
*@𧀐"* * *@𜀗^* @𔀉YN )hY` )@*`Z p(hA)`PN"Y` (h (LI4fX0hT
 T0@FIF0`EHxD 0BHxD  T0h0h 0h08HxD1N  Y2``F4HT  `.h .A/HT`xD1h:
  )I yD0hS0+0h6$7U8ROLLI\FCIfX9F0hn0h,@2T0Z` 0   \?  #>  	>  `dXh{=  =  l=  p=  =  -OFL
FK|DOF&X"h1YhFpIRF+FfXI6 yD0F 0F "	 !D'"(	PF)F	(F  XJHFX3FF ? ఱHRFI+F$XyD 4 F0FI2FyDF FO 0YC  RF+FHIJxDyDzD>*F ! " AFщHxDt0Fx#! "0  b0F 0 Y!0F0@J іpHxDpHpIxDyD6FnHxD(FR0kHxD.qiJXhF 8FFJ0cHxD 60`HxD_M gY:h 8h*.0XHxDXHXIxDyDFVHxD 0SHxD 0 (F0LHxDF !H0FJFIgX8`0HhCHxDJ	! 2HB D0F8h  9@F5N _74I+FYyD 8F8FO0&@F M*FQFF+HxD8FpT l hCF?; (?;   T\h<  =  <  	=  <  @=  l=  <  =  :  =  =  *=  l+=  :  X.=  %:  :  S=  m=  w=  t=  xg=  =  -O]xKFD 
Q"[@1 h`8h0I[ `H8hAHxD L
	9hM [I"N $yD@F[PI
"$,`yD[`D0Fd(?(4(c6({bL(V(vln(-h(pp(Jv(kU AuH[ 
hS``sL
B[hIF b   @FIF"T$ *J
@ l(`DeH[ hJcJ[0`8aMOr`I[`yD60F]H1FxD0Fp TL0F
"[0h #  #+`4[0hNI[ `MHMIxDyD  $ 9FRFCrFO
 D9F6OQ
 <OQF
 4F8<J
QzDF	 27I
 yD25K[` 4HxD08FOq6 F:0hX* F'I0F
"yD@F1F*h#O[ `
Q1
hhB	
]>  T|<  <  <  <=  \h<  ,<  <  ,<  6  6  6  Xy6  :  t8(K{D(*XHS@xD!h h JLXhB
`Y2!hq
HX
HxDMH]YxD)h(hv##`8 ^  X:  :  :  ((HxDpGHxDpGHxDpG :  :  :  J(zDF(	HxDITX !J FzDN FHxD   :  :  :  ((HxDpGHxDpGHxDpG:  :  :  KJ{D0X "#hciFy\T2q;* 	  #hB &0 D  Ta 
L|DFKIXyDOs h0	H!hxD$ h    X@:  o:  F%L&K|DXhQ$J%IXyD*F0h
0h!K "O PiF {D  (NHYxD!h%h8IyDh(F h (FjhMeY.h"
IyDh0F(h~
I"cX`  \X:  	:  :  :    {  J #IzDRXB#03pG֏  zLK|DHJX!XOT1)`HXYJt3`!XX`7FT F ~CsEJXhI:h(hyDvI(hyD2hp(h@7      Xh`d\:  0:  -OhYKDZ VIhyD
	hIh	 PIZ xUNIyDF0LHxD" $O	XB'F	j tF8AH!xD\ Fd p`	3  *;!+F@F!ZFzF-HZ 
h@(F p  0  (F n D 
8 4!nBȿ $E		2`E:`8F
hBz   T$:  4  9  9  l-ON%K $~DHtXxDD9htHV  0( ^Y
	5 XXAF"F8hS$04T@,8h	Ov  X8  8  -ON%K $~DHtXxDD9h,HV  0( ^Y
	5 XXAF"F8hS$04@,8h	Oо  X8  8  𵥰3L4K|DXhI2J3HXxD)h(h/N!~D0h0)OY4h$*I*JyDzDh F0h| 1 !"<%7h
 %{' @,O` *F+FXBNY%hIJyDzDh(F hJ8Fj
HOr+F!X0h@%\  \X8  8  8  8  :8  j8  d	K
J{DXhYLHYxD!hh h@5d  \X+8  )L)K|DXhF*	'I@"eX&I(hyDP$O %YhSYSQ51hO)YNHYxD1h0I0h*FyD;F.0hH #9FOrxD hFHxDJIXyD*F h  *  \X8  d8  8    8  8  -GOxAL %AK|DXDF #  9FBF7J #XhX?P33JX8hh2I*FT1I  yD  hr
*JX&h)I*JyDzDh0F$;hK!M%HgYxD9h8hJ!HxDh3  d-+N*FIYyD h h0 +J XC` !G N  `F  \XJ8  R6  U8  Y8    W8  -GFDLDK )OO|D *F
FX7!BF !^ (9NYhF8M}D7M}Dt6I*FyDh8F&0h 8h(+JXhF-JzD,JzD,IyD   BF3FA
HF ! (JX F|DxD6IBFyDhPF  O11`8hJX hJzDJzDI3hyD hx    \X8  8  8  o8  s8  8  +8  -8  8  8  8  8  -OF0IFFyD-I:F0FyD,O(F*IDyDDDF0F8bi0F
IF9FBF~`h FhFh +FRF0F!iIyDfi(xFx )yhyyyIyD0FPi ,0FOy8  8  8  8  8  8  i8  {8  8F
LKJ|DXX셱I yD`$T0`8@ֻ8 ҆    FL|DKHX!X(FIjh(FfXshB)ht,rj`J*`hj@h1h:
R*IbX
p    $tI  -
}LK "|DX`HI#X`dX݄  
!z za ` h       pp
F,!FFTHF #p (  p #\T3 )p-AF)L)F)K
"|DX0hFhF%IbXhC$HjF+F!Xh"IyD^!IhFyD& hF4!FIhFyDFȹhF0!F0FJIXyD*F h<H!hxD2 h 8F 0B V  T\X>  >  >  >  >  pOqLM|D}D FK!X3F Fp@Һ    hBhK*{DуiX@I\XI hyD hO0 X  XA  -OF< )KFFDFZ hFI8FZ@ =FFI2FyD+FHF hR ! "DO		D
0F)F(F  `XFZ0hxh& 	 _I+F2FZ_I yD  f F PxZI"FyDF(FZ  O0"THPxDD8 B 0DcEIZ  h4h0ɱ B  DhYFZ0hh  2K{Dh)HB`Z .H xD,H xD*H xD  %K{DhHB`Z @H!hxDH!hxDH!hxD ht 0K	J+FZ2F h   \XA  '(  A  (  A  A  V  mA  A  A    A  A  A  8FIFyD4I F*FyD8@a q)  B  -GF0'~L|DCF({NY  hhFhFhF h6oIBF3FyD HFN h8FhKX9hidJgITyD2F  :  aJ !aHzD#X0Fh_J|0FzD!T0h[Kp  X[K`T `Xhph)+" C- 0F.0FJT HMIyDhHF  ;h+<IGHTxD   BHxDh"AH
 O	xDH!" F0FhCF08HxDHF8h0$J4HXxDh!" 0F! (HT  )IyDhHF  N0Fi*i (:hOY'hIyDh8F(F'hIyDF8F h.0F `  XA  \A      }A  A  
  =  A  A  A  A  A      -O-D]MK}DIXh<lX&hFNOHYxD!h0 h 0KJHXxD1h$0hH! p,X!`_<HU`xD1h0h8 0U
`SJIXyDri8h8hIJhyDhzDO``Yij`JUp;`3kX`3l	+D   "OkE0l(D 0  #O' "FO @F0hg`W@FKIH3iUU + 0 +ؿOSJ 0XhFh   C 0+т     rii8 aHU H xDx  &!8F0h8Ff`T
 88F
#
0 > R3j  gz!b	z``3"pjba`b cauI  hX`hh	a ahh 0bb`"8F
/
n?F8F0jKO 

C  


h8 XF   #h (!XF0Dhe`0j  S+IIUyD  FI  RFyD  Qk@K

X<Hh!b+X1jhbb  a  L5H,YxD!h3IS+ yD h/I h "yD hRCXF8F<%hBrQ
m                T\X;I  II  dRI  `^I  (  (  7g  g  xH  G  G  pbG  G  G  -O-D]MK}DIXh<%oX<hLNHYxD!h. h;hKH.XH1hxD"0hJ_!;hX!`KH.XH1hxD0h9hU`iJIUyDri    ;hcHU H xD  JhzDHh`xDI`ihXLj`JU	`3kX`3l	+4D   "Ok50l(D 0  #O! "FO 0?Fhf`F@FNHI3iU U+ 0 +ؿOSJ 0XU0hFa hpA )0  i   ri#;hcJHUxD d  !XF0hXFg`@ $!XF

0 > @1j "sz#b	zb`1 `apjq`b aa 0ahh	`#ahh  bb`j!
0jXF/
V?FXFoH "TF+X`HFh   0B (:h*
h8 h +!HF|0he`zHF  h #z0j8h8IS+UJI  yDHI  BFyD  \Q?2j

  a;hñ#N9HYxD1h7IS+ yD0h4I0hyD0h.0H)X
h"bU0h`bHF\XFX<%hBDQ
m             z  T\XF  F  dF  `G  
G  
}  }  c  b   F  D  E  D  E  eC  p-OD]8D84|D8Xh<%gX=h](d(YxD)h(h;h+&X1hxD0hJ!;hX+)`	H&XH1hxD0h:hI*fXăIriTyD    vēT	0h"`hhriii9h)
HT
xD   V;h+HT H xD  FJhpzDj`HT`3k"XH`xD3iF`k+PD   "Oskk)8D0  #O"OO 	F?F j#	ja	0h@Fl`. > @2jzaz*#pj+agaHjJT  XIh`bXhh  )b`jb0jT
   #0 09haJHTxD   K{Dh (5"


	@F ZFh #XEFа?  h( >@F
hIF
0 {;hiHT }H xD  fFF+O	(h;@FcFhZFX@F ZFhXEFа?h)ho`I		haIyD  :hbEHJF\I#XyDhvh0j`h@ 
zw@

;h
2IbXJIyDhS0+P h;h	k)IRFTAI  yD>  "PF*` `9J(aT0haX2jha[ha 8h(H.HT@xD!h h@F<%hBQ
m    v  T\XnM  vM  dM  `M  {M  M  Zx  Nx  q^  S^  nL  "w  &L  Nv  K  K  K  pdK  -OD]MK}DIXh<%oX<hLNHYxD!h hJ;hKH.XH1hxD0h>J!<hX1`\hHU@xD!h~ h,H;h,XJIciUyD"i  rI  yDiij  IkXhF"`IkXh"`h!j"ici ajii  9hiHU	xD 8  ;hcHU H xD(  JhzDHh`xDI`ТhXkkF`U
`Fcl+D   "O#ls`l(D 0  # "O OFp?F њ"

^0*hHFu`z > FI8ha`{IUI  yD  ljpz "z2a+ 0a k0bIHjXha)X 0  
hsbb`BjiakxJ )UO 
 x 
# 0"/ !

O kHxD	J/
 HF"j #hd"jB
h+jY  )7>/
hHF bjh #PajBhw`nh 
:;h[4IBFhX	 h8h  )к ѿ 
zw@

8hh%J;IUyDBF    !jcj3I pa`kX1Ih2bkXjhrb5a8hHL+H,YxD!h hHF<%hBQ
m    q  T\X L  
L  dL  `L  BL  !L  1L  |s  xs  Y  uY  K  	K  hJ  p>J  -OL]PTP4}DPXhDlX
&hF^<t<YxD!h~ h, 0[ $$XxD1hn0h! p.X1`WL/YxD9h\8h
 0U@JIciXyD"i8hNI8hyDiiH8hH)Xh"
`OY8h#;`hiaji!j"ici8h 	IJHXxD9h8hKJh{DhzDO``YjIF`koXk:`U	`Fcl+hD   "Q#la`l(LD 0  #Q"'F O \A  hp`!0hu`f8F!40 F0[jzaz"7a k0bOHYh a*X`hh  `gkpbbwa0!1?Fj 0KH/XH9hxDr8h j;IbkkX *
 '`LJO zD 8`WB	 . #JF@FqFBFh)"h\ gHU  ,  "F		   "F "O	"F	h	 ъO	 0 +>OJfHXxD9h 8h3@FKFhbj0>h/O	YHUpxD9h8hOxuu` h?h +?v /sFj

 б 

zw@

 Q&HZF>I/XyD8h8hZ"jcj8J`
paX5Jh1bXjhqba  HL/H,YxD!h h6@Fpl"
D%hBVS
m     m  T\XI  I  dI  `I  I  I  `o  `o  oU  QU  |H  H  G  G  DG  pG  -OL]D4|DXhD%gX	=h]dYxD)h(h;h[&X1hxD0h$#!=hX1`exTPxD)h(hO0NF8hO1xD2O\;h%X˱8$PkiTyD*i  @  yDii  p)iKJB	 ii 
i
BCB	i9h iHTxD   J;hcHT H xD  <JhzDHh`xDI`j`Xk`FTJ`FXkF`kl+D   "Q+lhl(D 0  # ! " QF{?Fhs`=h - OHYxD!h6 h!f0z hp`XF:h * 𓀲IHdXxD!XF0^hXFu`?h /xХNHYxDF R;ha[H!XhIyDhj #zs`z(!(k1a!0bJIXhabX   h  qb`b`sj#IhkbX (0O 	  	#`HO JxD
zDXF10 h( qOY5hIyDh(F0hBXF| `8hXfJ
T   . qFRF$Ch+h-

 hK NIjHTxD #jj0h*aHTxD <  'c$t` 	99ha6HBFT   &  h )?g cO	j
  б 

zw@

:hrBF<IT	yD    )jkjj 
pa`a;hKH$X.H!hxD hu	D%hBS
m    h  T\XjJ  uJ  dJ    `lJ  J  J  J  Fj  Bj  SP  5P  J  I  I  I  I  I  =I  B  aB  uH  `H  -OD]LK|DIXh<%gX=hMNHYxD)hd(h;hKH&XH1hxDX0hJ@-=hX1`]HTPxD)hD(hO00HO1xD7H;h%XJIkiTyD*i  ,I  yDii$  9hi8HT	xD   ;hcHT H xD   JhzDHh`xDI`j`X k`FT
J`FXkF`kl+D   "O+lEhl(D 0  # ! " OFC?Fhs`Y=h - 𲀚OHYxD!h hX!0 hp`PF<:h * 𕀋IHdXxD!PF

0hPFu`l!?h /z~NHYxD> R;ha[xH!XhIyDjhj #mzs`z(!(k1a0bJIXhabX   h  qb``bj#

hkwI (T0O 	 rKO qH{DxD	P" 	  
PF/bBFbh*O	BIOY&hXbIyDh0F
 hPF :hb>H!X	hhF 	9:hZ2HBF!Xh	h  )й j б 
zw@

8hhIBFT9I  yD  ^*jkjj pa`a;hKH$X,H!hxD hD5<%hBjQ
m    dc  T\XH  H  dH  
  `H  H  H  I  *e  &e  7K  K  D  D  H  D  G  G  MG  G  F  pG  pG   HpG  xGF |xGF ిxGF xGF          Android            в    в    в    в    Ҳ    Ҳ    в    p($2<|00H$<l8tlhɀl,T(<   /tmp/netperf.debug _%d w netserver: debug file /dev/null netserver: reopening debug fp for writing: /dev/null netserver: closing stdout file descriptor netserver: duplicate /dev/null write file descr. to stdout netserver: sending CPU information: rate is %g num cpu %d
 unknown test number %d
 set_up_server called with host '%s' port '%s' remfam %d
 Sleeping on getaddrinfo EAI_AGAIN
 set_up_server: could not resolve remote '%s' port '%s' af %d 
	getaddrinfo returned %d %s
 Starting netserver at port %s
 set_up_server could not allocate a socket warning: set_up_server could not set SO_REUSEADDR warning: set_up_server failed a bind or listen call
 netperf server error r netserver: opening for reading: /dev/null netserver: closing stdin file descriptor netserver: duplicate /dev/null read file descr. to stdin netserver: duplicate the debug write file descr. to stdout netserver: opening for writing: /dev/null netserver: closing stderr file descriptor netserver: dupicate /dev/null write file descr. to stderr server_control: accept failed errno %d
 set_up_server could not establish a listen endpoint for %s port %s with family %s
 Starting netserver at hostname %s port %s and family %s
 malloc(%d) failed!
 0.0.0.0 12865 netserver: This version can only support %d CPUs. Please            increase MAXCPUS in netlib.h and recompile.
 Netperf version %s
 2.4.4 dL:n:p:v:V46 netperf: caught SIGINT
 catcher: timer popped with times_up != 0
 catcher: interval timer running unexpectedly!
 SOCK_DGRAM SOCK_STREAM SOCK_UNKNOWN IPPROTO_TCP IPPROTO_UDP IPPROTO_UNKNOWN(%d) AF_INET AF_INET_SDP AF_UNSPEC Sorry, this system has more CPUs (%d) than I can handle (%d).
 Please alter MAXCPUS in netlib.h and recompile.
 installing catcher for all signals
 Could not install signal catcher for sig %d, errno %d
 About to start a timer for %d seconds.
 start_timer: error installing alarm handler  errno %d
 error starting alarm timer, errno %d
 netlib_init: request_array at %p
 netlib_init: response_array at %p
 Could not open requested fill file malloc(%u) failed!
 netperf This was here to try to avoid dead-code elimination %d
 request contents:
 %d:	%8x %8x %8x %8x 	|%4.4s| |%4.4s| |%4.4s| |%4.4s|
 response contents
 %d:	%8x %8x %8x %8x 	>%4.4s< >%4.4s< >%4.4s< >%4.4s<
 %-7.2f KBytes MBytes GBytes 10^3bits 10^6bits 10^9bits Trans shutdown_control: shutdown of control connection requested.
 %s  errno %d
 shutdown_control: error in shutdown shutdown_control: no response received Processor affinity not available for this platform!
 entered send_request...contents before htonl:
 send_request...contents after htonl:
 
send_request: about to send %u bytes from %p
 send_request: send call failure send_response: contents of %u ints before htonl
 send_response: contents after htonl
 about to send %u bytes from %p
 send_response: send call failure BytesSent: %d
 recv_request: received %d bytes of request.
 recv_request: error on recv recv_request: remote requested shutdown of control
 recv_request: partial request received of %d bytes
 netperf: receive_response: no response received. errno %d counter %d
 recv_response: received a %d byte response
 recv_response recv_response: partial response received: %d bytes
 hello world
 debug: %d
 SO_SNDBUF SO_RCVBUF send receive netperf: set_sock_buffer: %s option: errno %d
 netperf: set_sock_buffer: %s of %d requested.
 netperf: set_sock_buffer: getsockopt %s: errno %d
 netperf: set_sock_buffer: %s socket size determined to be %d
 getaddrinfo returned the following for host '%s'  port '%s'  family %s
 	cannonical name: '%s'
 (nil) 	flags: %x family: %s: socktype: %s protocol %s addrlen %d
 	sa_family: %s sadata: %d %d %d %d %d %d
 establish_control called with host '%s' port '%s' remfam %s
 		local '%s' port '%s' locfam %s
 establish control: could not resolve remote '%s' port '%s' af %s Sleeping on getaddrinfo(%s,%s) EAI_AGAIN count %d 
 establish control: could not resolve local '%s' port '%s' af %s establish_control: unable to allocate control socket bound control socket to %s and %s
 successful connection to remote netserver at %s and %s
 establish_control: connect failed, errno %d %s
     trying next address combination
 establish_control: bind failed, errno %d %s
 establish control: are you sure there is a netserver listening on %s at port %s?
 establish_control could not establish the control connection from %s port %s address family %s to %s port %s address family %s
 identify_local: uname %-15s%-15s%-15s%-15s%-15s Local Information 
Sysname       Nodename       Release        Version        Machine
 %s
 identify_remote: on remote Remote Information 
Sysname       Nodename       Release        Version        Machine
 WARNING calc_throughput_internal_omni: unknown units %c
 calc_service_demand called:  units_sent = %f
                              elapsed_time = %f
                              cpu_util = %f
                              num cpu = %d
 calc_service_demand using:   units_sent = %f
 calc_service_demand got:     thruput = %f
                              servdem = %f
 msec_sleep: select calculate_confidence: itr  %d; time %f; res  %f
                                lcpu %f; rcpu %f
                                lsdm %f; rsdm %f
 Conf_itvl %2d: results:%4.1f%% loc_cpu:%4.1f%% rem_cpu:%4.1f%%
 !!! WARNING
 !!! Desired confidence was not achieved within  the specified iterations.
 !!! This implies that there was variability in  the test environment that
 !!! must be investigated before going further.
 !!! Confidence intervals: Throughput      : %4.1f%%
 !!!                       Local CPU util  : %4.1f%%
 !!!                       Remote CPU util : %4.1f%%

 Attempting to parse address family from %s derived from %s
 inet unspec WARNING! %s not recognized as an address family, using AF_UNPSEC
 Are you sure netperf was configured for that address family?
  TCP_STREAM 0 Sorry, Demo Mode not configured into this netperf. please consider reconfiguring netperf with --enable-demo=yes and recompiling Only 95%% and 99%% confidence level is supported
 I don't know how to get dirty. Packet rate control is not compiled in.
 Packet burst size is not compiled in. 
 Unable to malloc space for result brand
 This netperf was not compiled on an IPv6 capable system! A:a:b:B:CcdDf:F:H:hi:I:k:K:l:L:n:NO:o:P:p:rt:T:v:VW:w:46 localhost Netperf does not understand %d as an address family
 TCP_MAERTS TCP_RR TCP_CRR TCP_CC UDP_STREAM UDP_RR RR rr Rr rR Program name: %s
 Local send alignment: %d
 Local recv alignment: %d
 Remote send alignment: %d
 Remote recv alignment: %d
 Report local CPU %d
 Report remote CPU %d
 Verbosity: %d
 Debug: %d
 Port: %s
 Test name: %s
 Test bytes: %d Test time: %d Test trans: %d
 Host name: %s
 Unexpected Address Family of %u
 we never expected to get here in get_address_address
 tcp netperf: get_tcp_info: getsockopt TCP_MAXSEG: errno %d
 complete_addrinfo using hostname %s port %s family %s type %s prot %s flags 0x%x
 complete_addrinfo: could not resolve '%s' port '%s' af %d WARNING! Changed bogus getaddrinfo socket type %d to %d
 WARNING! Changed bogus getaddrinfo protocol %d to %d
 WARNING! getaddrinfo returned a socket type which did not
 match the requested type.  Please contact your vendor for
 a fix to this bug in getaddrinfo()
 WARNING! getaddrinfo returned a protocol other than the
 requested protocol.  Please contact your vendor for
 local_data_address not set, using local_host_name of '%s'
 local_data_address not set, using address family info
 what to put here? %u netperf: create_data_socket: socket: errno %d fam %s type %s prot %s errmsg %s
 create_data_socket: socket %d obtained...
 netperf: create_data_socket: nodelay: errno %d
 netperf: create_data_socket: [TCP|SCTP]_NODELAY requested...
 netperf: sendfile_tcp_stream: tcp_cork sendfile_tcp_stream: tcp_cork...
 netperf: create_data_socket: SO_REUSEADDR failed %d
 netperf: create_data_socket: data socket bind failed errno %d
  port: %d
  on result only  from %s (%s) port %u %s  to %s (%s) port %u %s  : +/-%3.1f%% @ %2d%% conf. %s  : nodelay  : copy avoidance  : no control  : cpu bind TCP STREAM TEST netperf: send_tcp_stream: tcp stream data socket send_tcp_stream: send_socket obtained...
 netperf: send_tcp_stream: requesting TCP stream test
 remote listen done.
 netperf: remote error %d netperf: send_tcp_stream: data socket connect failed netperf: data send error len was %d
 netperf: cannot shutdown tcp stream socket remote results obtained
 %6.3f %c %s
 Recv   Send    Send                          Utilization       Service Demand
Socket Socket  Message  Elapsed              Send     Recv     Send    Recv
Size   Size    Size     Time     Throughput  local    remote   local   remote
bytes  bytes   bytes    secs.    %-8.8s/s  %% %c      %% %c      us/KB   us/KB

 %6d %6d %6d    %-6.2f     %7.2f   %-6.2f   %-6.2f   %-6.3f  %-6.3f %s
 %7.2f %s
 Recv   Send    Send                          
Socket Socket  Message  Elapsed              
Size   Size    Size     Time     Throughput  
bytes  bytes   bytes    secs.    %s/sec  

 %6d %6d %6d    %-6.2f   %7.2f   %s
 
Alignment      Offset         %-8.8s %-8.8s    Sends   %-8.8s Recvs
Local  Remote  Local  Remote  Xfered   Per                 Per
Send   Recv    Send   Recv             Send (avg)          Recv (avg)
%5d   %5d  %5d   %5d %6.4g  %6.2f    %6d   %6.2f %6d
 Bytes 
Maximum
Segment
Size (bytes)
%6d
 TCP MAERTS TEST netperf: send_tcp_maerts: tcp stream data socket send_tcp_maerts: recv_socket obtained...
 netperf: send_tcp_maerts: requesting TCP maerts test
 netperf: send_tcp_maerts: data socket connect failed netperf: send_tcp_maerts: test must be timed send_tcp_maerts: data recv error netperf: cannot shutdown tcp maerts socket %6d %6d %6d    %-6.2f   %7.2f    %s 
 
Alignment      Offset         %-8.8s %-8.8s    Recvs   %-8.8s Sends
Local  Remote  Local  Remote  Xfered   Per                 Per
Recv   Send    Recv   Send             Recv (avg)          Send (avg)
%5d   %5d  %5d   %5d %6.4g  %6.2f    %6d   %6.2f %6d
 netserver: recv_tcp_stream: entered...
 recv_tcp_stream: setting the response type...
 recv_tcp_stream: the response type is set...
 recv_tcp_stream: requested alignment of %d
 recv_tcp_stream: receive alignment and offset set...
 recv_tcp_stream: got %g bytes
 recv_tcp_stream: got %d recvs
 recv_tcp_stream: test complete, sending results.
                  bytes_received %g receive_calls %d
                  len %d
 netserver: recv_tcp_maerts: entered...
 recv_tcp_maerts: setting the response type...
 recv_tcp_maerts: the response type is set...
 recv_tcp_maerts: requested alignment of %d
 recv_tcp_maerts: grabbing a socket...
 recv_tcp_maerts: receive alignment and offset set...
 recv_tcp_maerts: got %g bytes
 recv_tcp_maerts: got %d sends
 recv_tcp_maerts: test complete, sending results.
                  bytes_sent %g send_calls %d
 Local /Remote
Socket Size   Request  Resp.   Elapsed  Trans.
Send   Recv   Size     Size    Time     Rate         
bytes  Bytes  bytes    bytes   secs.    per sec   

 Local /Remote
Socket Size   Request  Resp.   Elapsed  
Send   Recv   Size     Size    Time     Throughput 
bytes  Bytes  bytes    bytes   secs.    %s/sec   

 TCP REQUEST/RESPONSE TEST netperf: send_tcp_rr: tcp stream data socket send_tcp_rr: send_socket obtained...
 netperf: send_tcp_rr: requesting TCP rr test
 netperf: data socket connect failed send_tcp_rr: data send error send_tcp_rr: data recv error Transaction %d completed
 Local /Remote
Socket Size   Request Resp.  Elapsed Trans.   CPU    CPU    S.dem   S.dem
Send   Recv   Size    Size   Time    Rate     local  remote local   remote
bytes  bytes  bytes   bytes  secs.   per sec  %% %c    %% %c    us/Tr   us/Tr

 Local /Remote
Socket Size   Request Resp.  Elapsed Tput     CPU    CPU    S.dem   S.dem
Send   Recv   Size    Size   Time    %-8.8s local  remote local   remote
bytes  bytes  bytes   bytes  secs.   per sec  %% %c    %% %c    us/Tr   us/Tr

 %-6d %-6d %-6d  %-6d %-6.2f  %-6.2f  %-6.2f %-6.2f %-6.3f  %-6.3f %s
 %-6d %-6d
 %-6d %-6d %-6d   %-6d  %-6.2f   %7.2f   %s
 Alignment      Offset         RoundTrip  Trans    Throughput
Local  Remote  Local  Remote  Latency    Rate     %-8.8s/s
Send   Recv    Send   Recv    usec/Tran  per sec  Outbound   Inbound
%5d  %5d   %5d  %5d   %-6.3f   %-6.3f %-6.3f    %-6.3f
 UDP UNIDIRECTIONAL SEND TEST udp_send: data socket send_udp_stream: remote data connection done.
 send_udp_stream: error on remote send_udp_stream: data socket connect failed send_udp_stream: connected data socket.
 Sorry, UDP_STREAM tests must be timed.
 udp_send: data send error send_udp_stream: remote results obtained
 %6.2f %c
 Socket  Message  Elapsed      Messages                   CPU      Service
Size    Size     Time         Okay Errors   Throughput   Util     Demand
bytes   bytes    secs            #      #   %s/sec %% %c%c     us/KB

 %6d  %6d   %-7.2f   %7d %6d    %7.1f     %-6.2f   %-6.3f
%6d           %-7.2f   %7d           %7.1f     %-6.2f   %-6.3f

 %7.2f
 Socket  Message  Elapsed      Messages                
Size    Size     Time         Okay Errors   Throughput
bytes   bytes    secs            #      #   %s/sec

 %6d  %6d   %-7.2f   %7d %6d    %7.2f
%6d           %-7.2f   %7d           %7.2f

 netserver: recv_udp_stream: entered...
 recv_udp_stream: setting the response type...
 recv_udp_stream: the response type is set...
 recv_udp_stream: requested alignment of %d
 recv_udp_stream: receive alignment and offset set...
 recv_udp_stream: grabbing a socket...
 recv_udp_stream: about to enter inner sanctum.
 recv_udp_stream: connected data socket
 recv_udp_stream: got %d messages.
 recv_udp_stream: test ended in %f seconds.
 recv_udp_stream: got %d bytes
 recv_udp_stream: test complete, sending results.
 UDP REQUEST/RESPONSE TEST netperf: send_udp_rr: udp rr data socket send_udp_rr: send_socket obtained...
 netperf: send_udp_rr: requesting UDP r/r test
 send_udp_rr: data send error send_udp_rr: data recv error %6.3f %c
 %-6d %-6d %-6d  %-6d %-6.2f  %-6.2f   %-6.2f %-6.2f %-6.3f  %-6.3f
 %-6d %-6d %-6d   %-6d  %-6.2f   %7.2f   
 netserver: recv_udp_rr: entered...
 recv_udp_rr: setting the response type...
 recv_udp_rr: the response type is set...
 recv_udp_rr: requested recv alignment of %d offset %d
 recv_udp_rr: requested send alignment of %d offset %d
 recv_udp_rr: receive alignment and offset set...
 recv_udp_rr: grabbing a socket...
 recv port number %d
 recv_udp_rr: Transaction %d complete.
 recv_udp_rr: got %d transactions
 recv_udp_rr: test complete, sending results.
 netserver: recv_tcp_rr: entered...
 recv_tcp_rr: setting the response type...
 recv_tcp_rr: the response type is set...
 recv_tcp_rr: requested recv alignment of %d offset %d
 recv_tcp_rr: requested send alignment of %d offset %d
 recv_tcp_rr: grabbing a socket...
 recv_tcp_rr: accept completes on the data connection.
 zero is my hero
 yo5
 yo6
 recv_tcp_rr: got %d transactions
 recv_tcp_rr: test complete, sending results.
 are cpus is cpu %g 
There %s %d local %s
 
There %s %d remote %s
 TCP Connect/Request/Response TEST send_tcp_conn_rr: send_socket obtained...
 netperf: send_tcp_conn_rr: requesting TCP crr test
 remote port is %u
 port %d
 netperf: send_tcp_conn_rr: tcp stream data socket 	attempted to connect on socket %d to port %d  from port %d 
 send_tcp_conn_rr: data send error send_tcp_conn_rr: data recv error Transaction %d completed on local port %d
 WARNING WARNING WARNING  WARNING WARNING WARNING  WARNING!
 Local CPU usage numbers based on process information only!
 DANGER  DANGER  DANGER    DANGER  DANGER  DANGER    DANGER!
 Remote CPU usage numbers based on process information only!
 %6.3f
 Local /Remote
Socket Size   Request Resp.  Elapsed Trans.   CPU    CPU    S.dem   S.dem
Send   Recv   Size    Size   Time    Rate     local  remote local   remote
bytes  bytes  bytes   bytes  secs.   per sec  %%      %%      us/Tr   us/Tr

 
Alignment      Offset
Local  Remote  Local  Remote
Send   Recv    Send   Recv
%5d  %5d   %5d  %5d
 netserver: recv_tcp_conn_rr: entered...
 recv_tcp_conn_rr: setting the response type...
 recv_tcp_conn_rr: the response type is set...
 recv_tcp_conn_rr: requested recv alignment of %d offset %d
 recv_tcp_conn_rr: requested send alignment of %d offset %d
 recv_tcp_conn_rr: receive alignment and offset set...
 recv_tcp_conn_rr: grabbing a socket...
 could not create data socket
 could not listen
 could not getsockname
 telling the remote to call me at %d
 recv_tcp_conn_rr: accept: errno = %d
 recv_tcp_conn_rr: accepted data connection.
 recv_tcp_conn_rr: Transaction %d complete
 recv_tcp_conn_rr: got %d transactions
 recv_tcp_conn_rr: test complete, sending results.
 TCP Connect/Close TEST send_tcp_cc: send_socket obtained...
 netperf: send_tcp_cc: requesting TCP crr test
 remote port is %d
 netperf: send_tcp_cc: tcp stream data socket  from port %u 
 Transaction %d completed on local port %u
 send_tcp_cc: data recv error netserver: recv_tcp_cc: entered...
 recv_tcp_cc: setting the response type...
 recv_tcp_cc: the response type is set...
 recv_tcp_cc: requested recv alignment of %d offset %d
 recv_tcp_cc: requested send alignment of %d offset %d
 recv_tcp_cc: receive alignment and offset set...
 recv_tcp_cc: grabbing a socket...
 could not geetsockname
 recv_tcp_cc: accept: errno = %d
 recv_tcp_cc: accepted data connection.
 recv_tcp_cc: Transaction %d complete
 recv_tcp_cc: got %d transactions
 recv_tcp_cc: test complete, sending results.
 %s called with the following argument vector
 %s  This netperf was not compiled on an IPv6 capable host!
 Initial request burst functionality not compiled-in! Local send copy avoidance not available. Local recv copy avoidance not available. b:CDnNhH:L:m:M:p:P:r:s:S:T:Vw:W:z46 STREAM SENDFILE discard echo MAERTS chargen No default port known for the %s test, please set one yourself
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
           X     x        o+             H             
        	                     8  !         @           H              o                                                   8  @  H        (  t                                  $                     H  X  p  P                                                                                                                                                                   
Usage: netserver [options] 

Options:
    -h                Display this text
    -d                Increase debugging output
    -L name,family    Use name to pick listen address and family for family
    -p portnum        Listen for connect requests on portnum.
    -4                Do IPv4
    -6                Do IPv6
    -v verbosity      Specify the verbosity level
    -V                Display version information and exit

  GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"netserver   R .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.extab .ARM.exidx .rodata .preinit_array .init_array .fini_array .dynamic .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                  4  4                             H  H                                              #         	  	  t               )   	      X  X  x               2   	      
  
                6                              ;             =                 A         XP  XP                    U         pP  pP  l                  `     p   P  P  H               k         $R  $R  E                 s         8  8                             @  @                             H  H                             P  P                           H  H                                                            ȱ  ȡ  d                       0       ȡ                                 ء                         p          6                                *                                  :                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     @  ELF          (      4   D4     4    (      4   4   4                  4  4  4                             -  -           4.  4>  4>     	           L.  L>  L>              Qtd                             p      p   p         Rtd4.  4>  4>            /system/bin/linker                                
                                          6              <              D              M              U              \              c              h              m              r              x              }                                                                                                                                                                                     
                                                     '             4             A             I             R             ^             e             j             x             ~               B         B         4G        __libc_init __cxa_atexit puts __aeabi_unwind_cpp_pr0 mkdir __errno strerror fprintf access system __sF open read close atoi __stack_chk_fail __stack_chk_guard kill sleep sprintf printf strcmp strncpy __strlen_chk __aeabi_unwind_cpp_pr1 snprintf __sprintf_chk write opendir strlen memcmp strcpy __strcat_chk __strcpy_chk readdir closedir getopt_long strdup exit __strrchr_chk fputs optarg _edata __bss_start _end libc.so libstdc++.so libm.so   %   .                                           )             &          +                              %       '   (   -       #       ,   *                                                                	                     
                                   
                   $      !          "          D?     H?     L?     P?     @     @      @     $@     4@     8@     H@     L@     \@     `@     p@     t@     @     @     @     @     @     @     @     @     @     @     @     @     @      A     A     A     $A     (A     8A     <A     LA     PA     `A     dA     tA     xA     A     A     A     A     A     A     A     A     A     A     A     A     A     A     A     A      B     B     B     (B     8B     HB     PB     XB     `B     hB     xB     B     B     B     B     B     T?    X?    \?  *  l?    p?    t?    x?    |?    ?    ?    ?  	  ?  
  ?    ?  
  ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?     ?  !  ?  "  ?  #  ?  $  ?  %  ?  &  ?  '  ?  (  ?  )  -4   Əʌ Əʌ Əʌx Əʌp Əʌh Əʌ` ƏʌX ƏʌP ƏʌH Əʌ@ Əʌ8 Əʌ0 Əʌ( Əʌ  Əʌ Əʌ Əʌ Əʌ  Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌx Əʌp Əʌh H-MP00L   D   <      K   0 0w2   H-M   00 k 0 K 5  HxD$
  H@xDL|Dh+
 hIyDFH X0H !xDPH"KxDI{D`yD  `HxD (O0   1      @5  L5  5    H !pxDL|DHxDM@}D(Fvhz h|JIyDFX*F0zM@}D(F`xd hfI*FyDFH X0p@ p  f1            K !J{Dp°X#h%FAV
"!FV !!T0FV FZO0A+hBVBp0  
HxD
HxD F!H Jv  =  E  -AF4FF %DpG FAF*F6$5 -ѴB  /  KJ{DH-AXxDI $J+hyDzD/FlKDM{DH}DxD@h&fC4hFIh*h@FiFShhi(hhB;hB0            t3    K-A{DF $hOhhh8Fh F4BO0 3  
KO{Dh #h
Vh54YBlhh!B3BHxD2  f  -CFUNMTK~DO r %X8h FRa]:)ѡO r #cUF FO qB FAF?I"FpX>I0yD"3<HxDh;J!zDh:JXhzDh)F 7HhxD[hL5IOyD   Ah/K{DhA_r
$H"F+I0XyD0O0-B&JzDhF#H$IxD$JyDhzDA#PB#@3` HxDh9 HRxDK{Dh(H!FxD  $;hB
m .    2  2  1    1  1    v1  1  5  3  h1    P1    -AF2NF2JF~D$} +XhF-J# O qzD*J#O q#FzD!#vT hV!I#yDF H0X0T&MK )F"{D)F"K{Dh*H#xDz!F F FJ $ F;hBN
$}:-  )  +      J0    KJ{DH-CE}XxDI $O+hyD.FHMDÓ:H}DIDxDyD2< !O r;F CFC (*݈H!FxDKO r !{D C4C#OF~HxD}K !O r{D CCjFxHxD@F!F4(hBsHxDZqK ! CO r{DC!kHxDjH!FxDiHxD=gIyDgIyDgHxDfHxDF (p  F(p F9F" (iAF!FOrCO rIFO rCC!FFNHxDCO rJIO rCyDC!FFEHxDzCO rAIO rCyDC!FF<HxDdCO r8IO rCyDC!FF3HxDN2OȀȐDDD(F ((F-HxDF+HxD4*HxDÙ2hB
E} P,    #      /    |            O                `                            -OFLF4MH6
F|DDDO XyD<D80hDD,0xD((xDyD&
8F JF)FSFF h(qc( (V(@𑀀d(Te(@r(=l(@zt(v(~#%XxD"1hxDh*	U`YyD0&dcXh ([x !T0xDh|5 {DO r
XO r!XhhxD ! `5{D\XxDTT% !O3xDzDbXF! !0F
 0F	!5g5{DhV``!XhfFX d$zDh@yDxD	h4{DhF$zDxDhxDh	4{DhV$zDh2 yD`4{Dh&"xD`yDhd~D2hJK0,!XxDOd!~D0F@x$0F !O3zDhxDh1d4{Dh * )hOb/!Ob0 8t8DyD=h-),d #($%~DzD0hGhR#iC~X.	3+H!XxD1+
ЗhR#P`B#pJzDhR#`B#` &KHO{DxD5FD	OaYHOaFBJ
,zDa 6Oa
,
F.	a
	 .Oa OaDDF "WC
,JhY$ aV 
 hPDJhzD J !PFzD+FJ !+FzDFPF
 Kh+FhJzD@   !J+FzDL PF+FJV6zDJ 
  J+FzDJ 
  Ah  YZ 
 0MIZhdYyD4h FNH!FxD5hBGM}D.h;F0F !JF7MN}D~DD)hBOazOaFtJ
,zDa pOadOaM}DF\*FaNK~D{DX0xOaJOaFD3Fa*FB Oa4OaF.{J
,CFzDa *wHxDvIyDh#uHxDF82HpI XyD0 lHxDkJzDhjH !jJO3xDzDhHxDM (
!dK{DhcH !cJO3xDzDaHaJ !xDO3zD
p  ,$hB

mX)      +    .  ,  }  P,  0,  m  $.  X  +  <    "  "  d+  <+  >+     +  2+    +  */  )  *  -  *  *  *  A  *  1  x*  ,  <*    &*  T.    ,  )  .      d)  z+  
  Q  X  O  6  &      
  
  z*  "(  
  
  *
  
  '  )  :
  8
  \'  <
  3
  J
  .'    6
  5  &  d  d      xGF HxGF h         Android    x|?HP$   #D              
opcontrol: usage:
   --list-events    list event types
   --help           this message
   --verbose        show extra status
   --verbose-log=lvl set daemon logging verbosity during setup
                    levels are: all,sfile,arcs,samples,module,misc
   --setup          setup directories
   --quick          setup and select CPU_CYCLES:150000
   --timer          timer-based profiling
   --status         show configuration
   --start          start data collection
   --stop           stop data collection
   --reset          clears out data from current session
   --shutdown       kill the oprofile daemon
   --callgraph=depth callgraph depth
   --event=eventspec
      Choose an event. May be specified multiple times.
      eventspec is in the form of name[:count], where :
        name:  event name, see "opcontrol --list-events"
        count: reset counter value
   --vmlinux=file   vmlinux kernel image
   --kernel-range=start,end
                    kernel range vma address in hexadecimal /dev/oprofile Cannot create directory /dev/oprofile: %s
 /dev/oprofile/stats mount -t oprofilefs nodev /dev/oprofile /data/oprofile rm -r /data/oprofile Cannot create directory "%s": %s
 /data/oprofile/samples /data/oprofile/lock Terminating the old daemon... %d, %-12s | %-30s: %s
 counter name meaning ------------------------------------------------------------------------------ Undefined Event Unknown event name: %s
 idx: %d, name: %s, mask: %02x, ctr#: %d
 Bad event name: %s for counter %d, see --list
 event_id is %d
 count_val is %d
 /dev/oprofile/%d/%s /dev/oprofile/%s Cannot open %s: %s
 %d Configure %s (%s)
  not  Driver directory: %s
 Session directory: %s
 /dev/oprofile/%d/enabled Counter %d:
 /dev/oprofile/%d/event     name: %s
 /dev/oprofile/%d/count     count: %d
 Counter %d disabled
 /proc/%d OProfile daemon exited prematurely - redo setup before you continue oprofiled pid: %d
 /dev/oprofile/enable profiler is%s running
 cpu /dev/oprofile/stats/ /sample_received   %s %9u samples received
 /sample_lost_overflow   %s %9u samples lost overflow
 /sample_invalid_eip   %s %9u samples invalid eip
 /backtrace_aborted   %s %9u backtrace aborted
 /dev/oprofile/backtrace_depth backtrace_depth: %u
 oprofiled is not running --no-vmlinux c:e:v:r:dhVtl: More than %d events specified
 -k %s -r %s 1 dump list_events = %d
 setup = %d
 do_setup failed backtrace_depth oprofiled --session-dir=/data/oprofile You can only specify three events if one of them is CPU_CYCLES
  --events= , %s:%d:%d:%d:%d:1:1 user kernel unit_mask enabled count event Counter configuration failed for %s
 Did you do "opcontrol --setup" first?
 0  %s  --verbose=%s Starting oprofiled... command: %s
 Failed, oprofile returned exit code: %d
 Ready enable help list-events reset setup quick timer callgraph vmlinux kernel-range start stop shutdown status verbose verbose-log arm/armv6 CPU_CYCLES IFU_IFETCH_MISS number of instruction fetch misses CYCLES_IFU_MEM_STALL cycles instruction fetch pipe is stalled CYCLES_DATA_STALL cycles stall occurs for due to data dependency ITLB_MISS number of Instruction MicroTLB misses DTLB_MISS number of Data MicroTLB misses BR_INST_EXECUTED branch instruction executed w/ or w/o program flow change BR_INST_MISS_PRED branch mispredicted INSN_EXECUTED instructions executed DCACHE_ACCESS data cache access, cacheable locations DCACHE_ACCESS_ALL data cache access, all locations DCACHE_MISS data cache miss DCACHE_WB data cache writeback, 1 event for every half cacheline PC_CHANGE number of times the program counter was changed without a mode switch TLB_MISS Main TLB miss EXP_EXTERNAL Explict external data access LSU_STALL cycles stalled because Load Store request queque is full WRITE_DRAIN Times write buffer was drained ETMEXTOUT0 nuber of cycles ETMEXTOUT[0] signal was asserted ETMEXTOUT1 nuber of cycles ETMEXTOUT[1] signal was asserted ETMEXTOUT_BOTH nuber of cycles both ETMEXTOUT [0] and [1] were asserted * 2 clock cycles counter                                                                                              `?     (     	           8     h        oJ             H           (  
                             4>  !         <>           D>              o                                                   4>  <>  D>                            
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
             )  )            )  )            *  ,*            [*  e*            *  *            *  *            *  +            %+  3+  	          I+  W+  
          ~+  +            +  +            +  +  
          ,  ,            ^,  g,            u,  ,            ,  ,            ,  ,             
-  -  !          I-  T-  "          -  -            )  -  )  )      C     ")       C     .)      B     4)      C     :)      $G     @)       E     F)         c   ^(         e   P)         v   X)         r   e)      B     k)      B     p'          d   p)          h   y)          t   )          V   )         l                   )   @     I @
   GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"opcontrol   Tl .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .ARM.extab .rodata .preinit_array .init_array .fini_array .dynamic .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                  4  4                             H  H                         (  (                   #             T               )   	      8  8  h               2   	      	  	  (              6         
  
                   ;             $                 A                               U     p       p                `         D  D                    k      2   \  \                  s         4>  4.                             <>  <.                             D>  D.                             L>  L.                           D?  D/                              @   0                            B  2  T                       0       2                                 2                         p        3  6                                B3                                  R3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ELF          (      4        4    (      4   4   4                  4  4  4                             4  4           X  X  X     7                            Qtd                             p      p  p        RtdX  X  X            /system/bin/linker                                
                            !              &              =              D              L              R              Y              ^              d              i              p              }                                                                                                                                                                                                                              
                                       $             +             3             9             J             R             Z             a             h             o             x                                                                                                                                                                                                                                                                    (             /             5             <             C             K             S             Z             a             h             p             x             ~                                                                                                                                                                                                                                                       	                                                    !             .             5  x       <  x       H  <       __libc_init __cxa_atexit printf free __aeabi_unwind_cpp_pr0 malloc __errno fputs perror exit close open fflush gettimeofday __sprintf_chk __sF unlink execvp strerror fprintf _exit __stack_chk_guard __aeabi_unwind_cpp_pr1 fork __aeabi_uidiv alarm puts wait fopen abort fclose snprintf strcpy sscanf strncpy fgets __stack_chk_fail syscall strtoul strdup memset strlen strtok_r strncmp strchr __strcat_chk umask mknod __umask_chk __aeabi_idivmod fdopen __strlen_chk strstr memcpy putchar opendir readdir closedir realpath strcmp dup2 sigaction setrlimit strcat chdir setsid calloc sprintf realloc getenv strtol strtod strrchr _ctype_ fputc access lseek read stat lstat mkdir fnmatch fwrite fscanf __srget getc __isthreaded time ctime kill getpid ftruncate mremap __aeabi_ldivmod fstat mmap munmap msync __strcpy_chk strsep _edata __bss_start _end libc.so libstdc++.so libm.so   a   h              ,               V   ^   a      F   
   b   I       ]             e   2   Q   d       A      g   S       Z   M   <   P           /   $   D   H       U       c   =   0   :   K   .         -       `      _   %   E      4       ;       &       '   W       Y          5   *   3       
      B   >   1   R   +                              f                 8   \                                                                                                                                                        	                                                                              9   #                          ?   6   @                      "   G          7   L   )           (      O          N              C       J               [   X           !   T   X     `     h     p     x                                                                                                                (     0     8     @     P     T     `     d     p     t                                                                                                                $     0     4     @     D     P     T     `     d     p     t                                                                                                                $     0     4     @     D     P     T     `     d     p     t                                                                                                                $     0     4     @     D     P     T     `     d     p     t                                                                                                                $     0     4     @     D     P     T     `     d     p     t                                                                                                                                                                            $     (     ,     0     4     8     <     @     D     H     L     P     T     X     \     `     d     h     t     x     |                                                              $     (     ,     0     4     8     @     D     H     L     P     T     X     \     `     d     h     l     p     t     x     |                                                                                                                    (     ,     0     <     D     H     L     X     `     d     h     t     |                                                                                                                    $     (     8     @     p                                              (     <     `     d     h     l     p             l  J  p  W                                	    
            
                                                                      !    "    #    $    %    &    '     (  $  )  (  *  ,  +  0  ,  4  -  8  .  <  /  @  0  D  1  H  3  L  4  P  5  T  2  X  6  \  7  `  8  d  9  h  :  l  ;  p  <  t  =  x  >  |  ?    @    A    B    C    D    E    F    G    H    I    K    L    M    N    O    Q    T    U    V    X    Y    Z    [    \    ]    _    ^    `    a    b    c    d  -   Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌx Ə
ʌp Ə
ʌh Ə
ʌ` Ə
ʌX Ə
ʌP Ə
ʌH Ə
ʌ@ Ə
ʌ8 Ə
ʌ0 Ə
ʌ( Ə
ʌ  Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ  Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌx Ə
ʌp Ə
ʌh Ə
ʌ` Ə
ʌX Ə
ʌP Ə
ʌH Ə
ʌ@ Ə
ʌ8 Ə
ʌ0 Ə
ʌ( Ə
ʌ  Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ  Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌ Ə
ʌx Ə
ʌp Ə
ʌh Ə
ʌ` Ə
ʌX Ə
ʌP Ə
ʌH Ə
ʌ@ Ə
ʌ8 Ə
ʌ0 Ə
ʌ( Ə
ʌ  Ə
ʌ Ə
ʌ H-MP00L   D   <      K   0 0   $ H-M   00  0 K   M	L|DFHxDK{DhH!Xh@      (𵅰PLQKQH|DQMX!XQOh	hYfYNMh0h}D(LI(F"yDJI"yDF(F HJTpzD8`pC`NDIyD`eCH #F%X^Q3$+ = ?=HxD~F;HxD:HxD9J:IzD`0fX,h,5HxD(3HxD* ,0H!X0HxD(F* &,H)FxD(0*HxDF&HxD%H9hxDT )FH)F KxD "{D  (,04      8L  :  <-  e      @w  ̆  D؆  Ն  ӆ      l    KJ{DX  H0M1K}D]X
R2
h ` !T|'K ! " {D0F$O$I$KDyDA {D !J'`Xh I'yDa` 'pxIU yDhD'0D !FD"` 'D&p$hL hI"FyDFH(X0   L+  8  &    P  T^  ۅ  @
K{Dhz `pC0HxD@q    -GO5iKjH{DjLxD|DhDhD}fJ1FzDh:FT0FhH !`SOp8\JXhx[H !`xD4  TJX  0lFNHxD  JH!X
hHK{DJ  HDJXh)
BHxDAH!xD?H#Xh
 !`=H#Xh
 !`uP4H#Xh*7HxDS -3I(F̠bXhT
0(JFiAaXh(,H)FxDJ)F*M0FQTPFAFFxNh) ( HQFxD0HF)FB(FAHxD@<        7  v  X\2  `(  d  P̈́  ݄  hl؄  8<  p    -O-]ЁtKFD
Q1rJXPzD#m(h`OQjmIyDR
 (@𪀷hI(FyD`gI yD	X(@(x/( 𓀡jj	 &m	BGc OWH )FOYaF
# #" 0 40 D;bXhY`HKxb`{DGH(xDbBhA`b`hJ` _@KX h )K7 @C D'ai(B FiB Fu0F  0B``X   0FJ``@JF E  :iS+HxD 	OQ (K
S
3h
hB
]   LJ  B  .  !        P    -OFȑFiDm
#1iBBB YEPEYEPEOaNBCc~DOUO[ %0ZI0yDQ:@ 8mTB
T#BB
#TBBTBBc$hDE -@
#<m	
#@Cb8F
>MP60 }D
h+SB$S
EEѹi 
QE8F	~	PF		sh2hS``hh.hH`s`PF+`Hh
BY0hM
 !FFHxD,8F%:v \S`` 0\` @Y0h)TT# T
HxD  &0F~  b  F    PX  -  I #yDA3 3oR`HxD `@`pG     F 
FODF`E`A OR1F *FF` | (
I2FyDhH8X +F0h !``h` F f  ƀ  @	BAcO6O5O7
4EoBBK{DS2`	VEBBѦ 6hB2h Q`aFa1`h      O2O3CpoO5BB"	FAb
K{DS2`	VEBBѦ 6hBb2h Q`aFa1`hp p   ??0 P 	BAc
L|DT20SEBBShHxD0hcEHxD0HxD0HxD0,          I #yDA3 3 R`pG   KJ{DHXxD1    @c  8FhxFFBBF",`!x4,`8  88F !
FlF F(F8  -Of@MAK}DFXh)>HxDZ!U0Yaa`  a``X`d:x"6L6H)YxDM5L+Yh(4H9FxDtO OD}/)J F:!U
	J	 v:! F:!p` F:!` F:!` F:!0a F,!pa Fa
xrNYhEOHYxD1F N8F.C
K{D    t	  x@~  P~  |m~  8  p(LF|DKX #Fh 3PB# p1B
JXX (I*F`XI0yD8fp   |x@}  -AFFFF !X"`DF0FHJ#xDs`h1`X0h`yh`h	ra;ia
3a
JbzDb 0c#E#H  }  t>  K{Dh (
JzDHh(h pG  pG  ܽ  -C $$OFD0"KO0{D`(F98F(FIyD4FhD	0F&1FF@F,04Y4` .O4K ,{D`HxD ah
hG
0*FIW yD0      }      P  @|  K{DhBJzDKhXhG  (    8
L|D#h +M}D AhY8	HxDh#hhhhG8h *8   μ  ~|  FT`KH{DxDh Khhh	 FG     8F
F;hKH{DxDh KhhSh F)FG8   V  F"`KH{DxDh Khhh	 FG N  $  F
`KH{DxDh Khhh	 FG     8F
FxK	H{DxDh Khhi F)FG8F8   »  FpKH{DxDh KhhQi FGF     pC+٠qB	*;rC+آ@ (
;O0pG pG  "KH{DxDhJC$IHyDxD	hH
"xDhJCHxD
JHzDxDhKH{DxDh  `  {  H  /{  >  <{  <  _{  :  r{  8
L
K|DX(hx  (`IdX hp ""`  8   s #MF F}DPF F)IjFyD
"|0`Q
xBI"FhXI0yD

 ( h(h"+  O0| \  y  @z  pFn;n 4N $~D0hB  p   pFn3  5N %~D1hnBp  f  p  pF	N $~D0h hfn 43hB  p  -GFlhi8F0L|D8
-M;F-I-J`YyDzD0*KXQ n(FnO  %2h7U7@	0FTL$hB 1FF!hK`@#`nDD Fh@  F1F*F
C F[ ( F  D  @z    p!nF=Lh|D)p`p#??0F`#RCql	#sdh*  0dql0FslC#R0Fpah0F3`h ).3nEhPK0F{Dh I#Zh
H!Xh1F e0F \K0F{Dh J0FzDh PI0FyD	h 0F0F fh*!`siha#0a#ph  B          F?)
K{D
$	IS yD0J X 0 P  @0x  pFn
N $~D0h .fn 41hB f  p`  -G #FLF|DO0(F?N@OD~DDF(FWg:!  !Op F !(F
FF (ChpB*1IyDqB	*	.IyD  
hL `r@(!:h N 8`	@8(!2h L 0`Fe8
IpyDT hB 0HT  XC L P P` ` Paa  `  IF^F (Ը  w           h  -G]LK
Q|D1X #F<F<hFF<
`FO0YF ((F̒
DF(FIyDFHF)F"85(F0; +:+U*F -(FG0
 (:(UѸF -ѴH)F"xD (5(F0ѥ ):)5(FF ((FQF0ђ; +:+5*FF *  F -(F"VFQ
xBvI*F`XvI0yDmh+ h"(oI  yDF -wkHFkJxDhXZhpB*``a53BaM#aHaY %``I"X`H`cX`IyD`"X
`^I`yD\IyDF8 !
"60`VN~DOQ*F ((F@ #TP+`/MH"Xh@2JIObyD:HIyDF(`PEIeX+h+CHxD>
AHxDP@H)hxDL?H)hxDF=H "=IyD%Xh*`h@2T0h6IObyD 4IyDF(`P(H"Xh).HxD,HxD+H)hxD  
Q1
h 0B
]   Lzv  fv  v  @u  Xu  l    u  q    Tt  p  t  t  t  .u  V  :u  dp  Zt  pt  u  p!7NF~D5H3Xh)3HxD2H "b`xDhY`T/K{DhP` F f  (` F!n
h(` F` F(a Fh` F` Fha FlaV`3h+ѩh	B hi"m+iHxDhl+hD*h & Ffc"cb(F@ n<&fp   t  "    t  p
!VNF~DtTIsXh*RHxDQI  h`yDhZ
`NK{DhP` F(f8 
``(F)nLh' `(F#``(F`(F`(F a(F`a(Fa(Fa(F b(F`b(Fb(Fb(F! c(FV0h*'HxD(&I  h`yDhZ
`#K{Dh*(F!i`c     `cH6X1h)#i h`i&jHxDicjlj*m#h h &nc(c(F F(n~.fp  s  6    r  ~  Z  r  KdF{D!h2`ĺ  K{DdFhF4`@   pFn
Fh ) Op@!FհhO !FjO !F+ձhHO !FղhRO !F
ճh O !Fh
ձhr O !F)
ճhpO !FձhO !F~
ղh@,/O	 !Fqi
ճhO
 !Fd+ձhAP(O !FVճhAR*O !FHk
ձh;O !FFp@GppFn
F^h )lOq@!F,"O!F/jh+O!FF$+0iO!F	1i00*O!F	3i( ((O!Fk	1i88*O!F(	3i$ $(O!F	1i44*O!F	3iO	!Fp@ƾp  pFn
F^hi % ) "Or@!FiO !FhiO !F*iK  ?O !Fi|H{K EO !FiuJuK BO !Fsii
O !Fi+iO !F_iO !FUiO	 !FKiiJO
 !FA+
i@ @ EO !F1
iAA BO !F!iJO
 !FkiO !F
)iO !FiO !Fi2J  ?O !Fji,K-J BO !F+i$K'J BO !Fi!KJ BO !FiiKJ BO !F*iKJ BO !Fi+O !F2p@p     4         L 
 D   
 pFnF\h ) i@@biP O@ )FfaiOA )F\qci (OB )FN3bi)OC )F@ci (OD )F2bi)OE )F$qci (OF )F3bi)OG )Fci (OH )Fai*щOI )Frci (ћOJ )F0aiOK )F"
biOL )F"p@ҼpnXhipGn(Yh((
i"@ apGHi 0KapGKii#0Ja ##bapGIJJKzDJI-OFXyD #(0 hFhIhBI8nVX2h *m40 +i=LO5O<|D #oO5LBB
ӋBB
)1I#yD`/HxD #{l+-K-H "{DxD` #!*LO1O8O9|D #HoEEӋBB
JzD`H#xD #
# l8ml8k4I0hyD 0B&
  L              t  b  k  TJUKzDUI-OFXyD #80 hFhIhMI8nVX2h * JLO5O8|D #oO5HBB
ӋBB
~=K{D`=H#xD #yl)9K9I{DyD` " #!7LO0O9o|D #IO9EEӋBB
N*M+I#}DyD(` #
#HPL0
$0hIyDIyD 	
 IyD  Bbd  L      \  R  h  P      i  i  i  sF!L"M"I|D}DaabXhK{D+`2>I*FyDB0FH!X
h*	# HxD`IyD#R #RMI`YyD #0 l|Χ    i  i  Pi  <  @i  sF!L"M"I|D}DaabXhK{D+`2I*FyDB0FH!X
h*	# HxDIyD#R #RMI`YyD #0J |    Vi  h  P'i  h  @%i  -O]DQK
QD1Y NKh
`Y h )@JM}D+hhS0F#F$hB`[` @HxD?H?IxDyDF =HxDXDPFF (LxF^ YF3"(/HAFxDx0 EV&Ew  zF.%JzDEg`h`A` IaaY h(gEH2F ExDh;FF@FJPFe
Q1
hhBa
]\  L  h  h  a  h  h  h  8  h   K!J{D0Xh )4#HxDEBBEBB(IyDhPEBBPEBB80 hBHxDEBB
EBB(  0HxD0  0    f  0  0  0FOP #Oa ###J#izDFH(F0g      -O-F-FFFF #DFpj h#j@ !j02j#BB<X	0h;4X hJrjJP(FFF    (F )  ( ~HX 0h:iiA yIX h+0jB(xjAhjHAP\j01}8@#hh$iCFC  , TX0h)RH!FxD F0F iB8F dXF!F"X#DFб(
 2 (DH!FxDVAI"FyDFX 0Juj-F -h'j )0ksk XFJ"
Fj # " #qj O'xj! 9F(F=
f
 
@FQF0F B8F  FnO	HF           f  e  @e  8I .LK "|DAFX*0B h(HxDH J(F8@A 6  d  O a	K	J{DXBK{D`0HxD& *    d  2K3J{D-OðX1L|DhF!hA9.O/IDyD8h `,K{Dh2+HxD  c$ 'DFDOq  z@Oq
 !`D YF塀 `M6 `}D0F)hQH1FxD+h"SC+` '<A8F 0BNC  L  |  v\  r  d  d  F  ܡ  ad  @j 0 pGjCYBQ pG pG  
KJ{DpF $X 4L03hB(F  p  |
KJ{DpF $X 4L03hB(F  pl  |𵅰F
 FHxD,jL#H #xD!i #
qjYEH# ExD	h
#F
HxD	H9F#xD@% c  c  c  c  c   !F{kkS```l!lH``-OFFFFG %F o'h 
XF XFJ``XFQFG (<F?hB5-Ѹ 0F0FOFMF}D(hh@81F:F F$hB  -OFjJj%KB{DEj 8IZXh)iZE1iQE.JX
hjaE'`S h9/XS0h2#BBfjBIE@E    0F   Н  "NFFJK~D %X 5L00hB F9FQ #3+D1 R`8 @cc!dad   |-OF2KFn{Dhi"Os@,HXhE*M+I+JXYyDzDCF0>l (;h2V2@

8FQF=
$h\E 9FF!h H`@ `,lL4 F 8  F9F2F+l F ( F    |@a  +  -GFhF\+ED]i ) !gyF Bj"#eKj##gj  #ej! 6gX0h=HxDR@ "F+F 8H2F;FxDD
 `  = "#FPF2CQ (R-M.I.JyDzDFX 0B !!FHj #ej# $e!IX h{ HxD@ "F+F  
  7HX 0YiJZa 8F"F+FpBLIJyDzDFX 0>l Л  s`  Z`  @7`    _  <_    !1  H !xD }FHxD wH !xD	 H !xD iK{DhB
OOu
NhD~D F=  @89F "B!h F    A  CllS``pG@K @{DdZhY`Bd`pG \  -OFhO+DH<X"hQ!`sl+  T  QD tlbL:Yh(H#xDBI{Xhb`1റ0F"F (-I{Xh,H#xD*JXiKaCsiJXhT
# HxDH;XiQa $MFM|Y  l0m 	 FIH}X,hW <si  J ѵjj
DP 	tW0h
l	ulu 0@P	AC`CE#RЉ 4m	pi`hhAE
 LD@h@ 	OIRI PORYyD
Q9 GE
#qiEP\#EE3mLl5Ѿ P ,bE.P\B*P<B$\	
 Р8 FP
E#BBѸ P\BPE#BB hXE XO2O3F pl5jqjFF#O3` "`aFa"b$piGMb}Y 		L0)hE3n# F9 %f 5-D0 R`)h )Jla2ma
hl#bh9pi 03 
##aj)h &  j zd##8??
 K`c< 0 FKPв F  <s^  s^  V^    |I #yDA3 3 oR`pG   8FFF "F CF % F8@8-OðcMcK}DXD0hA0F`HxDj_HxD^I^HlXxDi^\H!hxDZ[HahxDTYHhxDPXH!ixDJVH!jxDFUHaixD@SHixD<RHRJAFxD#zDPHPJAFxD#zDNHNJAFxD #zDLHLJAFxD#zDFHHxD:F (>N IFjF8F(F<RF;FOq XF;H;J3FxDzDe9H9J #xDzD]7H7J3FxDzDU5H5J #xDzDM3H3JxD #zDEDDD F ( F+JXT0A 0BjC  L\  ,[  )[  <8[  C[  Y[  h[  [  [  [  [  \  A\  I\  m\  x\  \  \  \  \  \  
]  ]  /]  7]  O]  Q]  j]  p]  ]  P\  T\  i\  @K	J{DFXh(HxD! "ad`  P\  KJ{DFXh(HxD!`\  \  	K
J{DFXh(HxD !ad`aa!aa0  Px\  	K
J{DFXh(HxD "!`adba   Pd\  
KJ{DFXh(HxDl !`aa!aa Ȓ  N\  KJ{DHXxD1h莒  @1\   #aapG #`CapG8FJEhzDE
HX
H1xDLIRXhhh, ! Ihh=]``8 X  @\  8ChLB|D
H!X
h*	HxD T0jA  b   P[  <p #M!`FCa}D``p FJX+hk@F(h(H#xDp@p   Pz[  8!
M #`FCa}D``8 FzdFH*Xh+HxD8@e8f  PR[  0 #M`!Ca}DF``( FUd FQ
 FL FI FF e
H)X
h
ol"m
EHxDH ExD 0   PZ  Z  -GO2O3#
#D# $\K    !O1X h * hFGhF4X
0Fh
F(	 -?O 
O
1KBS
 :hF!bhF*E )[ #hFhFAl0lhF) / IX0h(HxDJXjXb&hFFFBB	LIX yD0Y  hFG@& 'D )qCѢ  8PVY  <@Y    K J{DX`pG   XK J{DX`pG ֎  \K J{DX`pG   `K J{DX`pG   dK J{DX`pG   hK J{DX`pG v  lpF M}DFOPF `0F8 h Fp@ hKFXh)H!hxD
K"{DS< B````C< p X  PX   /I8yD/LF|Dȹ#,IT `+HbX`!X*H`T `!X`T `8&I(FyDH&#I(FyDH I(FyDHI(FyDHI(FyDHI(FyD H!X"
`8KHXxD1N ViX  ڍ  P'X  X  X  
X  X  W  @W  0 #`O0 !"    fCPHxD   R}W  @AQ
K
J{DXOr0
HxD !0HxD   DdW  wW  Kp{DFh	  p%JzD  R0@T)F ($hB p @ 6 0FL]J|DF
PX0"h`
J OQzD$)F
S3h"hB4
]0  LpF  4F-C{DF KL {DF  2F |DFHxDh0hJzDhfFHFL0F,!&F0F T0hI"fX2`T0`@IfX0`H"Xh +6IT  И `.JHXxD4OPF@F1F> `0FH"XhxyNHYxD4!F
 "(F!F N~D0hn HxDhT0h^IHdXxD4!F(F!F2FIHT#X  И  &`OP &`F@F1F `0FI`Xhx*OHYxD4IyDhHxDhI #yDA3 3 +R`F0F0F,!\F0F (F
*H &!XhJ@FzDM 2FFHxDfK@F{D<*F@ Q FHxDQJ@FzD'2F ECzF}HxD<}HxD@F A22FfFuHxD'tK@F{D*FF@
 PFlHxDlI@FyD BC*F< dHxD
 9F8`HxD _OY0F01FFrZI@FyD(@FT@F(FSHTOxD4SIDbXh:`G0F츱+H!XLH1xD hHI2FyDF#H X0 (BHxD@NOpY0F[FHO2F:IYyD0(F8hAhG:hhG@F	 Fr      f d t|(@V  ,V     U  04U        T8U  =U  sAU  cFU  OKU  =RU  mU  zU  _U  <  ]U  kU  U  HU  FN~D )/ T\T<*IsXBMrYh8F)F*	 +T !
FF 8FG4T< + (T ) ֆ  -AFN~D )5p"T\4<+JXBMqY
h8F)Fh"?@ AET< "8F! FG4T< + (T )ѽ X    @  F i a`h``h`-OF@FFFP]1)h!0F (e+yBU\ (]` )M$%o#:FU$I0F B9
:$=?- Й P
@! %  @b@a@!a@Ea@!\a@!ii	jq@!`B   	o q)-OFFDFYR Й   *O-
O 
 O DT,("7JT[B5H[ 0h (1IF ;FRF@ /Q9h )N -L+h +Iri*`F(й 
c	 *FHF  EF4T< + (T )0y ( + #;`
 "*`  8` 0+`0F   -FFFF( )P %>4,*T )5 8F2FKF-h oL,*%-0y8<# ИB0hȱl騹ii )IF @18F 2F!iGhF4T ), *T (ѽ8F1
F; hA	H!b1[j	 S" A C" 8RK-OQJ{DF |aXhFx`o	   i -1  /! (H!5t1  F (d /!@F PFxF@Ft /I"RF
yDCFhFF  @F:(`(h (i)3jJ( i &pYt! *  t6DYH1 +  zHv "E& (h (?})Fo o yh 0BF  L<  -CFh
FF (al1 +U$&_$	5V$9(F` @EF?NFx>|!|5t1xq^B	
7pxq xptapqpt%(F0  FpI*FyD
IBFyDRpA&G&    d TQ  QQ  -OFFF 
PFF ( 𘀀FO 	~!*ypx#(vѱx:)sx++pѹ T%@A  <h hB\Ev_ah )7: 
i	#^!%S%0x-)9Ѿ 	@	!0`hOU  Q. (CA. 5B # \E < +ЙFHF6  "  DF8FQFFIF"F @FD+3F+ *z  8FA8FOS(F-CFOpFFF F (S !Or #@A` `!xdPQ! %d\Q`QhQlQDx xN!QpHxDV0d!Bd1HxDJ (^0F0 1F^X FP FEO  =O  pF8p  @(F'@QBبh #`@!a@Ca @a@!`pH1L1T1|1 "t!ppaV% F% 5 Ft1B豃`aHC qoб o
hCh
@hZ@`  pGo pGo pG      -O-
좻KDFZ
h`a ( 𫂟I˴H %xD` #;a{a @1@Ai )@hE@𰂠Bء F#OX&S,0B`Aho
 oQ(`` .T 0x-(sxdJ"T!0F@A a  MD (H1Y@#`H0F0 
1FXxF *@x-(љ0C T	O	 " FqFF,F (raF FY (ieF)F+=*FaF "PF@ ?|@!pPa@aBсh V	 FAF^& &F  &@1 8 ! FYaCF  F (" F  FH  *?@1   P4F (?/ ) @! -?"h0h"h* ( *i * @ x   FIFD@Ai F'@1a@: @a@hhB@lBc &a'      <   G      8:}  LM  h  F@aqhQhCQ  F`@!ah . *S+ 

11 @!i^0`@!iX "iF +rx	oFh( CXbh (no h\@iر~h| "`@1iAnh")?j`ix;+	+h @ɋ	ձH1J++ xJܴɋ8;;;HԿ !!)ȋh o o bLbIZ yDT0f ,>iV  FP*F{i &.i)&t1x!B	
2px! Zpp 2  XF0  F౻ Ъh *?JzD?JzD?I@F[FyD.h*y(tp1C!tI! Hth	*++Гp 
@ iHt^I( t .?go	 (iO0hihB&#  	OYh ?B FP| (Th +S`$F
         @I  ;I  7I  \I   -CF ( @Qh`\1#\h\ )k!	\6X H hihaia(j(b &O$	`BhxhDrDplpXfX`ZT FCM	h6X BH hi=hai9a(j5(b &O$	l!Bۮ`@8Ch#hPS  pGFpG0(& 	%%(HxDHxDHxDHxDHxDHxDHxDHxD h@HxD
HxD G  !G  KG  aG  uG  G  G  G  G  F  8FH
FxDnd1`hh F/!.  F/!DI"F(FyD F08 8 G  cG  1K-OF0I{DF [XFFhFx`BΰFOrhFF\4O  4<+(F 4(T IF*FF4T, * )T< + FB(xPI*FHFyD<(F zh@F BF u  LF  *K{DB83Bуii:* K{D
K{D
K{D		K{D	K{DFK{DFpGx  PF  OF  PF  PF  0F  *F  -CFFF #F00)yF(hhJh .OO 

&F ([2h * F.Q$ F&sO(&HIF'xDb(h*yh + K{D K{DL|D!FIyD HFIyD⹩h )JzDIHF CFyDz6K{DFJKzD{DK{D ,JzDJzD ,8FE  [E  %D  OE  {E  ~E  C  oE  E  E  7E  3E  D  D  -CFF( +O>T(T5('+h &hQ& 8TBT!#6BBnhBڨh@#3+` HF9FT<
<;I F8F2FF4T< + )T (F-CFFұ$ %Tl+T$| (p @FF5$4ME$F  -OKFFH
WixDXF1h
F h - HF-(FNF (  "p 
 #h"yh .N~DN~DI(F 3FyD"IyD
ch (JzDJzDI(FyD+x + xJ  (Fh  6[#+Th k PF ( bIF(#;yDXFXF:!    Pph +e!H(] "	\\\ IXFyDIXFyDh0 z
IXFyDS0+IXF #yD	hKIXFyDDXFvD1 F" pbFXF8 "XF \DFVBҐIXFyDXFLD" @F)# ! 0'8F8F F@F2 hF ( ˀ #p?9FXF XD ! AF@Fi#	+!@2 !h ) "=" ="+IF0F0F6h ]"+ #3p F]I+FRF FyDZNh(FXO~DDFXF_UI*FyDXiSLI  ^@!hZEF[EM : _ (CEF3F
 	 !"	;FZF !hCF
 ; _ (F+_XFz *BP%IZFO yDF FXF(FO E
hB6 Lvq  
B  	B  C  A  A  A  B  C  B  B  B  B  B  TB  ~A  ~A  A  fA  @  -CFFF$ %T$l <;Tlp @FIF5$4B$۽-GF>IFF(yDB8F\`!8FhCFl!Gÿ *]%FU<[ 8FAF5U< + (U, *24,*,T,ʱ2	2R0)h -MFR )< +R (MFT,8FQF( 0F9FT,CF4$DT )< +T (  1  -C (C $ &F/U|+UFy  L ,2-OO^ /$$  HFPb H4B8&F5U	 (, *U )	F ($ ($0F  sFF! FIyD
IJyDzDPa0F "!F 2FF(F|>  >  >  :K-G9J{DFS
F !"O  0{`°AFOrF @ p`"`P2``)F FBF)FFP )FP1NF 
 F
\!`1F(Fah!l1F(FYF O+H)FxD
I(F!yD&
 )FZxh1hBvFk  L<  }<  	K	I{Dy?*[XO TNq  "j  @-GGFF  (FF6 )4 %>FY% x\50BD0FF8 &E&p8FY&6FABD #E$0  P(Fj  @  o	 o   3K-O2J{DF2H XxD#hF{`FF0F/! F 0FF< -9(F0   
(FFF0F!*FhF)FdD@F:!F YF FBF3Fv F!P-jx * F $yh F 0BFZi  L_<  |#  -A "8H #8IC0+xDyD F (R3N3OЀ~DDD(F AF (?x91F`(? F9FX(8 FAFR( #I FyDH(
`I FyD8(
"PCA F(F    ! F~     .A;  N$  |;  ;  ;  l;  [;    !  p
F !FF
F"F0F)F\h+V h(HxD\ ^ Fp:  FiFppA O	! F 8      iF    @  h+ h-AxF/+0
	  F/pFXh/'O /!F (F F0F"h(HxD@ ":  FIFLyDH|DFO0( hJIyDFX*F0
IyD`(8F4 .	K*FIXyD0 & ."  Hf  @=:  ^:  E:  -CFO p|KDO wXFF  hihJj` *(F&+h+`(F$@
(C F $^ !1p0B FAFFGF Fe    0HxD=7  sF%N~D8$I(FyDFp)!I(FyDFxIyD( F   !(FJKI*FyDFX0R ,h

IyDF FD Fv $ $ F| e        ~9  @Q9  .9  -AFM }DFCF! F F0FKIBFXyD;F5 (F F)F "Q  F Xd  @8  J ZB   L ? +pGF#XBXAFF; +	+
+pGFF;+ +	+
+pG x 8   x#QBQ   FHxDR  t (8  8  FR !"FF(F8pF
F F1F*FFN FpFhFFQhhBҠh&hAh2`5P%W`hch@S% `bhB%hKhXH`   - ( p$ hh@AhQ$h EBBыh	Ў`h )p@  p! (%hFFiihe)F !#i*FaC#ia`XJ PhaiiP `h bDb`hK`#!hXh.bhR,``h@,03hBhB   #`pG-OF*F8F!!OBO FFeJzDh
NB6@6 d`R5@T9F$hB( 0FTJD,0 ` !0"F(#
  cb`a8FbbYFOr b8Fj (aHhx .#R

ѹ ^cii a hgi
c " #PFYFF 'O i ai   #IDBah4"i`ZчP"hB`	XBei	%hbiih  ``H!`xDh SP5 `V`@5` %bb @%i j F # 0(F    pFhcjX`bȹhjj	hfiS``#iai ( j F  (`p h @jpGhipGhKhihZi#!"̸pG  IpyDFбMN}D5~D1FU<5 FU, *I"yD F pp .  rX  4  z4  FRL|D0_
PM2FPI`YyD0 ^MK1FORX(F<JH)FOR&X0F4GI0FORyDDIORgX1F8F$AI8FORyD?J)FXOR8F<I8FORyD)FORTp8F5I8FORyD3K1FORX8F0I8FORyD-H)FOR&X0F*I0FORyD(IORfX)F0F%I0FORyD"J)FXOR0FI0FORyDt)FORT@ FI FORyD@ R_  @6  6  6  H6  t6  D`6  pP6  A6  *6  6   $OFO3D)Fphh4C,KI(FyDB*O2jW  5  𵛰 M!K}D!OXD9F0hHxDFH9FxDFXJHXxD4!FFH!FxD
hFc!"FHIHiXxD16O0hFF F(F3hBT]  L.  W5  i5  @p5  5  5  B(K{D @hpGHxDpG rV  V5  B(K{D hpG  pGRV  -AFN
F~D3h#HxDJ0`HxDhIyD`OD>h0FF FF(FZ
I 2FyD#FF8F   ;    ;  v  ;  8FK
J{D
IXyDK4{D FhK{Dh	I F*FyD  [  @u;       .  Op| !OrF6Kq F{D1ZhY`!`f`  
IFyD(I FyD(HxD ;  ;  ;  IyD(HxD/  :  F
K{DhFu8F)h\ !(F$hB  _  -CF hFFF:!F F  xxHxDBHxDX(FlFHxD   F8` F  	 F>  HF78`(FL0`  :  :  :  I-OyD F@M}D8aPN"FIYyD0
 K"I{DyD` $
`K{D{`FHxD`	(F+ (@(F.F (@*x	* ĀIFyDF~a`F@FF@FF+:*  *HxDXFh (;xi	{HxD1

 FFY``V
  AF
RFhFnI
`hFyDmN^D~D 1h9`Fm HF;h3`0FXFyhhyi`HxD@F
}#{a `<XFhXHxDWI@FyD|`TI@FyDt&`&!PI@FyDj&`MHxDLIXFyD^` IHxD@FO	`EHxDzPFRFF 0 +Q h>HxDk^=HxDg<HxDcfh.:HxD](F64FXD6 HF5x2HxDJ#x +h `hBb`(F8i(IyD
hS`F -8iFO EE    4Z  @W:  2  4  :  ~:  :  :  :  X  9  R  9  9  9  9  9  9  +  9  9  9  9  9  9  9    I-OyDFD	8N"FIY yD0K"I{DyD`
`FHxD@F`@F	K{DhJ`F@FF (( F1F("FK O0{D#bZhY`bb`IayDa8

(F 븹HxDu
/!(FHxDl(F.! ( `dI(FyDpHxDW
a``
"OI(FyDpHxDB
I8FyD꠹ `8F` J
:x8F7,*AF%;x + 
#I(FyDHHxD

"a
I(FyD (@𜀻 РHxD
,!(F@ (z(F,F (q
@
'FZ
qO7(`TFHh?8FFBF
vNIY yD0 LHxDQ)قHxDhh@jh`Xhi` ) O yHxD 0 FBYh2EFPFF ({fHxD{``
(F`IL*F`IY yD0
Of[I(FyDpXHxDY
`a
!QRI(FyD
"aHOI(FyD8
ha
:II(FyD (/FHxD-ej F'j}`/`BI
yDAOAMD}D;h*hF;8`PF)`|
zxC#+4HxD3HxD6f
K (q; 4	8F  0W  @8  4  6  .    [  P7  37  t8  k8  c8  \8  W8  e8  f   8  8  7  7  7  7  7  7  6  7  7  T4  }7  ~4  Z7  #      7  /7  -OCKDM{D}DhBF}AIyD@IDDyDF0FF F8F F7H 'xDhFH{YIF  U 0#  #rh`Qh)Ph "''K(IhXyD03(hYFRh
i1  aEѠprQFU 0qE2B$hCDE KrIXyD0h3F#W  R  "  ?6  6  53  DW  @5  5  ]HxDXV  -OFKFF{DhF%TIF ๺ T\Fjhh(i(B
>B	3B$h\EO @F DV  L|D hC	HxD #HxD##`HxD hU  (  )  U  FFF(F/!I FyD F_IyD<1F F8I FyD
IyD0)F F,I FyD@ 7 6  6  6  6  4  XKYJ{D-OFh hXFHF|FhixFPFtS @F4f$`8F^$pF  "SF F)h 6I FyD FZF )hKFt(h0I FyD  F)h@CFdii F F,'IiyDi )h F!I*jyD IJyDzD +h FY
IjjyD IJyDzD *h FIjyD IyD  FDP  5  5  5  5  5    5  v5    #  }  xGF {xGF `|xGF {xGF }xGF {xGF x~xGF (|xGF {xGF h|xGF XxGF }xGF P|xGF }         Android     ́؁T  ĂX  T  |L̊   @p،X|,  L܎4dď  8hhDT     (^xإL  T@  ,<  `?PdĬTh tص?  X$LԼLD\  \`  |d   `  TL  2 D8  (xTp<  <Vl  <xl  lll t  @<h  P\\  t$8  <  @  
h$  .,*L@0` L  XT                                               ɠ                                      o                                                                    oprofiled stopped %s /dev/oprofile/ buffer_size pointer_size oprofiled: couldn't set exit cleanup:  /dev/oprofile/buffer Failed to open device. Possibly you have passed incorrect
parameters. Check /var/log/messages. Failed to open profile device Using log file %s
 /dev/null oprofiled: couldn't re-open stdin as /dev/null:  oprofiled started %s kernel pointer size: %lu
 %llu %s/%s /usr/local/bin/ opjitconv -d Failed to exec %s: %s
 Error forking JIT dump process! Received SIGHUP. JIT dump processing complete. JIT dump processing exited abnormally: %d
 Start opjitconv was triggered Read buffer of %d entries.
 w LRU cleared but file open fails for %s.
 1
 warning: couldn't set complete_dump:  /proc/%d/maps r anon %llx-%llx %20s %20s %20s %20s %20s Added anon map 0x%llx-0x%llx for tgid %u (%s).
 Cleared anon maps for tgid %u (%s).
 Found range 0x%llx-0x%llx for tgid %u, pc %llx.
 Lookup of cookie %llx failed, errno=%d
 invalid anonymous failed lookup not hashed oprofiled: malformed events passed on the command line
 TIMER oprofiled: no events passed.
 Events: %s
 oprofiled: too many events passed.
 Unknown event for counter %lu
 DAE
 : opd_ext_initialize: Invalid extended feature option: %s
 
-- OProfile Extended-Feature Statistics -- ibs Nr. IBS Fetch samples     : %lu (%lu entries)
 Nr. IBS Fetch incompletes : %lu
 Nr. IBS Op samples        : %lu (%lu entries)
 Nr. IBS Op incompletes    : %lu
 Nr. IBS derived events    : %lu
 Invalid count (%s)
 %s: Invalid IBS event %lu
 Error: find_ibs_counter_event : invalid counter value %lu.
 , | fetch: op: Invalid unitmaks (%s)
 /dev/oprofile/ibs_op/branch_target /samples/ibs_memaccess.log Warning: Cannot create file %s
 # IBS Memory Access Log

 # Format: app_cookie,cookie,cpu,tgid,tid,pc,branch-target-address,
 #         phy-hi:phy-low,lin-hi:lin-low,accese-type,latency

 /samples/ibs_bta.log # Format: app_cookie,cookie,cpu,tgid,tid,pc,branch-target-address

 not enough remaining FETCH_X CPU:%ld PID:%ld RIP:%lx CTL_H:%x LAT:%d P_HI:%x P_LO:%x L_HI:%x L_LO:%x
 IBS_OP_X CPU:%ld PID:%d RIP:%lx D1HI:%x D1LO:%x D2LO:%x D3HI:%x D3LO:%x L_LO:%x P_LO:%x
 0x%016llx,0x%016llx,%02lu %08u,%08u,0x%08x,0x%08lx
 LD ST 0x%016llx,0x%016llx,%02lu,%08u,%08u,0x%08x,0x%08u:%08x,0x%08x:%08x,%s,%08u
 no-vmlinux %llx,%llx kernel_start = %llx, kernel_end = %llx
 error: mis-parsed kernel range: %llx-%llx
 no-xen xen_start = %llx, xen_end = %llx
 error: mis-parsed xen range: %llx-%llx
 Reading module info. /proc/modules oprofiled: /proc/modules not readable, can't process module samples. %256s %u %32s %4096s %32s %llx bad /proc/modules entry: %s
 module %s start %llx end %llx
 %u.0x%llx.0x%llx Opening "%s"
 LRU cleared but odb_open() fails for %s.
 oprofiled: open of %s failed: %s
 oprofiled: couldn't create pipe:  oprofiled: couldn't open pipe:  oprofiled: couldn't create file descriptor:  do_jitconv Warning: invalid pipe request received (dropped request(s): %ld)
 0x%llx(%u):  anon (tgid %u, 0x%llx-0x%llx),  kern (name %s, 0x%llx-0x%llx),  %s(%llx),  app %s(%llx) %s: Invalid counter %lu
 Arc   -> 0x%llx %s: %s
 Sample  Losing sample at 0x%llx of unknown provenance.
 Lost kernel sample %llx
 No anon map for pc %llx, app %s.
 
%s
 
-- OProfile Statistics -- Nr. sample dumps: %lu
 Nr. non-backtrace samples: %lu
 Nr. kernel samples: %lu
 Nr. lost samples (no kernel/user): %lu
 Nr. lost kernel samples: %lu
 Nr. incomplete code structs: %lu
 Nr. samples lost due to sample file open failure: %lu
 Nr. samples lost due to no permanent mapping: %lu
 Nr. event lost due to buffer overflow: %u
 /dev/oprofile/stats event_lost_overflow Nr. samples lost due to no mapping: %u
 sample_lost_no_mapping Nr. backtraces skipped due to no file mapping: %u
 bt_lost_no_mapping Nr. samples lost due to no mm: %u
 sample_lost_no_mm /dev/oprofile/stats/ cpu%d /dev/oprofile/stats/%s 
---- Statistics for cpu : %d
 Nr. samples lost cpu buffer overflow: %u
 sample_lost_overflow Nr. samples lost task exit: %u
 sample_lost_task_exit Nr. samples received: %u
 sample_received Nr. backtrace aborted: %u
 backtrace_aborted Nr. samples lost invalid pc: %u
 sample_invalid_eip XEN_ENTER_SWITCH to xen TRACE_BEGIN USER_ENTER_SWITCH to user-space KERNEL_ENTER_SWITCH to kernel MODULE_LOADED_CODE Unknown code !
 BUG: popping empty buffer !
 Dangling ESCAPE_CODE. COOKIE_SWITCH to cookie %s(%llx)
 CPU_SWITCH to %lu
 none CTX_SWITCH to tid %lu, tgid %lu, cookie %llx(%s)
 Unknown code %llu
 Adding to image filter: "%s"
 all sfile arcs samples module misc ext unknown verbose options
 oprofiled: fork() failed:  oprofiled: couldn't re-open stdout:  oprofiled: couldn't dup stdout to stderr:  oprofiled: no vmlinux specified.
 oprofiled: no kernel VMA range specified.
 oprofiled: no events specified.
 oprofiled: no Xen VMA range specified.
 oprofiled: install of SIGALRM handler failed:  oprofiled: install of SIGHUP handler failed:  oprofiled: install of SIGTERM handler failed:  oprofiled: install of SIGCHLD handler failed:  oprofiled: install of SIGUSR1 handler failed:  oprofiled: install of SIGUSR2 handler failed:  warning: could not set RLIMIT_NOFILE to 2048:  /abi Using 2.6+ OProfile kernel interface. Couldn't determine kernel version.
 oprofiled: opd_go_daemon: couldn't chdir to %s: %s oprofiled: opd_go_daemon: couldn't setsid:  oprofiled: could not create lock file %s
 session-dir place sample database in dir instead of default location /var/lib/oprofile kernel-range Kernel VMA range start-end vmlinux vmlinux kernel image file vmlinux kernel image file not available xen-range Xen VMA range xen-image Xen image image image name filter profile these comma separated image separate-lib separate library samples for each distinct application [0|1] separate-kernel separate kernel samples for each distinct application separate-thread thread-profiling mode separate-cpu separate samples for each CPU events events list [events] version show version verbose be verbose in log file all,sfile,arcs,samples,module,misc ext-feature enable extended feature <extended-feature-name>:[args] Help options: --%s -%c POSIXLY_CORRECT POSIX_ME_HARDER - -- option type (%d) not implemented in popt
 %s%s missing argument unknown option mutually exclusive logical operations requested opt->arg should not be NULL aliases nested too deeply error in parameter quoting invalid numeric value number too large or too small memory allocation failed unknown error  Usage:  %s  [-%s] ARG INT LONG STRING FLOAT DOUBLE   = 
         [-%c|-%s%s%s%s]  [-%s%s%s%s] -%c, %s%s default %ld %g null ...   %-*s      %s
 %%.%ds
%%%ds %s
  %s
 [OPTION...] help Show this help message usage Display brief usage message popt PATH /proc/cpuinfo cpu MHz : %lf clock : %lfMHz cycle frequency [Hz] : %lu Cpu0ClkTck : %lx BogoMIPS		: %lu oprofiled:op_read_device:  oprofiled:op_do_open_file: %s: %s oprofiled:op_close_file:  oprofiled:op_write_file: wrote less than expected: %lu bytes.
 op_read_int_from_file: Failed to open %s, reason %s
 %u op_read_int_from_file: Failed to convert contents of file %s to integer
 %d Removing stale lock file %s
 %s: %s: %s
 %s: oprofile 0.9.1 compiled on Nov  1 2014 22:55:31
 %s %u
 little_endian %d
 sizeof_double sizeof_time_t sizeof_u8 sizeof_u32 sizeof_int sizeof_unsigned_int sizeof_odb_key_t sizeof_odb_index_t sizeof_odb_value_t sizeof_odb_node_nr_t sizeof_odb_descr_t sizeof_odb_node_t sizeof_struct_opd_header offsetof_node_key offsetof_node_value offsetof_node_next offsetof_descr_size offsetof_descr_current_size offsetof_header_magic offsetof_header_version offsetof_header_cpu_type offsetof_header_ctr_event offsetof_header_ctr_um offsetof_header_ctr_count offsetof_header_is_kernel offsetof_header_cpu_speed offsetof_header_mtime offsetof_header_cg_to_is_kernel offsetof_header_anon_start offsetof_header_cg_to_anon_start Session_dir string "%s" is too large.
 /samples/ /current/ /lock /opd_pipe oprofiled.log /complete_dump /opdev /opnotedev /ophashmapdev %d
 /proc/sys/dev/oprofile/cpu_type /dev/oprofile/cpu_type Unable to open cpu_type file for reading
 Make sure you have done opcontrol --init
 Could not read cpu type.
 invalid cpu type Pentium Pro i386/ppro PII i386/pii PIII i386/piii Athlon i386/athlon CPU with timer interrupt timer CPU with RTC device rtc P4 / Xeon i386/p4 IA64 ia64/ia64 Itanium ia64/itanium Itanium 2 ia64/itanium2 AMD64 processors x86-64/hammer P4 / Xeon with 2 hyper-threads i386/p4-ht Alpha EV4 alpha/ev4 Alpha EV5 alpha/ev5 Alpha PCA56 alpha/pca56 Alpha EV6 alpha/ev6 Alpha EV67 alpha/ev67 Pentium M (P6 core) i386/p6_mobile ARM/XScale PMU1 arm/xscale1 ARM/XScale PMU2 arm/xscale2 ppc64 POWER4 ppc64/power4 ppc64 POWER5 ppc64/power5 ppc64 POWER5+ ppc64/power5+ ppc64 970 ppc64/970 MIPS 20K mips/20K MIPS 24K mips/24K MIPS 25K mips/25K MIPS 34K mips/34K MIPS 5K mips/5K MIPS R10000 mips/r10000 MIPS R12000 mips/r12000 QED RM7000 mips/rm7000 PMC-Sierra RM9000 mips/rm9000 Sibyte SB1 mips/sb1 NEC VR5432 mips/vr5432 NEC VR5500 mips/vr5500 e500 ppc/e500 e500v2 ppc/e500v2 Core Solo / Duo i386/core PowerPC G4 ppc/7450 Core 2 i386/core_2 ppc64 POWER6 ppc64/power6 ppc64 970MP ppc64/970MP ppc64 Cell Broadband Engine ppc64/cell-be AMD64 family10 x86-64/family10 ppc64 PA6T ppc64/pa6t ARM 11MPCore arm/mpcore ARM V6 PMU arm/armv6 ppc64 POWER5++ ppc64/power5++ e300 ppc/e300 AVR32 avr32 ARM Cortex-A8 arm/armv7 Intel Architectural Perfmon i386/arch_perfmon AMD64 family11h x86-64/family11h ppc64 POWER7 ppc64/power7 ppc64 compat version 1 ppc64/ibm-compat-v1 Intel Core/i7 i386/core_i7 Intel Atom i386/atom Loongson2 mips/loongson2 Intel Nehalem microarchitecture i386/nehalem ARM Cortex-A9 arm/armv7-ca9 MIPS 74K mips/74K MIPS 1004K mips/1004K AMD64 family12h x86-64/family12h AMD64 family14h x86-64/family14h AMD64 family15h x86-64/family15h Intel Westmere microarchitecture i386/westmere OPROFILE_EVENTS_DIR /usr/local/share/oprofile/ %s/%s/%s oprofile: parse error in %s, line %u
 0x%x 0X%x expected hexadecimal value expected decimal value next_token(): garbage at end of line next_token() expected ':' desc oprofile: could not open unit mask description file %s
 parse_um() expected :value include include must be on its own unit_masks name duplicate name: tag type duplicate type: tag mandatory bitmask exclusive invalid unit mask type duplicate default: tag invalid unit mask tag Missing name for unit mask Missing type for unit mask no unit mask name line oprofile: maximum unit mask entries exceeded invalid unit mask entry oprofile: could not open event description file %s
 invalid event name event duplicate event: tag counters duplicate counters: tag cpuid duplicate ext: tag um duplicate um: tag oprofile: could not find unit mask %s
 combined unit mask must be all the same types combined unit mask must be all bitmasks or exclusive too many members in combined unit mask Empty unit mask minimum duplicate minimum: tag filter tags before include: non whitespace after include: unknown tag um %s is not used
 mandatory um %s doesn't contain exactly one entry (%s)
 um %s default mask is not valid (%s)
 exclusive um %s default value is not valid (%s)
 / event_mappings oprofile: could not open event mapping file %s
 duplicate event tag mmcr0 duplicate mmcr0 tag mmcr1 duplicate mmcr1: tag %Lx expected long hexadecimal value mmcra duplicate mmcra: tag Error: Missing information in line %d of event mapping file %s
 mmcr0:%u mmcr1:%Lu mmcra:%u CPU_CLK_UNHALTED RTC_INTERRUPTS GLOBAL_POWER_EVENTS CPU_CYCLES CYCLES INSTRUCTIONS INSTRUCTIONS_GRADUATED INSTRUCTIONS_ISSUED INSN_SURVIVED_STAGE7 INSTRUCTIONS_EXECUTED CPU_CLK {kern}/ {anon: }/ {root}/ {dep}/ {cg}/ .%d.%d. %d. %s. ibs_sfile_get vmlinux   sfile_log_arc sfile_log_sample_count get_file                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               0      C     U  X   n                                                8     O     i             (     ,     @     H           Q  ]         g  k        t  y                                                                      
  	        ,  
      :  Y        d  n        x    
                                                        
          )  6        C  P        ]  k        y                                                                        	                   ,  >         J  U  !      ^  i  "      u    #          $          %          &          '          (          )          *        ;  +      I  X  ,      h  s  -      ~    .          /          0          1          2          3          4       )  9  5      J  W  6      d  {  7          8          9          :          ;          <      !  *  =      3  >  >      I  Y  ?      j  z  @          A          B                    $                                  `     `
        oH            H             
   j     4     M     U     b        !                                  o                                                         b  $  8 4                                    ,   (     0          `            u                                                                                                                                                                                                        #     2  m5  2  2  -3  )5  6  1  i1    4  4     @  @  [  Y]  ]  \  [  Q[  [  [  %[  [  Z  [  [  }:  };      r              ~    ɼ  r           ּ      k      $         p                     ;         4     E    S         8     ]    g         |d     m                                        3              C    Y              f      e      e           v       td             V      d       Ծ    x      xd                         :                                                                      ]              T  ?           ?   Y      p              u   v                                             ]              T  ?           ?   Y      p              u   v                                  d  d  d  l  l   GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"oprofiled   Yy .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .ARM.extab .rodata .data.rel.ro.local .preinit_array .init_array .fini_array .data.rel.ro .dynamic .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                  4  4                             H  H                             j                 #         4  4  ,               )   	      `  `  `
               2   	                        6             X                 ;                              A                               U     p       p               `         ,  ,  t                 k             -                 s         X  X  (                                                                                                                                                                                       `                                x                          x  x  +                      0       x                                                          p          6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     0  ELF          (      4   \!     4    (      4   4   4                  4  4  4                                          h  h.  h.                 .  .              Qtd                             p                  Rtdh  h.  h.            /system/bin/linker                                
                            1              8              @              E              L              ]              o                                                                                                                                                                                                                0             6             ;             R   0       Y   0       e  0        __libc_init __cxa_atexit __aeabi_unwind_cpp_pr0 strcmp fprintf exit strtol pm_kernel_create pm_process_create pm_process_workingset pm_process_maps fputs calloc __errno strerror printf pm_memusage_zero pm_map_workingset pm_map_usage fflush pm_memusage_add pm_map_pagemap pm_kernel_count pm_kernel_flags qsort __sF __aeabi_unwind_cpp_pr1 _edata __bss_start _end libpagemap.so libc.so libstdc++.so libm.so                   
                                                                                                                  	          
                             /     /     /     /     /    /    /    /    /    /    /    /    /  	  /  
  /    /    /  
  /    /    /    /    /    /    /    /    /    /    /    /    -)   Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ| Əʌt Əʌl Əʌd Əʌ\ ƏʌT ƏʌL     H-MP00L   D   <      K   0 0'   H-M   00  0 K '  hhhhBӔ   pGO0pG  -O-(EF|D݉F !GF%O5zDU{DxD}D
DyD
G%XyD0*Y_
(FH(F8(F((F
(F T*FXT@yD4 FH FyD2h O	O<#E
"V' xFS V' T yD08ԴTxD-AFhFHBFT
 yD0" (T	xD
HtaXxD1|!|h~ hpyDFD X03\\\$DX4yDzD{DPd@FLt~DHH$DH4yD zD{DX88yD xD
F@FFH5 d t ~D$D4yD zD{DtxD$D4yDzD{D0F IHyD xD
F0FF!NIO ~DyD40,( (!FXM hIyDF`Y0O9FR( AF@JXT HxD!98h`OYT HxD~bF>baah  # *s #[ QCS1FXIT
T 
r1F`DT`T `" #@@R!#OO 0@ +*
PiKa
ipa	P{jZzb8jA9b		E
i
i9j

SxjP1
E.$"#FZO &DDeR&@ ,_h +Zл(ѡhh )#i1i *2 +3hC
 ihC
 jhC
`jhC
$h`i@F.`hh (h 0 *2 i +3 ( 0 ihC
ihC
 jhC
`jhC
$h`i8F6Bۻ@OIPJyDPH zDFxD
F"
 )#1 +3$ +3
 

:H
uCxD9H
xDv        @&  Q  N  K  H  E  (                                                                0      `  X    z      A    ,  $I%KyD%H {D
FxDF!" (# 0 .6$ ,4 (
 0 


HxDH
uCxD
  ' N  P  I  G             Android    |      &    Usage: %s [ -w | -W ] [ -p | -m ] [ -h ] pid
    -w  Displays statistics for the working set only.
    -W  Resets the working set of the process.
    -p  Sort by PSS.
    -m  Sort by mapping order (as read from /proc).
    -h  Hide maps with no RSS.
 -w -W -m -p -h Invalid argument "%s".
 Invalid PID "%s".
 error creating kernel interface -- does this kernel have pagemap?
 error creating process interface -- does process %d really exist?
 error resetting working set for process.
 error listing maps.
 error allocating map_info array: %s
 %7s  %7s  %7s  %7s  %7s  %7s  %7s  %s
 WRss WPss WUss WShCl WShDi WPrCl WPrDi Name -------  %7s  %7s  %7s  %7s  %7s  %7s  %7s  %7s  %s
 Vss Rss Pss Uss ShCl ShDi PrCl PrDi error allocating map_info: %s
 error getting usage for map.
 error getting pagemap for map.
 error getting count for frame.
 error getting flags for frame.
 %6ldK  %6ldK  %6ldK  %6ldK  %6ldK  %6ldK  %6ldK  %s
 %6ldK  %6ldK  %6ldK  %6ldK  %6ldK  %6ldK  %6ldK  %6ldK  %s
 TOTAL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     /                           (         o             H           8  
             j     x                h.  !         p.           x.              o                                                   h.  p.  x.                                                                     GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"procmem  = .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .ARM.extab .rodata .preinit_array .init_array .fini_array .dynamic .got .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                    4  4                             H  H                         8  8                   #                             )   	          (                2   	                         6             4                 ;                               A                               U     p                       `                               k      2                       s         h.  h                             p.  p                             x.  x                             .                             /                                0                              0                                                                    p        ,   6                                b                                   n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              0  ELF          (    `
  4   t!     4    (      4   4   4                  4  4  4                             4  4             .  .               L  L.  L.              Qtd                             p                       Rtd  .  .            /system/bin/linker                                
                            1              6              >              G              N              S              Y              `              h              n                                                                                                                                                                                                                #             :             P             c             h             n             s             |                                                                    0          0         0        __libc_init __cxa_atexit __aeabi_unwind_cpp_pr0 open __errno strerror printf read close memset strncmp atoll __stack_chk_fail __stack_chk_guard __aeabi_unwind_cpp_pr1 bsd_signal strcmp fprintf exit pm_kernel_create pm_kernel_pids fputs calloc malloc pm_memusage_zero pm_process_create __sF pm_process_usage_flags pm_process_workingset pm_process_destroy free qsort puts asprintf fopen fgets fclose strlcpy putchar _edata __bss_start _end libpagemap.so libc.so libstdc++.so libm.so   %   +                                   $             #   %   	       (       &                          '         *   
      "   )                                                                                    
                                                                         !          .     .      .     $.     (.     ,.     L/     P/     T/     X/     `/     \/    d/    t/    x/    |/    /    /    /    /    /  	  /  
  /    /    /  
  /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /     /  !  /  "  /  #  /  $  /  %  /  &  /  '  -&   Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ| Əʌt Əʌl Əʌd Əʌ\ ƏʌT ƏʌL ƏʌD Əʌ< Əʌ4 Əʌ, Əʌ$ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ     H-MP00L   D   <      K   0 0|$   H-M   00 p 0 K %  Kp{D	h hh #LhBhFBs۔Bu   O0pCp $  Kp{D	h hh #hhFBs۔Bu   O0pCp $  Kp{D	h hh #hhFBs۔Bu   O0pCp x$  Kp{D	h hh #iiFBs۔Bu   O0pCp @$  Kp{D	h hh #LiBiFBs۔Bu   O0pCp $  GK !GJ{DGH-O<MXxD#hF44B
D hFF>HxDHd
@2!FFF0FH -6HxD6S 'gU̠̰9F(F"<FDD0[&0 FF6d F4x *FxF30	) F&7E& "F6  &Z& )xF2
( x/hH xD*iki F4 0B
m2#        p!  n  ^      -O-F홋OհKFD!O5pXFHD hS
 IJH{XzDxDL !`FJ|DK`zD{D%HILxDKyDJ|D{D	zD

XO FJzD F JzD  v FJzD F	JzD F
~JzD F (F F| (E FYFv (B F
p (ArI FyDh (=oI FyDb(mJzDhXB`3kI FyDVjIFxX=iI02hyDR(F eI"FyD8FHcI2h8FyDB D@=>>H!$5MEq2 NH9XQHxD
DZF*F8GMLHyYxD1(  !(FHFFEIFEHyDxD:L h@IyDF8Y0 OIX0N h7IyDFY0Q( @+ S( F (YW S 0~         @              !  A  P"                  7[c  X  j!  C  2  "      
    L      (
(YS+ 1	Y<F"@JXS 0N(YJi *$EJ  /?U( ChE' 7p 'FE(F9F" 0fHIxDyDxHIJxDKyDzD{DıHIxDyDIHyDJ xDIzDKyD{D,HIxDyDH 'xDF:}K~JF~H{DzDFxDiV+h. (.FOqF* (OO (O OrVHihDaHiD	hxDDjiV<\HxD 


Z
V iʀ
 SH

xD
L<VOHJixD
B7VB(FGMGH}DxD)F.CDJ)FDHzDxDF$AK)FAH*F{D xD,>H?IxDyD=HO*=MxD}D;H)FxDO#28H)FRFxD5H)F *FxDSF$2HAFxD0HxDr
 S  hB U                          z            <  ,         @        J  2                            Android    $   `          ?    /proc/meminfo Unable to open /proc/meminfo: %s
 Empty /proc/meminfo RAM: %ldK total, %ldK free, %ldK buffers, %ldK cached, %ldK shmem, %ldK slab
 -v -r -p -u -s -c -C -k -w -W -R -h Usage: %s [ -W ] [ -v | -r | -p | -u | -s | -h ]
    -v  Sort by VSS.
    -r  Sort by RSS.
    -p  Sort by PSS.
    -u  Sort by USS.
    -s  Sort by swap.
        (Default sort order is PSS.)
    -R  Reverse sort order (default is descending).
    -c  Only show cached (storage backed) pages
    -C  Only show non-cached (ram/swap backed) pages
    -k  Only show pages collapsed by KSM
    -w  Display statistics for working set only.
    -W  Reset working set of all processes.
    -h  Display this help screen.
 Invalid argument "%s".
 Error creating kernel interface -- does this kernel have pagemap?
 Error listing processes.
 calloc: %s malloc: %s
 warning: could not create process interface for %d
 warning: could not read usage for %d
 %5s   PID %s  %7s  %7s   WRss WPss WUss %7s   WSwap %8s  %7s  %7s  %7s   Vss Rss Pss Uss Swap cmdline /proc/%zd/cmdline r <unknown> %5d   %6dK  %6dK  %6dK   %7dK  %6dK  %6dK  %6dK   %6dK    %7s  %7s  %7s   ------ %7s  %6ldK  %6ldK   %8s  %7s  %6ldK  %6ldK   %6ldK   TOTAL MemTotal: MemFree: Buffers: Cached: Shmem: Slab:  	                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                       h/                     $     h         o             H             
                                  4.  !         <.           D.              o                                                   4.  <.  D.  q
      0                                                                                         GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"procrank    !f .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .ARM.extab .rodata .data.rel.ro.local .preinit_array .init_array .fini_array .dynamic .got .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                     4  4                             H  H                                              #             H               )   	      $  $  h                2   	                        6                              ;         `
  `
  	                 A                               U     p                          `                                 k         8  8                   s         .                               4.  4                             <.  <                             D.  D                             L.  L                           L/  L                              0                              0                                                                    p        ,   6                                b                                   r                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @  ELF          (      4   d1     4    (      4   4   4                  4  4  4                             &  &           -  =  =    2           4.  4>  4>              Qtd                             p(  (  (  H   H         Rtd-  =  =            /system/bin/linker                                
                            "              (              -              D              L              T              ]              j              w                                                                                                                                                                                                                                                                                      
                                       &             ,             2             8             ?             E             K             R             Y             _             d             q   @       x   @         |p        __libc_init __cxa_atexit fprintf fputs __sF __aeabi_unwind_cpp_pr0 opendir __errno strerror __strcpy_chk __strcat_chk __strlen_chk readdir strcmp strcpy lstat strdup free closedir rmdir unlink fread fwrite strlen malloc printf fopen fclose __aeabi_ldivmod getuid exit getopt puts property_set sleep mkdir chmod optind chown utime fflush fileno fsync sync __isthreaded _edata __bss_start _end libcutils.so libc.so libstdc++.so libm.so  %   1       %   +   $                      ,       	   (       #              .   &          '      -         )      *      0       
       /                                                                                                                 
                                    "                      !         =     =     >     >     4?     8?     <?     @?     D?    H?  &  L?  -  \?    `?    d?    h?    l?    p?    t?  	  x?  
  |?    ?    ?  
  ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?     ?  !  ?  "  ?  #  ?    ?  $  ?  %  ?  '  ?  (  ?  )  ?  *  ?  +  ?  ,  -46   Əʌ4 Əʌ, Əʌ$ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ| Əʌt Əʌl Əʌd Əʌ\ ƏʌT ƏʌL ƏʌD Əʌ< Əʌ4 Əʌ, Əʌ$ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ     H-MP00L   D   <      K   0 0j(4   H-M   00 ^ 0 K T4  8FKJ{DIXyD*F4 FH!FxDH!FxDH!FxD	I F*FyD8@ z3      A      -OFxM}DFx htJuIyDFX:F0r FqN9FOR~DD0FDmIOR0FyD~0FOQ 	 F (  QF0F~ (`I0FyDv (]I0FyDp (1FHFpYK &{DFbHUHxDhqSh+6X6 O (уFO FJNKJ~DzD0FFLh hCIyDFU 0\i pLO90F8FeFH0F6 F8FL 0F6h h/I2FyDF H(X00F+N9F~DOR0F'I0FORyDe$K{Dh(1F (?\ N~D0F
 (?T hJIyDFX02FD F 3    3    1      {  *3  C  2  b      V2  v  <B  $2    -OFFFt=O #DFD`i _FO X!HF[FBF-3I|XV h(R hV-HxDBF+F  *IyD,@h+< h@$HxD$IBF +F yD(!HF"FBF"H=X  h$IBF#FyD     hIBF#FyD  

   0  A              7F!L`#"+FhF4|D(F hJIyDFX*F0    >/    7F"
L@!|D(F hJIyDFX*F0    >X/    7F"F!
M}D(
 hKIyDFX0n  F> /    -AFFFF+NAF~DF F  F)F!8F*F#FBT hXIyDFH0X08  M F}Di ( Fi| ( F)iv (Ъl FN#E ()m F#= (Ыm F#5 0  ʚ;.  0  8_  -OFFFdؑDF@FF=F hpIBFFY nI0yDlK $lH{DxD8F (  0F (dI0FyD (aI0FyD ( F 0F 
"AFF1FVN
/"~D
 6h6	!F6 (0X (LN F~D1F뀱 hGIyDF=HY  0"Fx %d1ipBO?H!FxD(F!"F (Q(F!Fe (J O5K{DhV F1F(1H1FxDx/H!FxD(F!"Fh+N(F~D6k2Fc 'I FyDF`@M hB"IyDFY 02F (FYF #FXF .C% F FZ8F^(F -    
  ^,  
  w
  >  ]      |=      N]      F!"hFL@|D( h	K
IyDFX0O2O3 #FF+  @
      -OlDFF|D>X``2hT	 yD0@DTxD10hO0$uh((FyD (FyDF 0h8F(FyDFPK*FIXyD0h'H "I#xD`DeXD+`FM}D@F1FRF (a(h("   /H!X(F1D0h  OHYxD EKV!PE 0MHaYxDM}DHNxD~DI0FyDI0FyD (F / <IyDFp hI*FyDFH X0 !OjD CF38`+ٵOIYyD0IB0F !UOD8`H "xD`(FK{D`HxDlHxD= ( ꁾH)FxD8DDD0FO1) ցڗJIXyD00FO1 ܐIZF`XI0yD} 
!ZF3FFXEІH!XH1xD !)T0FO1 0}KIXyD0W0FO1 0IT yD0F0FO1OrB IT yD030Fh (q dOIYyD0&] #H 0FT (q ZJIXyD0S #P 0F@ (q PI`XwI0yD*F<H #X  
/mH)FxD(F (N
h*I hcIyDF8H X0%/40F2I:F`X\I0yD)FPFTXI(FyDTFp hSIyDF$H X0*F #:F 1F+FNFXF>_JHIXyD0:FDDDO(FD;i
\ ( ?i h,<IZFT0yD  +F ʚ;     v+  
  
  
  
  
  
  ;  
  z;  
  s
  h
    p
  }
  
  ~
  P  W
  [  I
  |:  r:  j:  ;
  O
  A
  BZ  @Z    4
  2
  2
  .
  -
  (
  0
  +
  $
  
  
  
  ,
  
  
  	  	  X    (Fii谱i h bI+FbXbI yD ZFl:m(F蘱 UO hYUIZFyD  +F(F,(F(#O70F^ /@IHxDrIIyDNFh hCIyDFT 0OAH)FxD2(F>J5IzD`0FO79I0FyD	h (6I0FyD (0F9F (0F`X h,IyDF!H X0*H#Xh 0FPTp hIF`X I0yD*Ff0FDHxDHxDLI|DyD FI FyD  O0            -  *6  6                    xGF (         Android    ,P,h   Usage: %s COMMAND [options] [backup-file-path]
 commands are:
  help            Show this help text.
  backup          Perform a backup of /data.
  restore         Perform a restore of /data.
 options include:
  -h              Show this help text.
  -a              Backup all files.
 
 backup-file-path Defaults to /sdcard/backup.dat .
                  On devices that emulate the sdcard, you will need to
                  explicitly specify the directory it is mapped to,
                  to avoid recursive backup or deletion of the backup file
                  during restore.

                  Eg. /data/media/0/backup.dat
 
The %s command allows you to perform low-level
backup and restore of the /data partition.  This is
where all user data is kept, allowing for a fairly
complete restore of a device's state.  Note that
because this is low-level, it will only work across
builds of the same (or very similar) device software.
 Error opendir'ing %s: %s
 / . .. lost+found warning -- stat() error on '%s': %s
 warning -- rmdir() error on '%s': %s
 warning -- unlink() error on '%s': %s
 unexpected EOF unable to read source (%d of %ld bytes) file '%s': %s
 unable to read buffer (%d of %ld bytes): %s
 unable to write file (%d of %d bytes) '%s': '%s'
 unable to write buffer (%d of %d bytes): '%s'
 unable to write int64 (%d bytes): %s
 unable to write int32 (%d bytes): %s
 unable to read: %s
 unable to write: %s
 error opendir'ing '%s': %s
 stat() error on '%s': %s
 Saving dir %s...
 Skipping backup file %s...
 Saving file %s...
 r unable to open source file '%s': %s
 /sdcard/backup.dat dir file error -- %s must run as root
 No command specified.
 restore help backup Unknown command: %s
 ah Warning: -a option ignored on restore
 Unrecognized Option
 Too many arguments
 Stopping system... ctl.stop runtime zygote Unable to open source '%s': %s
 Restore file has bad version: 0x%x
 Wiping contents of /data... /data Restoring from %s to /data...
 bad token %d in restore file
 bad path length %d in restore file
 truncated path in restore file
 bad uid in restore file at '%s'
 bad gid in restore file at '%s'
 bad mode in restore file at '%s'
 bad atime in restore file at '%s'
 bad mtime in restore file at '%s'
 bad ctime in restore file at '%s'
 Restoring dir %s...
 unable to create directory '%s': %s
 bad file size %ld in restore file
 Restoring file %s...
 w unable to open destination file '%s': %s
 unknown node type %d
 unable to chmod destination %s '%s' to 0x%x: %s
 unable to chown destination %s '%s' to uid %d / gid %d: %s
 unable to utime destination %s '%s': %s
 Restore complete!  Restarting system, cross your fingers... unable to open destination '%s': %s
 Backing up /data to %s...
 error flushing destination '%s': %s
 error syncing destination '%s': %s
 Backup complete!  Restarting system... Restarting system... ctl.start /data/misc /data/system/batterystats.bin /data/system/location /data/dalvik-cache                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              &      &      &      &                            P?     H                l     X         o             H           X  
                                  >  !         $>           ,>              o                                                   >  $>  ,>                            	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  	   GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"rawbu   O< .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .rodata .data.rel.ro.local .preinit_array .init_array .fini_array .dynamic .got .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                    4  4                             H  H                         X  X                   #             `               )   	      l  l  X                2   	          H              6         	  	                    ;                               A                               U     p   (  (  H                `      2   p  p                  h         =  -  (                  {         >  .                             $>  $.                             ,>  ,.                             4>  4.                           4?  4/                              @   0  |0                       0        0                                 0                         p        ,0  6                                b0                                  n0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ELF          (      4   d     4    (      4   4   4                  4  4  4                             0	  0	                 h  `                             Qtd                             p                  Rtd      h  h        /system/bin/linker                                
                            +              0              5              ;              B              G              N              T              e              w                                                  __libc_init __cxa_atexit __aeabi_uldivmod open read close sscanf puts printf sleep __stack_chk_fail __stack_chk_guard __aeabi_unwind_cpp_pr1 _edata __bss_start _end libc.so libstdc++.so libm.so                                                      
      	      
                                                                           	        
      -   Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ| Əʌt Əʌl Əʌd Əʌ\ H-MP00L   D   <      K   0 0   H-M   00  0 K   -O]OK
QD
4
Xh"`H !xDZ
D	@rIFVF FX|IHFyD #	0V(xHxD)@	0/"
*	pHxDDoIHFyD8(DNF		1x )v
)	qsxc+dH>X2  ( HFYFRF3F
(THIFxDESM0 L2h|YWP 0CCXRPthKhhhE`hh`i5i`tiMiacECa#eE##cjEjFbĘ  3HxD7/N %1HxDY/N 4~DT TT< #T,JT #J )Fh50FT ,T<04- 
QO0hhB
]@B Z  v  ^  X  N  Z  \                   Android        p   /proc/schedstat version %u
 Could not parse version Could not parse timestamp timestamp %llu
 cpu%d %u %u %u %u %u %u %llu %llu %lu
 Could not parse %s
 Can not handle version %u
 CPU  yield() schedule() switch idle   ttwu() local  cpu_time wait_time timeslices  %2d  %7u %10u %6u %4u %8u %5u %9llu %9llu %10lu
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             X                 t     @         o             H           X  
                                   !                                  o                                                         Y            h                                      GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"sane_schedstat  MC .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.extab .ARM.exidx .rodata .preinit_array .init_array .fini_array .dynamic .got .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                    4  4                             H  H                         X  X                    #             X                )   	      t  t  @                2   	          X               6                               ;                               A                               U                               `     p                       k      2       8                s                                                                                                                                       X                                                          0                                                                  p        ,  6                                b                                  v                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     0  ELF          (    |  4   \!     4    (      4   4   4                  4  4  4                             x  x           d  d.  d.               |  |.  |.              Qtd                             p      0   0         Rtdd  d.  d.            /system/bin/linker                                
                            !              &              =              D              I              `              i              o              w                                                                                                                                                                                                                                                0          0         0        __libc_init __cxa_atexit strcmp free __aeabi_unwind_cpp_pr0 printf puts __aeabi_unwind_cpp_pr1 snprintf fopen __errno strerror fprintf __strlen_chk sscanf strlcpy strlen calloc fputs exit fgets fclose __stack_chk_fail __stack_chk_guard __sF _ctype_ bsd_signal strtol _edata __bss_start _end libcutils.so libc.so libstdc++.so libm.so                                          
               	                                                                                  
                                    |/     /     /     /     /    /    /    /    /    /    /    /    /    /  	  /  
  /    /    /  
  /    /    /    /    /    /    /    /    /    /    /    /    -4)   Əʌ4 Əʌ, Əʌ$ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ H-MP00L   D   <      K   0 0(   H-M   00  0 K '  -GFFFh
F )U &0 ,Fк /@F0 ((hh!i`*i`i#aiiBibaiiai!ja*jaj bkjjbbjj Pbb(FG ] 	jhchBѨhhB@F0 (5` =`,`&F$h  K{DhHxDHxDIyD
hHxDHxDK{Dh8IyD
h
HxDHxD@  '      &  .  9  &  &  a  _  K{DhHxD
HxDIyD
h:K{Dh
HxDz	HxD@  &  &  1  t&  h&  Y  W  -OFN4]KF~DJF!XzDCF $(h,ZIyDZF (@Z h\IBFyDFH0X0Z(FOaZ*<
+  I
((F yD	J(I(FYF+
>(уI+yD
`I+yD
"a|I+yD
aayI+yD
auI+yD
arI+yD
"bnI+yD (@
abjH1X 2    \ [x۲ +0+"%hB0F(ݔ0 /* -0.+ѐ. s*ѐ/ o(oMI+"yD #!+BF 51F 	7LAH1YxD1 	(  +0, 0 !FJFSF!dF$I*FpX.I0yDnKD(FOa:F (!FJFSF8F?IBFpX I0yDL8F,%hB+"R#xM
m %  4  +                    D      _    -OFF
 !HM>}DDJDKDHzD{DxD'XOIF F
 FQF` FYF`.	uHUxD1 F
"!x ) x *@kMkK}D{D)hh8 "&F (  $bHbI'FbJxDyDzD&FFFFF	 Fi)j*iDDhii
Dhkj?jhDd +1h)OHihxDhPi i+j	ij @EJzDh@DK{Dh!CHjxD4j0@JzD?JzD?HxD&+h(F (H7IyD
h6HxD5H9F2F xD/K{Dh@.IyD
h"-H!FxD+HxD  P"F(IU yD0> .?4"HUxD1 
"  C  B  A  #  #  
#    "  "  j"  `"    V  !  !  D      /  !  	    l!  `!          xGF xGF          Android    H$   (   ,                 ̲       start      end   virtual                     shared   shared  private  private     addr     addr      size      RSS      PSS    clean    dirty    clean    dirty     #  object -------- --------  -------- -------- -------- -------- -------- -------- --------  ----  ------------------------------ /proc/%d/smaps r cannot open /proc/%d/smaps: %s
 %lx-%lx %*s %*x %*x:%*x %*d%n %63s %d kB Size: Rss: Pss: Shared_Clean: Shared_Dirty: Private_Clean: Private_Dirty: [anon] out of memory
 warning: could not parse map info line: %s
 could not read /proc/%d/smaps
  [bss]  -v -t -a too many arguments
 %08x %08x  %8d %8d %8d %8d %8d %8d %8d  %4d  %s%s
                    TOTAL unrecognized argument: %s
 showmap [-t] [-v] [-c] <pid>
        -t = terse (show only items with private pages)
        -v = verbose (don't coalesce maps with the same name)
        -a = addresses (show virtual memory map)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            /                      d     8         o             H           H  
   N          $     1     9     F      d.  !         l.           t.              o                                                   d.  l.  t.                            T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T  T   GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"showmap s .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .ARM.extab .rodata .preinit_array .init_array .fini_array .dynamic .got .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                    4  4                             H  H                          H  H  N                 #                             )   	      d  d  8                2   	                         6         T  T  (                 ;         |  |                   A                               U     p       0                `             $                  k      2                       s         d.  d                             l.  l                             t.  t                             |.  |                           |/  |                              0                              0                                                                    p        ,   6                                b                                   n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              0  ELF          (      4   `!     4    (      4   4   4                  4  4  4                                          x  x.  x.                 .  .              Qtd                             p      0   0         Rtdx  x.  x.            /system/bin/linker                                
                            +              =              T              [              r                                                                                                                                                                                                                                                                0          0         0        __libc_init __cxa_atexit __stack_chk_fail __stack_chk_guard __aeabi_unwind_cpp_pr0 strcmp __aeabi_unwind_cpp_pr1 __aeabi_uidiv fopen perror fgets fputs sscanf malloc fclose __sF memset __errno strtoul fprintf exit printf free __page_size _tolower_tab_ _edata __bss_start _end libc.so libstdc++.so libm.so                                
                                                                                     	                                
                /     /     /     /     /    /    /    /    /    /    /    /    /  	  /  
  /    /    /  
  /    /    /    /    /    /    /    /    /    /    -)   Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ| Əʌt Əʌl Əʌd Əʌ\ ƏʌT ƏʌL ƏʌD Əʌ< Əʌ4 Əʌ, Əʌ$     H-MP00L   D   <      K   0 0(   H-M   00  0 K (  "K#J{D-AXhF (/j *,F"j6jj ,5j #3bXDF(FF   F)FG4b j5b F,F-j&FF - ,F4b	;hB (  .(  jjB   pGjjB   pGkkB   pGCkHkB   pGkkB   pGkkB   pGCjHjB   pG-OFxO}wKDwIXyD hvHxDF sHxD#
4	O qBFHFF8mKmHXxD1kIHF	
yD(
fHWxD1 %	)
*p_HWxD]KO o D]Ftb{D\F
0
t  #(p@ F SHxDhdi (J )FFa 0  48HF"F,Z(:MAHyYxD1L; kqjjB8pb#k  BbkHCj`bIjd XCFciPa cjhh`jC1h`"kj qh3`"kj 2is`ksi1apa @F %HFO qBF  (@FHxD !!bh0h0b(FhB
} &  W  @  C  '  6  <  =  Y  2  8    -C-,"F
FL !K|DOJXDzD:`h )1.O(@.\ohI8FyDF1F2F`hFh + 𑀴HxDI8FyDp (9ѰIhbX+xhX7`a>.(1' 4' ' ' ' ' ' ' '  '    ' ' ! ' $ L|DL|D
L|D
L|DL|DL|DL|DM}D,`IpI*hT@yD4 FrH!FxD<H!FxD8H!FxD2H!FxD.H!FxD(H!FxD$H!FxDH!FxDH!FxDH!FxDH!FxD
H!FxD 8&$F 
`;^*z
#uMؑ}DDBK$;
rHxDaK ;JoL|D$ [*bkcg+{ Zjh [{@!zb@dk{b{e
fg+aln"MKNHNI{DxDyDLHLJxDLIMKzD yD{D8F 'FF
`7a; ;kck`j HFjjk$jB ,(F,j%F -3L|D3L|D(F#       Y@      P?$  $%  K      R$  ]  e  e  }                      #      V  Z  ]  	  ,  #  +  y          Android    t              "    /proc/slabinfo r fopen cannot read from /proc/slabinfo
 slabinfo - version: %u.%u unable to parse slabinfo version!
 we only support slabinfo 2.0 and 2.1!
 malloc %32s %lu %lu %lu %lu %lu : tunables %*d %*d %*d : 			     slabdata %lu %lu %*d unrecognizable data in slabinfo!
 fclose -n strtoul -s usage: %s [options]

 options:
   -s S   specify sort criteria S
   -h     display this help

 Valid sort criteria:
   a: number of Active objects
   c: Cache size
   l: number of sLabs
   n: Name
   o: number of Objects
   p: objects Per slab
   s: object Size
   u: cache Utilization
  Active / Total Objects (%% used) : %lu / %lu (%.1f%%)
 Active / Total Slabs (%% used)   : %lu / %lu (%.1f%%)
 Active / Total Caches (%% used)  : %lu / %lu (%.1f%%)
 Active / Total Size (%% used)    : %.2fK / %.2fK (%.1f%%)
 Min / Avg / Max Object Size     : %.2fK / %.2fK / %.2fK

 %6s %6s %4s %8s %6s %8s %10s %-23s
 OBJS ACTIVE USE OBJ SIZE SLABS OBJ/SLAB CACHE SIZE NAME %6lu %6lu %3lu%% %7.2fK %6lu %8lu %9luK %-23s
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  /           L                @         o             H             
   2     L               *      x.  !         .           .              o                                                   x.  .  .  
                                                                     GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"showslab    3 .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .ARM.extab .rodata .preinit_array .init_array .fini_array .dynamic .got .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                    4  4                             H  H                             2                 #         L  L                  )   	          @                2   	      L  L                 6                               ;                              A                               U     p       0                `                               k      2                       s         x.  x                             .                               .                               .                             /    x                            0                              0                                                                    p        ,   6                                b                                   r                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       	     ELF          (      4        4    (      4   4   4                  4  4  4                             Zq  Zq           |  Ԍ  Ԍ  
  (           x}  x  x            Qtd                             pR  R  R              Rtd|  Ԍ  Ԍ  ,  ,        /system/bin/linker                                
                            1              9              A              G              L              S              X              ]              d              q              ~                                                                                                                                                                                   %             +             1             E             T             [             d             k             s             z                                                                                                                                  #             7             L             _             k                                                                                                                                                             7             D             X             l                                                                                                                                                                                      #             6             G             \             k             r             }                                         m         m                 __libc_init __cxa_atexit __aeabi_unwind_cpp_pr0 _ctype_ fprintf fputs free malloc exit __sF fflush sqlite3_exec sqlite3_free sqlite3_snprintf atoi strcmp _tolower_tab_ sqlite3_prepare sqlite3_errmsg sqlite3_step sqlite3_column_count sqlite3_column_text sqlite3_finalize realloc memcpy printf fgets fputc sqlite3_result_text sqlite3_malloc getuid getpwuid getenv __swbuf memcmp putc __isthreaded sqlite3_interrupt strncmp sqlite3_mprintf sqlite3_open sqlite3_errcode sqlite3_create_function register_localized_collators register_android_functions sqlite3_column_blob sqlite3_column_bytes sqlite3_prepare_v2 sqlite3_sql sqlite3_test_control sqlite3_column_name sqlite3_column_type sqlite3_status sqlite3_db_status sqlite3_stmt_status puts sqlite3_complete __stack_chk_guard getrusage __stack_chk_fail __aeabi_unwind_cpp_pr1 __aeabi_idiv sqlite3_backup_init sqlite3_backup_step sqlite3_backup_finish memset fopen fclose sqlite3_bind_text sqlite3_reset strncpy sqlite3_close sqlite3_sleep sqlite3_get_table putchar sqlite3_free_table strtol sqlite3_busy_timeout sqlite3_libversion sqlite3_sourceid sqlite3_file_control sqlite3_config isatty bsd_signal sqlite3_vfs_find sqlite3_vfs_register access _edata __bss_start _end libsqlite.so libicuuc.so libicui18n.so libutils.so libc.so libstdc++.so libm.so   C   [   
   .   O   @   L   H   P   6   ;   N   X   0   J   R       7         B   :                 Q                 Z   9       1      I   V   *   F   2   G   M       /   -       S           U   Y       A           W       C           	       ?   K       D   E   #                                                                    
                                                                                                          ,       '       !              %                                             $      <       &   (       8       =   >          4   5   3   "   +       T               )   Ԍ     ܌                                             $     ,     4     <     @     D     H     L     P     T     X     \                               
        %    :      Ď    Ȏ    ̎    Ў    Ԏ    ؎  	  ܎          
                                                                $    (    ,     0  !  4  "  8  #  <  $  @  &  D  '  H  (  L  )  P  *  T  +  X  ,  \  -  `  .  d  /  h  0  l  1  p  2  t  3  x  4  |  5    6    7    8    9    ;    <    ?    @    A    B    C    D    E    F    G    H    I  ď  J  ȏ  >  ̏  K  Џ  L  ԏ  M  ؏  N  ܏  O    P    Q    R    S    T    U    V    W  -|   Əʌ Əʌ Əʌ Əʌ Əʌ Əʌx Əʌp Əʌh Əʌ` ƏʌX ƏʌP ƏʌH Əʌ@ Əʌ8 Əʌ0 Əʌ( Əʌ  Əʌ Əʌ Əʌ Əʌ  Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌx Əʌp Əʌh Əʌ` ƏʌX ƏʌP ƏʌH Əʌ@ Əʌ8 Əʌ0 Əʌ( Əʌ  Əʌ Əʌ Əʌ Əʌ  Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌx Əʌp Əʌh Əʌ` ƏʌX ƏʌP ƏʌH Əʌ@ Əʌ8 Əʌ0 Əʌ( H-MP00L   D   <      K   0 0x   H-M   00  0 K   FF3x ) @@pG0 $!F3\+%J\n+#t+#r+#У0-!؃[x0;+؊\0;mx0=-\09
F
#	#
# +FUQ4C\ +U0  KJ{DXh#Ҳڹ/+
Cx*+уF*(x/(-+Cx-+уF+B
*0x +  pG pGPpG w  -GF#O
FDDD64  $(]
\<(&(>("('(0F9F"F+F* <)HxD&)HxD>)HxD")HF')@F1F4-+x +ѽ >=  X=  O=  <  <  <  F-O
F@jD #sb -O)H,x9Xh_s_<$  $i #
 _*'*3$3/ *3XFpbHMHyYxD1 ' #p
#FTY'(PTF )' T3 !Tjv  N<  8F	
FFPI*FyD	8@8 ;  -C%JF %zDF]#F  hF(F7@F!iFHxDhBI iyD\	d fFJ)FCF zDzJ )F hzD#FfF0
I7F iyD:`(F@8F g  ;  ;  ;    ;  pFTN+F~DFIPrXh1 + *I(FyDD@	I(FyD> ($ $ Fp t  p;  g;  -G #F F hO2(F@ h&i&2IyDF0FK&DDF"F.0F!i !!i&F1FAF6FPFB -MF=-(ix-) &Fd-F h&iIyDF0F*FbiSca
HxD
HxD!i(F ;  %;  ;  :  :  :  -CFFFFF%(FF F	6
6 "E62BE(F1FFHD	@C !
x\pE3\p31AE "pZp9FBFL(F-GF1LFF|DPxB.HxD-KXT00d  FIF &d'4Fc B27(F 9FbF (7
9BFPFj#F(F(  ")3\ ) +,
*\
 &(
) #+U(FaGٺ  r  9  -AF#OF" !FD*D1\-(F!F"&	-\ !Ft 
-\ !Fn 
-\ !Fr KXhJ FAF*F~(F!F[ -" !FAq  8  KO2{Dh #z}  pFE(FF80F*FF F Fppi<HxDF  p FcE(FDF (!F*F0Fp8  h;` +ڊiBò
+
h
`pGC  -OFĐFDi WpH (
 'PFD*F ( Bѻ
0FQFZF 7] +?I" Yp;h"(:h!F;h!Fz (;h" !Fl0F!F8( )iOp  5  H"KxD{D h`ܹpG {  {  -A #FF9'*3/ *;I0F"FyDAǹO' p1FDD5  %`] ("'(8F1Fn4
*F#F0FAF5`d F1F`#x +' 1FAo - - 6  6  6  -O)0FD@
Ih FyDl (?ЅI FyDfF(H)ixD(/I F"yD ~I0F"yDйi3zH)ixD axH!F"F3FxDuIyDF(i"F F"qI2F(iyDO DmIPFyD"F (@iIFyDG
n!F""jdI2FyDe O2;FF(hQF
FPF .@ ) YI2F0FyDKWJYp :h	FXx	# 3
Oxy\  !FB""F+F 0F'"%FDI0F "yDO 	DDFF>HxD!		 "F0F9F""FFd/0FYFQF "Fd/F0F \"'I:FyD!F""BFF(F!FM( I F:FyD:FF(F!F? F:     n  +6  -6  ,6  66  .6  36  =6  6  {6  5  j6  \6  Y6  (6  5  5  5  5  5  q5  F)Mh}D +M	!F&N h~D0`xFX #!H!IxDyD0hN~D0hKI{DNhI"FyDFY0F (I0hyDFHJHXxD1 0h IHiXxDll  x  4  w  w  4  4  4  4  -OFiF
FF+ ؂	 B   >B jV(  (PFEFO	O DEhJ )`
 !idO DW( iV(0	Wq JFQFBEۓhY` /wь(%F(F$zDDD>c<  *V) O (FG
(F
"8XWp:BFc!#jk iEV)4{D [F
 QFF		E#j˹c.ؿ iyDԿ!
"kBCFKF
 QFF6	h &hhDDDBۅ\X &TDDD$c.iڿq
'*  BFX? iWsi B;FJFRFYF:F6BhZ`[ / ځ &8(
D5 jpEV(  i(SFYFn9FDDEW& Wp!i^FEPFi+HF!iR
 !i6Bۗ ` #!j	HddxD!iD6D!iPF0V( iHF!i$EH!ixD / iH &((xD!iDD!i@F
W& i	WqHF!i6B۽HxDBhJ`#j{V( i )QF(HF!iȢ(	FDE
 !iN / ! &(W& i	Wq@F!i6B4hB`"jzV( F )IFE ""X:FDE
 !i /  &8	FEW& F ""t6B
 !ihA` * ̀I &bj iyDr JDzD .}JO zDO,W;3 (IP&)uI iyDR) ь0(pI iyD)2yF1F 1FF	 xFF!i4bHAFxD,O  @FIFE' AF[x-(+(Y F 0 	(AqFˬ0
	ټ.Hx0 	(/qF 0 	(xe(E(Hx+(-(1 1 0 	(؎FqF 0 	(	x)0I iyD F!i iW6BF&HxD!i   '2  F4  1  4  3  3  s3  )3  %3  43  3  3  3  0  a2  2  ~2  2  ~2  [2  22  F2  E2  
2  
/  .  "1  71  x0  +.  0  0  0  /  /   $ -OF$FFzD  F`|4O 	xx${DyDzD	(F 9FO2$FH  (F  8tY	hF3  Qx_ *fh	 .  yD (F:F i  B
  x!i8d(FP8# FpfF (BO &  1FI& 6VE[F &1F1F`A& S+(@6VE FQFKF ZF (@d(FHF & , Ih ( E!i )u  
O9F(,I
yD ix
 #	 (,|I
yD ih
 # (,lI
yD iV
 # (,ZI
yD iF #
 (,JIyD i6 #
 (,:IyD i&
  #(,*I iyD#i +  - O 

QF (FO9(,IO
yD i!
 (F}IyD i!
 (FwIyD i!
 (FqIyD i!
 (F(,iI
yD i!
 (F(,aI
yD i!
 (F(,YI
yD i!
 (F(,QI
yD i!
 (F(,II iyD
r"i*%	! "F
 ib! "	vF
 iV! "	jF
 iJ.FИO	YhF3  Qx_ *F (F    	8xh ?i)+&y&wHF
$e  1  2  )2  ,  ^-  t-  -  -  -  -  -  -  -  -  -  -  -  .  .  .      -O-F}}KO 	DF|IFX NFzKLFMFyDh{D7	8i(F   YFF$%x%mHxD 	kJX "F ( qgHxDh) @i Z x((F (@H)x.) Fl(FX0 {h(F(F9F ( B ( ,

,xF0J_ /) (@?CHX h g*YxJ o(ј+ ";# FUJp^UP4HxD+,jh? + _ +%O)HXxD1 *Z)Fz(F41F1 FfF (Z
 )FU Z\;( 2Bư>&`  .l  Bl  k  k  8,  %   &8F`jIyD
h"iI0FyD8h!F:FXFdHxDh{  aH
xDBhh:+h :h :UHxD;a+C+ S+ .1d  HK{Dh*GJKFzDEJzDDHX `cCI yDZ !
8h<IyDF J

 F $P&F ?~3JzDh (?x 0IyDh +o| F@&J+IX yD"F0" F*(F(7PFhB" ,Ѯ(F;F0F ( " F  (0F$9 j  i  i  i  *  ^  *  *  *  *  i  x^  ]*  -OFk4-;O 	~D
F'XFh,*CxF2_  +>'+"+7 D)  7 
BњB 7"+D) F+JҲ *		92	zYh 
H p8FF8xb(zѻA8FZFyD (UѹRйOܹ0FDpF8F
F@x*xXyD0 (F-h*hCF
yDXF`
bPyDF<
0X0 (Fd!JF ((FJe/ Ć
HFpX0yD 8FZFyDF (AA 9{Dd(@À@8FZFyDF (6ѹ3
(F)F@D.!:"SU
 )DTyD zD(h0(G:h *R\I0YyDLF08hչl8FZFyDJF (A𽁹(FL	)ixDD	)ixD<a"F yD(h#Fla$(FyD(FyD(F"FyDfi(F~D1`yD(F"FyDR4`i8)ixDB "a $ yD"F#F(hT #F(hyD"FJki(iyDyDĸe(x8FZFyDFH h`A8FZFyD4p8FZFyDF (Ap8 ((*j$i_ppC<x#Ort38! ad"(b !< $

"#c*dlddd*ekee`p3 +[t#< xpCaOr)b_q۸h(68FZFyDN88FZFyDFH b(b-8FZFyD4F (AVxuYxD5)Frl)FxDli(@\8FZFyDF (@𙁹@0
(FpO( r0F1YxD
9FxDFXx1XxD10$eS AFO2
F(h^F@FB
t&zDhV,FpX0yD<VF
^
 6			H F (&;FQFHFzD?$PF#
 , 3L2CE
 #)$O2
@KpQF 
(hFPF윱46{DhFpX$0yD
 ('yDXXV yD0  Fx4E1YxD1
V"F #FyD(hFQ	O  WFcF'"(ь
( ѕ( B8FP3 CE	xI# 78x (38pCE<@V yD[F 0,e*PF4~DGY' x"("(3\
\3PT1 !#\ (7 
O39F^FFGE
F
VFPF럱D|D h2IFpX0dyD~D$  "F (_d~DHF 
& "1F F(h `8FZFyDpF (@ㆹ ߆
8`(FD)F@ 0J D $ yD(hzDFDD$ zD  yD(h F:h: IV yD0 , 𫆻JHXxD:l(VI8FZFyDF (@ 	p`IrXTBШ2BII8FyD~0JXT39 I8FyDp(L1Y1vI8FyDd	mI8FyDpF	 (@ŅH:FI0XyD0 Mm(@I8FZFyD (@4@@ F((FI F"yDP&(I F:FyD (k $a (ѺI F:FyDXO(@I F:FyD (R#a tI F"yD|I F"yDr蹯aF I F:FyDh"aI F:FyD^F8J! azD(I F"yDNFJ (zD/
їI F"yD<F(I a(FyDALH1YxDF@@ F(FъI FyDF@(F#a` I V yD0 n(~I8FZFyD  (@s@o WqvJ# zD d ݼo(@qI8FZFyD (@V@RO(iYTBn`D0FAFLF (@ŀQO`BFT7/a2 >
\  )  (  (  p(  (  (  (  Vf  I(  (  '  '  '  '  '  '  N(  (  Te  (  ()  )  )  )  s&  &  )  ^)  K)  (  (  v(  X  X  ;(  (  '(  .  fb  $  '  a  #  2'  #    &  Q&  "  `  S"  "  !  %  Z%  e_  G%  w!  [&  &     /&     &     %  %  %  %  %  s%  d%  S%  C%    '%  %  
%    $  $  $  %    $    80FyD(aP, 2FT7yD6/a)Q3FO`zDZp(%8FZFyDF (@L* G"xDv@"xDj >q(8FZFyD (@%@! +r(@𰀻@8FZFyD@ FyD$FHt"FpXp0yD (F9FF8FX8FZFyDr (@惹 ⃹ ރp,Dp8F
bF@8XyD0:F(F 8(hAF
{DFȹ(hyDFV 0v
Gd OHFd!F ((HFe/?/V@xDR
(hyDF @$
xs(@d8FZFyDF (@ 
8`(F*@D)F"LJQKF
V h0@L HFyD:F@xDyDHFyD*F6yD{DD!{ȦDD&yD zD (h FD& yD(hzDF:hr@V yD08h , Ft1YxDql8FZFyDRFx (P&# zD D8FZFyD8 (@𳀹@nh(i$6{D 6{D  &yDzDfps(i6{D6{D&yDzDR*j(i5{D5{DE%|DezD!F~D<i%!F(iTV#0zD0%yD(izD((iWqj
 )i F/iHE|D#F%8FyDzD%yD(izD(i(F)i
 xh(i5{D|5{Dx,Fx%vyDpuzDll%D(iyDzD(i9F4B
 )iLwk *<8FZFyD|F (@@ `t(@𒁻@`8FZFyD`F (@𜀹 (F
 yD(hF̔@D @yD (h F:hjV yD0h8h,%,'FL|1YxD1\$IX |BF5BݹP PPO DD(F!uh F$,O	FFDB̿QFaFP	04{DXF:FvDB
 EB@I8FZFyDF (@𮀹 (F@DO7 FFF FZp /
 GhO"FIYyD0

h / FFy)ٔIpXI0yDa
)dccc1HH  ! 
F8)hF8FFHxDJIXyD0?	8FFHxD
F5yKIXyD0, F vFHxDIV yD0 F8F^FHxDIV yD0"FT $]HI0XyD0yݨI8FZFyDFp(FA nF(hoI8FZFyDF (YѹV  K{D`[v(4єI8FZFyDFXF)FFHxD|EI8FZFyD툻IyD(h "
 ("

 (
w(}I8FZFyDp$X$  4LEczp:FqIV yD0$ F,*hB	 7;()

}
 m"#  #     #  Z  Z  "  "      C"  x    >    s!    ]!        ]!  W!  A!  T!  ZX  !  "    Y#  o#    G#  >  B  #  +      "        "    I  0  "      j"    e"  G"  D  H  "  )"  '"  "  "  !  !  !  U  #"  i  9    o"      !  xF  !  !  !  !  d!  !  4!  !  !  !  {!  !  w!  R  Q!  ?!  ?!     '     -OF\6FDf !Zp~D
8hT	t1F	FpllVl3FyDFZ 0X&)F#hzD'Pf`@| !`  T4 yD0L,,& yD(zD~D  & yDDzDD 2(F4yD`8F 'yD05%{DzDxD\T'`3x-+_EZ `W^rx-*60FH0F 0FAF7:0FIF|7T'P10FyDr`'0FyDh 0Fbع7T' !
EP2hZ yD0 "71BۡT'{[EDY%zDD)ST# [Eu6D0FyDT#0:hxDD	 !TuF@ $yDzD 	HFFX $yDzDh$CF)FHFzD@FFO (FyDFyDh?x *FyDIFFHF F@F / ҁLOH4H$xDH{DDtzDDyDDD
Hkx-+5(F (FyD#(F#+ (FyD|"(Ft#I(FyDl(!, ` (F
bEO6I+FD0FyD:hHxD1F'fT(   JzDI(FyD>عEK6I{D0FyDh+FHxDT( J zD #(F'I(FyD '(FIF!I(FyD"I(FyDK {DI(FyDFXPFR!FFHxDI(FyD K {D`I(FyDOD8`xI(FyD I(FyDhI(FyDpL6I|D0FyD"htIJ0FyDzD^I(FyD (?EST(P/x./	(FF (;ХK{D(U)F

FhIZ yD0>JzDh /@#бQH*FIZ  yD0,K{Dhh}J6I+FzD0FyDhHxDET(P(x-(?'9x.)8F6S

F2I yD (?{I yD?xK{DhrF)FFtHxDLF $ 0FF (kJ0F!F+FzD !F F(F1FF !	8FT)hB 'W
 m8D  5  J  O  -  1  O    2  O    E      D      \  ?  N  &  9  )  M  3  M  7    :C            +  7        xL  c        4L    _      	    L    `
    NA  ^  :A  Q  I    2K    
  u    <K  
  K    J  J      }    ?  ;  p  xGF xGF xGF xGF xGF xGF xGF xGF `         Android    $4$($|4       $      8        ֲ                                                                                                %.*s &lt; &amp; &gt; &quot; &#39; Error: out of memory
 (%d) %s
 /****** CORRUPTION ERROR *******/
 /****** %s ******/
 %s ORDER BY rowid DESC /****** ERROR: %s ******/
 on yes  /**** ERROR: (%d) %s *****/
 ,%s 
;
 ;
 %s \%03o HOME '%s' '' %.*s'' DELETE FROM sqlite_sequence;
 sqlite_sequence sqlite_stat1 ANALYZE sqlite_master;
 sqlite_ CREATE VIRTUAL TABLE PRAGMA writable_schema=ON;
 INSERT INTO sqlite_master(type,name,tbl_name,rootpage,sql)VALUES('table','%q','%q',0,'%q'); %s
 %s;
 table PRAGMA table_info( ); SELECT 'INSERT INTO ' ||   || ' VALUES(' ||  quote( ),  )  || ')' FROM    ORDER BY rowid DESC shellstatic Error: unable to open database "%s": %s
 en_US register_localized_collators() failed
 register_android_functions() failed
 
    , %*s = %s
 %-*.*s%s --------------------------------------------------------------------------------------------- %s%s <TR> <TH> </TH>
 </TR>
 <TD> </TD>
 INSERT INTO %s VALUES( %sNULL X' %02x );
 Memory Used:                         %d (max %d) bytes
 Number of Outstanding Allocations:   %d (max %d)
 Number of Pcache Overflow Bytes:     %d (max %d) bytes
 Number of Scratch Overflow Bytes:    %d (max %d) bytes
 Largest Allocation:                  %d bytes
 Largest Pcache Allocation:           %d bytes
 Largest Scratch Allocation:          %d bytes
 Lookaside Slots Used:                %d (max %d)
 Successful lookaside attempts:       %d
 Lookaside failures due to size:      %d
 Lookaside failures due to OOM:       %d
 Pager Heap Usage:                    %d bytes
 Page cache hits:                     %d
 Page cache misses:                   %d
 Schema Heap Usage:                   %d bytes
 Statement Heap/Lookaside Usage:      %d bytes
 Fullscan Steps:                      %d
 Sort Operations:                     %d
 Autoindex Inserts:                   %d
 ; CPU Time: user %f sys %f
 Error: near line %d: Error: %s %s
 Error: incomplete SQL: %s
 main ROLLBACK; -- due to errors
 COMMIT;
 ROLLBACK COMMIT off stdout backup Error: cannot open "%s"
 Error: %s
 bail databases PRAGMA database_list;  dump PRAGMA foreign_keys=OFF;
 BEGIN TRANSACTION;
 SAVEPOINT dump; PRAGMA writable_schema=ON SELECT name, type, sql FROM sqlite_master WHERE sql NOT NULL AND type=='table' AND name!='sqlite_sequence' SELECT name, type, sql FROM sqlite_master WHERE name=='sqlite_sequence' SELECT sql FROM sqlite_master WHERE sql NOT NULL AND type IN ('index','trigger','view') SELECT name, type, sql FROM sqlite_master WHERE tbl_name LIKE shellstatic() AND type=='table'  AND sql NOT NULL SELECT sql FROM sqlite_master WHERE sql NOT NULL  AND type IN ('index','trigger','view')  AND tbl_name LIKE shellstatic() PRAGMA writable_schema=OFF;
 PRAGMA writable_schema=OFF; RELEASE dump; echo exit explain header headers help import Error: non-null separator required for import
 SELECT * FROM %s INSERT INTO %s VALUES(? rb BEGIN Error: %s line %d: expected %d columns of data but found %d
 indices SELECT name FROM sqlite_master WHERE type='index' AND name NOT LIKE 'sqlite_%' UNION ALL SELECT name FROM sqlite_temp_master WHERE type='index' ORDER BY 1 SELECT name FROM sqlite_master WHERE type='index' AND tbl_name LIKE shellstatic() UNION ALL SELECT name FROM sqlite_temp_master WHERE type='index' AND tbl_name LIKE shellstatic() ORDER BY 1 Error: querying sqlite_master and sqlite_temp_master
 log stderr w mode line lines column columns list html tcl csv tabs 	 insert Error: mode should be one of: column csv html insert line list tabs tcl
 Error: invalid arguments:  "%s". Enter ".help" for help
 nullvalue output wb Error: cannot write to "%s"
 prompt quit read restore Error: source database is busy
 schema sqlite_master CREATE TABLE sqlite_master (
  type text,
  name text,
  tbl_name text,
  rootpage integer,
  sql text
) sql sqlite_temp_master CREATE TEMP TABLE sqlite_temp_master (
  type text,
  name text,
  tbl_name text,
  rootpage integer,
  sql text
) SELECT sql FROM   (SELECT sql sql, type type, tbl_name tbl_name, name name     FROM sqlite_master UNION ALL   SELECT sql, type, tbl_name, name FROM sqlite_temp_master) WHERE lower(tbl_name) LIKE shellstatic()  AND type!='meta' AND sql NOTNULL ORDER BY substr(type,2,1), name SELECT sql FROM   (SELECT sql sql, type type, tbl_name tbl_name, name name     FROM sqlite_master UNION ALL   SELECT sql, type, tbl_name, name FROM sqlite_temp_master) WHERE type!='meta' AND sql NOTNULL AND name NOT LIKE 'sqlite_%'ORDER BY substr(type,2,1), name Error: querying schema information
 separator show %9.9s: %s
 %9.9s:  stats width %d  tables SELECT name FROM sqlite_master WHERE type IN ('table','view') AND name NOT LIKE 'sqlite_%' UNION ALL SELECT name FROM sqlite_temp_master WHERE type IN ('table','view') ORDER BY 1 SELECT name FROM sqlite_master WHERE type IN ('table','view') AND name LIKE shellstatic() UNION ALL SELECT name FROM sqlite_temp_master WHERE type IN ('table','view') AND name LIKE shellstatic() ORDER BY 1 %s%-*s testctrl ambiguous option name: "%s"
 Error: invalid testctrl option: %s
 %d (0x%08x)
 Error: testctrl %s takes a single int option
 Error: testctrl %s takes no options
 Error: testctrl %s takes a single unsigned int option
 Error: CLI support for testctrl %s not implemented
 timeout timer version SQLite %s %s
 vfsname Error: unknown command or invalid arguments:  "%s". Enter ".help" for help
 2012-03-20 11:35:50 00bb9c9ce4f465e6ac321ced2a9d0062dc364669 SQLite header and source version mismatch
%s
%s
 sqlite>     ...>  -separator -nullvalue -cmd -init -batch -heap -vfs no such VFS: "%s"
 :memory: %s: Error: too many options: "%s"
 Use -help for a list of options.
 %s: Error: cannot locate your home directory
 %s: Error: out of memory
 %s/.sqliterc -- Loading resources from %s
 -html -list -line -column -csv %s: Error: missing argument for option: %s
 -header -noheader -echo -stats -bail -version -interactive -help Usage: %s [OPTIONS] FILENAME [SQL]
FILENAME is the name of an SQLite database. A new database is created
if the file does not previously exist.
 OPTIONS include:
%s Error: unable to process SQL "%s"
 %s: Error: unknown option: %s
 SQLite version %s %.19s
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
 %s/.sqlite_history semi prng_save prng_restore prng_reset bitvec_test fault_install benign_malloc_hooks pending_byte assert always reserve optimizations iskeyword scratchmalloc    -bail                stop after hitting an error
   -batch               force batch I/O
   -column              set output mode to 'column'
   -cmd command         run "command" before reading stdin
   -csv                 set output mode to 'csv'
   -echo                print commands before execution
   -init filename       read/process named file
   -[no]header          turn headers on or off
   -help                show this message
   -html                set output mode to HTML
   -interactive         force interactive I/O
   -line                set output mode to 'line'
   -list                set output mode to 'list'
   -nullvalue 'text'    set text string for NULL values
   -separator 'x'       set output field separator (|)
   -stats               print memory stats before each finalize
   -version             show SQLite version
   -vfs NAME            use NAME as the default VFS
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           2m     <m     Im     Tm     `m  	   nm  
   m     m     m  
   m     m     m     m     b  b  b  -m  "b  6b  'b  +b  _                                                    o             H             
                                           
      `  !         h           p              o                                                   `  h  p  eJ                                                                                                                                                                                                  .timer ON|OFF          Turn the CPU timer measurement on or off
       .backup ?DB? FILE      Backup DB (default "main") to FILE
.bail ON|OFF           Stop after hitting an error.  Default OFF
.databases             List names and files of attached databases
.dump ?TABLE? ...      Dump the database in an SQL text format
                         If TABLE specified, only dump tables matching
                         LIKE pattern TABLE.
.echo ON|OFF           Turn command echo on or off
.exit                  Exit this program
.explain ?ON|OFF?      Turn output mode suitable for EXPLAIN on or off.
                         With no args, it turns EXPLAIN on.
.header(s) ON|OFF      Turn display of headers on or off
.help                  Show this message
.import FILE TABLE     Import data from FILE into TABLE
.indices ?TABLE?       Show names of all indices
                         If TABLE specified, only show indices for tables
                         matching LIKE pattern TABLE.
.log FILE|off          Turn logging on or off.  FILE can be stderr/stdout
.mode MODE ?TABLE?     Set output mode where MODE is one of:
                         csv      Comma-separated values
                         column   Left-aligned columns.  (See .width)
                         html     HTML <table> code
                         insert   SQL insert statements for TABLE
                         line     One value per line
                         list     Values delimited by .separator string
                         tabs     Tab-separated values
                         tcl      TCL list elements
.nullvalue STRING      Print STRING in place of NULL values
.output FILENAME       Send output to FILENAME
.output stdout         Send output to the screen
.prompt MAIN CONTINUE  Replace the standard prompts
.quit                  Exit this program
.read FILENAME         Execute SQL in FILENAME
.restore ?DB? FILE     Restore content of DB (default "main") from FILE
.schema ?TABLE?        Show the CREATE statements
                         If TABLE specified, only show tables matching
                         LIKE pattern TABLE.
.separator STRING      Change separator used by output mode and .import
.show                  Show the current values for various settings
.stats ON|OFF          Turn stats on or off
.tables ?TABLE?        List names of tables
                         If TABLE specified, only list tables matching
                         LIKE pattern TABLE.
.timeout MS            Try opening locked tables for MS milliseconds
.vfsname ?AUX?         Print the name of the VFS stack
.width NUM1 NUM2 ...   Set column widths for "column" mode
  GCC: (GNU) 4.7       	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"sqlite3 ٴ .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .ARM.extab .rodata .data.rel.ro.local .preinit_array .init_array .fini_array .dynamic .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                   4  4                             H  H                                              #                            )   	                          2   	                        6                              ;             <                 A         R  R                    U     p   R  R                  `         S  S  $                  k         S  S  v                 s         Ԍ  |                             `  `}                             h  h}                             p  p}                             x  x}                            ~  p                                m
                          p  m                          0       m                                                          p          6                                Ҋ                                  ފ                                 @     ELF          (     4       4    (      4   4   4                  4  4  4                             L L           ' '   x          ` ` `             Qtd                             p   
  
        Rtd ' ' `  `        /system/bin/linker                                
                            1              9              >              U              ]              d              m              u              ~                                                                                                                                                                                                                                                         %             .             3             ;             B             I             P             ]             d             k             x                                                                                                                                                                                                                                                                                                            #             *             /             5             =             I             O             W             _             h             o             y                                                                                                                                                                                                                                                                     '             5             <             E             K             S             ]             g             v             {                                         ,         ,                __libc_init __cxa_atexit __aeabi_unwind_cpp_pr0 fprintf exit __aeabi_unwind_cpp_pr1 geteuid getuid setreuid __errno strerror __sF fcntl fopen fileno fclose __isthreaded __sprintf_chk __stack_chk_fail __stack_chk_guard close ptrace syscall perror wait4 waitpid vfprintf gettimeofday localtime strftime kill realloc calloc strchr strlen __strcpy_chk getenv getcwd __strlen_chk __strncpy_chk strcpy stat fork getpid initgroups setregid sigaction bsd_signal alarm wait execv _exit getppid printf atoi strdup putenv optarg getopt getpwnam getgid pipe fdopen dup2 execl setvbuf sigprocmask pause opendir readdir closedir optind strsignal fflush raise fputs strncasecmp strcasecmp strcmp strncmp strtok free memset setitimer getitimer __aeabi_idiv __aeabi_idivmod qsort sprintf _ctype_ __strcat_chk memcpy malloc __aeabi_uidiv strcat snprintf abort bsearch inet_ntoa inet_ntop if_indextoname open read strstr __memcpy_chk _edata __bss_start _end libc.so libstdc++.so libm.so    a   m       	      P                  d   X      %   -   ,       
       a       <   j   W   D               e   l   8          (   O   S       M       `   _      U   1       g   @       i       [   2       "   7       f              ]   '      T   C   L                  R          h   #   ?       J         /   K       ^           b           H   V   k   c              E   \   +                                                                                                                                                                            &                 *   .       0                      5                          9   
               :   F       $       ;             N   >   G                                  B       !       3   Y   =      4   6   Z           I   A   Q       )      '    '    '    '    '    '    '    '    '    '    '    '    '    '    '    '    '    '    '    '    '    '    '    '     (    (    (    (    (    (    (    (     (    $(    ((    ,(    0(    4(    8(    <(    @(    D(    H(    L(    P(    T(    X(    \(    `(    d(    h(    l(    p(    t(    x(    |(    (    (    (    (    (    (    (    (    (    (    (    (    (    (    (    (    (    (    (    (    (    (    (    (    (    (    (    (    (    (    (    (     )    )    )    )    )    )    )    )     )    $)    ()    ,)    0)    4)    8)    <)    @)    D)    H)    L)    P)    T)    X)    \)    `)    d)    h)    l)    p)    t)    x)    |)    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )    )     *    *    *    *    *    *    *    *     *    $*    (*    ,*    0*    4*    8*    <*    @*    D*    H*    L*    P*    T*    X*    \*    `*    d*    h*    l*    p*    t*    x*    |*    *    *    *    *    *    *    *    *    *    *    *    *    *    *    *    *    *    *    *    *    *    *    *    *    *    *    *    *    *    *    *    *     +    +    +    +    +    +    +    +     +    $+    (+    ,+    0+    4+    8+    <+    @+    D+    H+    L+    P+    T+    X+    \+    `+    d+    h+    l+    p+    t+    x+    |+    +    +    +    +    +    +    +    +    +    +    +    +    +    +    +    +    +    +    +    +    +    +    +    +    +    +    +    +    +    +    +    +     ,    ,    ,    ,    ,    ,    ,    ,     ,    $,    (,    ,,    0,    4,    8,    <,    @,    D,    H,    L,    P,    T,    X,    \,    `,    d,    h,    l,    p,    t,    x,    |,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,    ,     -    -    -    -    -    -    -    -     -    $-    (-    ,-    0-    4-    8-    <-    @-    D-    H-    L-    P-    T-    X-    \-    `-    d-    h-    l-    p-    t-    x-    |-    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -     .    .    .    .    .    .    .    .     .    $.    (.    ,.    0.    4.    8.    <.    @.    D.    H.    L.    P.    T.    X.    \.    `.    d.    h.    l.    p.    t.    x.    |.    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .     /    /    /    /    /    /    /    /     /    $/    (/    ,/    0/    4/    8/    </    @/    D/    H/    L/    P/    T/    X/    \/    `/    d/    h/    l/    p/    t/    x/    |/    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /    /     0    0    0    0    0    0    0    0     0    $0    (0    ,0    00    40    80    <0    @0    D0    H0    L0    P0    T0    X0    \0    `0    d0    h0    l0    p0    t0    x0    |0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0     1    1    1    1    1    1    1    1     1    $1    (1    ,1    01    41    81    <1    @1    D1    H1    L1    P1    T1    X1    \1    `1    d1    h1    l1    p1    t1    x1    |1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1    1     2    2    2    2    2    2    2    2     2    $2    (2    ,2    02    42    82    <2    @2    D2    H2    L2    P2    T2    X2    \2    `2    d2    h2    l2    p2    t2    x2    |2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2    2     3    3    3    3    3    3    3    3     3    $3    (3    ,3    03    43    83    <3    @3    D3    H3    L3    P3    T3    X3    \3    `3    d3    h3    l3    p3    t3    x3    |3    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3    3     4    4    4    4    4    4    4    4     4    $4    (4    ,4    04    44    84    <4    @4    D4    H4    L4    P4    T4    X4    \4    `4    d4    h4    l4    p4    t4    x4    |4    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4    4     5    5    5    5    5    5    5    5     5    $5    (5    ,5    05    45    85    <5    @5    D5    H5    L5    P5    T5    X5    \5    `5    d5    h5    l5    p5    t5    x5    |5    5    5    5    5    5    5    5    5    5    5    5    5    5    5    5    5    5    5    5    5    5    5    5    5    5    5    5    5    5    5    5    5     6    6    6    6    6    6    6    6     6    $6    (6    ,6    06    46    86    <6    @6    D6    H6    L6    P6    T6    X6    \6    `6    d6    h6    l6    p6    t6    x6    |6    6    6    6    6    6    6    6    6    6    6    6    6    6    6    6    6    6    6    6    6    6    6    6    6    6    6    6    6    6    6    6    6     7    7    7    7    7    7    7    7     7    $7    (7    ,7    07    47    87    <7    @7    D7    H7    L7    P7    T7    X7    \7    `7    d7    h7    l7    p7    t7    x7    |7    7    7    7    7    7    7    7    7    7    7    7    7    7    7    7    7    7    7    7    7    7    7    7    7    7    7    7    7    7    7    7    7     8    8    8    8    8    8    8    8     8    $8    (8    ,8    08    48    <8    @8    D8    L8    P8    T8    \8    `8    d8    l8    p8    t8    |8    8    8    8    8    8    8    8    8    8    8    8    8    8    8    8    8    8    8    8    8    8    8    8    8     9    9    9    9    9    9     9    $9    ,9    09    49    <9    @9    D9    L9    P9    T9    \9    `9    d9    l9    p9    t9    9    9    9    9    9    9    9    9    9    9    9    9    9    9    9    :    :    :    :    $:    ,:    4:    <:    L:    T:    \:    l:    t:    |:    :    :    :    :    :    :    :    :    :    :    :    :    :    :    ;    ;    ;    ;    ,;    <;    D;    L;    T;    \;    d;    l;    |;    ;    ;    ;    ;    ;    ;    ;    ;    ;    ;    ;    ;    ;    ;    ;    ;    <    <    <    <    $<    ,<    4<    <<    D<    L<    T<    \<    l<    t<    |<    <    <    <    <    <    <    <    <    <    <    <    <    <    <    =    =    =    =    $=    ,=    4=    <=    L=    \=    d=    l=    t=    =    =    =    =    =    =    =    =    =    =    =    =    >    >    >    >    $>    ,>    4>    <>    D>    L>    T>    \>    d>    l>    t>    |>    >    >    >    >    >    >    >    >    >    >    >    >    >    >    ?    ?    ?    $?    ,?    4?    D?    L?    T?    \?    d?    l?    t?    |?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    ?    @    @    @    @    $@    ,@    4@    <@    D@    L@    T@    \@    d@    t@    |@    @    @    @    @    @    @    @    @    @    @    @    @    @    @    @    @    @    @     A    A    A    A    A    A    $A    (A    0A    4A    <A    @A    HA    LA    TA    XA    `A    dA    lA    pA    xA    |A    A    A    A    A    A    A    A    A    A    A    A    A    A    A    A    A    A    A    A    A    A     B    B    B    B    B     B    $B    ,B    0B    8B    <B    DB    HB    PB    TB    \B    `B    hB    lB    tB    xB    B    B    B    B    B    B    B    B    B    B    B    B    B    B    B    B    B    B    B    B    B    B    C    C    C    C    C     C    (C    ,C    4C    8C    @C    DC    LC    PC    XC    \C    dC    hC    pC    tC    |C    C    C    C    C    C    C    C    C    C    C    C    C    C    C    C    C    C    C    C    C    C     D    D    D    D    D    D    $D    (D    0D    4D    <D    @D    HD    LD    TD    XD    `D    dD    lD    pD    xD    |D    D    D    D    D    D    D    D    D    D    D    D    D    D    D    D    D    D    D    D    D    D     E    E    E    E    E     E    $E    ,E    0E    8E    <E    DE    HE    PE    TE    \E    `E    hE    lE    tE    xE    E    E    E    E    E    E    E    E    E    E    E    E    E    E    E    E    E    E    E    E    E    E    F    F    F    F    F     F    (F    ,F    4F    8F    @F    DF    LF    PF    XF    \F    dF    hF    pF    tF    |F    F    F    F    F    F    F    F    F    F    F    F    F    F    F    F    F    F    F    F    F    F     G    G    G    G    G    G    $G    (G    0G    4G    <G    @G    HG    LG    TG    XG    `G    dG    lG    pG    xG    |G    G    G    G    G    G    G    G    G    G    G    G    G    G    G    G    G    G    G    G    G    G     H    H    H    H    H     H    $H    ,H    0H    8H    <H    DH    HH    PH    TH    \H    `H    hH    lH    tH    xH    H    H    H    H    H    H    H    H    H    H    H    H    H    H    H    H    H    H    H    H    H    H    I    I    I    I    I     I    (I    ,I    4I    8I    @I    DI    LI    PI    XI    \I    dI    hI    pI    tI    |I    I    I    I    I    I    I    I    I    I    I    I    I    I    I    I    I    I    I    I    I    I     J    J    J    J    J    J    $J    (J    0J    4J    <J    @J    HJ    LJ    TJ    XJ    `J    dJ    lJ    pJ    xJ    |J    J    J    J    J    J    J    J    J    J    J    J    J    J    J    J    J    J    J    J    J    J     K    K    K    K    K     K    $K    ,K    0K    8K    <K    DK    HK    PK    TK    \K    `K    hK    lK    tK    xK    K    K    K    K    K    K    K    K    K    K    K    K    K    K    K    K    K    K    K    K    K    K    L    L    L    L    L     L    (L    ,L    4L    8L    @L    DL    LL    PL    XL    \L    dL    hL    pL    tL    |L    L    L    L    L    L    L    L    L    L    L    L    L    L    L    L    L    L    L    L    L    L     M    M    M    M    M    M    $M    (M    0M    4M    <M    @M    HM    LM    TM    XM    `M    dM    lM    pM    xM    |M    M    M    M    M    M    M    M    M    M    M    M    M    M    M    M    M    M    M    M    M    M     N    N    N    N    N     N    $N    ,N    0N    8N    <N    DN    HN    PN    TN    \N    `N    hN    lN    tN    xN    N    N    N    N    N    N    N    N    N    N    N    N    N    N    N    N    N    N    N    N    N    N    O    O    O    O    O     O    (O    ,O    4O    8O    @O    DO    LO    PO    XO    \O    dO    hO    pO    tO    |O    O    O    O    O    O    O    O    O    O    O    O    O    O    O    O    O    O    O    O    O    O     P    P    P    P    P    P    $P    (P    0P    4P    <P    @P    HP    LP    TP    XP    `P    dP    lP    pP    xP    |P    P    P    P    P    P    P    P    P    P    P    P    P    P    P    P    P    P    P    P    P    P     Q    Q    Q    Q    Q     Q    $Q    ,Q    0Q    8Q    <Q    DQ    HQ    PQ    TQ    \Q    `Q    hQ    lQ    tQ    xQ    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    R    R    R    R    R     R    (R    ,R    4R    8R    @R    DR    LR    PR    XR    \R    dR    hR    pR    tR    |R    R    R    R    R    R    R    R    R    R    R    R    R    R    R    R    R    R    R    R    R    R     S    S    S    S    S    S    $S    (S    0S    4S    <S    @S    HS    LS    TS    XS    `S    dS    lS    pS    xS    |S    S    S    S    S    S    S    S    S    S    S    S    S    S    S    S    S    S    S    S    S    S     T    T    T    T    T     T    $T    ,T    0T    8T    <T    DT    HT    PT    TT    \T    `T    hT    lT    tT    xT    T    T    T    T    T    T    T    T    T    T    T    T    T    T    T    T    T    T    T    T    T    T    U    U    U    U    U     U    (U    ,U    4U    8U    @U    DU    LU    PU    XU    \U    dU    hU    pU    tU    |U    U    U    U    U    U    U    U    U    U    U    U    U    U    U    U    U    U    U    U    U    U     V    V    V    V    V    V    $V    (V    0V    4V    <V    @V    HV    LV    TV    XV    `V    dV    lV    pV    xV    |V    V    V    V    V    V    V    V    V    V    V    V    V    V    V    V    V    V    V    V    V    V     W    W    W    W    W     W    $W    ,W    0W    8W    <W    DW    HW    PW    TW    \W    `W    hW    lW    tW    xW    W    W    W    W    W    W    W    W    W    W    W    W    W    W    W    W    W    W    W    W    W    W    X    X    X    X    X     X    (X    ,X    4X    8X    @X    DX    LX    PX    XX    \X    dX    hX    pX    tX    |X    X    X    X    X    X    X    X    X    X    X    X    X    X    X    X    X    X    X    X    X    X     Y    Y    Y    Y    Y    Y    $Y    (Y    0Y    4Y    <Y    @Y    HY    LY    TY    XY    `Y    dY    lY    pY    xY    |Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y     Z    Z    Z    Z    Z     Z    $Z    ,Z    0Z    8Z    <Z    DZ    HZ    PZ    TZ    \Z    `Z    hZ    lZ    tZ    xZ    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    [    [    [    [    [     [    ([    ,[    4[    8[    @[    D[    L[    P[    X[    \[    d[    h[    p[    t[    |[    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [     \    \    \    \    \    \    $\    (\    0\    4\    <\    @\    H\    L\    T\    X\    `\    d\    l\    p\    x\    |\    \    \    \    \    \    \    \    \    \    \    \    \    \    \    \    \    \    \    \    \    \     ]    ]    ]    ]    ]     ]    $]    ,]    0]    8]    <]    D]    H]    P]    T]    \]    `]    h]    l]    t]    x]    ]    ]    ]    ]    ]    ]    ]    ]    ]    ]    ]    ]    ]    ]    ]    ]    ]    ]    ]    ]    ]    ]    ^    ^    ^    ^    ^     ^    (^    ,^    4^    8^    @^    D^    L^    P^    X^    \^    d^    h^    p^    t^    |^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^     _    _    _    _    _    _    $_    (_    0_    4_    <_    @_    H_    L_    T_    X_    `_    d_    l_    p_    x_    |_    _    _    _    _    _    _    _    _    _    _    _    _    _    _    _    _    _    _    _    _    _     `    `    `    `    `     `    $`    ,`    0`    8`    <`    D`    H`    P`    T`    \`    ``    h`    l`    t`    x`    `    `    `    `    `    `    `    `    `    `    `    `    `    `    `    `    `    `    `    `    `    `    a    a    a    a    a     a    (a    ,a    4a    8a    @a    Da    La    Pa    Xa    \a    da    ha    pa    ta    |a    a    a    a    a    a    a    a    a    a    a    a    a    a    a    a    a    a    a    a    a    a     b    b    b    b    b    b    $b    (b    0b    4b    <b    @b    Hb    Lb    Tb    Xb    `b    db    lb    pb    xb    |b    b    b    b    b    b    b    b    b    b    b    b    b    b    b    b    b    b    b    b    b    b     c    c    c    c    c     c    $c    ,c    0c    8c    <c    Dc    Hc    Pc    Tc    \c    `c    hc    lc    tc    xc    c    c    c    c    c    c    c    c    c    c    c    c    c    c    c    c    c    c    c    c    c    c    d    d    d    d    d     d    (d    ,d    4d    8d    @d    Dd    Ld    Pd    Xd    \d    dd    hd    pd    td    |d    d    d    d    d    d    d    d    d    d    d    d    d    d    d    d    d    d    d    d    d    d     e    e    e    e    e    e    $e    (e    0e    4e    <e    @e    He    Le    Te    Xe    `e    de    le    pe    xe    |e    e    e    e    e    e    e    e    e    e    e    e    e    e    e    e    e    e    e    e    e    e     f    f    f    f    f     f    $f    ,f    0f    8f    <f    Df    Hf    Pf    Tf    \f    `f    hf    lf    tf    xf    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    g    g    g    g    g     g    (g    ,g    4g    8g    @g    Dg    Lg    Pg    Xg    \g    dg    hg    pg    tg    |g    g    g    g    g    g    g    g    g    g    g    g    g    g    g    g    g    g    g    g    g    g     h    h    h    h    h    h    $h    (h    0h    4h    <h    @h    Hh    Lh    Th    Xh    `h    dh    lh    ph    xh    |h    h    h    h    h    h    h    h    h    h    h    h    h    h    h    h    h    h    h    h    h    h     i    i    i    i    i     i    $i    ,i    0i    8i    <i    Di    Hi    Pi    Ti    \i    `i    hi    li    ti    xi    i    i    i    i    i    i    i    i    i    i    i    i    i    i    i    i    i    i    i    i    i    i    j    j    j    j    j     j    (j    ,j    4j    8j    @j    Dj    Lj    Pj    Xj    \j    dj    hj    pj    tj    |j    j    j    j    j    j    j    j    j    j    j    j    j    j    j    j    j    j    j    j    j    j     k    k    k    k    k    k    $k    (k    0k    4k    <k    @k    Hk    Lk    Tk    Xk    `k    dk    lk    pk    xk    |k    k    k    k    k    k    k    k    k    k    k    k    k    k    k    k    k    k    k    k    k    k     l    l    l    l    l     l    $l    ,l    0l    8l    <l    Dl    Hl    Pl    Tl    \l    `l    hl    ll    tl    xl    l    l    l    l    l    l    l    l    l    l    l    l    l    l    l    l    l    l    l    l    l    l    m    m    m    m    m     m    (m    ,m    4m    8m    @m    Dm    Lm    Pm    Xm    \m    dm    hm    pm    tm    |m    m    m    m    m    m    m    m    m    m    m    m    m    m    m    m    m    m    m    m    m    m     n    n    n    n    n    n    $n    (n    0n    4n    <n    @n    Hn    Ln    Tn    Xn    `n    dn    ln    pn    xn    |n    n    n    n    n    n    n    n    n    n    n    n    n    n    n    n    n    n    n    n    n    n     o    o    o    o    o     o    $o    ,o    0o    8o    <o    Do    Ho    Po    To    \o    `o    ho    lo    to    xo    o    o    o    o    o    o    o    o    o    o    o    o    o    o    o    o    o    o    o    o    o    o    p    p    p    p    p     p    (p    ,p    4p    8p    @p    Dp    Lp    Pp    Xp    \p    dp    hp    pp    tp    |p    p    p    p    p    p    p    p    p    p    p    p    p    p    p    p    p    p    p    p    p    p     q    q    q    q    q    q    $q    (q    0q    4q    <q    @q    Hq    Lq    Tq    Xq    `q    dq    lq    pq    xq    |q    q    q    q    q    q    q    q    q    q    q    q    q    q    q    q    q    q    q    q    q    q     r    r    r    r    r     r    $r    ,r    0r    8r    <r    Dr    Hr    Pr    Tr    \r    `r    hr    lr    tr    xr    r    r    r    r    r    r    r    r    r    r    r    r    r    r    r    r    r    r    r    r    r    r    s    s    s    s    s     s    (s    ,s    4s    8s    @s    Ds    Ls    Ps    Xs    \s    ds    hs    ps    ts    |s    s    s    s    s    s    s    s    s    s    s    s    s    s    s    s    s    s    s    s    s    s     t    t    t    t    t    t    $t    (t    0t    4t    <t    @t    Ht    Lt    Tt    Xt    `t    dt    lt    pt    xt    |t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t     u    u    u    u    u     u    $u    ,u    0u    8u    <u    Du    Hu    Pu    Tu    \u    `u    hu    lu    tu    xu    u    u    u    u    u    u    u    u    u    u    u    u    u    u    u    u    u    u    u    u    u    u    v    v    v    v    v     v    (v    ,v    4v    8v    @v    Dv    Lv    Pv    Xv    \v    dv    hv    pv    tv    |v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v     w    w    w    w    w    w    $w    (w    0w    4w    <w    @w    Hw    Lw    Tw    Xw    `w    dw    lw    pw    xw    |w    w    w    w    w    w    w    w    w    w    w    w    w    w    w    w    w    w    w    w    w    w     x    x    x    x    x     x    $x    ,x    0x    8x    <x    Dx    Hx    Px    Tx    \x    `x    hx    lx    tx    xx    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    y    y    y    y    y     y    (y    ,y    4y    8y    @y    Dy    Ly    Py    Xy    \y    dy    hy    py    ty    |y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y     z    z    z    z    z    z    $z    (z    0z    4z    <z    @z    Hz    Lz    Tz    Xz    `z    dz    lz    pz    xz    |z    z    z    z    z    z    z    z    z    z    z    z    z    z    z    z    z    z    z    z    z    z     {    {    {    {    {     {    ${    ,{    0{    8{    <{    D{    H{    P{    T{    \{    `{    h{    l{    t{    x{    {    {    {    {    {    {    {    {    {    {    {    {    {    {    {    {    {    {    {    {    {    {    |    |    |    |    |     |    (|    ,|    4|    8|    @|    D|    L|    P|    X|    \|    d|    h|    p|    t|    ||    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |     }    }    }    }    }    }    $}    (}    0}    4}    <}    @}    H}    L}    T}    X}    `}    d}    l}    p}    x}    |}    }    }    }    }    }    }    }    }    }    }    }    }    }    }    }    }    }    }    }    }    }     ~    ~    ~    ~    ~     ~    $~    ,~    0~    8~    <~    D~    H~    P~    T~    \~    `~    h~    l~    t~    x~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~                             (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                                                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                Ā    ̀    Ѐ    ؀    ܀                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    ȁ    ́    ԁ    ؁                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                Ă    Ȃ    Ђ    Ԃ    ܂                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                ă    ̃    Ѓ    ؃    ܃                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    Ȅ    ̄    Ԅ    ؄                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                ą    ȅ    Ѕ    ԅ    ܅                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                Ć    ̆    І    ؆    ܆                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    ȇ    ̇    ԇ    ؇                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                Ĉ    Ȉ    Ј    Ԉ    ܈                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                ĉ    ̉    Љ    ؉    ܉                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    Ȋ    ̊    Ԋ    ؊                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                ċ    ȋ    Ћ    ԋ    ܋                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                Č    ̌    Ќ    ،    ܌                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    ȍ    ̍    ԍ    ؍                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                Ď    Ȏ    Ў    Ԏ    ܎                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                ď    ̏    Џ    ؏    ܏                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    Ȑ    ̐    Ԑ    ؐ                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                đ    ȑ    Б    ԑ    ܑ                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                Ē    ̒    В    ؒ    ܒ                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    ȓ    ̓    ԓ    ؓ                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                Ĕ    Ȕ    Д    Ԕ    ܔ                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                ĕ    ̕    Е    ؕ    ܕ                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    Ȗ    ̖    Ԗ    ؖ                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                ė    ȗ    З    ԗ    ܗ                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                Ę    ̘    И    ؘ    ܘ                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    ș    ̙    ԙ    ؙ                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                Ě    Ț    К    Ԛ    ܚ                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                ě    ̛    Л    ؛    ܛ                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    Ȝ    ̜    Ԝ    ؜                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                ĝ    ȝ    Н    ԝ    ܝ                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                Ğ    ̞    О    ؞    ܞ                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    ȟ    ̟    ԟ    ؟                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                Ġ    Ƞ    Р    Ԡ    ܠ                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                ġ    ̡    С    ء    ܡ                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    Ȣ    ̢    Ԣ    آ                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                ģ    ȣ    У    ԣ    ܣ                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                Ĥ    ̤    Ф    ؤ    ܤ                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    ȥ    ̥    ԥ    إ                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                Ħ    Ȧ    Ц    Ԧ    ܦ                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                ħ    ̧    Ч    ا    ܧ                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    Ȩ    ̨    Ԩ    ب                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                ĩ    ȩ    Щ    ԩ    ܩ                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                Ī    ̪    Ъ    ت    ܪ                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    ȫ    ̫    ԫ    ث                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                Ĭ    Ȭ    Ь    Ԭ    ܬ                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                ĭ    ̭    Э    ح    ܭ                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    Ȯ    ̮    Ԯ    خ                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                į    ȯ    Я    ԯ    ܯ                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                İ    ̰    а    ذ    ܰ                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    ȱ    ̱    Ա    ر                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                Ĳ    Ȳ    в    Բ    ܲ                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                ĳ    ̳    г    س    ܳ                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    ȴ    ̴    Դ    ش                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                ĵ    ȵ    е    Ե    ܵ                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                Ķ    ̶    ж    ض    ܶ                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    ȷ    ̷    Է    ط                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                ĸ    ȸ    и    Ը    ܸ                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                Ĺ    ̹    й    ع    ܹ                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    Ⱥ    ̺    Ժ    غ                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                            Ļ    ̻    Ի    ܻ                            $    ,    <    D    L    T    \    d    l    t    |                                ̼    Լ                                $    ,    <    D    L    T    \    d    l    t    |                                Ľ    ̽    Խ    ܽ                                    $    ,    4    <    L    T    \    d    l    t    |                                    ľ    ̾    Ծ    ܾ                                    $    ,    4    D    L    T    \    d    l    |                                Ŀ    Կ    ܿ                                    $    ,    4    <    D    L    T    d    l    t    |                                                                                    $    ,    4    <    D    L    T    \    d    l    t    |                                                                            $    ,    4    <    D    L    T    \    d    l    t                                                                                    $    ,    4    <    D    L    T    \    l    t    |                                                                                $    ,    4    <    D    L    T    \    d    l    t    |                                                                    $    ,    4    <    D    T    \    d    l    t    |                                                                                $    ,    4    <    D    T    \    d    l    t    |                                                                                $    ,    4    <    D    L    T    \    d    l    t    |                                                                                ,    4    <    L    T    \    d    l    t    |                                                                                $    ,    4    <    D    L    T    \    d    l    t    |                                                                                $    4    <    D    L    T    \    l    t    |                                                                    $    4    <    D    L    T    \    d    l    t    |                                                                                    $    ,    <    D    L    T    d    l    t                                                                            $    ,    4    <    D    L    \    d    l    |                                                                            $    ,    <    D    T    \    l    t                                                                                                                                          $    (    ,    0    4    8    @    H    P    X    `    h    p    x                                                                                                                  $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    d    l    t    |                                                                                ,    4    <    D    L    T    d    l    t    |                                                                        $    ,    4    <    D    L    T    \    d    l    t    |                                                                            $    ,    4    <    D    L    T    \    d    l    t    |                                                                        $    4    <    D    L    T    \    d    l    t    |                                                                                    $    ,    <    D    L    T    \    d    l    t    |                                                                            $    ,    4    <    D    L    T    \    d    l    t    |                                                                        $    ,    4    <    D    L    T    \    d    l    t    |                                                                                $    ,    4    <    D    L    T    \    d    l    t    |                                                                            $    ,    4    <    D    L    T    \    d    t    |                                                                                    $    ,    4    <    D    L    T    \    d    l    t                                                                    $    ,    4    <    D    L    T    \    d    l    t    |                                                                    $    ,    4    <    D    L    T    \    d    l    |                                                         (    ,    <    @    P    T    d    h    x    |                                                                    ,    0    @    D    T    X    h    l    |                                                                         0    4    D    H    X    \    l    p                                                                         $    4    8    H    L    \    `    p    t                                                                     $    (    8    <    L    P    `    d    t    x                                                                     (    ,    <    @    P    T    d    h    x    |                                                                    ,    0    @    D    T    X    h    l    |                                                                         0    4    D    H    X    \    l    p                                                                         $    4    8    H    L    \    `    p    t                                                                     $    (    8    <    L    P    `    d    t    x                                                                     (    ,    <    @    P    T    d    h    x    |                                                                    ,    0    @    D    T    X    h    l    |                                                                         0    4    D    H    X    \    l    p                                                                         $    4    8    H    L    \    `    p    t                                                                     $    (    8    <    L    P    `    d    t    x                                                                     (    ,    <    @    P    T    d    h    x    |                                                                    ,    0    @    D    T    X    h    l    |                                                                         0    4    D    H    X    \    l    p                                                                         $    4    8    H    L    \    `    p    t                                                                     $    (    8    <    L    P    `    d    t    x                                                                     (    ,    <    @    P    T    d    h    x    |                                                                    ,    0    @    D    T    X    h    l    |                                                                         0    4    D    H    X    \    l    p                                                                         $    4    8    H    L    \    `    p    t                                                                     $    (    8    <    L    P    `    d    t    x                                                                     (    ,    <    @    P    T    d    h    x    |                                                                    ,    0    @    D    T    X    h    l    |                                                                         0    4    D    H    X    \    l    p                                                                         $    4    8    H    L    \    `    p    t                                                                     $    (    8    <    L    P    `    d    t    x                                                                     (    ,    <    @    P    T    d    h    x    |                                                                    ,    0    @    D    T    X    X    \    `    d    h    p    t                                                                                                                                                                  $    (    ,    0    4    8    <    @    D    H    L    P    X    \    `    d    h    l    l   x   |    :   H  T Z  |                   	   
      
                                                       !   "   #   $   %   &    '   (   )   *   +   ,   -   .    /  $ 0  ( 1  , 2  0 3  4 4  8 5  < 6  @ 7  D 8  H 9  L ;  P <  T =  X >  \ ?  ` @  d A  h B  l C  p D  t E  x F  | G   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i  -L  Ə.ʌL Ə.ʌD Ə.ʌ< Ə.ʌ4 Ə.ʌ, Ə.ʌ$ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ| Ə.ʌt Ə.ʌl Ə.ʌd Ə.ʌ\ Ə.ʌT Ə.ʌL Ə.ʌD Ə.ʌ< Ə.ʌ4 Ə.ʌ, Ə.ʌ$ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ| Ə.ʌt Ə.ʌl Ə.ʌd Ə.ʌ\ Ə.ʌT Ə.ʌL Ə.ʌD Ə.ʌ< Ə.ʌ4 Ə.ʌ, Ə.ʌ$ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ Ə.ʌ| Ə.ʌt Ə.ʌl Ə.ʌd Ə.ʌ\ Ə.ʌT Ə.ʌL     H-MP00L   D   <      K   0 0  H-M   00  0 K  K"{D`pG  FK("I{D yD #X FZP 
 8ZL|DFZBF(FZ (KXhZ h\J	IyDFX*F00 28   8! "FFL|D (IeX-h2 h4IyDFH X0@B  8!(F* (KXh h	J	IyDFX0*FO08 b   pFM}D  `hIbhU yD0O0p\# !3  Q  "!Fd (
N~D6hNIbhU yD0  p u  D -CF܀ D d0 +rhB$F $%F  (N ) I'HX 0h0Q)  BѰBR_shBx4C		OO 	Xp;hEHX hW$  BѰB
\_  *NC4B(FJ  FI0FMyDD}DFKXh* h.I3FjXIyD  :F@U0h  F& ( F $$ F : T  KJ{DI0FX	}yDhFhñJzDh(ah OrK !{DO0   +hB
	}0    0
K{D
I
JX[Xhh #T# BhBѰ 3B  0 ^  F2KBh{D *^  ( @",I[X !a`hP`0s P !\3  Q0 B !\c  :     ""CvO1K{DhH
JzDh) R #0  ` t -CFFRD %P).: *@ F "ahKF  2F (?h)UHxD"^ Ah ah #Opbh (	h*HHxD߹!R Ah ah#Opbh (	h)T;HxD /O #`hOB (.h
+A h(0HxD7 "`h (h
)(HxD #`hO B (h
+!HxD*"* !FJF * "!F FCHxDhAJIX yDbh08 F(F0F *     j H   7LRK|DX(hȱ| (8)hT03B
JzDh
HxDX	IyD
h`>@pGN    KF{DhBډHJxDzDpG m o F[L[K|D[IX8h	bXhFs  BTHxDSHxD hQHxD6h !NIyD
h2MN~D0h(ݫBJHA | xDyGH "GKxD{Dh`.DIyD
h*CK{DhBHxD
ANY
h*@K{Dh ?HxDihV=N~D1h )E ! F9JzDh˱8N~D3h  5N!F~D2F3HxD3  "0h(-HxD
@$)J	!zDF2h*%HxD"HxD!HxDh(F	;hB^ , ( * d x  T  .   
  
     
 
 
 {
 w
 L HxDLK "|DX`	  -C &,M,O}DDDD;*L*YhS&@  
;h;%H&Ibh(XyD0#IjXhs  0!IyD
h*ݣBHF # F !!`h`h!6KXhBJzDh3H)XhCν x  	  	 |  -ALH|DK%XX)h8h  !F@FpMNI`YYyD0"h8j :CF$F#3)hJ B*`>`    -AF+MF+K+H}DX,X1h"hB "!hU0h-P"@ # I 0 0000jX1h0hJ00O3 02` F2B
NOIYYyD0*h  FF   -O]LKF|D
Q p
X/!(h`8F28F2_$'`HxD!9FOR(SH!@{xD&FF(F:!  

	(FFF 0FOQMD,0FOQ萱	E0F)FRFOSPF1,/*/#3T09F00F (
 pA OI+x +! (ЁtMtIT0`YyDh0;F nJzD (`lHxDj<iJzDx3hK{Dx )@eN^KYX2F8hB
aIfX7h 4]HxD x"FF0 (XHxD6WK{Dh(F!XTMTN}D)hYISO
.hY ohF (!ZKJzDL
Fh (GHxD8h!F (CHxD(h1F (@HxD(hF=L|D!x)d! ! n ! p r  v  l  "\AF!p,HxD n)IyD
x
n!I&K{Dx!B 
PhhB#
] p    <          I B 9 & o   pF 
F*K T{D$ ,J )@ڌB! RQ!H!IjhXyDch0(FS+ @ SC)6~(FFBд L ^   p )F} (O0p ,"BB P (FA ) :  -OͰLFK|D
hXhK
M}DI@FOfX!5`T (T
0 	F`(OIYyD0@F!F8`NIYyD0*Ft x3 xC "E  O!	h*h h  B!¤OTHDTPxD9` 0=  Hx 'xDtHDDxDHxDHxD}JzDaC87( zD O  [xxxxxxxx xxx n xw xxxxxxxxxx x8 L  T xY ] xxxxx  ` c  k  t xq x wHxDh+uI yDQ"sHxDh*"`pHxDoK!{DpnHxDhZT  !jHxDjHxDiHxDhQ`hHxDgHxDgHxDfHxDfHxDeHfIfJxDyDzD  .cH"xDbJXhaJzD^I`X hlT0hZJzD`VIcXhHT	0hF 	NI 2hyDj>EII 2hyD^ !HFDA BHxD;H!XhFd (  |;I 2hyD2H"Xh-p/IcXhT`h+H"XhR (a/I yD| z     8 I ! 2 C F J               { }   0 $ ,      '@FZFCllxDbXhh8O AEpF   !DS@;{Dx*8 yD
0yDh `({D;h+
 +zDh) yD{;D8hTT(  yDx (8hH 2h;hyD\hh   d    zD8h ( "9F;F ( 3!O 	F$?F@h)<h
/VX
xDv ߾B " YFF` (C&h*>XF	!9*!)) "#O@9FB (8F	!r (
 "D 9F

.4 " 9FF& (h+8F	!PF E9{Dh@`yDhW) zDyDh	xDh / ;x|+!+@p	xDh+h yD2h;$ (6h hD2FyDF x$%Q ( @$yD?F`7h h:FyDF X$%  KX$%yD>%$YFx6hR hV2FyDF (#$r (H "{|D (yD FzDd7h. h2:F#FyD   ``dh~D1h)8F`PxDh!
x|*!*	"<Oc8hyD40h~D3hkhAE	 x " 8&D{D:``xDh1h  8 & x {DD2F `>`2F yD
hJ>hFHH;`wD " ~ " x " t "
 n " j " dxDh1'zDx . x7{Dh7  pFyDhxDxI`' '`gzD
~D" (J  P	OhV'` 

+@P )@0Fh0U (
h ) &zD  @shIF"D 6{DTDxF (Zэ #R]0 W aF" #L (		)T0hQ BhE!`FFCQA 0hS J S J S00hɱ " h (@R,FyD$F &yDzDPF (PF	xD& f~D0h (B+yDyD T hV Rh~, " #qh (xD0FxDxI2" n	!5{Dh8 rhyDP7hB|uD9h ) ݃t  "yDhuD:h *@\e~D3h+X yDPPyDxDhhO0H4uD:hP .h+>h&@8`&:hu !D`;hO0`'$zDhY ! h
(d~D3hO BO0FBF hyDF yD
hh2  FyDs/ g
/ j`xD:4{DhBGG*@KhdO1~D1`C\tD9hAX 3FyD0FF@$zDhǱ0F!h04{D FK( h 2FyDh 2FyD`- 1F";FݹH0`xD`
hj ZFs
P     (@ۂY*1JzDhBJFpzD`IyDh.hKXhR._8F> 
FJzDJzDHxDG HHxDhBJ zD`IyDh@I 2F#yD 	+ " Pk RIH2FI10 XyD0NY3hB:q)ѼH1xD  0`8FO1(жI 2FyD Y 
0I2FyDF  0+ _r*b2  *P( "D 9F
 ( h( MOI`YYyD0"hjZ "8F
W(@1)4@ +;A8F (8F=JzDh . ف` .@ԁD 0 + ́O@yh2F (ÁLh+  `1 * Y*@ ( +>  "9F (? ( J  h \ ,  :      p ^ P   f h          ^  H  H  G  0  .       \  n ]       J [    D  u  r _    %        j   D ^                   > 8 x     h : L ,                   a   t IyDh+?ЂHT  Q" 68FQD 1F "$lȹyHxDh  P#$
71 qJzDFpHxD1 tF1 
1FSFFiHxD
:3  (8F1
(18F 9F1  (9! :sUK{Dh (t8F  ("8 
MNYhHA { 	8F !  yh"#8F$F  V19 !8F (68Fz, 9Fk  i0OD:h
2FT 0n+IyD
h PD)OD)ND)KD~D{D	&H!X
h *$M  }D,h,
 !(`0(h+h3+`HxD hHxDK "{Dq r ,         6 ־   w        l ]  P O0pG  0Fh)K *{DK(LY$hBF&M\Y%$hBS@hBѽ0@ LYB	|S@BLYBF0@dS@Bѽ0@VHXBPS BF!DS0BF!0@N  0  048<@DHLPTK{DLY"S  "S  CC  @ X0 +L|DMdYT P% 
CD P+ѽ0@ӿ +0 \8
FxF0;	+j o)F"FO3  8O08  -AF d ,1F9F@Fi4NO~DDDhB  
      &K-CF%J{DFFXxh0:	*F	  o+1F:FO3  %( !F "I"yD|
 $ F
w(FvF F4!,O0	 0BR 6  -OFxFF0;	+2 $O5OD@FhLF0 F9F2FKF/MF4T $OD@Fh2F( F9F2FMF 4, o9F2FO3 %O5(F̗ ڶ FK{D(@?DIS yD`@!S  `S ?IyD`S Oq`<IS YX`:IS YX	h`8IS YX`7IS YX	h`5IS ;$J2IXyD`@!S `S ,IyD`S !x`(IS tYX`&IS lYX	h`#IS dYX` IS `YX	h`IS YX`JX`  pGO0pG  `( d40 hlptx|,\ Ե X-OFO & DD(FH)FF FBFD@0=+UFDD6	P -MF x!(4&  &mI FyD kL|DjI FyD`F F)h2FO34 oѷ	O @F)hJFO3 o FvF8WMXHyYxD1yUIXyDTDDFv Y FIF (sMI FyD (nJI FyD (iHI FyD (dEI FyD (_CI FyD (Z/PhB	)hXF2F #  6KO O{D1JhB
)hXF2F ^ h FYF2FGXI#FhxX$I0yD !I  yDtF ,@FO
\F$$$$  $O O H l  Z  T    
                I    FHM  "ah}DGN+F~D0 D+k +cѴ 8a
.a!;OD=l  ` kah+FFt hU!lJ!` (FoOinyo
&K*F&IXyD06O0%E%pp  !HIbh0XyD0!!% mIbhpXI0yD"B   %"`  X . " ,      h
K ({D	JX
hB	I"[Xh i )FpG  04pFF
F	KB F	J zD` "ah (P  `pO0p Թ -GFU}D
 * uYhF!%X3hhF !
 FF (@h (jXhB5&X
h  Ch[ԘO1pBe  ~D2h   Fjh +tnX2hB	t)XhV#0 d&" py FxPxD)/HxD"(hU	0hB ),xD
"+XhxDhxDU 0 
  FqF :  *&& /xD$X hxD ,+dhYhFB
 +xU hV#  FjXh&  (@8@t& FY
h#hGF\`xD@)Xhh  B	 +)X
hR#0&$1FxD xDH .KЦ r* HxDHxDe,HxDHxDHxDZ .H1FxDSIkXhBJ0FXhS&QFFHxD0Fz1FFHxD7:> ):HxD5HxD*)p(  HxDHxDHxDHxDHxDHxDHxDHxD&#;HxD `^hFiF ;H xD  (a"i o]ңh +Z BVڥNY&hHxDhBKUhV" V$U BпH)XBоNYBнH)XBмNYB Fai "NYB# Fibi0մH)XBгNYBвH)XBбNYBаH)XBai FiHN A ##! &F (@h .mIjXhB
lK FCX
hYrКH #`xDh &P# 32aB۫^IjXhB_NY
hR#0 їVOY8h(	& F !F  FtJ8&zD& q!`U0hhFB )zHxDEJX"hwHxDh
h6hB +>H*X;Hh*XQ#`h&UhB Fh  # FhGF xC"B  U0h:h *9  !\3F1(?SFRIU yDhhCBBaY(?H F JK  |IH{D xD` @  Fh +MY0Fx 04& ,    {  q  h  /          n            d`                        P  m  K0 ȴ     8 ҳ    P s+     pG  
KJ{D h	hXhK{DS"0 hhBO0pG pG  pG d Ĳ KJ{D	h hX"h 03hh  4	K	J{D h	hXhK{DS"   @B V -OFQNF ~DOKX hEMI4wXD FZ+ !D;hJ+ Z# HELEH1YxD1, BI `yDQ&0hF`)hhF`
 F!F  FQF p (8ȀDp9F"hF&!:F8FiF&iF8F(  PF H  !N F~D1F E (
O1FD8F = (   N F~D1F /K  {D (  hS""F F I    0 
 ̱  L p T 
 I8yDMF}D JHzDxDI FyD JHzDxD	I FyD(JHzDxD`8I FyDIyD`8K"FIXyD0   : / 	  	 | 	 h s	 8FIzLI|D `(Fxa`8@B * -O-FNK~DHXK
h{D4X%h
 %Q%  * 'hB(FUH!h3X@FS! I yDvO Y9h8JHXxD1oO  D;h3
ѐI8F"yD 8F9F
"  ',K	FD{D,!hZ! @)O	 hF #hZ# F c"h	Z"  h	hF >			hEqJ hzDR 0;oHxDh"lIlJmKyDzD {DkHkIxDkJkKyDzD{D@FhJiI@FzD yDFdJ!hzDR!0 +u
T	_J`I@FzD yDF / m!h
R*0P! O	h *N #h
Q#  	hC KK !"{DT0!h[! HD A )"h["0A0	    I h[ 	5Ih rXh 21I@FyDhS+n

O 
+HDxD

hE|'KHF  !"{DJ       Y@@B ` ¯  0   . ` ® Ȯ l  o   ! C H  N d P   4 d b j Tp KJ{DzD I	yDI@FyD5-c!h
BxhB,      -OF\FVJFDY h-SK "wY@#h PڍB	] Ĳ$2B % %F"!͹BK;\'{DDh   *cME F9Fd457O %9DBR / *KpBE*
*	*"*\*
*	'pf"'pbp4.'pn"'pr"'pt"'pv"dYh+i FB	ڛ00;	+QF4 F$5B""  `pKB"pS ĥ O E  h#@h 0 pG pGhhB	@hIhB  pGO0pG pG    
+ z1+QpG      .Ahh`IhRhIC`Bݣt,4r`B`?B hh`IhRhC` +t,<q`A`  -AFFhFF|N rb !Fj!FFh`  b1FF8F^1F#8F+`^i`@B pFMhUCE`(FhVCIHI0 `(FHa`p @B  3S,BS (pGFFFF~ #:F`3Fah(FFt h( (F-BFFFfO 	"3FOD (FahX h(HF- -M}D
M}D
M}DHK*FX3F  	IyDO0  u ~ q g 8FFF(HxD8@H!F*FxD8@ټ )  A -pCSF2P#P $P"0FD+FFBFp  
FO  $DV<[B8F4V% 6V )-H)F4xD F   F'H-AxD&NF&OFFOb4D~D #DDT B+8FAFObj0FTObbT<%#4T, *ѭ;HObIxDyDNLOa|D F"I*FyD <
HxD M 3 /   M ӷ 7  -CFFFQ#I6 %yDDDh +H%qhxD/V<c B@F5V$IF6V, *=ıH"F5xD\H!FxDWH9FxD
HxD(F9          HxDл  F	HxDFFbHxDHxD!F@  > < -CFFFO c!CFIF:F  h
h* h('HxD O0D0FE(FQ<FDBFr'-IF"F #   h ,h+  h)-4/F'0F:FF4'O  -   UK-O{DFTOhDFBFQIyDh(F(MJzD`HLH9XLH1xDOdIK{D`IK0F!F*F{DhW (muDK@F  !P"{DZO 
	DO 
 B KF
\ F !4 G": 4

 #*HO.
#pcpxDW 4h  "*;B  Ix p F;2*H6IxDyDP &LDDB    ~   > V   ,     	   -OF/MF/HF}D.K.XX1hFFR!0+!!0F`B	&J&HXxD1O0FJF (@FYF2F#F ( FOsJ%F&FO zD  ZFY 0+ihh @FY! * 1hh56E * 9  D  7F
FHxD"
@ (
H)FxDHxD FHxD>         -OFFFO 	w!KFAF:F  *h
 h(h)2HxD"O0Z

	0FE(F
JF 4
  E<ND'6AF"F #     ,h)h+-4/F'0FIF:F^XF   *0(4'
	O 
 -ѷ e  -AF8NF
F~D)6HxDA84OD;h33H1X
hP28`1OD;h;.H1X
h &8`,HxDh+IyD
hJ*J*HXxD1(HxD!O ,Y8h !FT@F)F2F, (
 HxD)F%>h@F)FB&F2F?KJ{DzDh3Fh"F,X ,8hBIyDhIyDKH{DxDhAҸܚ y    | l   &          
  -AFF)HxDAM_(OTgO }D:F+F@EH1FxD.] 6&LO2H;F|DxD!F6I FDyDn	H
IxDyDAnS   &  3    E   OR K-CFJ{DFF %S 09F2F+F` F0t hph){h)F<"H 
K{D @    F 0B|  x  <! (HxDHxDV  V  -AFLM@ }DAJJKIXyDbh0~HJHKX{DhFS!0EOFHYh*XhDN2YRlBAJzDB!03B Fx(1о((M ! Fa (N! FY (F2K F  {DS" (;B  "ah+F
 (1 " #ah (,(%iahOE \O5oE  " (#iai 0@@   IhchhXI0yDO0!  %aA@`a"F 5  ؙ 04D f S  F" ah0 (  @  !lh+O0  F	HxD(H	J!hxDzDHhxD#@       -AF
:i1'HxDF $HaixD70#!HxD1 HxDfipD5FB@F F)F"kF$ hF5H%xDB %HxD%
H1FxDHixDi       }  R  i  [  Q  M  #K0F{D"JXS0hT"0+HFxD*"kF (HxD&HxDHJ xDzDHxDwHJxDzDHxDi-HxDcHxD^0       z        
      F " (HxD*HxD0HJxDzD:HxD$HJxD
zD.# HxD,HxDHxD
 v  v   m  k  x e  z  c    -O
FNFK~D X+hhH-  )zFF0IHqXxD1l O HxDIFDHxDYhHxDCOhhV hS  C6 F;F (ڑHxD*HO 
xDI<"yDDOj
W. B
XF{QF FaF

EHxDk8F,zHxD_ " F)iF	i  (@ pJzD JF0^OlHYxD1jJ 'zDiKDF{Dp

 Ah _ )] FKFm (V^J!^K &zD{D	>"sY# B3ٱ иSIyDRIyDRIyD 
@" !D	J 
"D!
?o
Ob
: !6(hB?>HOb=IxDyD HF(i@5K" ! {D
!
-i
4 ")F  F	3!
vo	'H
ObxD    -hB/. /  h        ,          F  )     ]       {  k  h  j       v F
 -a`Ni~D`Ol0FD<]Hai:FxDHai)))))ѱ)
)&)@o1@LaE@ 0FLHLJxDizDKHxD0F  60F Fi*FZ0F Fi*F]0F>H?JixDzDg0F;Hi:FxD]Ci+4+W +T+M+!++/	+CG@AB1HB@гo8<  (8  *4$H$IxDyD!$ R  }HxDi" FHxDi" FY0sHxD3 	 HxDi  
     >     
   L 2          F
jiHxDXHJxDaizD   8    o  
ik  
i`  F
RiTHxD$ FaiL    pFM}D

Ni~D:0Fai F30FHJi(XzD  p      "iF6 (HxD   F  FJ zD1HiXJzD   j  F# AHxD F!j "     s F%F " FajkF (HajxD
HxD+H xD F *FpHxDy0F|   D    "  F !HixDb    8FM }Dy
H!ixDPHxDLJaiXJzD  8  b     `  dHxD[HxD@)     -OF6LFF|DFA3HIFRFxDO XBMF (IO IF x*FXFCFJ (=%I@F%KO\OxbX{D<Fh++ ,	\p,\p4B%ED<<   pH9FRFxDF&8F .  h  ;    K J{DɰXFOFhGYhhS%PFHxDOrkF (HxDH xDHxD~ F 
HxDsG)hBI  ,.    n  s    pA0F&HxDF`$M@"$K}D {D(F(F:!IyD  HxDHxDbJzDJzDK{DK{DM}DK  !{D(F@"z4~D	@!(FI"FyD(HxDx|)	HxD0  &  s    e    W    I          8
FF
J5P%}HxDk1HT#xDP# 5HT%xD  86    (  FH!FxDSF8  !	H "	KxD{DH "KxD {DHxD       x p
F%K@{D<#NhYhS" S H)FxDy5T" (HxD*
#FF	 HxD] HxD
KHxDF	HxDBpl ,    q      U  0
FK@{D<LhYhS" RH)FxD(X"b (HxDXF HxDH xD
HxD
HxD0  ,@  0  D  i       0HIxDyD!fꨱiCiQ hlsh !Bh hJzDHxD
H !
JxDzDHxD	  P d      $    O
FP#5DFF48FT%  HxDHxDT% "3F F8FyT% F "13FHxDm        pK
FP#`F#)P!0FpFFHxDJ _жO5JT%˲ H!LxD4  p  Y  2  BK-C{DAJFFhXhP!pF%%h9J )H	!JFCF 3HxD2HaxD0HixD.HixD F+HxD  pA _бO!iK%H
_xD!LHaixD9hhQ   jFHxDjFHxD kFHxDHxDHxDC   ,    -  4  6    $        -    'K{DFF%HxDP=#OhYhS" S H1FxDp1 "kF (HxDe&  0 
 	,0. 
 F(* l   ,    Kp{DF
FHxD :NhYhS" RH)FxD@"kF] (	HxD FiFp O  ,6  &  SK-C{DFFPHxD :NMh_Y;hS" SKH!FxDh"& (FHxDzh9hQ 0)<JO5 F@	Ef!JF E8HxD
$6H xD4HxD3HxDHF0HxDpB _вOK_F'H!xDN#H#xD}9hhQ  FHxDoFHxDgFHxD_HxDHxDX   J   ,    +  n        t    p  n  l    j  sF'I #'HyDxD\ZT3 *$HxDA"F| K{D"Fp2 (% -&SlEJ&F4F0p6 (5| 3S )	K F  !Ob{D<HxD|     e    HxD@ȼ  p
FF
¹.P&nZ
HxD4& T& B5HT%xD  p   M   !տF
iY F!@ſ  F
:i"HaixD{     F
jiHxDhHJxDaizD/   X     F
i  sai FHxD@HJxDizD      |  F !HixD$ W  F
iBHxDaii	HxDHxDHJ!FxDzD    $     ƿ /  7F
ibi jF FHixDHFixDL0+HixD"ikF (
H #xDH	JxD!jzD  >         <   F
i	HxDI F"yDHT#xD   Ĺ  f    F
:i HaixDy     F
BiI F"yD    F
:iHaixDQ   N  F
binHxD>I F"yDd      
:iHxD%Ai   Ҹ  
:iHxDAi     F
Zi Fai
HxD
iHxDHJxDizD   p  `  X   
:isHxDAi?   "  
:iHxDAi     
:iHxDAi   ʷ  
:iHxDAi     
:iHxDuAiA   r  
:iHxD_Aia   F  
:iHxDIAi     
:iHxD3Ai     
:iMHxDAi   ¶  F
Bi	HaixD
CiT+сipHxD   f  V  F
Bi	HaixD
CiT+сiNHxD   "    F
RihHxD Fai`    
iS    F
:iFHaixD   A  F
iX  C Fai(HixD     
i  
i
  F
RiHxDX Fai  8  8F
ҹMi}Dai F(F= Fii F(F2 F!jZ  8  
i    F
iai FHxDHJxDizD     H _  F
RiHxD Fai  d  F
ri~HxD Fai Fir  8   !F
i F!@ѿ  F
RiPHxD FaiH  ܳ  F
i`ai F6HxD FiT Fi*    8F
bMi}Dai(F(Fi  8x  8F
ҹMi}D( Fai(Fii(F(FQHJxD!jzD  8H  "   8F
bMi}Dbai(Fd(Fi`  8  F
:iHaixD   9  F
i  C FaiHixD     F
:iHaixD     
F=  F
i   F!(  F
¹i  #! F
FHxDHJxDizDr  ޱ  ֶ   sF%M}D
 *Ai1!HxDaiHxDKhXhS  @HxD%J FNYX+hV# kFR  (HxDi)hV! ( FHxD[zF
HxDSl  |w     ,  <  '     !ӿF
i F!@ÿ
iJ  FK{D
:i<HxDa J@hS0hQ" SHaixDAiHi)HxD   v   ,    -OFTOD
:iQHxD X8hW
0hFR! IHaixDi`0FFpBHaiixD@JAHXxD1Fk5F Fai2F+F (:HaixDiXh Q'04HxD3JO 	ȰOFzDDD( hQ 0*IyD aF  cXF
\  " HxDS		B۠h Q 0HxDBHIFxD<HixD7(F   
v "  ,          y      A  _  U  S    -OF\N~D
:i,XHxD XThV	0hFR! PHaixDip8FFpJHaixDiHIHHqXxD1tz=F Fai:F+F (AHaixDigh 0S! ;HxD:HO 
:IFxDyDD7h 0S" $Ը 1IyD0IyD# # #*J|XFzD(HxD'H1xDy1!$HxDsD

Eۣh  P# HxDbHQFxD\HixDW(F  ht   ,I  +  A      @  Z  ֳ                 Z  F
0+	H!ixD i:`HaixD   8    sFMi}D(F FaiO2i1Fi F (FHJxD!jzD  |x  2   sFMi}D(F FaiO2{i1Fi F (FHJxD!jzD~  |  ְ w  F
ji@HxD FaiO2N0 1 !iic     F
jiHxDt FaiO2(0 1 !ii=   p  F
iHYixDiK     F
ihHYixDi5     F
biHxD" FaiO2  ̪  F
bi:HxD
 FaiO2    8F
ʹi
M!
H}DxD)F" F)FF FHJxDaizD  8 $  h     8F
Mi}D(Fai Fc(FHJxDizD  8   T   F
:iHaixD     F 1HJxDizDZ   Z  F
iHxDx
HaixDs	I" FyDIyDF F   x  /    "  6K-OF5I{DFFhXXhV" 0I[XhB8.F .F^GF $,HDDxD*HxD)HxD/"HF9Fu ($#HxD"!"HxDAF*F'XFPF
 4J7zDHxDB	HxDH)FxDB 
o ,             S    C  ?  F !!i!HxDHxDHxDbiH"s "xD#
HxD`iH
xD         :   [  F ɹH!ixDbiHxDci	H
J#qxDzDHixDw   &  p   f  r  F  )0H!ixD]i" F
fi)Fi (H)FxDL
HxDF F)2FHxD=H1FxD8	H
J9FxDzD   0      K    ޭ   F
*"H!ixD<"i
X (HixDbi& fi(H)FxD" F)F
> (HxD F)2F
HxDH1F:FxD
HJxDizD        Q    F  (   F IH!ixD FibiU   z  8F H!ixDibi F?HxD Faj*F+F  8 N    F I!i!HxD}HxDxHaixDsHxDoiH"s "xD#3HxD`i	H
xDY     J    f   a    F H!ixD<HaixD7iHxD0i
H
J#qxDzD9HixD"  :      B     F I!i!HxDHxDHaixDHxDiH"s "xD#HxDi	H
xD     ^    z  D u    F ɹH!ixDbiHxDci	H
J#qxDzDHixD            F 	  'H!ixDHixDHxDHJxDaizDT  *" Fi
 ( 0        "   F !HixD\    F
iHxDJu`iBHixD?     !  8F H!ixD, FaiiHixDi! F!j*F+F+  8 H    F
*H!ixDAiiHixDi " F!jF        F AH!ixD Fai    F H!ixDai!
HxDHxDHxDi!	HxDHxD         
  }  x  F
:iHxD0+	HaixDAi EHixD    ,    F
iHxDp Faii%HixDf  h  x  -OFTMFF}D!RHxDSPHQK)XQHX
hF)X0W"`
h.O	O	R#0Z	.!!HF<XE	@HxDl>I.&&mX*hFB8NF NF8H%FxD7K7HD{DxDCBB1HxD9 PFW! )F*""< ((H%xD% 0W# (PF XFW! * 0W# (!!mME %HxD%HxD!F	 g J  ,X  1  H            E  F
:iHxD03	HaixDi~iBiHixDt    y    F
iHxD^ FibiHixDT  D  T  F
:ipHxD@0+HaixD7Ai HixD,I F"yDR    x      F
i>
HxDi FaiHixDI F"yD*    d  L  7F
ZMi}D(Fai F(Fi!HxD" F
 (
HixD	HxDHixD  > \      7  2  7F
jMi}D(Fai F(Fi!HxD" FkF (HixD	H #xDHixD  > ܝ  9  $      F
:iHxDf0+HaixD]Ai HixDRI F"yDx  T       L  F
id
HxD4i FaiHixD*I F"yDP        pF
 **i=HxD
`i FFHNxDih~D0Fih(F _F (HaixD Faii o  pAii iF(HixD8p   i      @  hhBO0pG pG  pGKJI{DX[XHxD h!h#"hP<B FB a hpJ 0zD
M
IhQXRY%	hhcE #@iBF0a ph#T+pFFF
++p+
Љ+p@Ip@p@ǹ0F!F*Fp@H  p-OFF9MFH	}D S0UhP#0YSոPѧBN`U
 hQ& 
UP+hB8>F >F%H%FxDDD BPFBHxD"HF)F
L (H%xDXF
!5B %HxD=HxDHxD!FHAFxD ` ,X    ' ,        J  f  -CF	hFFF!HxDHxDHqhxDOHJDhxDzD`o8FDhJ@FzDh@F"8FHF1iH"F+FxD/'   f  ԙ  2 ' ` & & F !HixDb   0"ikFF0# A FiF*F    0FDj#1"Fs   F )HixDZi%     F aH!ixDbiHJxDizD     % F 
HxD
HJxDizDi (H!jxD  % \ % N  F aH!ixDbiHJxDizD    j % F 1HJxDizD~   h% F 	H!ixDHaixDHJxDizD`  F     4% 8F 	H!ixDbi{HJixDzDMAHi}DxDm"j(FJzDw#j(F#  8 z   $  6  $ pF HMxD!ibi}DAHi*FxDMi"j F3F	HxD1Haj*FxD  p 
  $ (   ` 8F eHJxD!izD" Fai+Fi  8 9$ F
 *3i!HxD0+H!ixD
"
3 (HJxDzD0 Fi 3ai#
HixD	H	JxD!jzD      r # # f # -GF  -efiRH!ixD2FiOHxD'OH<<xDDD@F" FQF
 (FHxDHF5B
@HxDyi>HxD(=H %xDkDD@Fd" FQF
 (4HxDWHFR5B
.HxDI#
 *7&jgi(HxD((H %xD4DD@F-" FQF
r (HxD HF5B
HxDHJxDajzD  }# # ݽ    h# D# /# " }  X  q  " " ;"       v" a"  /" s
FFN~D
J0+H!ixD"ikF (HxDH xD -H5xD	H
JT%0XzDx  |
Z   \  #   *  FHxD6FPHxD4	HxDH!FJxDzD@J V {    $l N# KFJ{DFFX8h?HxD0¢hS0hP" SԈHxDS"~)% ! F1F*F (~HxD}H #0xD7{H{JxD|zDAyHxD+| B* 	/k; -nHxD~0ckHxDl!
~ F FfHxDk!
 F FE~@d !FF[HxD
 !d#~ RVH xD (	ѝ  (NH%xD1(ѝ+% (FHxD~PmDHxD 	AH $AMxD}D
|(F4	z,:HxD:~@d6H  $xD5M4H5J}DxDzD2HxD y
|(F4{oB'H !xDd%HxD_ F"!HxDV?8hBA4Y ź  ,    " & " ޒ  -  " r" I" X" " v" " " " {" m" T" r ѹ  i" L" V" }  -CFQH
FIhxD 8FLHhxD8FhhHHiixDni .t.
0FFH8FAF2F#F1 (  $<HAFxDC:H!hxD8H9JxDahzD7HxDch+A4H5JxDhzD hB(F$./-HxDBFDD	@FHFW "B#HxD F\	.HxD FLHxDHxD{HJixDzDBHxDCn! ! ! ! !  ! ! 0 !   <  ԏ  O! 2! ?! >!  V    0"F
F (H)FxD7 F	0x  7
FF
* H!ixD!8i)HaixD!Ci+HaixD  *"
S ( FaiHxDJ FizD -H5xDHJxDT%zD  > 2    ,    L  f  f   F  )5NMO~D}D!iD0F*F8F`i!8F"i*
**HJxDizDHxD0Fi*FHxD
HixD      j  Y  I    F qH!ixDx FaiiHixDn      F )HixDZiY   * O1"!  F H!ixD@i FaiHixD6HJxDizD   p  Ȼ  $   F H!ixDi FaiHixD
HJixDzDHxD F!jbjHajxD      x   |      F H!ixDai FHxDHJxDizD     4  d   F
*H!ixD0+
HaixDAi c	HixDHJxDizDk   `  h        F
,H!ixDO0c jaj 'HxD vA Ai*!HixDk H JixDzD2!jbj*HxD[HxDVajHxDHxDF F" (HxDB
HxD= F!jbjHxD3    o 2   6  3  0         
 FK{D
*H!ixD
 IDhS0hQ" R
HaixDAi
HxD	H	JxDizD  P   ,  f   >  pFQKQJ{DX ..OH!ixD-hhU! JM!F"j}D(F(F }DHaiixDBHCJixDzDsAHxD F!jgh+hS! Q;9HaixDFi "kF1F (4H1FxD
3HxD FiFg0HxDv.HixDq-H-JixDzD8	*IyD*HxDa &   0 ""JzD (hhP!0 MI}DyD(F !(F!F"j(rP    p O ,|  8     ʉ  &       
   B  ֱ    5  L D F YH!ixDHJxDaizD       O1!  F
 *1'N(M(O~D}D!iD0F*F8F`i-8F i((HJxDizD*HxD0Fi*FHxDHixD0+HixD"ikF (HxDH xD     &    s  c        F
 *YaH!ixDd_H`JaixDzDo^HxDYai)))
)+Ё5@qEЄ),%SHSJxDizDRHRJixDzDJ"PHPJxDizDOHOJxDizDNHNJxDizDMHMJxDizDLHLJxDizDKHixDIHxDe03FHixD"j["jL (`i(@B<&i
++5*2 Fi4 (+4HxD"*& Fi( (
 -H xD%i** Fi ($HxD Fi*JzDhHxD      :   ^ $ Y  P  M  I  H R_ D     +    P   -GF D )@vH!ixDԡ[fisHDsJxD1FzDbPFM).:..bv.j܄.@_1@B@1bH)FbJxDzD?
-@𗀸@ F9FBFl (YHxDVH)FVJxDzDUH)FUJxDzDtSH)FSJxDzDRH)FRJxDzD
-eѸb F9FBF< (Z
IH xD `FH)FFJxDzDEH)FEJxDzDDH)FDJxDzD-:PF?HxD+ HhY hS! @9H9FxD1" F9F (3HxD
3HxD1H2JCxDzDk0HxD.H)FxD-HxD F9F)JzDBF<&H!jxD}   .K   4   . 
 <  
  	      u   \  L    ,t  `  6 f ) *        4K-OF3I{DFFhXXhT"p	.M[Yhґ w  '*H4F%xDDDaF"@F O  (-
PF XF< %,	ټBtHaFxDIyDIyDHxDHxDHxD - -H ,    ܪ  Щ   ֩    v  u  -OF-L-H
F|D#O !X*ODDD-(J)F(HX T 0F   S"  (!H)FxD*C"9FPFz0FO2. p P' _FhhP"JXh qa
H9FxDV G ,+{         ((HxD
L !K"|D {D F FHxD    FF
AH!ixDzAi?HxDLP0<HxDH"
K (8HxD9 (F0
FF1HxDi**F*JzD*JzD*HxD%HF&H1
xD%#H)FxD!!HxD HxDM}D(FHJxDizD{/(Fi!HxD  ( FHxD         I -  y  + > V   J    : I  4  pF  ):HiixD,ibHxD^H$ "xD%N~DN~D 1FFHxDFHixD<!HixD5H)jxD-  p    E  x  3  w ~ y 7F  )94H5J!ixDzD!iJ*[[
[.HxD-HxD`iF+HxD*HxD*HxDai@%'M}D(FT!ShB-"i+)(( #" Fai
 (HxDHxD x" Fai
 (n     >V E       `    J      F
BiBiHaixD    F
BiBiHaixDn    8FL |D]@HTxD1O08HixDP
IbXh	HxDG(F8 $C   ~  FaC Y( @ ^   F 1HJxDizD  b |   
 *   pGF Qh "h (O0    -AFFFFhhN~DFp))+eJeIchXyD:F0bKbHX1XhhB"!Bp 8FF  Fx( @)@H 0"F0R Qh@0Z (   (FN   ")F,!+V (k<JXhɹ:F:IchV yD0
4JXhI:F3IV yD0!hV h-HxDhB  !"i^{ `K0 @aF	(@\ 0Y2 O C  0  ) S0O02B    4)K*J{DFX
h)Eа Y,p S h )5HhX 	h HxDhB"i&IJXXXhhB" FB~ sz@0
Bt@   d@ 4  
 *   pG pG  F !HixD x F !HixD|  X F !HixDl  8 F
 *C0C H xDU7"i
 (H!ixDHxDB" Fai
 (HaixDHxD/" Fi
t (
HixD	HxD  u   `   : L  ߮  F
 *C0C H xD7"i
> (H!ixDHxD" Fai
+ (HaixDHxD" Fi
 (
HixD	HxD      ֦     '  F IH!ixDHaixD   =q  w  F IH!ixDHaixD   
q  w  8F qMH}D!ixD(Fai(Fi  8pw  p  8F qMH}D!ixD(Fai(Fi  88w  p  -GF9O D )i.i6H1FxD74HxDli$3HxD-X1JhXhQ# Ps S+H!FxDC)NY8h@B8GF GF%H&FxDDD BHFBHxD"(F1F
: (H$xDPF6FE $HxD$HiixD  < |    _  ,:    v        Ý  y  -GF<J zD:H)ixDj8HxDli$6HxD_+i4HxDhR  hP# CK S,HxD!FC*NYhGB8GF GF&H&FxDjDD BHFbBHxD\"(F1F
 (H$xDMPFG6FE $HxD?$HiixD9  ; X    9  0  ,    Vu    Ԝ  i    E  -GF9O D )h.i6H1FxD4HxDli$3HxDW1JhXhQ# Qճ +H!FxDB)NY8hB8GF GF%H&FxDDDBHFBHxD"(F1F

 (H$xDPF6FE $HxD$HiixD   ~:       ,ڛ    *t  b    =  e    -GF:J zD8H!ixDf6HxDei%4HxDj[hR  hP# C#i3 *H)FxDB(NYhB8GF GF$H.FxD=DDBHF5BHxD/" F1F
s (H%xD PF6FE %HxD%HaixD
  V9     ٚ  ,    r  4  z    7    F !HixD    F )HixDZi    sF1M}D
 *XiahUP+hS (HaixD&HxD Fai#HxDh(hP"0YHixD,զi % 5" F
 (-JzD )JzDH)FxDvHxDq Fi
HxDi  | 7 ,    U    j     s    ) #lCl   pGpFFR0 PPBԿ %% +D -B0T  <  * iC] (Y#i + "i Q@   ۹! Fw (C"\  "FB5   +.  Q  
*6T&  ! F
Fp@z  ( )7 0X   p!!  0F-M}D
R+H,JxD!izD*HaixD@i(HxD0#&HxD"kF (!HxD
 IhmX*hR 0hFM}D(FoHJxDizD6h((Fb!j!HxD\
 "HxDT F  !0 5 4 6 W  '     d  ,ho        F !HixD&    0K1J{Dp䰞XF1hc )H :)Mh]Y+hS! R&H!ixD7iOrG ( HxD$h
)h
EQ 0HqFxDH

xDHBxDH
IxDHxDHxDc  1hB"dp4 ,        o   pF_M}D
 *z]H]JxD!izD[HaixD ii(("WK{D33SBS )ы<DfE	V<MHVxDnJHxDIHxDFe!i))J*2o	)O))D BbCB!i,Z8H8JixDzDRi5HxD8 3HxD'" FkFy (./HxD(.HixDi+6+D!B0(JizD)i%HxD "#HxD"kFO (HxDHh+XhFhR!7HxD?o|   p 3       c d     s  l    P  4  !    ^  ,  pF  .@JH!ixDeiHHHJxDaizDEHixD
-CHxDUBHxD Fi*F+Fl	-
<HxD Fi2F3F8HxDajZ-6HixD"jvS--1H xDiF-3-HixD"j`cj +*HxDYaj(H)JqxDzDbbj&H1xDI`j"HxDB'0 H!JxDzDJajH
xD
-HxD, Fi2F3F6H!jxD!  p  
 F    ՠ  k  k            ]  l q j  V F QH!ixDbi Fibi    F
2HixDZi QHixDi       8F 5H!ixD(F80cHxDI  (   8  8N  d F H!ixDHJxDaizD" Fi
 (HixDHxDs     ( # r  	 F
H!ixD"Ai
 (HaixDHxDJ  *    
 F
"Ai
 (H!ixDbiH!ixD(  
 
 F 1HJxDizD&  F A
 F
 *3i!HxD "
F (H!ixDHxDai!HxD" F
. (HaixD
HxD	HixD      %
   ܖ  	   -CFN~D
MO2i}Dj(FHJxDaizD(FMhuY+hS! R|H xD )"j
 (`i( " Fi (nHixDmHxDpkHlJxDzD7jHxDdhHxDC+RfHxDZh+hS  ?i8FTFX|_HVxD1\HxD/ Fi:F+F (XHxD4 ,2F9FAFHF+0F406	DFNO8.F8DDDB(FIHxDGHxDQ(QFHxDh*hR! >i8F FH5I>HqXxD1<HxD0 Fi:F+F5 (8O܀ $ܐDDD5HxDV, ,9FAFV<HF46B(F(HxD'HxD Fiil#H!jxD   - g    ,n   < . L J T [  )g     )`  f  ׍      f  t _  #  g D  8 ގ  F
:i HaixDY  ^  F y	H!ixDHHaixDC FiO2       FNKF~DXEB:h3 t$رo `رo 𝀱 o @@	Po ر o@M`o 𽀱_@JB EBEaE@܀B@HB@B كZBHxDH"(F!F" (ڦHxDH#xDH#xDH#xDH#xDH
#xDH#xDh¨hV0hR ԖH#xDH#xDHxDHJxDzDZHxDHxD HxDu "(F!F (ڈHxDjHxDpHxDkHxDfHxDaHxD\HxDWHxDR}HxD0{HxD>("(F!F (wHxD3vHxD9uHxD4sHxD/rHxD*pHxD%oH#xDmH
xDkHxDB0hHxDp"(F!FT (cHxDcHXxDaHxD`H`JYxDzD^HZxD\HxDZH#xDXH#xDVH#xDTH#xDRH #xDPH"#xD$IhpXhS" %JH$xDIH%xDGHxDEHxDCH,#xDAH.xD@HxD>HxD     *           ,       đ    H                Y    $  d   6                 ڏ   HxD"!F
T (ڸHxDHxDHJxDzD
HxDYHB0HxD"(F!F2 (ڭHxDH#xDH#xDHxDHxDHJxDzDHxD& HxD"(F!F (ڞHxDHxDHxDHxDHxDHxDHxDHxD "!F (ڐHxDyHxDHxDzHxDuHxDpHxDkHxDfHxDaHxD	S HxDL$"!F (~HxDB~HxDH|HxDC{HxD>yHxD9xHxD4vHxD/uHxD*sH	xD%rH
xDoHxDP"!Fb (kHxDkHxDiKhXhQ  fHxDdeHxDdHeJ
xDzDbHxDaH#xD_H#xD]HxD[H
#xDYH#xDWHxDVHxDTHxDSHxDQHPxDOHRxD"!F
 (JHxDIHxDHHIJxDzDkGHxD  $  d
          
 Y \ ` 
 ` V S     , /  ' ) - $  f      " . 7             >    ,                  
   h 
   HxD!F38hBb5   FCKDI{Dhi[Xi<
hQ" SԽ@  +_9H!F9JxDzD7HxD6O6H7JDxDzD8F(FiiO2~8F`o0شo,ش д@o"дPoдoE BABҴpoJBӤ <,H1FJxDzDH1FxDHixDHxDi"HxD{!FA     L" , 
 M  &\   
 ( 
 p    [    CHIxDyD,oك
C
K @"H{DxD !	K @"H{DxDHxD   ΄     FJzDIHJxDizD#HxD9LhYhR!JHYixD"AikFF (HxD FHxDFHxD      6 Z  ,    
 
 7FM }D )3HJ!ixDzDHxDJhXhQ#0YHaixD" FaikF (HxD GF
HxD?F
HxD  > F 
 Y  ,b  R  O
 M
 2Kp{DFF0HxD :.Mh]Y+hS" S+H1FxDbHH" (&HxDW=)hhQ 0 ,
H xDEHxD?H	xD9
HxD3H
xD-HxD'HxD!H
xD pP   ,΀       
 )
 >
 Q
 q
 F
ZHJxDizD HxDAij  * I
 \X  )JF)IzD0UX,h ,:@LhR hQ$ RHixD'@"i (HxD HxDHxDH	xD
HxD40  *hB0 ,  p     
 F YHJxD!izD|HaixDe     v  F aHJxD!izD`HaixDiH  J   F !HixD4  &~  
iHxD0#HxD"kFe (HxD
H xDHxD    M~  F~  6  + A "? (HxD	H
JxDzDHxD  O0 9
  B
 ?
 0#`O0 !"  +4F'FFFF(F1F:F#F (O0  9 ))"`O0#hA`  -AFFF
!8F>F8F:FF$,=0	*٣a (أWA)أ70F0Fj0Fa+0F!F4Eؽ9 ))~#`O0 h  -OF|F^JD^MFFY}DOr  (FOq(FUI,Y0OhF @'O 	YF0F(E  !P E*~ 4O OhT0F)F( 3h # 0`0F)F(FB[#-J%-HDzDxD;D00F)Fj()  B	$IY0AFhP%  F2  *  !("[F ! "  FAF FL$5B]!!p #cph
HBxD  
 T      x} FH
FFxD"FHxD@W L  T   (JzD
ISXhBKX
hR    *
L !
K|D {D" FL !K"|D {D F F  x} 
 | Fy  FHxD@S  7F
F!
HxD#> (H)FxD!F>z  y  
FFN~D
OiD
8F" FaiHixD -8F5HJT%0XzD  . JR  T~  b{  pFiN
Fh~DhHxDgHxD heHhxDHF h(!(("(*(($((WHxDWHxDVHxD
VHxD
UHxDUHxDTHxDTHxDhFQHxDQHhxDhah )MJXhBLHxD,KHV xDhS!Qh (FHhxD"iHh )WЋT@HaixD;ai )M%=HxD4G<HxDA"h*/!o__3#4HhxDh+1HaixD`i -,HixDi+HxD8()HxDhh	"i"%H"ixDai1 -!HxD
F HxDp@  *z    j |  4* & \     d~ `~ v s   i a w  T i l   x  -AF8N8
7K,~DX
hF4("0K )J@h !/K "{D  !CF8
O b)F "*T8F!I(FyDH|HVxD10I(FyD (0!FH!F 0 F  4 0B
 m  0  f ] f sF &iI)F#i!`hA!"P}`0H*FxD 	    |  0FCM }DA i@HxDai i=HxD]<JhXhR#0[9HxDR" F (4HxDFH2HxD@1HxD<) i(!A ! `hN*HxD,(%!`hE"B%HxD !+HxDHJxDzDTYHxD~HxDz"#HxDpHxDj  0 2 JN  u  ,u  v  ? B -  M      u  hM  Xv  pF  .4 i&HxD5ei5-j"HxD!HxD#i+!A ! `hHxD* i("!`hB HaixD 03+3

IyDIyDIyD 	 p  pL  M O ; t     0F  %aah*F:0   T" F (##aaaeihF i "   8HiFxDo  )0e 7F iPH "xDU 	 > = 7Di!F  >  F
zi!HxDkp (O0  HxD]ai ) Fr  BK  pFMHJ}D!ixDzDV(FA Fai2F.(Fi!HxD4	 "HxD,  p K     mr  br  
Ji@i!FFHxD  ? 8
ZiDii)F"FFHxD  8 F
±@,HixD#i (HxD!Fl  q    7F
#M#H$J}D!ixDzD(FaiHxD Fi (HaixD&!?(F iHxD0#HxDi (HxD!HixD  >J    )  vx  ;q  4q  k  u  0F=M }DA iE:HxD[ai i7HxDR6JhXhR#0[3HxDHG," F (.HxD;H,HxD!+HxD2))HxD(HxD(hFSi*hF#j !hFHxDHJxDzDAHxDHxD"#HxDHixD  
0& >I  p  ,p  q  3 6 3 8 H      p  rH  t  F
±)HixDiCi (HxD!D  o    
ziCi (HxD!(  }  0FM }D1H!ixD{`i^HxDt" FikF (
HixDg,hU0hP"hF  !0b
 q  pG  n  ,0F&M}D
¹iiz (!HxD7!HxD.`ipHxD AiI0HxD"i (HaixDIhjXhS PHxD FiHixD  #0   F    fu  Ru  ,F  6   HxD    O1!  -OT4F}DF XFh:a{d˹HB@"i (<j,HixDHxDH$FEH!B=HfE9ܦ	F>. ,HB 1B %H3fE!H)BBH'B@HBBCBݦ	Ap9) JzD] " Fi$ (HixD HvEH#fEHykxDH$xD:bvEH#BH$ykxD,TH$xD%HBYBHBBB8HBYBp?HB@>/H0B{FEPܦ	F!>. mH'BDЂB@gHCBYBeH3Bt	Fp>.n]IyDHxDHIyDHxDJXJzDHxDi1+ѸkFHxD F"nHxD?9 67 80 : ; HxD+HxDHJ4xDzD_ ~HxDyk|HxD|H4xDzHxD>  ?wHxD@ ykkosHxD"i (nHxDnHixD\ (kH9jxDTx9j!hHxDMqiOROI  
 F

SF (]H9jxD4xiFZZH &xD,XIYKYJyD{D`zD`z`?hOFh
AF@hU
hR# C!3KLJXzDIHxD i 1*YD	 FBHxD F"xh=H6xDNE:HxDxiF8HxD    9izlhB3IyD2IyD&LF ; ro    n  y    z   b     D    1l                   k   .x  pk  j    j  B    bj  ,o  B  V    j  }j  f  i  F  )Li'O*B@U% %& .FO F!iD8F? Fai8F86i!HxD1 FiO2N~D0F%HJxDizD0F5!j!HxD F!jO2     A  lh  @  B L  2h  F
ziO2HxDHJxDaizD   `@     F 1HJxDizD     pF INM~DH}D!i2FxD(FHai2FxD|(FHJxDizDriJB(F FiO2Q  p ò  ?  @ > f ~  F TM }D ( QN~D3h x0`X4MHUxD1KHxDJN~D2h d0`xCH)XFH1xDDHxD!ibiPO0!i@HxD?OhYhS& P<HxD<;N" F~D3h (7HxD.1h5HxD'4OD8F"fi1HxD=*KhX*hR ,H1FxD0*M" F1F}D+hR (&HxD!&H&NxD&L+h~D|Dh"F0F8F*h0FQh"F8F)h0F"FhHxD   \ j s?    j K?    f  ,f  $j     >  =f  (f  i 6  f   ?  f  FTM }D )@QN~D2hr 0`HMINHiXxD16LHxDKN~D3h 0`xDH)XGH1xD"EHxD!ibixO0!iAHxD@OhYhR&0^=HxDd<N" F~D3h (8HxDV1h6HxDO5OD8FJfi2HxD?hUP*hR 0,H1FxD50*M" F1F}D+hx (&HxD!&H&NxD&L!)h~D|D	h"F0F8F*h0FQh"F8F
+h0F"FhHxD    h =  7  h =    d  ,d  xh     =  d  td  h   d  \   d  -A("iFOD (0FJ 
(FFH0F*F#F (  $ Fr4 ,@,
	
H xD  F0 
 *@ҀHxD - 🀋HJxD!hzD- %h---@HxDmHJxDahzD{HxDcHJxDahzDnuHxDW~H~JxDahzDb- eahJ*a````````@tHxD<sHtJxDhzDJrHxD2qHrJxDhzD@pM}D(F'oHoJhxDzD2)6Тh*
*1(FhHhJxDhzD#(FeHfJxDhzDD@F bHcJxDhzD+Рh(@F\H]JhxDzD% %dhW0hP&
TJX3hEFT%0F5NN~DEEBKHxDJHxD?"0F	  (*+' h($ahJ* 0FF=HxD
!;HxD
  8HxD0F/5HxD2H xD
~/HxDz F@        P r  b;   L  N;  > A  6;   0   ;     :     :     *      :        ,  n    O  7a  \  )    a  FJFIzD FVX1h	<ELcE ߁5E@BEABE@B ELcE\ڹIB E@B@MEABEBBE
@B ԁ0EAB HB@E!BBQBELcEENsEځE@B@EQBB
QB߁E"@B ځB ؁ERAB 𼁑HB@΁0 +@ȁOhY:hR! C@$" F)F
 (򶁡h;hS! 0ՄHxDyHAJxDzD~IyD}IyD
|JzD{JzDzK{DzK{D yHxDxHxD xHxDBwH
xDFuH
xD@sH8xD:
pH?xD> /mHmLxD*|D  
P FP)cHxD- )@BLOhY:hR 0[@9" F)FL (08hhP! 9THxD RH"cQJxDzD MIyDLIyD_rJJzDIJzDGK{DFK{D DHxDDHxD CHxDCHxD @HxD =HxD@;7H#xD" 4H5LxD|D !
P  F3Y(g 0T1T@ ,a  @ n 0  X 0  H 0  : 0  , - J ` q k } ]  V `  6 b /  H /  4 /    y/    * < K = O b\  0 +XhR hQ# CN" F)Fb (F۽   %H0xD6"HxD!H"J)FxDzD
*")FA (%HxDHJxDzDHxDHxDJ F)FzDHxD F)F"    3hB&,A 4   ^ o]   > [  F4  Z  04  FH xD # FH xD  FhFM }DiIiHxD @hU0hP"
H xDp@rHxDp@k   , a  *K{D)HxDJhS hR$ R%HxDK=#LYS0hR$0"+kF(HxD5hFHxD.HxDrHxD hF{HxDtHxD ,HxD  Z  ,Z    [    Z  ([  F1LFF|D0HxDV/OhY?hW#0[,HxDK*
*JXT@"hS"0+"0FqFkF2} ko@ABHxDJBHxDhF"kFۍ xo@NqEHxDJBHxDhF ,
HxD?2 Y  ,Y      *Z  F%KFF
F{D#I FyD:"OhY?hW&`I FyDL0
lOS`YhV#0+(FFkF"I FyD"kFI FyD $ -I FyD@~8 X  ,X  U J fY  K{DHxD0phS hR$ RHxD#L\YS0hR$0"+kF;HxD4
HxD  ,
HxD  X  ,X    X  !K{D
FFFIyD1OhY?hW&`IyD(HJXXhR 0"(F+kFI FyDI FyD  -
I FyD@۹  {W  ,hW     X  
"JizDe   V  
"JizDU   hV  8F
±P5H!ixDbi@i*F+FJHxD6 Fai*F+F@  8  .  8Fti"F#F.HxD(Fii"F#F$  8.  F
:iHxDCi# Fai (HaixD   .  U  F
Z
H
JxDizDHxD)HYixDAik   6 @  8.  U  8F
MHJ}D!ixDzD(F FaiI(F0+HixDi9  8 -     DU  0FfK{D

  ibHxD :`Mh]Y-hU" R]HxDn\MZY\M[YhR# *HP"kF (VHxDYUHUJ xDzD 
RH xDJPHxDEOHOJxDzDMHxD8KHxD3	HHxD*FHxD$DHxDBHxDI"kFc (A?HxD>H>J xDzD
;H xD9HxD8H8JxDzD6HxD4HxD	F1HxD/HxD-HxD+HxD+HxD  (F'HxDh  (   !0j T  ,T  E   ?  7  Q   X  V  h  l      U       ~                 uT  T  " 8F 	H	J!ixDzD|HxDf Fai*F+Fp  8 ,  T+  F
Z
H
JxDizD\HxDF *HYixD=AiFH  j   +  R  pFMHJ}D!ixDzD0(FHJaixDzD(F Fi2F3F(F *
HixDiF
  p*        R  HK{DHJHLXYhR# *@"kF' (BHxDwAH xD2zF=HxD<HxD:H;J1xDzD9HxD(6HxD(3HxD1HxD0HxD?@"kF (,HxD6,H xD09F'HxD'HxD%H%J1xDzD#HxDv+!HxDn+HxDeHxD`HxD\0 R         :   )      RR  R  8R      w   l  t)  ^  d  Q  Q  7F
MHJ}D!ixDzD*(F Fai%(F0HixD
"i
L (HxD  > (     P    8F
¹H!ixDMHJ}DaixDzD(F Fip(F0+	HixDi`  8V  <(     O  F
	HixD)HYixDAi=   vV  LO  ^K0BFF [JBZܐB@TWK) (UJBTHB>ЃB@9QKBQJB@A   )@$" F)FkF (HHxDyGHxD +rBHxDi$")FkF (>HxD= FiF\! (V7HxDP   +M +F(")FkFi (-HxD9,H xD  Ft'HxD  :"HxD(")FkFD (H xD  FRHxD	! #HxD)F 0p(
pp$@p@
p$@p(@2P  0'  P  '  S  O    N  |O    N  <O  8F H!ixDMHJ}DaixDzD(FHJixDzDa(F Fi,  8<O  %     "   8F
Mi}D(FoHJaixDzD6(Fei F(F^ Fi  8l%     F
RitHxDD Fai  %  KJ{D-OFXF  h; )@ @ *OE?H!FxDlM`ZYhQ& սNYhB8>F >FH%FxDJDDzD8BHFBӲHxD."PF)F	- (ڭH%xD!	 )کHxD	PFXFHJxD(zDHxD5B %HxD%H!FxDHAFxD     IyD@ ) ?~HPXhQ%P{HXhB8=F =FIO HyDKJxD{D zD|"PF!F	 (
ozHObzIxDyDP* )a@8 
sHObsIOxDyD<EnHObmIxDyD0BECiHObhIxDyD"	 !@" z* @!FFHF EXObD@FIFOb@FOI@FObyD4BIoHHObHIxDyDf DHxDDHxDCHxDCK" ! {D&!2FQF! o7HObxD4IyDx (? ;hB  .= :  ,L  r$      K  L       GL  wK  -L    L  N %     xN K  PN J  6N "  N nJ  M J  M I  8"      DK  *M "M 8 !F#F !HixD6(F8*H  pFi%F i FHxD Fi*FH!jxD0Fp    L  K-AFJ{DFXAe"B3h5 ̀2A],aEiܱKB ܘB@ J B @3B@Ab BDA^,aEvб_@恺Ac#B ZB@܁0Ay"BSBxAh"B\а Ag#B@ȁ;Ai"B Aw B@A| BCBY@A}"B 𺀆HB@	9  +@𮁃HxD:  )@"8FAF ({HxD{HxDw
 * 0vHxD"AF (rH xD{9 ( w0kHxDm"8FAF (gHxDG9 ( _0aHxDU"8FAF (]HxD/9 + F WHxD<"8FAFj (RHxD9 * . MHxD$"8FAFR (HHxD +  BHxD
"AF9 (>H#xD  *@"8FAF
" (3HxD
# 0HxD ( ܀ *HxD"8FAF
  (()  "H*0xD +@"AF
 (5HxD rsHq@n H  |H  .  ^H    ,H    G  1  G  G  G  J  fG  M  $G  b  F  /  F  CHxD^BHxDZAHBJxD
zDe@HxDM"8F
 (:H
xDZ@!#6H ##xD#.HH"AFo (*HAFxDE&H EExDXE	9  HxDH"8FAFD (H !xD
9#HxDAF5 3hB>6D  [E           E    ~E    NE  xGF xGF  xGF  xGF           Android    
  |,	  @	`	
8T4
	  p?$$%%%&d&
'')`+,, -3|4 	  4$66	  :;\<<<=.=X=  =>70>|>8???@ABlCCDFF Gl  DGHIIJ	4K.pN8PlP0  zP4  PPP Q   HQlQlQQ  Q4R  TR@S?STUXUVV  WWW0YY@Z[\  \\\]  ]^^_l  _p  _`l  <`p  ``t  `x  `|  `  `  a  8a  \ab  btb  b  bbb|  ccc$ddTeX  beefff<  f(ghjjtkl  (l  Lll@m`m   mmno,ppq@qsts  sstduv(x$yy\zlzzz4{P||P  }8}P}D  l}(~@  H~~~Ht0|? ,,\X  t|ԊL$hHԕ|ȗ(L@  lv<  `,(  D,  \0  tܜ4H  `  |l   ?#\  Dh  Į 4и  0йld  \ļ  ܼ  ̽  t|  8x  Xt  h`  4(d\|    H "|  p4l  h,H      $ x  ($\  0
<5                         /                                                                                                                                                                                                                                                                                                                    usage: strace [-CdDffhiqrtttTvVxx] [-a column] [-e expr] ... [-o file]
              [-p pid] ... [-s strsize] [-u username] [-E var=val] ...
              [command [arg ...]]
   or: strace -c [-D] [-e expr] ... [-O overhead] [-S sortby] [-E var=val] ...
              [command [arg ...]]
-c -- count time, calls, and errors for each syscall and report summary
-C -- like -c but also print regular output while processes are running
-f -- follow forks, -ff -- with output into separate files
-F -- attempt to follow vforks, -h -- print help message
-i -- print instruction pointer at time of syscall
-q -- suppress messages about attaching, detaching, etc.
-r -- print relative timestamp, -t -- absolute timestamp, -tt -- with usecs
-T -- print time spent in each syscall, -V -- print version
-v -- verbose mode: print unabbreviated argv, stat, termio[s], etc. args
-x -- print non-ascii strings in hex, -xx -- print all strings in hex
-a column -- alignment COLUMN for printing syscall results (default %d)
-e expr -- a qualifying expression: option=[!]all or option=[!]val1[,val2]...
   options: trace, abbrev, verbose, raw, signal, read, or write
-o file -- send trace output to FILE instead of stderr
-O overhead -- set overhead for tracing syscalls to OVERHEAD usecs
-p pid -- trace process with process id PID, may be repeated
-D -- run tracer process as a detached grandchild, not as parent
-s strsize -- limit length of print strings to STRSIZE chars (default %d)
-S sortby -- sort syscall counts by: time, calls, name, nothing (default %s)
-u username -- run command as username handling setuid and/or setgid
-E var=val -- put var=val in the environment for command
-E var -- remove var from the environment for command
 time %s: setreuid: %s
 %s: fcntl F_GETFD: %s
 %s: fcntl F_SETFD: %s
 PANIC: pid %u not suspended
 Process %u resumed
 w %s: can't fopen '%s': %s
 %.512s.%u detach: ptrace(PTRACE_DETACH, ...) detach: checking sanity detach: stopping child detach: waiting Process %u detached
 <writing to pipe> %*s   <unavailable>) = ? <unavailable>
  <unfinished ...>
 %-5d  [pid %5u]  %6ld.%06ld  %ld.%06ld  %T %s.%06ld  %s  
 cleanup: looking at pid %u
  <unfinished ...> %s: expand_tcbtab: out of memory
 %s: bug in alloc_tcb
 strace: exec PATH %s: %s: command not found
 strace: fork strace: ptrace(PTRACE_TRACEME, ...) initgroups setregid setreuid PANIC: handle_group_exit: %d leader %d
 strace Process %u attached with %u threads - interrupt to quit
 Process %u attached - interrupt to quit
 (core dumped)  %s: out of memory
 trace=all abbrev=all verbose=all signal=all %s: -c and -C are mutually exclusive options
 abbrev=none %s -- version %s
 4.6 %s: Invalid process id: %s
 %s: I'm sorry, I can't let you do that, Dave.
 %s: invalid -s argument: %s
 +cCdfFhiqrtTvVxzDa:e:o:O:p:s:S:u:E: %s: -D and -p are mutually exclusive options
 %s: (-c or -C) and -ff are mutually exclusive options
 %s: you must be root to use the -u option
 %s: cannot find user `%s'
 test_ptrace_setoptions ptrace_setoptions = %#x
 %s: piping the output and -ff are mutually exclusive options
 %s: pipe: %s
 %s: fork: %s
 %s: dup2: %s
 /bin/sh sh -c %s: execl: %s: %s
 /proc/%d/task attach: ptrace(PTRACE_ATTACH, ...) strace: clone wait4 failed: %s
 strace: wait  [wait(%#x) = %u]
 Process %d attached (waiting for parent)
 unknown pid: %u
 +++ killed by %s %s+++ pid %u exited with %d
 PANIC: attached pid %u exited with %d
  <unfinished ... exit status %d>
 PANIC: pid %u not stopped
 pid %u stopped, [%s]
 %s: handle_ptrace_event: ptrace cannot get new child's pid
 ---   (%s)%s --- --- %s by %s%s --- Process %u suspended
 Test for options supported by PTRACE_SETOPTIONS failed, giving up using this feature.
 ,  %s%#lx SIG all none out of memory
 , file ipc network process signal desc strace: invalid %s `%s'
 syscall: unknown syscall trap 0x%08lx
 pid %d stray syscall entry
 pid %d stray syscall exit
 <...  ???? syscall_%lu %s  resumed>  )  = ? <unavailable> = -1 (errno %ld) = %#lx = ? ERESTARTSYS (To be restarted) = ? ERESTARTNOINTR (To be restarted) = ? ERESTARTNOHAND (To be restarted) = ? ERESTART_RESTARTBLOCK (To be restarted) = -1  E??? (errno %ld) %s (%s) ERRNO_%ld (%s)  (%s) = ? = %#lo = %lu = %ld = %#llx = %#llo = %llu = %lld  <%ld.%06ld> syscall_%lu( %s( ????( ERRNO_0 EPERM ENOENT ESRCH EINTR EIO ENXIO E2BIG ENOEXEC EBADF ECHILD EAGAIN ENOMEM EACCES EFAULT ENOTBLK EBUSY EEXIST EXDEV ENODEV ENOTDIR EISDIR EINVAL ENFILE EMFILE ENOTTY ETXTBSY EFBIG ENOSPC ESPIPE EROFS EMLINK EPIPE EDOM ERANGE EDEADLK ENAMETOOLONG ENOLCK ENOSYS ENOTEMPTY ELOOP ERRNO_41 ENOMSG EIDRM ECHRNG EL2NSYNC EL3HLT EL3RST ELNRNG EUNATCH ENOCSI EL2HLT EBADE EBADR EXFULL ENOANO EBADRQC EBADSLT ERRNO_58 EBFONT ENOSTR ENODATA ETIME ENOSR ENONET ENOPKG EREMOTE ENOLINK EADV ESRMNT ECOMM EPROTO EMULTIHOP EDOTDOT EBADMSG EOVERFLOW ENOTUNIQ EBADFD EREMCHG ELIBACC ELIBBAD ELIBSCN ELIBMAX ELIBEXEC EILSEQ ERESTART ESTRPIPE EUSERS ENOTSOCK EDESTADDRREQ EMSGSIZE EPROTOTYPE ENOPROTOOPT EPROTONOSUPPORT ESOCKTNOSUPPORT EOPNOTSUPP EPFNOSUPPORT EAFNOSUPPORT EADDRINUSE EADDRNOTAVAIL ENETDOWN ENETUNREACH ENETRESET ECONNABORTED ECONNRESET ENOBUFS EISCONN ENOTCONN ESHUTDOWN ETOOMANYREFS ETIMEDOUT ECONNREFUSED EHOSTDOWN EHOSTUNREACH EALREADY EINPROGRESS ESTALE EUCLEAN ENOTNAM ENAVAIL EISNAM EREMOTEIO EDQUOT ENOMEDIUM EMEDIUMTYPE ECANCELED ENOKEY EKEYEXPIRED EKEYREVOKED EKEYREJECTED EOWNERDEAD ENOTRECOVERABLE ERFKILL ERRNO_133 ERRNO_134 ERRNO_135 ERRNO_136 ERRNO_137 ERRNO_138 ERRNO_139 ERRNO_140 ERRNO_141 ERRNO_142 ERRNO_143 ERRNO_144 ERRNO_145 ERRNO_146 ERRNO_147 ERRNO_148 ERRNO_149 ERRNO_150 ERRNO_151 ERRNO_152 ERRNO_153 ERRNO_154 ERRNO_155 ERRNO_156 ERRNO_157 ERRNO_158 ERRNO_159 ERRNO_160 ERRNO_161 ERRNO_162 ERRNO_163 ERRNO_164 ERRNO_165 ERRNO_166 ERRNO_167 ERRNO_168 ERRNO_169 ERRNO_170 ERRNO_171 ERRNO_172 ERRNO_173 ERRNO_174 ERRNO_175 ERRNO_176 ERRNO_177 ERRNO_178 ERRNO_179 ERRNO_180 ERRNO_181 ERRNO_182 ERRNO_183 ERRNO_184 ERRNO_185 ERRNO_186 ERRNO_187 ERRNO_188 ERRNO_189 ERRNO_190 ERRNO_191 ERRNO_192 ERRNO_193 ERRNO_194 ERRNO_195 ERRNO_196 ERRNO_197 ERRNO_198 ERRNO_199 ERRNO_200 ERRNO_201 ERRNO_202 ERRNO_203 ERRNO_204 ERRNO_205 ERRNO_206 ERRNO_207 ERRNO_208 ERRNO_209 ERRNO_210 ERRNO_211 ERRNO_212 ERRNO_213 ERRNO_214 ERRNO_215 ERRNO_216 ERRNO_217 ERRNO_218 ERRNO_219 ERRNO_220 ERRNO_221 ERRNO_222 ERRNO_223 ERRNO_224 ERRNO_225 ERRNO_226 ERRNO_227 ERRNO_228 ERRNO_229 ERRNO_230 ERRNO_231 ERRNO_232 ERRNO_233 ERRNO_234 ERRNO_235 ERRNO_236 ERRNO_237 ERRNO_238 ERRNO_239 ERRNO_240 ERRNO_241 ERRNO_242 ERRNO_243 ERRNO_244 ERRNO_245 ERRNO_246 ERRNO_247 ERRNO_248 ERRNO_249 ERRNO_250 ERRNO_251 ERRNO_252 ERRNO_253 ERRNO_254 ERRNO_255 ERRNO_256 ERRNO_257 ERRNO_258 ERRNO_259 ERRNO_260 ERRNO_261 ERRNO_262 ERRNO_263 ERRNO_264 ERRNO_265 ERRNO_266 ERRNO_267 ERRNO_268 ERRNO_269 ERRNO_270 ERRNO_271 ERRNO_272 ERRNO_273 ERRNO_274 ERRNO_275 ERRNO_276 ERRNO_277 ERRNO_278 ERRNO_279 ERRNO_280 ERRNO_281 ERRNO_282 ERRNO_283 ERRNO_284 ERRNO_285 ERRNO_286 ERRNO_287 ERRNO_288 ERRNO_289 ERRNO_290 ERRNO_291 ERRNO_292 ERRNO_293 ERRNO_294 ERRNO_295 ERRNO_296 ERRNO_297 ERRNO_298 ERRNO_299 ERRNO_300 ERRNO_301 ERRNO_302 ERRNO_303 ERRNO_304 ERRNO_305 ERRNO_306 ERRNO_307 ERRNO_308 ERRNO_309 ERRNO_310 ERRNO_311 ERRNO_312 ERRNO_313 ERRNO_314 ERRNO_315 ERRNO_316 ERRNO_317 ERRNO_318 ERRNO_319 ERRNO_320 ERRNO_321 ERRNO_322 ERRNO_323 ERRNO_324 ERRNO_325 ERRNO_326 ERRNO_327 ERRNO_328 ERRNO_329 ERRNO_330 ERRNO_331 ERRNO_332 ERRNO_333 ERRNO_334 ERRNO_335 ERRNO_336 ERRNO_337 ERRNO_338 ERRNO_339 ERRNO_340 ERRNO_341 ERRNO_342 ERRNO_343 ERRNO_344 ERRNO_345 ERRNO_346 ERRNO_347 ERRNO_348 ERRNO_349 ERRNO_350 ERRNO_351 ERRNO_352 ERRNO_353 ERRNO_354 ERRNO_355 ERRNO_356 ERRNO_357 ERRNO_358 ERRNO_359 ERRNO_360 ERRNO_361 ERRNO_362 ERRNO_363 ERRNO_364 ERRNO_365 ERRNO_366 ERRNO_367 ERRNO_368 ERRNO_369 ERRNO_370 ERRNO_371 ERRNO_372 ERRNO_373 ERRNO_374 ERRNO_375 ERRNO_376 ERRNO_377 ERRNO_378 ERRNO_379 ERRNO_380 ERRNO_381 ERRNO_382 ERRNO_383 ERRNO_384 ERRNO_385 ERRNO_386 ERRNO_387 ERRNO_388 ERRNO_389 ERRNO_390 ERRNO_391 ERRNO_392 ERRNO_393 ERRNO_394 ERRNO_395 ERRNO_396 ERRNO_397 ERRNO_398 ERRNO_399 ERRNO_400 ERRNO_401 ERRNO_402 ERRNO_403 ERRNO_404 ERRNO_405 ERRNO_406 ERRNO_407 ERRNO_408 ERRNO_409 ERRNO_410 ERRNO_411 ERRNO_412 ERRNO_413 ERRNO_414 ERRNO_415 ERRNO_416 ERRNO_417 ERRNO_418 ERRNO_419 ERRNO_420 ERRNO_421 ERRNO_422 ERRNO_423 ERRNO_424 ERRNO_425 ERRNO_426 ERRNO_427 ERRNO_428 ERRNO_429 ERRNO_430 ERRNO_431 ERRNO_432 ERRNO_433 ERRNO_434 ERRNO_435 ERRNO_436 ERRNO_437 ERRNO_438 ERRNO_439 ERRNO_440 ERRNO_441 ERRNO_442 ERRNO_443 ERRNO_444 ERRNO_445 ERRNO_446 ERRNO_447 ERRNO_448 ERRNO_449 ERRNO_450 ERRNO_451 ERRNO_452 ERRNO_453 ERRNO_454 ERRNO_455 ERRNO_456 ERRNO_457 ERRNO_458 ERRNO_459 ERRNO_460 ERRNO_461 ERRNO_462 ERRNO_463 ERRNO_464 ERRNO_465 ERRNO_466 ERRNO_467 ERRNO_468 ERRNO_469 ERRNO_470 ERRNO_471 ERRNO_472 ERRNO_473 ERRNO_474 ERRNO_475 ERRNO_476 ERRNO_477 ERRNO_478 ERRNO_479 ERRNO_480 ERRNO_481 ERRNO_482 ERRNO_483 ERRNO_484 ERRNO_485 ERRNO_486 ERRNO_487 ERRNO_488 ERRNO_489 ERRNO_490 ERRNO_491 ERRNO_492 ERRNO_493 ERRNO_494 ERRNO_495 ERRNO_496 ERRNO_497 ERRNO_498 ERRNO_499 ERRNO_500 ERRNO_501 ERRNO_502 ERRNO_503 ERRNO_504 ERRNO_505 ERRNO_506 ERRNO_507 ERRNO_508 ERRNO_509 ERRNO_510 ERRNO_511 ERESTARTSYS ERESTARTNOINTR ERESTARTNOHAND ENOIOCTLCMD ERESTART_RESTARTBLOCK ERRNO_517 ERRNO_518 ERRNO_519 ERRNO_520 EBADHANDLE ENOTSYNC EBADCOOKIE ENOTSUPP ETOOSMALL ESERVERFAULT EBADTYPE EJUKEBOX EIOCBQUEUED EIOCBRETRY restart_syscall exit fork read write open close waitpid creat link unlink execve chdir mknod chmod lchown break oldstat lseek getpid mount oldumount setuid getuid stime ptrace alarm oldfstat pause utime stty gtty access nice ftime sync kill rename mkdir rmdir dup pipe times prof brk setgid getgid geteuid getegid acct umount lock ioctl fcntl mpx setpgid ulimit oldolduname umask chroot ustat dup2 getppid getpgrp setsid sigaction siggetmask sigsetmask sigsuspend sigpending sethostname setrlimit old_getrlimit getrusage gettimeofday settimeofday getgroups setgroups oldselect symlink oldlstat readlink uselib swapon reboot readdir old_mmap munmap truncate ftruncate fchmod fchown getpriority setpriority profil statfs fstatfs ioperm socketcall syslog setitimer getitimer stat lstat fstat olduname iopl vhangup idle syscall wait4 swapoff sysinfo fsync sigreturn clone setdomainname uname modify_ldt adjtimex mprotect sigprocmask create_module init_module delete_module get_kernel_syms quotactl getpgid fchdir bdflush sysfs personality afs_syscall setfsuid setfsgid _llseek getdents select flock msync readv writev getsid fdatasync _sysctl mlock munlock mlockall munlockall sched_setparam sched_getparam sched_setscheduler sched_getscheduler sched_yield sched_get_priority_max sched_get_priority_min sched_rr_get_interval nanosleep mremap setresuid getresuid vm86 query_module poll nfsservctl setresgid getresgid prctl rt_sigreturn rt_sigaction rt_sigprocmask rt_sigpending rt_sigtimedwait rt_sigqueueinfo rt_sigsuspend pread pwrite chown getcwd capget capset sigaltstack sendfile getpmsg putpmsg vfork getrlimit mmap2 truncate64 ftruncate64 stat64 lstat64 fstat64 lchown32 getuid32 getgid32 geteuid32 getegid32 setreuid32 setregid32 getgroups32 setgroups32 fchown32 setresuid32 getresuid32 setresgid32 getresgid32 chown32 setuid32 setgid32 setfsuid32 setfsgid32 getdents64 pivot_root mincore madvise fcntl64 SYS_222 SYS_223 gettid readahead setxattr lsetxattr fsetxattr getxattr lgetxattr fgetxattr listxattr llistxattr flistxattr removexattr lremovexattr fremovexattr tkill sendfile64 futex sched_setaffinity sched_getaffinity io_setup io_destroy io_getevents io_submit io_cancel exit_group lookup_dcookie epoll_create epoll_ctl epoll_wait remap_file_pages SYS_254 SYS_255 set_tid_address timer_create timer_settime timer_gettime timer_getoverrun timer_delete clock_settime clock_gettime clock_getres clock_nanosleep statfs64 fstatfs64 tgkill utimes fadvise64_64 pciconfig_iobase pciconfig_read pciconfig_write mq_open mq_unlink mq_timedsend mq_timedreceive mq_notify mq_getsetattr waitid socket bind connect listen accept getsockname getpeername socketpair send sendto recv recvfrom shutdown setsockopt getsockopt sendmsg recvmsg semop semget semctl msgsnd msgrcv msgget msgctl shmat shmdt shmget shmctl add_key request_key keyctl semtimedop vserver ioprio_set ioprio_get inotify_init inotify_add_watch inotify_rm_watch mbind set_mempolicy get_mempolicy openat mkdirat mknodat fchownat futimesat newfstatat unlinkat renameat linkat symlinkat readlinkat fchmodat faccessat pselect6 ppoll unshare set_robust_list get_robust_list splice SYS_341 tee vmsplice move_pages getcpu epoll_pwait kexec_load utimensat signalfd timerfd eventfd fallocate timerfd_settime timerfd_gettime signalfd4 eventfd2 epoll_create1 dup3 pipe2 inotify_init1 preadv pwritev rt_tgsigqueueinfo perf_event_open recvmmsg accept4 fanotify_init fanotify_mark prlimit64 SYS_370 SYS_371 SYS_372 SYS_373 SYS_374 SYS_375 SYS_376 SYS_377 SYS_378 SYS_379 SYS_380 SYS_381 SYS_382 SYS_383 SYS_384 SYS_385 SYS_386 SYS_387 SYS_388 SYS_389 SYS_390 SYS_391 SYS_392 SYS_393 SYS_394 SYS_395 SYS_396 SYS_397 SYS_398 SYS_399 SYS_0 breakpoint cacheflush usr26 usr32 set_tls trace system call t abbrev a verbose v raw x signals s fault faults m descriptor reads r writes strace: out of memory for call counts
 calls name nothing invalid sortby: `%s'
 System call usage summary for %u bit mode:
 strace: out of memory for call summary
 %6.6s %11.11s %11.11s %9.9s %9.9s %s
 % time seconds usecs/call errors %6.6s %11.11s %11.11s %9.9s %9.9s %-16.16s
 ------------------------- %d %6.2f %11.6f %11ld %9d %9.9s %s
 %6.6s %11.6f %11.11s %9d %9.9s %s
 100.00 total \x%02x \%03o \%o SYSCALL DETACH CONT strace: ptrace(PTRACE_%s,1,%d): %s
 %#x /* %s */ |%s |%#x | %#x %s%s %s%#x  /* %s */ 0 %ld %lu ptrace: umoven  | %05x   %02x %s |
  * %lu bytes in buffer %d
 NULL %#lx [ ] umovestr ... upeek: ptrace(PTRACE_PEEKUSER,%d,%lu,0) [????????]  [%08lx]  PANIC: TCB already set in pid %u
 PANIC: setbpt for syscall %ld on %u???
 { EPOLL??? , {u32=%u, u64=%llu}} %lx {} ? }  %#lx , %ld, %ld { <decode error: unsupported wordsize %d> } {...} {type= F_??? , whence= SEEK_??? , start=%ld, len=%ld , pid=%lu} , start=%lld, len=%lld   in except out , NULL , %#lx , [?] , [ Timeout %s%s [%u  %u %sleft  FD_??? , %ld DN_??? flags  LOCK_??? O_??? [...] EPOLL_CTL_??? %ld,  0x%0lx {%lu} %lu, %ld,  %lu,  {...},  %ld, %ld, %ld,  , { , %lu} F_DUPFD F_GETFD F_SETFD F_GETFL F_SETFL F_GETLK F_SETLK F_SETLKW F_GETOWN F_SETOWN F_SETSIG F_GETSIG F_SETLK64 F_SETLKW64 F_GETLK64 F_SETLEASE F_GETLEASE F_NOTIFY FD_CLOEXEC DN_ACCESS DN_MODIFY DN_CREATE DN_DELETE DN_RENAME DN_ATTRIB DN_MULTISHOT F_RDLCK F_WRLCK F_UNLCK F_EXLCK F_SHLCK SEEK_SET SEEK_CUR SEEK_END LOCK_SH LOCK_EX LOCK_NB LOCK_UN EPOLL_CTL_ADD EPOLL_CTL_MOD EPOLL_CTL_DEL EPOLLIN EPOLLPRI EPOLLOUT EPOLLRDNORM EPOLLRDBAND EPOLLWRNORM EPOLLWRBAND EPOLLMSG EPOLLERR EPOLLHUP EPOLLONESHOT EPOLLET AT_FDCWD,  , 0x%lx, %ld , "%s", %ld 0123456789abcdef {d_ino=%ld,  d_name= |S_ISUID |S_ISGID |S_ISVTX %#o %s%s%s%s |%#o , %lu "%s" {f_type=%s, f_bsize=%llu, f_blocks=%llu, f_bfree=%llu,  f_bavail=%llu, f_files=%llu, f_ffree=%llu, f_fsid={%d, %d} , f_namelen=%lu {f_type=%s, f_bsize=%lu, f_blocks=%lu, f_bfree=%lu,  f_bavail=%lu, f_files=%lu, f_ffree=%lu, f_fsid={%d, %d} %02d/%02d/%02d-%02d:%02d:%02d , %s , makedev(%lu, %lu) {st_dev=makedev(%lu, %lu), st_ino=%lu, st_mode=%s,  st_nlink=%lu, st_uid=%lu, st_gid=%lu,  st_blksize=%lu,  st_blocks=%lu,  {st_mode=%s,  st_rdev=makedev(%lu, %lu),  st_size=%lu,  st_atime=%s,  st_mtime=%s,  st_ctime=%s ...} {st_dev=makedev(%lu, %lu), st_ino=%llu, st_mode=%s,  st_size=%llu,  , %#lo ?_OK %#lo , %llu,  , %lld,  %#lx,  [%llu],  %lld %llu,  %lld,  , %llu %llu AT_??? , %lu,  {???} [?, ?] [%s,  %s] %#lx, %lu %s{d_ino=%lu, d_off=%lu,  d_reclen=%u, d_name="%s"} /* d_reclen == 0, problem here */ /* %u entries */ %s{d_ino=%llu, d_off=%lld,  d_type= DT_??? XATTR_??? , %p, %lu , %ld,  POSIX_FADV_??? IN_??? %#lo,  O_CREAT O_EXCL O_NOCTTY O_TRUNC O_APPEND O_NONBLOCK O_SYNC O_ASYNC O_DSYNC O_DIRECT O_LARGEFILE O_DIRECTORY O_NOFOLLOW O_NOATIME O_CLOEXEC FASYNC O_RDONLY O_WRONLY O_RDWR O_ACCMODE F_OK R_OK W_OK X_OK S_IFREG S_IFSOCK S_IFIFO S_IFLNK S_IFDIR S_IFBLK S_IFCHR AT_SYMLINK_NOFOLLOW CODA_SUPER_MAGIC COH_SUPER_MAGIC DEVFS_SUPER_MAGIC DEVPTS_SUPER_MAGIC EFS_SUPER_MAGIC EXT2_OLD_SUPER_MAGIC EXT2_SUPER_MAGIC EXT_SUPER_MAGIC HPFS_SUPER_MAGIC ISOFS_SUPER_MAGIC MINIX_SUPER_MAGIC MINIX_SUPER_MAGIC2 MINIX2_SUPER_MAGIC MINIX2_SUPER_MAGIC2 MSDOS_SUPER_MAGIC NCP_SUPER_MAGIC NFS_SUPER_MAGIC PROC_SUPER_MAGIC QNX4_SUPER_MAGIC REISERFS_SUPER_MAGIC SHMFS_SUPER_MAGIC SMB_SUPER_MAGIC SYSV2_SUPER_MAGIC SYSV4_SUPER_MAGIC UFS_MAGIC UFS_CIGAM XENIX_SUPER_MAGIC XIAFS_SUPER_MAGIC SYSFS_MAGIC AT_REMOVEDIR DT_UNKNOWN DT_FIFO DT_CHR DT_DIR DT_BLK DT_REG DT_LNK DT_SOCK DT_WHT XATTR_CREATE XATTR_REPLACE POSIX_FADV_NORMAL POSIX_FADV_RANDOM POSIX_FADV_SEQUENTIAL POSIX_FADV_WILLNEED POSIX_FADV_DONTNEED POSIX_FADV_NOREUSE IN_ACCESS IN_MODIFY IN_ATTRIB IN_CLOSE_WRITE IN_CLOSE_NOWRITE IN_OPEN IN_MOVED_FROM IN_MOVED_TO IN_CREATE IN_DELETE IN_DELETE_SELF IN_MOVE_SELF IN_UNMOUNT IN_Q_OVERFLOW IN_IGNORED IN_ONLYDIR IN_DONT_FOLLOW IN_MASK_ADD IN_ISDIR IN_ONESHOT IN_NONBLOCK IN_CLOEXEC {%u, %d,  SEM_??? , ... }, %lu IPC_PRIVATE IPC_64| MSG_??? %d,  {%lu,  %#lx, %lu,  , %lu, %ld,  SHM_??? , %lx IPC_CREAT IPC_EXCL IPC_NOWAIT IPC_RMID IPC_SET IPC_STAT IPC_INFO MSG_STAT MSG_INFO MSG_NOERROR MSG_EXCEPT SEM_UNDO SEM_STAT SEM_INFO GETPID GETVAL GETALL GETNCNT GETZCNT SETVAL SETALL SHM_STAT SHM_INFO SHM_LOCK SHM_UNLOCK SHM_REMAP SHM_RDONLY SHM_RND [] [%lu] [%llu] %#llx  or %s linux/fs.h FIBMAP FIGETBSZ linux/fd.h FDGETPRM FDGETMAXERRS FDGETDRVTYP FDGETDRVPRM FDGETDRVSTAT FDPOLLDRVSTAT FDGETFDCSTAT FDWERRORGET FDCLRPRM FDSETPRM FDDEFPRM FDMSGON FDMSGOFF FDFMTBEG FDFMTTRK FDFMTEND FDSETEMSGTRESH FDFLUSH FDSETMAXERRS FDRESET FDWERRORCLR FDRAWCMD FDTWADDLE FDEJECT FDSETDRVPRM linux/umsdos_fs.h UMSDOS_READDIR_DOS UMSDOS_UNLINK_DOS UMSDOS_RMDIR_DOS UMSDOS_STAT_DOS UMSDOS_CREAT_EMD UMSDOS_UNLINK_EMD UMSDOS_READDIR_EMD UMSDOS_GETVERSION UMSDOS_INIT_EMD UMSDOS_DOS_SETUP UMSDOS_RENAME_DOS BLKROSET BLKROGET BLKRRPART BLKGETSIZE BLKFLSBUF BLKRASET BLKRAGET BLKFRASET BLKFRAGET BLKSECTSET BLKSECTGET BLKSSZGET linux/blkpg.h BLKPG linux/elevator.h BLKELVGET BLKELVSET BLKGETLASTSECT BLKSETLASTSECT BLKBSZGET BLKBSZSET BLKGETSIZE64 scsi/sg.h SG_SET_TIMEOUT SG_GET_TIMEOUT SG_EMULATED_HOST SG_SET_TRANSFORM SG_GET_TRANSFORM SG_GET_COMMAND_Q SG_SET_COMMAND_Q SG_GET_RESERVED_SIZE SG_SET_RESERVED_SIZE SG_GET_SCSI_ID SG_SET_FORCE_LOW_DMA SG_GET_LOW_DMA SG_SET_FORCE_PACK_ID SG_GET_PACK_ID SG_GET_NUM_WAITING SG_SET_DEBUG SG_GET_SG_TABLESIZE SG_GET_VERSION_NUM SG_NEXT_CMD_LEN SG_SCSI_RESET SG_IO SG_GET_REQUEST_TABLE SG_SET_KEEP_ORPHAN SG_GET_KEEP_ORPHAN SG_GET_ACCESS_COUNT linux/i2o.h BLKI2OGRSTRAT BLKI2OGWSTRAT BLKI2OSRSTRAT BLKI2OSWSTRAT asm/processor.h MICROCODE_IOCFREE linux/radeonfb.h FBIO_RADEON_GET_MIRROR FBIO_RADEON_SET_MIRROR linux/agpgart.h AGPIOC_INFO AGPIOC_ACQUIRE linux/apm_bios.h APM_IOC_STANDBY AGPIOC_RELEASE APM_IOC_SUSPEND AGPIOC_SETUP AGPIOC_RESERVE AGPIOC_PROTECT AGPIOC_ALLOCATE AGPIOC_DEALLOCATE AGPIOC_BIND AGPIOC_UNBIND linux/pmu.h PMU_IOC_SLEEP linux/cciss_ioctl.h CCISS_GETPCIINFO PMU_IOC_GET_BACKLIGHT CCISS_GETINTINFO PMU_IOC_SET_BACKLIGHT CCISS_SETINTINFO PMU_IOC_GET_MODEL CCISS_GETNODENAME PMU_IOC_HAS_ADB CCISS_SETNODENAME PMU_IOC_CAN_SLEEP CCISS_GETHEARTBEAT PMU_IOC_GRAB_BACKLIGHT CCISS_GETBUSTYPES CCISS_GETFIRMVER CCISS_GETDRIVVER CCISS_REVALIDVOLS CCISS_PASSTHRU CCISS_DEREGDISK CCISS_REGNEWDISK CCISS_REGNEWD CCISS_RESCANDISK CCISS_GETLUNINFO CCISS_BIG_PASSTHRU linux/soundcard.h SNDCTL_COPR_RESET linux/capi.h CAPI_REGISTER SNDCTL_COPR_LOAD SNDCTL_COPR_RDATA SNDCTL_COPR_RCODE SNDCTL_COPR_WDATA SNDCTL_COPR_WCODE CAPI_GET_MANUFACTURER SNDCTL_COPR_RUN CAPI_GET_VERSION SNDCTL_COPR_HALT CAPI_GET_SERIAL SNDCTL_COPR_SENDMSG CAPI_GET_PROFILE SNDCTL_COPR_RCVMSG CAPI_MANUFACTURER_CMD CAPI_GET_ERRCODE CAPI_INSTALLED CAPI_GET_FLAGS CAPI_SET_FLAGS CAPI_CLR_FLAGS CAPI_NCCI_OPENCOUNT CAPI_NCCI_GETUNIT linux/input.h EVIOCGVERSION EVIOCGID EVIOCGREP EVIOCGKEYCODE EVIOCGKEY EVIOCGBUS EVIOCRMFF EVIOCSGAIN EVIOCSAUTOCENTER EVIOCGEFFECTS EVIOCGRAB linux/fb.h FBIOGET_VSCREENINFO FBIOPUT_VSCREENINFO FBIOGET_FSCREENINFO FBIOGETCMAP FBIOPUTCMAP FBIOPAN_DISPLAY FBIOGET_FCURSORINFO FBIOGET_VCURSORINFO FBIO_CURSOR FBIOPUT_VCURSORINFO FBIOGET_CURSORSTATE FBIOPUT_CURSORSTATE FBIOGET_CON2FBMAP FBIOPUT_CON2FBMAP FBIOBLANK FBIOGET_VBLANK FBIO_ALLOC FBIO_FREE FBIOGET_GLYPH FBIOGET_HWCINFO FBIOPUT_MODEINFO FBIOGET_DISPINFO linux/matroxfb.h FBIO_WAITFORVSYNC linux/hiddev.h HIDIOCGVERSION HIDIOCAPPLICATION HIDIOCGDEVINFO HIDIOCGSTRING HIDIOCINITREPORT HIDIOCGREPORT HIDIOCSREPORT HIDIOCGREPORTINFO HIDIOCGFIELDINFO HIDIOCGUSAGE HIDIOCSUSAGE HIDIOCGUCODE HIDIOCGFLAG HIDIOCSFLAG HIDIOCGCOLLECTIONINDEX sound/emu10k1.h SNDRV_EMU10K1_IOCTL_INFO sound/sb16_csp.h SNDRV_SB_CSP_IOCTL_INFO HIDIOCGCOLLECTIONINFO SNDRV_EMU10K1_IOCTL_CODE_POKE SNDRV_SB_CSP_IOCTL_LOAD_CODE SNDRV_EMU10K1_IOCTL_CODE_PEEK SNDRV_SB_CSP_IOCTL_UNLOAD_CODE HIDIOCGUSAGES SNDRV_SB_CSP_IOCTL_START HIDIOCSUSAGES SNDRV_SB_CSP_IOCTL_STOP SNDRV_SB_CSP_IOCTL_PAUSE SNDRV_SB_CSP_IOCTL_RESTART sound/asound_fm.h SNDRV_DM_FM_IOCTL_INFO SNDRV_EMU10K1_IOCTL_TRAM_SETUP SNDRV_DM_FM_IOCTL_RESET SNDRV_EMU10K1_IOCTL_TRAM_POKE SNDRV_DM_FM_IOCTL_PLAY_NOTE SNDRV_EMU10K1_IOCTL_TRAM_PEEK SNDRV_DM_FM_IOCTL_SET_VOICE SNDRV_DM_FM_IOCTL_SET_PARAMS SNDRV_DM_FM_IOCTL_SET_MODE SNDRV_DM_FM_IOCTL_SET_CONNECTION SNDRV_EMU10K1_IOCTL_PCM_POKE SNDRV_EMU10K1_IOCTL_PCM_PEEK sound/hdsp.h SNDRV_HDSP_IOCTL_GET_PEAK_RMS SNDRV_HDSP_IOCTL_GET_CONFIG_INFO SNDRV_HDSP_IOCTL_UPLOAD_FIRMWARE SNDRV_HDSP_IOCTL_GET_VERSION SNDRV_HDSP_IOCTL_GET_MIXER SNDRV_HDSP_IOCTL_GET_9632_AEB SNDRV_EMU10K1_IOCTL_STOP SNDRV_EMU10K1_IOCTL_CONTINUE SNDRV_EMU10K1_IOCTL_ZERO_TRAM_COUNTER SNDRV_EMU10K1_IOCTL_SINGLE_STEP SNDRV_EMU10K1_IOCTL_DBG_READ linux/isdn.h IIOCNETAIF IIOCNETDIF IIOCNETSCF IIOCNETGCF IIOCNETANM IIOCNETDNM IIOCNETGNM IIOCGETSET IIOCSETSET IIOCSETVER IIOCNETHUP IIOCSETGST IIOCSETBRJ IIOCSIGPRF IIOCGETPRF IIOCSETPRF IIOCGETMAP IIOCSETMAP IIOCNETASL IIOCNETDIL IIOCGETCPS IIOCGETDVR IIOCNETLCR IIOCNETDWRSET IIOCNETALN IIOCNETDLN IIOCNETGPN IIOCDBGVAR IIOCDRVCTL linux/kd.h KIOCSOUND KDMKTONE KDGETLED KDSETLED KDGKBTYPE KDADDIO KDDELIO KDENABIO KDDISABIO KDSETMODE KDGETMODE KDMAPDISP KDUNMAPDISP GIO_SCRNMAP PIO_SCRNMAP KDGKBMODE KDSKBMODE KDGKBENT KDSKBENT KDGKBSENT KDSKBSENT KDGKBDIACR KDSKBDIACR KDGETKEYCODE KDSETKEYCODE KDSIGACCEPT KDKBDREP GIO_FONT PIO_FONT KDGKBMETA KDSKBMETA KDGKBLED KDSKBLED GIO_UNIMAP PIO_UNIMAP PIO_UNIMAPCLR GIO_UNISCRNMAP PIO_UNISCRNMAP GIO_FONTX PIO_FONTX PIO_FONTRESET GIO_CMAP PIO_CMAP KDFONTOP asm/mtrr.h MTRRIOC_ADD_ENTRY MTRRIOC_SET_ENTRY MTRRIOC_DEL_ENTRY MTRRIOC_GET_ENTRY MTRRIOC_KILL_ENTRY MTRRIOC_ADD_PAGE_ENTRY MTRRIOC_SET_PAGE_ENTRY MTRRIOC_DEL_PAGE_ENTRY MTRRIOC_GET_PAGE_ENTRY MTRRIOC_KILL_PAGE_ENTRY SOUND_MIXER_INFO SOUND_MIXER_ACCESS SOUND_MIXER_AGC SOUND_MIXER_3DSE SOUND_MIXER_PRIVATE1 SOUND_MIXER_PRIVATE2 SOUND_MIXER_PRIVATE3 SOUND_MIXER_PRIVATE4 SOUND_MIXER_PRIVATE5 SOUND_MIXER_GETLEVELS SOUND_MIXER_SETLEVELS OSS_GETVERSION linux/ticable.h IOCTL_TIUSB_TIMEOUT IOCTL_TIUSB_RESET_DEVICE IOCTL_TIUSB_RESET_PIPES SNDCTL_DSP_RESET SNDCTL_DSP_SYNC SNDCTL_DSP_SPEED SOUND_PCM_READ_RATE SNDCTL_DSP_STEREO SNDCTL_DSP_GETBLKSIZE SNDCTL_DSP_SETFMT SOUND_PCM_READ_BITS SOUND_PCM_READ_CHANNELS SOUND_PCM_READ_FILTER SNDCTL_DSP_POST SNDCTL_DSP_SUBDIVIDE SNDCTL_DSP_SETFRAGMENT SNDCTL_DSP_GETFMTS SNDCTL_DSP_GETOSPACE SNDCTL_DSP_GETISPACE SNDCTL_DSP_NONBLOCK SNDCTL_DSP_GETCAPS SNDCTL_DSP_GETTRIGGER SNDCTL_DSP_GETIPTR SNDCTL_DSP_GETOPTR SNDCTL_DSP_MAPINBUF SNDCTL_DSP_MAPOUTBUF SNDCTL_DSP_SETSYNCRO SNDCTL_DSP_SETDUPLEX SNDCTL_DSP_GETODELAY SNDCTL_DSP_PROFILE SNDCTL_DSP_GETCHANNELMASK SNDCTL_DSP_BIND_CHANNEL SNDCTL_DSP_SETSPDIF SNDCTL_DSP_GETSPDIF sound/sscape_ioctl.h SND_SSCAPE_LOAD_BOOTB SND_SSCAPE_LOAD_MCODE SNDCTL_SEQ_RESET SNDCTL_SEQ_SYNC SNDCTL_SYNTH_INFO SNDCTL_SEQ_CTRLRATE SNDCTL_SEQ_GETOUTCOUNT SNDCTL_SEQ_GETINCOUNT SNDCTL_SEQ_PERCMODE SNDCTL_FM_LOAD_INSTR SNDCTL_SEQ_TESTMIDI SNDCTL_SEQ_RESETSAMPLES SNDCTL_SEQ_NRSYNTHS SNDCTL_SEQ_NRMIDIS SNDCTL_MIDI_INFO SNDCTL_SEQ_THRESHOLD SNDCTL_SYNTH_MEMAVL SNDCTL_FM_4OP_ENABLE SNDCTL_SEQ_PANIC SNDCTL_SEQ_OUTOFBAND SNDCTL_SEQ_GETTIME SNDCTL_SYNTH_ID SNDCTL_SYNTH_CONTROL SNDCTL_SYNTH_REMOVESAMPLE linux/random.h RNDGETENTCNT RNDADDTOENTCNT RNDGETPOOL RNDADDENTROPY RNDZAPENTCNT RNDCLEARPOOL sound/asequencer.h SNDRV_SEQ_IOCTL_PVERSION linux/cdrom.h CDROMPAUSE SNDRV_SEQ_IOCTL_CLIENT_ID CDROMRESUME SNDRV_SEQ_IOCTL_SYSTEM_INFO CDROMPLAYMSF SNDRV_SEQ_IOCTL_RUNNING_MODE CDROMPLAYTRKIND CDROMREADTOCHDR CDROMREADTOCENTRY CDROMSTOP CDROMSTART CDROMEJECT CDROMVOLCTRL CDROMSUBCHNL CDROMREADMODE2 CDROMREADMODE1 CDROMREADAUDIO CDROMEJECT_SW CDROMMULTISESSION SNDRV_SEQ_IOCTL_GET_CLIENT_INFO CDROM_GET_MCN SNDRV_SEQ_IOCTL_SET_CLIENT_INFO CDROMRESET CDROMVOLREAD CDROMREADRAW CDROMREADCOOKED CDROMSEEK CDROMPLAYBLK CDROMREADALL CDROMCLOSETRAY CDROMGETSPINDOWN CDROMSETSPINDOWN CDROM_SET_OPTIONS SNDRV_SEQ_IOCTL_CREATE_PORT CDROM_CLEAR_OPTIONS SNDRV_SEQ_IOCTL_DELETE_PORT CDROM_SELECT_SPEED SNDRV_SEQ_IOCTL_GET_PORT_INFO CDROM_SELECT_DISC SNDRV_SEQ_IOCTL_SET_PORT_INFO CDROM_MEDIA_CHANGED CDROM_DRIVE_STATUS CDROM_DISC_STATUS CDROM_CHANGER_NSLOTS CDROM_LOCKDOOR CDROM_DEBUG SNDRV_SEQ_IOCTL_SUBSCRIBE_PORT CDROM_GET_CAPABILITY SNDRV_SEQ_IOCTL_UNSUBSCRIBE_PORT SNDRV_SEQ_IOCTL_CREATE_QUEUE SNDRV_SEQ_IOCTL_DELETE_QUEUE SNDRV_SEQ_IOCTL_GET_QUEUE_INFO SNDRV_SEQ_IOCTL_SET_QUEUE_INFO SNDRV_SEQ_IOCTL_GET_NAMED_QUEUE SNDRV_SEQ_IOCTL_GET_QUEUE_STATUS SNDRV_SEQ_IOCTL_GET_QUEUE_TEMPO SNDRV_SEQ_IOCTL_SET_QUEUE_TEMPO SNDRV_SEQ_IOCTL_GET_QUEUE_OWNER SNDRV_SEQ_IOCTL_SET_QUEUE_OWNER SNDRV_SEQ_IOCTL_GET_QUEUE_TIMER SNDRV_SEQ_IOCTL_SET_QUEUE_TIMER SNDRV_SEQ_IOCTL_GET_QUEUE_CLIENT SNDRV_SEQ_IOCTL_SET_QUEUE_CLIENT SNDRV_SEQ_IOCTL_GET_CLIENT_POOL SNDRV_SEQ_IOCTL_SET_CLIENT_POOL SNDRV_SEQ_IOCTL_REMOVE_EVENTS SNDRV_SEQ_IOCTL_QUERY_SUBS SNDRV_SEQ_IOCTL_GET_SUBSCRIPTION SNDRV_SEQ_IOCTL_QUERY_NEXT_CLIENT SNDRV_SEQ_IOCTL_QUERY_NEXT_PORT SNDRV_SEQ_IOCTL_GET_QUEUE_SYNC SNDRV_SEQ_IOCTL_SET_QUEUE_SYNC scsi/scsi_ioctl.h SCSI_IOCTL_DOORLOCK SCSI_IOCTL_DOORUNLOCK CDROMAUDIOBUFSIZ scsi/scsi.h SCSI_IOCTL_GET_IDLUN SCSI_IOCTL_TAGGED_ENABLE SCSI_IOCTL_TAGGED_DISABLE SCSI_IOCTL_PROBE_HOST SCSI_IOCTL_GET_BUS_NUMBER SCSI_IOCTL_GET_PCI DVD_READ_STRUCT DVD_WRITE_STRUCT DVD_AUTH CDROM_SEND_PACKET CDROM_NEXT_WRITABLE CDROM_LAST_WRITTEN SNDCTL_TMR_TIMEBASE asm/ioctls.h TCGETS SNDCTL_TMR_START TCSETS SNDCTL_TMR_STOP TCSETSW SNDCTL_TMR_CONTINUE TCSETSF SNDCTL_TMR_TEMPO TCGETA SNDCTL_TMR_SOURCE TCSETA SNDCTL_TMR_METRONOME TCSETAW SNDCTL_TMR_SELECT TCSETAF TCSBRK TCXONC TCFLSH TIOCEXCL TIOCNXCL TIOCSCTTY TIOCGPGRP TIOCSPGRP TIOCOUTQ TIOCSTI TIOCGWINSZ TIOCSWINSZ TIOCMGET TIOCMBIS TIOCMBIC TIOCMSET TIOCGSOFTCAR TIOCSSOFTCAR FIONREAD TIOCLINUX TIOCCONS TIOCGSERIAL TIOCSSERIAL TIOCPKT FIONBIO TIOCNOTTY TIOCSETD TIOCGETD TCSBRKP TIOCTTYGSTRUCT TIOCSBRK TIOCCBRK TIOCGSID TIOCGPTN TIOCSPTLCK TIOCGDEV FIONCLEX FIOCLEX FIOASYNC TIOCSERCONFIG TIOCSERGWILD TIOCSERSWILD TIOCGLCKTRMIOS TIOCSLCKTRMIOS TIOCSERGSTRUCT TIOCSERGETLSR TIOCSERGETMULTI TIOCSERSETMULTI TIOCMIWAIT TIOCGICOUNT TIOCGHAYESESP TIOCSHAYESESP FIOQSIZE linux/if_tun.h TUNSETNOCSUM TUNSETDEBUG TUNSETIFF TUNSETPERSIST TUNSETOWNER linux/usbdevice_fs.h USBDEVFS_CONTROL linux/uinput.h UI_DEV_CREATE UI_DEV_DESTROY USBDEVFS_BULK USBDEVFS_RESETEP USBDEVFS_SETINTERFACE USBDEVFS_SETCONFIGURATION USBDEVFS_GETDRIVER USBDEVFS_SUBMITURB USBDEVFS_DISCARDURB USBDEVFS_REAPURB USBDEVFS_REAPURBNDELAY USBDEVFS_DISCSIGNAL USBDEVFS_CLAIMINTERFACE USBDEVFS_RELEASEINTERFACE USBDEVFS_CONNECTINFO USBDEVFS_IOCTL USBDEVFS_HUB_PORTINFO USBDEVFS_RESET USBDEVFS_CLEAR_HALT USBDEVFS_DISCONNECT USBDEVFS_CONNECT UI_SET_EVBIT UI_SET_KEYBIT UI_SET_RELBIT UI_SET_ABSBIT UI_SET_MSCBIT UI_SET_LEDBIT UI_SET_SNDBIT UI_SET_FFBIT linux/videodev2.h VIDIOC_QUERYCAP linux/vt.h VT_OPENQRY VIDIOC_RESERVED VT_GETMODE VIDIOC_ENUM_FMT VT_SETMODE VT_GETSTATE VIDIOC_G_FMT VT_SENDSIG VIDIOC_S_FMT VT_RELDISP VIDIOC_G_COMP VT_ACTIVATE VIDIOC_S_COMP VT_WAITACTIVE VIDIOC_REQBUFS VT_DISALLOCATE VIDIOC_QUERYBUF VT_RESIZE VIDIOC_G_FBUF VT_RESIZEX VIDIOC_S_FBUF VT_LOCKSWITCH VT_UNLOCKSWITCH VIDIOC_OVERLAY VIDIOC_QBUF VIDIOC_DQBUF VIDIOC_STREAMON VIDIOC_STREAMOFF VIDIOC_G_PARM VIDIOC_S_PARM VIDIOC_G_STD VIDIOC_S_STD VIDIOC_ENUMSTD VIDIOC_ENUMINPUT MATROXFB_G_TVOCTRL VIDIOC_G_CTRL MATROXFB_S_TVOCTRL VIDIOC_S_CTRL VIDIOC_G_TUNER VIDIOC_S_TUNER VIDIOC_G_AUDIO VIDIOC_S_AUDIO MATROXFB_TVOQUERYCTRL VIDIOC_QUERYCTRL VIDIOC_QUERYMENU VIDIOC_G_INPUT VIDIOC_S_INPUT VIDIOC_G_OUTPUT VIDIOC_S_OUTPUT VIDIOC_ENUMOUTPUT VIDIOC_G_AUDOUT VIDIOC_S_AUDOUT VIDIOC_G_MODULATOR VIDIOC_S_MODULATOR VIDIOC_G_FREQUENCY VIDIOC_S_FREQUENCY VIDIOC_CROPCAP VIDIOC_G_CROP VIDIOC_S_CROP VIDIOC_G_JPEGCOMP VIDIOC_S_JPEGCOMP VIDIOC_QUERYSTD VIDIOC_TRY_FMT VIDIOC_ENUMAUDIO VIDIOC_ENUMAUDOUT VIDIOC_G_PRIORITY VIDIOC_S_PRIORITY linux/watchdog.h WDIOC_GETSUPPORT WDIOC_GETSTATUS WDIOC_GETBOOTSTATUS WDIOC_GETTEMP WDIOC_SETOPTIONS WDIOC_KEEPALIVE WDIOC_SETTIMEOUT WDIOC_GETTIMEOUT linux/ite_gpio.h ITE_GPIO_IN ITE_GPIO_OUT ITE_GPIO_INT_CTRL ITE_GPIO_IN_STATUS ITE_GPIO_OUT_STATUS ITE_GPIO_GEN_CTRL ITE_GPIO_INT_WAIT linux/sonet.h SONET_GETSTAT SONET_GETSTATZ SONET_SETDIAG SONET_CLRDIAG SONET_GETDIAG SONET_SETFRAMING SONET_GETFRAMING SONET_GETFRSENSE linux/atm_idt77105.h IDT77105_GETSTAT IDT77105_GETSTATZ linux/atmdev.h ATM_GETSTAT ATM_GETSTATZ ATM_GETLOOP ATM_SETLOOP ATM_QUERYLOOP linux/atm_eni.h ENI_MEMDUMP linux/atm_he.h HE_GET_REG linux/atm_nicstar.h NS_GETPSTAT linux/atm_zatm.h ZATM_GETPOOL NS_SETBUFLEV ZATM_GETPOOLZ NS_ADJBUFLEV ZATM_SETPOOL ZATM_GETTHIST ENI_SETMULT linux/atm_tcp.h SIOCSIFATMTCP ATM_GETLINKRATE ATM_GETNAMES ATM_GETTYPE ATM_GETESI ATM_GETADDR ATM_RSTADDR ATM_ADDADDR ATM_DELADDR ATM_GETCIRANGE ATM_SETCIRANGE ATM_SETESI ATM_SETESIF ATMTCP_CREATE ATMTCP_REMOVE linux/atmbr2684.h BR2684_SETFILT linux/atmlec.h ATMLEC_CTRL ATMLEC_DATA ATMLEC_MCAST linux/atmmpc.h ATMMPC_CTRL ATMMPC_DATA linux/atmclip.h SIOCMKCLIP linux/atmarp.h ATMARPD_CTRL ATMARP_MKIP ATMARP_SETENTRY ATMARP_ENCAP linux/atmsvc.h ATMSIGD_CTRL ATM_SETSC ATM_SETBACKEND ATM_NEWBACKENDIF linux/coda.h CIOC_KERNEL_VERSION linux/comstats.h COM_GETPORTSTATS COM_CLRPORTSTATS COM_GETBRDSTATS COM_READPORT COM_READBOARD COM_READPANEL linux/devfs_fs.h DEVFSDIOC_GET_PROTO_REV linux/video_decoder.h DECODER_GET_CAPABILITIES DECODER_GET_STATUS DEVFSDIOC_SET_EVENT_MASK DECODER_SET_NORM DEVFSDIOC_RELEASE_EVENT_QUEUE DECODER_SET_INPUT DEVFSDIOC_SET_DEBUG_MASK DECODER_SET_OUTPUT DECODER_ENABLE_OUTPUT DECODER_SET_PICTURE DECODER_DUMP linux/video_encoder.h ENCODER_GET_CAPABILITIES ENCODER_SET_NORM ENCODER_SET_INPUT ENCODER_SET_OUTPUT ENCODER_ENABLE_OUTPUT linux/ext2_fs.h EXT2_IOC_GETFLAGS EXT2_IOC_SETFLAGS linux/ext3_fs.h EXT3_IOC_GETVERSION EXT3_IOC_SETVERSION EXT3_IOC_WAIT_FOR_READONLY linux/usb_gadgetfs.h GADGETFS_FIFO_STATUS GADGETFS_FIFO_FLUSH GADGETFS_CLEAR_HALT linux/i2o-dev.h I2OGETIOPS I2OHRTGET I2OLCTGET I2OPARMSET I2OPARMGET I2OSWDL I2OSWUL I2OSWDEL I2OVALIDATE I2OHTML I2OEVTREG I2OEVTGET linux/ipmi.h IPMICTL_RECEIVE_MSG_TRUNC IPMICTL_RECEIVE_MSG IPMICTL_SEND_COMMAND IPMICTL_REGISTER_FOR_CMD IPMICTL_UNREGISTER_FOR_CMD IPMICTL_SET_GETS_EVENTS_CMD IPMICTL_SET_MY_ADDRESS_CMD IPMICTL_GET_MY_ADDRESS_CMD IPMICTL_SET_MY_LUN_CMD IPMICTL_GET_MY_LUN_CMD linux/i8k.h I8K_BIOS_VERSION I8K_MACHINE_ID I8K_POWER_STATUS I8K_FN_STATUS I8K_GET_TEMP I8K_GET_SPEED I8K_GET_FAN I8K_SET_FAN linux/joystick.h JSIOCGVERSION JSIOCGAXES JSIOCGBUTTONS JSIOCSCORR JSIOCGCORR JSIOCSAXMAP JSIOCGAXMAP JSIOCSBTNMAP JSIOCGBTNMAP linux/udf_fs_i.h UDF_GETEASIZE UDF_GETEABLOCK UDF_GETVOLIDENT UDF_RELOCATE_BLOCKS linux/synclink.h MGSL_IOCSPARAMS SNDCTL_MIDI_PRETIME MGSL_IOCGPARAMS linux/mtio.h MTIOCTOP SNDCTL_MIDI_MPUMODE MGSL_IOCSTXIDLE MTIOCGET SNDCTL_MIDI_MPUCMD MGSL_IOCGTXIDLE MTIOCPOS MGSL_IOCTXENABLE MTIOCGETCONFIG MGSL_IOCRXENABLE MTIOCSETCONFIG MGSL_IOCTXABORT MTIOCRDFTSEG MGSL_IOCGSTATS MTIOCWRFTSEG MGSL_IOCWAITEVENT MTIOCVOLINFO MGSL_IOCLOOPTXDONE MTIOCGETSIZE MGSL_IOCSIF MTIOCFTFORMAT MGSL_IOCGIF MTIOCFTCMD MGSL_IOCCLRMODCOUNT linux/zftape.h MTIOC_ZFTAPE_GETBLKSZ linux/ncp_fs.h NCP_IOC_NCPREQUEST NCP_IOC_GETMOUNTUID NCP_IOC_CONN_LOGGED_IN NCP_IOC_GET_FS_INFO NCP_IOC_SIGN_INIT NCP_IOC_SIGN_WANTED NCP_IOC_LOCKUNLOCK NCP_IOC_GETROOT NCP_IOC_GETOBJECTNAME NCP_IOC_GETPRIVATEDATA NCP_IOC_GETCHARSETS NCP_IOC_GETDENTRYTTL MATROXFB_GET_OUTPUT_CONNECTION linux/sisfb.h SISFB_GET_INFO MATROXFB_GET_AVAILABLE_OUTPUTS MATROXFB_GET_OUTPUT_MODE MATROXFB_GET_ALL_OUTPUTS linux/rtc.h RTC_AIE_ON RTC_AIE_OFF RTC_UIE_ON RTC_UIE_OFF RTC_PIE_ON RTC_PIE_OFF RTC_ALM_SET RTC_ALM_READ RTC_RD_TIME RTC_SET_TIME RTC_IRQP_READ RTC_IRQP_SET RTC_EPOCH_READ RTC_EPOCH_SET RTC_WIE_ON RTC_WKALM_SET RTC_WIE_OFF RTC_WKALM_RD RTC_PLL_GET RTC_PLL_SET linux/nvram.h NVRAM_INIT NVRAM_SETCKS linux/intermezzo_idl.h IZO_IOC_DEVICE IZO_IOC_REINTKML IZO_IOC_GET_RCVD IZO_IOC_SET_IOCTL_UID IZO_IOC_GET_KML_SIZE IZO_IOC_PURGE_FILE_DATA IZO_IOC_CONNECT IZO_IOC_GO_FETCH_KML IZO_IOC_MARK IZO_IOC_CLEAR_FSET IZO_IOC_CLEAR_ALL_FSETS IZO_IOC_SET_FSET IZO_IOC_REVOKE_PERMIT IZO_IOC_SET_KMLSIZE IZO_IOC_CLIENT_MAKE_BRANCH IZO_IOC_SERVER_MAKE_BRANCH IZO_IOC_BRANCH_UNDO IZO_IOC_BRANCH_REDO IZO_IOC_SET_PID IZO_IOC_SET_CHANNEL IZO_IOC_GET_CHANNEL IZO_IOC_GET_FILEID IZO_IOC_ADJUST_LML IZO_IOC_SET_FILEID IZO_IOC_REPSTATUS linux/ppdev.h PPSETMODE PPRSTATUS PPRCONTROL PPWCONTROL PPRDATA PPWDATA PPCLAIM PPRELEASE PPYIELD PPFCONTROL PPEXCL PPDATADIR PPNEGOT PPWCTLONIRQ PPCLRIRQ PPSETPHASE PPGETTIME PPSETTIME PPGETMODES PPGETMODE PPGETPHASE PPGETFLAGS PPSETFLAGS IOCTL_TISER_DELAY IOCTL_TISER_TIMEOUT IOCTL_TIPAR_DELAY IOCTL_TIPAR_TIMEOUT linux/serio.h SPIOCSTYPE linux/videotext.h VTXIOCGETINFO VTXIOCCLRPAGE VTXIOCCLRFOUND VTXIOCPAGEREQ VTXIOCGETSTAT VTXIOCGETPAGE VTXIOCSTOPDAU VTXIOCPUTPAGE VTXIOCSETDISP VTXIOCPUTSTAT VTXIOCCLRCACHE VTXIOCSETVIRT linux/telephony.h PHONE_CAPABILITIES PHONE_CAPABILITIES_LIST PHONE_CAPABILITIES_CHECK PHONE_RING PHONE_HOOKSTATE PHONE_MAXRINGS PHONE_RING_CADENCE PHONE_RING_START PHONE_RING_STOP PHONE_REC_CODEC PHONE_REC_START PHONE_REC_STOP PHONE_REC_DEPTH PHONE_FRAME PHONE_REC_VOLUME PHONE_REC_LEVEL PHONE_PLAY_CODEC PHONE_PLAY_START PHONE_PLAY_STOP PHONE_PLAY_DEPTH PHONE_PLAY_VOLUME PHONE_PLAY_LEVEL PHONE_DTMF_READY PHONE_GET_DTMF PHONE_GET_DTMF_ASCII PHONE_DTMF_OOB PHONE_EXCEPTION PHONE_PLAY_TONE PHONE_SET_TONE_ON_TIME PHONE_SET_TONE_OFF_TIME PHONE_GET_TONE_ON_TIME PHONE_GET_TONE_OFF_TIME PHONE_GET_TONE_STATE PHONE_BUSY PHONE_RINGBACK PHONE_DIALTONE PHONE_CPT_STOP PHONE_PSTN_SET_STATE PHONE_PSTN_GET_STATE PHONE_WINK_DURATION PHONE_QUERY_CODEC PHONE_PSTN_LINETEST PHONE_VAD PHONE_WINK linux/ixjuser.h IXJCTL_DSP_RESET IXJCTL_CARDTYPE IXJCTL_SERIAL IXJCTL_DSP_TYPE IXJCTL_DSP_VERSION IXJCTL_DSP_IDLE IXJCTL_TESTRAM IXJCTL_SET_FILTER IXJCTL_GET_FILTER_HIST IXJCTL_INIT_TONE IXJCTL_TONE_CADENCE IXJCTL_AEC_START IXJCTL_AEC_STOP IXJCTL_AEC_GET_LEVEL IXJCTL_SET_LED IXJCTL_MIXER IXJCTL_DAA_COEFF_SET IXJCTL_PORT IXJCTL_DAA_AGAIN IXJCTL_PSTN_LINETEST IXJCTL_CID IXJCTL_POTS_PSTN IXJCTL_FILTER_CADENCE IXJCTL_PLAY_CID IXJCTL_VMWI IXJCTL_CIDCW IXJCTL_VERSION PHONE_REC_VOLUME_LINEAR PHONE_PLAY_VOLUME_LINEAR IXJCTL_SET_FILTER_RAW IXJCTL_HZ IXJCTL_RATE IXJCTL_FRAMES_READ IXJCTL_FRAMES_WRITTEN IXJCTL_READ_WAIT IXJCTL_WRITE_WAIT IXJCTL_DRYBUFFER_READ IXJCTL_DRYBUFFER_CLEAR IXJCTL_DTMF_PRESCALE IXJCTL_SIGCTL IXJCTL_SC_RXG IXJCTL_SC_TXG IXJCTL_INTERCOM_START IXJCTL_INTERCOM_STOP TUNIOCGETINFO linux/msdos_fs.h VFAT_IOCTL_READDIR_BOTH TUNIOCRESET VFAT_IOCTL_READDIR_SHORT TUNIOCSETFREQ TUNIOCGETFREQ TUNIOCSETCHAN TUNIOCGETCHAN linux/cdk.h STL_BINTR STL_BSTART STL_BSTOP STL_BRESET STL_GETPFLAG STL_SETPFLAG linux/if_ppp.h PPPIOCGCHAN PPPIOCATTCHAN PPPIOCDISCONN PPPIOCCONNECT PPPIOCSMRRU PPPIOCDETACH PPPIOCATTACH PPPIOCNEWUNIT PPPIOCGIDLE PPPIOCSDEBUG PPPIOCGDEBUG PPPIOCSACTIVE PPPIOCSPASS PPPIOCSNPMODE PPPIOCGNPMODE PPPIOCSCOMPRESS PPPIOCXFERUNIT PPPIOCSXASYNCMAP PPPIOCGXASYNCMAP PPPIOCSMAXCID PPPIOCSMRU PPPIOCGMRU PPPIOCSRASYNCMAP PPPIOCGRASYNCMAP PPPIOCGUNIT PPPIOCSASYNCMAP PPPIOCGASYNCMAP PPPIOCSFLAGS linux/jffs.h JFFS_PRINT_HASH PPPIOCGFLAGS JFFS_PRINT_TREE JFFS_GET_STATUS linux/isdn_ppp.h PPPIOCGCALLINFO PPPIOCBUNDLE PPPIOCGMPFLAGS PPPIOCSMPFLAGS PPPIOCSMPMTU PPPIOCSMPMRU PPPIOCGCOMPRESSORS PPPIOCSCOMPRESSOR PPPIOCGIFNAME linux/toshiba.h TOSH_SMM linux/smb_fs.h SMB_IOC_GETMOUNTUID SMB_IOC_NEWCONN SMB_IOC_GETMOUNTUID32 linux/sonypi.h SONYPI_IOCGBRT EXT2_IOC_GETVERSION linux/videodev.h VIDIOCGCAP EXT2_IOC_SETVERSION SONYPI_IOCGBAT1CAP VIDIOCGCHAN SONYPI_IOCGBAT1REM VIDIOCSCHAN SONYPI_IOCGBAT2CAP VIDIOCGTUNER SONYPI_IOCGBAT2REM VIDIOCSTUNER VIDIOCGPICT SONYPI_IOCGBATFLAGS VIDIOCSPICT SONYPI_IOCGBLUE VIDIOCCAPTURE SONYPI_IOCSBLUE VIDIOCGWIN VIDIOCSWIN VIDIOCGFBUF VIDIOCSFBUF VIDIOCKEY VIDIOCGFREQ VIDIOCSFREQ VIDIOCGAUDIO VIDIOCSAUDIO VIDIOCSYNC VIDIOCMCAPTURE VIDIOCGMBUF VIDIOCGUNIT VIDIOCGCAPTURE VIDIOCSCAPTURE VIDIOCSPLAYMODE VIDIOCSWRITEMODE VIDIOCGPLAYINFO VIDIOCSMICROCODE VIDIOCGVBIFMT VIDIOCSVBIFMT linux/meye.h MEYEIOC_G_PARAMS MEYEIOC_S_PARAMS MEYEIOC_QBUF_CAPT MEYEIOC_SYNC MEYEIOC_STILLCAPT MEYEIOC_STILLJCAPT asm/sockios.h FIOSETOWN SIOCSPGRP FIOGETOWN SIOCGPGRP SIOCATMARK SIOCGSTAMP linux/sockios.h SIOCADDRT SIOCDELRT SIOCRTMSG SIOCGIFNAME SIOCSIFLINK SIOCGIFCONF SIOCGIFFLAGS SIOCSIFFLAGS SIOCGIFADDR SIOCSIFADDR SIOCGIFDSTADDR SIOCSIFDSTADDR SIOCGIFBRDADDR SIOCSIFBRDADDR SIOCGIFNETMASK SIOCSIFNETMASK SIOCGIFMETRIC SIOCSIFMETRIC SIOCGIFMEM SIOCSIFMEM SIOCGIFMTU SIOCSIFMTU SIOCSIFNAME SIOCSIFHWADDR SIOCGIFENCAP SIOCSIFENCAP SIOCGIFHWADDR SIOCGIFSLAVE SIOCSIFSLAVE SIOCADDMULTI SIOCDELMULTI SIOCGIFINDEX SIOCSIFPFLAGS SIOCGIFPFLAGS SIOCDIFADDR SIOCSIFHWBROADCAST SIOCGIFCOUNT SIOCGIFBR SIOCSIFBR SIOCGIFTXQLEN SIOCSIFTXQLEN SIOCGIFDIVERT SIOCSIFDIVERT SIOCETHTOOL SIOCGMIIPHY SIOCGMIIREG SIOCSMIIREG SIOCWANDEV SIOCDARP SIOCGARP SIOCSARP SIOCDRARP SIOCGRARP SIOCSRARP SIOCGIFMAP SIOCSIFMAP SIOCADDDLCI SIOCDELDLCI SIOCGIFVLAN SIOCSIFVLAN SIOCBONDENSLAVE SIOCBONDRELEASE SIOCBONDSETHWADDR SIOCBONDSLAVEINFOQUERY SIOCBONDINFOQUERY SIOCBONDCHANGEACTIVE SIOCPROTOPRIVATE linux/dn.h SIOCSNETADDR SIOCGNETADDR SIOCDEVPRIVATE linux/wireless.h SIOCSIWCOMMIT SIOCGIWNAME SIOCSIWNWID SIOCGIWNWID SIOCSIWFREQ SIOCGIWFREQ SIOCSIWMODE SIOCGIWMODE SIOCSIWSENS SIOCGIWSENS SIOCSIWRANGE SIOCGIWRANGE SIOCSIWPRIV SIOCGIWPRIV SIOCSIWSTATS SIOCGIWSTATS SIOCSIWSPY SIOCGIWSPY SIOCSIWTHRSPY SIOCGIWTHRSPY SIOCSIWAP SIOCGIWAP SIOCGIWAPLIST SIOCSIWSCAN SIOCGIWSCAN SIOCSIWESSID SIOCGIWESSID SIOCSIWNICKN SIOCGIWNICKN SIOCSIWRATE SIOCGIWRATE SIOCSIWRTS SIOCGIWRTS SIOCSIWFRAG SIOCGIWFRAG SIOCSIWTXPOW SIOCGIWTXPOW SIOCSIWRETRY SIOCGIWRETRY SIOCSIWENCODE SIOCGIWENCODE SIOCSIWPOWER SIOCGIWPOWER SIOCIWFIRSTPRIV SIOCIWLASTPRIV linux/auto_fs.h AUTOFS_IOC_READY AUTOFS_IOC_FAIL AUTOFS_IOC_CATATONIC AUTOFS_IOC_PROTOVER AUTOFS_IOC_SETTIMEOUT AUTOFS_IOC_EXPIRE linux/auto_fs4.h AUTOFS_IOC_EXPIRE_MULTI linux/nbd.h NBD_SET_SOCK NBD_SET_BLKSIZE NBD_SET_SIZE NBD_DO_IT NBD_CLEAR_SOCK NBD_CLEAR_QUE NBD_PRINT_DEBUG NBD_SET_SIZE_BLOCKS NBD_DISCONNECT linux/raw.h RAW_SETBIND RAW_GETBIND linux/if_pppox.h PPPOEIOCSFWD PPPOEIOCDFWD linux/reiserfs_fs.h REISERFS_IOC_UNPACK linux/dm-ioctl.h DM_VERSION DM_REMOVE_ALL DM_LIST_DEVICES DM_DEV_CREATE DM_DEV_REMOVE DM_DEV_RENAME DM_DEV_SUSPEND DM_DEV_STATUS DM_DEV_WAIT DM_TABLE_LOAD DM_TABLE_CLEAR DM_TABLE_DEPS DM_TABLE_STATUS DM_LIST_VERSIONS linux/lvm.h VG_CREATE_OLD VG_REMOVE VG_EXTEND VG_REDUCE VG_STATUS VG_STATUS_GET_COUNT VG_STATUS_GET_NAMELIST VG_SET_EXTENDABLE VG_RENAME VG_CREATE LV_CREATE LV_REMOVE LV_ACTIVATE LV_DEACTIVATE LV_EXTEND LV_REDUCE LV_STATUS_BYNAME LV_STATUS_BYINDEX LV_SET_ACCESS LV_SET_ALLOCATION LV_SET_STATUS LE_REMAP LV_SNAPSHOT_USE_RATE LV_STATUS_BYDEV LV_RENAME LV_BMAP PV_STATUS PV_CHANGE PV_FLUSH PE_LOCK_UNLOCK LVM_GET_IOP_VERSION LVM_RESET LVM_LOCK_LVM %#0*lx NULL,  PROT_??? MAP_??? , %#llx %#lx, %lu, %lu,  MREMAP_??? MADV_??? MCL_??? MS_??? 1 MPOL_??? , %#lx,  %ld, %lu,  ??? %p },  PROT_NONE PROT_READ PROT_WRITE PROT_EXEC PROT_SEM PROT_GROWSDOWN PROT_GROWSUP MAP_SHARED MAP_PRIVATE MAP_FIXED MAP_ANONYMOUS MAP_NORESERVE MAP_POPULATE MAP_NONBLOCK MAP_GROWSDOWN MAP_DENYWRITE MAP_EXECUTABLE MAP_FILE MAP_LOCKED MAP_ANON MAP_STACK MREMAP_MAYMOVE MREMAP_FIXED MADV_NORMAL MADV_RANDOM MADV_SEQUENTIAL MADV_WILLNEED MADV_DONTNEED MCL_CURRENT MCL_FUTURE MS_SYNC MS_ASYNC MS_INVALIDATE MPOL_DEFAULT MPOL_PREFERRED MPOL_BIND MPOL_INTERLEAVE MPOL_MF_STRICT MPOL_MF_MOVE MPOL_MF_MOVE_ALL MPOL_F_NODE MPOL_F_ADDR [%u, %u] SOCK_??? {sa_family= AF_??? path= path=@ sin_port=htons(%u), sin_addr=inet_addr("%s") sin6_port=htons(%u), inet_pton(AF_INET6, "%s", &sin6_addr), sin6_flowinfo=%u , sin6_scope_id=%u , sin6_scope_id=if_nametoindex("%s") sipx_port=htons(%u),  %08lx: %02x /[%02x] proto=%#04x, if%d, pkttype= , addr(%d)={%d,  pid=%d, groups=%08x sa_data= {msg_name(%d)= , msg_iov(%lu)= , msg_controllen=%lu , msg_control=%#lx , {cmsg_len=%u, cmsg_level= SOL_??? , cmsg_type= SCM_??? }} {pid=%ld, uid=%ld, gid=%ld}} , ...} , msg_flags= %#lx, NULL %u PF_??? IPPROTO_??? %ld, %lu %#lx, %lu, %lu, %#lx, %#lx , {...}, [?] , [%u] %#lx, %ld,  , %u} left  SHUT_??? , [...] , [%u, %u] SO_??? IP_??? IPV6_??? IPX_??? PACKET_??? TCP_??? SCTP_??? %#lx, %#lx {onoff=%d, linger=%d}, [%d] {pid=%ld, uid=%ld, gid=%ld}, [%d] {packets=%u, drops=%u}, [%d] , [%d] SOL_?? , {onoff=%d, linger=%d} , {block_size=%u, block_nr=%u, frame_size=%u, frame_nr=%u} RAW_??? ~( ICMP_??? ) AF_APPLETALK AF_ASH AF_ATMPVC AF_ATMSVC AF_AX25 AF_BLUETOOTH AF_BRIDGE AF_DECnet AF_ECONET AF_INET AF_INET6 AF_IPX AF_IRDA AF_KEY AF_UNIX AF_LOCAL AF_NETBEUI AF_NETLINK AF_NETROM AF_PACKET AF_PPPOX AF_ROSE AF_ROUTE AF_SECURITY AF_SNA AF_UNSPEC AF_WANPIPE AF_X25 PACKET_HOST PACKET_BROADCAST PACKET_MULTICAST PACKET_OTHERHOST PACKET_OUTGOING PACKET_LOOPBACK PACKET_FASTROUTE PF_APPLETALK PF_ASH PF_ATMPVC PF_ATMSVC PF_AX25 PF_BLUETOOTH PF_BRIDGE PF_DECnet PF_ECONET PF_INET PF_INET6 PF_IPX PF_IRDA PF_KEY PF_UNIX PF_LOCAL PF_NETBEUI PF_NETLINK PF_NETROM PF_PACKET PF_PPPOX PF_ROSE PF_ROUTE PF_SECURITY PF_SNA PF_UNSPEC PF_WANPIPE PF_X25 IPPROTO_IP IPPROTO_ICMP IPPROTO_TCP IPPROTO_UDP IPPROTO_IGMP IPPROTO_EGP IPPROTO_PUP IPPROTO_IDP IPPROTO_ROUTING IPPROTO_FRAGMENT IPPROTO_ICMPV6 IPPROTO_NONE IPPROTO_DSTOPTS IPPROTO_RAW IPPROTO_MAX SOCK_STREAM SOCK_DGRAM SOCK_RAW SOCK_RDM SOCK_SEQPACKET SOCK_PACKET MSG_OOB MSG_DONTROUTE MSG_PEEK MSG_CTRUNC MSG_EOR MSG_WAITALL MSG_TRUNC MSG_ERRQUEUE MSG_DONTWAIT MSG_CONFIRM MSG_PROBE MSG_FIN MSG_SYN MSG_RST MSG_NOSIGNAL MSG_MORE SOL_IP SOL_TCP SOL_UDP SOL_IPV6 SOL_ICMPV6 SOL_SCTP SOL_RAW SOL_IPX SOL_AX25 SOL_ATALK SOL_NETROM SOL_ROSE SOL_DECNET SOL_X25 SOL_PACKET SOL_ATM SOL_AAL SOL_IRDA SOL_NETBEUI SOL_LLC SOL_DCCP SOL_NETLINK SOL_TIPC SOL_SOCKET SCM_RIGHTS SCM_CREDENTIALS SHUT_RD SHUT_WR SHUT_RDWR SO_ACCEPTCONN SO_ATTACH_FILTER SO_BINDTODEVICE SO_BROADCAST SO_BSDCOMPAT SO_DEBUG SO_DETACH_FILTER SO_DONTROUTE SO_ERROR SO_KEEPALIVE SO_LINGER SO_NO_CHECK SO_OOBINLINE SO_PASSCRED SO_PEERCRED SO_PEERNAME SO_PEERSEC SO_PRIORITY SO_RCVBUF SO_RCVLOWAT SO_RCVTIMEO SO_REUSEADDR SO_SECURITY_AUTHENTICATION SO_SECURITY_ENCRYPTION_NETWORK SO_SECURITY_ENCRYPTION_TRANSPORT SO_SNDBUF SO_SNDLOWAT SO_SNDTIMEO SO_TIMESTAMP SO_TYPE IP_TOS IP_TTL IP_HDRINCL IP_OPTIONS IP_ROUTER_ALERT IP_RECVOPTS IP_RECVRETOPTS IP_RETOPTS IP_PKTINFO IP_PKTOPTIONS IP_MTU_DISCOVER IP_RECVERR IP_RECVTTL IP_RECVTOS IP_MTU IP_MULTICAST_IF IP_MULTICAST_TTL IP_MULTICAST_LOOP IP_ADD_MEMBERSHIP IP_DROP_MEMBERSHIP IP_MSFILTER MCAST_MSFILTER IP_FREEBIND IPV6_ADDRFORM IPV6_MTU IPV6_V6ONLY IPV6_PKTINFO IPV6_HOPLIMIT IPV6_RTHDR IPV6_HOPOPTS IPV6_DSTOPTS IPV6_FLOWINFO IPV6_UNICAST_HOPS IPV6_MULTICAST_HOPS IPV6_MULTICAST_LOOP IPV6_MULTICAST_IF IPV6_MTU_DISCOVER IPV6_RECVERR IPV6_FLOWINFO_SEND IPV6_ADD_MEMBERSHIP IPV6_DROP_MEMBERSHIP IPV6_ROUTER_ALERT IPX_TYPE PACKET_ADD_MEMBERSHIP PACKET_DROP_MEMBERSHIP PACKET_RECV_OUTPUT PACKET_RX_RING PACKET_STATISTICS PACKET_COPY_THRESH TCP_NODELAY TCP_MAXSEG TCP_CORK TCP_KEEPIDLE TCP_KEEPINTVL TCP_KEEPCNT TCP_SYNCNT TCP_LINGER2 TCP_DEFER_ACCEPT TCP_WINDOW_CLAMP TCP_INFO TCP_QUICKACK ICMP_FILTER ICMP_ECHOREPLY ICMP_DEST_UNREACH ICMP_SOURCE_QUENCH ICMP_REDIRECT ICMP_ECHO ICMP_TIME_EXCEEDED ICMP_PARAMETERPROB ICMP_TIMESTAMP ICMP_TIMESTAMPREPLY ICMP_INFO_REQUEST ICMP_INFO_REPLY ICMP_ADDRESS ICMP_ADDRESSREPLY , %s} %s... NOPRINT SIGBUS %x  && WCOREDUMP(s) [?] [{WIFSTOPPED(s) && WSTOPSIG(s) == %s} [{WIFSIGNALED(s) && WTERMSIG(s) == %s%s} [{WIFEXITED(s) && WEXITSTATUS(s) == %d} [%#x]  | %#x] W??? child_stack=%#lx,  flags= , parent_tidptr=%#lx , tls=%#lx , child_tidptr=%#lx PR_??? , {%u} _exit returned!
 %ld)  CLONE_??? [preattached child %d of %d in weird state!]
 Process %u resumed (parent %d ready)
 Process %d attached
 %#lx, %#lx, %#lx [%lu],  %lu, %lu , [/* %d var%s */] P_??? {sysname="%s", nodename="%s",  release="%s", version="%s",  machine="%s" , domainname="%s" {sys="%s", node="%s", ...} PTRACE_??? %s + %ld,  %s,  PTRACE_O_??? %p,  FUTEX_??? , %ld, %p , %ld, %p, %ld , %ld, %p, { FUTEX_OP_OPARG_SHIFT| FUTEX_OP_??? FUTEX_OP_CMP_??? , %ld} , %p SCHED_??? , { %d } { %d } %d, %#lx %d, { %d } [%u],  r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 fp ip sp lr pc cpsr offsetof(struct user, u_fpvalid) offsetof(struct user, u_tsize) offsetof(struct user, u_dsize) offsetof(struct user, u_ssize) offsetof(struct user, start_code) offsetof(struct user, start_stack) offsetof(struct user, signal) offsetof(struct user, reserved) offsetof(struct user, u_ar0) offsetof(struct user, magic) offsetof(struct user, u_comm) sizeof(struct user) PR_SET_PDEATHSIG PR_GET_PDEATHSIG PR_GET_DUMPABLE PR_SET_DUMPABLE PR_GET_UNALIGN PR_SET_UNALIGN PR_GET_KEEPCAPS PR_SET_KEEPCAPS PR_GET_FPEMU PR_SET_FPEMU PR_GET_FPEXC PR_SET_FPEXC PR_GET_TIMING PR_SET_TIMING PR_SET_NAME PR_GET_NAME PR_GET_ENDIAN PR_SET_ENDIAN PR_GET_SECCOMP PR_SET_SECCOMP PR_GET_TSC PR_SET_TSC PR_GET_SECUREBITS PR_SET_SECUREBITS CLONE_VM CLONE_FS CLONE_FILES CLONE_SIGHAND CLONE_IDLETASK CLONE_PTRACE CLONE_VFORK CLONE_PARENT CLONE_THREAD CLONE_NEWNS CLONE_SYSVSEM CLONE_SETTLS CLONE_PARENT_SETTID CLONE_CHILD_CLEARTID CLONE_UNTRACED CLONE_CHILD_SETTID CLONE_STOPPED CLONE_NEWUTS CLONE_NEWIPC CLONE_NEWUSER CLONE_NEWPID CLONE_NEWNET CLONE_IO WNOHANG WEXITED WSTOPPED WCONTINUED WNOWAIT __WCLONE __WALL __WNOTHREAD P_PID P_PGID P_ALL PTRACE_TRACEME PTRACE_PEEKTEXT PTRACE_PEEKDATA PTRACE_PEEKUSER PTRACE_POKETEXT PTRACE_POKEDATA PTRACE_POKEUSER PTRACE_CONT PTRACE_KILL PTRACE_SINGLESTEP PTRACE_ATTACH PTRACE_DETACH PTRACE_GETREGS PTRACE_SETREGS PTRACE_GETFPREGS PTRACE_SETFPREGS PTRACE_SETOPTIONS PTRACE_GETEVENTMSG PTRACE_GETSIGINFO PTRACE_SETSIGINFO PTRACE_SET_SYSCALL PTRACE_SYSCALL PTRACE_O_TRACESYSGOOD PTRACE_O_TRACEFORK PTRACE_O_TRACEVFORK PTRACE_O_TRACECLONE PTRACE_O_TRACEEXEC PTRACE_O_TRACEVFORKDONE PTRACE_O_TRACEEXIT FUTEX_WAIT FUTEX_WAKE FUTEX_FD FUTEX_REQUEUE FUTEX_CMP_REQUEUE FUTEX_WAKE_OP FUTEX_LOCK_PI FUTEX_UNLOCK_PI FUTEX_TRYLOCK_PI FUTEX_WAIT_BITSET FUTEX_WAKE_BITSET FUTEX_WAIT_REQUEUE_PI FUTEX_CMP_REQUEUE_PI FUTEX_WAIT_PRIVATE FUTEX_WAKE_PRIVATE FUTEX_FD_PRIVATE FUTEX_REQUEUE_PRIVATE FUTEX_CMP_REQUEUE_PRIVATE FUTEX_WAKE_OP_PRIVATE FUTEX_LOCK_PI_PRIVATE FUTEX_UNLOCK_PI_PRIVATE FUTEX_TRYLOCK_PI_PRIVATE FUTEX_WAIT_BITSET_PRIVATE FUTEX_WAKE_BITSET_PRIVATE FUTEX_WAIT_REQUEUE_PI_PRIVATE FUTEX_CMP_REQUEUE_PI_PRIVATE FUTEX_WAIT_BITSET|FUTEX_CLOCK_REALTIME FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME FUTEX_WAIT_REQUEUE_PI|FUTEX_CLOCK_REALTIME FUTEX_WAIT_REQUEUE_PI_PRIVATE|FUTEX_CLOCK_REALTIME FUTEX_OP_SET FUTEX_OP_ADD FUTEX_OP_OR FUTEX_OP_ANDN FUTEX_OP_XOR FUTEX_OP_CMP_EQ FUTEX_OP_CMP_NE FUTEX_OP_CMP_LT FUTEX_OP_CMP_LE FUTEX_OP_CMP_GT FUTEX_OP_CMP_GE SCHED_OTHER SCHED_RR SCHED_FIFO QM_??? %#lx, %lu, %#lx {address=%#lx, size=%lu, flags= MOD_??? , usecount=%lu},  %Zu  /* %Zu entries */  }, %Zu %s{name=%s, value=%lu} }, %Zd QM_MODULES QM_DEPS QM_REFS QM_SYMBOLS QM_INFO MOD_UNINITIALIZED MOD_RUNNING MOD_DELETED MOD_AUTOCLEAN MOD_VISITED MOD_USED_ONCE MOD_JUST_FREED {???} %#lx {bhardlimit=%llu,  bsoftlimit=%llu,  curspace=%llu,  ihardlimit=%llu,  isoftlimit=%llu,  curinodes=%llu,  btime=%llu,  itime=%llu,  valid= QIF_??? {bhardlimit=%u,  bsoftlimit=%u,  curblocks=%u,  ihardlimit=%u,  isoftlimit=%u,  curinodes=%u,  btime=%lu,  itime=%lu} {ihardlimit=%u,  bhardlimit=%u,  {version=%d,  XFS_???_QUOTA , fieldmask=%#x,  id=%u,  blk_hardlimit=%llu,  blk_softlimit=%llu,  ino_hardlimit=%llu,  ino_softlimit=%llu,  bcount=%llu,  icount=%llu,  itimer=%d,  btimer=%d,  iwarns=%u,  bwarns=%u,  rtbcount=%llu,  rtbtimer=%d,  rtbwarns=%u} QFMT_VFS_??? {bgrace=%llu,  igrace=%llu,  flags=%#x,  IIF_??? {bgrace=%u,  igrace=%u,  blocks=%u,  free_blk=%u,  free_entry=%u} {lookups=%u,  drops=%u,  reads=%u,  writes=%u,  cache_hits=%u,  allocated_dquots=%u,  free_dquots=%u,  syncs=%u} syncs=%u,  version=%u} XFS_QUOTA_??? , incoredqs=%u,  u_ino=%llu,  u_nblks=%llu,  u_nextents=%u,  g_ino=%llu,  g_nblks=%llu,  g_nextents=%u,  btimelimit=%d,  itimelimit=%d,  rtbtimelimit=%d,  bwarnlimit=%u,  iwarnlimit=%u} Q_??? ???QUOTA Q_V1_QUOTAON Q_V1_QUOTAOFF Q_V1_GETQUOTA Q_V1_SETQUOTA Q_V1_SETUSE Q_V1_SYNC Q_SETQLIM Q_V1_GETSTATS Q_V1_RSQUASH Q_V2_GETQUOTA Q_V2_SETQUOTA Q_V2_SETUSE Q_V2_GETINFO Q_V2_SETINFO Q_V2_SETGRACE Q_V2_SETFLAGS Q_V2_GETSTATS Q_SYNC Q_QUOTAON Q_QUOTAOFF Q_GETFMT Q_GETINFO Q_SETINFO Q_GETQUOTA Q_SETQUOTA Q_XQUOTAON Q_XQUOTAOFF Q_XGETQUOTA Q_XSETQLIM Q_XGETQSTAT Q_XQUOTARM Q_XQUOTASYNC USRQUOTA GRPQUOTA QFMT_VFS_OLD QFMT_VFS_V0 QIF_BLIMITS QIF_SPACE QIF_ILIMITS QIF_INODES QIF_BTIME QIF_ITIME XFS_USER_QUOTA XFS_PROJ_QUOTA XFS_GROUP_QUOTA IIF_BGRACE IIF_IGRACE IIF_FLAGS XFS_QUOTA_UDQ_ACCT XFS_QUOTA_UDQ_ENFD XFS_QUOTA_GDQ_ACCT XFS_QUOTA_GDQ_ENFD RLIM64_INFINITY %lld*1024 RLIMIT_??? {rlim_cur=%s,  rlim_max=%s} {ru_utime={%lu, %lu}, ru_stime={%lu, %lu},  ru_maxrss=%lu, ru_ixrss=%lu,  ru_idrss=%lu, ru_isrss=%lu,  ru_minflt=%lu, ru_majflt=%lu, ru_nswap=%lu,  ru_inblock=%lu, ru_oublock=%lu,  ru_msgsnd=%lu, ru_msgrcv=%lu,  ru_nsignals=%lu, ru_nvcsw=%lu, ru_nivcsw=%lu} {ru_utime={%lu, %lu}, ru_stime={%lu, %lu}, ...} RUSAGE_??? {uptime=%lu, loads=[%lu, %lu, %lu]  totalram=%lu, freeram=%lu,  sharedram=%lu, bufferram=%lu}  totalswap=%lu, freeswap=%lu, procs=%hu} PRIO_??? , %lu, %ld {tms_utime=%lu, tms_stime=%lu,  tms_cutime=%lu, tms_cstime=%lu} RLIMIT_AS RLIMIT_CORE RLIMIT_CPU RLIMIT_DATA RLIMIT_FSIZE RLIMIT_LOCKS RLIMIT_MEMLOCK RLIMIT_MSGQUEUE RLIMIT_NICE RLIMIT_NOFILE RLIMIT_NPROC RLIMIT_RSS RLIMIT_RTPRIO RLIMIT_SIGPENDING RLIMIT_STACK RUSAGE_SELF RUSAGE_CHILDREN RUSAGE_BOTH PRIO_PROCESS PRIO_PGRP PRIO_USER {ss_sp=%#lx, ss_flags= SS_??? , ss_size=%lu}  %s RT_%u SIGRT_%ld {si_signo= , si_code=%s , si_code=%#x , si_errno=%d , si_errno=%s , si_pid=%lu, si_uid=%lu , si_value=%d , si_value={int=%u, ptr=%#lx} , si_pid=%ld, si_status= , si_utime=%lu, si_stime=%lu , si_addr=%#lx , si_band=%ld /proc/%d/status SigIgn:	 /proc/pid/status format error
 SigCgt:	 old mask  {SIG_ERR,  {SIG_DFL,  {SIG_IGN,  {%#lx,  SA_??? SIG_ERR SIG_DFL SIG_IGN mask now  mask  SIG_??? %ld, %s %ld, %ld, %s , %d <... resuming interrupted call ...> SIG_0 SIGHUP SIGINT SIGQUIT SIGILL SIGTRAP SIGABRT SIGFPE SIGKILL SIGUSR1 SIGSEGV SIGUSR2 SIGPIPE SIGALRM SIGTERM SIGSTKFLT SIGCHLD SIGCONT SIGSTOP SIGTSTP SIGTTIN SIGTTOU SIGURG SIGXCPU SIGXFSZ SIGVTALRM SIGPROF SIGWINCH SIGIO SIGPWR SIGSYS SIGRTMIN SI_KERNEL SI_USER SI_QUEUE SI_TIMER SI_MESGQ SI_ASYNCIO SI_SIGIO SI_TKILL TRAP_BRKPT TRAP_TRACE CLD_EXITED CLD_KILLED CLD_DUMPED CLD_TRAPPED CLD_STOPPED CLD_CONTINUED POLL_IN POLL_OUT POLL_MSG POLL_ERR POLL_PRI POLL_HUP ILL_ILLOPC ILL_ILLOPN ILL_ILLADR ILL_ILLTRP ILL_PRVOPC ILL_PRVREG ILL_COPROC ILL_BADSTK FPE_INTDIV FPE_INTOVF FPE_FLTDIV FPE_FLTOVF FPE_FLTUND FPE_FLTRES FPE_FLTINV FPE_FLTSUB SEGV_MAPERR SEGV_ACCERR BUS_ADRALN BUS_ADRERR BUS_OBJERR SA_RESTORER SA_RESTART SA_NODEFER SA_RESETHAND SA_SIGINFO SA_ONSTACK SA_NOCLDSTOP SA_NOCLDWAIT SS_ONSTACK SS_DISABLE SIG_BLOCK SIG_UNBLOCK SIG_SETMASK ifr_netmask ifr_dstaddr ifr_addr ifr_broadaddr , {%d ->  , %#d , {ifr_index=%d, ifr_name=???} , {ifr_name="%s", ???} , {ifr_index=%d, ifr_name="%s"} , {ifr_name="%s",  ifr_index=%d %s={ inet_addr("%s") ifr_hwaddr=%02x:%02x:%02x:%02x:%02x:%02x ifr_flags= IFF_??? ifr_metric=%d ifr_mtu=%d ifr_slave="%s" ifr_qlen=%d ifr_map={mem_start=%#lx, mem_end=%#lx, base_addr=%#x, irq=%u, dma=%u, port=%u} ???} %lx} {"%s", { IFF_UP IFF_BROADCAST IFF_DEBUG IFF_LOOPBACK IFF_POINTOPOINT IFF_NOTRAILERS IFF_RUNNING IFF_NOARP IFF_PROMISC IFF_ALLMULTI IFF_MASTER IFF_SLAVE IFF_MULTICAST IFF_PORTSEL IFF_AUTOMEDIA MNT_??? PER_??? LINUX_REBOOT_MAGIC_??? LINUX_REBOOT_CMD_??? %#x, %d CAP_??? {%p, %d, %p, %p, %p, %Zu} {{ CTL_??? KERN_??? VM_??? NET_??? NET_CORE_??? NET_UNIX_??? NET_IPV4_??? NET_IPV4_ROUTE_??? NET_IPV4_CONF_??? NET_IPV6_??? NET_IPV6_ROUTE_??? , %x }, %d,  , %Zu,  , %Zd %p, %Zd, %p, %Zd MS_MGC_VAL MS_RDONLY MS_NOSUID MS_NODEV MS_NOEXEC MS_SYNCHRONOUS MS_REMOUNT MS_RELATIME MS_KERNMOUNT MS_I_VERSION MS_STRICTATIME MS_BORN MS_MANDLOCK MS_NOATIME MS_NODIRATIME MS_BIND MS_MOVE MS_REC MS_SILENT MS_POSIXACL MS_UNBINDABLE MS_PRIVATE MS_SLAVE MS_SHARED MS_ACTIVE MS_NOUSER MNT_FORCE MNT_DETACH MNT_EXPIRE PER_LINUX PER_LINUX_32BIT PER_SVR4 PER_SVR3 PER_SCOSVR3 PER_OSR5 PER_WYSEV386 PER_ISCR4 PER_BSD PER_SUNOS PER_XENIX PER_LINUX32 PER_LINUX32_3GB PER_IRIX32 PER_IRIXN32 PER_IRIX64 PER_RISCOS PER_SOLARIS PER_UW7 PER_OSF4 PER_HPUX LINUX_REBOOT_MAGIC1 LINUX_REBOOT_MAGIC2 LINUX_REBOOT_MAGIC2A LINUX_REBOOT_MAGIC2B LINUX_REBOOT_CMD_CAD_OFF LINUX_REBOOT_CMD_RESTART LINUX_REBOOT_CMD_HALT LINUX_REBOOT_CMD_CAD_ON LINUX_REBOOT_CMD_POWER_OFF LINUX_REBOOT_CMD_RESTART2 CAP_CHOWN CAP_DAC_OVERRIDE CAP_DAC_READ_SEARCH CAP_FOWNER CAP_FSETID CAP_KILL CAP_SETGID CAP_SETUID CAP_SETPCAP CAP_LINUX_IMMUTABLE CAP_NET_BIND_SERVICE CAP_NET_BROADCAST CAP_NET_ADMIN CAP_NET_RAW CAP_IPC_LOCK CAP_IPC_OWNER CAP_SYS_MODULE CAP_SYS_RAWIO CAP_SYS_CHROOT CAP_SYS_PTRACE CAP_SYS_PACCT CAP_SYS_ADMIN CAP_SYS_BOOT CAP_SYS_NICE CAP_SYS_RESOURCE CAP_SYS_TIME CAP_SYS_TTY_CONFIG CAP_MKNOD CAP_LEASE CAP_AUDIT_WRITE CAP_AUDIT_CONTROL CAP_SETFCAP CTL_KERN CTL_VM CTL_NET CTL_PROC CTL_FS CTL_DEBUG CTL_DEV CTL_BUS CTL_ABI CTL_CPU KERN_OSTYPE KERN_OSRELEASE KERN_OSREV KERN_VERSION KERN_SECUREMASK KERN_PROF KERN_NODENAME KERN_DOMAINNAME KERN_PANIC KERN_SPARC_REBOOT KERN_CTLALTDEL KERN_PRINTK KERN_NAMETRANS KERN_PPC_HTABRECLAIM KERN_PPC_ZEROPAGED KERN_PPC_POWERSAVE_NAP KERN_MODPROBE KERN_SG_BIG_BUFF KERN_ACCT KERN_PPC_L2CR KERN_RTSIGNR KERN_RTSIGMAX KERN_SHMMAX KERN_MSGMAX KERN_MSGMNB KERN_MSGPOOL VM_OVERCOMMIT_MEMORY VM_PAGE_CLUSTER NET_CORE NET_ETHER NET_802 NET_UNIX NET_IPV4 NET_IPX NET_ATALK NET_NETROM NET_AX25 NET_BRIDGE NET_ROSE NET_IPV6 NET_X25 NET_TR NET_DECNET NET_CORE_WMEM_MAX NET_CORE_RMEM_MAX NET_CORE_WMEM_DEFAULT NET_CORE_RMEM_DEFAULT NET_CORE_MAX_BACKLOG NET_CORE_FASTROUTE NET_CORE_MSG_COST NET_CORE_MSG_BURST NET_CORE_OPTMEM_MAX NET_UNIX_DESTROY_DELAY NET_UNIX_DELETE_DELAY NET_IPV4_FORWARD NET_IPV4_DYNADDR NET_IPV4_CONF NET_IPV4_NEIGH NET_IPV4_ROUTE NET_IPV4_FIB_HASH NET_IPV4_TCP_TIMESTAMPS NET_IPV4_TCP_WINDOW_SCALING NET_IPV4_TCP_SACK NET_IPV4_TCP_RETRANS_COLLAPSE NET_IPV4_DEFAULT_TTL NET_IPV4_AUTOCONFIG NET_IPV4_NO_PMTU_DISC NET_IPV4_TCP_SYN_RETRIES NET_IPV4_IPFRAG_HIGH_THRESH NET_IPV4_IPFRAG_LOW_THRESH NET_IPV4_IPFRAG_TIME NET_IPV4_TCP_MAX_KA_PROBES NET_IPV4_TCP_KEEPALIVE_TIME NET_IPV4_TCP_KEEPALIVE_PROBES NET_IPV4_TCP_RETRIES1 NET_IPV4_TCP_RETRIES2 NET_IPV4_TCP_FIN_TIMEOUT NET_IPV4_IP_MASQ_DEBUG NET_TCP_SYNCOOKIES NET_TCP_STDURG NET_TCP_RFC1337 NET_TCP_SYN_TAILDROP NET_TCP_MAX_SYN_BACKLOG NET_IPV4_LOCAL_PORT_RANGE NET_IPV4_ICMP_ECHO_IGNORE_ALL NET_IPV4_ICMP_ECHO_IGNORE_BROADCASTS NET_IPV4_ICMP_SOURCEQUENCH_RATE NET_IPV4_ICMP_DESTUNREACH_RATE NET_IPV4_ICMP_TIMEEXCEED_RATE NET_IPV4_ICMP_PARAMPROB_RATE NET_IPV4_ICMP_ECHOREPLY_RATE NET_IPV4_ICMP_IGNORE_BOGUS_ERROR_RESPONSES NET_IPV4_IGMP_MAX_MEMBERSHIPS NET_IPV4_ROUTE_FLUSH NET_IPV4_ROUTE_MIN_DELAY NET_IPV4_ROUTE_MAX_DELAY NET_IPV4_ROUTE_GC_THRESH NET_IPV4_ROUTE_MAX_SIZE NET_IPV4_ROUTE_GC_MIN_INTERVAL NET_IPV4_ROUTE_GC_TIMEOUT NET_IPV4_ROUTE_GC_INTERVAL NET_IPV4_ROUTE_REDIRECT_LOAD NET_IPV4_ROUTE_REDIRECT_NUMBER NET_IPV4_ROUTE_REDIRECT_SILENCE NET_IPV4_ROUTE_ERROR_COST NET_IPV4_ROUTE_ERROR_BURST NET_IPV4_ROUTE_GC_ELASTICITY NET_IPV4_CONF_FORWARDING NET_IPV4_CONF_MC_FORWARDING NET_IPV4_CONF_PROXY_ARP NET_IPV4_CONF_ACCEPT_REDIRECTS NET_IPV4_CONF_SECURE_REDIRECTS NET_IPV4_CONF_SEND_REDIRECTS NET_IPV4_CONF_SHARED_MEDIA NET_IPV4_CONF_RP_FILTER NET_IPV4_CONF_ACCEPT_SOURCE_ROUTE NET_IPV4_CONF_BOOTP_RELAY NET_IPV4_CONF_LOG_MARTIANS NET_IPV6_CONF NET_IPV6_NEIGH NET_IPV6_ROUTE NET_IPV6_ROUTE_FLUSH NET_IPV6_ROUTE_GC_THRESH NET_IPV6_ROUTE_MAX_SIZE NET_IPV6_ROUTE_GC_MIN_INTERVAL NET_IPV6_ROUTE_GC_TIMEOUT NET_IPV6_ROUTE_GC_INTERVAL NET_IPV6_ROUTE_GC_ELASTICITY - B???  %sopost %sisig %sicanon %secho ...} , {c_iflags=%#lx, c_oflags=%#lx,  c_cflags=%#lx, c_lflags=%#lx,  c_line=%u,  c_cc[VMIN]=%d, c_cc[VTIME]=%d,  c_cc=" "} , {ws_row=%d, ws_col=%d, ws_xpixel=%d, ws_ypixel=%d} TC??? TIOCM_??? B0 B50 B75 B110 B134 B150 B200 B300 B600 B1200 B1800 B2400 B4800 B9600 B19200 B38400 B57600 B115200 B230400 B460800 B500000 B576000 B921600 B1000000 B1152000 B1500000 B2000000 B2500000 B3000000 B3500000 B4000000 EXTA EXTB TCOOFF TCOON TCIOFF TCION TIOCM_LE TIOCM_DTR TIOCM_RTS TIOCM_ST TIOCM_SR TIOCM_CTS TIOCM_CAR TIOCM_CD TIOCM_RNG TIOCM_RI TIOCM_DSR {%u, %u} {%lu, %lu} {tm_sec=%d, tm_min=%d, tm_hour=%d, tm_mday=%d, tm_mon=%d, tm_year=%d,  tm_wday=%d, tm_yday=%d, tm_isdst=%d} {it_interval= , it_value= UTIME_NOW UTIME_OMIT ITIMER_??? {modes= ADJ_??? , offset=%d, freq=%d, maxerror=%d,  esterror=%u, status= STA_??? , constant=%d, precision=%u,  tolerance=%d, time= , tick=%d, ppsfreq=%d, jitter=%d , shift=%d, stabil=%d, jitcnt=%d , calcnt=%d, errcnt=%d, stbcnt=%d , offset=%ld, freq=%ld, maxerror=%ld,  esterror=%lu, status= , constant=%ld, precision=%lu,  tolerance=%ld, time= , tick=%ld, ppsfreq=%ld, jitter=%ld , shift=%d, stabil=%ld, jitcnt=%ld , calcnt=%ld, errcnt=%ld, stbcnt=%ld CLOCK_??? TIMER_??? {%#x,  %u,  SIGEV_??? {%d} {%#x, %#x} {%p,  {%p, %p} {%p} , {enabled=%d, pending=%d,  TFD_??? ITIMER_REAL ITIMER_VIRTUAL ITIMER_PROF TIME_OK TIME_INS TIME_DEL TIME_OOP TIME_WAIT TIME_ERROR ADJ_OFFSET ADJ_FREQUENCY ADJ_MAXERROR ADJ_ESTERROR ADJ_STATUS ADJ_TIMECONST ADJ_TICK ADJ_OFFSET_SINGLESHOT STA_PLL STA_PPSFREQ STA_PPSTIME STA_FLL STA_INS STA_DEL STA_UNSYNC STA_FREQHOLD STA_PPSSIGNAL STA_PPSJITTER STA_PPSWANDER STA_PPSERROR STA_CLOCKERR CLOCK_REALTIME CLOCK_MONOTONIC CLOCK_PROCESS_CPUTIME_ID CLOCK_THREAD_CPUTIME_ID CLOCK_MONOTONIC_RAW CLOCK_REALTIME_COARSE CLOCK_MONOTONIC_COARSE TIMER_ABSTIME SIGEV_SIGNAL SIGEV_NONE SIGEV_THREAD SIGEV_THREAD_ID TFD_TIMER_ABSTIME %#lx, %d,  {fd=%d} {fd= , events= POLL??? , %d,  {fd=%d, revents= len=%d, buf= RS_??? RS_HIPRI POLLIN POLLPRI POLLOUT POLLRDNORM POLLWRNORM POLLRDBAND POLLWRBAND POLLERR POLLHUP POLLNVAL , %hu , %u , {%llx, %llx} , {heads=%hhu, sectors=%hhu, cylinders=%hu, start=%lu} BLKPG_??? , flags=%d, datalen=%d,  %#lx} {start=%lld, length=%lld, pno=%d, devname="%.*s", volname="%.*s"}} , {act_mask=%hu, buf_size=%u, buf_nr=%u, start_lba=%llu, end_lba=%llu, pid=%u} , {name="%.*s"} BLKPG_ADD_PARTITION BLKPG_DEL_PARTITION                            !   !                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               : : : : : : : : ; 
; ; ; ; %; ,; 3; ;; A; H; N; U; ]; d; k; r; y; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; < < < < "< )< 1< 8< ?< E< K< R< Y< a< i< r< y< < < < < < < < < < < < < < < < < < < = = = = '= 0= 7= @= I= P= Y= f= o= z= = = = = = = = = = = > > > #> +> 4> >> K> U> b> l> y> > > > > > > > > > > > > > > ? ? ? ,? 4? >? H? R? \? f? p? z? ? ? ? ? ? ? ? ? ? ? ? ? ? @ @ @ $@ .@ 8@ B@ L@ V@ `@ j@ t@ ~@ @ @ @ @ @ @ @ @ @ @ @ @  A 
A A A (A 2A <A FA PA ZA dA nA xA A A A A A A A A A A A A A B B B "B ,B 6B @B JB TB ^B hB rB |B B B B B B B B B B B B B B C C C &C 0C :C DC NC XC bC lC vC C C C C C C C C C C C C C D D D  D *D 4D >D HD RD \D fD pD zD D D D D D D D D D D D D D E E E $E .E 8E BE LE VE `E jE tE ~E E E E E E E E E E E E E  F 
F F F (F 2F <F FF PF ZF dF nF xF F F F F F F F F F F F F F G G G "G ,G 6G @G JG TG ^G hG rG |G G G G G G G G G G G G G G H H H &H 0H :H DH NH XH bH lH vH H H H H H H H H H H H H H I I I  I *I 4I >I HI RI \I fI pI zI I I I I I I I I I I I I I J J J $J .J 8J BJ LJ VJ `J jJ tJ ~J J J J J J J J J J J J J  K 
K K K (K 2K <K FK PK ZK dK nK xK K K K K K K K K K K K K K L L L "L ,L 6L @L JL TL ^L hL rL |L L L L L L L L L L L L L L M M M &M 0M :M DM NM XM bM lM vM M M M M M M M M M M M M M N N N ,N 8N NN XN bN lN vN N N N N N N N N N : : : : : : : : ; 
; ; ; ; %; ,; 3; ;; A; H; N; U; ]; d; k; r; y; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; < < < < "< )< 1< 8< ?< E< K< R< Y< a< i< r< y< < < < < < < < < < < < < < < < < < < = = = = '= 0= 7= @= I= P= Y= f= o= z= = = = = = = = = = = > > > #> +> 4> >> K> U> b> l> y> > > > > > > > > > > > > > > ? ? ? ,? 4? >? H? R? \? f? p? z? ? ? ? ? ? ? ? ? ? ? ? ? ? @ @ @ $@ .@ 8@ B@ L@ V@ `@ j@ t@ ~@ @ @ @ @ @ @ @ @ @ @ @ @  A 
A A A (A 2A <A FA PA ZA dA nA xA A A A A A A A A A A A A A B B B "B ,B 6B @B JB TB ^B hB rB |B B B B B B B B B B B B B B C C C &C 0C :C DC NC XC bC lC vC C C C C C C C C C C C C C D D D  D *D 4D >D HD RD \D fD pD zD D D D D D D D D D D D D D E E E $E .E 8E BE LE VE `E jE tE ~E E E E E E E E E E E E E  F 
F F F (F 2F <F FF PF ZF dF nF xF F F F F F F F F F F F F F G G G "G ,G 6G @G JG TG ^G hG rG |G G G G G G G G G G G G G G H H H &H 0H :H DH NH XH bH lH vH H H H H H H H H H H H H H I I I  I *I 4I >I HI RI \I fI pI zI I I I I I I I I I I I I I J J J $J .J 8J BJ LJ VJ `J jJ tJ ~J J J J J J J J J J J J J  K 
K K K (K 2K <K FK PK ZK dK nK xK K K K K K K K K K K K K K L L L "L ,L 6L @L JL TL ^L hL rL |L L L L L L L L L L L L L L M M M &M 0M :M DM NM XM bM lM vM M M M M M M M M M M M M M N N N ,N 8N NN XN bN lN vN N N N N N N N N N    k] D q]    }] D q]    ] D q]    ] D q]    ] D q]    ] D q]    ] D q]    ] D q]    8 D 8    ] D 8    ] D 8     ] IB ]     ] IB ]     ] IB ] @   N C ] @   ] C ] @   ] C ]    N C ]    ] C ]    P1 C ]                     Eb    Mb    Ub    ]b    eb    mb    ub    }b 	   b    b 
   b    b 	   b    b    ub    }b    mb 
   b    b    b    b   b   b             dc    mc    vc            c    c    c    c             <c    Dc    Lc    Tc    \c            c    c    c @   c    c    c    d    d    d    %d    @.d    ;d            b            b    b    c    c    c     %c    /c         Erusti /i s  i   i SJA i Q  i S  i }  i I j `  j   #j   5j h$  Hj x$  [j DM  oj LV  j ii  j   j /   j sIeRj j {Q  j /j /k T k  T(k /2k m/Dk reebVk            'i    /i    8i    @i  @  Hi  `  Pi     Xi            2m    >m         @   ^h    fh    mh    vh    ~h    h   h     h    h    h    h  @  h    h    h    h     h            bk             i    i    i    "i            k    k            `i             h    h    i    	i             dc    mc    vc            Dl    Nl    Xl    bl    ql     l @   l    l    l    l    l    l     l  @  l    l    l    m     m    @m    'm             ok    zk    k    k    k    k 
   k    k    k             k    k    k    	l    l    1l          @  n    n     n             m    m    m    m 
   on    xn    n    n            
n     n    m             m    m    m    m    m    n            m    m    m             m    m    m    m    *n    3n    <n    Cn 
   Jn    Qn    Yn    an    hn            m    m            !n    m         n n    n n    n n   n n   n o   n o   n #o   n 0o   n >o   n Ko   n Wo A  n `o B  n io C  n ro E  n zo F  n o G  n o H  n o I  n o J  n o K  n o L  n o T  n o V  n o X  n o Y  n o Z  n o   o p   o "p   o 4p   o Ep   o Up   o fp   o xp   o p   o p   o p   o p   n p ]  n p ^  n p _  n p `  n p a  n q b  n 
q c  n q d  n q e  n 'q f  n 2q g  n =q h  Gq Uq i  [q lq j  [q vq k  n q l  n q m  n q p  n q q  n q r  q q "  q q "  q q "  q q "  q 	r "  q r p"  q +r q"  q <r r"  q Qr u"  q fr v"  q ur y"  q r z"  q r {"  q r |"  q r }"  q r ~"  q r "  q r "  q s "  q s "  q "s "  q (s "  q =s "  q Ps "  q cs "  ws s 2  ws s 2  ws s 2  ws s 2  s s  6  s s @  s t @  t ,t  A  t 8t A  Gt Xt A  t ht A  Gt wt A  t t A  t t A  t t A  t t A  t t A  t t A  t t 	A  t t  B  u u B  t -u B  u Cu B  t Tu B  u ju B  t {u B  u u B  t u B  u u B  t u B  u u B  t u B  u u B  u v B  u  v 	B  u 1v 
B  u Cv B  u Rv B  u bv 
B  u sv B  u v B  u v B  u v B  v v  C  v v C  v v C  v w C  v w C  v *w C  v <w C  v Nw C  v dw C  v tw C  v w C  v w C  v w C  v w 	C  v w 	C  v w  C  v w !C  v x "C  v x #C  v #x $C  v 2x %C  v Ax &C  v Ux 'C  gx ux E  gx x E  gx x E  gx x E  gx x E  gx x E  gx x E  gx x E  gx x E  gx x E  gx x E  x y  F  x y F  x )y F  x =y F  x Iy F  x Uy F  x ey F  x yy F  x y F  x y 	F  x y 
F  x y F  x y F  x y F  x y F  x z F  x z F  x z F  x 'z F  x 5z F  x Ez F  x Vz F  gz xz  F  z z H  z z H  z z H  z z H  z z H  z z H  z z H  z { 	H  z { 
H  z '{ H  z 4{ H  z A{ 
H  z N{ H  z Z{ H  z f{ H  }{ { H  { { H  z { H  }{ { H  { | H  }{  | H  { >| H  z ]| H  { k| H  z | H  { | H  { | H  { | H  | |  H  }{ }  H  | &} !H  }{ >} !H  | \} "H  }{ x} "H  | } #H  | } $H  | } %H  | } &H  }{ ~ 0H  }{ (~ 1H  E~ R~ @H  E~ p~ AH  E~ ~ BH  E~ ~ CH  E~ ~ DH  E~ ~ EH  }{  H  }{ ! H  }{ > H  }{ d H  }{  H    I    I    I    I    I    I    I    I    	I    
I    I   ' I   2 
I   = I   H I   S I   ^ I   i I   t I    I    I    I    I    I     I   Ā !I   π "I   ڀ I    I    /K    0K    1K    2K     3K   * 4K   2 5K   : 6K   C 7K   M :K   W ;K   a <K   k =K   w @K    AK    DK    EK    FK    GK    HK    IK   Ɂ JK   ԁ KK   ߁ LK    MK    NK    RK    `K    aK     bK   * cK   4 dK   = eK   F fK   Q gK   \ hK   j iK   y jK    kK    lK    mK    pK    qK    rK  ł Ђ  M  ł  M  ł  M  ł  M  ł  M  ł + M  ł B M  ł Y M  ł p M  ł  	M  v  eM  v  fM  v Ã gM  v Ӄ hM  v  oM  v  pM  v  qM  v # rM  v 8 sM  v M tM  v c uM  v y vM     N    !N   ń "N  v ݄  P  v  P  v  P  v  P  v # P  v 5 P  v K P  v ] P  v q P  v  P  v  P  v  	P  v ą 
P  v ۅ P  v  P  v  
P  v  P  v , P  v ? P  v U P  v h P  v { P  v  P  v  P  v  P  v Ά P  v  P  v  @P  v  AP  v ( BP  v < CP  P e dP  P { eP  v   Q  v  Q  v  Q  v ć Q  v ؇ Q  v  Q  v  Q  v  Q  v . Q  v B 	Q  v Z 
Q  v n Q  v  Q  v  
Q  v  Q  v  Q  v Ј Q  v  Q  v  Q  v 	 Q  v  Q  v . Q  H W  R  H d R  H s R  H ~ R  H  R  H  R     S  ҉  S    S  ҉  S    S  ҉ - S   : S  ҉ W S  ҉ g S  ҉ w S  ҉  S  ҉  S  ҉  	S  ҉  
S  ҉  S  ҉ Ê S  ҉ Ҋ 
S  ҉  S  ҉  S  ҉  S    S  ҉ 0 S   > S  ҉ ^ S  ҉ i S  ҉ v S  ҉  S  ҉  S  ҉  S  ҉  S  ҉  S  ҉ Ƌ S  ҉ ׋ S  ҉   S     S  ҉  !S   * !S  ҉ F "S   Y "S  ҉ w #S    #S  ҉  %S  ҉  &S  ҉ Ό 'S  ҉  (S  ҉  )S  ҉  0S    0S  ҉ / 1S   D 1S   e 2S    3S    4S    5S   ݍ 6S    @S    AS   > BS   ^ CS   ~ DS    ES    FS   ގ IS    JS     KS   @ LS   ` NS   ~ OS    PS    QS   ܏ RS    SS    TS  : L S  : ` S  ҉ v S    S    S    S   ې S    S    S  ҉  S  ҉ . S  ҉ ? S  ҉ H S  ҉ Z S  ҉ n S  v  T    T  v  T    T  v  T   ё T  v ّ T    T  v  T    T  v 
 T    T  v & T   ; T  v C T   U T   ] 	T   d 
T   k T   r T   { 
T    T    T    T    T    T    T    T   ɒ T   Ғ T   ے T    T    T    T    T    T    T   # T   / T   ;  T   C !T   K "T   U #T   ^ $T   g %T   o &T   ~ 'T    (T    )T    0T    1T    2T    PT    QT   Ǔ RT   Г ST   ޓ TT    UT    VT    WT    XT   % YT   3 ZT   C [T   S \T   ^ ]T   j ^T   x _T    `T    T    T    T    T   ϔ T  ۔   U    U    U  ۔ - U  ۔ ; U  ۔ L U  ۔ b U  ۔ | U  ۔  
U  ۔  U  ۔  U  ۔ Ǖ 
U  ۔ ޕ U  ۔  U  ۔ 
 U  ۔ $ U  ۔ 9 U  ۔ H U  ۔ ^ U  ۔ m U  ۔  U  ۔  U    dU    eU    fU   ϖ gU   ݖ hU    iU    jU    kU   &  V  6 A  V   L V  6 \ V   g V  6 w V  6  V    V  6  V    V  6  V    V  6 ̗ V   ؗ V  6  V    V  6  V    	V  6 " 	V   , 
V  6 : 
V   E V  6 S V  6 a V   q V    V    V    V    V    V   Ș V   ֘ V    V    V    V  gz  V   # V  gz 1 V   D V   R V   a V   p !V    "V  gz  $V    $V    %V   ƙ &V   ՙ 'V    .V    /V    0V    1V   & 2V   6 6V   I 7V   \ 8V   o 9V    :V    ;V    <V    =V    >V   њ ?V    @V    AV    BV    CV   % DV  7 H  W  7 Y W  7 i W  7 } W  7  W  7  W  7  W  7  W  Λ ߛ  Z  Λ  Z  Λ  Z  Λ 
 Z  Λ  Z  Λ 1 Z  Λ C Z  U c a  U q a  U  a  U  a  U  a  U  a  U  a  U ̜ a  ݜ  2a  ݜ  3a   $ Pa   0 Qa   = Ra   I Sa   U Ta  c s `a    `a    aa   ʝ aa   ם ba    ba    ca    ca    da  c  ga  & 6 a   D a   T a   a a   m a   x a    a    a    a    a    a   ƞ a   ў a  & ݞ a  &  a    a   ) a   5 a   A a  N ] a  N i a  u  a    a    a    a   ȟ a  ՟  a    a    a   
 a   ( 
c  < M c  < ^ c  < o  c  <  (c  <  )c  <  *c     d  Ѡ  d  Ѡ   d    d  Ѡ , d   = d  Ѡ [ d   m d  Ѡ  d  Ѡ  d  Ѡ  d  Ѡ á d  С  e  С  e  С  e  С " e  С 5 e  K [ f  K m f    f    f    cf  Ң  g  Ң  g  Ң  g  $ 4  i  $ ? i  $ I i  $ S i  $ ^ i  $ i i  $ q i  $ y i  $  i  $  	i  $  
i  $  i    i   ѣ i    
i    i    i   . i   J i   e i    i    i    i   ˤ i   ڤ i    i    i    i    i     i  , = j  , K j  , V j  , d !j  , o "j  , z 1j  ,  2j  ,  3j  ,  4j    @l   ˥ Al   ڥ Bl    Cl     m  v   m   3 m  C P m  v Y m   m m  C } m  v  m    m  C  m    m  C æ m   Ҧ m  C  m    m  C  m    m  C  m   + m  C = m   J 	m  C ] 	m   j 
m  C v 
m    m  C  m    m    hm  ԧ  n  ԧ  n  ԧ 
 n  ԧ ! n  ԧ 5 n  ԧ G n  ԧ [ n  ԧ n n  ԧ ~ 	n  ԧ  
n  ԧ  n  ԧ  n  gz Ԩ n    n  gz  n  gz / n  gz H n  a m p  a x p  a  p  a  p  a  p  a  p  a  p  a  p  a ˩ 	p  a ש 
p  a  p  a  p  a  
p  a  p  a  p  a ' p  a 5 p  a A p  a N p  a Z p  f t @p  f  Ap    Pp    Qp   ê Rp   Ԫ Sp    Tp    Up    Vp   ' Wp   < Xp   I Yp   \ `p   t ap    bp    cp    dp   ʫ ep    fp    gp   
 hp    ip   1 pp   E qp   X rp   k sp   ~ tp    p    p    p    p   Ȭ p   Ь p   ج p    p    p    p    p    p    p    p   " p   + p   6 p   @ p   J p   U p   _ p   j p   u p    p    p    p    p  ̭ ڭ q    q    q    q   " q   0 q   > q   L q   Z q   h 	q   v 
q    q    q    q   Ʈ q   ޮ q    q    q    q   ! q   4 q   E q   U q   e q   u q    q    q    q    q    q   ү q    q    q    q    q   ' q   8 q   G q   \ q   k q   { q    q    q    q   Ѱ q    q    q   	 q    q   ' q   6 q   K q   ` q   t q    q    q    q    q   б q    q    q    q    q   ! q   0 q   B q   Y q   j q   ~ q    q    q    q   ò q   в q    q    q    q    q   " q   3 q   I q   Y q   e q   r q    q    q    q   ȳ q   ҳ q   ޳ q    q    q    q   * q   @ q   W q   l q   z q    q    q    q    r  ϴ  r    r  ϴ  r    r   + r   9 r   G r  U a s  U k s  U v s  U  s  U  Ps  U  Qs    7t    8t   ε 9t   ܵ :t    ;t    <t    =t    >t    ?t   * @t   7 At   D Ft   R Gt   ^ Kt   l Lt   z Mt    Nt    Ot    Pt    Qt   ɶ Rt   Զ St   ߶ Tt    Ut    Vt   
 Wt    Xt   - Yt  : G Zt   W Zt  : d [t  : t \t    t    t    t    t   з t   ݷ t    t    t    t   - t  6 E u  6 Y u  6 i u     v  K  v   ¸ v  K ͸ v    v    v     v    v    v   2 v   ? v   R v   _ v   k v    v    v    v    	v    	v   Ĺ 
v   Ϲ v   ۹ v    
v    v    v   	 v    v   # v   . v   = v   I v   U v   d v   s v    v    v    v    v   ú v  Ѻ ޺ v  Ѻ  v  Ѻ   v  Ѻ  v  Ѻ  v  Ѻ 1 v  D R   D \   D f   D p   D z   D              
       ʻ    ֻ                        #    2    A    P    _    n    |              !    "    #   ¼ $   м %   ݼ &    '    )    0    1    2   , 3   9 4   G 5   U 6   a 7   t 8    @    A    B    C    D    E   ͽ F   ٽ G    H    I    J    S    T    U   # `   - a   7 b   A p   L q   W    c    o    {                    о                     -   < M    < [   < g   < s   <    <    <    <    <    <  	  < ǿ 
  < Կ   <    <  
  <    <    <    <    < )   < 7   < E   < O   < Y   < g   < s   <    <    <    <    <     <  !  <  "  <  #  <  $  <  %  <  &  <  '  <  (  <   )  < - *  < ; +  < I ,  < V -  < c   < s     `    a    b    c    d    e    f  - 9    - F   - V   - c   - m   - |   -    -    -                           4 E    4 P   4 ^   4 n   4 |   4    4    4    4    4  	  4  
  4    4    4  
  
     
 '   
 1   
 ;   
 E   
 O   
 c   
 z   
  	  
  
  
     
  !  
  "  
  #  
  $  
  %  
  &  
  '  
  (  
  )  
 % *  
 3 +  
 < ,  
 Q .  
 a /  
 k 0  
 s @  
 } A  
  B  
  P  
    
    
    n n    n n    n n   n n   n o   n o   n #o   n 0o   n >o   n Ko   n Wo A  n `o B  n io C  n ro E  n zo F  n o G  n o H  n o I  n o J  n o K  n o L  n o T  n o V  n o X  n o Y  n o Z  n o   o p   o "p   o 4p   o Ep   o Up   o fp   o xp   o p   o p   o p   o p   n p ]  n p ^  n p _  n p `  n p a  n q b  n 
q c  n q d  n q e  n 'q f  n 2q g  n =q h  Gq Uq i  [q lq j  [q vq k  n q l  n q m  n q p  n q q  n q r  q q "  q q "  q q "  q q "  q 	r "  q r p"  q +r q"  q <r r"  q Qr u"  q fr v"  q ur y"  q r z"  q r {"  q r |"  q r }"  q r ~"  q r "  q r "  q s "  q s "  q "s "  q (s "  q =s "  q Ps "  q cs "  ws s 2  ws s 2  ws s 2  ws s 2  s s  6  s s @  s t @  t ,t  A  t 8t A  Gt Xt A  t ht A  Gt wt A  t t A  t t A  t t A  t t A  t t A  t t A  t t 	A  t t  B  u u B  t -u B  u Cu B  t Tu B  u ju B  t {u B  u u B  t u B  u u B  t u B  u u B  t u B  u u B  u v B  u  v 	B  u 1v 
B  u Cv B  u Rv B  u bv 
B  u sv B  u v B  u v B  u v B  v v  C  v v C  v v C  v w C  v w C  v *w C  v <w C  v Nw C  v dw C  v tw C  v w C  v w C  v w C  v w 	C  v w 	C  v w  C  v w !C  v x "C  v x #C  v #x $C  v 2x %C  v Ax &C  v Ux 'C  gx ux E  gx x E  gx x E  gx x E  gx x E  gx x E  gx x E  gx x E  gx x E  gx x E  gx x E  x y  F  x y F  x )y F  x =y F  x Iy F  x Uy F  x ey F  x yy F  x y F  x y 	F  x y 
F  x y F  x y F  x y F  x y F  x z F  x z F  x z F  x 'z F  x 5z F  x Ez F  x Vz F  gz xz  F  z z H  z z H  z z H  z z H  z z H  z z H  z z H  z { 	H  z { 
H  z '{ H  z 4{ H  z A{ 
H  z N{ H  z Z{ H  z f{ H  }{ { H  { { H  z { H  }{ { H  { | H  }{  | H  { >| H  z ]| H  { k| H  z | H  { | H  { | H  { | H  | |  H  }{ }  H  | &} !H  }{ >} !H  | \} "H  }{ x} "H  | } #H  | } $H  | } %H  | } &H  }{ ~ 0H  }{ (~ 1H  E~ R~ @H  E~ p~ AH  E~ ~ BH  E~ ~ CH  E~ ~ DH  E~ ~ EH  }{  H  }{ ! H  }{ > H  }{ d H  }{  H    I    I    I    I    I    I    I    I    	I    
I    I   ' I   2 
I   = I   H I   S I   ^ I   i I   t I    I    I    I    I    I     I   Ā !I   π "I   ڀ I    I    /K    0K    1K    2K     3K   * 4K   2 5K   : 6K   C 7K   M :K   W ;K   a <K   k =K   w @K    AK    DK    EK    FK    GK    HK    IK   Ɂ JK   ԁ KK   ߁ LK    MK    NK    RK    `K    aK     bK   * cK   4 dK   = eK   F fK   Q gK   \ hK   j iK   y jK    kK    lK    mK    pK    qK    rK  ł Ђ  M  ł  M  ł  M  ł  M  ł  M  ł + M  ł B M  ł Y M  ł p M  ł  	M  v  eM  v  fM  v Ã gM  v Ӄ hM  v  oM  v  pM  v  qM  v # rM  v 8 sM  v M tM  v c uM  v y vM     N    !N   ń "N  v ݄  P  v  P  v  P  v  P  v # P  v 5 P  v K P  v ] P  v q P  v  P  v  P  v  	P  v ą 
P  v ۅ P  v  P  v  
P  v  P  v , P  v ? P  v U P  v h P  v { P  v  P  v  P  v  P  v Ά P  v  P  v  @P  v  AP  v ( BP  v < CP  P e dP  P { eP  v   Q  v  Q  v  Q  v ć Q  v ؇ Q  v  Q  v  Q  v  Q  v . Q  v B 	Q  v Z 
Q  v n Q  v  Q  v  
Q  v  Q  v  Q  v Ј Q  v  Q  v  Q  v 	 Q  v  Q  v . Q  H W  R  H d R  H s R  H ~ R  H  R  H  R     S  ҉  S    S  ҉  S    S  ҉ - S   : S  ҉ W S  ҉ g S  ҉ w S  ҉  S  ҉  S  ҉  	S  ҉  
S  ҉  S  ҉ Ê S  ҉ Ҋ 
S  ҉  S  ҉  S  ҉  S    S  ҉ 0 S   > S  ҉ ^ S  ҉ i S  ҉ v S  ҉  S  ҉  S  ҉  S  ҉  S  ҉  S  ҉ Ƌ S  ҉ ׋ S  ҉   S     S  ҉  !S   * !S  ҉ F "S   Y "S  ҉ w #S    #S  ҉  %S  ҉  &S  ҉ Ό 'S  ҉  (S  ҉  )S  ҉  0S    0S  ҉ / 1S   D 1S   e 2S    3S    4S    5S   ݍ 6S    @S    AS   > BS   ^ CS   ~ DS    ES    FS   ގ IS    JS     KS   @ LS   ` NS   ~ OS    PS    QS   ܏ RS    SS    TS  : L S  : ` S  ҉ v S    S    S    S   ې S    S    S  ҉  S  ҉ . S  ҉ ? S  ҉ H S  ҉ Z S  ҉ n S  v  T    T  v  T    T  v  T   ё T  v ّ T    T  v  T    T  v 
 T    T  v & T   ; T  v C T   U T   ] 	T   d 
T   k T   r T   { 
T    T    T    T    T    T    T    T   ɒ T   Ғ T   ے T    T    T    T    T    T    T   # T   / T   ;  T   C !T   K "T   U #T   ^ $T   g %T   o &T   ~ 'T    (T    )T    0T    1T    2T    PT    QT   Ǔ RT   Г ST   ޓ TT    UT    VT    WT    XT   % YT   3 ZT   C [T   S \T   ^ ]T   j ^T   x _T    `T    T    T    T    T   ϔ T  ۔   U    U    U  ۔ - U  ۔ ; U  ۔ L U  ۔ b U  ۔ | U  ۔  
U  ۔  U  ۔  U  ۔ Ǖ 
U  ۔ ޕ U  ۔  U  ۔ 
 U  ۔ $ U  ۔ 9 U  ۔ H U  ۔ ^ U  ۔ m U  ۔  U  ۔  U    dU    eU    fU   ϖ gU   ݖ hU    iU    jU    kU   &  V  6 A  V   L V  6 \ V   g V  6 w V  6  V    V  6  V    V  6  V    V  6 ̗ V   ؗ V  6  V    V  6  V    	V  6 " 	V   , 
V  6 : 
V   E V  6 S V  6 a V   q V    V    V    V    V    V   Ș V   ֘ V    V    V    V  gz  V   # V  gz 1 V   D V   R V   a V   p !V    "V  gz  $V    $V    %V   ƙ &V   ՙ 'V    .V    /V    0V    1V   & 2V   6 6V   I 7V   \ 8V   o 9V    :V    ;V    <V    =V    >V   њ ?V    @V    AV    BV    CV   % DV  7 H  W  7 Y W  7 i W  7 } W  7  W  7  W  7  W  7  W  Λ ߛ  Z  Λ  Z  Λ  Z  Λ 
 Z  Λ  Z  Λ 1 Z  Λ C Z  U c a  U q a  U  a  U  a  U  a  U  a  U  a  U ̜ a  ݜ  2a  ݜ  3a   $ Pa   0 Qa   = Ra   I Sa   U Ta  c s `a    `a    aa   ʝ aa   ם ba    ba    ca    ca    da  c  ga  & 6 a   D a   T a   a a   m a   x a    a    a    a    a    a   ƞ a   ў a  & ݞ a  &  a    a   ) a   5 a   A a  N ] a  N i a  u  a    a    a    a   ȟ a  ՟  a    a    a   
 a   ( 
c  < M c  < ^ c  < o  c  <  (c  <  )c  <  *c     d  Ѡ  d  Ѡ   d    d  Ѡ , d   = d  Ѡ [ d   m d  Ѡ  d  Ѡ  d  Ѡ  d  Ѡ á d  С  e  С  e  С  e  С " e  С 5 e  K [ f  K m f    f    f    cf  Ң  g  Ң  g  Ң  g  $ 4  i  $ ? i  $ I i  $ S i  $ ^ i  $ i i  $ q i  $ y i  $  i  $  	i  $  
i  $  i    i   ѣ i    
i    i    i   . i   J i   e i    i    i    i   ˤ i   ڤ i    i    i    i    i     i  , = j  , K j  , V j  , d !j  , o "j  , z 1j  ,  2j  ,  3j  ,  4j    @l   ˥ Al   ڥ Bl    Cl     m  v   m   3 m  C P m  v Y m   m m  C } m  v  m    m  C  m    m  C æ m   Ҧ m  C  m    m  C  m    m  C  m   + m  C = m   J 	m  C ] 	m   j 
m  C v 
m    m  C  m    m    hm  ԧ  n  ԧ  n  ԧ 
 n  ԧ ! n  ԧ 5 n  ԧ G n  ԧ [ n  ԧ n n  ԧ ~ 	n  ԧ  
n  ԧ  n  ԧ  n  gz Ԩ n    n  gz  n  gz / n  gz H n  a m p  a x p  a  p  a  p  a  p  a  p  a  p  a  p  a ˩ 	p  a ש 
p  a  p  a  p  a  
p  a  p  a  p  a ' p  a 5 p  a A p  a N p  a Z p  f t @p  f  Ap    Pp    Qp   ê Rp   Ԫ Sp    Tp    Up    Vp   ' Wp   < Xp   I Yp   \ `p   t ap    bp    cp    dp   ʫ ep    fp    gp   
 hp    ip   1 pp   E qp   X rp   k sp   ~ tp    p    p    p    p   Ȭ p   Ь p   ج p    p    p    p    p    p    p    p   " p   + p   6 p   @ p   J p   U p   _ p   j p   u p    p    p    p    p  ̭ ڭ q    q    q    q   " q   0 q   > q   L q   Z q   h 	q   v 
q    q    q    q   Ʈ q   ޮ q    q    q    q   ! q   4 q   E q   U q   e q   u q    q    q    q    q    q   ү q    q    q    q    q   ' q   8 q   G q   \ q   k q   { q    q    q    q   Ѱ q    q    q   	 q    q   ' q   6 q   K q   ` q   t q    q    q    q    q   б q    q    q    q    q   ! q   0 q   B q   Y q   j q   ~ q    q    q    q   ò q   в q    q    q    q    q   " q   3 q   I q   Y q   e q   r q    q    q    q   ȳ q   ҳ q   ޳ q    q    q    q   * q   @ q   W q   l q   z q    q    q    q    r  ϴ  r    r  ϴ  r    r   + r   9 r   G r  U a s  U k s  U v s  U  s  U  Ps  U  Qs    7t    8t   ε 9t   ܵ :t    ;t    <t    =t    >t    ?t   * @t   7 At   D Ft   R Gt   ^ Kt   l Lt   z Mt    Nt    Ot    Pt    Qt   ɶ Rt   Զ St   ߶ Tt    Ut    Vt   
 Wt    Xt   - Yt  : G Zt   W Zt  : d [t  : t \t    t    t    t    t   з t   ݷ t    t    t    t   - t  6 E u  6 Y u  6 i u     v  K  v   ¸ v  K ͸ v    v    v     v    v    v   2 v   ? v   R v   _ v   k v    v    v    v    	v    	v   Ĺ 
v   Ϲ v   ۹ v    
v    v    v   	 v    v   # v   . v   = v   I v   U v   d v   s v    v    v    v    v   ú v  Ѻ ޺ v  Ѻ  v  Ѻ   v  Ѻ  v  Ѻ  v  Ѻ 1 v  D R   D \   D f   D p   D z   D              
       ʻ    ֻ                        #    2    A    P    _    n    |              !    "    #   ¼ $   м %   ݼ &    '    )    0    1    2   , 3   9 4   G 5   U 6   a 7   t 8    @    A    B    C    D    E   ͽ F   ٽ G    H    I    J    S    T    U   # `   - a   7 b   A p   L q   W    c    o    {                    о                     -   < M    < [   < g   < s   <    <    <    <    <    <  	  < ǿ 
  < Կ   <    <  
  <    <    <    <    < )   < 7   < E   < O   < Y   < g   < s   <    <    <    <    <     <  !  <  "  <  #  <  $  <  %  <  &  <  '  <  (  <   )  < - *  < ; +  < I ,  < V -  < c   < s     `    a    b    c    d    e    f  - 9    - F   - V   - c   - m   - |   -    -    -                           4 E    4 P   4 ^   4 n   4 |   4    4    4    4    4  	  4  
  4    4    4  
  
     
 '   
 1   
 ;   
 E   
 O   
 c   
 z   
  	  
  
  
     
  !  
  "  
  #  
  $  
  %  
  &  
  '  
  (  
  )  
 % *  
 3 +  
 < ,  
 Q .  
 a /  
 k 0  
 s @  
 } A  
  B  
  P  
    
    
       F    U                                                          b    n    z                        !    .                           @                                (     3    <                            !    .            ?    K             O    Y    c    n    x                    `    o                            @                  $                %    . 2   : 4   G 9   U 6   ` ;   m    z                         !               /            H    V    g    w                     	    
        
               	             ,    6    B    N    [    v                                    J    V    a    j    s 
                        +    <    M    ]    m                                                               @                         @      +             4    ;    C )   K :   T    _    h    p   x                      	   
         
                                              +    ,    :    ;    <   "    2    >             .    6    >                                !    -    <    G 	   R 
   `    p    { 
             !    "    #    $    )    0                   ~                                     
                         
           '    1    ;    D    L    U    a     h    r 	   }                                         	    
   -    >    G                        &    0    8    E    O    Y    c 
   k    t    {             
                                             	               T            A            J    `    w                        O    e    x              @                                       @                                  .    >    N    ^    j 	   v             
             B   B   B  	 B      -    @                    !    1    A    P    _    o 	    
            
                                   !    ,    7    I             \    _    b    e    h    k    n    q     t $   w (   z ,   ~ 0    4    8    <    @    H    L    P    T    X    \   2 `   U d   s h    l    p    (                                    1    =    F            [    d    m    y           @                                       (    ;    I    V    c     q    @~                                         +    9    I 	   Z 
   l    ~                                &    <    T    m             	        2   ]                                                              !             
        +    7    E    Q     _             _                                                                         !                                              
            	    
  *    7    E    S   a   h   r   }             X   X   X   X   X   X   X                                      n    }                -    9    C    O    Z     d             N    [    e         	   a    k     w         
            
                                        & 2 B                                                    3    ?    @J    U    b    U    m    @J    x                        (                                                                                         s y      J                 & . 6 @ H Q W ^ e    J    U    `    k    v                                                     &    /    8    A         s y      J                 & . 6 @ H Q W ^ e    n     x                  f    m    {              @                                  @                gE# # ͫ !C ò)                            (    /    9    A 	   I 
   Q            -     D                         -    L    f               >    I    S    ]    f    p             @               @                      @          
        '    2    ;    @E    O                                Y    e    t                                                     3    J    X    i    s      !    "    #    $    %            \         i(p              Y    c    n            C    M    ^    r    }      @                                  @          #    2    @    O    ^     l   @ z                                 @                            
            '    1 	   < 
   E    P    Y 
   b    j    q                                    1    L 	   d 
                       $    =    V    o             	    
           7 
   Q    l             
               |                         	     
                 y                                       	  	 
          + 
  6  B    J    S            Z  	   k     |                 !     "     #     $     %    &   3 '   G (   ] )   v *    +    ,    -    .    /    0   - 1   C 2   \ 3   s 4    5    6    7    8    9    :   
 ;   / <   O =   n >    ?    @    A                d	    k	    q	    x	            ~	    	    	    	    	     	 @   	 @   	    	    	    	                                              	    
            
                             	   
	   	 	  	 
  $	   -	   6	 
  ?	   H	   Q	    Z	    _	             _    7
    B
    P
    ]
    j
     u
  @  
   
                                                
            
    
    
    
    
     
 @   
    
    
                 )                                      
    
    
    "
    ,
             6    E    U    n                        {         @                                                                         A N           = N             N             N             N           | O            o O            O           | O           E O            !O        	   y (O            /O            1	 0            5O            ;O           	 AO             C HO           ] NO            } VO             C \O           M cO            iO             sO         @   ۾ zO            Q	 O             O             O             O            C O           ن O            C O            C O           %} O             O             C O             C O            O            O            O            O            o O            A O             O             C O            5 O            ! O         @   ۾ P            8         @   ۾ P         @   ۾ P            P            P             C $P            ٛ )P            um /P             C 5P            U 9P            C AP            C HP            } TP           / ZP            C aP            o gP             C lP             C tP             C |P           - P             P            P             M3             D3            P           - P             P            u P             P             P            q	 P            	 P             Q             Q            -p Q            Q           e 'Q           y 0Q            9Q            @Q             GQ            ه NQ            U VQ             _Q            fQ            Q oQ            ! yQ             Q            ! Q            Y Q            C Q            Q             Q            C Q            C Q            C Q            
 Q            =
 Q            Q           
 Q             Q            C Q            C Q             C R             C 	R            C R            R            R            U $R            C 8            Ç ,R           Y 2R           1 <R             BR             PR            C VR            
 aR            џ jR           i sR            A R            i R            | R            C R             R            C R            o R             C R            C R            Y R            C R        @    R        @    R            )~ S            U S            p S            Eo S             %S             +S            9 1S            5 8S            o ?S            m IS             QS             WS             _S             C hS              sS            E S             S             S             C S             S             S            C S            	 T            	 T             T            A "T            C ,T             1T             >T            C CT            I NT             XT             bT           C hT           9 uT           y T           } T           y T            T            T           u T           ٙ T           	 T           ŋ T             T             T           ! T        $   % U            C 
U            C U            ɾ U              U             *U           ) 0U           y ;U            GU           9 NU            VU           	 ^U         @   ۾ gU         @   ۾ pU         @   ۾ yU         @   ۾ U             U             U            	 U             U             U             U            A U            I U             U           	 U             U            ! V        @    V        @    V             $V           q /V            C :V            ] BV            um JV            C RV            C ZV             C bV            ~ iV           	 sV           	 |V            e V            V            V            
 V           Y V           Y V             V            V            V             V            V        $    V             W            ) 
W            U W            C .W            C 7W            C BW            C OW            C YW           = cW            C nW            C }W            C W            C W             W            C W            C W            C W             W            9 W             W            C W            C 
X            !
 X            a
 %X            a
 3X            
 @X            PX            - YX            cX           I jX             qX            C ~X            C X            C X            a X             X             X             X            1 X            Y X            X           i X           	 Y           A Y           E Y           i Y           9 Y           = *Y           Q 6Y           y AY           ɫ FY            MY            RY            [Y           - dY           - oY           = zY            Y            Y            Y            Y           = Y           ё Y           m Y            Y           ɔ Y           A Y            Y           m Y            C Y            C Y            C Y            Y            C Y            C Z            C 
Z             C Z            i %Z             7Z            q HZ            ա NZ            	 \Z        !   | jZ        !   ݂ qZ        !    yZ        !   9 Z        !   _ Z        !    Z        !   Ճ Z        !   ̈́ Z        !   q Z        !   E Z        !    Z        !    Z        !   a} Z            p Z             Z           ѻ Z            C Z            C [            C [            C [            C &[            C *[             3[             >[            p E[            C Q[        !    \[        0   ] f[             o[            5q w[             [             [            m [        0   e [            Uq [            ]p [            o [            I [            ݎ [            C [            C [           C [            C \           a \           q \            C %\        !   C 3\            C A\            C K\            C S\            C [\            C c\            C k\            C s\            C {\            C \            C \            C \            C \            C \            C \            C \            C \            C \            C \            C \            C \            C \            C \            C \            C \            C ]            C ]            C ]            C ]            C #]            C +]            C 3]            C ;]            C A]            C L]            C W]            C ]]            C c]        p                   $            o             H             
                              !                                o                                                      .                                 =  ɾ 1 y    ԇ g ا  ܧ @  $    @ ~ (  < ԧ  X   4   u )     ٙ  y ɫ 9  t        <  <  |                                                                                                                      @(   @B     x        GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"strace   .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .ARM.extab .rodata .data.rel.ro.local .preinit_array .init_array .fini_array .data.rel.ro .dynamic .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                  4  4                             H  H                                              #             @               )   	      $  $                2   	                      6                            ;                            A                             U     p     
               `         & & $                 k         * * 4                 s         '                                                                                                                                               ` `                          X X                                ,                           ,  ,                        0       ,                                <                        p        X 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \    ELF          (      4       4    (                | |             +  q        Ptd{   |   |         Qtd                             p      #  #        Rtd   @
  @
              H-MP00L   D   <      K   0 0d X\`d H-M   00 '  0 K  KJ{DHpXxD#h"JiFKzD{DFPhF@*F(FAi"h0FB7p@ h   mAl1mCmS"	IyDFpG Z ,K-J{D-HpXxD#h&F)J)KzD{DF(FA.@(1#H#IxDyD8F8!"F8!;8
l<
+ %l\IyD;HIyD;8 % % F8F %(F2hB7p ĝ h  *  V $  HxD8hO`  7@FF  "8@F(F> F>](K
T'J&{D'L
Q1|DXh!hh )0`F#	
S:FE9 FOQ=K FOQ"{D%;1I*FyD0h:jH!xD@ ( `
Rh1hB7$

]@pG  h D  ! sF C66 (F:x8\h8Y h7LI*F3FyD  D !6| K{Dhտ Z K{DFh = H F PM0L}DghFHxD:  F!S
Ibh yD hA
 7IyDFH(X0; = \ t n y l7F  @gx8h8 h7I"FyDF  F!F"F: ꐱ8h8 h7IyD  "F+F = F!F"F@D`8h8 h7IyD  > 3 +   CI-OFyDL
;RHQFehxD:<  F!$PijiRjo}A' jHxDC% >jV%`5N~D0F/!@G 7FRiy8F;Q0AFF -#9F ;GF;Y Rh8 FHH"xD=OHxDHIxDyD"=BQiPhj}H" xD=3{H "xD=,X (0ahXFPCjBmHxDjBjIyDBDTBDX*BD\jB]JzDF[(EdD`DT= 
OI (yD	SF 0<@"j0FB%p'j;7h7h7 h7;I*FyDF  F72FF5HX5I0yD;/ =>j2HR%xDnQ	jQ" -IyDl^ ^" Dj\ \" DhX X" DfY Y"JzDdX f   p g _  C :        y l c l]     s a -OMH8F|D
F
AXD1/h
`
hhyD://9F?Aر7h7 h7:FyDF 	7 ( % =g~Dh
V=TVE "
GYxD	
yD<=| yDE0F !:O3J<<P\7 4b{DbF GbhFYh3[E rFh$ BY` !@r:$7	4{D;`F8
FYhh3SE XF8  !@r:t'yDp":}DO 
Dvm(0
c(V(^7h(l(Ys('p(Su(5v(N.ST haRfYxDT1736P!aCP!Aa>pQT0ha5l!xD;`xD( 
LxD
HxDDxD@xD7!  #V
 dY4!F;(!FxD7 JF 8F)F'8YB~b9 5(9 (9F9"FyDF 8F)FBF`(9rFEcX FEU) yD:<8P"	 a 0BMU#xPFyD:( (CPF7LFp7z	
"   U  ?@Q`7kh	x4   DU" YF 0YFT U# 0; hP` 0@"@ K 0 EU+ yD: PR  
GWyD7b`9G89 G<T0he$XhG8T@#hG<<
GW$7OQzDcW<<; !c?9 
7h7 h7XyDF 1
ZOR
	IF90F7h@F9H ,۴_(F7 *FyDF  (YID	 3 # "FB '	pQPOR0@QrPs
GUJ5
T4OQzDU<<c;Dc!FOR9* (7h7 h7zIyDF I ''T FyD:ORB!FIF ?SU8r70h! @"?
GR2TIF cR8B&٧IE-b 0B[,OQD DHBFxDSF4 ;jK4 OQBF{D SF;
GU5U8LI yD
@@0W9 (7h7 h7I
ByD@2  {BЭI yDLuhB BѨI yDu:kj )y 9CDOqXF9lXF96FL7h7 h7I ZFyD+F M9x7h7 h7IyDF *F:?h7h7 h7IyD  ?7h7 h7zIyD  :F#F0FF *rIyD0FpIyD0F  F9 7gh7d h7WfI:FyDF !"?3F`7Qh7N h7A\IyDF n"9FHFO
:N
P0	 <9RJ[FOQzD 
@B0;l"9F F:4KJ
Cl!B3zD F; F9Vn"@FIF9V (7h7
 h7 >IyDF     hR # n   	  ^  ޕ J pl        g t:   p  x|      I N T e b P U s g I K > ; : 7      @FQF9 (7h7 h7ryDF *F@F9O8
FR 2A61??d DYF?
 YF? YF? YF? YF? YF?
FP0D (̮$C
xD! F
" !:> Oh 
 D,P " PF!FF9 (7 h(7h7 h7yDF V !@F
F9x
7h7 h6yDF @k?}	!#DHFRF;Ob(F	!F"9B(F	
7h7 h6XyDF P"(FyD9*(	
7h7 h60yDF !HF:F!FHF:AYF	!`:F(F!F9(F `
7h7 h6yDF !HF:#IFF(F9!F `HF:E
7~h7{ h6nyDF !RFHFF;(F!F:FO`c#`9( `
7_h7\ h6O|yDF t"(FyD9( `
7Gh7D h67TyDF !HF:!FHF:8F " `!F(F9(F `
7$h7! h6yDF e!HF:IFF(F9t!F `HF:E
7h7 h6yDF F
GS!3RFHFS<<;O@r(F"`!F:F9L(F `
7h7 h6yDF ""(FyD92(	
7h7 h6lyDF 
!HF:O!OFFHF:IYF		RF(F!F9(F	
7h7 h6(yDF !HF:+IFF(F9!F `HF: E
7h7 h6vyDF O`RF `!F(F9(F `
7lh7i h6\yDF 	"(FyD9	( `
7Th7Q h6DyDF 
FS@!3	HF:@!FHF:ZF"`(F!FRF9( `
7-h7* h6LyDF n@!HF:IFF(F9|@!F `HF:E
7h7 h6yDF OOa"!`(F!F9^(F `
6h6 h6yDF 5"(FyD9F( `
6h6 h6yDF 
FP@!0 Z
XF:[@!FXF:UF	!`JF(F!F9(F `6h6 h6dyDF @!XF:5YFF(F9@!F	XF:)B6h6 h6~$yDF ϻ
GS3!D8FS8<ZF;$O `JF	!F(F9(F	6fh6c h6VyDF "(FyD9( `6Mh6J h6=yDF !8F:!F8F:FJF(F!F#`9(F `6'h6$ h6lyDF h!8F:9FF(F9v!F `8F:B6h6 h6,yDF F!ZF08F:O`!F `JF(F9N( `6h6 h6yDF %"(FyD94( `6h6 h6yDF !8F:P!F8F:KSF"(F!F#`9(F `6h6 h6yDF !8F:,9FF(F8!F `8F:!E6h6 h6wDyDF ȺO b(F"`!FZF8(F `6lh6i h6\yDF "(FyD8(	
6Sh6P h6CIyDF 
GQ1	OQHF:OQFHF:XF 	RF(F!F8(F	
6)h6& h6IyDF kOQHF:IFF(F8xOQF `HF:E
6h6 h6IyDF J(F!FRFOc#`8X(F `
6h6 h6IyDF 0I"(FyD8@( `
6h6 h6IyDF 
@X0Z9  `!F(FJF8"( `
6h6 h6IyDF 
@X0;F9QFF(F8F `
@X0,9~E
6h6 h6IyDF ԹJ!#8FzD:/O@r(F"`!F"8(F `
6qh6n h6aIyDF I"(FyD8( `
6Zh6W h6JIyDF !8F:!F8F:QF	!`(F!FJF8( `
68h65 h6(xIyDF z!8F:9FF(F8!F	8F:B
6h6 h6	jIyDF [?"(F9F8\ (6h6 h6`I2FyDF )0 #;T(F8f@F8b
FP0}WI8F"yD?=(TI yD 7RI8FyD9z (?`OI8FyD9r (?QLI :FyD
FP0
CD3hhB5Z
}
 M ?     | b $    p 2 B R  r 4 |  L .      E   /  v 2 F W  v 6   P *      P 
 > N   \  z v    "  'K(J{DF'HX
FxD"$3h  !
9&k%(F!F>06
h	+6h6 h6I*FyDF *O0<"		
 "8F8(
1hB5 b h؁ r "8$(FI yDO0< 1 #K !#J{DpXF"
 #h%9#0F
Or	8JB	)Sh*YhBњhBh
I yDO0<=O0#hB5p  h "CF8(6dh6a h6TI"FyDF O0<~ pFFF92F(F!F(F1F"F8B6<h69 h6,I"FyDF aO0<pU   8L M8 8|DhF !"<9"}D "iF8 (
6	h6 h6)F2FF /T (" = pF_FI "FyD	0?F@I yD
O0< #)FU"F0F8$BI yD(Fp   \4\${D-OX#h'8zh6h6 h68yDF 8xF ( F86h6 h6yDF "F!">cF`6h6~ h6qIyDF 59Fn"
.9~LKl"9F {D|D, 0F 980F8 F8 8@F F8n"(F8 (6Jh6G h6:IyDF "Fo@ F8@0F8~8F9
!(F8 (y6&h6# h6IyDF 7 (@d(FO8I FOyDMD 3I}DyDF 2 F	IyDF 2F( F8` F"AF"(` F 8j(I yD 	8`)` F FF FF FF F F	٦I *FyDO0<tB ? #FF@%0K) 		E F!2> (6h6 h5I*FyDF " F8 F880F?jI yD "6s (̿O1 IyD" F8(6ah6^ h5QwI*FyDF  F8sI yD~ F88Z06Ah6> h51iI"FyDF f0xh!0F>rCF6)h6& h5^IyDF W [I FyDG WI FyD> /TI 'FyD60F?!@F8F06h6 h5IIyDF &!8F8AF6h6 h5@IyDF  !PF8BF6h6 h57IyDF 2F FPF82@F808F8,(FYF " F8$ !(F
F8?'I yD(F8O0'hB5:) ~ h u c   ~ U    B ?                l K-OF]J{DF
QX1+h`8 "F F8l68h65 h5(IyDF !">F6%h6" h5IyDF "FJO0;)Fn"	O	8HK)FxDl" {D
& $9 F	n"8NF`5h5 h5sIyDF qHxD; (FO>HF%> E =E %OQ 5h5 h5\IyDF P8LF FC F%_ FYF;QF F7AF F3	 FO1IFn
1F   FO1! F_j FLO1!W y 9F F %	-Ѹ  FR%5B F )" !.O8l-JD-OzDD "8P (5N 5J h5=9FBFF sU (0F  0F  F]F F8I *FyDY
S3(FhhB4'
] y h     "  g /  8F  =5h5 h5!I"FyDF O082HO !xD=)F8HIxD=!F8!(F8HI"xDyD;!F h95h5 h5I"FyDF  7R  8   ? } w e m d  TFF"k*	jJFzD$9;*
JFjzD92	* $pJFzD9' $ F   KJ{D-OMX3(FOr #hD F8F !4CF9*ih[OrCFs  !9`CF !Or #9@"(F1FR	j +k  !OrCF9lImHyDa`lIxDlJyDaalIzD `yDkHbkIxD`yDjK ajJ{DjHaczDiIxD`yDahK`b c{Dc!dd!edJ`e\zDcHaxDb'bdcsecdYXAh `0S"	WIyDWHWJxDezD fbfTK{DTK{D1xf	RIyD g F "fbgNIOKyDa`NI{DNJyDaaNIzD#`yDMH`MKxDMJb{DLIzD`yD#aKHaJKUacxDHI{DayDcb#cc!dd!eDHcemxDCKb{Dc'bsd5bdeAl1mhmP"	:IyD:K9J{DezD#fbf7HxD6HxD1xf	5IyD F #fcg&gf$hB45
m u hŸ s   o    r        X f      )   #         P       ?K@J{D-A }X@"F+hS (;`h !DOr_ CF8F9QCF0Fj ! Or9-K.H{D.IxD-JyD-KzD-H{DxD+I+J,KyD  zD{D	

8%ID$J64yD#IzD#KyD#H{D"JxDzD K H
x{DxD	

JzD #
*hB4'
 } s hٵ O ž ; u  q     y  { ! q ޾  B -OF@H %@KxD F{D,F=I&=J/F=KyD=HzD{DxDKO
S$XF8xY$`0F8 (50F8&0XF8Y
 8x/ Sm3Il9m_mW" )F88 'XF8HY
 0=F& '4 B.  9.B`O0"   	 ʶ      $KO q$J{Dp}XF!J %3hzDch9^BP"40+F$FHI yD#j(FJzD *#Y*h2
I yD  2hB4
}pp h    != (iF7Fع>;F1F"F8F7FBB	8F7
"TMp &8F70F>% &0F  -OF(FFD (v= $FfF(FK=! 8 F (Y?K)Fp[  x
F1_ #+Aq LpBFs 
 9hcD_ +F3 ɲ ): TpBFh: Yx_ +PF8)FFPF==F(F
!8F (@F1FHF8IFF@Fb7	O40F8[(F Fno !K-CF J{D]F
FX
QhF8` $
(F:7C0F7 $B0FOR7(F7
Rh B4 
] :n h"F F>3    -ALFhO cFhDE=hF4  p8FEA=D00FEA=< F>
   pFH
F!xD=VAF=cF( Fo7z*Fu0F=m # F<=BF F,F7h Fp ( "K  "JEA{DpX M#h}D&F*F	= (O0&lF(h  `#{!U $E   FjFEA%@P=B	J FzD`	3hB4O
p l h F 	L|D hhJ  EAzD= (   `O0  F F>bFH  O bA-F7F0 F>[H !J#FxD'`f`zD`hF= F0 F>I5]` 4(FO0  CK" {D`4  FR >FO0:J ! zD=! "@ӿ  K{DS  C 
0S  BȿC pG V K{DC 
0S  BȿC pG2 Fh#YhG ""`F7Eh EhG>7Eh EhG>h	iGhZiGhiGhjGhkGhkG#C#w, N. iGiGjGkG  	JzDhBh`pGpGFhBh`pG < K{Dh G p K{DXh G \ PpG0  pG  pGpG  JzDShQlGFl   pG  pG pGpGpG  pGpG  pG  pGQ1BB,   pGFpG  pG  K{DjG`l 0;+'JFzD<?    F4-+#b"XO	#OrOtBFOs`F0t&  )FAO1  3*FF2x,0x
B   @   pG@FF3x ) @@pG0Fx'+"+[+`+ ]# !$B	mxB #ST0ST4 UT41]F -O00-O- % $+!!+E0KF 	  DHxDE𾁘 0\-+шDO:++O
D #D3E  @0, $ %
 g0:D uEu3
 DEҘ  `&OO D	ѧ gBADE𔀘    (.*7,DD
'
#08D<5EuEoҘ    ڲJ #BAD6ODEYҘ   ڲ *ј pe/E/@+DEIҘ  -(шDO0+(D  ';FD
BwB0:O
#BsD'EҘ   _ ֱϱ # DODEҘ  _r' # ';F  ' ˻ ـT  *?@ .k;lKd;;EuDm #
!Bs ۻ  F)F
" #C;F
F
" # F)FBRѻ #O3?dBeE rЫp!()ط (	;XFOqB )3 F)FCBA+;VBA%kf	;Mڷ 3 F)FB~-;Bz/+";Ad;1(	;XF!B )( # 3 F)FBTA;BLA1a; F)FBDA3;E ; .0F8F  
 .'3FT ?)<               MD    
 t
 (
 	  -O+&&+F 	0FJzDHEx\-+рO++рO F IE	FO  " #O
3x0,EUS0+_C %COE=Fҗ /ݼ97D *s  "O C RBcC # ME*B' pCB#  P "
$DFP3\}eC -+2D^C]89 )Ѹ    h @ -AFx-+0$++0 $F01x0) % " #O
	Cs5-w]0?	/RBcC     cq Oq  #x۲#в	  = L ( x?KD2 D0 x7JE<C 0 yF<L E #EyCE3$H  CE #yB<H,~b"~\@ L
E #yOB3#~c#~P#	@ G #	J z@FB< "L 	 *C #  F  F		ACb0#FR	(CxxAlxxLC  pG
p
BppppG *s -C E,u  O6o G6gBw ,u &OO G6gO 	I	EyۤE E    (ڰ O@BpGo @pG #LA|D 
 *F % 0
FCha{b{M Or}DJ)hzDh!
F#!mjFG (ۡiesJaIhyDm!G F0 b ` v`   `pG  pG  pG  F|+
IiyDi !G 8     `  :` OPpG@  *OP  pG  HxDpG VV HxDpG W HxDpG R   pGihBCj [j3 )ѓ`jCj	Kb S`Ajj	b ` "bBbpGihbPbYh`X`h2`pG  Fiia@i( $bIj "yD@hG a 8F
ihk`ai) "bM"j}D!hPG8 Fa ! pGLkF
DiJiB`Fh`Fh0 )``
iAihiBтiQaBi
iaZiiBBiZaBia #Caa ijQbpG8FihjB^j hBh
`ajKcb8𵅰nF # EBsڰ`FBuڱ`Fh h0 )``7FhF(` `h(*F ,`>pFh)Ѡh !(```N1F,hDh1F`(F+`` F Fp #"F ` FF F #"8Fk
Fh3jG!|)%t8F8pEToO0 O1A #2F$BD %AEU F)Fp˲
+
+"bsFpGh[h FXh Hh1dDB cDh g G  &&Hh1B l FcD  ,##D,`k`+0+@hhkGF0F+(  *ۘlk " # #hiFhع O6O7F A NB0B  `  -MF
EFgFBu ڢEsBs 6 E 2Fй

   pDEu
EAF RFM ){3 *+0+ ypGq0CzDhlBд lhB]hB	zB*	@@h +F0Op0p &Ahh\ @-
BBф[`h ,p)pFF!@jABE)FA<K1j{DEChA60B  $ Fp\ 0AhiiB#h )0      p-F
ԟQB2F
F $O EE F)FBAAѵ O ,O2o CBBгC p             C
Ai
i[ hlBԿ   pGFpGjCiC! pGiBCh  1J`pGiBCh  1`pGCh+i : 3ppGh )i6 9"Ch  0pGHxDpG ny #n)Bf
hiJhSzoAgpGhi0k hL`kah`DkaCihdʅ##Clfj-A $FF'Ff,(U6  KhGE6p4khB۽(8@pGK{D\pG \ Ch"_ k +pG"	"

"	" "wpG0F" `hiFi+F`hi+F0LL 0  pG#   #pG-CFF )F@h (Qkh(F!FGF (8(F!h { (=(Fj C (7(F!k o (1(Fak 7 (+(Fk c0(Fl ,(Fl 'F6(F1i@6	  (
 Fj . k ,pFF )*hGF p` A *(Fh p(Fh (Ѵ(F!i ny  (FppF	  phh5U0F5< , p j
hBȿ`pGFFHh1F4X $'+hB8F
Fj)F`k)Fl)Fl)F h)F k)Fk)Fk87F #hE=)Fh)F`  a i)FXb>h,K #`	xO ))),`    #` pGFHJxDFhFzD . 8hiC%aiA(Fa8  8|FlPdpGPtipGFk lBDRdclQPd  -O (<$LA #c |DMN O#\#BгBлBcEc(e(
KE SE [Ec(#BBE
a b  e / *ѽc d  rahcbolctxet bolbtni laeraolfbuodxt+ihhh%+@h+И+Є+тjR  ( ChX}pG@xpGd pGF8<b(c b, b FhFh c `:#ihhh@׿ )Fb 0hhi
#F	)
!`!+E?;1DjBݐ, #B$00FF % j (ڹlJ!bd#i8Fj5@4 0B1" +FvpGF ?ЈBHhiȱ$Bб?    xB0*)*)0  -OFxFx & IJyDzD .@MEzEI CHEF@E B5F (PBL;+	H *x;    ;FP"F (0D  5
P00\ ( 𘀨Bі ( BьRNH~DD (~EE (v &dBJF (j^(!  !](	ѵ] BBR 
O 
O  -(
x]*z F]EO 
ӅBO
BFFO
H](2B іvI5U]0\B&bF (	  8    
"F;F (?oE	      8( HxDpGHxDpGHxDpGHxDpGHxDpG 
    aDi #ihB3B KF8F
F	c)F%C `hh ,8  r(s(
q(HxDpGHxDpGHxDpGHxDpG    -GFF  F )qeh -zx+К+t+XF #  3SE`ijBT{ (Bh)hB>hO 		R	%ql )3 (ph ($J%MzD}Dh"PCXh3h hh Fg!iXihhhj
%h@$] F % 
F9`  `
F	Vii .Х$j ,%F(F    pG-AFF
F )/ˈh  JNhF~DN~D Gal鹗60ӹH)FJxD hFzD5alY60C	H)F xDhF'  c  ѽ    Kk ihBFpG "KkFJcFF
hiBKcFa<Aa<1;F +-CF81FFC  8Q$Pjhhh  h)ݸ иmm [m +jiB9FG4  $	 B "h dhB  !AFF2B " #FF-OFF $ %HHF  x(FFHF0 o0C9CC
CHF8 fC
CHF, 3C
CHF4 ,C
C к  "Z(HFFFHFZ @ACCBZE
@
<  F)FFF )"x+щi@hF
F8FhCp
C  a8F1i  CA   #F-GFF  $ % &O
	
hHF6XC
CFE $ % F)F-7OFFFFF;  CO C 0XFS			 @)@PѐE    >($᱋|Ҳi*
h_rCtKh +	Ii
j!|ZӲt +Dhp1 )GO2J!F  
FqN $'~D(FY5X(4,O4
J!c  zD$0!Jh:  CCD\ 3+   K J J -A $MFO}D8FqY5"hh4,   J O
-OO  S+Dh
h !i
-x2_ Q09REFIEAE	xB1`203 ,ѽOpG,  &:#;'
 F	#!2FF(F hyj:(:2F ;F()z.),MKhz{D _	5 +BCK;	 +A#+"#+2*F5   Ȳ (2z %	#
D*P)0aa1aF2 0a*x-*+*Z*z*-5=D O6 &: !;# 
 "#h%(v
<!50FCa/_q  (`i!+              H@j    sFj%FI \h #@ E4)F ("0d+FScEB F0U;BF;|- -OF3HF3JxD OhPL	IiE  	*YF&AFQT&JIhzDxA  8 #  KFP"XFfKF XF$ 9F]LP E0F"X" !0FE9F Eri	 0B1urG h8 -O %$F .F
,F  B
19pP+P'pE1p49p6P'#p5B1pP'p_E4VE۔B F PFj O5-OFAkF/l8$O p ?DF0 L	 #<Q+?5;	
#0qpqKq.FDDsF
FF- 
 /BZZ    0" #aaa  L # #aba @xx A " BC"#aaatBx @axAB  a baaxx
yB`]y@ P[xL"  C!C! IByy@fyF^xxB,x2xB ` "-@F!B   F `` (OO =  %a"`ac` ##bHaLAA|-OFEFgFBBT@6 'Or # G ЦBw  F)FOr #@NFwB;F3FPF1F5}D   " .	 Eu  E-AFF (RM(F1F@1FF(F@8h
F ,AЦh .#hzo !{ !%sOr8F5AF52@F1FOr5f`YB8}!@bhSc`0 !|( Fh *ѹY`6ѽ  -GFjFFFNOiD@i(1i=oGF !io )biiCK rF@\F(FGbi)'h8 " "jWwC/
7NAF:F~DoGF (+ %Mh IjQ  (
 +ѡ` )Dah IjQ'MAFj"}DoGF (  (0(4uh  QF("(F5.`1h( `i`QFi5va0hB`iKkb P /z  "j`jG (Ѹ E 0E D  " M-OFkh +IКJ*F0HF (>F E UEE1DEu	< "F+F#I	DEu	 YFFe@F5 E< AF (ЃFFO XF !("F5K{D#`R7 BK-OFAJ{DF !FX#hF 	F (c#*s ]oO5 CHF (NBL# oO7HFC (;#oO>HFC #"HI"yD4P Aa  HFAFtFF 2B ! F	PF 0B1 @ hh -CFFFбٱN $lS$p_8F1FBF4( `4LE  F8;Bc; (   B]  -GFFFBK  &F{D GFFOv8Dp@FIF2FGd2 h(J(FzD 1G8F? ? r? FNF~Dl F)FG2 h(8FP? :-O &̠FFFDFF "h46  #BBг??2 h   `aO3#d09Fh*FGBF (
2h)'2hfa &
#-6?Cs #CE + !	 aa5v@
 	  Op ## ?     FhF !4*F Ozq
 EE@T!EsFF 0F    "S>ȿ  7F " #  a#iFF @A1(F >     pAt I ? @F:H`C@B -CF*0 +~ѐ( @@P,p'Oe<F=4d!(F@;JHaMCd!4F@BqF5H`C@ .+6+  j1`+Q2@) FF! g*+;#KPKN`)@	tFQ@t+0AG E{   ( ) 	+ deu E     җ@    pA     @@ZD
Q 6  pF(0 +mѐ* 0"Oc``2a` # !>LA0 #@/01K2k
E1+*0d!H`UZ;3D[{+J`C@, ;)+KK[:
+ek[* 0a; 
;+`Q9 9` ( p   \&       @}<A    @fffff^@     v@aTR'>@ . X-F # !!H!LA #@TOaa*狈 ț
?:<! 4pa F?o;!)8@a @ 
+1X  \&         @@ .7Fh
F*݄lGFlFiFG !FQ@D  F>     pA𵝰jFFh0+Fh2FYh3sEF F0`5hFYh3B fF0"4F 2  (("  BB40"0F4븱%2F=`F `uFQ`2EѴB~@ A  abFhFF ,   !"hF4K! p{D FmjFG0  z9 -Ah,j`%F -h)FhF"4 &`xh(  FL	!F6.G_FDF ,  F
4Qh|,F!F   H !D"xDB滒X -AF~ -.
)F"@F4h &``,6G_Fxh (
Fh )
FFX5-FѠ` # `v`iPiF+ !haa `*8
FF( 8K(F{DjG8P: -A &)IOG(LyD	Y
hT

Dd& 'Or	DCEd  	<	$#O & ' FB	BCe
O*FCFRѝ 08  0< ? F	hB0r7 hI-CFHyDX9h E EFHFBF EEu E;hB0\ 6 hsFBxx4 B 3`L1	
K B 1`iF E #"FBB4`O33`|  -AF`FyFxH1yYz] @ x!F`E`I]
 @ #c`"`"aBEؑk-e ` ""qkwKj?4@EԿ%5e0lkAmxDE,Y0@F^0FF"P"PB 803(F(4!kx
j  !@c #F3`-AFyFxʱ yX\ (F'- 	_bFՍB\ (F %B`kgCj?B9F
6.# -OFiF #0xFF $0FiFF  '2]0 0$ !*F7w  ib(` (5 D BӨpBEhKh #F4J``K`YhQ`Yh	
` `Z`h`hZ` !Q``  FS+FFJzDV  !O0FDiG 8  (`\Pzk0FiFG(P,`    3 FM
(F1F?1FF(F?h
Fh .#hzo	!{A (F}!?5BH}!? h ( F (hB	  pG-A $iO0Ei7nm0BiB i)F(4B   FCYB *ihJ`@ F@Frp 0 # F@F h (  pFj
Fӱ hCijB0F (=j()F@hbi%4fIjyD iGp ~4 
JpzDiF
F`!hj+FbiG ea ) F Fp@9ph4 Fy3 lP@J l!A (+0#@h"#J  pG+0#@h"#@pG+0@h
#8  pG-CFFFF@FIF2FF,(8FG ((F+0@h	#pG #(F+01 + +  8  pF[`
F. " #B0s^"01P" (4Z`
# #  p    F#0 ԟQ0?dFFO O iF`#i`h # "O CFF             CF#@   A7F!?XhiF $ %E0Kbi    !A0F
 `hiH A!B F F!B"L  , )ipGV *?)#	  !@@BB0 *s "I BsRBcC +* + O +  + Oӳ O *,       zLi	 i@A      FCbAhx*Н*
рh
h(AB!`  Fb)/hxdҲ*ل+#0+^+Ё++И+c (   pGe)c) a)   pG  ( c9) pG  pGhi6 d w,F&iFm #a`&rnaa$4B $O6o GE&FgF45
,Ѷ?%mdsg #5gqffl0ng`6Jf0|* d uiB r03B aQt0 **
h`!iX`A``   8hjB&,#E"@+@Rh!h hhB}a(b(a  P 8b,   8 8  8-C
FF  hhB $Ohh	PXYX 0B 
(4B   -CFF1j )   F c (^O a *Xч +Pѕ  xHEKѨhh (Ehh (?(i!i (9ѩiiB5ѵ pE/lCa7jh`hB"

hh@gǹah3x[v  iibiB    -CF
FalDhZ`1O $O	D	(FX3塀h
Xh`.N!~Dch
H"xDf`  4,  + t+ P+ D+ pF|iB)tN(F~DG (1 h(1h+ (FG (   tp  pca@
 p + -CFNFF~D "hAF3FMEDEе??1ph  "zaO40h	G1_ h(1Zhya F * -AFFFE$EuD . 8F"F+F ({i+  xa
   @
0
(
(
((
%(n(( pG@
ppG pG8F#|
Fi+!t !3  8IyD @G (0h-(F0(ea8 8%t8) 8F id0E`h)F0`h)F\0ch "- !` #"a bc 8  -CF
F0 $0hDDVhF 4+h6B _o  mpY ve d !i|hmBzB|* 2atra3Bp d w &iB۪BzL|, 4Ptra3BpFFFkBĿc&dpp d u !i\zB|* 2atra3BpF)0# F@h  
(K{DS  8HxDpGHxDpGHxDpGB  u u u pja
J )zDUo
ڃiFiH 2F?F FGp  ) 7F h "FC- ZhQhd,d$ $cBdEcDq F>m#aj ) g8F|
FB+khi)FG8#|+-%t8  8pFF F1F(F0 G ((FpՃh[hIBii$D0#BA8b+@h0$! -A &FF| F9FF Рh9Fh@6%FpF{O qkkhjG(OPgO pgo?O1gFyk"z@bh	  j "!G(F,0C !"C  , / ( ) F1
Or"-CBFF FFFF"FAFF3 *5 = -S )
ѠD< < , )  K{DlG ' K{DlG '  \@ IyD
mGf' K{DYmG R' -CFL|D%i
K !gi{D!ahOxF h8F2FCF G h%aga,E tD FKF{DjG!FF zIyDiJzDh*FEeuBs 0F#Kb $Lb
I0FyDiGFPF  1F@	 !<<`0F & D D & K7BBFIyD
hjL|D hc(F hxiG   > f& ND 8FF !*F30 F8FO p `  7F( F9)F9 F99
 F@)F9K{D F> 8D Fp60   0 B P  ( C0h0  YS B0Fe  ,!68
FF !*F3 F8(!F #!w`!FP`chcah "Kcc``c&-AFF #FF
 &
)nh6h (x ( F0F (4pOpmFLnc`#0 ``jh)h3jbh !khT .-h-x'-"-[-`-`h_"-`@@b!b FF "
FF!FF7hb:jaXhBOqഃ?,"F?"  !>E C)CL0F7F
F F
)F FjF #h>FQhF(14FP ( 0F3`kh'p#a FpFF	 $QF (1F*F3 #cU Fp1F F F @ ,Sh8<+h	cw hFc8Fhh!< h4``%8@8pFFHB FbD1(#YC1B h(` p  !)` `aQppFF	 %F~F(F1FoF (!F2F3r(Fp
FqF<JQ\\3RfGT #	!BO| !STF h!0#h`ahA`F
ihIjh(F1 ap"6 chS h1#i}T0"(FcjB!id"
T !#iAp ipF"0Fʲ
  pA ,F1 hZhB
`1]``ld`lAdhp h!F (FFFc@hO~q 1h`0`00a? 01i72a{ '3 E`hP~2 #Bsv` ``8FCzCh=`%@hkr88F $(i Hh4kiB8-AFo h% $Gi,1o
BPh4m B۽pFL 1F|D:#jB0FFع)`k^kukjK(hBcc ## #dF
HxD@kd}	L|DF`k> 1F`kS(Fp = = = 7FL|D h'#jJzD Bi!;h#ba  )F hL|D!h )F(FMF IyDh	K{Dhi(FG>=   x= l= F (@ K{D BM}DiB(hiO1 ` *jaS+b(hM}D*h FNQ~DFB0h 9Fo  9Fk	 O1f F)jG0h@+j FGJ .=  < FhFF
Fh8Fj>hj 
hBh0F`j>X`jP! `jC!P hiBa h@8Fhh` hej hw(F8 @mX@-AFFNh{* "HJ'xD@zDh#}Mh!mjFG00@
e hpa @, $ %\{ , $%F @(F   -CF|FB	h*|8{B($..A)"*thiA`ca$ #.0. .  ha*ٹh) HL2iF|D"   h(F	P0h0Fq(Fnaj.;$h(FOsiF@0 @FXFFF0J! iFzDO	h(F8<0h@
 $,4ica".ЗIyDhZKOp{DhiF(F`0= @F(F .t>s $. (t8s $$ F "  r b -CFEj#F/hFBxh$9j!  BJIhC )0B
Ck"x8F!CFF (= B%HIhL  ) x8FCFF0hCn $!KB	Ih )F$
x8F!CFF (xh F  pFL|D#hñN~D0h(FAAB  e	 O1`(F"jG0hp@!jGp  8 p
FFa.4h"2`pP 1+`  QAp(Fp@8Fh
h`h)F )#!`!``aav8F@ 1#ih X`0  i#w"@ ApF
FNi@" !hF2 h# $0hFG hajF  `bFa`4EF 0FpF#Q!	 	 hajo  ```b b8F U=i F8@ܿb(!j`hG%b8 " i8@g@  F8@q8p
FFF#Q!	$+F!FScEA ""b a("\Fp8FF(#F(FSB@  # b`b8-F@v0 F@% Fp# wFhb@!8FcpbF6P
"!F8F "  `!`ea#avv 8 	 4apFF %!h0FQ55chB0F!h0F!Fp@pF8! h!F@8Fjd#hX `@ahhG(F!F8@88FhhX`PhhiG(F!F8@u88 "<A<!D]i F,F -8-AF81F8!R%`hhYG0F5 %F B8 F> ! 8Fi F1. );  -OF
h#Fd0(O @hi .I:DyD
D!D|/{/|#/S|!/фd/S|B=F/WDW|_/Q/C|\/C|S| /C^'pC|:3 * hj  b5` = G -OlF!OlFđA-iBhT %j O*g}0~!c!
/
' !
(F2(!  	_ O ! " !hPEFFFeFFsF  %bl`BQE-FFFFbdhb  QEuDFFFFl`I E-FFFsF"ldJ E-FFFsF"d 2E<-FF M@F)F   0
6  (bll$L #( %	 bl3blBKE1N0 2[1 ! 2Bh #JO0e]!"c"f"e "cg #`e\a $#(8a`#( %	 h3hAB	 
-GFF	 $-!
F (shC`8Fqh  F `ȹ8F!Fs3h  8F
S5	nH5 5  %phB F-OFFF	 %S!F ( #C` 0` @# [ B8F!YCF` 8F)F-O 	`F%RFV8F		 bD8FV D8FVD6,$,6$  46E(F-AFF
F	 $RP!rF ()h2F8F2F `8Fj %2Fb8Fj 2Fb8F)k|2F c8Fik 2F`c8Fkp2Fc8F+y#qkc dO 2F@8Fl 2Fd8Fl O2dD "abaa F-OFFFF ) ΀	#hO K	FFjFF0F - 𹀹 РhXhIbi'i'D0'B8`I`hHC # F (F!F1"NJ P )O0OObF!F(F1 !0 2jGKKKi;Fh`ah1kNA` b0F!iJF(aoA QF F;i Pjh"0FK"`0FhD`  0"` Boh:F0F 
:F`0Fh ` 
F(F # -OFFFO `  )݉1 H!8F+F (й 0O CGO8F5	YH 8Fahp`8Fh`"2w!j1bcisaia8Fwk~cbrwkch`E!iRF8FlRF0a8Fajpb8FjbEE  E@F-CFF "F +`x)]љj )ZБ"0_ *Rah H  (I(Fi/F (BFD + *0F "FAFHG!FF(F6i %(FF=FF+h$#`ai F~!FB(F1yx`7FBp`p8F -CFh(#!6pZaj0F(4BӽO	ो%P  F3aj0Feb(4DEӆ6pp
FFh iI 0F!i0Fm (!iCP aP" ,=#h@(<(0 -p8Fh# F8@N %`5h8pFh &`h;`&`(F.h45F -e`pFhChB	@~( hKF !`pFDh F&h4F ,(F Fp " #    pF %0&m5i#nB y0al 
hDbE`lm #e#fccp   F{F+ |(@0F0lhTJzDB^ '`ty,ET " #B,5y -E,C#R '7"E "T #V?I # #"yDDFy',u 
z0lCCF (0l@FXBu0l"F+F)F " ##
2{ *0hEFk % cbw i|@\,A F)F",P/P2y
   0!0F !qt+0 + ( #"tB8Fs    r   8Fk % Fc rs#ykh F`y * l F ! {+!!t  `tsj: F#{ !sbct " #  ##t8p $F&F(jP$ )jA$`4iBp-AF0FFF&'w.ؿ &EF Fe(F1F<HF5F=F>F  Q `z+F :` 1 *'w!U8O QQPP  F8 F@`8FF *G1)D55C55;C)5"CCC5! *6 F8@E!h9x_c F%x  )  F8@(FajI(F!F8@C! F8@8-CFF	F6 Rc
`1F*FC )i9$4"i   a 9ep!ѵ	IFF ap)F	1h BF0`1
;h"6 fp%a#
%afphA` .%a(FcF8h)F2Fj# acp-AFjFݹhh(F1BFX"6 h }T3 +FhB #STb0FO1j #AcDh' h*i(F !:F1
#UF
F)0F)F@~'F0F"i4BFFHlL iI `
 (Fi1F(FU>F .ѴNpl(FS"I6i(Fah(Fj=(F!i9(F4(F/(F!F@)  Fk hk
c C`kkcK "
`cpG-OFyK!F 8F!f O k p0"E3F .B2FOsBp3&KE%p`E$DFA=HF+@`d0P1P QFvF$Ն.P!0FphAFhlGh'0F !0 #10`$
+ *h?C F   F{ hk yhxh*
YkQ#scq"  
`  l Fa (8FF(F@ F8pFhFik0F^h0Fchch. #`p-AFM{(F1F<h1FF(F<
F h0F  (%j#hzoN٦h .W`h{(@
hBL1}) !h +bh=*.  OqF (Or1F1Or0F !1| h}! &|0<)F` FFY FC68FchX```
 "{ A#s %
(F}!<>5 h *Р(F-A $FF%FO0mJiBi9F[C53nB F-AFisy+	sk0FYqcyiAԿrlhq+q}F! B0h/@rk yi E plU"F+Fp"  AFE  Epl  (8 %h`i/eah ,8FhhhF(F  !"FAF F4` %(FpFh
F $('hklql4L B)hh  pF (4L|DjB kB`k O1Tk)`kjScB`kc ###d $(FN~DFpk| aB6pk(F F Fpn  &  -GF{FF iHh( $ E! # " #{+@FFFkh )iFFh!JzD0G  bb   @F h vv%(FO6  #BFO7A A<a _@@j (   -OFFFUJFTK{DS 	Fo
FE"A E{ | #BB!0l  #
C (q E0l" (g:I"yD0h (U" !0 A 0l (Q" # C0l (F#R9! #
C 0ls (5" !A 0lgP0 (ٲ?ذ?QBCBO20F9Fge #oRC #	 0B-h  Hi hh hiQa8F F F F*ikhB٬i ,8-AFF &jh@Eij FJjbh;`f F<h ,6jBӽ8h{h heh  `` Fe` h8@8pFhFh hbhhih
!
c` `na	 pC<\a F hp@p8Fh
FhiB)F F=a!hh8@˻FhF
F h"ichB(F(FZ
`iaaiia aea2jS3b0h h@8Fh h(F !_kibhh``*i
0`` F= hj(F8@  -CFF FC )T-KBQ+L|DjF0FGEFH h (=&M}D(hA 1F
#K {Dh"FE$euBsQM@F9F}DjjGF`IyDi0FBkj@F9FGF8 F   JzDh%bj@F9FGF $ DF F2 
 H    -GFnFB  y +O0	m	tF 	 !O 
	F $8F0e %ixa1lhC#Bu #opkaim8a (9Klal:bmxbnb		07E`ѱFhFB ) h#i(!0G6 F $6@h  $ FpFCz +5hzA` ./bhk{(  Z`rpeiz"khkvrmi -ehkR Z`#rFdi
h8ahkD Q`rdi ,p8F $(i Hh4kiB8-AFh% $_i,0oBHh4m B۽FGhFF	 hk (` F@OpFEhF~1F+h  F@  p8
FFm -
chڊ" ؂ah͊E˂bhЊ F$ F(F88FQkh\|$| ,$$(F F8pFDhͲ> 1*"bE+# ctUt $ $0F Fp-CFFFFuh /j 7'aOp^ &`e`Xh``  ` "[  ##F $0F F-CFDh
FFF !8F%) .&jbj |~O	k	%b mP 2F hF jab B8Fw(F  pFFMhF(k0T!CK{Dkc(c F_(kFT!6#60pL"a``AabaaAbcbbAcdccAdM p  J8pzD?F+%x1\U]BI xyD
\ p   -AFF $2i#Mh-G8FX4DE %(F-AF
FɱFti6i<F7i8FE8F)F0<> ,O4 F-AFFh $Oh9FX 4BO4 FFF`Fh $+h9FS4  4BO4 F-A
FFh $O	h0F1Ih (4B   -AFOh $hOh0@h09FJ`4B  IyDF:x
I FyD4HI FyD. 8    C C C 
FhAii̹jlB,lkhiliBxh)h,l<b<F6h . $ F-CFhFiFF4F %
#zCE iIFl`zC$j ,=` -0F  FGjFKjB,ѐ, , B& $ qh jhQ$ R$Bii]E0j*jXX i 8  84B   FK{D:FUF - *  [ -Д 1_]PBI2x#xyD\\@Q  -OFJFxFzD\̲$xJPPLDDDF	 B0)F2F
 0(D 4DE Ζ ]  `  -G
FBKxFL{DtX\!DH	d	 `;\ODDD0T\DB7 1F	 *F`04D @<b k S x     -AF!JFFh #zD]_/3\ /d0xD  Ȳ8+!0FF('"#+U4*Uc,"*TF+ *"!)U4  (U @ /  ~ p
Fx-+n.$+ 
++]ң	* ҁW!+  +@ʁO"+ #+@ÁV(+]&+  x*+_W++Z,+@𱁢>+ 9+	0+.+ /+@J;+AA<+c=+@W[+ @+ 4X+@fx+ d`+@y|+h~+@|q4I$yD]\.Ax-)	4 $]$
*!W   (`$y $`tV X Dx*,тx
Y $ 4**]/+ _] *ѕ#Z L$`@x=($$QCx=+N$ >+ <+T$O Dx=,P$>,U$M @x=(Д$K$@x|(S [$,`$( R ] $BE44] *'+t^#$AxD@ڲ
v !)`I $yD 4]Ҳ *.+4D 4]0˲ +т"*`]e)E),YxD ڲr+)-)lK{D ˲hJ4zD 4]ٲ )т"*`)`4|!D] Fѣ4]*$] *J#I"
`TJ$zD 4]ٲ )ш44$D]0Ѳ ),Є#'$ #,`D$,`F3$(*!FD !F4]S`)+ьQ)+Д#+`L:* +HJx:*44] *Bx'**I$,`$yD 4]Ҳ *'+Ք!)` 4]'+ ]4JzD\F$ 4]F,!Fk  (` 4 Fp < ,   ƒ   n @   ؑ  L FhF-U3PTh
hEh
#iBh9F2F0$h= , ,F FpFh
FF;FFf!h;F F)F2F hp-GFFFF $F,Կ&F +i2@FX%H(i9FRF h04LE  -GFFFF $F,*iԿ#F'8FX0
 1FJF4DE  -GF *Jh )GДh ,DFhh2F8FF (;ih98F2FFGj
F/Fd &O
	D!	09F/(9(űhC&QF"x *4
" F/D!.6#x#B"F !   : 8Fh Ft!FFhl808@0-OFhFFi`bJF ([`j 0 WIjSjX#  *MbhBѹ G0BIhMi   FOF2h( &#h  P QF =  8  K} HX& )chBѹ 
6B7Bhji '(F  -OFhFFFEFF%)F:F F FAFRF[FFXh/@h+h` `)h	jhJ`hhO YhB)hY`P S@0(F`hAa` )s Fo`k /^ BF (X`chX``	(>"hB:G @A 'B1 #F &hHF)FOHF O/jh`9ihYF:T:F F=h/F	 /h F52F &2F)F.F
>FQF@F!h:0F0F-OFFFF *:Fy;AFFHF:FF (. ,10F=]FP < "!"v,:FAF `O`ab/#hHF:FU#F!hF(60Fx%F h%
:  
U(F-AF
F )  1.i!(A* *н!R7h8F9F #Fi01i FA1F FFF< .nj*qǹ3ih`@FAF;FFhl80h1iai F 51j F 11F Fwh>F . F)F   F)h Fj Fi  Fj 1  )F(k@k FR&6  &kB Fk F)FAֿFF )6 ''T@7(FT<(FT8(FT(FT4G(FT0 >(FT F(FT 0@4(FB1F@8FF	h e(Fj(Fj '(F!k Y(Fak (Fk Q(Fk 
(Fl (Fl8@ 
8FF9(F!F8@c88FF )/KAh(Fh`  \;"(FahCb!i `(F  )(F!F8@-8FFh 'U7 FU FU3h5 FB۱h F1F@FhF$ 'T7(FT(FT(FT(FTh4(FBh@ݾhFFAFs0F)Fh@mc`[p3H@|kiKaj`P |3H@|RiJaFh@ڿFF
Fyj "E!F#F*FF8F1F4F F FF
FA h<!jbF@ FFFF )=x+щiBѴ )b##p0
h "UF`i ha!F8F,Fh2F+F8Fh2F+F`8F!i``  b8F2F+F #+F  F-OFFF
Fih@FJFSF4YQ $O)hB۽-AFFFF )3	h!k(F2F;Fk(F2F;Fak2F;F(Fj2F;F`c(Fxk2F;Fb(Fjt4!i(F2F;F8@4 ܽ-AFiFiFB)jP! hYCh(FU bH(FAFe&b  i("1FZC/M(B(F1F!j(F(!:a!j("iBCEaAO2t\aZ`pFFF5u|#x0FB!F "p@h*Fhp-AFhijh?0FT(Ӳ  AT@F0FAF`?(4 /)j(5B0FAS-AFF )+
FO pGii0F9F;k 	կl?0F9i20F9F.P5iE j0F!FApFFai(F&ji(Fh(Fi(FH!F(F4F ,p8FFi(F!h(Fah(Fh(F!i)(F!F8@8pF
Fiqix Fi Fhc Fhl F)Fp@ȼp-AFFi!"FFFCF(F1F"9F"`(FW0cpaAF(F9Fu(F1F. F98FhQ) R              a a    U        U      [ R   U [ a U a U  U  [ [   a g  g U U U  g j U    a U a      t  z  a t    a (h!h(h!h8@
(h!h8@\(h!h8@ȼ(h!h(h!h(hah8@(h!h8@(hah8@Q88Fh * {2)Fj#hX `(F8  8 FˉnF ( ȇ  ! !cbbaczh  -h -8Fn%a``eah  d-h -hF^8 ZNd_rbh, N Sc`	-CF %&ih5ciB۠i%  q Fa.F' FO   FWGB 56bi'iBS !/-ea#iuB
 *FScEB F!i]%a8
F
ihS-	!ii8@K8@88FFBF"FFD `8FFP!@	i9F*F0F5s]i , F  -AFiF0FJ3x!zDF\@D: (F2FCFF h```U'aE'@  -OF<JFxFzDF!z\0@:+FPF2FFO dFFF9FJF m h`EĿFF +
 )B  6#H2F+FYFxD &F
(F9FJFLBȿ,FhȿF -
 E@F%aF $ $ 1F*Fa'.!i "PF!FZUj!iAh3
" FO J sFFFF #!FF 	 0F#o p|I"-AyDFh 4 F< %DFUp F2F9FW];=+5-    Z+ x 0e0 pGFpG0C+$8F
F   !aa&8hYl쿃hlF     & ##h#0'8F  
Fn%uD  !"& !ba' 8F  h#"c6   J #zDĸ Ւ  F+ FYK7{D UHS+ 
(.IVC"ci KI  yDH`JI  #yDK``GH"xDB``zEL|D<4-hVCM}D$h<5PAL|D4h
?L|Di%>I yD<Mh}D5ĕ  S7Kh{D`M5Kh{DBh h @0Kh{D Qhh 3+L|D`4-h
)L|Dn%(I yDz&Mh}D`5*h"` Kh{DYaBhaKh{DBh JhzD`    >@pG &        0  x l R : 0      K-A{D  *@xXlعYhN~DN~DO D<H ͬ  h {dM}DkGF (@_ F=  QM }D   *@>ii%I yDM(" !}D(F.
K{DZh (`HxD0c)P -ݞJ!FzDb=a "G2`8FBiC  ZXPK{DaJ #HzDxDa000HxD B 0 +܈H "xD   IyDkkG (@݀*ih  ) ˀ (@Ȁ0F ,@̀xM}D  )@  (@'ppO!F\"%FD8F<F.lODy F$5ohO %Dy F$5dM F}D)F F$ FH]K{D J[O
 %DPMn!VI yDUHxDn@nGF (?F (7NK{DPi2Z-!cb]b(F
!9$0 
 CI #CJFyDzDcdCFb,k`c>:JzDc9I yD  $7J !zD5M}D "0F C0 +  !0F $
(HxD0Z 0 F- F n   F $  t     b V d R 4 $   F |  l ^  @  ~ | X    l 8F
F%( F)F8@*  8pF60FF $'!Fp@s B1F(FhF (!F .j!F(F4F F1F!6F FppF
FF0F)F FppF )F & hajFB]ahcjB h2F %`b`` haj h1F `bah95`j BТi. a#j`hG`j``"ࡋ!R ##bB Fp8FAͱii")!Fi`h"i@)F.i#i!Ba(F8 8FA
 ahcjBТi F"~hahiTbhiSXpB q     -GF + B *ϲ/ ikh!xXxYpp3Bw/Ѭi$as YiHA (hlhsF (*@/FOxOyDOxOyDE+*' , F?BF*@A
"` XO 0" @E +JEp
Xp30pO*@
*"D(8 Xp$:p3BG+*' , F?BF*@
"` XO " @E JE
Zpp30pN
(   .pDXp $8p3Bә "a+*@~FFOxNО`x 	 "XIE؈B Ҕ xOipr@2
$
D"*+*bEؔ	?@<:pZp3BE <p?<:\pp3D<p4<\p?<:pp3FBO `x 	"XIE؈B Ҕ xOipr
$@2
D"*+*bEؔ	?@<:pZp3BE <p?<:\pp3D<p4<\p?<:pp3FBәa(F $p
w#Pn`nbAb  OrOr瘐  8
FF#Q!	$+F"FScEBѡ!cЪ a;@P F8@  80Ͽ  -GFF FihLX   *ڹ' ' %	5  %EEp] (
5EEqJxR 'G w'F?  p9""
 FEE  FQF "0 `h1FRF.s FDE[ #f`fb#b
T  OjO jf`J aO	##w)-'`hxBx)* )*' ' FRF (ѣi`ha.`hiFTbhiFpwA rEE   *bF'{ ʚ;fF(F"F@50h6@|,i( O2 @F#0@ 0# !c 0IO2#yD Fhh
FlF0F
FBsڽ@ܿ!F@?pFhlBu $FCF0F@ FpFcFMO2#F    F  ( F@ #Fh(JzDR   ! FO2 #@  IO2 #yDۿ t IO2 #yDѿ Ӂ hJ*	IyD
IyDIyDIyDIyDO2 #       ##O4c 0OpFh**$FJFF *s ڔCTI0FO2yDp@տRBcC0Fp@Wp@jF~0FH@S+p@%  -CFFF !,"-ĕ  cpB(
" &Oa # "C+	 1{ $Z@Ozr #/M9C$ E=FhF-
F(HxDY^5Fĕ   &FHF^IO2@FyDF! "9` #'
+lrX# + $00@@)#<`aFF%\  F#q!
)тi"hahiTbhiSXpB q   FkF P ) F
"e`
*FO S9h`h!a)F2F-`h !F # " # F@E8F!F+h)	@ #$ %C #8p !FF(q 9 A1(FS+p@p !F # " # F@ !FF (#*s  ~CI FO2yD@_J~ F* #@þ#@ھ 4 -A- !FVF  F(5E  !$E/E   9 A2qp~\    -h7v   #sv8  8 !F
FP(F!FF F8@8-AFAFF ,F  !XBihB
*z* OO0B2 hpJ!Pn``#h 6 8FDjcCb` B (hj2cbjO3A$0C8-GF#O 
 EFFFi	y 
EiTF0FQF("-~SO EBFiipF (3ixO	F	 AE$4iB
d B8Fi"F
a@4a Ei	iEu E;FO 	 #	iqaCs # 	3b $ FpFj
R  3"& rCFP)F h1F8e` b  p p-CFiFjFFBi"fhjCAaT  p` a`p (%(F " F8FhD h1F`! F87F F(F!F F>-AFFFF,F8F #H @F!"#FFFFFF#F F/a(F[o " !3F(F-C %jFh4Fo	TT,ih 8FT54|!sjB-CF"0FFF
ʲ *!j( 9F\biF h HF61FBFci (F)(FO1ho
Cn $ FKFh`BJhRB(F!;F0Nh0F#F0F^(<T#RBcC "O C#(F "o ;F!(F(F1F"F;F50 hxd-ل,#@^,Ӂ<,I!0@0-AFFh +) < ,F*x3b* <,+b(!:F#F0Fy0F*FO1#F@F9F"FAн-AFF#l!7dF(hF0`q` %!` o*F F;F F!D)F*FCF  Fk F!:F#4 # GFnbm!Sce@pFhFF!O3y!h F! "+FF F F1Fp@"p-O FhOP 0HF@i 8z F
8

j5)	 Fkk F6V
 q/,+l +)ݩj F@il7h FQ_!h Fhh FY<? ilE FijiBx! FeV
 FB!  FjX*j * FB!Q5 F)!k! "+ku F9F8  FimO OcrXi3"ʲiع򪹰yUP|0: F-!jp/л  F-!U0,UP<p/P5>6  *7i FU@9FH+PU4<B$,*$0 ! 0S! P<B@U0,@,1 BA*U0 @70gEۼiE
l1FO4  sFF!,FK{DK{D" (F!FF(! "# 0F0FO1"o
'l!d|Z g FF+hhFi 8Fh!hZ#F%! 8F2F#(F!F@s $FFj!F #FF2FO3F(F!F(F4(hAiB|7F o
F(F!F F>BFFFF 
!+Fh"Fq-dv
iBۺBR
a1B-OFhFFFi FF *@! F [F!hFh  Fw!SF F 5 FAF7hE F!"
h!O E2h6 )@ FIFRF;x(q T*[ 0FF0F
!hh F F8!zh[F F 9!zhCF F F!0FYF$ 0Fyxh h0F!hF 	O F[F0FhZF* Fa!zhCF0FAF&0Fhzh#$h2h0F`h`0Fhhh F!zhC
!h Fhm0Fhh :O1 F z!x FQF^ F!# "	-GFFhF(Fv4!2FSF F(F!BF;F (FLa!(F2F#F+HF!FG@-OFh Qzh0F0D !0		9F(  0FlhJ!BF FH! F7 "! F F
L! #JF F F "[F_!F F F "CF8! F! FaFF F "CFA! F F FYF!#JF  F;F9!  " F F!-! F0F9F-h --O
FFFF &@+iF[i6 +
FZ=k Fa!n F!E8F	h2F! F Fr F)F08F1Fh|( +&&  &	F
FSF  F9!BFP|+ FO1*h F1FOD  -GFiFFjB /iܽ (3l* %&DFC)F		 oD562BYpapiMa   5 -OF  F0FFBݒ2oF (A!F(F&FH8	Aa O OUD54ĕ  >CED0  !,GDBFO02bB0F-CFFFF1H!Fh#C!F 0(F"F6 (!F(F2 $ 8O 	:h *бF>F1F(FIF (F   FpF !F hFF-hsh(FYi(*i(F `QX>` Fp-AFh
FFc#Bb  ")FrC O2  F !2FP," @8hA9`(F-OF"xh*hYhiiК*И*@ )  p #XijBRii "S|BѴS|GE<23bEۊj!QCCGPiX``lAO0da`\a)i᱈h  ! \|>x.ѸiiBѷp`B`1AEh (h`K`!eb!pI3@2BDi /C $;!FX  (27OEA9 DPlBd  PF#i !Fh FXF QF ` +lB dO1eb    " 0hha *i0hAFihM" $ (b /-AFFF!!tF" (F#!h `F(F /!F $AFKF7  FFhFa(F!MF(F!``hZB("(FhZC|h` h"hA!`  !x,~Q(F1F!F(F $4 F-CFhFP!FF(FF(!FhFP"lF,V2Fq!(F1FF@FF&`'(FH!F`c cO2 O!#ct#b,#qdd"abaa60[(F!F}FdE(F!F
 $ F-CFkFFwc kFk@FQ'7 FB@FIF@Fk  c@& #@'0c8FyAdh"(Fi!FF(F8@8p! aF0F7
Fr F8 FX )F" ,(8a  p p-NF~F~FC` /F%F /Xк Uh1i EEr~J	'v	7 /;ܽ}thEO ,AupiBq0F#v*4a0hYF"F`XF!FMFP h *ݱh,`"0F2vN켱h:FhQF,h`  pFNF~D(F1F"<, ,I(F"FyDp@{p h gh -O-F'FzDO VRX}Dv
hDVDD'}DDH %+q
F/x1%/ /1F: / 𷄰F.FsxuC"yD+  &	1F0F 		
	  !
#&'	"? +*+*F
& %"$h ,fB#okxF230;{x0	/.+kx*+j
' %%h4 -mBx5?0=0	.O5l+	~{xl+Ѻx" "F "' &O		4SE(
C
۲ +@

<  ((NN N 6. "'
x"B' #&"h *s ڳ O * ΃VBcCg#йNR4$ 
! h 'F ">F +&C !	7 .:BF;-
@FF0u $OF
T	 F;	+
" #7*F
" #7
" #7 +*O O 
xD H , F

<D	O 	RFKFF7<0RF 0KF7#C0 AF
 *.ul8
CystDCF9-/F *?%& ձH-&N +&=,F ))< ,Ѻ8	Hk (@𚂵Fi(!	 	۹(		+۹(#		+;;۹("	Kċ(	9 [ŋԹ-.+.(DLD@F $
F/'8	kƋ۟g{(		۩EFO
 #O
O  #F 7(
0cF8##v $
T FG GF -ȿ@ ²k 0  !K !)
{[0 8e($ 0 xT1qEO;.  O0??-k)
{0 xg( 0  1  ( -8F ! \F0-.-	0#;G _
 Hy =F+3-# 	{p/F0?nF3#I9    חA:0yE> hx   ]z q E G~ Uw u   +!yp/FcHFd!7/Fd!00HF7PF
!HF7
!008pHF7F01yp7	  8p *  -@B
Fpp:rE #0 BFFT3sE!$hh#`
%%'L] $$x(oLM $'4T0  B $/FF  кDF $DFDn
7  'B  *ѓ@FlF 'O'	O"	8 'GdD@ #FHE36B  (7 ^  %qEF(F8!9vy $
T F ' /F # zHE 3FB7 &`.$h4 eh!h0	XQO2&I"yDO2ah $ $'D'F5 ) /AF:F5 ) F~3x +<#-&Y'#hB(0)  $ _ !S+@pG  pFFF!I"yDU F1FO2O F)F"JI F"yDp@B   7Fi
FXai ajJba0I "yD'5 )FO2! 4	"a>@pGI FFٱhBFJzDhQ#@,FJzD FԿ   4A#@    -AFi
FFBO j sF   :i !:  +&ba&jV%p  #+)O @F% #jS%  (`h)F,0h O BvkG(є.L. "jR% sFFFxC1F$"<1`+``|0Al $F!1 	hl#FFZBȿ!3OB !  +v08
FA # ,F"R# B3B1 H@!PH8#h"6 8F  F@  Fhh !T@~ȱhbhB(h h11H`h(hahZ+/  vhFHFJxDlF&FX&8hrF1F    hF`Dh]_hF06`9hB'}  hFF0b="  (	)F FO1FHxD   )F *F#@pG<F60@
@B
! F " !6!" "kFPm h#heh@FBkhm6pO1jk # x6pb F1F0F8
FFCikB
 )"hhmci(  08!hihc h! "jHxD8HxD8HxD8 B < 6 8F F(F8R@pG-OhF  F" F SF` . JK
II 'IJ{DyDzDi0 xCXih! F|#hxv)И)њjP -Uh -h#]CBY6JzD F) FZh Fh6F  F)FD0)I[FyD")F0X  *FT[F Fu)FF F ! 
F!O33BJ\7

GE۔6 F %X5B F1F  `` 	    _ -OF<8FlIF2hFyDO & ( À F!F  F 	41  ZF SF FhG4(F 6   F:QIyD`NIyD`r F)F~h +{:h'```CI F2hFyD`(FhqkF=K=Ja{DzDucZOhh -N(F)F"Fky߱ /ЪF 'QF"Z0 
7	 *7

_E" F_Ey )OO\ 3[E]# /Ŀ<h! uhE FO	HF > 9   ' , -CFFFh M}DM}DF)IBF;F yDHF0 #O2 !!0F &  # 
FI0yDhF h #O2 !!(Fg0 -OF1FFh  +@ | (@ . 𶀙6@ ,@!)t 0F9hO c*RHRIxDRJyDRKzDRH{DxD	khR  *a0O1 Ux+К+HѸ Eв  # 
jiB +Ri
3sEPh (	!hP0Q 
HF:F
 HFhtF O2 0F!FRF
HF F "0F!F49hB $0OF$]%Fh " 0FYXFL!F"4FO0 HFv:hB[7 Q7M7P pFFF)	IyDp@I"FyD!FF(F0Fp ? 9 -AF Jl0iB  8 $F	hiB!F@F*hF-j - ,I"F0hyD!FF0h(F  -GFFF'F (BylO 	0h9FF0FFai0h n! #F h(F$j , l!;hBF(F#F	
IRF0hyDF(FAF0F9FF0(F!Go whFR(F90F#(F1F'	`lA(Fadah"f``~@pGpFhp `c(ݥh&` F#h +I(FyD`p s  p sF h}P
 %%Q -Q - aG(F
I FyD#`
 ((I F%yD`(F|  FF hFiF (# FTF0 h)F@
J # F zD+F !R& F (O0( !!8F2FB ʓ -AFFh*Vh}`&IyDC`(F)F(FAFSAFF(Fn .	I F:FyD,clO6X`d|``0F
  pFh
F} |i6FI"yDO8I F*FyD p  pFp  hmBIyD     FF )?hj10F (7!jS1)hn}huHJxD !FhFzD+hj+i +Bl *aAk}#bBa huc F  p    8FFF(Fj8@FhF#!8FF 8F1Fa!F(F FFFF# h:F3FF(h!F(Fjj F-AFhF F1F	F F #BF L!F8F3FF@
0QAi F)h(`-CFO F F0
=hS@"x*$	xG)!!F "(F #! F8FF (\  *H0a"` c
gh?!F(F "pF:b`!F(Fhg`F (1А" B"(F9F``p |+riabaAp`(F1FoNLo\Cs0 FPBF(F!FC7FFF "F F0(`#hk` `>  FhFckei diT h)Fs (
F(FI8F*F#FyD xtc -CF1Fh[hOP  h!	
8I8FY yD\(Fqh/"!h(Fhp`(Fahh(FZ`(F!hC -OFFhFFaA ,@ꀏhc ͱ)h)h!KCvIXyDKFE*h;hBqIyD O F  

%
+h $"h4HhBDBQFF ( ` rj$
B`PF * #PF
0 hBbb5!hh	 IhR  $		E۰hE
ۺh!XF#8IyDZhW3CEڲh!O 	祹   vbvv@FJAF#FFpl80FB2,O 	FKD#!	h@h-		(hYhFPFZF*
DE۽ 6 `atb $!Fu9FE)F	O>   -CFF	  7H &,U@  hIF hVE@@FIFHI  hyDhh FU0  
U F 0@5 (6 0B   8FF(F!h ; 8(Fj ((Fj 
 ((Fak  (k , F88FFcB a(F!iK (Fh  8 h ,  8F
F	  h $6V8F6 4+hB   -G $(hi OJzDJzDIyDr FF60 8># FQFJ`$b FAF, F9F % FIF(F7 . 3 -OFF	 %2KF2HF,FxD{D$!AxE  bFa85-xD
6.-U  &!!*bK{DL|DcIHF RFyD[F

+	IHFyD$D@ Fa Q  
 K ] F"p
FFز0 h'Ah
hSk;	 hiԢ|I FyDNi;I FyD*h   . = -OViFFF.jKh + / h!KC9FXg ( 	U h :F (w(` $ ,F@HPxD_jjBmiZ, ) /Oѕ- *4]KjD'07BTkhOO S+ 0i )F(jP E3RXFFj	0L AjPE۴EO E -
IHFyD  !F9 `  1 +  ( -AFFKj $%
Ij)ԿO12CB[hXi "0FF '*F @F1F(;FPj'
QhQ#)ԿO13CBh - Fh[m1	hBIyDpG u 8FFx+x F!3HI(hyDbh 8^ p  8Z 8FFFB(I F"yD8I(F"FyDi 8  8  1 -CFFhFz6Peh[mBIBFyDM h6, B	 8F
IjCFyD9  8FIF:V<5 h6B    -OFFFF *Bh &h h4/T8h  *YF    ($XFx +	rICF yDHF$<$YFPFh64)hBHF9F*FCFwF  v -O
Fˈ *@h  c FBF`l 6 )@k/F 
JHDKO
zDxD{D
A !$"*J
l
 (@ρ
l (@ȁj&H"<`F;hh
Q (@6hB #D );!AF &h	j6 ) Xal! )@w6  (@rBFhjv * O3j cE>k=)N<`xk I FyD]:h
j (@A
yk (@:!< Й60K.
9Fk (%&k /A!
9F2F[F (@60 +@h1h2R2_pՉI FyD3B  k .  0hT BI FyDh #7Ys 9F3hB '/ddkk *ѷh   7O2	 (@W	@F	 +  FdK 2dI{DyDj B\ 0+PFAFF	 (OAFFHF6 )?F$" )j#T`0"h990I9  OQ P( ݓB #	HF	 (%ݸ0pAFHFHF! "G (4CCaBaKB	C` '<"7X3hBL-l "  *;h 2I{)I FyDB   H -	  4     n  -GFhFO
FF!3iSBF;F QG(Fsi+ܺ I F JFyDCFxI FBF;FyDp!(0I FyDf!`(F   < -OFF
h  F\O3yDab	aKh + 4D}FƱh1F   (n1F (i
IOiS  (]
 8j(	aD 0O 
1@R (3Ѹ;j(aD EOr;_йj +YhF
hP; PE	

1E@
@7P

 Bu
 (s .qи @o! *mЕqj/
лH1FxDr!ai/^1Fh (XѠa RDp

O '0XM0 B
 /7OE /  (O7d!api#Q/Կ@O3C1
/Կ@O3C ! (F  @@ ( O2d#Fcp .5 07F".  $HFع 0}`J3lI(FJFyDjN(FAF:F~D#F k7Bj# *?Hvb@c^ b p)(XJzDWJzDWJzD
C (FTIyDF(FQI yD3FNI(FyD htiKa  *	f?*?"  !4#CC &h^`hY` ("<""p.F(h!Nh *61 x<(ж  "ijByi2rE !ɱ2 * RhJh *h&rCXJzD(F	h(b##phN`B j  
K 
@ $   x c ]    ~ -O
FJh&h|(xBkt( (H( (@𶀓( v(@(Л(@0 0F
Fkhhhx*BhhAhhRh0F[h0 k/i?h 1hO 
ih@FM{AF FFJF;FF AFJF0hO3F (vFO
fh8O _(?I0FiyD"iS#ab!)p m f } (a6I0FyDU5IJFCF0FyDk"iS#a CЙ!  )p% ueun -  uG cᱠ}h %I0FyDJ)ihB
еL }"I0FyD5sl "1h6  ( " 0F!ij (Ѥ %I0FyDJFCF%ih aO Л S R j U V K sFFR!FF(F)0F|@pGs
FFR(F!hF(F&`|@pG   "h #9zEBs  $EBsJ#!e\zD401F   !Fb (Ђ~" F@~! F@KO2{DF F@պQk-OFhh>h 
 	4 Z@ +@S|h<@єШJzDJzDJzDJzDI(FyD F20(FJ zD JzD (FFFFAJ#F (F!FzD:Fp/  h ;h@wЂI
X "H] #IU @FyDV0T0FD4 !Z,0@FKCaF^ 
*E;h)y$E"Z) PCXjJzDjK@FIF	{D F9h$ E "Z)0SC^ \JzD\K@FaF{DZI@F"yDE@F&F SUIyDTIyD2SHxDSHxD +sRK{DFQJ !FzD(F#FAFF(F;@_)GJ#F!F(FzD{FCJ(F!FzD@@?J(F!FzD=J(F!FzD:J(F!FzDFY
28i!FBi i(F3JzD#FJF	4FF" # #!F)J#F(FzD4 ! O0
:i Kh{D  ʚ;      
    ~ : >     i  [ S         e KI{DF[XLC|DhFP= !D  P@/9FF FG=1hB%>@pG  hԂ FK I{DyD3 r i -OFFF5FFI.F.6IyD
x -%%j*0HO̿ F :FF #F8 F :F#Eh ( F "J!zD" 6r!EZFp9FO
F 0B G
5Ca !``
Fq F     R;  -OFFFTFX\ᱺ и ѹ  й h(	8F(F?HO6<IyD
x2O%" F9F*F# (Y F9F*F# (HO_  	9F ZF+F FxaEѰ  B0 F3J!zD[ #	!ZF+F9F  FF F9F2hS3`  >bpy`=    :  FK I{DyD3j  u FFFThiFFX #Buڸh"F+FFJ.I0FznyDCL FK I{DyD36 v N 𵇰F! %FC]	 FFF (6$,
)FR<2(R$ 8F@wC !BK$PFZ17Z  (A$`R(F  -OFiFikh@h!FRF }@hD vи( )r!@tCO9@F 	IF
F
$B 2XEQZQ.EFAKn JF32OC (9d "' ,иB <-~CBRERF`F1  "FTb t# 3 #RFkyh@
,`EF.0d !"(|hd5(4S+BE+.. $ F
 8       !p )qCkq!p)	 "pq
LD`}q  pG-GFEkFkFy )jj !(pOO s !"
(`DO 
ij

Bqkjqhj  FIFfqjjGDc"'d(jA"pa-OFx +zFyk4]Lk`e `p Jb$pc"dpyx2yI +3B)  !83ELw`2pxIyN #CEFcEL`\x^#A	!F6B@BL`R +ѺBL`O##p  hxB !p (FppGFhFF6 i	K{DJ!FhhzDOnh FJ1hzD F0`60H  ` n    -OFFh +@k l A`yxA&	y@!BhkAjEMd`t 	F(Bkyjk
$QFRELPP`L*E۩	E LP71ppO* UO(" 
p鉈D@I! `F  	E&)Ԛ NEL`D	 f  `\0pxF(AD  PxP"XZ!\\B3\aEA&&Rx\x@,A  1TT`+*l^ '˷B)K(
p)!q뉘	-OFCkkh

$ =L	. (eh  	65EF. L #KEBLAP;8F qF6 -FMEۃ6CELMP#`aF(/*\,B &+
1F#T	 PVppq*F(BL^PO 0FpF
F .F *F#
V, FI +FyDA Fp  0  .F <FEI :FyD'0F  𵅰FFFF%hL|DJ(FI zDyD:F(F   Kp{DFFFiG`"j "FIA
 +FyDp@ʿp t v pFh\i ,,i -)`h|hi (Q% !i'5B۠ih )0FGO1`#h " FZap@pFEjFM,h`hU  hBhh`(F #sb`h`LiJabGh (Kh{DG0F   s Fh )FsO3`ia F !,"(  F( !4iQ F@ܿڿFhi
!h0FF-bhJ F;<F ,aF|
FBe |h(4-1J !Op zDiFh F0%@
hca?%N! F ~DiF "3h !9s%@
 h`a%hV` FiF#P 0=s%w@
 h`a=s%t .FiJa" F  &-%t  &0F Bu u 8 !F}hSiBiO4i`a #`ah"iP a(FYaj#j	bJzD` jajAb F(F!F F8 FF !F"F(( !H
FxD
)_)`'B
hl`$OD{n0F)F"FG (  1FG@ri% h( F q K0{DF
FlhiFGh%
I"jFNsyD h`a@
p$
# +*  " # #0tq A 7Fh'h%I"jyDh@
@caFs#cHxDP jGFX (' FFr( %(F,>  p -GF(FF LF	CO2O3JFG+F3	g 2F%ZI  F0syD h @
`G N  K7{D
FF(FG0%9 h(
I@
 *FGscyDF# J(FzD@GF'8HI@
P*FOCyDfF  Gb( $ F> 0p  o  
JlB	HBIBI JyDzD`   wK)y;  F(
I 
JyDzDlKBHI JyDzD;    )g d M   (  !pFF	 S+@pG  s "
F !FZPV#  ah #JzD	J   ahzD`h#wa@ q FA)F    |j Y 8
FF  8CLY  F_ F`h Fe ()F%B`h8-C-FFFH D	?  33RA23DA0xԿ $$v#BslېBq $$g  )N +Y (V /B<yB	sh hhijhiGFHIF("'IF("')FOR1FOR9y4F F9y+ F "F)FhhGFihhqhGE:FBF'8F0$O4 F8FF jk2((F!h8@8(!FFhGF (;h)Ѻ'h)Fbkh ( (0F c)F@9-GFhFhF4Xh (O:O 
*ѽU$+U& BF
X&F4 &$LE8FU&G6-OhF
xFF;y'08h %@FiF"F  $B0  ED/ (5	 h("TED0i h "h!TE]@By_"ZB !qEE4 BҶdE۱y 
_; B,   O0
-OFF #
FF
hl ahh4[FPFIFZFh (5` "h4`h,"h , %F5`  -GFHOpF (200O 	G=%F0F;FE)FU+ *
` -bY0F50  Fb      -CFl#i +]FF (Xj #if#M#ia Fj%kF*8F,F (<ih 
FjF  jih#RCs#F)F8F8EF  -  
#I #yDj"F%c FHF % -GFlniqJBۦv wjS4`hkj(!23ii jYih4CFPFIFBFn (̿8F0F8F 0FjB$   -AFlFFj]h(!bj!ciu8F)Fm -ܢj(!Shbj#i8 !1`!kh"c`h@F)F - k(F8 #3`  -AFFFFFB2FF  h +E F1FF (3 !FpBF+FG F)Fp! F8 "O1 #2FF"K8F{Dx -!!sFH i!FPh M G8F FAF2F #F %h@/hD F:F #yhY +FP+`EC+  (a6.(F" V	 FFF)\i\jx*ѳ0 +7*Є*<*(hhih [Mi #:FpaH%*Н*ћh +F(h&hi3FhM"FCFHI(F2FyDhlDld<F F  -OFhFFF6` .81F$"F'6 hjObLFO	h%	
 #YF 1FF(F`0Fu8F1FyF (Fh a

4Eˈ 
jC ʀhh"_S#i Fk (ёh8Fh5@4  B  -AFhFi$cC ba "6D  $)7Fk .Ѭa(FL!F (K!`a9h@F@Fh;Fh\O2b`6  !F(F4F F@B -OF"0h
F ²:"  Ѳ )1z F/F (kh8F9FFpEF 7I0F:FyD )FCh F hF(/I0FyD F /	h /H(I0F*hyD'@ Fi:FF (0F(H*O3AF`0FpqOHFh` Fh```+ilN0C N '` FAF ' F8FY 6 ( p
FkFF)+hhB  pHh DC0F	Yp@Ip-CFh
Fh!qC18FF ƀ3`8ihM '`"qh %HFX% h`hHU5B F-OFJji
FhXEii8F "
!4ir $&iB,j &lO:4oD'
! "T<8FZT< +Ti@F
h*IFD #*! 8FT,64jjB¼ 8FKFp
Hi8<s`i8(F((F!F8@8-AFF
FFF0FF(F
9Fo CƲhJ1FFh
(F-OFFOF
i,jT <SE8(4WT#@@RTB4B /L .JЀ)HhT(<*hh }F  a(b(a ^b) !! )Fhh`rh #qjBO 	3R#OBш3j hS ((	 -i -HF-OFFF9jF $O Q"hX+x+4yh
XEѫiSEHF)F ( hAF (0hBO4 F      -O-H
F !NO3j("8F'>C ##< (## YF0"" '"$!h&+`#if!% inop('Xo@Z\FXop)X\F
  ˰ KLOMO  O 	H&O
# "F	G0(F $S(  (;hF,^ iAH&
	Hih{HHF<
F,fFH 	I	A	$ 	B$0	Bћ, H@,jFf 4t. )f	(FB0O8S"<# BFO (X BF (FC$!BF F(F8O KC+ (K C+* #FI	HO	44F #4HI	F6O 	 4	O  4 
jhLh ) p 񒀛.  *@hFhF
l   (@B@QF>h $ E0S(Jh0 EO> Q(h "O>E h8	E%$ E?Ѯ	{E
E4		0 JFL O  (F((Em$ E~$0E
1LJF- ( Y   (yM +vh?)sO O 	O 

<9"M
hS  (]Ѹ  ! #(F&`hhhAFFE0B=  !RF2
H I	


MhE$[F Mv  !2
#" #
#
#R $EFFF6d^O 
bj
    @.B}T`hP* >*  !2b( )	


EX	F  # #$HP,  `+رr+h
g+A*a;+K;:
J2@hK HK* *e;J{bckc;7
{J[5[H{ kG['{6
kǋhKK ;D+$K3
;ċh[ϋhkahh"4$ {)ji(1C	_JQ#	KEBE"1,о > "nKC8+(<м < o(' "OCC9+8(1 (  OAA:jHO˴#X<a#		9`{`kbo@XX\F LChi;hC p8`L)FJ  lRhiN:h)I +HB *Dс )AѲhj fA+!"8
!x~-,ji(% E FS+Gh8
O R:`(4B9hA:`  0  $@(FvF Q " O ~O A#?

,  (|/-AhFgE"P۲۱
O C gE 	ii  	<	 gE]
    -O-F FHhF툻YF,0>ji
 +@<0 +@𶀷 +@($FeF 
!E1@E R#@h
EZ @)@P{Мi("jAIPA 	#PF #hh[E.xhE!| #:h" PF"~0 JF58 +A*9 (5Bӊ Ka+D;a4#K	;ËOQ `(6
Bbu         -O-hFF !("(F&O `(`h ,@ 0F FhjB
0(3Bۮ  #!hYx(i"jB3CEFO O!8hA01F,I8FyDL0	#O  F`F!a` jhBѱs	hI0`
q0(10B #O		h3R @,h{ 0CE` , "i  ahO( 0Q,2S+	X ""0,#h1B ! &iiD] # !aaa
#ha!b`8h!F  hXFG(;h 6  2MIyDF8FKI8FyD O	
 " FD`h	Qyq#iS;  (	aF8Fh!hE{l +Y`hO(Q3  *݁h;  !+#AK30"hB۔
#j+ b;AKb+1$ ,aȿa j)hAr*` #QFk``8F	O	 .BmT   Q -CFhF2F+i}hKFM(FAFF hi"F(FAF3FF(I8F2FyDD F d -GFNjF HF-F;h %`  0` 8FO
Q%
` hB]JU5Bzl"!FHFF $ F-OF"0F
F F )/ilo hFF F+F 9FBFF FI.i%1F F IF5PFjvi .ѢlBdh   -OFFF	PXlwFF ( Fv! 3F7O  FI!W,03F2'pE	 *@(F EI
h!SF F;F
!SF F:F FB	*  FL!BF3F'#(F ZF6! #  F  "3F! Fi F9 FQF(F9F9F(FQF(F '!(0F F FO1oZF$!R+ C FE 0B5(2iO " R+0YP+0HhB3 AFcF  FK! F!E F! "3F_! F ;FrQF FTO1 #F F  3F  F4!(FZ(F:F !}J(F!ozD	F"*v Fu!  F1F F-!O + ( V FhFF(FUF0F9F, c`aCp`(F9F F-OhF$(F (  / {i + 
 "@FyD% ( yl #2i XBF !kF (@:h(	
i nCFzi
BF+FHd ^!>h F;iHO2IxDyD]B@UQj  ( JO 	ClBȿd'! ZFo  Fj 1h FBF^!	 F! "=E	O 
	

! "

) FEH!ZFO 	FF F3Fi!# F
D-!ZFCF  F  F!FjS(
K!  #o  F=A(  F!E F! "3FO H  FQ(  FIFRF!# F F!
CF ZF

EM1F F_!ZF F-!ZF Fh! F	 . F!ZO F:^!
  F	 F	 [!V! F SF!O3 F^Y! F RFq! F 	[!	  FdO E
 F*F !#8! F
3
9! F
 F F!EZi .;iù'! F ZF{i1 !ZF	 F-!ZF F F!	 F" F!=F
! " F &
I*F# yD F!?8! F

9! F 
! F
lB Fd9FO  	 y I !{Fh8F F@+8FhF`hIyDF(F8@%  -O-FKFJ{DFF0FX !0"#h-% 
ѻh1Fh! (<ц*(h))/1 +A+@+Q21T  * ТO̲DD<@DD
DDHLF  x
X-(,FO
O 
-!"#  XF"!Bs	 "
( F1F (2@
DF_pT)XF1F(   (ц)  "#* (0  IB+0``2a +?~0FywI FyD8hh1F_ (h FAF#F F' ( ];`+C+L
R
 (?n# #D@%\T3+\ *. "$,0l+9+ 0+Z++ W-+@Ru+$w+ s+@	%%,F (@ۂ0F0F9F E()+ A %%F*0۱ #J ! (JA #0# #(@)@+@A w%% (@0F?0F9F|F
F (@ #9F( ) FF+ 
k0F a e K Ek     pA "S>ȿ  Q VH h ! ! $     I%"yD+JF (@C'(F#F(F6 ( 6+;b;@** *%+@0F+@*@0F EH ! # A0F" #0BFF*Bs
ڟ+[
 AcO ()#+T<E E%	"+F (@Ё0F$aua "+P #*P
IC1+)@(FyD%4aI(FyD%F80F`4aTI(FyD% (@2"%]0 F#`:(L #*x:*DSyK{Dв 4 !0"%" F (@c[ E#ER # F)F0]KBB,# A-(#RBcC#0F $ #(@)@C+@ #%,F5  FF+ 8 !\s) F0F " X@-
:I FyD%B (@%{6-4I FyD%6 (@HI/Q00b #C #-S'I FyD%@HI(Q9!I FyD%
 (@{HkI'kw \&     l    pA    @wKA     L@     @@  G  \&: 0      x a -qMI FyD% (j0F;{hdD ,` !0oh D  `* 0F`K[D[?4Ek.[{fKHkDkQ6Z-I FyD%F8ɛ0Fh*@0F`ɛjzɻ+HI-Q>+"  ( ) +  *VEڬ  -hB!</      pA     v@ 8 FkFhFz 0A1 FS+     pA-OFhhF %F`hFh0K<F{D/HxD> Ff*F5DD F+F0F!FBF`F ,FE!M}D%UXFQF` - *F0F)FF0F0FQFDD!x )
I*F;F0FyDKO2{DFHF0F!F	6 g{ +{  e-OFhFF`hF&6 %F<F%4FO #xc@F'F?8Fh)v)h)5-ч)I 3F XFyD	KO2{DFHF>-))  -GFhFF`hFM,F 'F4F#x8F&F60F))Ib+F PFyDGKO2{DF@Fy) ~ 98F~F F(F8Fa\ iB(`h@aF3 Ai: (#i!  -CFFhF<Fhh8F(hl0BI FyDѨh&F O1(I FyDO2(FF  #VO"h1F8FRh,F F>  FhFF),!F (&аh&b~fvlcaBhhFhhF
N"~D F1F(hF(h1FF F@W     -O-FhF (  hgF`hF ( xC0F!h
O`hQFh ( hFF	 0F#F (v		 %F8N;x
cE	FBF9F$58#AA00hS+
lBq0FL FFP0F F
On@ZF$ 4]DDF

	E
		`JF$	
K  !FT{D0F
Ow
" -AFhFZ* I0FA	FpF h !F D0FA|"LF (o #D
\	\3 2BEO2'#  pX!p0F!p!FcpF FAFF (= " # !$ %'(C1x\ (R0FCq$ %AF'$#pTFL',TFZ ('$T	KT0F{DI" #0FyDAѽ  Q!2 -AFhFF h!" #F(F#wFNF #~D
3O0\2B$s  b  (FK{DA   -AFhFF hF   #"8FCs4F@   T3 #DBK8F2F{DAX S -AFhFF hF # #"8FCsF`@ ,T3H #xDBK8F2F{DA  -OFPhFF+ )ёh* 4hF0hDF0hFF ( ؀ ,u O 0+FF2 )O x +/
ѰhF *s 	RBcC&`l:F & ,u Eu ,u %C *s  $ %TO7O<EBuO>O0C  " #FF~&F/Fg .w 4F=F"F+F $ %A.		HFF0 p/EO>O1 `.LFO0O<T4-%F,F5&x.C%xU@FIFO3O7R^F
EVEw	2F;Fc *s  "@F	O3OmFhZ*#OFF ( !13(FF2  (x ( F@ F@  -OFh
FF+ hF (  h-FG`h[F ( F #2)F
F1  (3x ) +w PF EuEeF .q4KFFF%0Zx(F
F1  (cU5Fx )5K,NO 	,L~D|D   '][E
V'F@F$7BBژD  ']ZE
V'  $ 7BBڋF ܹ 0FPFAFZFO3O, , a F" a)FF@b) ! F@  -OFF #F
F` #шh 	Ѳ)ṉFO8D^ODйVOD FF ( kajlh'"  E E[IZF FkhyDF ( VH#O1xD 	!w	b/c! 9F"j!.a1F>]22F ;F Fhj (PE O ,
с/KB "C0+dBeEEa9F2F''b F' FFoh78F9FE F*F2rKR{D  #F0F`  
 ! 6  FO  !`   C|s 5o o  eiFiF
F+ h'WCh
ihM } Ih2 FO1o .	h}e) F!2FFFFIhBA!8FrF#F -" _ )!!8F1F*F#F@-CF
dh||FFU< +U<KEU<CE nAPa  !fti3iB0r6Bi
5eEJFCF  FIFBF;F8F-O$FF &AFhA! F F {h S&sE F!y !cF F FQFO3bF-6^E`V  i F9FVF  &!CF F *Fe FO12F #HF)FBF(F-GFFFiU
O 	 
S!F2F # 8F|bjQ *Fb!Fh0di5 ,ѽ-OFhlFFd Fi"i #F X(F !   (@Ԁ @(F9F#  (F*F ( À (g!;FRF FYF(Fs(! SFo  F  F!HO 
o	dJF+!SF  F:FCF' 1F (FkH!2FSF FF(FOYF 2FF(F;F`!JF;F F2F_! FzAF FF!SF FJFp,iFɱaFRF F[Fa=!JF[F  FsJ(F!zDo F>!JF;F FH;F"a!  F[ F!Z(F9FTSFJFQ! F2 FAFO-!2F F-! F F-!JF	O	Չ K-OFJ{DF(hFX#h;KF ( qPF*
fF (@ف" # FKFF[;%,4Y)&M)H)J)!%)@"S)W)
j)d)
f)@
s)w)m)@𥁒C
UK$ %UKCC@ , +d*l,FBBPF}FF PF]t"
 &
^MHFJ}DKxDIzDL{DyD|D	D%( =	0Y+ (M+ H+5J+@*S+ ĀW+@#0j+.d+
f+@s+ w+ m+@ 	f+f;C+vJ!FzDȿC+  +pqJ zDM
(
X %       P&
E #TJ eAJ #/ W)F JH " B@ #/" #/! /YFF T6 YF3L6
/F/>JzDA1 !F 7} 
6J zD #
Ozr/T  #A  !F\{'J zD:
# !LA #/0" #/,02UE 2              Zd;M@ \&        pA\ . ^- h\ o ` P  J Ç    r  !F Fp6% U6  ("UB
K{DO3PF9FO2;#hB = K0{DLFY#h+p{	
J d zDzhO2(FF+!hB -0\) hR  !
F¿K0{DLFY#h'2ع1 
{d J zDz-O2(FF['#hB _)0 ( h  !
FĿK0{DLFY#h':
J d zDO2(FF&'#hB *)0h( h  !
F̿*JF-AF)IzD}O pUXiFlF*hF$JzDhF@!$ 8(
]/+ %
 PhF)F*FEO4
N!*F~DmG!@ FG ,<`F`:
IjFFcyD     B
}' hpj 6(  pFF "
F,x/(J0F!FzDI FyDjqG`G`
I*FGcyDp@J F$JzDF0+FO  pi ' s h KJ-O{DF !X3h!F (@@ FjF ( O	. Fi !F (@)F FOu"F (@")F,  FF (@a F7F ( Y-0X
 F*F
zF (@F)F0"4 #hF (@3#!*s  " #h # "lF (@XFTK&BF@ 0@耸? 䀸 $A`6
t
Tf L
`eY`IA0yD x8 " 
Q " #{lB@ #mB@yO BKPF0FF ( (A(B  @O aF\ h1FF (_"# (X0F (RДA0
 1F SFR"`FSFbj`F lB/ !mB(0YFF FF߹HlPDdB #0QBs '0F'!O F FPd jO2h  fXfffgZgl2IcnyD =F F
P!` ! F,"F bkKBK&F(F!hB#        7- & h\  +-GFFF
d+ 	+"SC^ !(hD.+j  $;!F(F(F,j#h + (F!F(F!@(F (Ј` ilB(F!F(F`\)j0"h4# (g(F!_,l 4F &#7F	PnBilBFF3+ѕ.  	llB O
(F"QFFPol	(FQF"wfFF(7.,& (FAFQF (O4 (F	ZnB(j40" h#.0(FAF@O4	.Ot$ . F-OF. # )@g!
F'F (@$-@ ( [KF @FF ,@N( JD`B =  ~LNEK@5F  Bh
nB!
$-qL  FF ( ׁj !	"F#	_43FOS=FO 
x`X  (O	O 	@F QFF (@
	"B|h"q1C 3
 #
!03B $!Fh"#F*
$ $K  YhR4 4KO
CdChE@_s
` YhS; |
haa`)a

5 	Egj  qdPB
  SF@FFHO1@Fd"aF(@.F #4,nBÀ#@F # (@D
n~N<J
O{
# 3 #H
 < (@E#Bs  !
 %	
/
B,ٵB*B'	i
# <8# ! L> #RF (@р< >#3 #RF (@8hO|hbO4s3hYh1hQ,B١BiFeDH`hB: *`<`ѓH 
# 3 dF`<2 F`FO 
f@F!"Jк رD nB($@F #FFH@F!F"F+FO	8FLO	 й?D `@) 0@hn
`+4  !0"", H"@F ! ", / !@F
F #-0 2BO	F*O	' #@FF (?F  hiBzcH@F$ - &D`(?wFHF3-AFFFF (U@hhi!GF`+ "+  & F1F2F3F;Fй
!O6`hBm) (q  F " #v&  &+0+ F`h1FhlGhPFan " h j F F(F-OO FFFFEF9VEк
3   (@XF|$h az   0F $XFq,%FO ';F6 B -% % %(F	-CFFF+Or #5i.lyFOEFRO``
(` p`0a0iJFAF"ED	EuE /  @
@-OFhFF0h(  	8FAF-jS!P h - hB MF(F -@`j!jhEBiByK{DYj9ehhjBltK{DZj *@ڀ@Eh )M hOH-Ou hj	O@F
jF"hha )PF !BFO "DjQ+0)F -*Z!  J!F jEj},bj -цi -cj`iZB1ishBBHxDBjBahhjEl=HxDAj )d(F(Ff+iahXhh h
E(FPhh2i1a*?%h(h
`hh0y"hF 
h H
i`h(#hiQa EF!j8F-`jCcb` #jR! jh,a`aka`j@!PiBa	 ?	ѱ %0h(FL: : j9 9 -CFKFF{D]h -ԿO 	O	 -̿L%0%(F(F( !*F"l 
 0cM}D2 `"`z
!!a(hh ihjh`
2P`(hy F 8 FLKF|DX h%FFKF" :F3F    hFhF   *hB  ʚ;l h(   @pG8FhHixDO2F(F!F F8@@{s     )sFF $Ph+`((F ( $0h)Sj &
ն ;0Q..՟ݶ +r@Q1.j- A H!FS+xDF(F+iF#F F F(F #|        C      r  9-OFF) Ā	
º | Ai!`   h( j g )XKh{DlG@UI@
p  FrsyD7(DFBF	GO6 +FO7L- 1D@Eq	  BFKFH%x;I  FsyD h @
`AaOK\FA~NZF+F-r ,6G!DPF 2F;F9(6GFEw	u@
0* h  (i"
B  h0 ( Z# 
C  PCh	HixD `H   n n kP V F((K F{DYlG     !LD"|D F"r
K{DXh8  ` `cI
"#  yD`a84  4 FFFȹ F_ F	K{Dh(IyDh``h``8Fg(F \4 T4 p $MX&}DP8 !4,  p pF F%
K{Dh=(F!i"h ,0F1  $ Fp 3 -OFF 
F @FK{Dh ( N.@KI(F"yD" (@BF\3&,2BFF%bnyH@/.Ѩy/(6 &].
/).ѪH	"xD"tH & "O	FDuHxDq%+?h\ _  "_     1n\#.;?./=.4/&..ò*/&+=+$Ѧ`SF 1o#.&(&+
 #T2?+ '/&+' ' #T2F]
#/O #+T2TEp F)`K`M{D`J}D`KzD{D	A]H]IxDyDeXFGF(F	.F	YF2F! (FL.YF2F!C.AYF2F! (:&O+F  B
(F:F!@phX8HQF*FxD861h )XE	2HQF*F%xD`1(B 7 P -JF (?Ů)F2F" !UqpHF %g`@HIFxDq%` ` F $/?; /?--(F  o {o  co qn .n H _n n  m m tm <K=J{D-OŰXF F
	#hD7NCD~DF=2L|DI P}(FPP OqJFkG  p5ћ  #	3x DҲ p!p1pbxPòcpxȲp!xppxTxgEPFC
hBcEx h^. T. R. B. -JF  !o0$pB4FFmP#R##10nB0FyY+M 8r}Dxrr*hkhr:`{`ty,k q8F""~ 04 1kO m iLFg o]Fa [  !"X#9F0lD #JFS#C#oE   z -OFi( @ހ{{ +@Ӏ{(@<h )9zy*6иic ( Ā:lhxy(F)={ F A@ -#F.Fh ! " #b#8Ft#5F0kF !c&s@F'` 1Fk(@F (vm0 +iiB]9l
h *YE0 D9 )ܸ +F B8l"F (\"E1K #C2+q 8lYF  (J0 8lE~$ %
N (9@# Cs#jkSbF8F5 C	{+и @@F@F=F0iBһaO	O	 FHF  -OFio,(r#}GBY!u iUwB A	E  	 F &/JFzD5F30
EРkYF3 h-CE FYF #bFF FYF@ *&

E -v % Fy0A5ME }B"u@FF(F 
 -OFChiZhDhh#jjBFFEOyBF	QEO 
{ (O
E.I e	yDD # F)F$-shYh	j h,"0E+SF8FYF	F 	%Fع # F)F$- F)F0BFKF-XF!k	h 	 #E BuPF 
FFFiñ++!hhB:F F)Fe"hFhTaj , iB-O
J	HzD
Xh340+
Li
Bh)` )XF	P( z D@ ,Oн  h#n !@F
FFhTDHh 0FA0F@FX M!`O3@Ff
Ff#gcg(@q@F!Ot(@ $4"@F#F?F (@]NJ~DI  F-! ab #`@c0vhqh`& T)BF
lRT #Qh"   UQ$ 8 &A`!L0 #/P  " # " ?F (@0 PM ?F (@ " #@p !## 9 #I 4:
h + !
F  gF (@#Gh ( +w ʲ * ʀ1 B hjGFOUO<#
O0A  N-D *QDO 
 g
b (g

6GBwۂF{# *s  
!EP %E Bw " #C @F $u/@ D@]F4ji@F!FhF ТD4@F!FZiF TE<
< H A@F<@F HFhB30 77	 h 	m )	m  F/P - D@A BB  +! -OFFFl Dl  F #F (@ #  ! FCYF # F (@    #Cs# # OeqIyDh,BEгiE ЀIF (@ɀ $#	 F $ %c (@ -1k0qD; +	B) (ЖvEv  !0F y EBq  ##+ #kh{J*˱ aEUYF E:F0jBm1bZF |0FY#t v|StF (6!OjThYF  F!G = #BsQ+
 d(4PˠBB" F@F ( -OFhF  l #F (@!hP lh)F2F (@+x# ( 0F)FRF (Ё

	EFO 
 " ##  FAF#(e(FO 
fsobFa ,gҹ #oC BB
0arF,o #
FBB F@a 'H FT  F1F "#@xe( %@
#BFO 
7FBF!{at @"h lhAFZ9F (@{A)
ؘ   F!F@ FF (@ 0 +  ( 'h}hh F %O
} 8FAF2FDF (p0F
F (iѹh
J0kF (( " #0F #)FZFF (Q
DFT18FIF "F (=+HFAD  IF8F@FXYFF{ ћ   (XFAF! (	
#`FBq0F`8FAF "F  %(F.0FQ0F FPF
  KJ{D-GFX{hFj /@vp /@E{ *@B0F!hF (@_3|+0F!FF (@a1l 5h
h 	O	 O 
 + (F:FJF (8FfkA hbjGF ([ @0FF (NI0F!FP(F1y0F!@

  % $PQF %0l E"@
#BF $ @ (F2lH0l  (?tFHF PF ,@ր (Di0lh!5h"F(FFйñ@B
(F 2lFPJ iF0lc1lhc0F/Fp0F!F  s2y0F!}$0F!F3{ +3ѲmB "0FA-8
 j DIyDoG (Q$ %k E".x"!,d " (0F1FJ0{0FF:F0h$IFGFo)9F0FFsy+wq  '  %D]5 "HF!F+FBF0F{070FpF0F!s8F 0B'FX  h<  pF{Cy*))F!B8 yaq (4+0- l!|) h2F {% F:F 2F{( F!FZ h- F)F F`yp-OF(F @hnBd)FT0&fC%Fm506iT8nB۸<f ,@Kxlh + FDcE " #IF  xc8!:lh + 1 , 'm<O0  f . piF (@:{azt .M@ ,Iia,0{&j4D5h0	UMEB`lE"0 !"jhY!R  
P#8F56EE F F= FFh8FIi!FF ) ŀ 0EFT E
!8F RFAF#F ([#Bs  " ##O 	C ! 8F#FɹoE#E BB
@#cbF, %$ 8FAFRF#5iF B
#BsH#Bs .50i# 3 #jnB #anbiBlBAd5jdsje FiF%KF 8FRF4F xkBPF ##O	FO 
iVFqiXF	  pF{.хj/.,i!O2u|F F\ -Flh
.
 F !OF{H.!#bs	F F)Fp@ %(FpF{+k+ Fy	% F@-CFFFF)JCj -[ "CFF (R p;iC J U .<a	+HxD h+xABJF>{BiBӹ kh0B.ع iBؠk1F1F F
xh !  DP8Fj F`0h Ft ! 
%8FM(F  FF h
Fv`hbhd-d% %c\d^c]q;`  pFP &aaz +F&q N` F{ F, lh1 FF F4 F%H lk(FA j K{DG F%  p \ -OFF6&{DXh
)xFyD8 $ @ ( , , &$5`. "5,5#@zJ p5, SF (  #r`%ab )y ,y5y@FurF0FpBF$@XF9F+FGF0(F0F 
i Fc%zD 5 (F X  XE'YiKiAhHh@E FO[
X(F0F|;: +@ P@ D  F=(Fd @)


T F ( U0Od(+" (!4 #+`G /L9x )P0OH yF ( BFp9FKF$@XFGFHFF8FBF	 F0$ FAd!x )4	  
EJOpFHF"	FF;F	FF	;F	FF;F !	DJ
 @7FHF~  c  " `dB"dP  F	
IF  RF V0 	 LDIFRF  E    
0@

	 J`RFrIF  ,BF0R

 C
yqHFf5 g#x* "5XFAl- k%
F  FroBҰ _O P !5!#s 
#t FO2}F0k F%Y ĂD !4 0"HF P!d   ʲ0o@C $@0"s"qbts
q2!#""#rrrarP O2t O3 F"# !!aqJzD ,` @,h !d" fkh " # #d"XF@
 Eи @ހ+h  4xJ,ti`zDP u`,h``a{)NP0QB@(b q~OCB "*bױottꊝTpB 	 !it#t F F :FF (@,jobpz! )dvNK{DZhFR@Fnc(6Os FFHxDh` Fid
tz< "Yi!i[hӱXz #Fi ,qhXhBsaaaFZiThBraaa^a2B`0FthI0F$kO O(F0F  `rhFh Oae
)FO
@F)hB
 "4!C 4(h (+ j hS  H g  }y  Fh#iXi  @ "F h~F0I0FyD`
!iO2+FHak("6     pM p
FA ,F\af F= (%!2F3F0\ -"X1!hB@X!	i-XhhD!  Fp@ppFAFF ,F T AT!Fup-CFhIiF(FfpF8F9FF 0)i2.XF/M!}D.M!}D  Fh  9F (I*F  F	!0F (@ FF (:2F F)F F1FJ	!8FzDB  +FF8F	Jo8FzD	 F1F-!*F+F8FK  n!+F 2F8Fl+!d = = 5 < -CFFFi! $ %#jAFS% j5MEyl0h !F0F@0F!FO2di ,ѽ-CFhF %>ihih@FJF$h ,56{iB۽FFh $:i#HhH&0FX'(F!F4{iB  -OFlFFSdFx  a=ifl .@ǀ - Āk *@  (@𺀩l )@j .@𲀪j 0+@𬀐i (@Vi . 𤀖"_ *@+hh-@𖀘h  )@ FN3FF'   F=HFAFhbF FOK38FDOh

}Bаb ^ 	 	 %N
hZEG  ihh+FM%B8Ѹ $ (1њ, )-QF FSF F'! Fo HF(0hHF)F/ 
h
J}BlHF
!3d 0%  -;	 + -5l l
! "FHFd3F ` "$KC0+lhP - &%z l +%FF F 9F2F\l a"hqlFi F3h F  #ri .(F
   ?-GFhFFFh:xL*hFFDI*0F
! "y<9F "i #H!:FF0Fl#l0Fb lalB"d   9`d!lK 
@3p0FA!:F+FL 0F!:F #_ I!0F*F  d FAFN(F  -O-ǰF 0TQFh@+#P&8@"yD&P&@
h (#(;^C6(Fq!j6P=8F %(#a``W&bq$)FalOr
$iO 
 #$(2` "#&5aa%p`a1b\!j8hi@K<=!F{D><0F!FE"|(?!F#i F! (# $h1jXl!hoi" _S"F  !*>#CC4@5#  B8F1FH60 +A; Mз P-Iѽj$yi   R	p:x*ѺiBѷp /3Bi훋),di$bh0F )FR( E QF*F#F (`jEѹ'O cjE ,O2 'O0	O1P  h !("2O8z 8!B !! $   !#=F4 
 !!B" )@$!jFF @RѽB@o 8 p 0m #Fk0h"  P#< "F1F0
<"F1FQa;K< 8#CCD#@@REѸ #@@R	*I2"'H< {2k #I<2 ۝B{8+{	>;4K;

      F"(5@4(B7aM2 $  0.B}TUG A    "  Y  (r
P Ĝ  H2 ElQE0,dO1C0# $j#4[[" ##lkf{l{#El]2p/їIyD*ht K P0 (B}l -Ad60 +A^tbл  0& =2!kq#  cO1i{MxI  zJAzKO;yIO:}DyDO zD{Dg"')*LY# p@I4|!!++al" ² *Ki -HYP|:!F o	!+F  g3?)& y /'#(# #F y⹡h?)2IO0 P
o
iiP"h # biYP| @{+hi("5jS '! "(FAF#бh?*  !*vFF "O C[
 PC+(7(5B91IL|EEK?FO?
xO 
&                     ?B B 7 7 7 RFQ*" #

@@P7E ,u ?YPL_DDE01IP< h F ( " 0
I@bO B` !a`Gb`  5j$G(FAF#i (>?bF  !,*, "O C#$#@@P#O$ CC$A+  0 h 'Q(5B #$ %FQ
*z)@ @P

 )@+  B+0KB# *s GQF #)! {'o Y0,H!Y4,pF QFY4,F[FY0,[Fa!!Y4,c_!!!FYF!*O?#*A03  B@hBۢp/Y@L!Fo'! Y0,j	P	=ph k+* 
 (Bܭia6  (@&O:O;*}	zDDD ,-  P&4q84/4 &"F (F #40jhh0
&hj ',  'XF:bF`bXF44p$bw
 òClXF! "{da#h i &im1h{2i'phe(FFO(#FLO Q8 B	hYCj(FQXh
,
,EE%!riKFXFmz!	XFO(diiXF + o
oSF!  aF7B y;hj F!R67B&5`(FIFc0c(FW2(F'RO2F %"FCFF(Fyj!;FFXF2F6!;F XF3F(FO2#50 @f@$!O2 # #O2F F +@ 𰼱FFFF(x1(FD9i< .  
|SFF uXF (F9F"3(F1 F1FXFSFF & $l(F _d:F O)M) (OP	ON	 *OM	OO	 FAFGFO	0c )O_O\c5. &6`O p(F~A!FXFCFC(FCFO2IF XF:FSFOXFk!NR@? fh'j$ BO7Q&p& pвBԿ "" #:F "FF!h # #$#:F" ghih#i)+)!l"O!d"*/hF8Fy	)h 6 O 	c"zh #h+R) FX	(h[$0jBFKT"F(F	9F,cF	,`EF*((F!!cF?h!hJDcj9F		8F	@b(		 8F		b 	 		)Eۨ ] 8  B
BCFP иp( ' 'A
(
 #"O @ .ԿO O๲F&	PF]$b(	UPF $b" 
OXF
!BF
GFO(FRF	,U.,XFj /49h"(F
FaQF
(F\
XFQF:F PFb(	 PF[b!	
(FKFRF
 F(h	G(hIFC c1! !/WyCA\)XFXF(F!h@F !3FXFXFI!:F$h(F9F FAFw Fs'(Fc!FXFCFP(FCFO2'XF2!CFCO "hQՕ#\# _#50cTX :l&PdXF#ih5`c"!i(8 (h7H18F ( FA@"SCEB!F#40
2@RbE@3P1Bh&rl
! 	XFdKFx #! "XFi*'! '2j P_rԓ(hQFF(hF7 'O(FiBۺ  "(F E!SFzFO 
Fa(!
jhBб OR `:F  ! # (F1F0F (>Е!4*	   1F(F	8 -iPESFO3(F) hO2\0r!3 )XF!XF!*HF )O!

iE/ #9F`(hWXF' ! "cjXFXF!	i((h1F  F"D- cXF5 ]SF!6FcO	Hh#" ##ji(61*V#@@R
  N   iV("_s
#(F$L<?(6 /ܣi#(FAF3`!"XF&c(F:>j '(6V#
RV(#(F$<C7(6iBj haW  (BK; O 
(r1[FF (F
FQFXFQF
{	 ( 
l 's (SC!} .PFH!vG  -OqF1FZh1! )w6 )ArBl *An !FF (Ae(",)Fx/8K8P,0 FQF "V8 ( P`l (A&60 +A  FPF (hx/	 &+  FyD
5M/i / ki+XF!iPFa,!&h
i(	 	
jB  )H0( #H )AۀL  *AրD +AЀ   (ˀ_rŀC  *	 )A𻀺  *A8 "8  (A	 8  (A;,0 +A )A _ +A<  (780 +A	 (A )A )A{CF F؈  )Arkyq(Alj   (Af )rhFOhɉ )W3B F!}h ' :F;FQi
Oq!<P1H QF80 "<8p(p<pHp
0FG
H(8 Dp<FGd<60 +Ak -0FiY0Fyh0FhI PU``ah))
q /'FdRK+ "`
UFH03(p(   
IFJFKF0FFb (  "+
IFZ0F{JFb6  (@Ѐ	 "
'
0FS@
Oh Ǿ Ǿ Ǟ   !@"J
@3
B 'O	$0*hh	iQ0Fx 7hB0F)h 0$	w0F)k 00Fik 0hc8 "c !8k)0F 0,)0F "{F Fj0Fbic 0 "hcF40Fe9FF0Fo "hc0F0(c
j0F 0:FFb0FYb  AH0d 'Hpk< -0F| ˾ "	@ ž FF)j  !	# $9F%& F0w#{{hz XFAF7i!XF %1FFXFtc60 +@qPFa2!/x(/8p
^
<`6
  BJ  4p,0 
P.DRFF *Fk1dFD -m@BI FyD$ % FQFqF ` iX.F`%:F0  Fl !^S`dh *!o XFRhF O6x	+XF*!Rh;hdXFI  A0QF Fi .XF1Fs+"p @@_wգl FYd { #*! oXF!FXFDO7	 (@ +@ P 	 BF FF ( u+Պ .	91FXFO6`.z .qXF9F.fl_d
h#	BBFdp#`C` FO hA:F!3XF &O(# FhYXA
K!		  XFXFO1	o6XF!
hB! "kiXF! ";FXFXF
!BF;h KF'pO0 # hi FiQF(Fg ` '2hh:1 *h !h186 (ܟ   IAXF# !$"	0FZ,#$*hB 
F00F/s0Fo
WIKyD 9F{D"a2 '3       Y@  C0   ?A+ tE487X0FiD5B6` .@\ ) 䁠lGd- F(o-+!/ XF-l	LS
XF5lydXF-lShdh6XF!d2F
!2FXFWd
hS
!X2F XF!XF  FBF;F[ ( /0`=FF=`hyDdyD`yDQ- FD #21?hFFBFhB6231B1F FF F	*F # FXF7!- 'C"#1h@E F hQ[hMEFXF!cF"72B FM*F3F!F XF,;F-`!XF9F F#)F2F Fl Fjd., ,!*F&FFXF;F	F!-XF	 F` F XF>!-;Fx 'F  XF!*F;FXF !!h# F0R2FA76hB! oXFp! #zXF  Fh*!JFXFx!
XF	!XF}XF9F F,[XF!"o XFQ!-fbXFf!JFXFX! "	XFR
!"XFPJJF!XFXFF`x!XF96JF!XF F, F
2F# # QF F  :JF!XFXF F,XF!:,P -@ p;h+@(  )@𡀐i (@Vih"0/h_ *@9x)@4Ehx _ *  -|ql hlFxAFd F3h FAF +Fri3i.9-XjjjBF F[i +]ijhB	 F)F(FF F XF'!:FKF XFO1bFo4 !:FXFh|-!:FXFFq/@ h2h -@T4{DF iLyDT &! !3FO0hj ` %7h/9ѱhhx*4C f /.iN5h-(ѱh
hx+#IHFyD ( ցIHFyDw ( ́6pwh2"'
shhp5F =F.F F, # F( BFF 1Fwj F,*%XF!i8F F,  & F
	# %Q	O1  FQF+F   1FDXF	 -۔1+I FyD * a.ѽI FyD8h
XFXF8P Oh FFй

Ѣl,!
+FVd	 & XF	 F #	F@ +7HldAd 0rF,! XFzF!XFYAXF
QF3>!XFL 0! XFbF3\XF ![G!XF6QFBXF
 0XF !3A*G.8!:F3FXF9! XF:F+F,XF!+IO
 CF!*F XFT F)FBFXFa!:F3F/ F)F:F#(	hXF;F !XF !7  '
B۹XF
!h Fh
X!Zh)F F F1FXFPXF@
Q! _!
XFй
XF-!	 #XF % %qE8x( Fw1%4!.%, /1O3
gl "XF!sdagF0ha *?&O &K-h{D%1F "F ():(F7 X& P& ?&  " n" b"   r!  -OF
FFqF ( jmXei ' FFO71+" / h۬JzDJzD)xH)ѪK{DK{D IyD #! !O00FF*xH*@ 0F
! "CFHFlYadi+ 0F8 #*!	 0F! !""6  cQiO +"+i@  FHLA)iEF)ih ( h *@󍀃h Fhh] Н+ b"+ h F
 F F
! "F0FCFn0 
T /Z
HF!p(9F0FbO7IHF 0F :!IF F Fxi!0FJF3=9!0F iCFPO
+sF!JF 0Fy FIFbF0Fa!iCF;

  F' FAF#50F	oi %5l "3d-xt-A  
!@ 0F!@!0F hH %J! FzD2  "FPAFH  FX /0F9F F. F(F 1 3 2 /  -OhO 	hFFF $ .  ) 𸀑 [8ظR7EظD0 ހظ a@?8 𺃸< %@2J
ظITG  yP   ظt c
ظ^bиbiи]@
&Sظ@K\и@ ;	ظ G*ظ@ꂱ =Ӹ Հ@܂ KjO@ PYix nXx0 0Fh!0i  +ڣm\  Fj "0FIhJF 0FIhJFAF0F
! "Oh@F	AFG0h:Fr! #R O00F+F!+F0F {hYx 0F1O1:S" oh;hFxhE ,BF0F!+FF9FBF0FZ FAF"h h	F F  "CF Fhhh F h	F F  !FK#L# FhhDh F h	F F  AFKFF0F%h
x*"+FC*Ih"0F+Fe! "FCF0F)h	 F W!CF F0F8h F AFF0F+Fw+F!"0F
h F |AFF0F!*FO3F0F0F9FZIj1zhyDVQ
jJ
i	KhM;  O FXF  !KFYFFbFfF@X FbF[FyDx@ òs0FO
p*F9h'F F )SFJ!*F F)F"m*F7Ae0 FS  FOE0FQF IF Fm#JAFeF FZF  F F ;0QFJF[ipQFJF;hF ';F:F&* !YK0!@  _IC0 FYF27JEۚ_jh "0F !oF\o 0F![FQ0F_  Z FYFJFS " F9FF0FMF0FI
!JF+FF0F F9FRFCF }"+F!0F0FQF!0F*FKF0FAF ihIF  *	QFF F $F FF FORFIFP# F F~	 F	 FQF IFRFN#  FdE!BF;F 0F FAF F9FhF(i BQCK0Ft!+FQ  ( A0 }e*@0F!*F
:i0Fh !F
X 
(
     AF F L! #( X  FO 0mXe  
 0F`#QFF FbF ]*F F v! "0F	(	 FL0FaFEhZm FJeh*F X F60F
!+F0F!1IO yD"{x+{x+	 " xh!0FF Fzh #F F F	 F@F#&   -GFhFFh5 $	@FU2FBF	  !!3Fd45B8F-O FFF
hQFF(F~DF(F(F1F:F #7!rh[F F9(F#aF!:FSF  FCCF@  F *a!`!rh(FAF2(F9FRFP -*0]z!*F FO3*F!F F! F89FF FC!rh F;! Frh F)FO-OFFl  
h	 - 8C
'(F	 )ֿ  Jls0l d` *O  ! cF(FE+ F> F2F S
b  FCF	"'(FIF	JX	( ɀ
      U % %   F!2FCFF (Fh(Fa!ZFSFG3 (Fb!ZF3FY Fn!2FCF F(FM F/9FJFSF\8!ZFF(F3F!9!ZFSF (F5(F!4 F1F. FQF*qhh  F)3O	!2FCFF (FF F1FBF{a!(FZF;F F9FE(F!"[F= F?9FJF3FOr1FZF#e.࿱ F!2FCFF (F F9FJFSFZ FQFO̹(F
)! v!2FCF F1FBF, o RO0z!(F
O
FFF)FF8F"FBF0`8F!F #3`(F8FFF1
x*рh!i
"F(FFBFШh!#FV F8-OFO FBFFhxFHF%m Xe0FmF0F*FE FI!*FSF*J!*F H!;FF F! FBFSF FaF0!*F;F F  F6! ;FcO
*FCFO  F !BBF WE F3! ;FiC[F4!  F_J! F4![F F FLO2!F F FIFCF! F FaF!SF FAF FZF;F F0F)F0F	-GO FFFF   ) x
H.: E..7D.@F.IG.@mP.K.-].=h(Fh:FKF@FmFX2Fe(Fh (Fh:FKF@F1F:(Fhh dhhF(F SFhh(Fh(FhF(F "hFL#K#h (F3hoQF;FF@F( cF 0#F@FO!F:FF(F3F@F1F!F(FJ ;F! !F@F(F(F-ChFFFF #&:ĕ  E   &P#h80hN"hh Ci0F!BF;F,0F  
0F3-GO 
FFFF   ) xH. E..8D.@*F.KG.@mP.K..].@>@FmFX2Fe(Fh(Fh:FKF@F1F0(Fvh(Fh:FKFlhhhhF(F 3Fhh(Fh(FvhF(Fp"hF.K#L#h (F8h\1F;FF@F- #(@FA!FF(F2F 3F;Fw!@FRF;F@F1F!F(F2 ;F! !F@F(F(F-CFh
FF +~Sl (yl0F7d`F (oШl F!;F F!*l:F0F!:F F4z! F:FCF_l )>L0F	LlSBFdl!BF Fx!BF F "CF!F F;)F F	VCFV!:F  FIx!:F F!O2+FF F! F1F>-O#FhFp % `6V 
  FIF?YF#F FRFsFFV, *
8FW #V F !V<x Ѳ)  #2R FYS2KEk-l5d # o !*F8FV<o8F SFV,{! "8F_ FQFJF) FQFJFA38FF FD6B$ Bw-*F8F!JF FO 	.`qi F2i		6E # F 0M8F)F	Oy#hh	-OFhXFF !$"F\dIF`lAadTAF ( (͹ Fn!F FdIFF F2FAFr F Fu-+xYF^+jhF  # F ( 6 "! (F(F (FO1RFoU!(FZBZA8FIF!8FAF8F
Fxh+	H+GЄ+D+Л+"izhh	R)L ~;2 + F! (8`  q;"F hx(Ѓ(؁(^(b((М(ђhx1˲+0F)F x!a!p#    l0F!F5d*FBF    -O-Fhh60 +@.($TC	2j	phTWY
h=xH-A
y
 l9i

I- " ##
h
9FzA
 TO2O3C1+A0(00 !H-O0```! 𬄥L+@I-@ 𢼸hhx*сiH-` `I-"L=% %% + x+@𦂥h -+9F "F69)FO0F)F" ( 4jO(	 H" 3j\|t@t=FFhCrqIF* IF" hhSiAiCahAah,rKhX qJ
(xhhL(``M8M1)pi) 00)xH)I)"L9# #0 G?2}E*@
4 %<iODO(	
 "hh "5YXFZFaFF   "F0F1FFZF3j-	2Q`	tD@́4h2j		 XrhPFOq\F` ( 𲁑%Nt4h ( !B`JF` $aaa %bEAF 6  (@#CC 0 
(	QO3O2#          X 9UPFOqF (~O ~IA 	,)3hB`aa%a` (`E"b`Y(!F S&a6 ҹ j %i $ ([(xH) L (@
I) 
2(B $ % @)@0< qY r_F
FcY$(    #h_C
C##
#"@+@ " #
#	(	a ,Cc#Z#COq !
P O	O< FP @=+@tEYF
#@@Ph(4=(4 -ڑT YE!@ T<BT(hhFhbBA@ #  #5(4 +ѹ	 + +[P ! @=(F@_{X( "PFhj!FF0hX(,hF=( - "PFX #H! F\F KBNJ "a0F1FF"F3j("	4X!c`tPF!FO b0j	D0}E(@;x
h+@8i ( h-@}@FW! #
 AF+FF ( kx@gEh @
jxx =ihhix*@Ta(@O+h #:1P + Zli(  !@hIF ( PFl0+PFF -hO5!= @P^nO 
 # EFFo3 :JEBB +Y\-UJEJx8 %  %^!BFF@h !TB  (O1	!B @ UkhXx(F*F Q:0O  2 !`)F]O 
UFFFF  %FF %PF0  <i "IFhF6 @ FN
8#\9Ё@+ %D0Z"T
oJzDoJzD! # "YFFF($Da@@qQO KF P!"F0F1FFBFlYFJFF0,DaNsCSF $O! "F0F1FFJFJ2j	U(#"Q`"0j	Y`t9x)?@IxhyDF (78ih*3уh]i)x).M9FRFy2!RF F|"F0FH4j(" @@$i`	B`"`1j|tAt###QCC#-#Q@@R?T[ |C
Ch
9FFF
)F  	PўO 
Fkb     pF
Fi0F)F"F< ,p-OhF<F"
8` V yyDF(Fd2H0C yyDF(F3(F0	)F'h*!#;h0F!  "h 0hhBV(FyD0 &' _ ypyDF(F!8  ꂮh/h0F0F"ykkq*
 *5hE 30SE "!F ( AA`9FP(FF0h
#

		O	O60"hhEO #Wh #Љ2A@#3SE  
1r ( 2`O iOhMq.hP~ !F(FR( FA| `hh { Eۧc9F "(hK
cq(7#h(F 1! "0F"1HF 1`O 	FihM9qJF(F!F`h 			E 't "!FcD(FkCF
k#(FkCF!F(F hѱq(lLh	Z h!KF0F0F!JFCFO FO llHLlYX3
!d!+0F'
i!&(F<!"0F=!0Fih*!F(F!0F`"!0Fo  !F(F&p9)F!F (Fo*F0Fr+! "F!![F!F0F!0F0F! ";F;
{sK{Ks*
k[k[!0FCF!F0F!0Fn0F! "KF FCF!0F!F0FZ!;F0F! "0Fq+s+8!0F?!;F0Fi0F! "c8i*0F![FU!0F!KF0FJ "!0FD0Fa! "0F:! "0F4!0F.!0F(;F!0F"KF!0F0F "o 0FF!bo !0F(, U0F! BF/(F9F
0F1x)	
 
Fk )(Fhk
O !yc1+@v (Fon'l yq(r(Zp(@VlAF"HplL (F1HLF (@Łc ``*0Fz!iF F!(F!F";Fk<+3"KKH !`!z[kk݄[  0FIFp/ѣl#lH*! #	 dJF0FOgl aJ1"(F AF*O 
+F (@Ml!ycHr)  d!Fdq* (FkF
!ykp)<8ј1 ++
lA0 "+H`d` +	"F 
Fk )(Fh0FO LF0FH!FBFF(F2H!JFCF0F"hiO3h"KF (F!F0FQFJF_!0F0FAF0F-!JF[FH*!SF0F	dJFcl a وA߀!AF (F*~F (@	*!0FF;Fxc*HLdd+!F`a(Fq_Fk<
l H*L	"F 
Fk )(Fh30FO F0F!FZF(FH!JF[F0F+(F\?!JFF0FSF!3! F0F(FQF,"h"h!F(FO3KF0FJF_!0FcF0FYF-!CF0F-!0FJFCF0|1!y+	ѱq(F" v  +g"h!
 	1&F (Y
O 
ihM
(F!FRFK
hK<

EO5k̹00FQFJF0FQFBFoea     >  QF0FJFQF0FBFo%a 
AF '$%
``8F/ -GFhFFi " FFF.1F " F( !
FFF FF F6 a0a)Fa !8F 2FSFfF  )F 	#	8F0 F)FA
-OFFFhD )v!:~ #FO  %FK0F! "FڱRh R+   BO2Pa} FZp	iXaad XpQ+  zj8h!JC!0F^  #L! F FcF)FF0FF{iE8hE+ *(݄! "0F! "F0FF Xd  Oq( a  K! RF Fi)FF0FhF$" !)F  #IF  F*F( +F:~2  )F vu!:~H HFB0F)F AFXXi h! F@s %F*F C]E0 F+XF FG F %Fm"aj ((F|@l¿pG8F|%h`8FFhk
 #c*z *A(hlh)lB#+r"d!`lrh (HhBh;`Bh*6 8h (lBѴd,`j* @ႳjZbt  (r0F@-AFzFfN+z+ oh<hj{(!y!by*s| FF FF0 (F&t(F &|(F0FFhfGh0F mh #h#e[0
` `h	h` %5 E^eE8FC`i #0Fca  -GFF (({hO O
h m%F &P[T6 ^ 5Bݤh ,8FG8FjBL:p8@= #F8(hF(h F87F^P@h-M9" #1D"0$ ^ B QZ ^B"5T%EMD>pFhy06k0*$ F F^`"T#Px ()06  J$ B Z pF02l4L  YkN   F FH^ "T#0x )  8Fh[ (]h
(`m8 m !!e[^  *5 M %^0B  ^ i[F8(F5 "[ 8#i^  8  `EM0 "` B Y Z  (x *ѝl-M8@NYyk1@[PF F8@#  [088F[0
F+ѐY  F{[#+`8(` F#8 "Y 8  8-CFFFF> #F hAF=F!	khB(F|L2@\1p'88`(Fn3xZ*L:@F F  -CD|FF #FFd&HLxDh 40F!FB1j(F$>ABjB $0F!F
F8P-B $e%0F9F #XF kdF @   Je-(F  
 -AFFF h
F`x(@
AB#aJ F)F3FzD0CEB)FJ3FzD  F  -OFFFJJzD 
 FEJ zD)F} FIF*FF (u`hIFXF8:J F)FKFzDf_h )C8#hY|F1  FIF"SF"hPj (0YAE
O 	" F)FKFm>.PF"hFP|PaF  F" #[ FaF*F		

E"hP|X .	8F "KFF F<8FF<3F^ + i (t	g   -OF$	
p4
F@F{DAFd X "3h5 ###+Fd$zD 
$
   F)F:F%F (HF)F3F(F@,$ FAF;FzDpFptF$4DzD{D
 $ FAFzDAF+F d mlJkQxA&Fv\xDg gg#Bs# F gAFfE+h0k$ B N9 $fF8FF 8  F9F"+FW  F !:F3FxCF9  F1F"+F=  WF1F  FBFF B FAF
$

ExO i (VJyk2]JAF+FzDFd 9  F1F"+F  F1FBF #x *UОx .R	 ); #vBsE#J  FAFzD:Bs	#J  FAFzD #Bs	#{J  FAFzD	  #Bs	#oJ  FzDAF  kF#a	 ! J+3|D
PDRF!0F O 	A #x
(  B#BO0ZB  F !ZFKF:2\Q1T8B		

EZxx@#x@)	\HT:BHx@# +O 	KF\			*#J F  !zD3BGDyEJ F(  !zDKF0F%p
53hB7h܅     ( P           -GFkFh!irjBo C h0F (V@! E UkbEipb $>iE79 P0E U8Fk EIF F
		(	PFSKE@1jmEAF zhrhd
 / FFFFFCNF8(F1F:FF)F F-OF^ FF"FBP#@hQ02HF4(F"Z  k 	j  "ckE	8Sj 
EM B҃E9F 
D FRF  F (@WDF	O >rj
 \0O ai )Ѡk1FB $FO `a  (O 1FHF$X 9F1FHF$F FOFbi
B Ebi*Yh	 ")F		,	E
Fh #*F		XF9FRF 	 O 	F\WD 
 -?p (M FXF-OFFhO OzKLEѤhGiBє[ (H FF ѠlF  FYFl3FF&e0F࠹%F &6 >^ 5B %#^[0`i - ,%F%(FFFEhD!F"F(FFF(  &8F!F;z+(h,! # (F(FXk0(hib F!t8F8Fk0FFDhh3hhB0Fp>F .1F(F(FQkz+ hbk% ]F lA!d )JzDhBal`3F^lB k&8F .
 k G k m    e FiiiYahi(ia`lXd(F   8h#iYi4 

z-IyD 8F iEa FR(F8F8 3K4I{D-O]XFh+hF!pF,L|D %
:i( `.X!F (55]E)"J zD(41J zD3z5i%J zD0F:PP8FHFO2
J zD#F}-!  B#{ h     -GF
F )KЌlh ,3cj{aj0F
7vHF !(" 'O(
`iB0Fajfj'k9F0FZOF /0FakS0F!FOdhh(h?hj@j"b iG  b -GFiFhFy(" F7l h$OtQ()(l #@(0!F8F "WFع|h*l FB(@h"fayhh1e 
xh
6 !^"   `t  $ F-C %FF.FF#i7@hPz)%AF"i6ciB FD!li F F " #z#14  GpF (?Cih>i`i!hhh4"hi+iX(ajYiUh-hX5 ,(hBj)` !`hi h "e- %)F#hh*i^"h FL0F F(Fp-OFF#[0+!ѐZ xұ
#BB '`Yp_BsO7` ' F2F (@[0O2^  "00T%P8FFF$ "(qN$`  B *lF0xK  kA(yHV *XF  DXF#BBЂBsOO;O !
#Z?\pE0
  *BRFEF%(F(XFF (e !KF  FZFF(HFxWXFIFRF!FHFm ѩx	x "`C68FE
^ X02F$ _x *)Bjy2
+lFPxk@,kF (д^0 " F03$`B Z  (?F '8F-GFKFJF{D %FX̠hF)q i"F i9F2F+F 
F2)F F:FKFF)"ih %)(F 0B*fv h7F[0+Em !#[ T mF m%e(F>F[0
F+ؔ[0  Y +3 (cam`e )(`^ "T,0x )202l4N YkL .F F! (: FL4+[0 (`F"2T" ^B`HZp^  F^004` ."2 !>BZ$`T"0x8x" F)F F !)`-A &7FF
F[0+ؔ[  "X F[ (н#+``m (beF*`^ fe "00T!041$B`ZpEFۓ Zyk2F F (> F ^ (!)`[ "3T# m^B`HZp^"02T# 4aE "*`x +  *`x * FA0FC˱# !  hf@##!O_ n#`wcv eh
  [ (ؕ[)(F8jm *  # e#w0-AF[PFFFu- # F 1F:FCF -GFF "FF[0 +F+FF F FBܥc=GDAg`' "FO`"ww  HF9F2Fch5HF9F2Fchah #FU`hSp Fa(F-AFhxlkXF (6K"F{DSBB.j3
#tj&ttbt@")jhjbuL" !#u uu !8F
!i|@4 o@ |jbw@F , 
FFF z+#Dh)F:F hF / bj FFhk01b0FF  %(F-GFhFa .EFo .B %9.F;i ,PF!JFPF!FJF ( .F5{iB "At ,8F!JFF8F!FJFF,&EzE0F  -OFFDhx3z+ + /  /@|* @l
h/ݣlhBhh +Ou *@!0F
FF (@j NIHyDxDh +@ h9F (@r+F F!aF (@h8 h FP \"4 (F F @XF"& (@𫀛 (A *  PFA-.F (@ UF " (zћ0O @J
2
mѺ?jغg j E
 m ebm h "eFQahiELO F?:cb4 @ #ct 0 t$	a9!#p	 b:!#	8P#b8c  u,`O
UF #` -? -@ /  ր 1h(5  @׀0 \+@ǀ )@И + @F!F (@(0HFH!+.PF"EF (@  #
4 ,0h0"IFPFFN,O	O	@F!TF (~/  " # $ #h@F!RF (d FkF F(UZ| ) F (r5zejSbpz8!$lbd /##3r|B8t /5/! dȿB 8 0jBD F8 j01h hF%%
 /=Fj *њMF %0F(F	 * u -OFFj &F8 $0
XBFM0 ( t E FAF3FF (@ၝ,`KBS  NFD F (@΁8 i$0]

k8  0HFEM
@x FYF
 #'F !

k	F+PlF (@{
 k8 hb
(8``jBM)@ .sEq8`@lF (@W5
80khb[hl (@D
kk
h2`O
k0BFMI@F> F1FKFF (5XlF+
kkh`kY
AJkk 018  0hlaF k1FF &
 (  )O   F  Fu  B FE  XBM@@E:`@l	F (@qB R `B+`	@khHhB#1FU (F F1F:FFX8h@lF88h& & F(F .[D F (u=Kj{D!jnbh"0B5ba|Yj F)FPBF# # FB=#F (RPlF G'HjxD!jnb h"xAB5bhjk0j F#`:FFH=hhlqF08h %F F
(F 8hCl)M@F  ":`HF
 k rk -GF
FFF  ;!L0
CFF  )F `(#v^CL@ `P HE1hIBPF `029FGpFhFF{  H0& "lF`k
p-OFGk l (9ѴF
!#lE  AxkA BF  FYFxRXF "3FF8Fi5UExk`yk03F "F8FV -GFFyFkF48lryy(Od
O 
C,$ aD	 1F	
 L ! F!px   F|8`-OFhFH{D2  ;
HF?F (ggHF (HFVF (Tp  '+ !F (FF C{#iQx0!FHFHF{(XFXF(F9F #FHiBبk9F Bh F @.H@.@FF8 Fx" #Fq Б.  #F (@hlFv.ѿk8FPEL088F!F(FV8F 89l.E0yH k 8FAF&8 kyQB؀D@FE@FL0 @FPE@F!F5]E]E.}yk5](FrPE(F!Fx   X8 !F2FXF  -AFFFFBrRK)j{Dh"0Bihk$0; (`(F1F
RF (@ *LR@^F{* /v"(F 3FF (l;#F(F1FF (_рF (F #gFPBXlFh9 ! (FIF ,0e$-_O>D(F1F3B(F1F #Fй@lF>8h)j"fDB(F1FB+hab $ Fbf ze -CFFhFFDhXl8TFP	 9F	 t(F F-C #FFh)HlBQAFqpl+ (@k$@F_F@FyfرKPlF (@	 F)F1 (@ZkkjHa|wFk # )F F" +@k 0" #F FAF	 (r8p8bjFBM$P?<9B;D  (Vykk)F  b[li "	nN  k +;jc (5)F
  !;`lF F)FAFkkqLqqq)Fk 0	  pkhB  -AF
FFk 0 $^bkEUwwj9ZF  O "G>- jBMPF3T0F)FkFF (%Zl (0F)FB (MPn0F*FFHl?$ |џ$ F
F
hF*@kFl `-OFFF OO  0 +@
@xrBD 'F 8FIFnxq6ipE&pFhl ૉ*kkk BiyZjK	  B CSBLP";(FF (l\N#XSFPBB15B1BLPM 
` FN  Bۃ+ܡZ	!T ELP
pp'b`\^ " E
(F B!H3bT0  GF(B* I IF+A2l"ibE Sp)
pjy+#qikH|8(F9FRF
O
4;-Oǰ0+{D &@hXAj#hH !E"^ "S%Phx *b (  hllk  F l$(Fb|:  " Fl+l " x @h&nxFr 0kx   0ixypkx(F
kyk3 &`^`b(hAE@/!/W$@7p`lF (@+y + nx.@𔀨)B@l* #B@ok1M=ppF  8FCF (n)j(F <
!r 
r1F {|"8F lrBE 2F)(lOk G^xF  W 	 Fk6 
~
cE F  ! # Al Fbyk21Bx rph jd "ak ( Z 	 .q
WB>
?#
&
&O
<
Egy7 lb LN(k
	
nO	
	O 
	
GF 6# ! X#R& pYD .i
 Ebxr&jHl0F31F FEgpI`x'lCgJxkB. H|8F9F F'ʊFI )kJj BM 2 ! ## &	~9FF 	kHF Frr
!
!j P\
`$	N#	 xy J`F 
 	`j&L"#	@'`S'0F#L Q' ckjqx
	 );O 
 K
.qxCFJA ! @B2V";:9?0l CsL!k @(0Fj* E.ఉFk 

 K A  0FB(A# E

< D
>XwE; *8
	@
Y OK	
  ^@F
@ A+ 
20"0x*kQ+ h`+
!&	7$B$Cj; #FF"
0p[sEF @L<@`,:

	MO $- #2ZEO
~.

AL< #`A`F\>;
:W
XX<
o11W	JD8vG *
1	1		$o	qE\L  8L` #l*MPn$kVF9x FF<vE#)  Q&0A&  B&0Xl$    s () $A|B&0I "llv (@E
		xhx @nxhGE( #"Q_F:FH

X"HE<FF2@JEۘB
|Rt`Bt;FB
~Vt,l  F F)Q&p8F .8FS&
	HEK
P) 1Hxkh`	98FR)88# (BFO 	:)F FhF l F
/ +@΀4		4	VB\X
~kQ|kh`.")ayB
FV=#8F!F2F;8F1Fc| + &wxO<O 4DFb
&s
Q#`8 #1rx *F  #BdE? /̿F#
~ P`,BQtX#lH0B%P$  "H0F

 3B
HFR$V4\E)W*`

k0{ "lF$E $#W$ 4YB $)Q$ 4N	Bx \ hO  !(Fip3^0_^p ?\ F0F@FE;hBG-OFF(F hF[)pm1i [@Fi2Fz
 (@uC^pP"7V'p
'YF+F"F 0F=
 ([  P P  Oxk #9yxBO
FQ&
 	rFDF&"F+F
 AF
 8F9&x	  Ou ڻ MP "$F($ !	bPCD` J zD^ % ]DX|h
 ! Z|%
DQFPE
j!
0E瀹  ""[F7< (F/K FB(F&k AjkEF 	EFFRF3F !RF
	 SD
$$ )?o(F  
 (ZѶ^003 )6@+xl
 (L8l} DSxkC)x	 )h )F8F)FF8F2!FJFC4
8FT
8=4&@ %
 !F8FBF,FBPZP
m{x[0F^"1
V! Ep[@
  R -OF^0 h0"3T#4GhEƀ[ *@%i%
# ^`"0 T!P4*lkH x9 F (@8Fi"F (@hl  (@J#	
 
 	(FIFIFJ
(F>AFSFF(F (ox1 F) (I^^0#"3T" T#l @0P@0JxB 80 HFYF	8m8j8eD ?m AF(F+ HFSFQj (^E"3JT# ^ ^B F F8  	-CFjFFBM@^jF (XF%!lF Xxk@!x  2 AFh:@F{"+FF8F (-6  Bxbk0f"+FF8Fй)h+`  3
 @l8 k L 3-AFGhFF#(F  " #~8F1F "F0"F8F1FCFvF(F F-CFEhFFk| + (F@0F!RJzDA a(F!F^BHF)j CB #F (FOF (|BFЍ 	#F(FF (h	(F
0X(M@5(F 
 	 ,B#F(FF (8Hl](F  #"0F!pt (F#Fp
!
! $Xl!8` FM FDhF.# 8FA !{hkEѕE8F!k0hXltt!VKWJ{D-OFXF;hy8!` (@2lh +tqy)qkC xFFD   Fj0F="F
F0l E YF"3zӹ5I" E0lyD (@
"BL" 0lP@o0lz (6o z0l*OO L ( 
,0F 0h" j (Yh`#s;hB.	 tI h  pFjF +P| (M)}1" +D &`  F0 "(F!FFQ FCFH!;{.`iiB(F!F(F!F6F
 Fm ( FF  F(F1Fp@  p  -O-F(
FF @T{+@P{<m"aj +< 'F00F!b`F0Fi#F ,@$ kB|*iEKi /!SF>FHF  pt| /@sy+-ЀIyDh a	 k!FF\E0F!FF (@݀]FP /@Ӏ4iB - wy/ / O  FtD			0 +1z!0F[JzDh |S+G0l ~F (@" #0lC0+)F8 JF cF (@E 	0lEu"F+FZF (w! #
 0lCMF (j":I 'E0l EyD"5F (Z#		0l	Cs#7F (I#Bs0lF (;0F !F (4 F0FFP pi1jBѸ K{Dh B0FB!FaFh0FF( (!sF FPFJI H  G -OFzF+@DhS`| ( !h F| *@j F9FBFDN!j~D0h <FBL@&hk$0!F`j ,
 FeD  "B
ٵB = F)FBеBнB
L@FB:F F)F?F  &B .e.7F/e.7Fѻ & .$h &xlFhk `!`"`#`)Fhk$`%`&`'`hk0,!hab/>F2 hIF "F@F  &0FF 8F(F !LF !F(FNF(Fk F8-OCiFh
i(hhi , E, B,@9=|)@FG!F (@B!hh`<"
FihiHh{hh j4ѻE$ $jO K{D iYhh	j N0E#FIF FH(FIFbhFA+iY)a )ۈEE ,(irnbB+b٬h!hhbFj )@𳀨iBh hmbebe,@(h,лEhh!F (ГYF8F R2FP NkhYh	jFgHxD h BBFXF9F < Eacڋ#\F !k#"FVHxDhOxEyFOy #@FIF #FAXF@0F ZFahF#I	D#EySEy	0F#Fv !
FF8!Fhh (Fe$
9 !ii !@
NtE$a*h:h#ihh+hLhFh"h7h +h$$ &
iz )?  
F0FF (ihih F "E <D C pFh(F$0F"FF` F)FK0F)F"F{Dp@9pe'sFiF  # *s 
O4o E"@+@RBcC #0F #|  -OFh60 e   ! " FAh )E*l &``rh3*lR&)(F(l@&p6 7F.NE(0iwhHp 'k	 Z'70h3lB@Fk1hh1F]O(	` .+kHB@im )e.o(FX0+ {
+ x	+ u
+ r &	++
+ѕc FOq8 F& #4`  &&"m(F  (8 ) 達40 + 䁕d 8O rE@؁m9\0+@ǁ .@ā(F!FHd  ( (F E84
8F [) h0hk0FG F F Fh  hF F		  aE GF "8FF#iAhyz+Jhh!HF"6 /@PciB Z&iphAhh`0FFȱ G (@A&#i	Ph !(		O 	fiE F &	 i Hh9FF6 /@aiBۓ%I2F F yDF (  OO 
DDdI
 2FyD@F1F:Ft
 YF2F 	X		
 

ڲ
 @F1F "F (@ (N
۠  ݠ   !@F JF1FDF (MHF'iBh *@z)=4 F8hyF8O OPFRB QFHF=FPFE#ARCs#7HF7@F1F "$FF   !giEۻ O 
!HF/jHF!F (HF@F1FRF5"i
@h1F/F

ciE 'HF' F1Fc1F@F"1FF FX1>F#iPh!6aiB+'
/ѕd ((F=8F'e " #z#i# ra F !7 #19Hm )zЕ\0+y+z(FYm
*Ѩe Fik  hc FOq F#40^a*Ыnlcdd  `d  f(Fkm +J d  0Y J(h*c60!em*   /0F-d  *?􎭊. *-. F@!S F ('CWh;h î " s)Q7Fhcm + F(Fak`0 "bc۱ _ m_ (F "O1bk#  ak(Ff !ac hak`J !macaa"c(k@> &8FkJBHB FF  % F(F8
s)QpFرhUI yDOPp@Th0F FF(FF0F Fp k 8F h %h FyO2e#be\0 #fa  "eg$#FH c  e h!hFh F(F8 
pFN %hu F6~D i JhBShhj G5ciB Fht  pt: -CF ( . ZHCܻhC F FD!GchaiSJ F!zD
"iBhjiXNJ! FzD2h? 3B % FP/F&iph(-w``5ciB F\	&F@F)F Fh F)Fa@F=F / (6NEQ 'FF2i
hG76/ FAFE-h -p,Q	hh	hG F1F2-h -p F)F*F |H!i d FihJh"d0 F   6 0y53-<ɛ ߛ -CFFF
F 'OFh|)F  FJF3F9Fp
K)F 2F{DCF FF FFhw(F Fh
FFM`hPp`0F
IyD !
F     -AF
FFFO3;`O00`*h)xq)F Ff	J+F F!zD%
!BF  F;F "F F)F)F F8Fh %(F   " FB8FF,)F F0  88F 0Hg8@uh60S F0jfFM}DhM}D(F8 7 + 8
FF!FF(F8  F {@H@) kj@60 +˽ -OF #`FF	 (@F!A_sԢHK{D]hEԝhF %S" 2HxD@B 2I OpF ( rU F`  F,Feh&4HI"xDba (
Ls&c!d#aF `XFQ`2Eh&!`Di %8DCBcQB `Q+FaQFQ2FQ F,Q(Q$Q0Q4` +FQF"  F+FQF"  FaI F yD2F3Fx6P -@+F1FRF F}XKXI2F{DyD` F( +FaRHFbAF #FF(6`IJzD F F)F#i 3Bp"F hFP@
B FEAF!*F%i Fih\AF` F%iV2K"{Da!i` i0IBryD%i#H)a#i^v6 d )@
F Fi(I" FyD( F6`F (g!K{Dh2 FF (p\p%pFDFD F3 B* P&0'  y;)d6 @6 &  
 SǑ t Ö g  `P  Z  %+FHFO 	[ FRFGF( FZFMF6. -ћ " FIyDJii FU FOzqh F((F F $mH d<`	wKP3 *-AFFhFF(F!FF)0/hk0` $h)j2F9FGF $@F $h F-OFhFFF8FF` (#AF`0RF d0FK 򳄸8F{@0F (A&8F1*FyD)FcF O	[ F 0F!+F (AW"8FIFoFP )lZFLCF ^! F, F!`6YFZF  F{D F!BF#<ܻ(B00FyD-plCsdȻyD (U0FF (A FAFM F!5)F*F{D  Fl Fd%!zDYBFF F1F FqBF FOby(FQFBFF0F!JF# FZ"#  FBF%!m	hPh@hhdyDF	dhMahj ,FH0FyDH(FO2[FFc F(AG#60ByDlFh	=!(F$O40S!F@FRyDF0FO`
:i!F			@h? FyiEyD68yD/ (20F (A:0FAFl 	LxD p* F!BFKF(F!BFKF  F F!JF#@yD (Vѕ4(FyDp((FyD (O6 &O6 & qї7 8i YhJh1FhOxiEۇ7`	YhJh1Fh(ăDD F!_ &K F1F2F {D@ F^!2FIyD (U0F~F (A F!=K  F1F2F{Dc -(Fh_DF(FZFx6.Y& )&F`O6yi9O	:i Ch{EQ FIF9  F~!JF#	9 ڷIyD9	oO3`hAhh##J(FY#?s>O2O3##?s1 "##"#0FI#yDIyD (l	0F (Ae HFF ,FI0FyDI(FyD &I(FyD`I(FyD@(F(F& &8`HF1F (A>.򋁁J! FzDABFF FIF	
j F	BFd F	RFg FQF2FY F	BFS FAF~`lIyD (<0Fs (Ao C(FL ( )0F !BFT#! F!BF F!"F F!" FO3	x! F"3F F1F ,DYFE0F. (AQ	hm(FE	hehHhmDYF% (v-0FYF5  #,x0<)3I(FyDH1I(FyD ($ $ $ 5 Bπ0F2 (Aɀ5@Ÿ @B  & 6q  ē S E %  ǒ   M 7   E D   ^ r# ې o z F )j : 3 t    ێ Ԏ LDYF (R<k~D0h (k F!K)F*F[F  Fr 3h^! F*F#!" FF1N(x8h)F";0FyD~5)0FJ|D h*xB
)FxD  `#"` DYFI0F2 (AU=	bzT0FYF"F:4 8x0FyDL  !(F"	CKr X*zDx2Sh0F4hF ( ڇ ei+F B0F ""E ʿ40F f!(F "wiC!a@F! "`3B - Ȁ0FF (@8F)FJFF (  F!|9 AFdBF{D  F9!BF{D  FF9!BF{D  FDl9!BF{D  F|\9!BF{D  FrL9!BF{D  Fh0FQF`6c X!#	 F^! F bFV<#eVO  F )bFYF #^!Q,! F 2"#V,Z F ^!bF#7 F
!#!,# F F!"#		6 E XyD (m -k0FF (@JF8F)FF ( ʆ! F8BF!{Dd FAF FF8BF !{D F7 BF F!{DFO* !# FR,bFt!#ZF Fl 0 " FS#^! F!"#Y$ E n|yD (e -c0F~F (@JF8F)FHF ( T0FyF  J!+#d!F,7"F @F{D&FM 7!"F{D @FD7 @F!"F{D;!"F#@F   ^!#@F "O,0!@F"#@F!"#4   yD* (c0FF (@4 F!6 AFdBF{D  FFFx6!BF{D  Fh6  F!BF{D1:iO	Hh@!BF# F ;i^! FS	 # " 9i	 ChZh#h " ^! F F!"#|{iE yDF (@ F!k5"YFd{DZF  FF5ZF  F!{DaZF!# F	D  " # F^!" F!#16hJF . J`yDt (@ - 0FXF (@zJF8F)F"F ( .0FS$F  $!F5!F"{Dd@F"F &F&4"F !{D@F4"F !{D@F4"F !{D@F4"F !{D@F4"F !{D@F4"F !{D@F4 "FD@F!{D|D
yj 
F A!#ZF@F!#@FbF  ^! "#@F cjO ^!X "@F#
#  *
!^!@F " "# @F^!^! "# @F
^! " @F#!@F"#4G0E  VTFO IyD}F (Q - G!(F 
O
 pDlDh $N"D ~D#AF8Ff HAF"#8FDWKIF"{DH 8F#J8FIF"8FAFE""IyD#8IyD (@[xD 0F
F (@" Fd!K AFBF F{DOdXE(F +ؿX!# FI  JyDKDzD
{DD0F
x!" FN "!O FF Fv FQF
;iO h F! [(  F!P   lO	 FBO
dCF"o! K( F_GI!" F:iR F8F "^! #O0 Fg
!"#  F$[!"#  FRFKF! F FAFWJWHizDxDQ0hGx!" FO
 "!FF F FIFYF"'#0F.! "# FH!" # F!"# F <I  H i  ]   a   z n e r ;  ܊  J  ( щ  H   Ј v  =       $ Ї φ    x @ 9 = E  υ   W   AF  " #0F4!  F$ SRF #!F FoF F	 F	o   # F	z F		+ FaF%

 0"_! FO	 FIx!" F "!FF FYF F
! FJF F FF FFZF FJFF F FYF Fo   F #		 ѳ
q+
P
xi(E($! FzD`RBF F1F Fq$ FzDoDIF (WE0F (@ F!_)F*FKF  F^!*F# FO3hJizDoh FMO1R< 8ihN +R(Fp0hih!y1K{Dx (!!M4L|D!h )"h *@5I0F*FyD{-IyDY`IyDS0IyDM (_ FAF33xS+ qF+@o'f+%s+@ieJ! FzDBFF FIF(F7			F F FIFBF FIF2F &J! FzDBFF FIF		 FIFBFiHEah"	` F! !O0 
F FIyDF F!K IFdJF NFX F{DFD^!# F " "! FFo. 6	Q, *тIyD (S 0 +O
O 
}I(FyDH{I(FyD (O
O
0FzF (@ F!9qKOIFLJF{D  F&YkK!JF{D  FPgK!JF{D  FG}!BFSF  F* F!2F[Fֿ]IyDS5(F]F8FWI yDB  " #RI0FyD;QIyD48F4  (>	thvz F. 0{ O F._qѓ 8     r
 " "rOr"Zrz@  r F(8F?8F)F;0 +>xO6z#IyD (>& & - |  Ձ    * 7 : ;    | d  + }      n w ~ -O h + $O2`B`s$ʆ 8D:`yDJ{Dz|D
DhP4h_
xD01j*F~D6 @+fQЁBdpBКB*C0\ *p C)67,:{D3
$TahJb`oC'ou"OF !hL4?FNV
))-6BR,8JVelx) )
*1 J NS X\`)i $7;)W\blpz
)8GV[`e	9	[	
.
B
p















&Hk)),O~

+
4
<
]
Wa


oo|"&**.48HP\c 4K]
OS4DJQkpu &aa!  " #!1 6 )B| (Bnl .B(FF ( !t\1 +BхPFY7FK&(X1B"PF9F[TPF:FBO# ##} x :FhHh&! PF`1v 7 BO o	FF"XFR( " !FPF9E &(FaoF26z !h@F^ [hB/hhp pi'! (Fh  !lvz
! ;F "0F   0< "0FhcF "$^!		 H! "0F "! F0F$K!	 0FbF!0FA! "0Fh! "# 0F|! "0F[_!	 "0FT! ";F0FN0F-!  PF!BF\1>޼60{l'dPF)F%e& #`+t"` "dd*e!X!\!`$ #Tl(F/h! zDF (BP(FOF (I. "@F"!F?*F#!	.##@F)F@F5' MFziB%''x'#H$ #(F !zDF (B(F ("!"3F	$ #(F !zDl (B(F (""!F(F !"(F!"(F!"}ۻ ! "T(FT<<˻-h' &`  %'(F" # !(Fch
F(hahT|"'T(a  .dвhT0BI(F2hyDX@F!F (QO 	#DB	h Qx EF1
i
0I(F:FyD|		E

%@Fh
 @F9F`h" !	(FIpb uhz`%  #%0  1 +h .Bhq'!(h`uT,lahh'T,\z(TL`hh'TL,(T|ehh'T,(ܺ(F!ֺ(F}Ϻ #! (Fbhw*T+*h,(Fj*)F^"#+(F*^ah (𪂇h /Bh}#&1uTl(F ! T,ch ! ch(F
FF(FTH|bh(F ! T<Zpqah /j}j -f)vc! \.hp0FgF (R(FIF
ȱP?!yCj 
ChhB jSi.`@i (30FIF-T,hch"F '"ch%('ahOB(' 'D    ̼   : w w Vw iv  "v ''	%'#'bh'乤  ۹ !(F T,bhT<;ϹT| !
FF `h(F(FTTl,(F T<T\1bh +]j -*vc!'c  ghp"'%'(Fah "T< "ghT\<T< .hB(FyD0F9FZg,
	! (FQFJFb jl*0F9F@MJF QF(FD0F )F  ;{DF*'P*9Fs(0F9F,9F"0F9F 0F6p /B} (FAF_~"  x!;)#""  #Tlsj~D ; +; " !#(FF._p(Fah"T<ܸ '&p(F`*+,-ah(hahȸ`h'ĸfh>T|7qahT,c(hTch'q%'T,l T|T,Tlchh(FT\TL,T<<'T\'T(FT,QhF''(F"#'.h )w
h"hh 70Fh 0FRd`dq! "(h6TF(F%'V "#q! (FF  "!FF(Fv!3FF   (FT,F(F'3(hH!Q',ch' +'  !\>@pp9@> -  $ T' ( ` .Bbh ,,  ' L(FTlch<T\F'(F㿤 T<<(FT, "ahFT\m'οT\aTHT|7bh"T<\'T<|  !\8@9@8 .  $  '(F 9F;FT<, ;F(FT,:FahT\%'(h !#'|#'x "(FFU'n(F #J'c(F,>'Wfh'S%(OT,'Jfh'F(FT,T,' (;h"h{ehs1(F !T,' ('h -#fh.s 'ch'T|bh'(T\(fh'	(FT(FTbh(FT<,&(FTzDgL (FT<T,ch޾T<(Fbh#F'(Fξ !bh(F#F'(FT<(F <TbhhjT|(F <, "Tch[T "F (FLlT,L!y#0T,' &(F 2F3FTwT<Fq (F2F3FhD<lD8 "'T8<g9F(hI(hT8 'C(Oq!9qT8\c@L(=(h"T'4(h !"','  $Tlh'T<(ahH)')Fx#')F"#  "(F!F "#! FF(F !2F v!F(Fh'T\(`h) "< ! F(F  "! &FF(F "#! FF(Fvv!BF F(Fov!:F F(Fh'T<h(eh/)𯽯|"?(FyD'  "!(FFLF' bh1Pqchh(ahN)')F"#   `rx:ap 0F`7x?/qO CB8p #	2 p`y  p
FBEs	I(Fp  'yDg! Bs!R( PF1F

	 E 8EPFOq (81 !   ȁ1x?)81BS"q8PFW(HPF1FqG( jlR1pBݙI(FyDehh(gh)ʼT(F"x'T|h(ah)𺼤  # %!(FT,,_h'TL<(eh)T@P/hh{nB|I(F2yD2(FT(h'T<\(bh)T ) (Nx(F !,
h'T,(eh)h(F !"'#pbhh(`h)W(F ' T,chh'T)(E Ȇ >%" ) 4 !bh(FT,F(FF(F'FT<3 #(F !'T,h'() .wGq !T,(FT<,F(FbhF(F,F(F'FT$l6 #(F !'T8|h'() -܃NԻ #x(F T,{h'T\(bh)» #J! (FT,ih'T(fh)jr (r  m k \j i Hi   F! (FT,chFh'FT,)((hah6P -Axb+AI"h2p~`} !(F !T,,ch#h'FT(<)((hgh6P -Af9xb)AbJ#h3p[`Z #(F bh'hT|)(J #(F !bhh'T,)(; #! (Fbhh'T)(, !T,(FbhF(F #G! T<,F(F'a(h1FDT,|? #(F !''T8h()T,T,|!FD  (F'(hT<! #H! (FT<,F'0T,a(Fb(hTT,l> #(F !'u'T8\h(ah) "(F t!Fd'XFT,F gG'a(F4(hTTh(eh) #(F H!T<,@'XTBB fFa(F'(hToT,8 #(F !'#'T8\h(gh)j !#(h &H! 3FT,,F(FF'1F3F (FBFL'8aYA `X'(F(hAFT,: #(F !''T(\(ghhTlT|)! "! (FFF'PT<FaF gG(F(hTT,h(eh*) #! (FT,,T<F'0Tla(Fw(hTT<\h(gh:)ܹT<(FT,bhF'(F'̹ !T,(FbhF'(F'(FTbh'(F !bh{' !,(hFT " TlLF (FTl\%'T|_! "(hVF(F9F,(FT<:F>#F'(F'(F'zD' -_(h!hBgh67sUTl "f !F(FF(F1F(F !2F#F'(Fjx'(F'zD' -,/h!hxfh 2s" Tl6p /@(FF (@@FZFFx(F>JF3FyD#YF'otv- 8(FRFyDki@F_h O (R&zD&zD (F	! #: (L(F<  !
!:hh) (;(FF (5(F!`(V p6{Dl6{D9h(F dyD\&;h(FzD(F(Fj	 # PF=hm!@FIFy(Fx (s "!F)l #(F "b #(F ,#V "(F <,I!(F ,#= < ,(F0T,< !bhhklTa/h +@ . 8Fqi F`  0h"85")F {DBF#* } )h*, (@*F (*` (x  (FF (j(FBF 8F9iOXF4{D4{D phyD(F$$8FaF(FAFlRF8FyD?AFFXF}P5PFv;i3FFhQF(0oF&6`iE
@F\AFF
 l3bd.F8F1F8FIF XTL|lT,T8<T<l`hT||T.hSTXI(FyDa O		(F\  	 U RЖ6p /Nі}I0Fyp(FAFo} RTX<;07i@liBO	6 b *)FJF K{D0(FAFPh*AF|)ц~"  _ пI(FyD 'F0F F ((F9FF (@Ȁ8FO	\9F\
Fh(0dx@I(F yDX(FIFXI yD"XFF@I(FyDklZjd$ 0+"+іJzDJzDIO (F yDCFx0)ѐI(FBFKFyDFl0FQlFO Z  ) Ά0! (F[F:F$$ (Mѻ|JzD|JzD (F! #F (;0F$!0*""NF (1`0F` 0ih"/!!OF0Pl"	 0F 0F FO 0F9FS0FAF{0F0FQ0FYF@TXlNl0   ӽ\   ʽ""' ƽ ' ½0#' 𾽡x' fhk''( bh' T\Tloj>bTT<KbT' T@bT,' !Ƀ (F%IyD #I(FyD !I(FyD ~B c b >b .b G G rG }G a a iE E E ` 6` _ aC 	_ ^ (E ^ 4\ 5\ ^ ^ B B 7] ] ] -hk!<T|fh(FLFx9F"(F71F" (F (F9FR(F1F h <l(hT,ch' `h << #(hT,' .hj!eh0FF8)F0F"c!ypxa0F)F' ݼ/h(!fh8FF 8F1Ft#c"p`Bp' ȼ "(F 8!Fp'!ApT,h(eh)  " 8! F(FZ'T,\EpTL|h(fh) !' %' .hghT6  *E(FF (?HFpsi ԿZF 3iAFXv`1iIFh(0F (@ʄE ȼ(F:FSFyDt(FAF!it0F9F AT,<! T(Fbhx)zD 0ch !h)(F zD! "(FF (@(F (F.h	 (@ (h9FF (  3i0FBFhKFM@(FAF0FAFN0FAFI"(F9F  ߃0F F ( ׃0iOIFP
p0F:FFH(FQF "R0FIF":FIF0FIFF0F(FWQFBF(F9FO2WdyD !(F
F(F"/hT,,i6	 &E(FhhF (D(h;iiAV! X8FaF (8F1F3(8F1FY((F2FyD(F  (@(F1FZ (@0C(F  yDh (F! 0 (@(FAF| (@逘"  Ѳa8FAFhFhl *O 	 F(FF ( ΀ 
(FO
QF(F %lO 
RFXF^!LcF $ o	$XF! SFJF(F O1HFFiC/@FO CF	hYF(hh
J
hF +ѻ *6{D6{D(F yD 8FYF)h6{Dd6{D`(FyD  vD8FyDKP 0(F4 yD3F c(FAFF`2F 3F(FyD T8FIFi@(FAF2F.@FF	 AE(F
h  8F8F1Fa:jl.h *@660 +@10FD
p { 1F0iO	PO  +0FRF
!RF (Fhp (@"xb( "10(FyDp7 (FyD
iY$ B0(FyD9?(FyD῱ 0F "b#2%6P 0(FyDm0FahhF (7ТhPi D   HpYE);*_rԱiASat4{Dp4{D0 hP(FyDRF e0FYFa(Fp .O
O
F (7(FOOF(FKJFCF$! F0F)0FIFERF!;F0FP!:F # 0FJF[F%! F0F0FQF(FAF(F9F(F
h&)h &`/h`h6 )@(FhhF ( " βI(FyDi(F#IyD&|  (vD8FlL!8FF (i 08FJH`"

O

IyD`8F  }h0` 6 DhFO 	
FF	h8F		X
$
P$hE<;i#h !rdbF0 30c(Fx(F(F8F
|(F ! w(F! r '  ;FT<(F,j \.hD0F" 8pAFB"F0F[IFO
F0F3i0FYIFF0F0F IFF0F`hhT,,F2<`(hi(FY!   3h(F !bgh.rh2hx"\Mo }D[N G~D[xXC9h=`4 UI6yD1k00#5=`!Rp  '
h:h *ڼ`,>

 h  F:IrFyD`)F$p( h (K"nl .=/Hpv(FG ?4;KF?/!-/ [  n Z Z $Z ; ; Y ^; i; "Y Z |Z Z Z Z Z 4Z ;Z F :9 E9 Y xY Y RY  *  "O -OFhFF0P0  `@L`F ( O2``1  O1O 
>DE")Е))9pI FyD	"`)(F NjI(FryD&  
a| 8F Oh@6`.
 
  * &
0
޹hȹ)
x 8F! -~ 8F ! ":h8F *60p `h`e(
ahA+=J)FzDF bhJ9I6  yDh "b`h8gl /ݧ|`|G(Fqq1#(FR(FGO(F?Q /(F(Fh(F )l(F2! )Fh1"`&!60FU U ^& H& %K%J{D-CFXD %#hF%h *$(F F|d"Otw9FAFd"8F1F F(F>(F1F:d"8F|St B?CpG h-OFFFh + ˁ6 @ŁA , 0FaljF
hIF$"|IFH"XFv h O1"h$Z jH (@𘁖}0o`a} @S(FwF ( ZF-!i*JKzD{DJIzDyD / d1"(! HFO(HF!' !" dh (Fi9FlZFHF-!D 9F(F7F ( @h`h`0Fh "h0FP<< #"33 310B h #8")33 )31*	܉KH({DxD
DHIDxD
yD!   .#YF F 6 c|J9FXF zD8F,Bp
8FF
"h( YT #hpHxD	 0bF	
8FR,	a8S  F~FxbF u  8Q	h1	B 9DOJ
zD3iOS IK{DIK{D!h CI(FyD:0F9F(FAFL" _c3ihl27I(FS yD4I0F"hyDAFFHFN}0 +5'h8F
9F#FF`l0	 6 %iA pai 0  +F  
0 c
 rh0F I3yDF-R H R rJ 7 }< G Q Q Q Q  " . . P P P pP -OFHF,h	KxDhF&iX$\DvXhDF	RF #F(h2Fi8(FYF2F4,	 0B  $ hO P -AFFF{F Fdf!:F F@F+FC F\#h0.iX	K{D	K{D	I F yDE F)FA', , O -OFFhF?F ,ROZ	`DYF2F Fi9F (F#2F  Fg!2F;F(FIyDZ	 [FO 
J(FI[FzD yD2FaO(!3F  F FO1"o
 FAFO eO N 3O O -A
FhFi !h*Fl #)F d:F Fyl6i  Fh ";F6h . F0k!*FA2  -AFF hIlF !F F*Fld?I F2FyD ;h)FH)F 02FxD  F5l FAFS:F 3FD Fu0k!*FAE <N -AFQFh -x #2k (pݖ} )ZO8h 2h 1I r0FyDilF0FF0i:/X)K{D)K{D)h %IyD FAF0F| F9FF F "!@FFI*h0FyD9FF@F,,h F #! B@F:F/h8F9F+FFhl0"6 M * * M M -OFO
qFF 'F ( 2F1")iO	 PF-!PF
FFPFO+i(FJ9FzDS0		hiE(F " K%`C0+l-,:/m(FE
݀J!zD|(F!F1FBFqFh9F F/(F9Fs1 F1F6 
'`he+  `a| )B  ':0O
  .ЛyXF2(@
AB"6 O	O 	!XF0
 hhB@F9F ` XF7 Bە6p!``h'}0 +@-h (Д ))!OO	!OFO D

	 "AF Z(0h	E 	  1Fe  h06`(F9F3JzD(FFHh (F  ) '(F!F(F9F   ?
M L   -OF #FFF8+`@`(HOhT F  FIFBF;F~(F(hr  FIFBF;FmF FhJ0Fp  $ #F  -AFhFh!ihN,Np6p/)h "I ^; )hBF:h (2x| hh~pO2g F hj|p~ +`"6 
	+ٲ) F-h)FF0F  /h/0F9F:F "i9F FXF (@F(1F (J0F)hzD F `I -OFŰI yD h (@yI yDOpF0F3kIB0F7h6@Gum -'ܖ_   Oe 
 0;}!8h@ePd   S0 !qe]@ , 7!5h( Fm #sa)O63]iѲhy1 3lOFFF "Z"02[hbEFFFFsmZBreꂻ@"rh *qJ	$qK4 e)FzD{D8Brh
[  [P_ihB*h%%P$D@aLF@"80|D<l (xT  xT #on0h '
Z( (iBEO EHF"O
QFG`)i B( @"khxD #aaa#whF0l ccXFhn0"faf " !Od@c0 |2*                ~ AFJ  O 	zD0}@F5K{D	FN
 h +?h&F+
IyDhH <
/ / @ 
H " F F F ,   S0	 -  	h bD+	hH F		E)#0BD !Qp|+i  JAFzDh+iAFJ  zD   iR*i J zD  AF'J  +iAFzDYJ  )i zD AF$*i	D	H#  AF #6	I  AF '_sJ  AFzD+iAF
hh     AF  AF  (i0  D FoE	 !XF O2AF#}@FI"  O	] ! " (ͮ@n  HFx%
h䀄P]@  hOde(1qa aPh 0F5 S0d(FQ ౗}ɹ@8hP"#EyHe # 3P Ge. 9iOShYh
hh` F 	 +0:i9F R G4 $ F%F{iB (OeOe,0hm(ee@Ldиe0FF=k-eYa0F4h #O2 F FF((0#60/"9Fo1F"8Fj"0Fekkcckkcc1F    epepee (?¬e JqkF6 "!Fpc %uc%e)FdFh?#  (?0" $OeeLMh|DOI#H}DJyDDxDzD

{ FE@B E E , 7 M. p! D B B qB B * @) -OFF # HeF~N~DhO  !{O F
FD	  
O2  F1FF (@

,FOOk]FF (Yлd	лeVѹ SѡiO  FF (oO 	IFE) 		EۻdO	O 
QFG* XQF( Od6 C

EAF+FGXO[ " F!G,dNF  
F	 1
0
 F)F л5#5x -U  %#)F Fs FYF=F F\B FG8F}F` F>:FF0F
	!2F% !9`h(F
 c !
 q iFh
jh-h -"i FIYyD2FI2F FyDgF %6P%J1F zD F1FF F-%(Fp> ? )-OFFFѐKD{DDK@{DDJ! #zD	
 I
 .@%iO FIFU 0("A"#ihhP/@iNNNhhziBF`oJ!FzDFPFyO O "V
,hh1F.2Fh`&ih  ;F!M  F[JzD`hMcEVJPF!F&zDC~hNAN0#ihhM M h2mb
 (O`0ehhh	mhL0hL !LhL`.
;JPF!FzD/HFC/+ݣi#a&iKF2I FV yDi0Ja !zD F FIFaF 
 FIF F9F6   F&B^"ih &N @N0iԻ hhIhh.@
BB 6 0F o j <  C ? 
  > y> g> -A#FF &}0#ihN  %
. F1F:FF ( F1F;6`iB!iiNP % F!:FF ( F!! #}0U Ѡi  qa((FF h}0C!(al`Jbd  -OFFFDhK 
kh;/ФI FyD=' r  )F0FF ( . F)F (@#| O1i(O
QѐJzDJzD  F! # (@+ !! !! Д!Z1  F*FKF (@0iP Fz (@ހ0F)FRFEP FrIyD
9F(0F)FRF`0lI F*FyD0FL!F@ 6 bl#`Qad`O1A`2i "hWHYda|1IYI(FyD
Zld} @ F1F (  FAF:F (F!lO$!  :F 
 CF(FL(F9F!BF(FiCFO""(F%!:F (FcF3i!(FhCFM %!:F# (F(F(F ! "i!:F[F~ F9F8! "SF(Ft
! "CF(Fn9! "CF (F(F!(F-!0F)F @B <   5< /< 5 -AFFFF{  h1F:FHFй 
JzDJzD?I F ;FyD	I F3FyD#ct  %(Fv: }: ` \ -OhF!h60 +@j	 ( v .@mhL F̀	O		D2 HrU4 )@SU<, *5U08FAFL!4FE4 ( C QFJF   F<  ( 		 FJ"O1L "0*U@< FUFE4 ( iP1"_F FF (@i*FE08Fe F?@5 (@6	@  B6 )@ہ',
j
H  * 𜀹  ( @_ +2jj
j8pI F "yD{0S  #Hi

 F1F%SBFOEhjj+XI FyDn})j hjjjb  hb( 6; HFQ80F ("O F@i~
bF1F F E3I FyD#2O  E@5
@
7 xKBR #(h%hV xq) v)hxq) 3B2hxq)#v)hxq+)F FF h#h8rh B`)hhHh ` "r``  0`hh  'O 	8F@B 9 8 }8 8  0
h6  (@ /~8F (тFw!

hR } (hѻ 繘_s;F	HiIF (QC[E( IF (GJF!%
F"	  ( ! #v! cFF F
FbKFFFKF(bF)F FFF)F # FBIFk

 F
hEO	@	 E_ 	 F':F6KhB`h8 hZmBI FyD    %hi @bHaJ xD\	I %zDyD
 &6  5 5 Fhh !FaiF0hea+X(0F9F ((F  -OhFFi[
@,8FDF8iOX$P &
)8Fh) FhF
Y F 1F*F
 ()6  (@ .@ F@kiiF


 I!6BjHFSF2iiBHFu!*~O3k8 ij
@	IO 
$F*	O S+B		O2C,
hYhX sh 1hCC FX[FpSBS
kiE0hYF #  FrilQdkO0YF  F2F
&b! F YF2F
8Fmh -E@F
<	 FY1~)1} (NAF  F2F F8
 +DЗ6  (=?8F
FFF (01hAa2hh`B
lK(d`O1 FQFBF c!QF FBF P8FQF8Fh .  -OF h !"
	
cl  
 
6` .h ( FF (il

i3FPX!  F*hF ()F  Fi"i)F FM ( F)FX ( FF (Ч|!^	 ! ! F6 +@)	 / % F)F (@" ² *@7c+
oh /
ە#cOܰO	j )@i *@j /@k )@k *@쁇l /@k )@䁰_q ށ hh*@فh9hxq(@Ӂh F !hF ( ɁB Ɓ"_ +@i /@𹁫hhB@hhB@O4h 	 E@  8 " ) I8 " *    ) w7B/iO 	,  (O	8FAFM (@ Y /j1, f (@O hizkj +@G DDn FF FH Fd*F +F(   F^ih )+i3 2*H! #8F "!FF8FxIF
8F(' AF SF F5H! #BF8Fb F Fih )*A!BF8FP6! # F8Fb@*YFozDF F8FaFV (ݠhw!,+i8F8!A!BF F@!BF8F8F 9!,8F!+8FO1*h #qKF8F_!BF \HFYFo  -!BF #8F #-!8FYF F
BF '!o 8F(0)IF Fo(! 8F(0H!BF #8F?!BFF8F!8F a!_!BF8F8FYF 8F F F-!BFKF8FKF8F-!
 + dJFKF!8F{8F
8F-!KFq*F F	 * l! "0F7dO ;F\l
"!Cd0F| 	 }GBF!CF0FA	F F4 (Ecl +A
6  (;;F!"0F(! 0F"!0FF0FAF:	!hh *@/ FS"_F+ h)FFP		!IF@Fx')hBсhhiB +ijB [i +) iXE 		EO ,$#	$"#h 'O#hQ7 (C7BO; '" _ #hOF	h2 3B6 (yЪhB  yD F666[hB FyD !
r6h 3A` #O16PhBO9O 
;O6hhXQ0hhEF
E۩hE6hP@F?Fp FKF yD"(bt&F

6YhEڪhO 
OO9
iS	l0F "K!d "깢l)F(# FU F
 
 (?
lAdB#3CE #
@H!0FZFi	b! 0F!:F0F	hlYBBd"0
_! 
PdH0F@̀h Fy F0F!O2;F*; !0FZFKF
 :F 	h FSJ!:F0FBO2!;FF0Fk0FAF0F!:F1O l<a6jQh #6h BhBE3B CF	 6bQhB	h  # FYh880FZF !G.O  hh FQqF )FlYd!#    0# JhEA!0F0F)F#( h7B Fi" # =h F9F2 (@M"p˲+0F
! a@ 0F!ZFKF*	G0F!	SF" F	hRFY/0FO1 ( x
)@
"_ +@8"pG`` :J!RF0FI8!SFF 0F0FAFi0FI!RF3eRF0F!/ ""  ǲG "0F
!SFQ "	SF0F 8!a# /ݠhw!SF;O 
GFLWjhB 0F
! ">6YhO h"}
6hXhBE۾ !6JShEh# FIh@ 0F!ZFsF	9!0FrDcF	  h FYXbFl7hBە"0 _ "
)F)FF Fvho	0F3! "7c(0F! F*
o	7  F)F  F)FBFP
)F F8 "
i0F!#w#( h
07i" # F 0FdzZF_!0FW0Ft0F-!ZF	K!0FE0Fb" ²0F-!-i7:F0F-!7mi -
 / L, ^, + 
|) F
iա|A#!0F0F!AK 0F!F"F{D)

i
	"
6
biH d FF F*!ZFF0F! 0F!:FF0F! F0F8!ZFCF0F9!ZFKF 0F "!0FcF0FQF FIFAF F! )ȿ?{w"  )?-% -OFF	1 +F   U  B 	BX8F! 2s` bF` ( J	haO
q O5`5a0`8FuaF ( 2YF$"R1'`h F
z!ll_F ( 8FIhyD )F+FF@Frh8FZFFQF~h6Q@F_QF# F^8FQF)h	i
Ѳ 	c+kx1(xj(Gk(i(S)F Fi "FPF
ii "FPFZF aFF F.L)F Fgi "FPFh "FPFGiFPF[FaF  F')F FBii "FPFfYFF F h "PF  !"4 
5F FYF\PFYF+xt+
<!-j -{@F)FS@F!Cl#bhB`alAd 6P}@Fq  P l lcm @F0!2aqa8F!FFh +F!8FlF (XF# -OFFF *Oj	Ok	F %#zKE`z
B iAFXPF!F2F;F^ P!0C$j ,(F-GF
FFF,	;F1FRFF F@F (!6h6#hi  &&lCF(FJs!d JF(FO1ho(FG-OFFFDJKzD
{DF&h!}j~ Eh )  -@ F QF:F2 (@FF	
  
  U(  zjCXh#PP(YChX !QC:h
hmXb(F^ "! %F  F "! FF F
JFv! F F*F +F!F FL!JF F F	F0F	 *A! *F+F F! *F+FF FJFv! F F*F +F!F F! +F*FF Fv! bFF FF!JF F FYFF0FF->	- (9 "!  FF " F!F F "v! JFF F-8h
hZRh2F0F "o "b! FF rF F # F{iE0F
8hhF
*F'
8!_J0FzDqF Pp ! F^ ! %FF0F IF	F F	 % "0F MF (1 $	
BF L 4(cK	"0F"c0FZ"c0Fb ZF ! F"F0FYF` F	 0F-0FYF)0F[0F6)0F)F,*	*t j  k   PDiaD a (j"k"M`*r M  #)F	 RF Fh /#Ъ    -NFFFF#zSE`z
B iYF^8 HF!F+F$j ,ѽ-OhFF
F0F\
6!ZFFKF 0Fz " F)FF" i "# F( FQFO"hiF` F)FL8ChO 	J0F!d;F+,O	A 
0FZFCF )FhE# Fj"  #QF_6!KF0F ZF
 F)F:F # WF  F)FZFCF
0FZF O;!cF 0FO1*hCF0 hiK F)F ";F(# FQF  #j"0FIF
O-OFBl #F	
h *@6` .@3F ( y )F3F Fj")Fi
 F (@i
 F)F"F (@]il8F+KFF8iO
BX	! F *h(F IH		 (d+ilBd[i + 6&6!)h
 FF ( %| ^ ! FRFc) F)FBFKF !$"F	AFF (@il0FK!d
O0 +Ѹ (
2"_ F)FBFCFoSF 0F*hg!ji<-ij0Fg!SFmi -Ѣl " 
0FdSF
! #"  F	BFF ( )FO2 F KFp!RFF0Fi0F!#XF0FF) F)FJF(#[F0Fq! RF"Fز)F8F\)FF F1 "o	 0F !#0F! F|
)F8 "c  JF F "!SF0FV0FYFW¹"_-i,RFjAmi

0F-! -JF|+ Fiա|A#!0F!0F! K 0F!F"F{DF
8F	8FAFK -OFFF & (IFF  FO 1h
FFxD	XqhER#h
 } +I'c)c+'+ChCZ*$ F#!" (Fh	2hS
0 hO1FF(F(FI!:F(J!:F(Fh:FFh 
 FIh(FaF7Ej_"hi(&(F#F
:Fe Fj'c)
)(F!BF(d
')! ! " FF(F9FY  '#c*ѺcO
&K (FL!ZF #TF & (F6! #IF
0( I O
J FQFozD@!hi # F 1Fj"b@ " F1FFF  1 "O	1F +#F[F   Fw0iO	 F )!F1F
(F! "(O 	O	AF(F&(F9F$IPyD	
KJH{DIzDxD7iyDR ( 
yj FO 1Fyh
sh(FQ( !B
ZFsF{jE
!ZF(F{j!R3RF (F9F(FyO1 #F(F{j FQFZ, {j FQFZ
'c)Ѹc 
ииOO Fy!(F>5! #(Fo
	{jQFZ F_۸ݸYQ  #h!"O 
Of d xje (FzhhR* O2

 S0O2
{jE+O2FAF #F FRF9QFu'(F! "( " ( Fu#hiO  p  F1Fj" "  1F FO	.(F Fi	P	 /)+ OG g   k X \ -OhFBl # $ 60 +F (il h)Fk"  Fi)F F ( F)FF (ѩh k (3FO2F# 3hBH(d.ilAdvi .#1F$"O
>#$O 	jO#hY (@GhF
hhQ YhCPhhEh"	C*`

EۨhEhShFF#Y#	p FyD1!at
 
hi FQ	 ! W0*hb( (O3G*069hB)F F	e !
(i@i1 (1 


+i9
g	W^j:F_hW" W   (l6d2B &Ao[i + FF ( 𬃧|"^  F!"
_ +  )FhXFp'!zDXF^ !F FNFI "XFIFF FBFO 
&O R*  (
 XFhR "
hXF!S -FIF F

FhE &IF F @Hd
BFO
*!	hC8FSD8F!!| F	}`!"LH!	LhPBF	 8Fd3F !BF3F 
8F 8F!BF SF68F
 !BF h B F)FFh!o	  3 "8F68Fc+ٲ! F
BF8Fc_!v8F
8F-!BF # 'kXF	l
L
 ) 𻂩h	
d3 
9
lSd@lh"db! F+h)F1[F#F (@j7
!BF ;F0F3  CF FF ( RA!0FZFSF 0Fp!SF8FiR!Rl!C0Fd ' )CѸ (" F YF+F6/
)i, (Ii )#
/id+Q, *9F F (!JF o 0Fj i		 / # J!RF0F_!F0FIF0F 0Fq!CF 0F6!ZF	O F0F!7
YL#hig F)FF 
6#O 	(  # FOMC$S) )yй	:B`)FZFKF	  0F#`0F
! "	#		hE	/0F!RF6 FO 	#(  "CFh 0FO
! GF/khE)P)0 +O   FhR:FuչB	!ZFKF 0F0F)FJF;F		7hE /@ЛBF!0F '0F)F#(k"6 F
6! 0FZF	P' )jhB	!ZF;F 0F0F)F:FCFK7hBۻ	"
 +PF  6 )FZF Ff
) F)FRF6!ZF # 0FtZF)F
F F
	/0F;!ZF #H0FAFe
+ F)F "
 "!)F  FZF
O#hiA F)FSFiq/0F!##(k"6 Fn! "0F0F 
-i)R< +0F-!:F #mi7 -ZF0F-!+F|*q Fiȹ|#!0F0F!K 0F!F"F{D $
 '

TPx	 *N@R-  	 -OFhFF60 +@&9 A9 FAFhh,F . 𵁗9 S90( Fh|il8FF"  ʲ".	JzD F)F (JzD;iO F	!S	 #  (@o F.!!"  ʲ:)F8F!Ch[h.!
!CF  F*hF (@I  F	!*h (@? "IPFyDPIPF"yDI FyDi XI FyD0I FyDRFR F* ( ! F2FJ F1FzD+hW!hiPDՕ"
_ +< 7 FF(FvHij~ (@Ih )%"! " "F F "!v!0PF3yJ F!zDo PFYF   F!2FF F"ӲXF! F)FFF Fj +ѕ"  ʲB F[IS	 yD+h.P	 VK{DVK{D)h F TIyDv ,ѕ" _+AFcF*ij	BڃBFRi *ѣil hF FFEcF #"  I # *hXF!2FYO  +h2Fl!XFCFK F1F>  	hNȱiFF	hi*PF)Fz``$h ,	hN.N8F	OPF-v!"FPF[F	 (T X W  Q Q [ s n * m J W v -OFhFF #6 )qѐ! *m (i (60F9F"F (]ە}pw0FdhD8+iAliB 51F {D0F !hhF60C/qg(Fyl ",iXFyDF| 	"yD	8p0FZFyD 	X0FyDO DF"_ 80FyDq
 )5(FPF (0FAFB (@c} 
(FAFRF80FBFyDIO
(FAFX%0F1BFyD8 $<:i#Ri3 *(FZFyDF (
)T $zD$zD 0F! #SF (0F *!!;hBFDF (@ h!h`HCXIFJF0FF ( 0FIFSF@$"s $ #F
 XAJi2hC

E@F1
O
CFF0 (F

6F @ 0` 2  qD!b``a  `AF	R`!  8 !-, bb
(ihahLO3 #0R	O hhS<
RF92 ( J
E۽I0F:hyDD#st2PihF ZF	h!2ihh}  j
	CPi 
	

3	F0F ( E FBJD$0`jB=O bhQ+ R+BЛE/  !jR+ Q+B (E, , B c(c*}I0F "yD,c)@𮀔,, ѕ} ʱ&h0Fu1F#FFi0q!6iB qa (lЫobil0FLiF ({0F!Mh!PF[F"!XJzDWJzD#hh(F[ TI3yDF*i
(RXMK{DMK{D!h 8hKIyD0F(FaFñZF0F!F0F>I"h(FyDFPF3PF! "} 
!;i(F,)ca<a#FPi,0+`aTa(F!iD(F!F@ahO 	
A*S, *TF F(FIF(FS(FAF# F ~     { M M = 
     : *     -OAFFFFP , 1 +}є"	_*AI"hyDpA " /h#hU"Bu,hh HhSb (T5	B		F"O5;hEڥh!		 %+ -ۡhBh  2hIyD7` 	є"e`A#"`.I@FyD?@F1F2F3F+'-p7F  9FO2#Cu  l \  -CFFFh (e^.(F1F6aiBX (1F FF FIFIFF F* /(F9F> F1FF (7 F9FBFF(F1F:F3F(F1F:F} ("#i S  FF F9FBFF(Fh1F:FCFF(F2F F9F-GhFh #FsFhhoF <DODnPPEڋI F %yD	4PI FyD5HY9FWF I F:FyD6  &VE!irB F0!F ( &iF V[fEA[	
 FF ( ̀`i !#a" 0F	jB= h AF ip(#60HFO21"FEs	 3F biP-`aOI F%yD-e Fqh`L#iMhM ECI F%yDq %ph7Chh!iHhO1FPF" Frr9F0` (AMgi i?>Xh@u!i  P`#i` F9-ga@
AB 6  F I FyD*2I FBFyD!AHFO23 FHF)F F FF F% E ?  ) ;     FF #F O2` FD!FF0Fc FvF
s(F( F1F\ %(Fp #
F FO2FFx !z)FF0FF p	Ed(F0F)F, Fp      T;-O-{DL+} FDhXPhhhM0o	
X O (X  *E
aFT0JZ|Dj
}D~DxD !6 )DŇOG1BAG (Dvlx ʲh(#	[  Q!XFS%P8xA)      BL!?Pau;			X	
-nrTT;j=uu#:TT[[`8	I	......AAAAAa}**29W;i:M`x [ !""U#N###$8$$$
%)%%%%  (DhFuyh("	%O 3atahJxh(&	O  Siyh(%	#O 4i2a\qa|h("	r}hm PDhh`@MPH0D`H nh,% hs O @	BXPh\`T@;i0(
4 IFzDu;i  yDxh0t	ExhyD0iPF(FMX  *OeO1yhO `8iO  EE%P>iO  >i	$<p0FO x`(- #XF1FO2(FXF (D$ .lL c0KHF9i!%}p@<a`~` FxhL BݽO @&`<i@{h 0h%hFP\(@$^.XF~\M\\ .O s $ XF9i#FzhF0e~h($Dp (F\F (DXF)FO bF{Mh("	 %]yh^hd_k
$0XF!F\$P(\bb(4]A] (рF)h(#	ORyh kaXFH@R -XF) (DPF	($hO }h+!ORXF(PF !QF (DPF!F (DPFP@zh($	]eP\\P\{\] \] ']Y] (]hBۙ6 )DOdbT Ѽyh(#	hhd	e kA_rXFO +B+ A: Fs (𾼴;(Ff (𱼨 A F (𤼧iiL 
FFBw \#	(F ( 1XF"HZB(ZAN (DvE ihi%`O iahpi@\\ \`F u@P		(&xh SF
hT Fxh[
H\ ~ ) #^#`<xV<, р` O * (q C`RBcC ( Ȁ (q F %O64E *s #ڟC1+1OxF̦EEE%C@𧀟+UK @)@ (q ڟ;UK KAUK@A[UK0LFFQ@@ *s O5RO4C  O1B "C #D EM$EO @ ! A(E) (IsC<(#) $(cD(#%R 𧀳??ѱ O (*v`R 𓀳??" #^#^#b`#``&B"HO ޺
db_d>x@V>.b;0#b+0bd3b{ bk@kDЀbbF
FQ^EZT`0е??" #^#^# FFddk dK\K"C#EDXFmXFO f~h .	($O %(FC # " ##wOx(  	o !nhh\ c]@                   d h` q l p    n]@%0]RM]p\]C\(1] (A\oBۗ`8is !^__h^	("`\[ %$hAiYF0^ Ll,H1xWk^hnoG_0yh_"zp9a6@$`lu` +IFzDF
4  F` FXF!FXF	(#}hhh LXFO y\ F`;xR+1\E@
@\EhS+\#CC_P^ (q oVo>O3BqA@BaA@  !``g@.w  \# *s  " #4aT.O2O3+\ET)
E F)F2F
2FF
F
 (q ^EO0O1@ C)C^^#\#\EEP%H(O Nzh(!	O d FXh#RCs#ո{h($	c!e(F+ Ah +\F ?FFO xh(&	 $ -J FO + F&Bzh($	e2 @(FB$(FnF F&@ pyh(#	VDu0F!L,HFS$ N|h("	O  Cyh(%	0C5zh( 	 Cه(F&D$B }h(#	he dvNx,_f \M첌h	[@$H(O Nز (hFQؿgt)C(F)t F#6 )(FA F F)F:im\9x\K9) 8 # 3# +̿ ## +Կ ##C\x ²h("	\ `(N .L0\h^v!!BO xQ,EV?iO P<i  h`($}h\]^h_+U#` F`a ^hbh_ 	\`caPc ,Ն %CBF]Q]]\B !F ){hO ZѾhXphO e}h("	@ C   h(#	\P$
C $$]O9x\]E) ePDLDh(!	 \\.(@O  F(B"`DPO 	(#xhh XFO %FXFFjX` %%F #P 0n	(#yhhP[XFO [FXF
FC=C "E  H@}hf]6hO Z< F`U7{h("	h@   \=x-р\\ +υhO Qxh("	 AhO ^|h( 	 !C𯅻h^~h($l"F`ha %b)Fh	@ c 1kR& bhd +3]F (C"bp<mP@BBmn\c2*d^^)dB0{^($" 01U  5^Z@kki )	T}iah\cx 
P0e \\bk&N.LFL0BbP0muimBgemf #{ereP f2ec
jd6[@, F[ *{ 0F\j{bBjc !fjx,x xaxJzBنH?F-c$g`CB2Fh{Bblld F (Cmjj
xhzw $vi,wvfB"xE&0v0xr|vAF0F1vie|E#`|5xByBxwcvE&@iEiigBl&vwaBx\B؈BѪBNHFafV#  (;ck%X(	facP&@(eelP# kh(Ffbad R!hgF (CmeajT&k
kwkO b9i	k%D$Nuzk TkF smkJ`uk`bkfFK<i("~h	\TࡋF F. Ft(4\;t1\ +јF)  r  T, ,  % "` #d^#("yhi>ij	`aghk\]iLhhk:j?gaCy\T]E'i +]k(FFf/^#`mCsF !@F^#B0`(id d(5]]hB` F$Fe FzL0dFB4``^E$EudeubEBs ЃXF!F "BF (CӃ` *\p "W'?F	EBpp lg"k\l\(Ff(U "S(#?G	F)UBp  #]$l(5]]hBgO\8Flk.BF* (W
yh g(gF}F	()T()
Gf
()0((FyhBF A:ii !DE(FO ]l(4]]hbB`Oe $P @d*D@  !O ܺ~h $@0 %S& h^ .kбi\EFh0FEK$ $%FFX ̶^ "0V xxS
 #C9+9)^ \F"1V! m^ B@CZP^ 0"1V!60BZ& ^0036EKyk3
lN kH " EF0FKF F\E\EE\|h=i\] ,M0 +l'
4 IFOzDF(F<!Q!FR^HFF (C^HF1_ (, `_^hr]4 (%4;P1Z!_!azA #abbHb6i`` .q0h)F	 (t,&
4 IFOzD+2i;P -CfPF!F3F (C4@PF(T@4;XR $b %Jb	0Hh!GcUcc B  \PhbF (CchccB\*P xHFHF7 @ s0O aiHF1Z!`B\+
iHFQ ,C^Aa#z# ,CQHF\bF (H{hh\]34P8 " F^y` .4%
4 IFOzDm&4 B3AHFOq&4`PF!oF (C9\PF40(\T4PX F$HF*X  (OOe
4 #9$zD$zD$zDIFOظ~h  hh\ (h(FT`X (Ch ,𺀚c  *𵀙4!0+Ct`NAEQbt t0HF !ZTFp\tPfh F)F0hF Fz&}hO @h]^Ph\^\0lh( 	yh  T\ F\"iHhhh*F
\$ih` B s0*\ ihL ~h.C>HF  _ 6}h`@h^`!\|hh]h]\]h\Bh]BӇHF4zIHFyD~4 yh \h.hBHF$O_@_` .Bh0h]_^chh\a:x(*&`ha0LsEيa `x	(  d FD!i)^ܔHF P;i(i]hMq]ӈZ:i\% PFyh\_b (hw P^`] abF]`b"ww$ PFyhhO3F\ (w@ExJF3@  !  F (A\!FPh`F (9>i\ .*]hxB(F(FBF(F(F \"F(3h ;iph<iF\` 
ihM`&q\ $w
h!F"F XhCF\wF\x% P8 "w& PFyhhO37F\ (C:i` 0ihHFM@8!q!`FdO !h(
F6pc (Й5P- 
$O ShXhjLCaPhm
+
#KC3bɾO ž % PFyhhO3\ (!whFwwa|hPF@0S$~h@   FB&  	 Y       zh $@PU" ^h ) :xw] - h( 	 V0FF^htv (t,hFMYhE O ,<kԵ0ݵ%]\/,4h FF (B[0\\ F`/,0h\F (Bo\ .݅hO P] F)F.+0+JA8" !>A7O2O1EhE !\ h#0hF (B2\ -/^#cvh##'9i	(#fhA`h dA^\ & `h " #F (B^Pv] !^/-\Awe ,1-\ h
 # ,.-
 h\F (Bޅ^Pvh[3#\\ (ChO MwhFsqxh %@0S @\"h *-%w( hF	 `\$]v\wU}h &@0($\hS% 	]h -M;i +݁hbb=if&`Qa        _hh"zF` (f]rhihY`Hq]  `^  #h "	9iFHF_o B^]8 &P\8x\4(	 ,𹄽hO n ,B𱄺hFQ9i( 	h@0 ! "`~hS&0]hde^hp!|QV иhp! "F^BFBӭp!^ ({	("h 5dbQf F#] !^h#L6  #b "ݲF=dh#BBѼhazvzh@@hT"` $\0h] 	("^e^#!F `#X#F\#^wBe &&DwFvмhedFhFd]?@0!~h %O S& ##RC#+ " # %\#_yh@ R!`^3h + ڀ~ (@E\E,C(0h_F (BZ_" #^h\\#o AFO0BB^"v&  C \# Fh ,9 Pbbph (h(#h!	(%aaaGaO2o CBBO
^~ *\#Bq& #A\\\#O4^o EBBh$ %C " # F^~ .FUKO8 o@L !AFF $\`gF_ \`*\#  oN@2@;@\# \# !C\#^ !0 h\#MF8_+`A`c)݃^ %evew%e F\EE:h(%	xh@@#\T ``9xh9) $]^^_xhMhP_^ $\`ax_
`l Lbia a` " # hK\abfh i` !x^# h` !qvqw1eF (BтP -̂:i *Ȃh0Yc;idx_^g !!e g G " #\#|h@P`U$ ^.9i#\#F (B^ " $h #^ h^,eF`v;ichP
\ 	! XGhBnh@fh`gh  H FDSH0h X|h(!@`h	V$ $l\j5Zjmh&qi2jkqh2hehi\k@F#Fq #( 
"i !O0]3sE۠y"F@0Fq)F
]] ,䁽hO n
~h( @0h	S&P Kl\j1MhSj 2TijkDhhXF!F "F"F@!@1F  LFٹOչ~h(#@ h	R& K\h]NF (B\`]LP`*FBs^]B0{^`("06T, 4T"Z akL B^Ɂ^XF ";F (B́@^\$H( N05 ]0])F0/"F gzh@0S"@ \0!O Xa)#F^#"`j`h^`ha&kG`FPFE FF (B\u~%#^#0h^;F^'zh!@@ &T" \hwFv -(mFV.e[`}h $@0S% \h^]^F^\ &wFwFvehBB )k| B| |h%@Q$`^l\
 ( , # "$ #&#iTk0F8 "^nF4HF1FF (@-
$i+# d BHF,!aC
Pb ( (!Ta  bl "혛ijj#!aHF!a! #a (7 #C #	"jkF(C  ò  Q#A  (A5 #9%A HF!FFO  #Bq(4 mi0F)FF= V -$H&$ S+&F@5HF$;F (.((`%
( jJj\h #\i F&# #i$$"F&#Cs&#HHF1F*F,h , Fh0 
i9F
i,$
 #ja$b&E$ "# E&# 
(!jrj]h i8 &^O6h0F]
FH[0^^0FF^\8 ! %vew%eev^\w )hs0 +Ayh@ P!\ )PlRHF]         &<i]h]G\ !]F)e+wShxB.6Z&@cJ&0 !ivSyh( @`h	V!@ U\#h] +F,\lDJ(F(F (A1@F  i #aiHF1F  8`ihiiy`%k` j'c ("iBiByDMj1FHF &&aFOO O FxBFih]_hl &FLtD \eF;yh@0S!`\0h] (𚆲h %	(!`hQA^h b` #d "F(^]F\ %e~h%@ P& ]hP\ )kF (A܆]# +A\* # "fh#8F1FAF(" F^ AF8F2h+FLF (A`hx
$$$(*0B'+EX\]%&&z&i)-(F$0B+4)F8#*^#
*O@<F (Az^EE%P ~h@Q&`\4h ,h=i^|Qx" "~!O(h "	Cb #ah#0h(EO<O2 BJ #BBO@ &]F4BF !(F  !0h"F#F@i^ih](F8x]d(LB L]] +A󿅺hU #L]`5kBіb (rm *3k .!+]^!O\hOx _xh]h
(F
$lhh )@ F
$3FCF# (@(F
2F# {
\*sc| +k!(F&O&
$B#$$ 4d F&(3FF# (X
3F( FD "#( F #(& F(##(( 2&\6J&&zDC&h!j3F q`hFE F1FEB(F!2F7#$#$	!Z$(F:\  0` A߄ +܄_P|hhihpiBtah *hjhjBb h (Kܲ
q 3 O h !0h \yhph\=hF -h@\bh h +A	(  e#RCs#|h % \^;xi+   ]Nh]0F*F\0F+F0F\@ bxh(\:{D:{D]
4|~hHF`a9i@ XyDF^t*  #b}0zD _HFPFHF^ &}` $OHFAZHFyhEF>iO 0F}h@1FFh #0FHF B q>i0F}h0 #Fh1F0FhiBcia2F"ViBbHF!i8HF!F4O A p =i(F` #Fxh h)F(0F (FiiBEh(F)FF \@0  hB!j`HF!F@O D p hHFt\ p] (h(&	 $PayhS

E$ ^\^^\]B &E$`x \ a]Mhilh(F h4h<`"h_z`,~aa8a   `X#_(FzA& 6F2FpB4h!j~D0h0B0!C 
 &#C50d'  D `,p0 $ `(`6`4`hk  F $ :FyD !F@F7{DWb|B)  "  #@FT # @FW(6B,  ('6OP&0k F1FBa|)4 !3F/6R h F1FBc|+4 !:F3F6(w&D wD7B8 +$h hB' ! 4zD(F6:=;|9b_  9_;q;`HF]a_
#Rcs#_h` )fO2
#~D d
O v3yh(#	hd	e  A iO #> F  +Q` .Asxh(%	 F 5i(FDhj h\` ,A(Fv~0FO hDxh(#	h9i VT\  
\ )b0FL  ,4i
O#E#(Уh# F%h  O*Fh``%hF``aF ]+F` h -ca``ai #EBsډhEBAh ) !]1hO Ei\ +E0iO 
#}[;i("	bh ^x|\ic ihaa5iBO A`t B$
4 IFOzDv/@ )Yh
&hi4\@HF]Ca (V^@$a^aa ab\chb3d `a`nc@ haa.0@`a b*c("pia)aa@kc6H3"_H6` _(0__`BiaPaL@U` $ah`("  	FFdh@ k]0 lb. @` h]h !FPO4i v0 yhO jh\h b(&XFThOR
1]syhhQz#O Csz#e$#FCs$#[yhYzCA7hO rM$E,CA.hF]B0k] ]]eh -zh(!h6\yh("	`\\($h	 V0F\#BsO {h(!	&(q  hO e {h(!	& (q ߇hO e {h(!	h&#Cs#R @ʇhO e ҿh( 	 &xP C\p]_p_B `_!]_D](5_]\B:i(#	`hV %#li^Da1ckjnmox ĲW<mi`pGnibKJIFzDF
4  FoWl]v	(  E(F[ #"!##wbP d{h(%	9i`\FP\]2JIFzDF
4 \\ ҼO0 %__^HF ^]yhh(FѨF"]h(!	"\d'`
|` P< FF%afa\`wL(0\`\-     -tK      . b  h ^{hsDheh\,h]ey_{^) &l3h3#*s v^ )`@k#yh+2h*qk^^B]-.Yљ4 0+.
4 p:{Dl:{Dl*IFOzD -/Pɹ% F!(FPBF h(F( * FFȹ F!vF ( 1 F!u]^-@! F _^O ^(%]	@!^(h+i~DV      $7@ XFw 44P
4U)0FIFOzDk $@,
p)0FIFOzD\ pHD  eET0D'p " Lh5 ch*Ph{)zD)zDHF1F0BFXP 
 !
 @)S\(F FKbhjQj F(HF1FzDF (@
(HF1FzD{F (@ F!F (@chhPy(<ah(F #	j*O'6  (	(F<;F (8 ) FF(F$(HF1FzDbF (@(HF1FzDWF (@ (HF1FzDLF (@'HF1FzDAF (@'HF1FzD6F (@'HF1FzD+F (@'HF1FzDF (ygF~D F&AF&AF(FbDHF (b7/ F(Fahhkhoh9jjg!wbhghjG(F  0" !4(h!8o A:9454F0`h!5Vh0hh(F F (FFp(FF Fmh F#)jFFO1 
FH0#  FD`$1
4@-hhu !i``HF= yh0Fhuh0F\ l|(F(F !jFhhPlhFkj0IOe0Fe@\hO X U|h,HFF M"O _  F8{ P, 3zh`h^hqzI0Ų0F0F!F*F,FȹqhlBhBhB	h ( ӼD``l`dzBrO0F[ F_(@p%
4 IF;izDB <i (\81CTh
hkJF(81S&B 6  &BHFFkhGF 8EA @ QhV`OFO \ , PFh|hHF`
49i"XkFh0F1FF	p`FXHF2FOyDO4 h!F HF[hF (@HF!F ( HF%F (@|!FHF 8QJE!  !hf`j b yhHF@9iY2FEk!FHFBhFhhYiGF@``c0F,F F  b A8i $\]]h^h_iG^FPF5 @.^PF]`BF O3yhS\(]Eb*hhb_!]6iGh($	@P`_{hU#`kqjc &a
hbh i\^]dfe`QE"`feU" KeYee\fB^$ b@]j:iaG #bb0FPF ^ajGddh`c &w~h("@0h	S&P F)^)0FO Fkj
xbh\h@F]@" F1F]!LAF,C jhjhG\FPF F^!F F^( ( p "^yh@`V!0_ ,@Y]j!(h\hbXj]VjGb@\FPFT ]_jhjG^^ (@DhQ?zh(!	<i`h!\]uF (@0\]hihlG\FPF(  _  =ihh\h^fk] .  (#	:@bhR #ccjcb_E"_cC(6c_^_Bx]b: \]k`G:@\FPF ~h`<i!|Ix* ́*"\ h Ch0zh $ F Kh]hj@`yh0hnh$rhjB8F0FO )qh ,0Fhȿ@PP@@ , <i@\ " ,  `*&Cd lk``oa'`(aovv*v.`B>   67   1 I   	 { ͼ - Ͻ *  =   ,F
*(F"!F2(F 4F0x3 (&x*O @F] GHF]c8F(F((ШD'FO =x -*!FBF -@?,	-x&
&PF9F*F&&|D SU("
I*"yDg;I*#yD*d?I*#yDX C0ihM9F44 CFi4ih!4I*:yD542*ikh+B*8F *i"Kkh8F  iE!"8F9MJ}D
zD#x +T4O bF`F^F\FZO WO TO QO NFLFIFGO DFBO ?O<F:F8F6F4O 1F/F-F+F)F'F%F#F!FO O FO O O O F	FFO F F^ ;qO	4 @FpI0 yDX8PF@
@E%6PHFaOPF>@F+hB 𧀣]J
4 IFOzDXJ!
4 6zDIFOO6P%@
@EO@FEKJIFzDF
4 FJ	$FK
4 X@IFzD{DFAJ
4 IF+FzDO} )<,<$eiUah(!	O e\g(FK#"gwY^^\,!!F (  (%-  &az 0p`F (Ш¸
i+}H 
} * Ў  ~   . c ' t pt : x FF1F(FxF(FAl? F0%,x , FF""(!y"F-OFDjFFF ,@ŀ iF ( H!F"@ ,@𝀠Kh{DlGP
 8I@
p*jGyDK(jf *	HF<F (oJF !~$	JIFzD+jO3`hTah `  `` (SК
 \уIRF(jyD!uQF B!HF
5 (`G*<wIJFG*yDF.tK
{D0Gh@rj! F"F#h " #APhIJFA
 G?yDcFP F !"#FpO	(F@Fd П @iKa$`h j  `h mj-hhhBkh|.a (HIyDlG (TbFBqڻ Jh8=IA
0hGyD"i 7 (:Шa/h ,ە  sC 1FE""# AF,IA
PhGyDF!0FPF !2FiB)@HB
A
9	F@
IO	O 	(BƿiS'0 #`}! O	hhO	HF0   {  0 Ȉ P/   -OMF4FF{D$&	Xh 
Oв oв  GBW #!," ! F
=,@FyDOkGH T}D&-h -j*h #BBoh:F[EREa/h7xhBѻh+` /F=h F ( @O5aFF yHMxD}Dhih/`!HxDh`DD		40(FGhp@O0(F!G=W_OEM}D(Fg@!0B OPDODD+FOp@!
*zDF QF' " >! X ʲ Z*
 
,
.~ !i		G (
*yO5 	J@
J @@
 -򊀢M +6HFCE =0-+
IF*FsXF '.IpXFyDJkG@TO\IZF@
pGJSyDFJFF (@tF /O|O HFJ 1bF ) h/GPIJFGSyDFC ) **BHFE 1bF& FeKgtI(FZFyD0GbBp`	>`i
`i^`*jHxDpHFGhI "(FyDm!G!@(FG +O 	O 	
I	I		I	sHI@	VI@`@F  g` yD"(N
"JIiyD$bB `@@FKi!FhGFAHxDE@?OahD;lG@-hK+
''ca47H
0&xDwF
h 6j . 8F1F" (1iO7a+O !("D
0 ";h rb3bq`!0`1a^b"HxD`` '')F FGBO5]R  v- h- M M &0 |s 
0 , { ٮ F , +   * * *   x  * I I I &IyDE@F 
PFiF8 JPF1FCFzD  'ap 'D "baGh	 F)FGtB 7i' '
8F$hB	5( 4F (_w -
m  H   HxD s $ FKF{D0 K$`4F)JXh F8F	F8 :!`F % F F9F0(F $	
M>(FF(F		 ,F F ' !K-C{D JFhX` a !iFU6` {	'b" ?8O 4O 4	MO}DDc(b@F H"FIF@F P !(F	((F	` 6' J LH J8zDhFM`  !}Dh`Hah+X`hHxDKJ{D` iX` I
K{Dh` Y "$  48@	:<J &  G G pM}Dh3F $ 4V/ * V9<Z ИG ,H)Xp@ p(& 
h #p
&F2%x0=	-S `Fp-OF0FFdиiиoSBSx	иXиo'
    W ,u 9dBeE-"+17FFOz( F)FJFSF F)FSFFJF_EF
Fм	0 
XOaOA
 ²+TѷB_E0#; !9p]p\rT1U?Bӽ𵉰OFFD8FIF0  h( F"" FAF h+ F.(F 0FA(FB	  _ -AFFFFhh6еB.F9F2Fh` h&`O  -ܽKFJ{DFX"+hz	,&F&8F2F ,)hB # hK-O
FI{DFNF[X "~D
.
h
F]#%+ 6B'0ݩ8F
'  ( 8
O 	FJO
& FF\PK
"% )
8Fi0+-+ +++Ѝ'00;	+
(FA(-
r
'FO8'.)(F
y
B
.\'`O3'l)h)'t)z)"
\h(^!

!
\l(^!
 !
Z
'
J
'!'s&$h ,zwc"h !&-, jpx#0 "h&, !-0  #EdлiлoлuлxлX6ѻoZBR   N.wvvvv&"x"& #
#h&F4$ ` F@F"F"FFF ! %%!  ,- (JOqzD&F$L|D FF AH@JxDzDEK8F  !0!8F!FZF]EJ8F  !0!u4F3hB # h'  گ ï  -AFLFIm|D &eX
AFF(h`f"F@F9F$+hBP
m   hS+@pG0 #
!
M$}D0	I(FAF w h(" FF0 jh+ F0   FF F@F8O3" "#E  )F F0N~D0hбHxD	21hhh F9F@[rJ	HzDxDh`@o vE jE LE FE K
FI{Dpm]XF
A  1F+h 4I"F yD F$+hB
mp: h QFFvH!FxD  Q@pGF	F% O4#`$ RCF
"
 1F"h Fh ` FFO~"  OQ`X```aXapG	Ѳ _
A`` F hBhZ`AhIyD`$0	YpGC F
HxD	^	K "b`{Dh ` D`IHyDxD`@ C C C C p?XhpGF*!FF( =`O07 h
F #D
 !#hF
FH ((`   #h) h*  h>	  HIxDyDf$C pF M}D(h	hF@! 	F(h!F	n0F!F"  FpC I #yD3TLBRh *F J FFF h0F)FF8F	JzD	J3FzDrB,O5 %("$ `(F2_  	HIxDyDdB F p
IF0FyDI(FyD;hxh&a#``` Fea1 V pNHI~DxDyD	D0h	F !	jF ( !F`b0h	8 F,F	R f!`%F `#`(Fp B 
B 7FFJFBJ4< ! zD-qLO1B
JCC !P;zD0@B|dEJ %zDIhBR5  ! 
JzD
50-
J !TzD< 0   w  Q D -ABx@EFF  $!`'I0
(FFI
2FF8FGEp 
IyDIyD"
I8FyD#FCpkga#a`` F   ڷ JU -CFxu+Q@xg L`
"F0x_(Bqx?a)
ѰxSر
"q \,i)
ѰxCX
"a 2 $ FN%F~DTHF"@HF5`mhC 4x, j!`  
z JB KP    8FFH #xD JhB	 FH(F!F8@430+8 $ -AFFO $DW4 1FOh(FuX0FS)FA40,  "FO0F_ #\p0pG'K p{DF2	%`O5?!I[XhF
  FGF!j1iG5 (O5 i"kh@@B#k  ``l "bd0h #Oq`c` F(Fp  -G 	-KFF{D 'Q+JXhF F	9=FAfh FhB !)p" p / F7Fo1fh NE(NF
!2F@Fah0 AF	 2F(F  U   FNb`(F#`AF2Fq		 8FR FFM}DF $2VF (8FOrq ! O %$`
HてaJ)XHabXJb)XbX#bC F !" F  pFMI}D mX*h F F+hF F0Fp pFL!M|DK&{D@cYHhF$XT T4 F*h (
&O6 F0Fp  Wf l-OW	F
F9FHFFF
>FF0F!F
&FF , 1F
F b !
BP$01X"H"0@$aE4B۽  -OFLHDxDKh{D)h))ODODODODL(F=!|D"hV&`F 	F(FFO O4 	4aF(FJFo `FHE;b	 XhQhBјhhBhhBOO3B  Ѥ_JzDhS  :(\H9FJF+FxDZK "{DUHxDhR :)RH9FJF+FxD03NK {D`? wKK "{DH(^> )[ `U)SBHS"[  AHxD``[0h )?;K{DhI  :(8H9F*FxDL "5K{D3K !{D3H`xDhQ` 0:+? : ++,HxD` F#*JzDhH :)'H9F*FxD%K "{D `  J`   Wcg  " " U  SQ U n" ! { ! |!  P! D! p!                 -OFFDFO7HxD#x 0 -+E	++++% 4HOxDhXp#;``I ";hX `;HO1JxDzD``KID{DyD	8h(hx )@    8`B%IKLyD{D|D`hgM!F3F}D-h,(F  OD:hP  IO7yD`IyDV"0	x`-(ѓ @IHyDxD`H2xD;`'`_pD ?  K{D ?QFpF3FJO3zD
h 
 `HxDhK`}OD?hyЯIyDh0
`I-yD !ћxH2MxDL}D
`h|Dk"`
8F)F3Ft'h"`KO7I{DyD`` 3МHJxDzDhhV!0B)9x-)h$՗J  -)zD`ѕI7#`yD`:) F 0 ! !F0FZFpAFЉKI{DyDHxD F{:/ ј-/ј 2 F9F -/ј0 +ѳyHxDhS`xIyDh`"x:*	tHxDtHxD9FbrIyD`,Ax BW/@;)>јAlHxDhS`BiIiKyDiJ{DhzD`8"x:*fH9FxD:dKW'{D`!x:):'Y?'W`HV#pxD`^J  #!FzD`0F( ZFYKYI{DyDF>:)И  (9UIyD3 #` #x:( NJzDhY`BKJLHzDLIxDhyD`;!x:)HH9FxDGHxD`V! `DKDIEJ{DyDzD`
hS`8F  Q  pl ~ l r n F , N .      M    ~ h ` B F  L "       aL   B 0 5 D 
    K `    aK  t T < H K     J  ${F   # (O0  \3+A  pGFF;K0	),+-+++pGȱx0	,F $O
0=TB
5x0F60	/ٔB`   "F#  #OabSC#`x:)0 ";# ("h<#""`x:)
0 " ("h!`8Fx-+0%++0 %!F!hJB"`8FxFJ*  "AX@m)M* "AX#  x.)0"#z (x.*0! "#0:	*# "A;se (x/+0@vOQ!a  -OFF
FFFd!
 F	&(FOq
 )  &#h++[o<H0"h #xD:7H`h5IC .^;(\<rW`h.I RQ# 3 SE	 !
/ؿ=(Fd!
ld!F(F
#
F
!
^B -5 / =F! G 
ghh )1yOH1"#D
W& BJ3FB "#i	 Q l  h +o LBԿ "" BB ""Y`FpG pG  HxD@Jc HxD6>c -GNKOHOI{DOLxDOJyD|D<OOzDhD`DZ` #` ` 3	U5hMh.R2G%B@KO@O{D@JD zDh?KDh "{DP~P0}hh.W7I%p -H$2RE0HO_
xDD`D-L|D!` $,IyDhHF.U)z[4B $$OODFDuSi.P0=(FB((FIF4B۽XIB  0 0 p2  d2  0  2 r0 d 
2 (0 1  0 1 1  8oc,Oq- F&(8CC8  -O-FFFhG 6U5TVYE>E6s,u  
)	O	' gBw		ER<FR_BQ 1:WkBB O 	EKFKO 	nPFoI@roO@mDFF+Oq0FF  .!O1		 (d	XlFHdf 6 .Fd!
F
 
FOq )   W 0BDLZFBIUKcEu "dE> ,u $E
66J #4HO:Bs"O1!  8Fd!
F	!8FOq )F FZ!0D .wPFd!	'PFOq~ )  '!R'00JIzDyD %PFd!bɱ                 Q Q D    PFOqB )  S  B@F<I@ (`x!Fp&
oq!  FOab )1 #)F
$)F #Oab  F
FFFF<" #
<" #!F (F
	   8Fd!F	!8FOq ) !K0"   {D1P  Q"0B@F6 !` $  FhF5L|D#iiB`iHbhST# B#ݢiB)H*H(BbhPT  B2F#FB>qiiBqqAa4  2bhiBBWjAT# BO' 
FBR}!KCS"F3(FX3Fhyh.SJ3zD1bB!@bY`-  -OMK}DFz`FXh8`e !0FBF@ǀ h(o " FAF Ch*(~HxD~I~JkXzD~I  yD|I@F"yDOtHwIxJ(XyDzD 03F F O09m	 " F ?F@bh)~4" F AT h(J4(HF
(rFcF`FQ`2[E  IF( pFHym	9 8;:OCC`?@= C"><zh?CaA @#`FFhE F vO0 " FAF ~?Fh)/ FhF9hmhBDAD !"@F8 h%I&JU0yDzD  Uxm :m4!rO ` hDIJU0yD zD CFV hGdF h' l   = .   b  " -OFFZd@ !/B8Fx<+E)FF+ * >*FFFx + KF ( H!F "xD F   `   F<
7;FF ( ʀ>(F8FxB,*;* acx" вHxDx,+;+@0F ( x0,+@
 ( 𐀐  @ `\D
 WF    
# QB0QK zB \{D 	@wG9F@F
9F
F@FE
J#  	<J		J "!	,J	bha`8Fd!F	#8FOq ) #

cI		P# E@7F`h@NpE݊O0 +`h'Q	J
Rh2AhyB"F #O$3B ![	LWi'i
_Da	I	Wh  yB32B\	DOF     ! BBQ "XB
`  K``%`'MX}D*heF:`YB 
pX`h ?j.P02FO sr.Q 'r].V*F	4 F-gU8F (F Q R Ҡ (  & & -O%Mt4FD
%A &XT1fa&aF*h
`d~D1F	xD1F	xDF0
T3F$xYyDzD0 -O0#
CQ	1(F F(F  ( /  -ݵ .۶oܻ ۻ2ܩEй B +!"jC,.  	PE
CR 2O 
,



aE
  #\QB
v3B 
 #OPFQ1b}P (P`?}

YE`?u3B #.P3r[E
.PO 
FO
 6SXF3D

P <O|`E(q #OP0  )`?$3B #OP0 	a)a?3B#FO 8
Eژi	iB3E
EQ1| x< +?Ё #\T3B5
CP0  
CS3F 
CR2 
CQ1F `  ``F
DP`F
CP0 ( 2F` * /@
EQ1|<
+@?]
*@-  "
U0w ({-xh
2)s

(VW5i1a~h{`
(h 0.U.Q6+z`rB # 3B,bh
( UiT%`B
( 3i W2b`D&PVh 0v@LBbhbEO
VA6W7(hL8`U51h`)``h "hQ~ +52B#P"~LQh8FLQh3 #3B!NRh (  #BT  b
%BT2h+hB (W
$MP hiY ӝ ܝ l  8FM!F"}D(Fo0(F!F"8@8% K{Dh *
LO0"`|D  !FT F@     2H8xDF (Q/L0H|DxD!FS (HM,H!FxD ~ (J F(IyD(   `0%H!FOrxD#x"HxD Q```aIC`` .P0yD M F"}D)F p"x:*HxD F)F " (ѽ8@K{Dh (ܸ8@~8 	   T B  , 8  U     8FF{} !"F(FF/Fv F8IyD p   p
p/  `9 rp   p
p/  `9 p   p
p/  `9 p   p
p/  `9 p   p
p/  `9 p   p
p/  `9 @p   p
p/  `9 Bp   p
p/  `9 p   p
p/  `9 p   p
p/  `9 p   p
p/  `9 p   p
p/  `}9 p   p
p/  `u9 p   p
p/  `m9 p   p
p/  `e9 p   p
p/  `]9 
 -p p    
p/  `S9 [p   p
p/  `K9 p   p
p/  `C9 p   p
p/  `;9 ?p   p
p/  `39 
 -p p    
p/  `)9 ]p   p
p/  `!9 vp   p
p/  `9 p   p
p/  `9 
p   p
p/  `	9 p   p
p/  `9 p   p
p/  `8 p   p
p/  `8 p   p
p/  `8 'p   p
p/  `8 Up   p
p/  `8 (p   p
p/  `8 p   p
p/  `8 !p   p
p/  `8 Np   p
p/  `8 p   p
p/  `8 
  Cp   p
p/  `8 ~p   p
p/  `8 p   p
p/  `8 p   p
p/  `8   p   p
p/  `8   p   p
p/  `~8   G   p
p/  `u8 p   p
p/  `m8   
 -p p    
p/  `b8 '  J   p
p/  `Y8 p   p
p/  `Q8 )  <p   p
p/  `H8 @-% 
 / @ P  / @ RE  J@- @ 0d0  
 B  P9  0S $ A   $ R  J  0  0   0   0   0   0   0   0 
    R*    J  0   R*   	  
  @DA   P   R@/  R  / 0  P/ R/  P&   R BJ.Ƞ Ȍ 0.Ƞ Ȍ 0 .Ƞ Ȍ 0 .Ƞ Ȍ 0    R*A   
A@D  -Q `ep B7Šp ƌ 07Šp ƌ 0    R*A    
AA@D  B π  -@@*SӀ n*& !Т_|D !  _C|ڡ
=!
  @@:ӑ!
!
B@: 
 
B@ :!
 : 
 !
 
_B|!
 
ڡ

_|D; ;!  @pG - _|D; ;!K[ K [@:ۑ QQQQ@:@2 :۱QQ : 2_|$xxD_|$Q;@;D1K Kxp HIxD28 .  R  -  8     R   -  R  :P!   R
 *      

 ΰ   :
    
ϰD$$ /@- 0`0 S0!!ϰ$$D R@/@P`p 0`0  
 S0 B>@(@(@H1$  R0  J  RP*  .
P(@H!$@! %@/     ]@` ` p @ RRχ  \N   SSχ  \F    
  ϰ  
  *r4S
    S  
r8S    S  
r<S    S   /]@` ` p6     
 @ RRχ  \   
P  RRχ  \  @ SSχ  \  32/
  34/  25/  35/  24/<`@Н  P  
o `12   Q  / $(@P \  
-  %\0D0  3P  ,\  @%T8  41   P$̠3  $̠P0  Ƞ0D,Ƞ0%\  3P  ,\  @8  P$Ƞ  X$Ƞ%X  %\0D0  3P  ,\  @%\
     
P$ĠT    `@Н/   P P!,Ġ%T
  B`@Н/1+ +; ;K Kı[ [+ +r; ;KK K$[ [1 @E@nɑ@<,<@<,<@_LNp1$1_L`1 +OCp1_LNp1"@+1_L 1 ;ODp1_| + +K K ,1[ [ -1?Q+<,<1 0TxQ+<,<xsLx|xQ;@_l p1 ; K1 ; K [1Q+<,<lxMxQ;@ _l?֯ ;OCp1Q+<,<HxtQ;@<,<Mp1 Kp1 ɢ<,<%ɑ@<,<- 
x±KxñxԱQ+Q;@_n ]<,<p1 +p1 + ;p1 
xKxQ+Q;@ 1_l 3<,< 
x±Q+Q;@<,<<,<ˮp1 +p1 +OBp1`1  F@B ɑ@<,<@
<,<@뿡  _LB  pG pG 8pG pG  _LB  pG pG 8pG pG_| +++z?Q+<,<˯   pG  FF9Ȑ@<,<ѣ<,<_LBУ?ӣ; ;6ѣ3_LBУ+ӣ' ;"ѣ_|++z+bP+<,<ѩ @ sEʀ*SӀ?Ъ*& !Т_|D !  _C|ڡ
=!
  @@:ӑ!
!
B@: 
 
B@ :!
 : 
 !
 
_B|!
 
ڡ

_|D; ;!  @pG - _|D; ;!K[ K [@:ۑ QQQQ@:@2 :۱QQ : 2_|$xxD_|$Q;@;D1K KxpHxD9   FNBH !xD	 BHIxDz@8  
BH !xDh@
 FFF{BH !xDT  T; @pGO2	Y    Q@- @  0` S  : @44  Q  * a  R n  KJ{DXhO0  -O]ܡwKD FQZ01Fh`
` ( ŀx/! &F>aijHxDFhL|D F,!FF   
r &hFI&x,;`9hFYI$yD(F9`v9h"`hF@pB PJ#PIzD   yD@ "0YFFX,"FOS XF/!4  )FbFwh # Cp:LIF@FZ@"hHh))))

))$)!():5  %Y%0  +F0 (K
	{DA$HiF"hmFxD!JzDz` yhF (n
" h "`Qh1O0
hhB4WF  h.  /   #    iFD 
J+ZC*B
  MbP?@B   !FhF ( O0 `K{D` 6 pF  p%i -Й&h%`ai !`j)Fi2FG (ܢB@ O0p6- .
KJ{DpFXhF	N FF(h FK0Fp Kp{DF(HxDp@׻JXhF	- 5<O5	"` FF3h F(Fp KJ{DXX HxDLK|DXhF˹JFMOGzD}DXQ3cT2H``0 JT0zD0``	HxD@< : 6 5 B -O:K;J{DXh8H9NxD~Dhqh  *7T496h .1HxD:@0F (? %
"Rw`B`gz`DFOI
T YFT"E$lGGT5>F7UEH!xD"k #Op#`OA`c`a#acacdd`S``4F

HxDjK{Dh``h F  B  5 x F  Rv@pG0FLFM|DdY$hh9` )ژiBѲ
)hв+`0FF0@𛾽0@b h-OFF  ဉ 

#iC Fj 
	#`	᠉ p 
>h}h7>h}h7 -j1Fi*FG (@ 6-  ( >h}h7 -ТAO"ѠhB i#h

OI	E1 ( cih	 aPD` ` s hMEF1FJFh h` 	F"`'!iBMEJF1F h 	 F"`7biFBj1FiG 	
w1F*Fh"hC`Q!`ND0 +J>hO }h7FF -л 0F
!*F  

O hESF+F!iBbiّDKE1FJFY"h F	!`*Bj1FiG 	
 F1FAh!hF` `	
 F`F ND 0 +桉A@O0KRH{DXT0@pG  l		)q  pG  BKCJ{DFXh !a` m  3	#`[
b F (UѴ`.a@"khp@`E#k  k`a`k"`!i Fuo@BHoRNxD	, C	) F!ibicj!`iG" Q (``L   ``L@O0   7 )o A!
 9OB	 $O|O~*( `p@pGF p ("m#e#QpFpFF)  !"袉1F "\*Fp@`F rC#RCQ e NhF^ +hFO  O1O O"1F	9F"h(`)h"hF(h!hp/`"h !(h&`    -OF% %5F
$!{DFO
	Xh	
$%* @Fx *`F; Z) VP!D G                m                                              g                !                                              c  k        '  k      =    K      Q      W            ]  F #	bFx0 	(;*+2F #	bFx0 	($)ыB BFTBB%F"U4;0	) "AF0;	2;0 	(F$+G h)G gG@  l*GG G wGgLG 
МB[B%F U4x
՜BKB%F ՜B>B%F 
՜B/B%F x
՜B"!B%FUdkBB%F 
ДBB%F BB%F
  
МBB%F 
՜BB%F	 z
՜BB%F t
՜BB%F gy
՜BB%F ZBB%F OBB%F CBB%F 7G  &z
՜BB%F #
՜BsB%F 
՜BfB%F 	z
՜BYB%F BNB%F  +-kO0 "#`"   U  # A#`\)



 6&6 63BPXE	h  '_hB
hL 8Fh %K`F8`e`8  K-O-FJm{DF&FXh|0[PF8O4	"`  
-@Ѻ
< ,  "!!"DOaH=?BC"FIOE $=A (= (O4 !@  +QA@@I- "'K퐋{D %-F0%x -O8Oe-A ). 	PFQ (A 
	
	S
	@  4_ O<F
$+	 	  Z( ,a **g ******]  *  *          **********D************2**[ **********7FF!*$**.*14**h*4O 
_  *  5H+x
F10	*$+X%
R+`0h5P'`3h76 +ZYBHT+ _ P;*+	?)FO +x
F10	*$+8%
R+`356h          hzp P'`36h7F|F	  %	0	)$( E|H %	0 0	*	$)/F *%8/FHH@HXxl+PHH H xHhT'`5h76|R %_PH_  P'`67& E   
o 	@
R'`7 @
R'`1h7F6 ,u ,-"dBeE_ $?(		g-G-Ѽ OOS'`I  S+# C7Bz@-%$_PD %
S+@ G{aL\E +@s *@p	Hxf*e*E* ,","ձH-!H !
 Q	g*FG*
#	f*ћ  0(ѵ@@#`"` 0!"hB	$hg+ G+
dE`	g,E%e%	f)G
F=Tp ,dB-  + 	,Xp'
{" F
!	  F01
!	(F`F04 M
~KKpE0!pd>p( 
!4 ,	ݼ 
 $B
4 ,Կ$g%
 * -!	_ %(H_  

U'`67& E     o @P'`74P'`4h7 %6
R'`3hx!H7 %HxDF6 	   7 i T'` 75 D XFbF !cH dEdFF dF !.F_
F
H_  	Q'`7" E   o @T'`47 %6 DT'`5h7,FM}D_  S'`67&   E   o @	Q'`74	Q'`2h7F %6T H  "_    (TѼ j((J
:
3Q0 DErFF0FTٲ3 ]FG0)E0!F@ F)F
" #	
 F #02-
"
)F	F
F	  !BB
04;L
3
S+"@$	(Dpx)	FZF
FT9

v{  eF
	 ,  %|B_P$

{Ա %$
D
ȱ %$
D	
(_0B F(F
0


@
 *:   1 A 0)		PF (@S
	:QK{D*PH xD  X (
D		 PF (@4
	_I 
_ !  Z! 0 0"	!   		P(PF[ (@
	)@
 *:   1 A 0)		PF8 (@
	:K{D*H xD  X (
D		 PF (@
	* *5T              fW i + -  ژ    1 A P)0		PF (@
	:`U#}D* TU }D PB* 		PF (@h
		 @ 	 	e,@q@e$ @LB4, {D 0	PF (@7-B ҁ$ yD`B\`3L ,PFn (@- ; ܳ B0 13* PFT (@-XD%|DL$zD  +m$ @TH,4, {D 0	PF$ (@΁-  yD`TX`3H (PF
 (@- 	 1 Q0 03) PF (@-	L%|DJ zDB3*	 PF (@~-  BY  ` (	PF (@a- 1 B0 13* PF (@F-L%|DܾJ zD3  Q)PF} (@'- ƀL  |DX``T `0(	 PF\ (@- IX`yD `3QB* PFC (@-` `X`y+WЛ @.! !  H@( 0 	PF (@-@2  & ; Q0 03) PF (@-nL%|D kJzD 3	 	! B B*PF (p-=`\` 3 H(PF (\-4
 , P0 13( PF (?-CL%|DAJ zD  \,PFx
 B	#PFi
 % ,> F $PFW8 "
F(%B  @ +O4|#hB
!}
m ` N p  k H <     z ڔ Δ U   r    FKFJF{DXhF	2F F9FF(h F0F  $ODo D$
 Oq	"FFO|< 
 "p8FiF` 

#iC F }	%`
 h!ibi@B FO5"h0hY`[ci"`BС
- F ((F8  -OF6LF6KF|DXh-L3IgX:h
1NY4h ,DchhXB? F)F"hO4.1h9" 6"b`! 3h#`4``HxDh	 "`ch Ya` B)F F"8 (F;hO4O O3"XF"#)F,CFѵ F   -OF:L:K:I|DyDX
h  *e7OY;h5HOРxDhJ`T
0hF3fhC3+FU
0 SEѕ 
 " FAF0BAF F";hhG8h[+F>$h ,ѹ HxDhJ`Z  hAF* F (  ;h#O? T  ^ C	K{DhQBxزpG  pGV F  e FK-A{D8JXh,FF{%F=/2FEbEО\ .<s`
/FU;K "F#F3x=+F   -OFxFF>O=+LD FF(FFp  iHE3 #\ 3 *0H9X
hFFF30h (ѱ,JzD  XFFO0C Eв "H !6xD H& +FF+zH	>X7hyG( =*2h=R# /F +"=#<pF=*  )ѓ    7F
L|D

KXhXhC ((F (>  F    O0pO0@O0  +[ 0pG  pGhF !ԘY `pG` pG	 0
0	0[0`pG  pG  pGK0{DBЙBi
i  01P]Q-BO3B # #F0 x I: Pr *FQB #

*O #C "2*Oڿ3bFC+pG      -CF0K{DBRi 
 FFEFVK FR
(  0E$EUE@V\ %0 %L&E=V  !+ B\BL@! DUL $$ NDT
FD@C+         XK-O{DBFF 𥀙B i"iB	E  
ZhAhF1F (H  BFIFFQO@ KRO@L" OCoCoC "OCoCoCQEr) =CEF%ah; * F9F (66 #BFYR@" )oCoC" (oCoCE*YhY =CEF%ah; *0F    
 8FK{DB
M}D(FHbhxDP"@"@(F!`8@
Ϻ8   pFHxDnK{DS%@"hC% 
&p FF(E`` !!a`L|DHxD Fpz z * > -CUKF F'K{DBFE%@
W pA ̱hF X L" qa ta *$$4aa$4ara 0G3N5  p
2@  di! 0F  SK-O{DBFFPHxDBiiB)F5FF7ihhhBȿ0WEJzDB  1 " C+ B75 P1 %VSOH
	OE#^L#̱EOE`1|?R\FO VF3#\OE

 #3E	EOH P2FaE  < ,aQ- * R D  F K{DB!Daa  -GF@N
F~DB>HxDB B"Gaa &#F&,FF`h1IyDB!i *i #`475UTOCI2 .oBoBD bFOC""loCoCETk+ -oCoCFV3 ."[oCoCB 9R= +a    -CF,KF{DBOOQ!i@h	h	0m BF"HxDB 5  FB 0@E(r!i3F  #h CA;RrE `C	REC>.a F,F F   8FKF h{DBЙB,`8
i0 8@T8  F KF{DB9i  #h3lNC@B @BhBbhPFHxDB F<Ff#i   FY<F5%aNa F   2K-A{DBFFZ.JMzDR% "FL)ODD8F @@q }F#HxDB(F%F8F20 # @#`<FlD(F!FF(F=Fv'h / F!F@E(FEF
HxD `F`
HxD (F:  n (         ' #-O-FzDO 
O KFX
hxF3h  (-)%F
+)F
%x - Ä6iXh0i) F"yDh"(FyDO 
|,F n) F"yDzxx(+  F+)*  * 0-`xF00+ + z'	 &	 &
%3F+0+ܿ̬03/Fݼ9 !FFf.Fh2 +QFF10:FЬ1/LF !H05l? O
 4, ,ؿ   dB )i)M)
!-
$  F2 !FF0	, #FeF+F !FFEFFP%	 ( ԃ+м-   $P 0	,400FЬ1	*ج0 
$0dF / Dl(9EF FX FFF FO  F= )@|	 *LFvzg +FF-+F#	+[0 j@D
R+a;@;[3->ܸ  N)ݸ
OK8D {';(% E'KD  kfK [dk[6"IKyD ;[ /\xK:D i[;7 𣀱 &5FF7FoO 
"!`
	 ) 0K #D	 K%[3R*H[T{K=xDI  lK[>B_FءBT{زO:YX{BKD Kk[3D	+K8 'D &5FF7F%
 {h7[+|D  {hK@K[4x[ek@kO 
O ""` /@KZO O
 	!' & 6B0FNI~DBF0"	aCa		# 8F
! 0:|3KEF	 8 
 O			 8F
!		0:cFE۸  %  ۶  xhK A
F9F)K
!F %
(r +FF  opE3F6BF1FaEaF ) [v(FOIFF?FHFF +HFFwF"F4 .1Fi .(F1FaFHF #hF`)F (A (@k @g +@b!0FA)FF (DV  |  گ hP ZP :P   ր   R & ʀ  h   	 B+CI#pBѺ?ѬI

Fy + BO:
oSo[
  ( J3: ;[:@+@+[?HxDB)ЅB'0F(F*i3iC *Q^^qFA?/p͋ SF +ѻ ?N̋( (aH I  H^I_K B*ѫT{KS+K#K2TH\I +[2 cE
OKB2?z0O:IT{Pش̋	8ɛɛ
IJJI [07KB#8@)  p&;ԟ%#HF(F0F
HF(F8F0F LF`
 APFPFYFL4       5?55  ?5?     ^ |-O-	 *!" D`  `KJ B,Bt`*-M}DM}DM}D	!(F0D`EF ք)FR + фx@$` zJzDBF 𵄠IyD0 + a` 𪼰H
VFnS+#C#p5GQ &A@%oc
E3G		!@
}M  jg5&S0+s+C+j+klK0b Z!+;++ո[E+
:{D  kk
:" #
}J O O  D( '  !
	*%* % %)$ "  	 +!F$ "	 
3 +FO1% "F#O3 "F#!	#	F #  !0I E*JzDB F[ 8 - 5 [U
 OD [	# #IyD3  `(?aCoc?yPD?<sOu      LF  Z r  x l v w Ց K%[3R1 *K     #yD ;	e{yD kg{3R1 *gKK #ѱ չ  *@
<3FkMFF{:{
Ps:q ȁG nj ;5{D kK k4{{;0 FqǛ vǫ B:''{iD  +]"k+*0BqѶ ;0Kk3@[
FF:0(k`[ (iۺf	, )D ڹ O @1MF.;;$(BD.+JEFK0 n%1++ܴn+@_r
B0!

pFFF:9)xHp!/2@ %:+	 3B
6=F^F	6B۽
7F
  "^FJF DD=F^Ff 	ݰEFF / -
)F!FF Fby F F9F
F 
 /F9FF(bQO@G' ' HxDB
B)i  iv  #
 )F  #3DD  FYFF (FAFF F)F ( F "
!
:aF*
! "Y )ݹ !(FJFHF F)Fm (	o
F

1&k & +  .1Fwph1FG
8F !W	)F F1F8F 0 F*(FFh8F FF !FcR@9+ *	1 )ҹ +_F! FQ)FF (9/	1CF +ݻ99 iCFtFBF
! " F
! "BF0FF
! "F7| F)Fe 0 6NE F
! "xF  4v w du t |t   &D! F)FF (B1"

pAF,F99*PpCF80)(Fj.B0F F FBO 
0  "p
`*`   F  GK-OFFJ{DFFX;FhFF[J#FPx в (--[O+-F$F[ .a.[%xx-X-Qex&41FO01FFO0  F0	*F  R!OWO7BBSEэB	"!`O0FS [ ([B   g p0% .&0-Ѡ0-
&F f 𵂱
M #}D\\/]]Bи43B  F F fq pFfD FZF1F"F(Fph𵚱FKFF[B ! &F` -F !
"(  
KJp{DF
HX
FIX4yD Fh1F F*Fe
 !Fp@  l: Q@pGSn@pG k0`pG k0VpG8 BvF(  8FF(F F8S$@pG  KEAJ{DXjF#h		"h 8  Bg
  hB 1@н @pGIPL@!J|DzD FK F    0T [9 FO0FFO0!FF@pFFFF}(F!F2Fp@ #jF
 iFf O0 OR (o @iF hF #8Mh) O0
K0
J p{DNzDhYhhB`h `	h1Xp  p  	K	I{D[XhBIyD2h   pGR H F
F FFh*F9F  c%p "u_0` F-OFF8F<p .! F FO  FŲd3i0i% /^ F)FF (UxB	 F*F  (
ڳhh	 /B F)Fhh} /5 F)F 
ph phjF$	a @F JF ` 	 FOc`BF@;_p`  $ F  <HO!xD:L|D]!"0 (Q&4HxDJO4S &(F ( .`	Q &#*s  $OFY:`"T@#`F [B
ЁhJBhKBIB9hO4L"|D"pK ${D`fO4(Fnh+ѣ F PROPnvOCEx  6    
Ks{DFx$p@ O FF(F )F#F²0Fp -CFKFF{DxC a  F)F "%h.HFAFr_ hB'8F`0F F( !"F@ǿ p  -CFKJ{DX ]GFWk(F؀WKo	$@*F HF!F68> .4F $ F F  -CFFF  	HF)F "V%j.@Fr$W#jB8F!Fs0FHxDxr HxDnf  #IB=0 1T@ *iЁBg.A Ё *  F #\T3B	 #,FXP3<ѫ > $]U4BA Ё *  FcdB 	\T3Ҕ

FF#FV};E}ocC
SRB T30b #\\B`043B  0F0 F09FOK<L3B:O2ոpBLFBDBFxBЄB
҆xB	ГBx3B0  p Fp(Fp0r:F [ [FU`EF	F F+F *aH0 #p  0@- @  0M  8  P0#S8t 8@ 80   8   PP  "0 p   
 ʠPu <Ѝ0d h@-@ ` p  ^ P8@ 00   
  o  6/@k 0@-PM @  Q  (  O   U 040  
   Ѝ0   "  p     0 h  h O-Mp B"P@ 0	
 ` P  @P_  
  Y$Pd  
	P     .>  Y^  R  
0#A P   w @ ,0 @P   P       P  
0 p  0 00  b ` Ѝ]  p  
 L V  O 0   |t p C       @ <q 8!p e 	P )    "0  p   
   p  
 X   Y  
P  
00    9 D   p  P\p  T 0    $	 ꬏ f tg H  f Tf  xe e H $e e @O-  M 0! 0`  S  @Ppc0 Sp`    p 	P@  " TP  
`pi6g@ 
`
p  W  V
 0 
0  6/     \  
\``(0 ЍO   d H  8 0  @- @ P     0  S    Ì0 S      0  0 S   
< P`r`pQP 0(    P 4     0@ S  p /  /p@- P `  9  0  S
    @#0 Sl    @E T  P 0 0C   @,0 W  pp @al     K{Dh
hG  K{DhJhG  K{DhhG Ч K{DhhG  -CFP;*NFY~D  F0h , x|F r@"hBEѣhai#l, r"c"# 4LE,h GT )lh GT? +ѩh!MFpYO GY  Rtd  Q
   P 8@-  
 PP 0C @ >O  T S_ 0 8 8  Q 
  0P     / 0P       /  0  S    P   / Q     /  P  
  Q    / /    0: Q  
 Q  
  Q 0  /99A- @P  
 Pyj   ?  3  Q VP  	  τ 0\   V_   ) 0%S%  
p U83  
    ^	  0%/  2τ  \ UP     0 P U   1  P W_	W  
 ? ^  
/   2  P U P 8   1  P U P # p@- @PM+  
 Pi  _/0B_  U R  
   " Ѝp   0%S     R  
0E  0  Q  U
 P _`ϔ_  U ^   @- @P  
 `yZ  /   2  P U  
 _  0&SP80  
/   2  P
	W  
  Q  
?   3  P V `#  @- @  P0>M 0 0P	  
  Q      
   R     / / /E-M `B40 @P  SpP  
  4</40  Sr<   P
  
  
   < &< B     UPP8P ,`  h0 t  "  
  U    & Ѝ   (    0p@-  @P  
_  p`  
 0b     0  Q  R5/_  !/  P    / phBBhaEӀh (pGcBaDaB`K`K("J`{Dia  HxD p
 HxD p FK  J{DX`HxDf ! -OO 	F waF0h		hh	+@
  DBch (@#(EhiB_hiBТh(iBhB `` vHxDci;#i 0bFXi ( (iB iiLU, BE,0*iB#ih! h`*iBiBaKa +a!iBaa`iBXaaYF`!1 `u_"(OwB#آsR DC   11(  A "!ohaLLE.@i` *U.0R      F_h'AER 9S!  (*iB?=C!@a``
*ihB2B/````7F .hB?@sE, +b^Y -AFMh h0F)F (@J!&iB<eiB O$؍h(hEEеBсhB@́B%&h& %`r@EаBhB@``fhiB
ЏhBhB ``HxDHi8i  FGi  /i  /ѴE p -8iLT,pBD, &iB  fh&e`"&iB.iB(aha (a
iBaaMiuBEaa	Xh -Ѣ`  X` &iBXh@𴀧iBhaci`B BH`@Qea`eiB	ѣhaa`B H`P bDO$؝h(hEEеB!hB@B##h#   `i@EаBhB@
``]hiBПhBLhB F``Xi8i  FGi  /i  /ѴE+ p -0iLT,pBD, &iB ch # ``&iB
.iB(aha (ai%Baa[i#BCaa`iBPBK`	Ѣ` P]`BK`(%"h (3BC"`Fh iBЮ````
'а?#Ҡu/ V0 DE.33"  C   'fh %a Ma7B
a LD,>Cf`a(T,0E 3F]h%B@ 5S%` ."ibE?oC%a`` ihBcB````` #a
HxDHxD	hB?KL	HxD	HxDhB?@V JS DS 4S .S 7FO3   ""#!FjCFJ!FzD(F>  HxD p ( 0   8LH|DxD#h+( F8HO2O `xD#a`a`!aa(F,U2B,#`$  $
HxDH<	H	I
JxDyDzD 8 R L F  -CFJK
F{DhA !xi )(5E {@J FzDhFoѹD	1H9F8EqhB_0hs BcEVӛh +K2h)F&(K&K)HBxD E\  H FB %hB=F  9?иB=HxD-qhKs`hBi F!Z\ FAhiBO3a O:FH0Ѭ %  "  -GFGhFF'EHxDdEn@tf F. j0BJzDh@@u%hIyDJh9FPBfD@`2FB JDu"c`e #J`IE<yD
iB8aHxD1vDaB@@a<Bӊ*@7EB>Cf`K`]hE]`iBhB@	L>CAf`Z`a`CiB+уhB+٢LC >Cf`P`HhP  H`IyD`Ja"KLC{Dg`QhA P` "`Za ɀ"
EO
)ȑhDh	(	HE`EhB@𳀃B	iK {D h! `lKEcE𦀟hB@```hiB
ЯhgEhB ``WHxDki;+i 0F_i	 /i	 /E p (2HOL	DW)BG)0+CIyDiB#xh y`?iBiBaCa +a(iBaaiiBYaa*ch

 BA
c`BhBA`4 @BNf`K`Xh@ X`!HxD74HJxD!FzD
K` $BjhHxDHxDhB?fg F ވ 6    J 8   N H 6   M M M ;-O{DFhByD!,	٦p &. (Ao
,4$ $h;{Dh !(4hhB"  `iBhB`` xD XhB@? )tO   wBGqBz"W	"aD&& &@&(1hhB ! `iBhB`` D4q`B P``ձh:O{D h(0Yi=B=C`FhiBӁ````4yD`La s   q
 ! w	
&

  !  N!@ 
L1S!KhF#
Ah!F
E,FFRFi (Hi (yDVEfEhiBзhWEhB )``p	xDnsi	;3i	 0F_i /i /E p )3,y
LDW+ BG+03	xDiB#
(
y`?iBiBaKa +a1iBaapiBXaa*
Bq`ChCB` DB t` L ݱH'|D(1ci=BE  `Fh$iB|````p8{D` A ҁ\h4$~D  ȁaB"
&в?"Ңw;PC 33$C "7L {DS 0S*V  'O fFXh   BFF (WOxXiS(0B`FF F (D .Bo
*^B C#C	 fD "V " D@" @7L2 &{DS"0FXh B(
Fi8FYiFF + . #xDhBFE3BhiBзhGEhB ̅``xDri:2i  FWi	 /i	 /E p (3vL	DW)PBG) 2xV}D-iB"*}`=iBiBaBa *a0iBaapiBPaa)	
Bs`Hh@J`ADw`]`-YP'xD h(2
B
CF`h iBӓ````{
(а?$ҠrOG PD@77!  G   %O  %zDa]a LaH B'0P`!(R' E :FUh%B@ =R%p /$yDi`E?B%0a``hxD iB
B```` "a6@O44{DhB^i*0`XaBPC`  !`Ya2@q`ShC P` hB {d~D2h
4{DTxDhBNh *KAhaHB@>!E;ٴE9إB7(F2F2 KBPr`#K` !4B{Di
ByDaxD1!QBQ6@*ODh/pB B JzD1KaB@B HxD!Q8FBF@&  iF FHxD 5@F?F ,K{D^hqBuBB   =FKB{Da@IB 8E@	E (F@EF@>MN}D~Dhh /EBH@B (F `EF@ރCѰ0BҹK 	{Dh/KB IBE
@Ft0EDHFmHxDp?m/FM}D(Fn8F[F  WF(Fq Zz WBT(B@NO 	MI}DyD1:!B!i-iBґHxDaI@sHyDxD
haqBb "Бb 2(1 *``1F(hshXh vE9E
эBӵB	zH^`)FxDh-vIyDDisB 8ah + hB HE@Zh`_`XB  FvD ZB 
3B Dt`	ZJzDha@`@Z`VL|DaiBѢhca`@Y`PQh-@!O/ 򘀕h(hEE$iBłhB@B	@M!}D,h$)`AE	;L|D$iB𱂌hB@``    L    J l X     d , G     .   |  `        N 4 2    V D $ "     ~ |     hiBЗh$iBhB 5``"|xDٺQi9i GFLi ,i ,LDGE<` -48DL	|DT)pBD)1$tD?iB!eh%a`$iB,iB)aia )aiB
aaTiBLaabD`DUh@P%T`Y`)H%xD h(2L`Fh iBӓ````l
'б?#ҡw:U,DB77 G !JO $zDa\aLWhaLB%0W` )R% L  *FTh$BI ,R$P -ѸHxDiqE?B$0a``HhxD iBB```` "aH)FxD  '/
JB1F
|E8F(DPF
r! a&qБ8[E~`ӨE BPqh! p`k`(؃I&yD 
h(3LF
`h	iBzHxDy````s
'б?#ҡw>QD@6 6" F !aKO  {DahaL_h(aLC.P_`)S.0H   3F^h&EI 0S ` .KJzDiqEC Pa``
EIhyDiBӂBӝ```` #a?K{DhB0i`2a@S`Dt`6 &!`5IyD!?pz:hB?ԨոhB?12*N~D@!O6bKBgO	h?hHxDHxDhB?ȭq" %0F@ 6       z >  = <     V \< T< -A(F&s3B@   BFo?B%`
)(O F %w<HxD1t'B@ pR (rB<@W<a )W\R  ah @Na`Xh@Y`W< @AG<AhAC`H)FxD%Fkh# BLNk`B H`Xh@ X`
HxD	J5zDpl(F@  r h F ( sxD1T}D.iB6 p (W ( )! Wdp1 F1Fj (@!B
DhiB /'ؠh(h`EаBhB@
B
L%xDh!`vaEбBhB@``jhiBХhBhB ``xDai9!i eFOi /i /ѵB/` (<iML}DU,pBE,)M}D-iB!hh i`"-iBiBaAa )a iBaa`ipBHaa	Yh (Ѫ`!Y`,BnYh@j@ƀHxDiBhaCi`BBa`Ea`HxDiB@X !2SEiBуhDa`Ba`PG!.)؝h (7hB iBOhB@KB	ѳK!{Dh `rB	ЮHxD iB:hB@6``chiBОh iB9hB )3``Yi 1i 1h0FOi /i /іN~D6iB` -4iHLxDP,pB@,)N~D6iB !Ch#A` iB(iB)aia )ia Baa[i#BKaazHBPxDc`AiBт`! PX`Bc`(pI%yD 
h(3BCF`h	iB````
'б?#ҡu/SD@7 7" G !PK%  a{D`aL^h a7B>CC%@^` )S%0H   +FXh EI (S P -;JzDiaE?RC @a``5IhyDiBEBB```` #a.HxDjJbZ*H!F*JxDzDJ`(IyD1p@ѽ#HxD"HxDhB?HxDHxDhB?Ԯ .    &9   r P   x ` N  п F  ־    5  d5 \5 L5 F5 8
FFpE  C FBO4 F FF8P !"F$(F8  FF F@A%`%!"H
)xD%%!)F"8FFHxD1 p ( %  pP
5 FF (V!""1FB("F0F(Ff B (F_pP +  +""pG  pG0o   "D=!FHxDhG  %=OR 
Fz!F*F  + 醾 FHF)FxDF"F  K{DhBHhpG1
h *FpG2 pFFMhHxD@K{DBjHxD1F"F j0
 $h +
H$xD)h&` Fp   ~ Z ̽pF
L|D h  `M}D,h0F C
аB#`O0p(` Fp  F`O0KJ{DIFXðHyD+hxD.FAFP9FjF R( 	Oq"F# (O5 FO5A(F2hB^CX h    KJ{DHŰXxDI#hyD&FC]FO $D !Or  !p9F
 (4Oq*F ((F $C F3hBElX h  *    d(  3^69<a^CTccc>@CQ33FIKaTNaaQQTWY[^accpe OTqOztn@4kd$i$gOtdO4ao D^$\O DYo@DVOdSOtP$N$LO TIO dF $D$LB  !L?O47HxDFN $~D|+01F
 Z((F ($"HxDHxDF
&!`O4c$4(F Fp 
 :  $      8Fxr*w*a*Ob!`  8 " FOr$ ]xb-3 3x+-3$ xb-3xx-3Bxe+B ""C
`8
KJ{D-A &XFhgh0 +(FGCT5?$h ,0F U F N
F (F~D !9`iF (p@ QKBS:`O`(` O)`d	Hj3XBO `O`O ` U MF
}DiF F8FXNC "`"a`a
K8XUP aga`F `0 F
C 2U h;` +ڊiBò
+
h
`pG6  K
J{DpFXFhFF0F!F)hF F0Fp T *K+J{DFXhbP	!`@@O0
#kh@@Bd k "` i !a`,$ `B#i FL bi  `SBaai F`  XT p   p
p/  ` p   p
p/  ` p   p
p/  ` p   p
p/  ` -p   p
p/  ` p   p
p/  ` p   p
p/  ` p   p
p/  ` }p   p
p/  ` 6p   p
p/  ` p   p
p/  `} p   p
p/  `u p   p
p/  `m   B   p
p/  `d p   p
p/  `\ p   p
p/  `T   	 ! xp       
p
p/  `G  
 &
 -p P`xp       
 
p/  `6  A [p    p       p   p/0  p   p/ p   p/P-C   P
p/  ` ɲFBF	 , Fx3BH !xD  8Fɲ  BFH !xDKB(F ,8   8@-8P8 P  @ T80  S   
3/@ T8n n 0@-MTPP @ T  
0  S   
3/ @ T     Ѝ0n 8n 8@-8PP @ T  
0  S   
3/ @ T   8@n m @- p `Po @P  
X p`  PsD0   Q  @,  @(0 @   m m xm pm E- d0p  W  @TTt%@8` P q  
J<4    T E /  pGOAp %"  	YTk1F"F 
HxD p@pG-OF<M}88FyDX=h˕F((Xh
-O 	OFFxDyD	 hgYhB6`h73#`Aa``h (#h
h  Ax_ * F) (%)]ZFFO
 ZF;g+-e+G+ 9+
0+%+E*+\ + D+  E+@X+ L+QO+@~c+ ̀ [+@p+ Ȁj+;h+Ki+@n+ fl+@It+Sq+Ms+@fx+_z+Ku+@V`h (#h E@I F (:bhY7!`P``RFfFRxd*#i*o*u*x*#CwSxh+FFmSxl+FdFaFv^F@[80VFF fO	F fFFK##Sx^+2O x2O !( 1F ;" F
F ZF-)])Б ](ИB3jF(BFF v#JF v #FFII O	>q?-h/pr+heF q  	 0-h/`h`*h`h ) ~ FyHxFO 	O
	#ah )ݲ% F (R`h7Bb` *1!` F (@B!h
x hPx _ *;+5    Os &ch!hCE
 F#` ( .@ FD``"`(h!BF#F. u ( 

5F O8vah62"`HE``b ( F`[ &"h
 0 + .P.h+D5FahH``˨E"`bh * F<Bѽ"h
   (Ѯ  !

)pF# O8pah62"`HE`` ( F &"hhxYHx _ +п.hD5FbhP``;;E!`ah ) FP!hhxZx ò + "*p

eFw1@JB(FJF6Z h8x9+	8+(0+++--+Y*X+/أA)Qa+Nf+x+J" F FO	&6'	1&PF!1
.+&VF V1$ _JOOaDE& FO	<FchYa` )0 ` Fc 2Yq	JE@!F +x(X(!F8 l@À a JaFJF 7JF   2 -h r  *h*hu1p`1@JB(F1F62 h8x9+0+-+.+++3E+e+.&F_'&V O!&F<?&8HF<Fch;c` +0 ` F29s#J!F8 ECF;3e(E(!F !F wFaш J*hA0  { z

eFJGD O:h* F;O:PF˚hB
M} M hN' L'     K-O-FJ{DFXKFhF;Fexв (ѻ-O
+F?F . .
9xx)X)@&73+5444444444)  @OO2o`CH& @OO2opC<
& @OO2pK1 @OO2oxC& ПbcQ2F+F @+FQF2F :FF и   !C    $ %0	)؋F	hYDWW!7!ENAIк !ДBu۝BB
E $dO E"#`O0!aCEMeu#Bs۝BBEO4Ao E""`O0aCEeDEu q9 'O  "O`CO  "OpCo #yO  "OxCsO0 .?(0 0* F)F        4333333ZE  iK-OFhJ{DFXKFhF3Fexв (Ѽ-O+F6F / /ѕ1xx)X)@'6
/)//
"O:opK#'"O:o`K:FO0O1+F <:F+FFFO0O1 2"O: ! $ %0	+؜F
h Cx0W 7 E'K"ЫEE]ETEєEJO4""O1O5`cC0EEEu! )dBeE	9 O0 /t0xd0?a
' F)FB FFG@z4JF4IzD𵗰TXP!"h&F0JzDB!OrF'AFѽ]  @Tb ( 7/!OrTB!
BF *L|D"(F!F"C	h*h\B ( $o(F0 h( F3hBhLB7 @ h  {  FF  !"FH nAMVS8FCh  h)FAh rC
l h(```  8 (hchBY`a`88FAx 2F8 !`A``  . F8OABн@  8 F F*(FF F(F88FXP[ F	(F8@#`O08  
 -p p    
p/  ` p   p
p/  ` ꃉ		)y  pG  -OFkNFFSC~DFFF ƀgH7X9h Fbh * #c` 
 * k +@\IrXh  `` :8h (  F0 c:hA@ F	#`
Z F 禉`&aࠉ@&k0h@@B`#k "`5HoCAoQBxD	& @	+ FFFcjIF2FiG! \F (C C@6D8h (2 F..ZFDX#h  ` FS`=h F QF FFFHF!h^E2F8`h"ha`&`FO5(F> -GCSNFF~D QKXh	OJXhF F@ P FO5{
R F9 (Ѧ`&a@&k0h (=whahB1@BO` (0`Ocs`BA #@ 0 `OG	IFF ( 
1F:FPF k @#hY!`\bhPࢉ i" H#hBB;#` h@bh!c c"F3`q`B_"```   FM(F =  Q/#  : P     
?o/o C02   P @  ! P @  !!P!@ #!!P@ !!  P#2! /   //o b0/  P  i   Q
@-@ A/  Q0  
  aB Q  
 0 0`B S      
/oo  B     S0C  ! S0C  !!S!1C "!S1C !  S""!  \  `B/  <  `B/  3 //o b  \3  `B/  P*   Q
@-@ A/ 0R b0A1QA1/ 0R b0AQQAQ/ 0R bAQ0A/!   1#0@-@P 4 0 y  
JZt Pe  @  0!  "#  0!6 U0Ơ!  
  p 6#6  
  r 0 4W  
@D u  Π2 S   PE  RΠ#SQ  Z |   Q  :Q  :` l@*rU  *\  0  @D  1   ?o 00C  S      b1    b0@T0@@T
  @  @  d010@d  d0010  46#!@PE  
 4 0  
  0 1   0ʰ   #0E208Q  0 0  FV 10  0 /0@-K2@ P   0 /0@-K2@Q  `B  a43!/  23/0@-MQ /0@- P   /0@-Q  Z  p K2@!˰\
   ! 0bà01@O  S  R    Q  P      M `-B  Ѝ /  S  R    Q  P     M `-B  Ѝ /@- 8@-   0 P@   P   8@      p 0 8p@-  L0 @P|   `  00v   0       p  =  A@-` @Pp 7' 0 T0 @-` @Pp &q'0 T0  011 /O-  Q `  
A p	@O@Q  T   
00 V0  * T  
D @  V  pP   P    V: <0 P0  
 P  
  P            /  /d3  0@-  @   H   
s    m  0    p  0   o  0 #@ 07@-0  @PA   R  
    0  P0
  
     0`10  PP  P	   0 SH  0 0  
  S L 0  r 0L L P0 0  S  S  P 	     c   >2  0  S 0 /	 //G- @p MM `        H  W
p	p PPp@0
  H0	-00 /3/2 L0 @ 08/  P    U   	-po Y
 Y   H  	P Ѝۍp@- P@ @c `P   
@0  003/ P
 P @  D /<0@-@0 P@M 	m        0@2& @8  P
  0
 3/ P p

  W   	 ߍ < @   jp@- P`@0  V@0  
 `  0  3/ P  
 P     @Q ]  O   R   < @   D/@- 0  S 3/  Q  
 Q  / R  S!  00     /@-  0 00 Ѝ   Q  
 Q  / R  S!   00   /@-0  #  00Ѝ O-`LP$M S@p   P  $0 0	   Z  "80( s0  Q WP8P      ZH 0P0P     0  0  R      P  # 300 S  
  : S  L    W      P  
 8 P     P  
  5  P    W    P2  
  q  
 qX  	  
 /0     P!  
    
e X 0$   , =  ;   
 Y  X  (0 U      i   e q  PQ     W$    PB  
0  X0  S  <  00W  0      P  
-  X00 \ 
#0  $0(P F   0 
 0 0  S  (0 U   0(000,40 0	 S	        	 0  SPQ        X; Z      Y   
      P      0  	 $Ѝl- 00 0<0p@-@0 P`M \        0X0
   P  
	@  X 
 X 5/  P 
X 03/	 P P @X c ߍpE- @gMP Q                 S  r8  0`` S
8   
    R   S%huP   R  S q V 
     X   RB pp S  X   V       
 S H              W  
 0   
 00    Z  
    W     V      W  
   Pf8   U0  P1    cQ*1  W  
 V ! 3f∀  @    R0  Z0  Z80  
K  B   V  J    W<  
 J  9   S5  "hrP0 S0   0   
01Q   PN   a80    f  0S*Q 8P.     R  S   0   
002K  
 I  8  0 0 S8 
 8          gߍ48 8 - !/!/ / / / /!1AQaq/!1AQaq/// -- 0 -@HЍ/ -- 0 -;@HЍ/ -- 0 -P@HЍ/ -- 0 -0"@HЍ/ -- 0 - @HЍ/  0  R	  	   R
  
 B	        B   "$  / /@- 0  00. Ѝ G- P` p  P @    W  @0 @   @  0+  q  Q   @@0  
 y0t@  Ti	 !  0  S   D  	P  	    *  0 "(]  P	p S  
0 
 S
    0   
 0 S
  @     Z"t@.  T) 
   S<   P   r  P
 0o   P   
 0  @ `    @Z0  ?    P   L0   0   0  S@ @   ' ' S2   P   30   0 & P   (  P
0~ %  0  S  @   
( P        0   Pg 0   0 &  0  S[@   '0  PR  Ѝ@-L0  $     0
0Ѝ @-H @-L0  @-c@-ap@-̌!J#Z 4 5o  @`!:VV6  
 P! `S  <@DVL  *P`
T\  ^  pa !@TPtp @TX  6 t  p @d @T  @  @ Pd50!1p@d Pd40 p Pd04511p  4  a @D
  5/a 0PE
0/ 4#Z 5  
``!  p` `  
 4  f   5  f   !  p>pp@-̌!J#Z 4 5\  @D!VK  
6R#2"<$!R \ d U V@L  *0b `VP0b ǠV`F P! !0b V`F P! !0b V`F P!,!0b V`F P!!
  
R&^b1>!,°        T\JUV   p!@Ptp @T:8#Z 4 5
 4  F 5  5  Vm
 ``M@xPc{      -  
Ѝ 1 0  /  p 1 QQ P!1 /  Ɛ  ƒ
 /   0@-  P  pC-   - 3  #-   -   - 3  # 
  *&
  *  Z>>*S  J51:3/  /    /  /O- Q p P    p  P p  \    r 0P  \
@`   Z0  ?o  SC  c7"c$xt X *)8
8  S `!  *0`@  * S`@200by
 C
   Y !  *@@  * T@2Ȍ    Z    @?o  Sd `2  
C c87$ 
tp `
(88  S !  *0@  * S@200`b
x  0
 0 0  Q `!  *`@  * Q`@20gh$ t
 p
)88  S p!  *0p@  * Sp@200b
y  0
 0 0  Y !  *@@  * T@2Ȍa   \]  o  Y   X
 W `3`##	`!U  *S   i:A8!I7 $ t`  0 0 0(  Q 0!  *0@  * Q0@20bx    f  0  Q !  *@  * Q@20`fȌ,*(


    (" 8 ( R   ``	S ``  V  
L `   `  U 0  
  r 0 ЍO-  S `@ p   R0  ?o  SC  c0"s$Xt`
 G
 '88  S !  *0@  * S@200bwp
 2
 	x  W 0!  *@0@  * T0@2    R    @?o  S`d P0  
C c6s8$c	 t	 P&88  S !  *0@  * S@200Pbv`   

 Q P!  *P@  *
 QP@20`j	X$ t '8	8  S `!  *0`@  * S`@200bwp	 	 x 

 W 0!  *@0@  *
 T0@2^   SZ  o  W   Q P P3P# #P!R  *P   gW2A6G0g $t
  
 t &ȠȌ  \ !  *@  * \@20c
v`   
 [  		 Q 0!  *0@  *	 Q0@20i %(X("8,(	 R   PPS PP  U  
 @ P   P ЍxGFxGFxGFxGFFxGF) xGF!1 xGFyxGFxGFUxGF3 xGF         Android    q rrr#  rs#  st$t8tt0u`x#  #  xX(l#  0<`#  `| <#  <L	 H #  X"  "  "  "  £"  ģƣڣ"  ڣڣ"  ܣ "  "  ("  8p"  xԤ  .x"  تJ"  T$0TȭЭ
	8r֯.Hh~&!  2!   \زɀ`H|Դ$,޵flʶ00Pfz@Ը4< @\
 *T޿   d8ht   p
|,|0   4D
T     0h  h` )l*>t.8j\x8*@tNvlhPd(F  B          D:Z x.h     BdɀL2$@>T  TLh(   ,J$4f
Pb"	F			
RBd~

BdF4TPtB  $D !!"L"z""#$4%v%%%&&H'R'd  R'T'l't'''''''   )<-P-T...D2224 4H4  `4444  4 55  556$\77778@88h  B9`99:;4;v;<  |;;;;<`<<<F=p==4>  8>H>~>@ABAtAAACCEF*GGG"HI JJ(K|KKKLL$  V(  V8W$  WWlXXX2YYY  LZZZ4[  D[\
^^_``@aa  bXbbc|cc|  chdxddef8fxffiij0jj
kkLmmmLnn`os8txz   {  ${`{{~  p  
  D  \ЄZZlȆ XP`   P   ԏ@  2JޓBx\82  p	    0
ܯ42Hh  ܽtPPܿH  dh4@z<,(( ",2l,@  `h
?l  
 $
hdr@*p


,  0'6:=" FdFXGI&JVJKtM2MOP*R SS<  p^^. j	j.lDllll@mmn\nnn$ojoppqrPs6 xxyz{ ||}"}&
l)zX6ԇDl	" 6	4?Ħz
$xܯ0  `д T
0pĿ  ,  <d T`.<  ,
Hh|( ?((H**8---01x66 9,(H KtKKO
  PQTY,cg$n
`o<prpsl
  <T4X
  \
  ll0t
  
  
 
  `
  l
  PPhL\ \p`|
08p   hHl  t x|  h  l  pp   <<X
D  H  dL   P   L  8P  PlL  @  D  H  0DD  P,8(  P  t   0LLL!`!
  83l33(45606
  866
  677|88990;h;;h<==>??P@8A(
  xK,
  UVVW6W
  <W|W
  W
  WWW
  W	0X 
  LXxX|XXXXX	  XYDYrYZ[[\(\\\	  \]]]]:^p^ _l_ `,cdee`f	  lf 	  xf$	  f(	  fLgTgghHjDj<k8kll,lll_m(nPnnn  n(qtuu  uuXvw{|ԍ,l$L<  Ĕ,(dl??hؗD|``؜D\\(  |  L8x  Ъ|t  `pԭ`  ,Lx4   Է4  ܷ |HPh     8tо%     0, d  h  l  p                  @                                                                                               ߄                                                                                                                 (                                       =                                 .    ?4        .                 ?                                                                  
    ֲQ                                                                                                                                                                                       _                                    ?&_                        /data/data/com.thirdparty.superuser                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             /data/data/com.thirdparty.superuser/databases/su.sqlite                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         /system/build.prop ro.build.version.sdk 0 /system/bin/sh /data/data/com.thirdparty.superuser/files/multiuser_mode r user managed shell system radio su /dev/log/main unlink (%s) failed with %d: %s /system/bin/dumpstate request rejected (%u->%u %s) %s
 seteuid (root) failed with %d: %s setresgid (%u) failed with %d: %s setresuid (%u) failed with %d: %s     ... -c HOME SHELL USER LOGNAME %u %s executing %u %s using binary %s : %s%s%s%s%s%s%s%s%s%s%s%s%s%s exec failed with %d: %s Cannot execute %s: %s
 --daemon fork failed with %d: %s LD_LIBRARY_PATH /vendor/lib:/system/lib su invoked. Usage: su [options] [--] [-] [LOGIN] [--] [args...]

Options:
  --daemon                      start the su daemon agent
  -c, --command COMMAND         pass COMMAND to the invoked shell
  -h, --help                    display this help message and exit
  -, -l, --login                pretend the shell to be a login shell
  -m, -p,
  --preserve-environment        do not change environment variables
  -s, --shell SHELL             use SHELL instead of the default /system/bin/sh
  -u                            display the multiuser mode and exit
  -v, --version                 display version number and exit
  -V                            display version code and exit,
                                this is used almost exclusively by Superuser.apk
 %d
 16 com.thirdparty.superuser owner none +c:hlmps:Vvu starting daemon client %d %d - -- Unknown id: %s
 /proc/%u/cmdline Opening command line failed with %d: %s Reading command line failed with %d: %s /proc/%u/exe Getting exe path failed with %d: %s /system/bin/app_process %s/%d/%s /data/user/ com.thirdparty.superuser/databases/su.sqlite com.thirdparty.superuser Allowing root/system/radio. stat %s failed with %d: %s Bad uid/gid %d/%d for Superuser Requestor application Allowing shell. /dev/com.thirdparty.superuser chown (%s, %ld, %ld) failed with %d: %s setgroups failed with %d: %s setegid (%lu) failed with %d: %s seteuid (%lu) failed with %d: %s db allowed db denied socket failed with %d: %s fcntl FD_CLOEXEC failed with %d: %s %s/.socket%d %s bind failed with %d: %s listen failed with %d: %s select failed with %d: %s accept failed with %d: %s %d write("version") failed with %d: %s version write(buf) failed with %d: %s write("binary.version") failed with %d: %s binary.version write("pid") failed with %d: %s pid write("from.name") failed with %d: %s from.name write(ctx->from.name) failed with %d: %s write("to.name") failed with %d: %s to.name write(ctx->to.name) failed with %d: %s write("from.uid") failed with %d: %s from.uid write("to.uid") failed with %d: %s to.uid write("from.bin") failed with %d: %s from.bin write(ctx->from.bin) failed with %d: %s write("command") failed with %d: %s command write(get_command(&ctx->to)) failed with %d: %s write("eof") failed with %d: %s eof read(result) failed with %d: %s socket: SECURITY RISK: Requestor still receives credentials in intent DENY ALLOW unknown response from Superuser Requestor: %s GCONV_PATH GETCONF_DIR HOSTALIASES LD_AUDIT LD_DEBUG LD_DEBUG_OUTPUT LD_DYNAMIC_WEAK LD_ORIGIN_PATH LD_PRELOAD LD_PROFILE LD_SHOW_AUXV LD_USE_LOAD_BIAS LOCALDOMAIN LOCPATH MALLOC_TRACE MALLOC_CHECK_ NIS_PATH NLSPATH RESOLV_HOST_CONF RES_OPTIONS TMPDIR TZDIR LD_AOUT_LIBRARY_PATH LD_AOUT_PRELOAD IFS help login preserve-environment unable to send fd failed with %d: %s unable to read int: %d unable to read fd unable to write int failed with %d: %s unable to write string failed with %d: %s Error removing signal handler failed with %d: %s invalid string length %d unable to malloc string unable to read string daemon requires root. uid/gid not root failed with %d: %s %s/server /dev/com.thirdparty.superuser.daemon daemon bind failed with %d: %s daemon listen failed with %d: %s remote pid: %d remote pts_slave: %s could obtain credentials from unix domain socket unable to allocate args: %d unable to fork failed with %d: %s waiting for child exit sending code unable to write exit code failed with %d: %s child exited setsid failed with %d: %s open(pts_slave) daemon failed with %d: %s daemon: stdin using PTY daemon: stdout using PTY daemon: stderr using PTY dup2 child outfd failed with %d: %s dup2 child errfd failed with %d: %s dup2 child infd failed with %d: %s daemon exiting connect failed with %d: %s MOUNT_EMULATED_STORAGE pts_open failed with %d: %s Error installing signal handler failed with %d: %s client exited %d /dev/zero /dev/null CLASSPATH /system/framework/am.jar exec am failed with %d: %s allow deny --user /system/bin com.android.commands.am.Am broadcast -n com.thirdparty.superuser/com.koushikdutta.superuser.SuReceiver --ei binary_version --es from_name desired_name uid desired_uid action start com.thirdparty.superuser/com.koushikdutta.superuser.NotifyActivity caller_uid com.thirdparty.superuser/com.koushikdutta.superuser.RequestActivity socket policy interactive until select policy, until, command from uid_policy where uid=%d sqlite3 open failure: %d sqlite3_exec: %s /dev/ptmx 922337203685477580 SET NULL SET DEFAULT CASCADE RESTRICT NO ACTION UNION ALL INTERSECT EXCEPT UNION INTEGER rowid unknown error abort due to ROLLBACK _ROWID_ ROWID OID unordered SQLITE_ create trigger temp temporary end explain 2012-03-20 11:35:50 00bb9c9ce4f465e6ac321ced2a9d0062dc364669 string or blob too big integer text real blob null integer overflow local time unavailable sqlite_temp_master sqlite_master -Inf +Inf Inf (NULL) NULL NaN % .  AND  ? 
 invalid page number %d 2nd reference to page %d %s:%d vtable constructor failed: %s vtable constructor did not declare schema: %s hidden  hidden USING TEMP B-TREE  COMPOUND SUBQUERIES %d AND %d %s(%s) USE TEMP B-TREE FOR %s %s.%s name=%Q %s OR name=%Q type='trigger' AND (%s) tbl_name=%Q parser stack overflow not authorized authorizer malfunction corrupt database unknown database %T sqlite_ object name reserved for internal use: %s Expression tree is too large (maximum depth %d) no such index: %s default value of column [%s] is not constant foreign key on %s should reference only one column of table %T number of columns in foreign key does not match the number of columns in the referenced table unknown column "%s" in foreign key definition %s %T cannot reference objects in database %s ON USING a JOIN clause is required before %s unknown or unsupported join type: %T %T%s%T RIGHT and FULL OUTER JOINs are not currently supported table %s may not be modified cannot modify %s because it is a view BINARY foreign key mismatch too many columns in %s invalid name: "%s" table %s may not be altered too many terms in %s BY clause %r %s BY term out of range - should be between 1 and %d a GROUP BY clause is required before HAVING ORDER GROUP aggregate functions are not allowed in the GROUP BY clause too many terms in ORDER BY clause %r ORDER BY term does not match any column in the result set access to %s.%s.%s is prohibited access to %s.%s is prohibited no such column ambiguous column name new old misuse of aliased aggregate %s %s: %s.%s.%s %s: %s.%s %s: %s not authorized to use function: %s misuse of aggregate function %.*s() wrong number of arguments to function %.*s() subqueries prohibited in CHECK constraints parameters prohibited in CHECK constraints no such function: %.*s foreign key constraint failed SEARCH SCAN AUTOMATIC  COVERING  %s SUBQUERY %d %s TABLE %s %s AS %s  ( = > < ) %s USING %s%sINDEX%s%s%s %s USING INTEGER PRIMARY KEY %s (rowid=?) %s (rowid>? AND rowid<?) %s (rowid>?) %s (rowid<?) %s VIRTUAL TABLE INDEX %d:%s %s (~%lld rows) misuse at line %d of [%.10s] unable to delete/modify collation sequence due to active statements unable to delete/modify user-function due to active statements cannot open file at line %d of [%.10s] cannot limit WAL size: %s database corruption at line %d of [%.10s] malformed database schema (%s) %s - %s failed memory resize %u to %u bytes failed to allocate %u bytes of memory os_unix.c:%d: (%d) %s(%s) - %s close /dev/urandom fstat full_fsync ftruncate unlink fsync API call with %s database connection pointer invalid unopened API called with NULL prepared statement API called with finalized prepared statement bind on a busy prepared statement: [%s] %lld %!.15g no such collation sequence: %s no such module: %s view %s is circularly defined DISTINCT aggregates must have exactly one argument out of memory table %s: xBestIndex returned an invalid plan aaa now localtime unixepoch utc weekday  start of  month year day hour minute second %s%.*s"%w" %s%s %.*s"%w"%s LIKE or GLOB pattern too complex ESCAPE expression must be a single character , indexed columns are not unique %02d %06.3f %03d %.16g %04d %04d-%02d-%02d %02d:%02d:%02d %02d:%02d:%02d %04d-%02d-%02d open getcwd /%s Recovered %d frames from WAL file %s unable to use function %s in the requested context %.*f sqlite3_get_table() called with two or more incompatible queries access cache file: localhost invalid uri authority: %.*s vfs mode no such %s mode: %s %s mode not allowed: %s no such vfs: %s :memory: unable to open a temporary database file for storing temporary tables at most %d tables in a join cannot use index: %s auto-index DISTINCT GROUP BY USING COVERING INDEX  only a single result allowed for a SELECT that is part of an expression too many terms in compound SELECT SCAN TABLE %s %s%s(~%d rows) min max ORDER BY CORRELATED  LIST SCALAR EXECUTE %s%s SUBQUERY %d misuse of aggregate: %s() unknown function: %.*s() RAISE() may only be used within a trigger-program NOCASE match ORDER BY clause should come after %s not before LIMIT clause should come after %s not before all VALUES must have the same number of terms SELECTs to the left and right of %s do not have the same number of result columns unknown database %s source and destination must be distinct Failed to read ptrmap key=%d Bad ptr map entry key=%d expected=(%d,%d) got=(%d,%d) %d of %d pages missing from overflow list starting at %d failed to get page %d freelist leaf count too big on page %d Page %d:  unable to get the page. error code=%d btreeInitPage() returns error code %d On tree page %d cell %d:  Rowid %lld out of order (previous was %lld) Child page depth differs On page %d at right child:  Rowid %lld out of order (max larger than parent min of %lld) Rowid %lld out of order (min less than parent min of %lld) Rowid %lld out of order (max larger than parent max of %lld) Rowid %lld out of order (min less than parent max of %lld) Corruption detected in cell %d on page %d Multiple uses for byte %d of page %d Fragmentation of %d bytes reported as %d on page %d temporary storage cannot be changed from within a transaction cannot detach database %s cannot DETACH database within transaction database %s is locked no such database: %s @   %s-mjXXXXXX9XXz MJ delete: %s MJ collide: %s -mj%06X9%02X unable to close due to unfinalised statements unable to close due to unfinished backup operation unknown database: %s RTRIM main MATCH automatic extension loading failed: %s normal exclusive -%T result default_cache_size cache_size page_size secure_delete page_count max_page_count locking_mode journal_mode journal_size_limit auto_vacuum full incremental incremental_vacuum temp_store file memory temp_store_directory not a writable directory synchronous Safety level may not be changed inside a transaction cid name type notnull dflt_value pk index_info seqno index_list seq unique database_list collation_list foreign_key_list id table from to on_update on_delete NONE case_sensitive_like like glob integrity_check quick_check *** in database %s ***
 rowid   missing from index  wrong # of entries in index  ok encoding unsupported encoding: %s schema_version user_version freelist_count compile_options compile_option wal_checkpoint restart busy log checkpointed wal_autocheckpoint shrink_memory table_info BEFORE AFTER BEGIN COMMIT ROLLBACK too many columns on %s duplicate column name: %s parameters are not allowed in views view set list near "%T": syntax error variable number must be between ?1 and ?%d too many SQL variables too many arguments on function %T index no such index: %S index associated with UNIQUE or PRIMARY KEY constraint cannot be dropped DELETE FROM %Q.%s WHERE name=%Q AND type='index' idx INSERT INTO %Q.%s VALUES('trigger',%Q,%Q,0,'CREATE TRIGGER %q') type='trigger' AND name='%q' temporary trigger may not have qualified name cannot create triggers on virtual tables trigger %T already exists cannot create trigger on system table cannot create %s trigger on view: %S cannot create INSTEAD OF trigger on table: %S qualified table names are not allowed on INSERT, UPDATE, and DELETE statements within triggers the INDEXED BY clause is not allowed on UPDATE or DELETE statements within triggers the NOT INDEXED clause is not allowed on UPDATE or DELETE statements within triggers no such trigger: %S unable to identify the object to be reindexed there is already another table or index with this name: %s view %s may not be altered UPDATE "%w".%s SET sql = sqlite_rename_parent(sql, %Q, %Q) WHERE %s; UPDATE %Q.%s SET sql = CASE WHEN type = 'trigger' THEN sqlite_rename_trigger(sql, %Q)ELSE sqlite_rename_table(sql, %Q) END, tbl_name = %Q, name = CASE WHEN type='table' THEN %Q WHEN name LIKE 'sqlite_autoindex%%' AND type='index' THEN 'sqlite_autoindex_' || %Q || substr(name,%d+18) ELSE name END WHERE tbl_name=%Q COLLATE nocase AND (type='table' OR type='index' OR type='trigger'); sqlite_sequence UPDATE "%w".sqlite_sequence set name = %Q WHERE name = %Q UPDATE sqlite_temp_master SET sql = sqlite_rename_trigger(sql, %Q), tbl_name = %Q WHERE %s; Cannot add a PRIMARY KEY column Cannot add a UNIQUE column Cannot add a REFERENCES column with non-NULL default value Cannot add a NOT NULL column with default value NULL Cannot add a column with non-constant default UPDATE "%w".%s SET sql = substr(sql,1,%d) || ', ' || %Q || substr(sql,%d) WHERE type = 'table' AND name = %Q virtual tables may not be altered Cannot add a column to a view sqlite_altertab_%s interrupt unrecognized token: "%T" TABLE VIEW 
) ,
   
   CREATE TABLE  UPDATE %Q.%s SET type='%s', name=%Q, tbl_name=%Q, rootpage=#%d, sql=%Q WHERE rowid=#%d CREATE TABLE %Q.sqlite_sequence(name,seq) tbl_name='%q' CREATE %s %.*s sqlite_stat%d DELETE FROM %Q.%s WHERE %s=%Q UPDATE %Q.%s SET rootpage=%d WHERE #%d AND rootpage=#%d sqlite_stat1 CREATE TABLE %Q.%s(%s) tbl,idx,stat tbl CREATE VIRTUAL TABLE %T UPDATE %Q.%s SET type='table', name=%Q, tbl_name=%Q, rootpage=0, sql=%Q WHERE rowid=#%d name='%q' AND type='table' database schema is locked: %s statement too long invalid rootpage (blob) interrupted keyinfo(%d ,... ,nil collseq(%.20s) %s(%d) vtab:%p:%p intarray program %.2x SELECT tbl,idx,stat FROM %Q.sqlite_stat1 1 attached databases must use the same text encoding as main database unsupported file format SELECT name, rootpage, sql FROM '%q'.%s ORDER BY rowid temporary table name must be unqualified table %T already exists there is already an index named %s no such view no such table sqlite_subquery_%p_ a NATURAL join may not have an ON or USING clause cannot have both ON and USING clauses in the same join cannot join using column %s - column not present in both tables no such table: %s no tables specified too many columns in result set PRIMARY KEY must be unique table %S has %d columns but %d values were supplied %d values for %d columns table %S has no column named %s rows inserted -- TRIGGER %s oid rows deleted column  columns   are not unique  is not unique %s.%s may not be NULL ,  no such column: %s _rowid_ rows updated sqlite_stat table %s may not be dropped use DROP TABLE to delete table %s use DROP VIEW to delete view %s DELETE FROM %Q.sqlite_sequence WHERE name=%Q DELETE FROM %Q.%s WHERE tbl_name=%Q and type!='trigger'  UNIQUE altertab_ table %s may not be indexed views may not be indexed virtual tables may not be indexed there is already a table named %s index %s already exists sqlite_autoindex_%s_%d table %s has no column named %s conflicting ON CONFLICT clauses specified CREATE%s INDEX %.*s INSERT INTO %Q.%s VALUES('index',%Q,%Q,#%d,%Q); name='%q' AND type='index' table "%s" has more than one primary key AUTOINCREMENT is only allowed on an INTEGER PRIMARY KEY too many attached databases - max %d cannot ATTACH database within transaction database %s is already in use database is already attached unable to open database: %s cannot open value of type %s no such rowid: %lld foreign key indexed cannot open virtual table: %s cannot open view: %s no such column: "%s" cannot open %s column for writing cannot commit - no transaction is active cannot start a transaction within a transaction cannot rollback - no transaction is active into out of ATTACH ':memory:' AS vacuum_db; ATTACH '' AS vacuum_db; abort at %d in [%s]: %s constraint failed at %d in [%s] cannot open savepoint - SQL statements in progress cannot release savepoint - SQL statements in progress cannot commit transaction - SQL statements in progress database schema has changed SELECT name, rootpage, sql FROM '%q'.%s WHERE %s ORDER BY rowid Main freelist:  List of tree roots:  Page %d is never used Pointer map page %d is referenced Outstanding page count goes from %d to %d during this analysis too many levels of trigger recursion cannot change %s wal mode from within a transaction cannot VACUUM from within a transaction cannot VACUUM - SQL statements in progress PRAGMA vacuum_db.synchronous=OFF BEGIN; SELECT 'CREATE TABLE vacuum_db.' || substr(sql,14)   FROM sqlite_master WHERE type='table' AND name!='sqlite_sequence'   AND rootpage>0 SELECT 'CREATE INDEX vacuum_db.' || substr(sql,14)  FROM sqlite_master WHERE sql LIKE 'CREATE INDEX %'  SELECT 'CREATE UNIQUE INDEX vacuum_db.' || substr(sql,21)   FROM sqlite_master WHERE sql LIKE 'CREATE UNIQUE INDEX %' SELECT 'INSERT INTO vacuum_db.' || quote(name) || ' SELECT * FROM main.' || quote(name) || ';'FROM main.sqlite_master WHERE type = 'table' AND name!='sqlite_sequence'   AND rootpage>0 SELECT 'DELETE FROM vacuum_db.' || quote(name) || ';' FROM vacuum_db.sqlite_master WHERE name='sqlite_sequence'  SELECT 'INSERT INTO vacuum_db.' || quote(name) || ' SELECT * FROM main.' || quote(name) || ';' FROM vacuum_db.sqlite_master WHERE name=='sqlite_sequence'; INSERT INTO vacuum_db.sqlite_master   SELECT type, name, tbl_name, rootpage, sql    FROM main.sqlite_master   WHERE type='view' OR type='trigger'      OR (type='table' AND rootpage=0) database table is locked: %s --  '%.*q' zeroblob(%d) x' %02x ' statement aborts at %d: [%s] %s no such savepoint: %s %s-shm readonly_shm mmap %s/etilqs_ stat psow unix-excl %s.lock OMIT_LOAD_EXTENSION TEMP_STORE=1 THREADSAFE=1 unix unix-none unix-dotfile fcntl read pread pread64 write pwrite pwrite64 fchmod fallocate openDirectory mkdir rmdir fchown umask /var/tmp /usr/tmp /tmp not an error SQL logic error or missing database access permission denied callback requested query abort database is locked database table is locked attempt to write a readonly database disk I/O error database disk image is malformed unknown operation database or disk is full unable to open database file locking protocol table contains no data constraint failed datatype mismatch library routine called out of sequence large file support is disabled authorization denied auxiliary database format error bind or column index out of range file is encrypted or is not a database addr opcode p1 p2 p3 p4 p5 comment selectid order detail RELEASE  TEXT  NUM  INT  REAL delete persist off truncate wal UTF8 UTF-8 UTF-16le UTF-16be UTF16le UTF16be UTF-16 UTF16 full_column_names short_column_names count_changes empty_result_callbacks legacy_file_format fullfsync checkpoint_fullfsync reverse_unordered_selects automatic_index ignore_check_constraints writable_schema read_uncommitted recursive_triggers foreign_keys sqlite_attach shared private ro rw rwc sqlite_detach Goto Gosub Return Yield HaltIfNull Halt Integer Int64 String Null Blob Variable Move Copy SCopy ResultRow CollSeq Function Not AddImm MustBeInt RealAffinity Permutation Compare Jump Once If IfNot Column Affinity MakeRecord Count Savepoint AutoCommit Transaction ReadCookie SetCookie VerifyCookie OpenRead OpenWrite OpenAutoindex OpenEphemeral SorterOpen OpenPseudo Close SeekLt SeekLe SeekGe SeekGt Seek NotFound Found IsUnique NotExists Sequence NewRowid Insert InsertInt Delete ResetCount SorterCompare SorterData RowKey RowData Rowid NullRow Last Or And SorterSort Sort Rewind IsNull NotNull Ne Eq Gt Le Lt Ge SorterNext BitAnd BitOr ShiftLeft ShiftRight Add Subtract Multiply Divide Remainder Concat Prev BitNot String8 Next SorterInsert IdxInsert IdxDelete IdxRowid IdxLT IdxGE Destroy Clear CreateIndex CreateTable ParseSchema LoadAnalysis DropTable DropIndex DropTrigger IntegrityCk RowSetAdd RowSetRead RowSetTest Program Param FkCounter FkIfZero MemMax IfPos IfNeg IfZero AggStep AggFinal Checkpoint JournalMode Vacuum IncrVacuum Expire Real TableLock VBegin VCreate VDestroy VOpen VFilter VColumn VNext VRename VUpdate ToText ToBlob ToNumeric ToInt ToReal Pagecount MaxPgcnt Trace Noop Explain ltrim rtrim trim typeof length substr abs round upper lower coalesce hex ifnull random randomblob nullif sqlite_version sqlite_source_id sqlite_log sqlite_compileoption_used sqlite_compileoption_get quote last_insert_rowid changes total_changes replace zeroblob sum total avg count group_concat julianday date time datetime strftime current_time current_timestamp current_date sqlite_rename_table sqlite_rename_trigger sqlite_rename_parent stack corruption detected <unknown> (null) bionic/libc/bionic/libc_logging.cpp conversion specifier unsupported sign/precision unsupported /dev/log/events libc FORTIFY_SOURCE: %s. Calling abort(). Unknown error %d Unknown Real-time %s signal %d Success Operation not permitted No such file or directory No such process Interrupted system call I/O error No such device or address Argument list too long Exec format error Bad file number No child processes Try again Out of memory Permission denied Bad address Block device required Device or resource busy File exists Cross-device link No such device Not a directory Is a directory Invalid argument File table overflow Too many open files Not a typewriter Text file busy File too large No space left on device Illegal seek Read-only file system Too many links Broken pipe Math argument out of domain of func Math result not representable Resource deadlock would occur File name too long No record locks available Function not implemented Directory not empty Too many symbolic links encountered No message of desired type Identifier removed Channel number out of range Level 2 not synchronized Level 3 halted Level 3 reset Link number out of range Protocol driver not attached No CSI structure available Level 2 halted Invalid exchange Invalid request descriptor Exchange full No anode Invalid request code Invalid slot Bad font file format Device not a stream No data available Timer expired Out of streams resources Machine is not on the network Package not installed Object is remote Link has been severed Advertise error Srmount error Communication error on send Protocol error Multihop attempted RFS specific error Not a data message Value too large for defined data type Name not unique on network File descriptor in bad state Remote address changed Can not access a needed shared library Accessing a corrupted shared library .lib section in a.out corrupted Attempting to link in too many shared libraries Cannot exec a shared library directly Illegal byte sequence Interrupted system call should be restarted Streams pipe error Too many users Socket operation on non-socket Destination address required Message too long Protocol wrong type for socket Protocol not available Protocol not supported Socket type not supported Operation not supported on transport endpoint Protocol family not supported Address family not supported by protocol Address already in use Cannot assign requested address Network is down Network is unreachable Network dropped connection because of reset Software caused connection abort Connection reset by peer No buffer space available Transport endpoint is already connected Transport endpoint is not connected Cannot send after transport endpoint shutdown Too many references: cannot splice Connection timed out Connection refused Host is down No route to host Operation already in progress Operation now in progress Stale NFS file handle Structure needs cleaning Not a XENIX named type file No XENIX semaphores available Is a named type file Remote I/O error Quota exceeded No medium found Wrong medium type Operation Canceled Required key not available Key has expired Key has been revoked Key was rejected by service Owner died State not recoverable Hangup Interrupt Quit Illegal instruction Trap Aborted Bus error Floating point exception Killed User signal 1 Segmentation fault User signal 2 Alarm clock Terminated Stack fault Child exited Continue Stopped (signal) Stopped Stopped (tty input) Stopped (tty output) Urgent I/O condition CPU time limit exceeded File size limit exceeded Virtual timer expired Profiling timer expired Window size changed I/O possible Power failure Bad system call %s(3) is not implemented on Android
 / u%u_i%u all_a%u u%u_%s u%u_a%u /data %s%c%s%c%s root bluetooth graphics input audio camera compass mount wifi adb install media dhcp sdcard_rw vpn keystore usb drm mdnsr gps media_rw mtp drmrpc nfc sdcard_r clat loop_radio mediadrm package_info sdcard_pics sdcard_av sdcard_all diag net_bt_admin net_bt inet net_raw net_admin net_bw_stats net_bw_acct net_bt_stack misc nobody -W  POSIXLY_CORRECT abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 :+-._ Local time zone must be set--see zic manual page short read %s: could not read header of "%s": %s
 tzdata %s: bad magic in "%s": "%.6s"
 %s: couldn't seek to index in "%s": %s
 %s: could not seek to %ld in "%s": %s
 ,M4.1.0,M10.5.0 posixrules /data/misc/zoneinfo/tzdata /system/usr/share/zoneinfo/tzdata %s: couldn't find any tzdata when looking for %s!
 TZ persist.sys.timezone strlen read overflow strncpy buffer overflow umask called with invalid mask vsprintf buffer overflow /usr/bin:/bin PATH execvp:  : path too long
 sh : 0123456789ABCDEF 0123456789abcdef inf inity nan Infinity %s:  :  /dev/pts/%u ANDROID_PROPERTY_WORKSPACE heap corruption detected by %s libc_malloc invalid address or address of corrupt block %p passed to %s max system bytes = %10lu
 system bytes     = %10lu
 in use bytes     = %10lu
 %s:%d: assertion "%s" failed %s:%d: %s: assertion "%s" failed /proc/meminfo /proc/stat cpu%u%c /sys/devices/system/cpu MemTotal: %ld kB MemFree: %ld kB read beyond buffer strrchr read beyond buffer /acct/uid/%d/tasks         
                -journal  -wal  1/.0  ʚ; ʚ;      a     
   P      *?[                                                                @                  





    @ ******""""""""""""""""""""     @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              6H>=   T8 8 8 8 1 6 6 6 6 5 5 4 4 4 3  nmrnm+MG8 8 8 8  6 6 6 6 5 5 4 4 4 3  _9 : 0 EDFF7 7 8 8 8 8 :6 6 6 6 5 5 4 4 4 3  6TF_  ! 6 6 6 6 5 5 4 4 4 3  kjFkj ]}zy MG* ;  xnm5 5 4 4 4 3  ;;9 : 0 EDFF7 7 8 8 8 8  6 6 6 6 5 5 4 4 4 3  6 2 /     )BBnm &(  MGkjl 57 0X\ 9 : 0 EDFF7 7 8 8 8 8 /6 6 6 6 5 5 4 4 4 3  6  . 2 /  kj5nm: MG   }zy
 X\ R;;x9 : 0 EDFF7 7 8 8 8 8 W6 6 6 6 5 5 4 4 4 3  6PPP  $  ^C kjl [ l@lA MG PX\ D l nm#nm0C 9 : 0 EDFF7 7 8 8 8 8 /6 6 6 6 5 5 4 4 4 3  6 .\W   }zy Q:nm( x& XJ $MG^Ckj)kjC ' lW>=9 : 0 EDFF7 7 8 8 8 8 A6 6 6 6 5 5 4 4 4 3  6 [ 4 4 4 3  Y4 kj  BB     MG:Y" Z$ YX[ Z9 : 0 EDFF7 7 8 8 8 8  6 6 6 6 5 5 4 4 4 3  6W BB	inuC "Wl`BBMG~X\ X > X\ ZBB - 9 : 0 EDFF7 7 8 8 8 8  6 6 6 6 5 5 4 4 4 3  6ihg>: B TRTD;;2 /  WusJ; MG    XI l_ T9 : 0 EDFF7 7 8 8 8 8 6 6 6 6 5 5 4 4 4 3  6
 TkThXE Gl2 /  f?)X^ MGXa (l W'3T6NX_   9 : 0 EDFF7 7 8 8 8 8 `6 6 6 6 5 5 4 4 4 3  6  dWgo2 /  $e2lL lXh Xg [MGS0  017 Xj l9 : 0 EDFF7 7 8 8 8 8 6 6 6 6 5 5 4 4 4 3  6-#    Xk     lmafX  X MG $< ll Xb  Xf v  9 : 0 EDFF7 7 8 8 8 8 6 6 6 6 5 5 4 4 4 3  6  t Xe ! l lX] ;Xd MGXM 1l BW@ X` 	9 : 0 EDFF7 7 8 8 8 8 6 6 6 6 5 5 4 4 4 3  6f#  2?X l laX  X MG\ lA XL XZ l9 . 0 EDFF7 7 8 8 8 8 6 6 6 6 5 5 4 4 4 3  6 cbaXY | l   lllLKXK MGl3   lWsJ wXX IH: 0 EDFF7 7 8 8 8 8 6 6 6 6 5 5 4 4 4 3  6JQ ,~ sXW  { ollllXc XV MGz   y     X XU 0 EDFF7 7 8 8 8 8  6 6 6 6 5 5 4 4 4 3  ,   mw v 
 ] llllt ,  llm o m  5 XT ll XS @ q M  | ) * 5  + RlI XH l
) *  lli + lpRflW } 9PPPON
  XG   ,  8eTm PPPON
 lXR "  mdK   lXQ 5XP XF X Vi & l%b ) * 5lll+ Rll= $nm ) * lXO U#+ < lR l % + PPPON
   l .-, *5XN lPPPON
   !     X	  l
lRll
l E     4 t3 PPP  pr    j  x u  s XW V r q 7p  =  n  `S'? { <9O/( Uc 8q %  
			

		
	%_                               3.7.11 PN  HC1.0/ c#  $       % 0123456789ABCDEF>Z G      z|;E  hH'#zjB@0- dQOx X XCSwM2oP. ) hS5c_ZL.|WGFqZ]nqytponhQUeUUUUUUU4:UUQwXOIH1N,Vmaj`T[8+)(_@Gkdb
^$C0965/SR&.*KJFEDBA?7#"! rp%WV\ed  H    _   L  ^  ^  [ H  ^   K^    K;   _   3   T   f7 =_ eeeeeeeeeeeeeeeeCC9  ifWK   :7l V eaBBBg   J`0 0 0 0 0 0 EqN  ff+ f w]YYYrrYcYYY=>=>=>'-- k hE} T j,TKU[OQ?,76>q
zgE`B;=MPNJ ^u3t&' #	mf r 6   SQLite format 3 CREATE TEMP TABLE sqlite_temp_master(
  type text,
  name text,
  tbl_name text,
  rootpage integer,
  sql text
) @)Q+e4"n-.10(t_mrh_8	
s<f`65lDd!|{k_GJ3b1$ j\B*xi27?}~A9EagH%&
'_BBcuFo,w_1#Iz:__;py=>/q ^  A ^  ^  [[[ x                              	#   $ x   Wx        naturaleftouterightfullinnercross    _\HerF -  N I  *J qQ2l   v to Y 	  BC A 0Vb sa  , c  w1 j\  yf8x53 W ` _   [X]Ti'h M Uk  uLm:.P  Z( p $   R;< 9 4 	

 	

       y  ^   #   $           zdddb e^_]af=N<HMTLI?>@ABCQPOqz"`((jnnjs{!
c104/w|wu|{zyxvtr#p'&)%$hg molk4:9-X	+*
ZW\[;8~}YURJFVSKGED6532.7,~}yxv HC%_  onoffalseyestruefull             
    	                               d
  s   g  z   q 
  Q   w   c  	  o  u
   x X  f   e  E  G  i
  n    %    p  T   S 
  r
  -x0 X0  	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~0123456789ABCDEF0123456789abcdef MNOPQRSTUVWXYZ[\12MNOPtRSTUVWXYZ[\DEFGHIJKLMNOPRSTUVWXYZ[\^VWRSTUVWXYZ[\^_^_`cde126nVWXYZ[\DEFGHIJKLMNOPRSTUVWXYZ[\\`abcdefp rsm\)abcdef12^_bmmDEFGHIJKLMNOPRSTUVWXYZ[\VW,.^_Ba9hj12`vcde^wb9nDEFGHIJKLMNOPRSTUVWXYZ[\<>זLܡ^_ijk"12t0xDEFGHIJKLMNOPRSTUVWXYZ[\_,.`cden9x12Xq^_^_©DEFGHIJKLMNOPRSTUVWXYZ[\ijkXYZ[\?tX^_prsijk12vabqvxuqduDEFGHIJKLMNOPRSTUVWXYZ[\prs<>ijk$¥٥prs123:prs2DEFGHIJKLMNOPRSTUVWXYZ[\	כal h~12mtvvDEFGHIJKLMNOPRSTUVWXYZ[\^^C箯Cեߖ 12)±^DEFGHIJKLMNOPRSTUVWXYZ[\12ۖDEFGHIJKLMNOPRSTUVWXYZ[\Cg_C#ϥՖ#124x#2DEFGHIJKLMNOPRSTUVWXYZ[\xإh12DEFGHIJKLMNOPRSTUVWXYZ[\ծv'124DEFGHIJKLMNOPRSTUVWXYZ[\͖4إ1212[\4mGHEFGHIJKLMNOPRSTUVWXYZ[\bfh+12;55hvLLFGHIJKLMNOP#RSTUVWXYZ[\l%w8wl%yB8AVWXB]^_bVW]^_b´t%
8t%B~8|ȖVWB]^_zb{ɖVW]^_}bᇝv

Bҥh!VW*^yҥbӥ7h9/=@g\䁂䝜-읝뜽Dڽǜijko(tڝ&Ѷı榱ǔĦЮ鿷\CREATE TABLE sqlite_master(
  type text,
  name text,
  tbl_name text,
  rootpage integer,
  sql text
)  (
 08thstndrd      	        ! $ ) . 0 5 6 ; > A C E N Q V [ _ ` e i m u z                                  "(-/6;@FLQUX^bikrtv	REINDEXEDESCAPEACHECKEYBEFOREIGNOREGEXPLAINSTEADDATABASELECTABLEFTHENDEFERRABLELSEXCEPTRANSACTIONATURALTERAISEXCLUSIVEXISTSAVEPOINTERSECTRIGGEREFERENCESCONSTRAINTOFFSETEMPORARYUNIQUERYATTACHAVINGROUPDATEBEGINNERELEASEBETWEENOTNULLIKECASCADELETECASECOLLATECREATECURRENT_DATEDETACHIMMEDIATEJOINSERTMATCHPLANALYZEPRAGMABORTVALUESVIRTUALIMITWHENWHERENAMEAFTEREPLACEANDEFAULTAUTOINCREMENTCASTCOLUMNCOMMITCONFLICTCROSSCURRENT_TIMESTAMPRIMARYDEFERREDISTINCTDROPFAILFROMFULLGLOBYIFISNULLORDERESTRICTOUTERIGHTROLLBACKROWUNIONUSINGVACUUMVIEWINITIALLY                   
                    !    +/     6 &   >  ? )       =    7"
       DK  d^ g S G  n%EO #@  #    %     $$   $                         LLLLLLLLLLLL$        E                 option requires an argument -- %c option `%s%s' requires an argument option `%s%.*s' is ambiguous unrecognized option `%s%s' illegal option -- %c invalid option -- %c option `%s%.*s' doesn't allow an argument                                                                          __bionic_open_tzdata_path __bionic_open_tzdata GMT  m  n                  0000000000000000          (((((                  AAAAAABBBBBB                                          ?      $@      Y@     @@     @     j@    .A    cA    חA    eA    _B   vH7B   mB  @0B  ļB  4&kC 7yAC ؅W4vC NgmC =`XC@xDPKDMD      }       ؗҜ<3#I9=D2[%Cod(
 7yACnF?O8M20HwZ<sOu          	 
   
                     ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ a b c d e f g h i j k l m n o p q r s t u v w x y z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                                                                                                                                   	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~  libc    pthread_create sched_setscheduler call failed: %s   pthread_create failed: couldn't allocate thread pthread_create failed: couldn't allocate %zd-byte stack: %s pthread_create failed: couldn't mprotect PROT_NONE %zd-byte stack guard region: %s  pthread_create failed: clone failed: %s dlfree tmalloc_small tmalloc_large dlmalloc try_realloc_chunk dispose_chunk add_segment prepend_alloc release_unused_segments 
         	 
   
           zR |
       7          ,   7    D   D   8    A     \   8$    F     t   8             8d    F        8    B8      9@   LBBZBBb        @    C       zR |
          6          4   6    B     T    A          h   A    B        |B       ;T   5l55647H7l7t778@P@ApB                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            f f (f 4f =f Ff Vf i\ ff uf f f f f f f f f f f f g 
g g (g 8g '  +                   U                    ]  =   e    q  A  1
 m  s  }   i o           % * / 8 = B H R Z c g n x          Ǩ ͨ ר       # 1 ? J U [ b i p w |         ȩ ө      	      % , 3 ; > A D G J M X _ e o z ~          Ϊ ت         ) 6 @ J V b l w          ū Ϋ ٫      
   % + 3 ; A I Q X _ i o v             % .  4        	    S# Y  #  # $ +# C [ I N S  ;         y                                                     1 ]  =   e   E  1
 m  s  }   i       Ŧ    ئ                     @ /    I    Y    r                xZ    ѓ            [                               Y ` h l  u [           =                  y    ~                                                         ڧ             ]  =   e  7  ;  1  1
 m  s  }   i  ͣ      
 ) < z U P z    դ    
o  , > e    ۥ           !  %                I    Q    i                    ϯ     	    
           % 
   3    E    Q    g                        ˰    ܰ                $    3    K    X    n     } !    "    #   ˱ $    %    &    '   / (   C *   g +    ,    -    .   ʲ /   ٲ 0    1     2    3   8 4   G 5   X 6   s 7    8    9    ;    <    =   ճ >    ?    @    A   , B   B C   S D   i E   y F    G    H    I   Ŵ J   ش K    L    M   , N   I O   ` P    Q    R   ̵ S    T   " U   8 V   d W   w X    Y    Z   ¶ [   Ӷ \    ]   	 ^     _   : `   h a    b    c   Ʒ d    e    f   
 g   9 h   Z i   s j    k    l   ٸ m    n   * o   ? p   R q   _ r   p s    t    u    v   ׹ w    x    y   & z   7 {   F |   V }   h ~   {                ׺             
     Z   Z         %   +   1   =   8   @   F   K   O   W   ]   b   l   p   y   }                                  Ž   ҽ 	  ޽ 
     Z   }                     #   0   <   I '  N '       A                     E  u  }                           \A D- h , > > > . , T E     L H H H I l C A d P ` . XA p t   . B   x     3                   e        c   <g         h   Ag         l   Gg         p   Z        s   c         v                   [    u    u    \| Y      dy )     
} x,     a| 9     ܢ +     wy +     y *     B      H )     M         S         [ )     a         h         q         x         y X+            +      8,      8+      \.                       í                           ͭ                  
         ҭ                           ׭                                               }                                                                               @                                                                                                                                                                                                                                                                                                )                            ?         Ч    ӧ    ֧                     U                           U                           U                           U                           U                           U                                   ~                               ~                      [ V ~                         ~                              ~                     [ V ~                   yR                                                                                                                R         ¬                   9	         Ƭ                   9	         Ƭ                   q         ̬                            Ҭ                               ج                                ج         @        eR         ج                                      @        eR                             Y                                                       ;                             eR                             QR                            a         %                   C         0                   !R         J                   A         c                    	D         i                    C         {                    C                                                        iQ                                9V U                        9V U                        9V U                         [U ;U                        [U ;U                        E )                        E )                         @          !              ;          !              ;            ,          & X e U m                          9      a     ,          + ( e U m                          9      a     ,          5  e U m                          9      a     ,           X e U m                          9      a      ȧ               ?         [ , ,     memcpy buffer overflow memset buffer overflow strcpy buffer overflow                                   D- I H H H T.                                                           - I H H H d.                                             
              - I H H H t.                                            y              @               @               @  H.    D- H.      /dev/__properties__                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @  > >  GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"su  e .shstrtab .text .note.android.ident .ARM.exidx .ARM.extab .rodata .eh_frame .eh_frame_hdr .data.rel.ro.local .preinit_array .init_array .fini_array .data.rel.ro .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                                                                     %     p       #               0         3  `                 ;         P: P                  C          y                  M          { |                  [           4                 n                             }                                                                                                    L L                                                           >  E                       0                                                               p        ܮ 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     	 ELF          (      4   P	    4    (      4   4   4                  4  4  4                             , ,          l l l `  `5
          	 	 	           Qtd                             p{ { {             Rtdl l l T  T        /system/bin/linker                                
                            1              8              ?              H              Y              k              r              y                                                                                                                                                                                                                                                                                    %             -             :             I             O             V             \             d             q             ~                                                                                                                                                                                                   4             ?             a             n             t             ~                                          D                                                                                                                                                                                            )             1             8         C             K             R             ]             b             i             p             w             ~                                                                                                                                                                                         Z                                                                                                             $             +             8             E             S             _             l             z                            ; 2                                                                                                                                                                                                          ̐	      	  ̐	                __libc_init __cxa_atexit __aeabi_unwind_cpp_pr0 calloc strdup snprintf __stack_chk_fail __stack_chk_guard memcmp memcpy malloc __aeabi_unwind_cpp_pr1 fopen fclose getservent strcmp endservent gethostbyaddr strchr inet_ntop gmtime localtime time memset _ctype_ printf putchar fwrite __sF putc __swbuf __isthreaded __snprintf_chk fgets sscanf fputs strncmp __memcpy_chk __strlen_chk getprotobynumber fflush strsep strcasecmp strtoul inet_pton strlen strstr EVP_get_cipherbyname EVP_CIPHER_iv_length __strchr_chk perror exit EVP_CipherInit EVP_CIPHER_CTX_block_size EVP_Cipher OPENSSL_add_all_algorithms_noconf OBJ_NAME_add fputc inet_ntoa strncpy __aeabi_uidiv __aeabi_idivmod strlcpy strftime free ctime __strncpy_chk MD5_Init MD5_Update MD5_Final memchr _tolower_tab_ strtol sigaction fprintf alarm vfprintf sprintf strcpy initgroups strrchr getopt setlinebuf atoi getuid getgid setgid setuid getpwnam geteuid opterr optarg optind __errno __aeabi_idiv open fstat read close puts asctime mktime strlcat getc __srget socket ioctl ferror vsnprintf longjmp abort setjmp __memset_chk freeaddrinfo gethostbyname getaddrinfo getnetbyname getservbyname getprotobyname rewind ffs strerror fcntl setsockopt recv send recvfrom getsockopt bind uname fread fileno ftell realloc isatty clearerr _edata __bss_start _end libssl.so libcrypto.so libc.so libstdc++.so libm.so         [   @          <           O   |   Q       !       \      R           v      F       N   a      x   9       .   ]   S   >               W             ~                 g       0                   ^                     {   b                      z   ?   V       :   &   P            o             u       d      _                 y       i          r   p   e       
          /           +       c       s   m   }       8          U       3   =           l   w   j   t   f   1      T   k      D   ;                                                                                                               	                                                                    
                                       (   4   2                               #   %           5             ,                  I                      '   M          B   *       K           X                  H           7   6           "   Z   h                  `          n   A   q                      L       -   E   J   G   Y   )              C       $       p    x                                                                                          (    0    8    @    H    P    X    `    h    p    x                                                                                          (    0    8    @    H    P    X    `    h    p    x                                                                                          (    0    8    @    H    P    X    `    h    p    x                                                                                          (    0    8    @    H    P    X    `    h    p    x                                                                                          (    0    8    @    H    P    X    `    h    p    x                                                                                          (    0    8    @    H    P    X    `    h    p    x                                                                                          $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                                                                          (    0    8    @    H    P    `    h    p    x                                                                     $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                                                                                                                                      (    0    8    @    H    P    `    h    x                                                                                  (    0    8    @    H    P    X    `    h    p    x                                                                                          0    @    p    x                                                                                                                                                              $    (    ,    0    4    8    <    @    D    H    L    T    X    \    `    d    h    l    p    t    x    |                                                                                                                                                                  $    (    ,                        0    <    @    D    H    L    P    T                                0    <    @    D    H    L                        0    <    @    D        0        0        0    <    @        0        0        4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                            ,    8    <        ,    8    <    @    D                ,    8    <    @    D        ,        ,                                                          (    0    8    @    H    P    X    `    h    x                                                                              (    0    @    H    P    `    h    p    x                                                                                (    0    @    H    P    X    `    h    p    x                                                                     (    0    8    H    P    `    h    p    x                                                                                      (    8    @    P    X    `    h    p    x                                                                              (    0    8    H    P    X    `    h    x                                                                          (    0    8    @    H    P    X    `    h    p    x                                                                                     (    0    8    @    H    P    X    `    h    p    x                                                                        (    0    8    @    H    P    X    `    h    p    x                                                                                                            (    0    8    @    L    P    T    X    \    `    d    h    l    p    t    x    |                                                                                                                        $    ,    4    <    L    X    \    `    d    h    l    p    t    x    |                                                                                            ,    <    D    L    T    \    d    l    t    |                                                                                    $    ,    4    <    D    L    T    \    d    l    t    |                                                                                    $    ,    4    D    L    T    \    d    l    t    |                                                                    $    ,    4    <    D    L    T    \    d    l    t    |                                                                                    $    ,    4    <    D    L    T    d    l    t    |                                                                         ,    8    D    P    \    h    t    |                                                                        $    ,    4    D    L    T    \    d    l    t    |                                                                                $    ,    4    <    D    P    T    X    \    `    h    l    p    t    x    |                                                                                                                                                                  $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                                                                                  (    0    8    @    H    P    X    `    h    p    x                                                                                          (    0    8    @    H    P    X    `    h    p    x                                                                                          (    0    8    @    H    P    X    `    h    p    x                                                                                          (    0    8    @    H    P    X    `    h    p    x                                                                      	     	     	     	      	    ( 	    0 	    8 	    @ 	    H 	    P 	    X 	    ` 	    h 	    p 	    x 	     	     	     	     	     	     	     	     	     	     	     	     	     	     	     	     	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     		    		    		    		     		    (		    0		    8		    @		    H		    P		    X		    `		    h		    p		    x		    		    		    		    		    		    		    		    		    		    		    		    		    		    		    		    		     
	    
	    
	    
	     
	    (
	    0
	    8
	    @
	    H
	    P
	    X
	    `
	    h
	    p
	    x
	    
	    
	    
	    
	    
	    
	    
	    
	    
	    
	    
	    
	    
	    
	    
	    
	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     
	    
	    
	    
	     
	    (
	    0
	    8
	    @
	    H
	    P
	    X
	    `
	    h
	    p
	    x
	    
	    
	    
	    
	    
	    
	    
	    
	    
	    
	    
	    
	    
	    
	    
	    
	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    d	    l	    p	    x	    |	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	    	     	    $	    ,	    0	    8	    <	    D	    H	    P	    T	    \	    `	    h	    l	    t	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	    	     	    $	    ,	    0	    8	    <	    D	    H	    P	    T	    \	    `	    h	    l	    t	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    (	    ,	    4	    8	    @	    D	    L	    P	    X	    \	    d	    h	    p	    t	    |	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	    	    	    $	    (	    0	    4	    <	    @	    H	    L	    T	    X	    `	    d	    l	    p	    x	    |	    	    	    	    	    	    	    	    	    	    	     	    P	    X	    `	    h	    p	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	    	    	    	     	    $	    (	    ,	    0	    4	    8	    <	    @	    D	    L	    X	    \	    `	    d	    h	    l	    p	    t	    x	    |	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	     	      	    , 	    8 	    D 	    P 	    d 	    l 	    t 	    | 	     	     	     	     	     	     	     	     	     	     	     	     	     	     	     	    !	    !	    !	    !	    $!	    ,!	    4!	    D!	    L!	    T!	    \!	    d!	    l!	    t!	    |!	    !	    !	    !	    !	    !	    !	    !	    !	    !	    !	    !	    !	    !	    !	    "	    "	    "	    "	    $"	    ,"	    4"	    <"	    D"	    L"	    T"	    \"	    d"	    l"	    t"	    |"	    "	    "	    "	    "	    "	    "	    "	    "	    "	    "	    "	    "	    "	    "	    "	    "	    #	    #	    #	    #	    $#	    ,#	    4#	    <#	    D#	    L#	    T#	    \#	    d#	    l#	    t#	    |#	    #	    #	    #	    #	    #	    #	    #	    #	    #	    #	    #	    #	    #	    #	    $	    $	    $	    $	    $$	    4$	    <$	    L$	    T$	    \$	    d$	    l$	    t$	    |$	    $	    $	    $	    $	    $	    $	    $	    $	    $	    $	    $	    $	    $	    $	    %	    %	    %	    %	    $%	    ,%	    4%	    <%	    D%	    L%	    T%	    \%	    d%	    l%	    t%	    |%	    %	    %	    %	    %	    %	    %	    %	    %	    %	    %	    %	    %	    %	    %	    %	    %	    &	    &	    &	    $&	    ,&	    4&	    <&	    D&	    L&	    T&	    \&	    l&	    t&	    |&	    &	    &	    &	    &	    &	    &	    &	    &	    &	    &	    &	    &	    &	    &	    &	    &	    '	    '	    '	    '	    $'	    ,'	    4'	    <'	    L'	    T'	    \'	    d'	    l'	    t'	    |'	    '	    '	    '	    '	    '	    '	    '	    '	    '	    '	    '	    '	    '	    '	    '	    (	    (	    (	    (	    $(	    ,(	    4(	    <(	    D(	    L(	    T(	    \(	    d(	    l(	    t(	    |(	    (	    (	    (	    (	    (	    (	    (	    (	    (	    (	    (	    (	     )	    )	    )	    )	    ,)	    4)	    <)	    D)	    L)	    T)	    d)	    l)	    t)	    |)	    )	    )	    )	    )	    )	    )	    )	    )	    )	    )	    )	    )	    )	    )	    )	    *	    *	    *	    ,*	    4*	    <*	    D*	    T*	    \*	    l*	    t*	    *	    *	    *	    *	    *	    *	    *	    *	    *	    *	    *	    *	    *	    *	    *	    +	    +	    +	    $+	    ,+	    4+	    <+	    D+	    L+	    \+	    d+	    l+	    |+	    +	    +	    +	    +	    +	    +	    +	    +	    +	    +	    +	    +	    +	    ,	    ,	    ,	    $,	    ,,	    4,	    D,	    L,	    T,	    \,	    d,	    l,	    |,	    ,	    ,	    ,	    ,	    ,	    ,	    ,	    ,	    ,	    ,	    ,	    ,	    ,	    ,	    ,	    ,	    -	    -	    -	    -	    $-	    ,-	    <-	    D-	    L-	    T-	    \-	    d-	    l-	    t-	    |-	    -	    -	    -	    -	    -	    -	    -	    -	    -	    -	    -	    -	    -	    -	    -	    .	    .	    .	    $.	    ,.	    4.	    <.	    D.	    L.	    T.	    \.	    l.	    t.	    |.	    .	    .	    .	    .	    .	    .	    .	    .	    .	    .	    .	     /	    /	    /	    /	     /	    (/	    0/	    8/	    @/	    H/	    P/	    X/	    `/	    h/	    p/	    x/	    /	    /	    /	    /	    /	    /	    /	    /	    /	    /	    /	    /	    /	    /	    /	    /	     0	    0	    0	    0	     0	    (0	    00	    80	    @0	    H0	    P0	    X0	    `0	    h0	    p0	    x0	    0	    0	    0	    0	    0	    0	    0	    0	    0	    0	    0	    0	    0	    0	    0	    0	     1	    1	    1	    1	     1	    (1	    01	    81	    @1	    H1	    P1	    X1	    `1	    h1	    p1	    x1	    1	    1	    1	    1	    1	    1	    1	    1	    1	    1	    1	    1	    1	    1	    1	    1	     2	    2	    2	    2	     2	    (2	    02	    82	    @2	    H2	    X2	    `2	    h2	    p2	    2	    2	    2	    2	    2	    2	    2	    2	    2	    2	    2	    2	    2	    2	     3	    3	    3	     3	    83	    @3	    H3	    P3	    X3	    `3	    h3	    x3	    3	    3	    3	    3	    3	    3	    3	    3	    3	    3	    3	    3	    3	    3	    3	    3	     4	    4	    4	    4	    04	    84	    @4	    H4	    P4	    X4	    `4	    h4	    p4	    x4	    4	    4	    4	    4	    4	    4	    4	    4	    4	    4	    4	    4	    4	    4	    4	     5	    5	    5	     5	    (5	    05	    85	    @5	    H5	    P5	    X5	    `5	    h5	    p5	    x5	    5	    5	    5	    5	    5	    5	    5	    5	    5	    5	    5	    5	    5	    5	    5	    5	     6	    6	    6	    6	     6	    (6	    06	    86	    @6	    H6	    P6	    X6	    `6	    h6	    p6	    x6	    6	    6	    6	    6	    6	    6	    6	    6	    6	    6	    6	    6	    6	    6	    6	    6	     7	    7	    7	    7	    7	    7	    7	    7	     7	    $7	    (7	    ,7	    07	    47	    87	    <7	    @7	    D7	    H7	    L7	    P7	    T7	    X7	    \7	    d7	    l7	    t7	    |7	    7	    7	    7	    7	    7	    7	    7	    7	    7	    7	    7	    7	    7	    8	    8	    8	    8	    $8	    ,8	    48	    <8	    D8	    L8	    T8	    \8	    d8	    l8	    |8	    8	    8	    8	    8	    8	    8	    8	    8	    8	    8	    8	    8	    8	    9	    9	    9	    9	    $9	    ,9	    49	    D9	    L9	    T9	    \9	    d9	    l9	    x9	    |9	    9	    9	    9	    9	    9	    9	    9	    9	    9	    9	    9	    9	    9	    9	    9	     :	    :	    :	    :	     :	    (:	    0:	    8:	    H:	    P:	    X:	    `:	    p:	    x:	    :	    :	    :	    :	    :	    :	    :	    :	    :	    :	    :	    :	    :	    :	    :	    :	     ;	    ;	    ;	    ;	     ;	    (;	    0;	    8;	    @;	    H;	    X;	    `;	    h;	    p;	    x;	    ;	    ;	    ;	    ;	    ;	    ;	    ;	    ;	    ;	    ;	    ;	    ;	    ;	     <	    <	    <	     <	    (<	    0<	    8<	    H<	    P<	    X<	    h<	    p<	    x<	    <	    <	    <	    <	    <	    <	    <	    <	    <	    <	    <	    <	    <	    <	    =	    =	    =	    (=	    0=	    @=	    H=	    P=	    `=	    h=	    x=	    =	    =	    =	    =	    =	    =	    =	    =	    =	    =	    =	    =	     >	    >	    >	    >	    (>	    0>	    8>	    H>	    P>	    X>	    h>	    p>	    x>	    >	    >	    >	    >	    >	    >	    >	    >	    >	    >	    >	    >	     ?	    ?	    ?	     ?	    (?	    0?	    8?	    H?	    P?	    X?	    `?	    h?	    p?	    x?	    ?	    ?	    ?	    ?	    ?	    ?	    ?	    ?	    ?	    ?	    ?	    ?	     @	    @	    @	    @	     @	    (@	    0@	    8@	    @@	    H@	    P@	    X@	    `@	    h@	    p@	    x@	    @	    @	    @	    @	    @	    @	    @	    @	    @	    @	    @	    @	    @	     A	    A	    A	    A	     A	    (A	    0A	    8A	    @A	    HA	    PA	    XA	    `A	    hA	    pA	    xA	    A	    A	    A	    A	    A	    A	    A	    A	    A	    A	    A	    A	    A	    A	    A	     B	    B	    B	    B	     B	    0B	    8B	    @B	    PB	    XB	    `B	    hB	    pB	    xB	    B	    B	    B	    B	    B	    B	    B	    B	    B	    B	    B	    B	    B	    B	     C	    C	    C	    C	    ,C	    8C	    DC	    PC	    \C	    hC	    tC	    C	    C	    C	    C	    C	    C	    C	    C	    C	    C	    C	     D	    D	    D	    0D	    8D	    @D	    HD	    PD	    XD	    `D	    hD	    pD	    xD	    D	    D	    D	    D	    D	    D	    D	    D	    D	    D	    D	    D	    D	    E	    E	    E	    $E	    ,E	    4E	    <E	    DE	    LE	    TE	    \E	    dE	    lE	    tE	    |E	    E	    E	    E	    E	    E	    E	    E	    E	    E	    E	    E	    E	    E	    E	    E	    E	    F	    F	    F	    F	    $F	    ,F	    4F	    <F	    DF	    LF	    TF	    \F	    dF	    tF	    |F	    F	    F	    F	    F	    F	    F	    F	    F	    F	    F	    F	    F	    F	    F	    F	    G	    G	    G	    $G	    ,G	    4G	    <G	    DG	    TG	    \G	    dG	    lG	    tG	    |G	    G	    G	    G	    G	    G	    G	    G	    G	    G	    G	    G	    G	    G	    G	    H	    H	    H	    H	    $H	    ,H	    4H	    <H	    DH	    LH	    TH	    \H	    dH	    lH	    tH	    |H	    H	    H	    H	    H	    H	    H	    H	    H	    H	    H	    H	    H	    H	    H	    H	    H	    I	    |I	    I	    I	    I	    I	    I	    I	    I	    I	    I	    I	    I	    I	    I	    J	    J	    J	    J	    $J	    ,J	    4J	    <J	    LJ	    TJ	    \J	    dJ	    lJ	    tJ	    |J	    J	    J	    J	    J	    J	    J	    J	    J	    J	    J	    J	    J	    J	    K	    K	    K	    K	    $K	    @K	    HK	    PK	    `K	    hK	    pK	    K	    K	    K	    K	    K	    K	    K	    K	    K	    K	    K	    K	    K	     L	    L	    L	    L	     L	    (L	    8L	    HL	    PL	    XL	    hL	    pL	    L	    L	    L	    L	    L	    L	    L	    L	    L	    L	    L	    L	    L	    L	    L	     M	    M	    M	     M	    (M	    0M	    8M	    @M	    HM	    PM	    XM	    `M	    hM	    pM	    xM	    M	    M	    M	    M	    M	    M	    M	    M	    M	    M	    M	    M	    N	    N	    N	    N	    $N	    ,N	    <N	    DN	    LN	    TN	    \N	    dN	    lN	    tN	    |N	    N	    N	    N	    N	    N	    N	    N	    N	    N	    N	    N	    N	    N	    O	    O	    O	    O	    $O	    ,O	    4O	    <O	    DO	    TO	    \O	    dO	    lO	    tO	    |O	    O	    O	    O	    O	    O	    O	    O	    O	    O	    O	    O	    O	    O	    P	    P	    P	    P	    $P	    ,P	    4P	    <P	    DP	    LP	    TP	    \P	    dP	    lP	    tP	    |P	    P	    P	    P	    P	    P	    P	    P	    P	    P	    P	    P	    P	    P	    P	    P	    Q	    Q	    Q	    ,Q	    4Q	    <Q	    LQ	    TQ	    dQ	    lQ	    tQ	    |Q	    Q	    Q	    Q	    Q	    Q	    Q	    Q	    Q	    Q	    Q	    Q	    Q	    Q	    Q	    R	    R	    R	    R	    $R	    ,R	    HR	    LR	    PR	    TR	    XR	    \R	    `R	    dR	    hR	    lR	    pR	    tR	    xR	    |R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	    R	     S	    S	    S	    S	    S	    S	    S	    S	     S	    $S	    (S	    0S	    8S	    @S	    HS	    PS	    XS	    `S	    hS	    pS	    S	    S	    S	    S	    S	    S	    S	    S	    S	    S	    S	    S	    S	    S	    S	    S	    T	    T	    T	    T	    T	    $T	    (T	    4T	    8T	    <T	    DT	    HT	    TT	    XT	    dT	    hT	    lT	    tT	    xT	    T	    T	    T	    T	    T	    T	    T	    T	    T	    T	    T	    T	    T	    T	    T	    U	    U	    U	    U	    $U	    (U	    4U	    8U	    DU	    HU	    TU	    XU	    dU	    hU	    lU	    tU	    xU	    U	    U	    U	    U	    U	    U	    U	    U	    U	    U	    U	    U	    U	    U	    U	    U	    V	    V	    V	    V	    V	    $V	    (V	    4V	    8V	    DV	    HV	    TV	    XV	    dV	    hV	    lV	    tV	    xV	    V	    V	    V	    V	    V	    V	    V	    V	    V	    V	    V	    V	    V	    V	    V	    V	    V	    W	    W	    W	    (W	    8W	    HW	    XW	    dW	    hW	    lW	    tW	    xW	    W	    W	    W	    W	    W	    W	    W	    W	    W	    W	    W	    W	    W	    W	    W	    W	    W	    W	    X	    X	    X	    X	    X	    $X	    (X	    4X	    8X	    DX	    HX	    TX	    XX	    \X	    dX	    hX	    tX	    xX	    X	    X	    X	    X	    X	    X	    X	    X	    X	    X	    X	    X	    X	    X	    X	    X	    Y	    Y	    Y	    Y	    $Y	    (Y	    8Y	    DY	    HY	    TY	    XY	    hY	    xY	    |Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	    Y	     Z	    Z	    Z	    Z	    Z	    Z	    Z	     Z	    $Z	    (Z	    ,Z	    0Z	    4Z	    8Z	    <Z	    @Z	    DZ	    LZ	    PZ	    TZ	    XZ	    \Z	    `Z	    dZ	    hZ	    lZ	    pZ	    tZ	    xZ	    |Z	    Z	    Z	    Z	    Z	    Z	    Z	    Z	    Z	    Z	    Z	    Z	    Z	    Z	    Z	    Z	    Z	    [	    [	    [	    $[	    ,[	    4[	    D[	    L[	    T[	    \[	    l[	    t[	    |[	    [	    [	    [	    [	    [	    [	    [	    [	    [	    [	    [	    [	    [	    [	    \	    \	    \	    \	    $\	    ,\	    4\	    <\	    D\	    L\	    T\	    \\	    d\	    l\	    t\	    |\	    \	    \	    \	    \	    \	    \	    \	    \	    \	    \	    \	    \	    \	    \	    ]	    ]	    ]	    ]	    $]	    ,]	    4]	    <]	    D]	    L]	    T]	    \]	    d]	    l]	    t]	    |]	    ]	    ]	    ]	    ]	    ]	    ]	    ]	    ]	    ]	    ]	    ]	    ]	    ]	    ]	    ]	    ]	    ^	    ^	    ^	    $^	    ,^	    4^	    <^	    D^	    L^	    T^	    \^	    d^	    l^	    t^	    |^	    ^	    ^	    ^	    ^	    ^	    ^	    ^	    ^	    ^	    ^	    ^	    ^	    ^	    ^	    ^	    ^	    _	    _	    _	    _	    $_	    ,_	    <_	    D_	    L_	    T_	    \_	    d_	    l_	    t_	    |_	    _	    _	    _	    _	    _	    _	    _	    _	    _	    _	    _	    _	    _	    _	    _	    `	    `	    `	    `	    $`	    ,`	    4`	    <`	    D`	    L`	    T`	    \`	    d`	    l`	    t`	    |`	    `	    `	    `	    `	    `	    `	    `	    `	    `	    `	    `	    `	    `	    `	    a	    a	    a	    a	    $a	    ,a	    4a	    <a	    Da	    La	    Ta	    \a	    da	    la	    ta	    |a	    a	    a	    a	    a	    a	    a	    a	    a	    a	    a	    a	    a	    a	    a	    a	    b	    b	    b	    $b	    ,b	    4b	    <b	    Db	    Lb	    Tb	    \b	    db	    lb	    tb	    |b	    b	    b	    b	    b	    b	    b	    b	    b	    b	    b	    b	    b	    b	    b	    b	    c	    c	    c	    c	    $c	    ,c	    4c	    <c	    Dc	    Lc	    Tc	    \c	    dc	    lc	    tc	    |c	    c	    c	    c	    c	    c	    c	    c	    c	    c	    c	    c	    c	    c	    d	    d	    d	    d	    d	    d	    d	     d	    $d	    (d	    4d	    8d	    Dd	    Hd	    Td	    Xd	    `d	    dd	    hd	    td	    xd	    d	    d	    d	    d	    d	    d	    d	    d	    d	    d	    d	    d	    d	    d	    d	    e	    e	    e	    e	    (e	    4e	    8e	    He	    Te	    Xe	    `e	    de	    he	    te	    xe	    e	    e	    e	    e	    e	    e	    e	    e	    e	    e	    e	    e	    e	    e	    e	    e	    e	    e	    e	    f	    f	    f	    f	    ,f	    8f	    <f	    Hf	    Lf	    Xf	    \f	    hf	    lf	    xf	    |f	    f	    f	    f	    f	    f	    f	    f	    f	    f	    f	    f	    f	    f	    f	    f	    f	    g	    g	    g	    g	    (g	    ,g	    <g	    Hg	    Lg	    Xg	    \g	    hg	    lg	    |g	    g	    g	    g	    g	    g	    g	    g	    g	    g	    g	    g	    g	    g	    g	    g	    g	    h	    h	    h	    h	    h	    (h	    ,h	    8h	    <h	    @h	    Dh	    Hh	    Ph	    Xh	    dh	    hh	    th	    xh	    h	    h	    h	    h	    h	    h	    h	    h	    h	    h	    h	    h	    h	    h	    h	    h	    h	     i	    i	    i	    i	    i	    $i	    (i	    4i	    8i	    Di	    Hi	    Xi	    di	    hi	    ti	    xi	    i	    i	    i	    i	    i	    i	    i	    i	    i	    i	    i	    i	    i	    i	    i	    i	    i	    i	    i	     j	    j	    j	    j	    j	     j	    ,j	    0j	    <j	    @j	    Hj	    Lj	    Pj	    Xj	    `j	    lj	    pj	    |j	    j	    j	    j	    j	    j	    j	    j	    j	    j	    j	    j	    j	    j	    j	    j	    j	     k	    k	    k	    k	     k	    ,k	    0k	    <k	    @k	    Lk	    Pk	    \k	    `k	    lk	    pk	    |k	    k	    k	    k	    k	    k	    k	    k	    k	    k	    k	    k	    k	    k	    k	    k	     l	    l	    l	    l	     l	    (l	    0l	    <l	    @l	    Ll	    Pl	    \l	    `l	    ll	    pl	    |l	    l	    l	    l	    l	    l	    l	    l	    l	    l	    l	    l	    l	    l	    l	    l	    l	     m	    m	    m	    m	     m	    ,m	    0m	    <m	    @m	    Lm	    Pm	    \m	    `m	    lm	    pm	    |m	    m	    m	    m	    m	    m	    m	    m	    m	    m	    m	    m	    m	    m	    m	    m	    m	    m	    m	    m	    m	    m	    m	    m	    m	     n	    n	    n	    n	    n	    $n	    (n	    4n	    8n	    Dn	    Hn	    Pn	    Xn	    dn	    hn	    tn	    xn	    n	    n	    n	    n	    n	    n	    n	    n	    n	    n	    n	    n	    n	    n	    n	    n	    n	    o	    o	    o	    o	    $o	    (o	    ,o	    8o	    <o	    Ho	    Lo	    Xo	    \o	    do	    lo	    po	    to	    xo	    |o	    o	    o	    o	    o	    o	    o	    o	    o	    o	    o	    o	    o	    o	    o	    o	    o	    o	    p	    p	    p	    p	    (p	    ,p	    8p	    <p	    Hp	    Lp	    Tp	    Xp	    \p	    hp	    lp	    xp	    |p	    p	    p	    p	    p	    p	    p	    p	    p	    p	    p	    p	    p	    p	    p	    p	    p	    q	    q	    q	    q	    (q	    ,q	    8q	    <q	    Hq	    Lq	    Xq	    \q	    `q	    lq	    pq	    |q	    q	    q	    q	    q	    q	    q	    q	    q	    q	    q	    q	    q	    q	    q	    q	    q	    q	    q	     r	    r	    r	    r	     r	    ,r	    0r	    8r	    @r	    Lr	    Pr	    \r	    `r	    lr	    pr	    |r	    r	    r	    r	    r	    r	    r	    r	    r	    r	    r	    r	    r	    r	    r	    r	     s	    s	    s	    s	     s	    ,s	    0s	    <s	    @s	    Ls	    Ps	    `s	    ds	    hs	    ls	    ps	    ts	    xs	    |s	    s	    s	    s	    s	    s	    s	    s	    s	    s	    s	    s	    s	    s	    s	    s	    t	    t	    t	    t	    (t	    ,t	    8t	    <t	    Dt	    Ht	    Lt	    Xt	    \t	    ht	    lt	    xt	    |t	    t	    t	    t	    t	    t	    t	    t	    t	    t	    t	    t	    t	    t	    t	    t	    t	    t	    t	    t	    t	    u	    u	    u	    $u	    (u	    4u	    8u	    Du	    Hu	    Xu	    hu	    tu	    xu	    u	    u	    u	    u	    u	    u	    u	    u	    u	    u	    u	    u	    u	    u	    u	    u	    v	    v	    v	    v	    $v	    (v	    4v	    8v	    Dv	    Hv	    Tv	    Xv	    hv	    tv	    xv	    v	    v	    v	    v	    v	    v	    v	    v	    v	    v	    v	    v	    v	    v	    v	    w	    w	    w	    w	    $w	    (w	    4w	    8w	    Dw	    Hw	    Tw	    Xw	    dw	    hw	    tw	    xw	    w	    w	    w	    w	    w	    w	    w	    w	    w	    w	    w	    w	    w	    w	    w	    w	    w	    w	    w	    w	    w	    w	    w	    w	    w	     x	    x	    x	    x	     x	    $x	    0x	    4x	    @x	    Dx	    Px	    Tx	    `x	    dx	    px	    tx	    x	    x	    x	    x	    x	    x	    x	    x	    x	    x	    x	    x	    x	    x	    x	    x	     y	    y	    y	    y	    y	     y	    $y	    ,y	    0y	    4y	    @y	    Dy	    Py	    Ty	    `y	    dy	    hy	    py	    ty	    |y	    y	    y	    y	    y	    y	    y	    y	    y	    y	    y	    y	    y	    y	    y	    y	    y	    y	     z	    z	    z	     z	    (z	    ,z	    0z	    <z	    @z	    Lz	    Pz	    Xz	    `z	    lz	    pz	    |z	    z	    z	    z	    z	    z	    z	    z	    z	    z	    z	    z	    z	    z	    z	    z	    z	    z	     {	    {	    {	     {	    0{	    <{	    @{	    L{	    P{	    \{	    `{	    l{	    p{	    |{	    {	    {	    {	    {	    {	    {	    {	    {	    {	    {	    {	    {	    {	    {	    {	    {	    {	     |	    |	    |	    |	    $|	    ,|	    4|	    <|	    L|	    T|	    \|	    l|	    t|	    ||	    |	    |	    |	    |	    |	    |	    |	    |	    |	    |	    |	    |	    |	    |	    |	    |	     }	    }	    }	    }	    }	    }	    }	    }	     }	    $}	    (}	    ,}	    0}	    4}	    <}	    @}	    D}	    H}	    L}	    P}	    T}	    X}	    \}	    `}	    d}	    h}	    l}	    p}	    t}	    x}	    |}	    }	    }	    }	    }	    }	    }	    }	    }	    }	    }	    }	    }	    }	    }	    }	    }	    }	    }	    }	    }	    }	    }	    }	    }	    }	    }	    }	    ~	    ~	    ~	    $~	    ,~	    4~	    <~	    D~	    L~	    T~	    l~	    p~	    t~	    x~	    |~	    ~	    ~	    ~	    ~	    ~	    ~	    ~	    ~	    ~	    ~	    ~	    ~	    ~	    ~	    ~	    ~	    ~	    ~	    ~	    ~	    ~	    ~	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    `	    d	    h	    l	    p	    t	    	    	    	    	    	    Ā	    	    	    	    $	    D	    d	    	    	    ā	    	    	    $	    d	    	    	    	    	    Ă	    	    	    	    	    $	    D	    P	    T	    d	    l	    p	    	    	    	    	    	    	    	    ă	    ̃	    Ѓ	    ԃ	    	    	    	    	    	    	    	    	    $	    ,	    0	    D	    L	    T	    d	    l	    t	    	    	    	    	    Ą	    Є	    	    	    	    	    	    $	    0	    D	    L	    P	    d	    l	    	    	    	    	    	    	    ą	    ̅	    ԅ	    ؅	    	    	    	    	    $	    ,	    D	    L	    d	    l	    t	    	    	    	    	    	    Ć	    ̆	    Ԇ	    	    	    	    	    	    	    $	    ,	    4	    D	    L	    T	    d	    l	    	    	    	    	    ć	    	    	    	    	    	    	    	    	    	    	    $	    ,	    0	    4	    D	    L	    T	    d	    l	    t	    	    	    	    	    	    	    	    	    	    	    Ĉ	    ̈	    Ј	    Ԉ	    ؈	    	    	    	    	    $	    0	    D	    P	    T	    d	    l	    	    	    	    	    ĉ	    	    	    $	    <	    D	    \	    d	    l	    t	    x	    	    	    	    	    Ċ	    	    	    $	    <	    D	    d	    	    	    	    	    	    	    	    	    	    	    	    	    	    	    8	    D	    L	    P	    X	    \	    `	    d	    	    	    	    	    	    	    Ȍ	    Ԍ	    ܌	    	    	    	    	    	     	    	    	    	    	    	    $	    (	    0	    4	    <	    X	    d	    l	    p	    x	    |	    	    	    	    	    	    	    	    	    	    	    	    č	    ̍	    Ѝ	    ؍	    ܍	    	    	    	    	    	     	    	    	    	    	     	    $	    ,	    0	    8	    <	    D	    H	    P	    T	    \	    `	    h	    l	    t	    x	    	    	    	    	    	    	    	    	    	    	    	    	    Ȏ	    ̎	    Ԏ	    ؎	    	    	    	    	    	    	    	    	    	     	    (	    ,	    4	    8	    @	    D	    L	    P	    X	    \	    d	    h	    p	    t	    |	    	    	    	    	    	    	    	    	    	    	    	    ď	    	    	    	     	    	    	    	     	    (	    0	    8	    @	    H	    P	    X	    `	    h	    p	    x	    	    	    	    	    	    	    	   H	   P	   T	    	 H  	 [  	 \  	 ]  	    	   $	   (	   ,	   0	   4	 	  8	 
  <	   @	 
  D	   H	   L	   P	   T	   X	   \	   `	   d	   h	   l	   p	   t	   x	   |	   	   	 !  	 "  	 #  	 $  	 %  	 &  	 '  	 (  	 )  	 *  	 +  	 ,  	 -  	 .  	 /  	 0  	 1  	 2  	 3  	 4  	 5  	 6  	 7  	 8  	 9  	 :  	 ;  	 <  	 =  	 >  	 @   	 A  	 B  	 C  	 D  	 E  	 F  	 G  	 I   	 J  $	 K  (	 L  ,	 M  0	 N  4	 O  8	 Q  <	 R  @	 S  D	 T  H	 U  L	 V  P	 W  T	 X  X	 Y  \	 Z  `	 ^  d	 _  h	 `  l	 a  p	 b  t	 c  x	 d  |	 e  	 f  	 h  	 i  	 j  	 k  	 l  	 m  	 n  	 o  	 p  	 q  	 r  	 t  	 u  	 v  	 w  	 x  	 z  	 {  	 |  	 }  	 ~  	   	   	   	   	   	   	   	   	   	   -DR  ƏʌD Əʌ< Əʌ4 Əʌ, Əʌ$ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ| Əʌt Əʌl Əʌd Əʌ\ ƏʌT ƏʌL ƏʌD Əʌ< Əʌ4 Əʌ, Əʌ$ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ| Əʌt Əʌl Əʌd Əʌ\ ƏʌT ƏʌL ƏʌD Əʌ< Əʌ4 Əʌ, Əʌ$ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ| Əʌt Əʌl Əʌd Əʌ\ ƏʌT ƏʌL ƏʌD Əʌ< Əʌ4 Əʌ, Əʌ$ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ     H-MP00L   D   <      K   0 0zxL  H-M   00 n 0 K 谾 - JLF!FzDFO. #?PsxG07|kO0G03<MB$
9 ѽpG  -OF0xCyDxyIHB% C!X ppx#:h@,
!@JX  F i"BcBѢEѠh!;hBb#! e!\ a (.HxD9 p
	
DOx
IF:%O\
3BHX hh8 " "`HO	)IICCyDX  9/
Jo!zDF
 PK  X (  ں RK)-G{DFF_),)Vهx &x xB'=A *,
FLY ,F%i= BbBѡQEHFhBF (Ѡh (6нxyxG' xL&J *
&g IFBF` ! a (%HxD9Q $F'F&FGH `p 0lD	 App	:%?3Fp 	  Xpp3E8HFD !1phHxD9 I    2OK-O*NM{DFF}D(F K $F'F&FEHX ,F%i -P!B`BѴEhxE`FQRF (ѥh -3 .'0IyD` (MИ `k6	]p`Fp5ԙE8 %phEx.ylyxD&@'L+

&gPF`бAFRF ! a (
HxD9rEFFpHxD9fHxD9bH     ~ JzDhsH;xD h< D 0K{D`@#!`FvI?#yD` (HxD90,     Z pNFJ
~D @X Fh# hB`hp%``	H2X(Fhh``p``p F -ONK~DXh 	Vp;hh:D  HxD`hA 	hB@݁HIxDyD2F (?@F<F (6К  B	!0N ,  M$C )rY 
  ,F%i - J qEbEѠE
 `@F<eF (@FDD@ ,6MuY 0C	!  N * 
@,#
  F#i +  IEѴEѢEѠh (  )̢̒MDD}DF (0ЅhmIF,XF$
 (@JD X hah );hh ( !+FbX``%``F (їOYh - L)FF7Y `F@
B`hhch +a`aFI"`

`Z )уOY  @ @@ !
  Fh + "h *ѠB(F`X\ -DpwVp 0 ! @! .
 Fh +m hBѴEѢh *| )RHSOSJ6XDzD tFd#
A chhah )b`rFR `	7`zh *{! ! a (=HxD9F! !z a (Рh (0`XFQF (DV0  ```!` !R` (#HxD9 #`!D` (K0`~PPPHD~F : B    G     $E (   , JIzDF
RX @ ,Fh- hB`h&`Z`vH#D7hFp  p P``$B (V JI0zDF
RX @ Fh+ hB`h0%`J!+FzD`hFhF`` A , JI0zDF
RX @ Fh+ hB`h0%`J!+FzD`hF|hFt`` @A  JIzDF
RX @ ,Fh- hB`h&``vH#D7hFp  p P.``@   𵃰 h6M6K}DX
D
D   h ,TXBR hB*Fh +)N~D4`!`h'I`mX*hhnDD @ 0 B M}D-hFh` FlD @dh!"O hD?h*hx`Fi +.!
 (p|hFFX@ 0<   Բ ز   JzDhsH;xD h< D 0K{D`@#!`FI?#yD` (HxD8<< . &    -CFYhhD h4Fh6MXDĽ   2K
X@G/OD Pli,bi%F<`F(F1F"R (,i F 0B8,F  `aHX P)hhϹ0F!
"bN h~D6h*h0aFi ).!X (p4i1F.#
 TK{Dh F(a >  4v   0 $FK FKKKKKKKp)``i`0pG -hAh	h3BK )Ix "yy+' GBO+ D	EEGFKKxHGOJOfH4CD
FFFLC1 gA`FpGO20FChh3h0BSF]x  L#T`0pGO0 FBhhhBx  
pYhJZ`pGO0 𵃰 (%F_h\iihBhhCiOaa "iO@   n   pG-CFFJ
FzD +8 x ixx (@x )@y;`ydx`{i{*{  Lc 0 ) ÁJzD
`x +4x )1ѩy ) k} + jz
* m $pDD +]0!BF4 ,	@ #8`d!x` HFxD` +tIyD`+z+niz
) 	L!FO Y6h/1Cx*м ) !P"8F)hjhh9`z``}~~ #L	`  	5
` *2ЯK{D` *)O(y (\jy*_ѫy +\y (Yx9`xdz`
zhz)z" Lc 0 ( !JzD`kz +(yjy  y Bcd(xxx #L` A!p
 
+{{{! Lc 0 ( ~JzD`ky)z) Ѐx8`xz`yiy(y"L cd{i{*{ #@ a  * iK{D`y *8`kxd{`
({{{ #L`   ) [K{D`} )߮d+x;`ixy`(yyy #L`   )}MJzD
`y *2ѫy +/iy ),*yRx`xix #B:`yiy*y #@ ad{h{*{! Lc 0 (K3IyD`  {`xjx  C#A!|:`yiy*y #L`d{i{*{  Lc 01HxD`jz *?* <     8    p X  | -OFOJ #Da$1 L1 {d1Fl1F1 " O	O
X;h Q0BD     ~ @            B$4*! z*;hPB10B! O 0";h QBB ;h Eؕ4  )@* ) 3 [Eرd;h $Qvl0;Bh4Bh;hpt!l Qad0B4x;hhjd QLL B4PQ!*;hPB10B?|Q!;hL Q&$B?g 4()! *?];hPB10B?Tp)! "*!;h$ Q`E?<@xD E?10$ Q 7 8
F8L|D
 !` "`5KX
hShK
8( *:DN8(F
 !FF)HxD8@Iz'HxD8@It(F
 !FF HxD8@Id(F
 !FFHxD8@IT(FHxD8@IJ(FHxD8@I@(F
 !FF
HxD8@I0^5   .     -C	{OFD
FFFS@tѸ 
   + 0oH9X
hSh +Y jд 𒀴@Ѹ     xW0hAh )(3F
 .F )F $9F2F#F PHxD,OHxD( (@ .x   (wDHxD(F
 F 1F"FF;HxDCH     ) -JXhAh )?{(F
 F 1F"FF&HxDCH_ 
    0H9X
hSh +?O(F
 F 1F"FFHxDCH3HxD
HxDwHxDrH4  (    v 0   -A$},M !,KF}DO"rX3hf(H)X  
h0B٣1hB=
$}!Fey"#y'xG'$qN$C,@ $!JzDJzD0+K{DHxD( (D^#0(2      p$}L !KF|DO"rX3hH!X  
h0Bhx*xIB #	+yDHxD 2hB
$}p$D\#z N1 b h V -A$}=M !=KF}DO"rX3h9H)X  
h0B٣3hB^
$}"ey!F'x#yG'pN$C,@2  (( IyD K{Dս0+tD\#0HxDv )`D^ K{Dս (IyDQ 0HIxDyDX K{DK{D 0  p D   >  N l  
 -C-'}DL !DKF|DO"rX3h@H!X
h0B
  3hBm
'}x)F"/xL#0G%,QL);)V*А ]h %I $yD%OD%MDD}D
8FR1*LKFCF 4 S+])FB܈ HxD !
p7) V*ѼHxD @/  $    J > ;K !-C-{D9M'}FO"r_Y;ht "!FL(F(BV)Ј ;hBM
'}]!j $I $yD$ND$MD~D}D
R1 
0FLKFCF 4 S+4]!)FB܂   HxD&
p !7) $HxD  L. |  x ~  . ( -C-'}SN !SKF~DO"rX+hOH1X
h0;B6 hah"z	z
 !FF#N$,1@qL(&(V)0)\)c)н,7I yD5IyD5HxD    *hBS
'}.HxD !
p7x) V)ѝ]! *ж $I $yD$OD$NDD~D
R1 
8FLJFBF 4 S+j]11FB +HxD`HvxDX 0- n ֽ v $  x      -C-'}YN !YKF~DO"rX+h UH1X
h0;BC hah"z	z
 !FF#N$,1@L(3(&V)=)!н,@I_ryD>IyD>HxD\)c)н,:IyD8IyD8HxD    )hBS
'}0HxD !
p7) V)ѝ]! *ж 'I $yD&OD&NDD~D
R1 
8FLKFCF 4 S+]!1FB *HxDHvxD+     ( ȼ v : ʻ 6 < F   %}*M !*KF}DO"rX3hF%H)X
h0
;B(ؤF\!Fx
"%x0xE%D$$Q@0J))	FHxD    3hB
%}HxD
p !6) ) `   %}!L
F!K !|DO"rFX3hH!X  h Blx(x@"L	* |DPD\"@[h
 "FFHxD 2hB	
%}
H!FxD T&) 4 @   8FxxxZx$DlHLN#xD#Ab 8h -O*ĥFFDF@@x2xB (/ / 9F %xDj#Bo|%Z kx \ +@b )@P +@ b )@ O@&@ +@/ x A!xD*/ ^ 
7Jh 	F8FF FAF:FFxD
v) x%,FxD F	O@u @%% *?q5n%LOf
%@_a %^/AT9FvxD  / / 
49F,FxD
*sFzxDgxDExDQxDEHxD:HxD1FHFdvO *C@ +`
0F"F  (2 Jh * P HF[}FHxDN mڹ!F0F6,FWHxD@  0;B Ah90#FHxD.,F?1FHFv
v* Q" DG         c   5    @ B@H,FxD HxD @ :B^`h (0FHxDHxD 0
9BG\h ,0FHxDHxD   
:B0Ch +0FHxDHxD @<BHh (|
 FHxDqHxD  0;B@򴀑H,FxDHxDZHxDp1F (PH,FxDzHxDt  0B4x,rxx ( 0F}HxD^0FLzHxDV%xHxDP0FuHxDH0FCrHxD@0FoHxD80FlHxD00FiHxD(0FfHxD 0FcHxDbHxD0Fi (ޮkw  ^ +Ja
 *@P +6 a
j O>їNHN!xD "HF9FFUxGHA!xDDHxD 0B?L0F!D=HxD<HxD:HxD9HxD7HxDd,H( 8 2  2 z    ڸ ¸  b >   X f * (   θ   N x   L  X @ .   ʶ   j "   Զ b 6      F #Fhh phh,hA!BЏ,٤  #  FpHxD FpHxD FpNh6.ٴBӢ #vHxDHxD熳 z R H -OhFh,xxC(DE7F 

E,xD FxDxD
_ (@؁WEmIFKyD{DJHIzDKxDyD{D	x8xAcC R!gM
@  ! , K r (OOD
 Q$<

8         w 1    
t
o ( HxD@  d
u (H(xD()F -7	 	WE
`(0 _ " ( F  )@:_ *@-  )@!@в (
/ (ѝ(HIBxD
 (
#HYFxDH(xD(0(0HYBxDH(xDH(xDH(xD~( HѲxD
u (RH(xD0 )?d{HxD^( xI xKxHyD{{DxD S+tJrH(xDlCpH(xDf<
!ЁK OOO
)Ё
W OO	'Ђ	[OO
9 oO
O? oOOE /OO@?OO _OO
 _OO OO	 OO{ OOs OOk ?OOc(HxD(0(0(0	(0   ز  ֵ     ڱ   j    v X ,   f  ү n Բ  -GFhUM.}DQSKX8hAh#
	[ !SF&IF 0;hXh (Pm )7 ! F!F`IFF=HxDJ:h!PiI9IU
 yD6F6HxD65HAF
	xD.#0HxD&HFQF6+IU yD6#F['HxD! F!F`1FF HxD :h!SiIPIU yD6"FRHxDHAFxD;hHI(XyD6FHxD: \ <h z p     ȵ   ޵   -AF(M(K}DX0hpB6bxahO	"HxD6h3k#h	HxDBH,XH!"TxD0FP!H"U@xDTHAFxDr,!
H"U0xDT3rO0 d h @h B  , 8-MFF}D6(# $"""""""""""""""*33"""""">""""""""""""""""""*3"""""""" 8F1F
   8F1FD K9F2FX h D9F2FU  h  KXh
kR(!	H"U0xDT38F1F  @X -O
FhyO.D<ّ1,.yٕhШ@$O	mH9XhZh *(Ѻ  !	6-@F)F3Fb (A F+O 	$FFYH4FxDXiVHBFVIxDyD6A)xF ]к fAOZ jx0KH xDxGH[F)xjxxDp(F1F5<	.Pٕ)I
$O	6IzXhci9IBF9HyDxD6)xjx F5HxDH4H4FxDD
 jx @/HxD6n,H[F)xjxxD.)HjxxD &6-h$HjxxD JX#hXiIBFHyDxD6)xjx FHxDH4FxDJH[F)xjxxD   "   X . p" " , L Բ    !   b -CFh*O-D!ّ$->#H9XhZh-6@F	1F+FXx F+$H,FxD0F)F5eXiIHxyDxD691xrx FHxD
HKF1xrxxDx
H,FxDr       j R FxJ,zDH!FZxxDGHXh BB8F)Yh	HxDGиHxDG˸  P   -GF(UF$5}DFX(hB#
B(2F*xD!xK+%- v   $ $ $ $ $ $ $ $ $ $ $  C xD
GG1FxD
GGz2FxD
GGq(h / ߁BB(3F/+@0gh? iF- jFF`41F{DXdXF ~DxD @s0 AF
G6+h  /@3BB(1F)@ x
hF- #iFH1FxDJK zD{Db/@3 9F
G /@+(hB?T
B(5F-@x=04I  +yDIyDH3FOxD4-N~D FbhF0F=&4-GE HxD
GFH1FxD
GF(hB?
B(2F/*@P0
gh? hF-  qF	KF1FN{D~DHFNxD ~D @0 QF
Gi+h B?ʮB(1F+)@ x,
ehF- jFH1FxDJK zD{D/g, 9F
G+x5 4IyD  (ێIyDH3FxDxFgafa=?JN~D F"iF0F4`=:B?aB(1F+)@ x,m
eiF- djFqH1FxDoJpK zD{D./
x5 4fIyD  (cIyDcH3FxDFgafa=?\N~D F&"iF0F4=B?
B(2F*Dٔgh? UhF- NqF	FKF1F{DENEHF ~DxD  AF
GZ8HxD
GFE6HxD
GF>3HxD
GF71HxD
GF0.HxD
GF)      " | 0 b   , * < L 4 8     ʯ  V   Ư ¯          d ­ έ  0 z H  pF
FFʱF(FP
IyDF FGpF0FPIyDF FGpI yDGp   \ -OF`FFB>"FIRbRay'y 
VDGDEؾ_ o)" (FsFyD@G yDG0(F!FBFG0yDG /о_ Q)     w R B=RgR'zay	?		D?
D
?
zD	?	 
DDVDE ۀ_ o/ (FsF yD@G yDG!y`y`3!yby2AF I:FyDF(FG?{I(F0JFyDGr!ygy`0 !yF I:FyDF(FGcy!y`2ay1FL  I:FyDF(FG!ygy`3!yF I:FyDF(FG"y`2^IyDF(FG!y @IyDF(FGay`1N @IyDF(FG&ygyH2F3xD9Fh (@< p &IyDF(FGhI(F`yDG`(F!FGI yDI`yDG)_ Q	)        H  
  ycy ?`?1`IyDF(FGI(F`yDG y ?(F? "yay? `? 3IyDF(FGu~I(FpyDG&yay(Fbz?#z??za? nI (FyDG"yfy(F?? ;ay? `? 3e\IyDF(FGZI (FyD&y z?0bz z? ? ? `?KIyDF(FGaz*HI(FpyDGcy(Fbz?'z??za? f6I (FyDGay?`?  3-IyDF(FG+I(F`yD1F8F`&IyDF(FG&y#I`yDG ȭ v ,  Z `   p  2 .   4 ~  ֪  z @ 
   , &    \ f -OFDJFDZ   (3AKZPmPe (okm
!keTFO.	Z<  Yx   *-mYe ).kmke ,'I
 ZPT (	(
(
(  mJe *hm he ,9F ,l B
(9F ,9F.  ,l0B.  ,Ѹ
 T 	 D@8-OLT
QJDF
O 	[@0#hJIKHyDxD	e:/Ә P0F@		)1)#  "~=H[ h .%=pAx.$|p 67:
.Թ 
,H(# xD $<p4p0e"hB:g  $	(#p $Ftq7O 	 "
0F		@M)1)#6}D H[ 
h0.$K Z   8p   #E -OUFFF9x
N $D~D
0F,

B4 *:FIFXF7D
bH xDOF3HIF:FxD $   f V  # |K-OA $FzI{DzJF}]XzDh(hI؁ !`S0hh (G"
DA  F0s  B +hB@
}A	dID 	IyD	 F0 +  B @4YJOqzD H0 H QHRIxDyDF (<OIOKDyD{DOqBF0 (PН  
( (#(

y QF($ 0B C "  OQO[K  F )   HFd  (A#@  @FtH @H.  OqJ F;
zD< F2 B OqJ F;
zD,0 B J y x ƥ p  r px |   
IF
JyDXhhBHFIxDyD@5L!J|DzD F F  F v 4 A@pF0HxDp@EпFKd+HxDp@EĿ
N %<!~D5d	*F0F$5,!d> p@E   ޣ -CB(N~D9x -B؄	`=LE."KXhV0mBe *Ym4Ye`=սJ4XT1n@FTB۸
4,HVxDT1  H)FxD  ` D@
   GXKFXJ{DX(h (FVLYmXe (tam #;ae(h (A" T8F1FF (])h )=: T8F1FqF (N(h (9mQe )m`m@" +`e1F8F]F (:)ha" Tz0F3I  \XTp(h (mQe ).`m"" +`emXe (5am:#;ae@ TRmXe (am"#0F;ae &0FnBT  @nBT" 8nBT" .nBT: &nBT@   D@-O*LFF|DFF@D`:X*3*
H !xD4:FFHxDOEm)Uً+RI `XhpE?ؚ   ( 40( ˀ( H xDOEIO
zK  X
h0BӚ ? (Y(+@(yк RH;FxD	 )IHaXxDT1OE%H9FxDOE
HxDOEIHxDl  /@̀ 8  [!² *@* ² *@_ +@] P Ȳ ( 𥀙IyDRH0xD 6 ( + (+ π+ѐHxD& 0_ )}ЊIyD[HxD 'H9FxD
   * * *h~HxDb|HxD PyKzIyJ{DyHyDzDxD5N ?JgE.9FXF)FB  F[E
RF-F5EFHIO aXT1TIyDTIyDYSH9FxD,QHxD
B9FXF 0)HHxDz ),Ѻ FIE'FR F<HxDOE9HxDX8HxDT6HxDN5HxDJ3HxDDEњEѫ.HxD8-HxD4 ,!*H[!xD* ,!&HxD * &    @4 ʠ ԡ  B    n j \     	   |  Ԟ  N   ( v : (   -AxFF+
+6Axx;H %xD(F-]Ax  1%FyB9FF0HxD!x  "F`y49FF*HxDygx`y # -8ٰ	0[{8FF{)FFHxD F@z%F`{AFFHxDn{`{;F dH)FxDZ	H)FxDT  b N     hFFi %K&J{DFX
FhAh )1-5vaz0FFz9FFHxD F[!zFz9FFHxD"{gz
 z
3F 
HxD-H)FxD@E D ^ 6  pFAH
FxD#FR*`R[@&ydy)FA 5HxDp`FIHbEѴ@BEFI)).)e~~~C "|a|F{B  )FFHxDp@E!b~~~E  F s)FFHxDp@Ee~~L #|a|F{C  )FFHxDp@E 
  z d F p
 #FLF |D0KF@jF	HxD<IbXhmp0F)F4  l 
Fh-J,hzDK	x)<kxOfJ  CAABB &&@`  &BNYhKhc)h	jhhh6H xD5?<&"F(F9F4F FHXhKh[bhy $HxDHxD     -AFX$"Iy:F!HyDxD5	4\;FRFB  HxDIH*FyDxD4E*FFHxDK{DS% I2FyD4M2FFHxDHAFxDz H1FxDr炛  f        X -GFCLFCNF|DF Y	 hDh̹u8	#))0;8FQF2F
нGھ1H)FBFxD*G-HxDGE+HxDGE8FQF"GT .89x	)#HxDGE!HxD8FQFG-UHxD.IHzyyDxD4FHxDxx;yHBLxDLGEoHxDGEiHxDGEc   d H  0        )FO3H!F"xD (50H!F"xD (9-H!F"xD (=*H!F"xD (;'H!F"xD ($H!F"xD (1!H!F"xD (HxD@EHxD@EHxD@EHxD@EHxD@EHxD@EHxD@EHxD@EڸB B F J N R V N Λ  ʛ * ƛ Λ  K-GFI{DFF]X+h 8B !xOHLOQH'gE L  BЪIHyDxD42FFHxD*hk +@󧀤I F2FyDG4Ik /@|HDxDIF4bxIF	FHxD4IyDF`x ?HxD4#xIyDFHxD4u"xAF 2FSFHxDxh6DVbHxxDr	ah	HxDh	HxDh	#HxD	 i  r|HxD	ai	#yHxD	~`x Ѳ )(+h  B@pHxDGDk )lIlHyDxD4kIbxyDFjHxD4 AF*FFgHxDPdIeHyDxD4cIbxyDFbHxD4 `IyDF_HxD4"xAF 2F;FYHxD&xh6DUbTHxxDb	ah	PHxDh	NHxD
h  qKHxD	 #i&GHxD	biaDHxD	GD}AMAH}DxD)F4cx)F	F=HxD4<IyDF`x ?:HxD4AF:F+F 7HxDx5I6H"~yDxD4q"~c~F2HxDGDI   ԩ   X   L  ^   f    қ   R  V  H   ^ $ ƨ :  " F |    Ț ^   R    d  -K.J{D-pAFXFh0YBE"x*E٢ -A:!  rBaE4#2Fn	rON\NTxxF@AA 	JzD@F
JOq zD0pJzDo O0     6K7J{D-AFXF4I8h	[Xh ABQ"x*Q٢-M:! #rB aE=#2F  s
(OAA < xxF@AA 	JzD@FJOq zD00	;hB

JzDo O0$    ʚ -K.J{DFX1hS0h QB?x,? #hB aE00+#*F)FJ OqzDF8Fh2hB	h
  OAA< o O0 ( r !K-AF J{DFXh0ZB.x ,.A  jBaE!#*F.YJ 9FzDF@F~h谁jON\NTo O0Z ę 𵇰[)*):*M+L}D|D-h%(L)!|D F #F F0C[y)!yEyyHJ xDzD2Ixx)!y@yJHzD xD0FvRxx)!y@yJHzD xD笙 !	 !	 ~!	 2   R!	   !	 1K2J{D-AFXF/I(h[Xh0XBG"x  *<*D٢ @.@:a  O cDB1#BFd@0
OA
  A@@ `$EJOq#FzD 8F +hBo O0  Z 2K3J{D-AFXFh0YBO"xW*O٢X -KQ:  rBaE=#2F r
OCC   FxxACC	JzDOqJ @FzD;F. JzDo O0    ʖ 9K:J{D-CFXF7I8h	[Xh ABW"xW*W٢X-SQ: #rB aEB#2F s
(		OAA   pFVxaxxCAA	JzDOqJ @FzDKF 	;hB
JzDo O0 0 $  ҕ _K`J{D-OFXF;hBe(F0+R9B\ & `lFdI{@FOq$DKIJK zD$	Z (۰vD5 pݻo8h0B!9J9HDzDxD+xI5+ .2ѫ MݻM;h Bo 	^O4<;h PB .1F@FRF; (۰BD & @F1F (۰B & @F1F (۰B &6D6DO00  6  8 <K=J{D-CFXF:I8h	[Xh PB]%xW-]٥X.YQ= #hB aE 0"0D#*F:	k
( OAA	<   )FF1xxACC	JzDOqJ @FzDKFd 	;hB
JzDo O0V    . +K-AF*J{DFX1hS0h QB:x,:A #hB aE*#*FJ 9FzDF@F
h3hBj
  OAA< ,o O0 ޒ -O-Fz}*FDCXh+ +0a  )({F))){))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) I<Y%h0B FW	p	xD@!hP+B PLLDL)DH	DHzDxDyD`> ROgD= 3F!PF IF3= +FF@F`<  yD @(_zD(zD  _ + 8{D   ( FxD 4< @ԅ,= 9F*F (G(%hB=h<_ +ѝ>P7O  )@~  $ ^THxD<Y#hk*ݻ    (0B((FZFyD38 +hBA
}@𶀻  XGEE<Y"h0XBwԗDwD'D7yDzD{D	*x3F!HF 3!Fhx#hBO

#h


B?|R8FxL#hHB?jF3F+O	 3F<xDZ"h0YQEQhxBBEE?ҩB  mIV|Y"h0B?8FFxD2"0F<Y"h0B?	h	xD ?9PFxD<Y#hk*?*0F<Y"hPB?0I`)FFlxDE <Y"hP+B?֮@F@v]F<fDD~DHF		6-BF:F=F0F -!h E  E<Y#h B?.vxBFW yD'3F 3u-DFuD3FOyD*F xD3E&IFBF;F xDt@!B K Z SRos(@L  +?V h B?NX*FAFxDJ#hk-?TDZFyD2GD<Y h B?/.vxBF8XyD'3F 2u-DFtD3F*FyD&xD 2IFBF;F xD  Ⅻ )	 4E&F{DtxDD4yD{DxD	
 jHF0VF0 𦂩?ǭ
0 -έ*FD
 )ŭ@%B@2B t`UHF0zBF ~?0L <Y h B?6	&
F	
HJxDIŊMzDKyD}D{D	
4@#BC	 RHxDZE X#h		PE?IF:{3F'*F 2	*FF2 YF*FF
2 hE?)ӵ O S @3B LD B @.uE 9E?
I@F"yD2e0» W@#h B?O^FDDD삻ODDFDtF Ҁ ʀ.OACF;FHF>5 .@ 0 B?*hcL<Y hP)B?FFHxDYM|Y#h QB?xI%HyD xD2FHxDvLH<X#h PB?xH)FxDv#hk-?*HxDl %ݶہ ǁ   (?R"h eE?H8FAFF#hk(@
	 "zAAvEۦDC;+HF04BF ?%0$\	-   ́--@7-PFFWHxD F;PF7HBSB  H BKHxD  $tI  x ~     ʑ   ȑ  <    Ԑ   Đ * ؏  n d   t H H :     Ď * X J           D  ^ b f l  t    ؊  v B   P   9{Do@|)?HF0F0"Щ?D	0B{ 䮶ޮHF0CBF	Ѓ?+0xD(`xD"+IHF)FFxD	 zxD''


S0+l3Fh U yD 2u0F[P xDPmHFG)FF0xDvPF< ! 3FyDFxD2HF @ 8{D)yxD )FxDKHFOr0F0?v?0xDHF08F0?d?0xDOrHF0hBF?P?q0xDnHF0~BF?>?_h0xD\X'TyD@B?7إr*?2PF0F[(xD8 xD7{Dw\F@B@<fE j`
ڶ!o@s(? h0XB?x *AF@*xD6yD{D&xDzDyD	
VE 󲀶 c@ނ h :B?ө8F	F 7F	 TxD!h0XB?F{ / 09F0xDD"hKE? HF  ?BD  (uD%D5zDu{DxDDF	
 PF0CF?=0?^HF0\ -e+FD   )\@%B@1BOܶ`PF0CF?0?7h0xD4@<fE 󎀶`b! Ho@s(@   (?"h gE?*FAFxD
#hk-?8FJFyD2Z4AAfE ۦDC;+@ hQEAF
xD"hk-@
 #}~ܶjݶP0PFmAF??|0xDXAAB?QDA9)ITxDAAB{DC;+?u@#h B?8F	7F~ 󏀶nos(?R@d"hB?c8F	7F
\(FZF2/  \0PFAF??;0:! Fo@~*??0PFAF??H0xDHxD?o r)?@ "h9B>8F	/F _7F%?vƮo ~ (?@!h :B>Я8F	7F@Ԁ  +> hB>8FF QFFHxDh@` pB zzzC@@T OD  )>"h0XB>8FIFODFHxDzPFOr0`CF?H0>i}H0xDfPF0wCF?70>X	0VPF0WCF?0>HmH0xDFPFOr0CF?0>5040PFAF?>%]H0xD"10PF)AF?輸>0QHxD
vOHxDANHxD <LHxD7KHxD2IHxD-HHxD(PF "2? LF@HxDF F<HxD<Ї @    L  F n    H   ̇     ~ H ^ V < J 2       ޅ ܅ 0 X  F  ^ @ ( B  h  | 6 ؀ Z P F < 2 (    -OU}jF*$~DF:X{DhYhhhhӗ1F
\ 
 0xDP. 
k *@B4FFDEPoB jF
~DxDjD:~D({DDF	FXE߀ PPiE ׀ )ѥE ΀XF$" (=E ʄ  (\E 0Żp /p
xD0[@  pE ?E   -& 0: p	 Fp/12FCFF
r*| l  $	.}yDxD 2F12FFp	xDp$hYh	}}DxD)F 2F12FFP	xDZ.9Ѹ6  pB 2`v(鲲)F\  1pF	z )F xD1F  @1F:F xDDE\F!Ӛ;hB@9
U}  p<E@ixD 09E:ظݻ @h%t~DZ1FW  1l FR1Fhz xDbF1\`9F*F FLxD 0k) E@ZD @E n  20 Ż 0(ppM)FxD  @5vB G0@ + F + <_B 2Z'$DzD7DwxDD{DD8<F@F
Dd0[' !@F QF1 +FFXF: @yD8yD @Ӳ0'zD,'zD  _ + 7{D _ ( xD @ *F ( dtE a  1 B 	h#Pв (ѝP' p :E   2F0  0 0Z|'FXX"FyD xD15"FFHxDb*?\" D`G      [1 0;E ҁ  
vF 0  @xD4phRxD^xDV8FxDN1xDH0 E$ (? 0@B p %lu3FDhPDdD`.F`EyDD|DFFTh|)F		D0E @
B 6
x	B Z$*F3F 1f*FKFF-3F xx :F1O:FF/fp/. , 05B t9FxD 0k/@  B ـLyD1) 0[H3F8X 
1  FR3FxD rF19FBF@ FHxDX 0k)KtB5@/Ѐ/8<@DHxD># )-IyD[HxD:
((ݸI%2t
~\pIDMTDyD}DH%KxDpFxF{D
Lt<
  R'
 IF3F1n  FRIF 5rF1^	pQF /HBF ฿gF4FXFB bF|HDxD I zHyD xD1+FHxD1FXFBF1Du8<@D^EiHzMxD}D
0?9fD(F!FvEV0F!FOrZGFяHxDfGIXFBFyD1?"IHpyD xD:F1:FFHxDJ* I}yD H"FxD1"FF~HxD6"|I|H7}yD xD:F1:FFxHxD$vHxD
vK{D 
sHDxDqHxDoHAF"xDlIyDkHDxDݻF|ӻdHF)FbFxDF|û]I0FyD16x  *| R B N P   v  &     ā H t t  `   L}  4 j} |} v} y |y y hy |y ly T~  R~ ~ ~ ~ ~ ~ j |{ { |  z r{ f{  Nz z w z Ry  z y  x y z d { y y u Fz w  y w ~ ~y w  Xy ^s Xs x  w w v x ,w w KJ{DFXmFBe *nB
(JmKJe FT1BpG  @-OFF<DZ@ hJB yD*xxD1FxD(h@ CcE 1FxD hk ) ɀ0E ix)xD(hOq C#ExxDx )@ih)	xD* *@h@ppyDxD1SFdxD!h
k*k[TxDz!h  Bhh )@ B`)i )@ BXii )@ BPөi )@)hO~!C# pE :,B;ӕ, )@lB2ӕl  (@À hKB%0F"yD ( 0F"yD ( ր	
xD!h  Bt*t
ZxDT1.
F\
xDFIP
xDRH
xD@OF8
xD h hBF$
xD"h c5F
xD#h ^(F	xD h Z :BF	xD&h U	xD#h0Fi0nZ hH"  +9g!h0ZD" ;^dZ`9T{DXt	xDn"h0Fhi0BZh ("  +@9#iZ`TdZ0T\ h`r$	xD@ h E 1@L#h  B 0SyDFxD"h B  `@ h~Dq1FFxD!h 0B~Q]yDFxD#hp Bh 1SGlyDFhxD"hpBR!R1HyDFDxD!hp0B<Q$yDF xD#hp B&1S yDFxD"hpB! *?yDFxDvvPZxDT1kxDf		xD\7'xD{DzD	h SE?HMF{ / / /@	B ,p\XxD:FyD0Fk8 $ // h0XB @		 ,  'zD#F :FxDcB + ׄh E ΄,5/ %% 7/ ~/ ݁?. i.  L.  $. B.  %v DDx.@F8F5  B (&x.. : Z0h )%ZT1k+ܩFSk*L:FLxDyD0El@:F #D !hk+@bBؙ		!+x+1EMF		)xDj $F#Fg ,?ueD%D~DzDxD 9F@F0F0F5D>BѩDyD+xD0FxD*e % ~D
$Z hN 5  BP, Z0h )@Q ))0FZ 0Y h )TZT1a.lT" ZP+h +@!FhHF 0t*h (@ԁ"  *@߁Dp. s.Pl.д'F#$	yDDzD 	i.L.XF? #/ +, Z0h )JZT1	F		 ,?1P!FxDz	&F 	O?l>  . (I, Z h +IZT1h`	@	@;Ԣ Rl&	ONFD#DF6[F@F0 0F8F& #) +в, Z0h )ХJZT1$b&;		,hOFN%FKD~D{D&	 &-7+=RXF0F .іI+ Z`3h +ЇJZT1 DQ/X4/ Á=/ ./ 𥂼H9F"FDxDlwJZT1sJZT1vy/ / ށR/NDOD~DDP @B"F0="F+FF,0F*F 0|	,@FYF	,\ٙ   HxDfWJ		" ZP)h )@g7<!FhHF 0 (@*hu#S D  _!HO%xDT3_1E%DP3в0N!D3 %tHDxDaFPqH9F"FDxD)hQ" kHxD *J" ZT1&F 	IZT1 *  z    j j f Hz ` X  ԇ ̂ @ ~  ~ ( "     D ~    | v ^ J 6         j  | | b 4} ~  | z ~ &| 8| V d{ y {  { 0{ "{ { z J z z z  z y 4{ y y | *x bx y j Rx x x w      (w v fx  , YNFg+ *@M" ZP+h +@30F9Fh / ()h" 	 ,@!H9F"FxDJZT1dZT1 JzD߻N~DߺHxDI	HyDxD0"F+FFHxD)F "/cH,@򏀉HMKxDI}D{DyDMF8k .rOEarHZ (  0 +R~V '	y	7_E /  .  *ZT1~/	1FvrFYFfOssd? `, 5JMZT1bGIZT1\NHAF	xDBKH1F	xD8GHy!"FDxD0ߺ6JZT1:C@H!FFxD   ,Q<H9F"FxDƺ9ILD9H5FyDxD0DF6HxD B?8J: Z0hA@F  JZT1IZT1$H !+xD04<ZT1OH9F"FxD|H !+xDDt @r r 6v t  t t u ~u u \t *t s r r  s  r "s  Fr  zK{J{D-O 
S 0B FU;qNrH~DāxDpND~DoKoI{DyD	CUE(   (   BجE|ӕ+x	Bu	Eo9I+Ѩx(hй+ F"*v   BIغEGFJF ]0FB   B/ؼE,:x	)IF 0  
B	Eӹ 3		OD@FBX?u  oO0)h`E	5E5FHxDX?S'F%FX?J pE5EF	X?4` x x x x 6 ~x  w -O-
FI*FyD@򛀿KQ  
BٻHxD
O@HbxxD!xd  k /@'_EցBحLMN|DK}DH~D{DxD<d}m=fB .܎Bk *GРHBFIxDyD/,F@󜁜K{DHBF #FxD8 |o `O      n zzd zD ]   y z g(F!Fd ( , n/  _EjBr~HxD
O@j#[yH*FxD  o ! ,OD !FE!gnHxDS1+yh	iHxD RfH9yxDdI8yyDcIyDcHxD!F*F9y9y终[XHxDVH!F*FxDzFgafa`dEMHxDh ,p('F.FFDx@F1x?rxx 4y6R /LFY@H!F*FxDHR>HxDD ,LD:K	>79N~D	QQF	T
dF\ B\  *T[T
-GE"h1F_ *(F"
-	
GE
       @@B v v Fw w w w w  v &v v u u pv bv 6v .u 0u v u u u u "u 8u D@"u zhF6)I*HyDxD/1FF'HxD&H!F*FxD9y{  !F*FkHxD(F"F/l0(FB
-giK{Db  k )	

HxDvHxD
O@t  t s s r |s t -CFNCF~D[H7X9hJh *3HcB	Mش o `BI:hQh!~H!FxD2 HGBZBfOaBhy0ò+mبh
FoIpHyD*xxD/nI"FyDFV /IF#F 	FfHxDHcBHF1FaH1FxD
.39h :E-ihF+3DXHxD;hk.	 (THxD9hk(PI	 yD/HF1F'8hIF2F
GHxD}1FHF2Fw	 F !FF=HxD:hk+	9HxD8h k(6I yD/9hkh	h+[/HxDv.9h 	E@$DUbHJ,, HxD	RS	R R	A		A@8h kf  hv ,u `c <"u 
u u 
u vu Zu Zu t t t Zt \t hh,FF@HxD
 F 8t F-H"xDhFh)L|DF/?'JX hAh )*
 0F)F:F#hXh (/нAIFHxD"hmK0F9F/ h1F*F
  H)FxDH1F"xD^F +HxD	H)FxDR 0 s s  s s ll5-OD F`%\ h\ 0 B 1h
F-	wh
:F?h h	D\b OOzsxDs	R(@  : )FxD> - р 4 E ȀDWnD$D4O 	D8
D
D
bD,<aj	"icitɲ xD (E   4		DF0E Fi)F	-i3F6Oz~	!O	OR	f   D -X r hp"jF RF)O`h`%jF-HRFxD hRFHxDbj F  h +PbjH!xDh(L  D *kjF ² J!PF#zD[0 B@j!PFCj J!zDj!PF
j !{H)hxD6h(. aj	FյM^ h (@^PmXe ()imF#;ieըM^ h *@^PmXe (imS#;iep՛M^ h *@\^PmXe (imR#;ie1ՎM^ h *@(^PmXe (imP#;ieՁM^ h *C^PmXe (imA#;ie"tJ\0h )]qH\ PmPe (wjmU jeh +GmHe (akm !ke .?aMaH^0^ PjI\IA ^PTWIS ^PTvkSIF ^PTnHNIR ^PTdsJIP ^PT\  TVBMU \PTL1i	=HxD2 0 8 nBT  :nBTU 0nBbTA $`nB?TP =nBTR nBTS nBӮTF  d s 
s r s r r r s r r q q \q fq D@n -OF$  9FDxFYO	*FO 

hY P+hB .@؀"R`@"yO  Ҁ
 F
  FxDnY T0+hXi (@k *@𛀺  𿀺 )_*hk +[

<	

L O `   1F	F
: 
b!"\c 0?BD6	 ܃ !12F2IED OpE@ŃOFEoRxDIF . 1FHF
FxDC	 Y^u xDhB@xDFEtAF2FxDcyd	xDZXxD F F ,xD,)hk (Ѝ83F[  !!:0	+9 
XF
: 
01F2 F46`	8		
F@1FxDZ  DIF0F
/FxDLS&xDDOY
@)hk(Zh:
CѲC@ #@N_p.G:Fh "	RL 0xD#z@E1'xD+h SB xDDyDxDyD	xD9x)@HxB?  @u wE 1,) (!&&&&&&&&&&&&&&&&&&&&&&&&&&&&&gO8 0   D &xDI(h_qLF
E  	&xDx2_r*hLF0;E 	&xDb &xDZ&xDT
&xDL&xDF&xD>(h_sL;F9BLz.yDDY&&xD &xD `3[lxD
 T $D:4XFxTECFB4xD)h SBxD xD {[xD	HxDH
xD  $DXFa̲TE۴H
xD  $DXF`ĲTEۛ	HxDH
xD  $D:4XFxvTE|H
xDn sX $D;XFx`a̲TEdH
xDV [0 $DXFF`ĲTEJHxD>x	*?C
HDxD^". 4 $D;4XFx TE%HxDx	*?I
HyDxDQ"
  $DXF`ĲTEHxDx	+?
HDxD^# | $D:4XFxTEHxDx	+?ӮI
HyDxDQ# ŮD $DXF`ĲTE۴HxDHxDHxDNHxDO0O)h	B?D8h
C_C@ #@N.JRF ЬB?-yh #	ZL hHxD\> ^yHFT#\o∎@F+HиK		<C	UHxD4;zR,4 EG'圤 Jn @m m l m 
m "m l l xl ll m l l m l m m m fm k j j j j j j j ~i U j j 
j ,k k k Lk Dk k j j j jj j Nj (j j Dh i i i S Zi g :i S i ~g h VS h 0g h S |h f ,h h h i Ng h B&*        ~ {  x u r o l i f c ` ] Z W T Q N K H E B ? < 9 6 3  0 - * ' <HxD<HxD;HxD;HxD:HxD:HxD9HxD9HxD8HxD8HxD7HxD7HxD6HxD6HxD5HxD5HxD4HxD4HxD3HxD3HxD2HxD2HxD1HxD1HxD0HxD0HxD/HxD/HxD.HxD.HxD-HxD-HxD,HxD,HxD+HxD+HxD*HxD*LF*J!|DzD F~ Fi i i i i i Bi 0i ji Ti Bi 0i i h h h h h h ph Zh <h &h h g g g g g g g lg ^g Pg Bg 0g g b $i -AF_LF_K|D^HXxD1h\H'X:h@#B)xK+g=@CFILORUX[^ ;h 8B]NHxDd0hB@IIyDk (@HHxDT)xDE(F9)U+AH"AxDB(FAF ) B;IyD;IyD:IyD:IyD9IyD9IyD8IyD8IyD7IyD7IyD6IyD6IyD5HxDkz3HxDF\ 0F)HxD  0F"HxD" AF @+vHxDpt Z h h ~h h h g g g g g g g g g g g g h h g g g 6&{D-OFXEFh! ȀƀAE\v\\FD\VyDX&|DX}DzDxD0[)B𛀻  RHF	9F8FZ!~} oSJ9-} " } } } } }   } }   }    } }  	}  
-@ 
8  0 <  0* * xD=) |xD> )@lxDd
?
`
GxDD:IHFE + + 0xD) B
FFE[xD!hB@b#	r -D	 		FPFME-^  
d 0    
q  p F	F|- !F) ) ?\xDf -PO DHF	yV	   EE   (v- ՀxDDm-ٸ    @  + + HxD$@F)F) "F-Ѹ     0[H 0xD5-HxD,	 -?$D8	 " "I		bFPFME
-  
H 0    FHxD	HFxD-? !F-h
(   0 	4sFF4-? !F-@ FR) ) ).F[HxDt  		F	jHxDdHxD`=)QHxDV> )?RHxDNQ- @ HxD>-?d8O	D	PF		0METHxD(RIyD"LHxD
(Dћ * * |HxD{H xDDU	@F]E" (? (-	w	nH			xDkHDxDU	@FMEeHxD	-bH
FxDDHF5
--q RXHxD-?׭TO	D	PF		MEOM	!OJ}DzD(F2)FoLIyDlKIyDiKIyDfJIyDcJIyD`IIyD]IIyDZHHxD|nGHxDxiEHFxDpDDPFfE=D p x g g Ti i 4i i Ng Vg Ng Pg Rg 0g g Je f e 4e Pe e e c pc e c d c c  d .c :c Fd b Hc c c c Xc lc ^c $c fb Xb Db  b  Fc la na xa a a a a b b db a  +F++$+
HxDa
ԢcHxDaHxDHxDcHxD@>K
HxDHxD b b (b $b $b a a FIHyDxD-HFHxD@># a  a  ;)-O{DFUX3h BDgx%xE%-F٩BDӧAB8ؔF gFFx  +>
+xD ؂P FIE(IF	O-k +@ B3h  B
xD	O>t
xD	O>DD	x3h Eؘ4	  ?J+N +FXF'+FQFF
xD3hkr:  񐂸 	AFxD1h CBؔ x'y (xN%B' ( { (@tp )  ӂ ) ) :	xDaF:F+F	O>:|	AFxD^   K+ c  Z 
 @	xDL2h  8E?E	@P`pA&G#
 J+pI)P@mF}FXFy QF:F+FxD>	xD60h0;E?	@p`G+P
 E)A%`@
p'XF8QF2F#F @xD8xD2h E?	 B FxD0h0B? B,oW}D"xB,o?|by	(FxN#x. A!4
a0hBd|xD\0hE?U 	 @ FHxDv41h0B?8 A ,o?#W}D"xB,o?by	(FxN#x. A!4
>0hBxD.0hE?ﭘ  @@ F"FFxD	O>|xD
ҭ1h0E?˭ @@ ""FFHxD	O>|<xD1h0;E?@P
`)p	 G*L	'PB& ă) ) xD ò +@ʲ"xDPF :F+FFxDQxD@FKE4FIF	O,Q|xD'L2h9E?=4	 @+N
 ^<xDZr4xDTi,xDN`$xDp 0(  ˀ( L ( xDp+ o + d +@^9F*FxD&0h	9B?笔byB#  N )?ϭ LO 
xD  zyC ! O?0L
0O !|
xD	O>x@) `) 0)*\xD3hb B?N" @ )@CO 
xD|0h0B?t zyA , OsF0COR0O ނH
xD
Y0h	0B?PzazA #H
xD	O>@( U`(5HxDlH9F*FxDf/3h 	8B?(eyy*yA$ * + + + HxD>H!FxD	O>ǸH9F*FxD00ha0B?yayA " @ )ALO 𑂺H
xD֫0hB?Ϋ zyB   OsF0LO Q0O hH	
xD
3h	 B?
	L#H
xD	O>`HxDH)FxD	O>UH9F*FxD0h0	;B?ybyB  N )?hLO H
xD0h0B?_ zyA # O?J0L0O ցyH
xD	O>vH9F*FxDt<3h` B?4yL " N )7CO dH
xDP0h0B? zyA , OsF0COR0O VH
xD00h	0B?zazA #MH
xD0h0B?z!{ @!DHxD
) )ū) >H)FxD	O=J 4c "a a b b c ` (a ` B` _ _ 2_ :_ ^ j^ >^ ] ] D] ] \ [ [  \ ] [ ] l] X] _ b_ (^ \ \ \ X\ N\ \ ] ] \ 
] <[ [ Z Z [ [ h[ &Z &Z  Z Y Y LY bY tY H9F*FxDz	C1h0
;B?<fy%zy*y@%dz * ) ) ) }HxDR|H)FxDL ,?yH!FxD	O=ӾvH9F*FxD<3h 8B?ybyyB  ,?iH!FxD	O=fH9F*FxD0hB?ީN 	Of[HxDVZHxDKXHxDFWHxDAUHxD(SH)FxD	O=uPHxD	O=nMHxD	O=gKHxD	O=`HH
xD	O=XEHxDtDHxD~BHxDjAH
xD ?H
xD=H
xD	O=5:H
xD8H
xDf6H
xDA4HxDN2HxDI1H	
xD/H
xD|m-H
xDvt+HxDr)HxDl(HxDh&HxDb %HxD^Y Y 2Y BY <Y X Y T xT ~T lT X rW 0W W 4W V W W W V BV nV &V RV V W W U U U XW fW PW &W W pF 

FHJ! 3FzD(FpHxD,M NW (W KJ{DXh QB;3B;˱*@*#+	сB+2B  pG #0pGpG $ KJ{DXh :BӐ @+`F,)
AB@x! XO0HxDO0~ X 
KF
I{DYXm;e +Km+KepGnBв
(FT1= V~ @-OFKDYP)hpAFJ(h SBD ) ! (?аIĂyDIDyDI#yD	I  #yDB# + @+6 )vФHxD$ " @Ā*h0YB@	HxD  JY0h (@JYmXe (Km. Ke F1F, ( 
NY0hbHY mse +Hm.& kHe FCF)h0ZB

  )qr (*h oI. YT1PB#x + +ԿO 
O
J`B #
 + )h SB?vF(h QE?k@F|WEPF !!ؿ ! )ѻJ)h SB?Nx  XT /c?#a:B?5$xD ' F{BF?'+hJB?  4C  B]2!dOpA"F}nB=T1. .<I. YT1  "	 nBT1. H #xD~ X X X X W W W D@\U -AFFF*M}DF (F(KXh B> FR$I$HyDxD,fF"HxDdd$ B"F*
IHyDxD,RFHxD> A̱HxDX!H"U0xDT3@F9F0  
HxDz z U  U T ^ T T @T T -OFGF7|DgFX
h	Y>h3k + !X
h * f  YT1N(FYFF ( >h`
uEb*Rk[& I  ѱF)@𬀺  A (@𳀸) . "v|BFxxDpyD 

xD,F;h  
BOظ Lٸ'T6ظ! & M	:E8PFF0F	hB@T0mBe *e^m  ^etF (x`h@Ā   EPFaF,3 ( &Iظ ƀxT0h *@6l#XmPe (pZm  ZePFYF ( &PJFPyDxD,FDxD^C<xDXF[.GnBT  `и Isk )?oTeY(h (@$XmHe ()Zm !ZePFYF  F ((h (@mPe (Zm  Ze FYFF (?l;h9B?eh	|T}D(Fah	(Fh	(Fh	(F!i	(F )<IFxD,xD:E?,PF.FJXh )@YT0mPe (Zm  Ze;hE? YF, (? @jR[HxDPE?z/ <O#Ш +?B?ܮ
  #9FFHxD^ /?I`Xh *@.T0mHe (kXm ! XeYF
  (r &oEmO"	D
JXmCe +)Hm HeVEY@F ;h QE?[PF)F+ (x
?tJXh +НI" aXT1nBT1" JXh +@𞀓JXmZe *րCm "+Ce8hE?F YFj (?>jRHxDk (? ~JXh )@|H$XmZe *Ҁ`m # ;`ePFYFDF (?9h B?m{HxD9h B?#[tHxD$d9h,0B?%F5+RkHxDz8h0B?ܭbReHxDl8h!0B?ͭI^HxD^   TT1fDI  aXT1`g@I  aXT1XQH9FxD@u  T@T H   T@!1J  XT1:o  TT10nBnT  ,lnB& T  "$nBT  nBӭT    nB߭T  nB*T  (nBT  t y D@S S * ~R  lR R Q Q Q Q P LP O `O PO 2O "O O ~N -O gF7F~DX8h9Bgإm㈭["R`@@ @ܶ	6D{D[) 6{D_ (?xDD TbR@c  (@𘀡x* 𝀺 @s-|)FxD8 +@a )@X	; -@4 PxD	O<DDxDD bF8hk)@{
; @ā 9h EC (@ (9h EZ] + T!"V
xDT
SFHF!FBFwF (
, AHF!FBFjF (:h, QF0E)5*%Xh *xDx*c -@%?h`QFxD`#[	L% _@5zD{DR  S,0 ) (yD(D D  ( D _ ( ܀ xD IFxDT-)FxDL#F=DFFkxл0[HB$Xhqx1XmXe (.Km, Ke9h
k*X!"HFV0T3& FYFBF@F (?= F (?=$, XT1nBT1, HF!FBFFF (?Ů=hF!FBFPB߀;̮F (ѱHxDHFxDHQFxDHFQFxDFLF
9 >ѹ ?8hk+E9 *@ (?z9h0EU *@M (?kHxD	O<IyD
HxD#pDH)FxDzXF!FBFF (?JF,%FH3XmQe )XZm[Ze FQFBFF (?29h,  BY9]V0h *ШIqXT1VHF!FBFF (?F,%FFH3XmQe )+Zm[Ze FIFBFF (?:h, 0B$;(ӒIrXh +ЍIqXT1 nBT, FnBT, FTF<FFtFFTF9HFFFyM!H"VxD
T+FHF!FBFyF (?, ?)F?ԭ;h0EV0h¹\ C\0 +ZT ,# ;T HF!FBF;HF (}UM!mH"VxD
T+FXF!FBF0F (?f\H\  (.T, TXF!FBFF (?K;h, )F Eî9ŮV0h *nnB, lnB, b!AH"V
xDT
SFHXF!FBFF (?
, HF!FBFF (?;h, QF E5LV0h *"nr ( NM 2M lM M L 4M L *M @tL D$L L & & XK RK NK @K 0K (K $K K J ~J jJ J I tI nI fI I pH G 4G h5h%{D-OFS 0E@ɀ02BZjxS4F+ ـW  c	 jq)N xDDD ,F /E@  B(أy?^ +B F>?Fb(FJFSF5FXr  BxDO<غxD@ 0k *T B/@Eozz9zAc*C  @%@<xD8)FxD 
k*& .E"0BT}D  0B F4bF(F> !!E ! )HxD  8B0FBF =!FFHxDO<XHFxDO<PHxD  k) //@ B?\NFM~D}D x (%%x %	%O	ACB C =4?Fo	ETE f   #F93BF? BL  +3 +ѡB F0FN  ) /?`/@ 0 BHxDO<ŹHxDO<𾹢HxD( 0*B?ѮjyFyC``@\B!HDD"LxD ɲD <4FD$0D((D,$D0 /E4 0 8E?	
 ?T * /@	E @ ɲҲHFFPFZFF +l (e )^\H<?xDcg/]+FEYF| .SHxDvQHxDp  8B?0FF !FFGHxDZFHxDV(i O+oBHxDL  0;B?0FF !FF8HxDO<ĸ0
,	(/HxDO<UFF7+HxDO<  'HxDO<𜸸j dI jI hI I :H G G G H |H H ^G fG @G F F F F  F F F F F F E E E E E E TE 6D C  D 
Fh$N+h~D9ٌh!HxDih	HxDH3Xh ( "cJozDJzDHIxDyDJ ozDH$ dIxDyDHxDz 
JzD d D D VD TD jD |D >D ND TD *D D IB-O )4UF}D	,5X0h dExDBxD:!x)#[xD,axxJF* LO 0? J4 JJ xDxD/ DxD^' aF@+ IĉDxD\!@XAFxD|xD %)))`xDв (@~ RDDDxD^) "zzF,xD3hk )?fh /@!zz
?U "0XB ʁHIJyDzDD*XDIHFyDxD	
) m) d) l;BB d
EȿFIFF	LJXh )@
mPe (Mam("+ae\
D IF80h0B-:xPF$yx7M )0hJBؼF; @C O  (=uFXFk2hFJB!" THxDHxDx)l³HDxD\' JFHxDHxDMK}D{D(FS(/ 򲀧J(FzDR'`@[HxDqHAFxDkLJ|DzD FR(/ !x  X FD^'NHHDxD^(/6܏KH{DxDS'~:H9FxDxH9FxDroHIFxDlB?k@@S9B?_@@ @#BxH9FxDJvH'	xDBz
FRsHxD:T( Fh +8mHe (Qcm)!ce
BB?ݭ1h  0B^H9FxDN\H9FxDL"@"+) TnBT(  @B O`@@O !9nBT) 8!:('""PU0 c D D D C D | D | C C vC C  | ~C C @B B dC B LC rB DB XB A Pz A A 6B bA z y FA ZA A y |y by @ y A @ @ @ `@ @ @ ? @ 0
0F;B؍x
xKxx@%I yDG0 @ X5-OFT{DFX;h9B %x-8)FxDk *@S > yDbxxD*F`@bhyDxD*F@F FbFFpF F)FxD ZFSF4 .9h B T4}D{D$DyDzDxD	(
 ց  t k(@HFRF*v,D?8h0B}em#[-O OBH @	ZF	**ZF+F
F
r8hiB SBR@E 𵀯@"EMл QE#[bRHxDPah	 ) 𛁠@㈁[HxDBh hHX #|`}O.NN|I	HN xD:hk)yrHxD @c[HxD
ah	 ) O@∁RHxDhBFIFH"}yDxD*!i	RFFHBF xDi iHX!  0% O.#$NN"0I	HN xD,  #-<	BFFah	 )@퀚HxD	 Fh IF~yD
*+"iciFHaF BFxDhi	"jHP%0$) '(CN&0I	|HN xDD#硈I∉RhsHxD6`@ z"ycylH PxD$ N#<N|BFF]HxDch +VZHxDh	hH^`|`}CN|I	MHN xDHH!ybyxDy DHaFxDBHaFxD@I@HbxyDxD*l2FF=HxD<HxD:HxDiHFF7HxDHF
F3HxD
2I 2FyD*t/IHFRFyD*l ] l@ @ * @  f@ 6 @ @ @ 6A  rA |A .@ A @ @ @ 
 @ V? > >? ? x> ? ~= = = = = 2= &= ;  ; H= >= 4= "= ,< < 0ڲ	*F
١A+١a*ءW 7 F
FI0yDG   :? -O]<FKDIX`yD2h%N !OrF / 
tI FyDBF ( IyD4 "F:BF  ) 
 &2( ݀ *(@!  <F 'I xX0h   òk`F0 Ӳ + F:!zF ( 	O 
 F (F٘J`zD FPF  DF FO
  FF5 F ( Ԁ'(0)  F(FbOx*!FBFOpF (  FOrfn!`f:DYFF ( FYF gI8FyDF ( kF F@1:F<ꐱ F
!Ob "x#* *(F!F8F%0hB@m
m*!FBFOs,
!)GI(F0yDG' ,  x(w >BLܘ )OИ0kO 	J(FF(F 
	 		 )F*!FJFOsO$I(F0yDG!I(F0"FyDGI(F0"FyDGI(F0yDG8I(F0yDGxFkFFkF JW 4? ? ? 8> *> = = < < < = < -OFF6KDFNF[ ~Dܐ7hh+ / `B@"hI@F0yDGbhI@F0yDGI0@FyDRFGh0 + ̀(x	* *O:PF+hB@-YFI (ZFR (FSF B	$h , SF BѢ
* "t (#FpXEȿ O
PvB !"O sF > (
<  ;F FF.ys
F44B۹ Ћ 0`EI@F0yDGtI P *kiI hh{FBњ*љh*iBh +l0 +Ml0 +G,H,JHxDzD#3`d  (?6x *?2d
D@F"dix[YFPF|F (dd h0 +I@F yDGmH!H"O:[0xDT3S  < < < ; : : : : @R: pF0FF F)F#M}DF"HxD!KXhKiFI@PB&RIHyDxD)qFRHxDF@@^E
RIHyDxD)XFHxDHxD
H1FxDp@:) P >: &:  : :  $: 9 : -O
FTPFPDLDLDLDIDF|DyDH	B рHdBKBN(F1F HB /ٰOv HBP  HBAOHpB+F3+R@PB@0MfY7hxh (@ހF@Bndذ oѦH)F2F#Xh HB(Ӡ@G8((F1Ff H)F2F#Xh (F1F OOcBqh
F	  .ЋHxD(F1FY |H#XhJh *_h@)0:@QB	@.hwh /@F HFB;H5Bf)F2F;FT  h GjIcXhk (G(F1FR ;(F1F! 5H7B
HbB?(F1F &\HxDv(F1FU (F1F:F +FIF
RB2[^ +>LK{DLHxDPh !HH"T0xDT3N
FXFQF)FHF4
FaFF@F	)F 1K{D #=#F 	
 ( F1Fhm + F9F) F= #pFCF 
 (@F1F
H!Xhm *ޮ@F9F) . : :  9 P  : 8 7 7 7 @7 (7 K
*-G{DFFF@򚀏JX3hXh (aѡ=I@YHE

 @FSFF*F
GP3hXh ( m@F)F)Q
+F AF (3hXh (Ѡ\F FXQFFnHxDb3hYi ) F@E@RfIfHyDxD)FdHxDHcH9FxDD3h.F F*AFF\HxD42hSi+FI@SB@@UIUHyDxD)FSHxDRH9F=xDqMHxDFI@SBf@GIGHyDxD)FRDHxDPFF FQFF>HxD2hSiñFIJEI@8I8HyDxD)F6HxD5H9FxD3hBF[IE0@/I/HyDxD)kFR,HxDF[IER'I'HyDxD)UFR$HxDS"HxD{!HxDIHxD L V5 ^5  n5 l5 4 5  5 5 `5 4 @ 4 \4 l4  |4 z4 4  4 3  3 3 3 3 FhFh  -OF$FzDFO4{Dh (.)F/FQWO0@R@"hSh +8ѕ 

	P+ @+ Ā"hPh (em (]	x $D/xx 1U4,` !Dkp1y)@qHxD
 F0FF hk )@Gi /@)x)  A) O) @) `* w @* dP* hHxDHQFZFCFxD8FIF(x
 F0F&h1kF )tHrixD)x)^wA) ׀O) ހ@) ր`+ ^ @+ DP+ :HxDvHxDQFZFCFp"ha
 8F
JF

 (V hBh *Lн0 +FI{FHxDLHxDH=HQFZFCFxD@ )l)e)tHxD4HxD.HRF)x[F xD$FH)xRF xD"h)s)l)ѳHxD
 F0F#hkF )@Xi (l)x) ۀ A) O) @) ߀`*  @* P* HxDHQF2FCFxDyHxDHxDHxDHxD
HxDHxDHxD:HxD5HxD0HxD+HxD&*>*5*ஃHxDHQF2FCFxD,+Y+P+zHxDzFwH)xRF xDp)Y)R){pHxDdoHxD^lHxDVjHxDPgHxDHeHxDBbHxD:`HxD4]HxD,[HxD&XHxDVHxD;THxD6SHxD1QHxD
,PHxD'NHxD "***IHxDGHxD
DHxDBHxD?HxD=HxDI } n4 V4 <5 v5 4 4 4 n4 4 4 4 4 3 3 3 3 3 43 b3 P3 *3 3 *3 3 3 2 3 3 2 2 2 2 Z2 n2 2 2 p2 j2 t2 N2 82 Z2 02 .2 1 1 1 1 1 1 1 1 1 1 1 1 FhFh
  8FxFYJ+zD\S+YW+Q+  8+Q+	+QHX
hk +d 8MHX
hk +Qkx+٢x
+{+~+j_aAHxDkxx?+A/+B 6JòzD5JzD4K_{D3K{D3HxD 8*IRXhk8.HxxxD 8+HxD*HxD#yEB%I&HxyDxD)uxF#HxD 8`y#yEN @A1  (۔ )۔  (ڈ )ڃ )۔  (z C 0 <0 >0 60 80 0 :0 *0  0 / ] / -CF(LF(N|DF0PYhNi .9h-!I"HyDxD)( K!I*FyDFX)IF:F3F HxDNIHyDxD)I*FyDFH X(IF:F3F HxD2HFBFxDC9 &B / n\ </ / h/ 6\ . PH/ / uK)-O{DFF@ƀqJxX ABQ mI+hyDZh
lIyDlHxDkIyD / iH2FxD!x )@(hk )ldIdHyDbxxD(FbHxD
+hbxE8kJZI 'hhyDhD DkDWJXHFuFzDxD )K#x +Wbx *TX&0# F!FGbxF 	k ) /H)(  bxkOpp 2DOcxPE )?:HxDO9 7I8HbxyDxD(bxKFF4HxD`3IyDs"x [& (cx"xF(FP#x +( 0bxk%HxD>\#HxDO9ǽ!HIFxDO9 )HIFxDO9 PA 8. `/ / \/ p/ / Z / - / =  / / . . Z . H. 4. 
. . n. -OFxNF~D@Ex  +	C Aԥx+ O	 )1ѫ	CCH6X1h0]Bؠ\	 (& 
 $ݑH %xD(FjxBe O	 )	Co"O		
B	0	+'и $м 0[Ih0 )@	
 F (kH xDT   (4ѹeHxDH1hLJhr,؁,00
F$ZH %xD.,U=؎,|3hXh ( Yk )|XFaF(vMHxD 8FIFBF,aЀ, #aF XFbF
 (W1hHh (dm *O
 9F(H,8,XFaFl? IF8FBF` h ,H,I0xDyDC(F  "K{D"H!F xD
0hYFbFXFaFXFaFK{D 8FIFBF3hm)F 8FBF1h
? . - - 6- , V l* + + + KJ{D-OFX
F#h EZؙ * +@wIwHyDxD(!FFuHxDF	 R  )7AkIlHyDxD(!FFiHxD(hIHF*FyD(~  k+@PF*F(sOrrQ
/%%h0E?XHxD(FVIWHyDxD(UI yDFTHxD(1F+FFQHxD hk
 /0		E$FHNIHDIJ~DIKxDIIzD{D yD `YF P2F(n2F+FF .-#hhB E=>
.Q& DG       Y   A    ȱF3E(E#h-]PF(#hk(^W	n#hPF*F(< v) U + <) rU + * + ( 
U * T * * U * ) ) * 8KJ{DhhXh BF)F8@HxD& F8 9 ) 8KJ{DhhXh BF)F8@HxD F8 r9 ( pF)M0)K}DXh :B9k`@["H
 2OqxD1@aI! I  iXT1 p`h fv[FH Or2@xDO0p(!
H"U0xDT3O0p .9 + @L+ X+ -OFTO
FDRRKW  k )aѸc[ \rTܱWBHxDO9ah	>HTxDZ ,^[	3HxDH ,Q  Ch +>-H)FxD< ,/  k )%(HxD0HE$%HQFxDO9#I2F#HyDxD(F!HxD[	HxDHxD
XFAFOHRFI8XyD(RFFHxDHxDh8 n+ * * * * * H* rR D* L* * <J* F* $* -OFFFF5CшB8 )-)F"KDD{D hBWFOF4\9FF ##-C +H1FxDO9H1FZFxDO9HxDO9 * ) 8* ) ) ) -OFFFF0?ԈB4 )+#F KDD{DYFEE"RHF?>@   .@  (HAFxDO9HAF:FxDO9HxDO9 <) z) 4) ( ) (  o-AFFFF
OsBH!FxDA9HxD0FAF:F+F
HxDA9uHxD0FAF:F+FqHxDA9e ( ( ( ( ( -GFFDRKX  k )@*em=@O \4- rHxDG9+- 0k (}Ѻ*mjH4xD \ +PI-T	_H=xDrF .>  Ah )ZYH9FxDb  k +`UHxDZH E [غ  o`  !F*FG+"Rxx=4 . +F2F#F )B-؉<I2F<HyDxD(F:HxDhT	7H=xD硈I4HxDyRF2IX yD(RFF/HxD-HxDHlEqEСbE&HQFxDG8u F)FGH F)FG F)FG)F F*FG F)FG 4 ' ,( ' 6' 4' R& |N N& X' 0' <\& X& n& R& )pF
F[HxD!F<,
HxDp@80F)Fp@0F)Fp@߼HxDp@8 X& P& % PKQJ{DpFXF+h AB
LH!xxDZ"xb+h`JBFHxDp@8ݾp- NBJBH!zDcxxD([F?HxD:>H1FxD6+hJB9I:HxyDxD'F7HxD"+hJB3HyxD+h0YBy )3 BsF(HxD (hk *%HxDx'#HxD y' HayxDHxD+h ! 'wX" HxD*h0" p@8e 2 &  ' \& ,M ^& X& F& L J& >& .& && $&  & (& % DUbHF $N@!J~DzD	0FOz~wd	[	 0Fc % -OFWB7F}DFgXhcY3h0YB"x*= < < < k< <  <    < < < + !"U0xDT3Bc 0B@e	Eأhh'Oq
zD
XXxDyD'FP:FxD2hk +к yB )@e +!x)	)'
)%
)#)!))))	xD0h c[IF2hk (݈/#x)+ :B?by: s (є0	xD 	) vxDlB?\* p6{D@∁Rd& OqzD
"
tB?>DcxyD +?h+ m4&Oq
zD
Zcx +@.#B"&Oq
#yzD
G;B?I∋R%Oq zD

1 ;B?IRh %KF zDOq

OqbOqF
\Fh o%
(qzDF 
OqFOqF
@F i SP%
(qzDF 
E?,,yDbxxD'F@FFF BOqJF CF
f

(DF   I@F Oq3h! B?kr@DyDf@FOq@DI;@򑁾aobH#$qzD[	 Oq@F`$[FzDq@D@FOqcy+@D q8$zDAFFE?bx* * h* OyDxD'F@FOqJFF

!0[ " AFJzDJzDHIFCF	xD4ޭ2h B?˭OFKDJDH{DzDxDD	8F*F'ME|0hP)B @%mYF'JF' JFSFF -=Ѻ8F*F'1h0B dh$!B"ԽHxDHxD  dE? F9FRFIhc[F@FdAFFHxD2hk|	 ;2h9E?/D7FtFF;h; 8E?HFPF-0Fq"F 		@FOq? >FAF(JOq
zD
K2H		qOai+J
zD	O[	O\ uIyDtJ		qsFzD~pK{DaqE@F_kJOqzD F

[@F <GaJOq zDF
j
B F;  B?zC[b|*.* @FLJOqzD F
<
	[
DJOqzDF
.
@FFHFY=JOqzD@FFHF{8JOqzD0 @( 
' PK n' l' P' & & # ,$ # ^% h% v% \% J% % # 2I # # R# B# # t" :G V! T! #  # # J$ H$ $ # r# j" H!      @    L   t @ -AG )BF
F4FD@F= ##B #+B: l# -OFM,MKB}DX8h$ InX3h B ax) O) EHxDah	HxD2hk +@cx +@؀0h9E Āk*@THxDHxD!|) [) S)  HxD3hk (@'
 AF@Cd ( NH|xDx) |b|@3#(F9 ) 3h8
H(4 8EwآJzDDIDHJyDxDzDgF%
 QF@C  ( ҀH"xcxxD4) 	94? ـ3h
 DF 8E9Fk+@(FXFhXIyDX@8FL1h
k *}HxxD|HxxDahJ 	xHxDhK 	tHxD!qH"U0xDT3$:hB@
miHxD[ `zheIyDdIyD @ӲbJzDbJzD  _ +:_K{D _ qlD   (fXHxDXH xDVH!zxDTHaxDh1RQHxD] MHxDzLHxDvJK{DJHxDn  pPFH!xbxxDb-DH|xD\BH!}xDXAHa}xDRv  R<HxDH:HxDBQ9HxD>7HxD86HxDD4H|xD,& h# t# x# t# x# j# " 4# (# " $" " T# ! " " " " @" (!               8! :! 8! 2!     f   ! ! ! ! ! `! :!         -CF$HFxDNE-5F 	B! (,ЩE* 8 $B'"DE.FuE3xE0x (MEбEHxD" C7!. .Frx *.    *  K I{DF[XhBӢR
HxD` ~FHxD@7 "   -OL
FK|DXN
hY<h`FBe;0E` -^cx +OBKDDJFHKDFFzDxD{DIF"xPF&cx"x  F@F!xJ*}	 	    |   9 ax 8hk+m`x dmBcE -bx B!	"HS0xDT3"hB@(8h! Bax ") ) )xFx8D\"chIZyD
 !JDzDpF(aFHxD9h
k*@Ԁcx :&8h0Bؠ@㈁[uHxDhs9h" Bah	oHxDZe9h" B?sah	bx*gJzDgHxDFQcxeIyD &I9h  :B?VSx	`x(RZHZIxDxyD&`D
chX.UIVJyD
zD!

OH cFxD	hY$(!JJDzD`FaFEHxD
CH xDcFD	hY=IyD<H=IxDxyD&D
ch9JzD~8E?  
< 0 8E?֮  cx)I yD& B !   >    2  8  @  l T  &    d N N=  t S   R   d   < 0   t -OF[  }DFFU 0.X3hE Pk (@yD"xxD&FxD"1hk (@M"xS+ vN;;MM;^^[[zgg N  +?IB?D 2
4

D
X   HF 
2
ZF:![3BD9  c #3>,BpFD x@OrE	 OCE o ) Rt	xD1hk (L0"B#أ[T	LDxD B0hB 8B<D8F7F@FB0h/ :B!	"U0xDT3 B@IFxD FQ3hk *IFxD0hkDE،* / ǆxD0h0;B xD좈R) 1hk +8F;2hkAF F1h
k3h  :BFLxDn0h9B8FF4xD^3hk *( (0hk1h0;B?f8FiFxDB2hk (?{bhyDxD&FxD, 1h
k_1h0;B?88F;FxD2hk (?M?A@xD 2h 0Bؠ@ O11 
@\k *@߅;B@tLxD0hk1h B?I,xD2hk0h 0;B?ڮax) ܃ah	xD1h
k1h 0B?®IxD0hk@ǃ3hB [FxD1h
k * (?@0 ;B |vO xVDtv}DttDp&DODzD$
,oFH &F	>  %
E2hk) 
(3h  :B8$O 3hXF :B(-F8FEExD] KB@
Ea3h
F9B,|xD2hk3hk *? B?XXbyyDxD'y&Fmhh-89F`yD, \.0xD V2hk2h  9B?ax )@FxD2hk1h 0B?ah	xDx1h
kIFxDp3hk*? FJFyD&0hk *? B?rRxDN@
 (@
@ +?O >0h 0;E?J<<bxyDxD&F0xD bx* 𪪙 1h0X`E)B{% (!D<*?^"DpG   -----}  ----------}  -------------------------  W  ------9  --------  @FF !FFHxDr3hk@FFHxDh2hk0hk)?
pEu  1 SE?Kj
E?f R"
 )\  !PF; B?P (?M Pm* r* ^@FD{+FFHxD2hkT
pE/  1 HxD (; E + IyD  R - |JzD Z + xK{D  n - ԃD j - qM}D  p (  nHxDmH xD裈+@ iH/xD `x( @71h0 ;B / k_HxD) 2hkZHxDYHxDI *@TIyDTHxDRHxDQHxDOHIFxD~1h
k) JHxDr0hkGH)FxDji  9  t   @ ,  f f   \  7 >    V  2     5 v  6   5    V & x     3     D r 8 , ^ 
  $     p \ h B d H >  ) 0hxD2hk
XIFxD1h
kHxD@xD3hkE <,xD$xDcx+ ʁ3hk *@@ ʀ
~ *@xD/"#/ ܥ$%܅!DD>F)FfEeFg8FFPFn9i	@FhB (? D / 6yD  U + *%zD T / t5{D  e , duD e , XU}D  ~ , HE|D | ( 8xD4 xDj *@M xD "}KB@ʁ5h(k (@KxDE&qEE" I>!ixD6 *@xD/?,0hk )?'xD  *@فxD *@ƁxDR +?
@xyDxxDah	lxD0hk۹ah	XxD3hkйM J  >4"0!U0xDT33hkxDr3hk8FFxDf0hk 
BE?xȲ (@@_` DqFHxDD0h B?Xg?:2ET k(@JH4 %xD&D3h9B?; F5;4F@FBHxD] 2hkDHxD3h0 "+ +?ZKHxD/1h
k *@cx" +?I:HxD0hk FHxD/0hk )оHxDcx" +?*@FF(F!FFHxD0hk@FF(F!FFHxD1h
k/?1h
k *?HxDH)F,xD0hkʸ,HxD3hk(/МHxD~HxDx JEL3hkHxDhH4xDdE%DE" ^1h,
k1h :B?/ FHxD>AFtH|HxD{L|D{M}DzODzK{DyJzDyIyDAF[rvHxDcx" +?whrIyDaD*qK{DpJzDpIyDB

jHxDiHxD5gHxD!fHxDVdIyDQdH9FxDbHxD`HxD_HxD^M}D]HxD[HxDZHxDmXHxDbVHxD FRHxD ^    n  v  T         r  
      
    @     
 V 
 D    n 8      b 	 2        ^      : 
 &  B   
   
 
 x f  
 -OFf6
F~DX hBi *40YE ؛ /   1@ K[      k  /  B@߁!"V0xDT3O6rxDO6JxD-@G
@C h E 򚀻I`xD9F#hk (@ /   B~4&4yD0uD,%D,5,zD{DyD		Ff %F\ @	ME9"hk+ 	J!h  B4O 
!h B+

F@F. 0WEXDxD"] 7"B#	B"h	 NF0BTxD#hkiB )@8xD#hk,xD-  h WE?0 + {xDd)HxD!h  B?0 +@-H)FxD#hkHxD- H)FxD#hkHxDXF)FK#hk ;B?ǮFHxD#hk B?FHxD#hky;B -@%p?0FF F 'AJFCF HxDZ	p@`O\ HxDJ#hkC;B Ѐ-@p?0FF F 'AJFCF HxD$   pB`O&0HxD#hk
 SE?
XF)F "  (?IHxDO6XF)F3#hk\FHxD-?H)FxD#hkHxD@#h PEP؛) d)F@ BAp? /?Ʈ&FHxD h
 B,ػ
p / 𙀻 3B k(@rH &ȁxDDF@FB@"h160FBeHxDz#hktcHxDt#hkm`HxDl#hkf^H)FxDd#hk^[HxD^YH9FxDX3WH)FxDR#hkKTH)FxDJ#hkCQH)FxDB#hk;FMHxD8uFGHxD*0F%F] *#h YAHxD#hk>H9FxD#hk
;H9FxD] #hk7HxD5HxD 6	 @  ` < N v & & d Z     L @ 8     p N L    
 
      | n  p 4    (  X x  \ z F )E *;&H!xxDbxx!yyxy`y#zGLBFL FoA	PB(Fm :FI` $F`{9F'{z
H xDRxBxxHxDHxBxxHxD@ ^    -GFIH$
FxD,GKDYp8h9EMغ@d`v0[=I  <HyDxD$F @  0= 4H	xD
-C


;h<0;E=U
-

2PF! " ,PF!F"F;h>0;E|!H"Y0xDT3G5wPF1F" ;h80;E="
-

FQH)FxDG52     @$   xJzD < ,)MRYh5B }YBYx)NBFfDBӃ*Љ*d ,
ݫBx2*.FBFFipG)?YL  )F0
F;4[+*D9K\C D + xI"B"CC0pG I BpG-OF	xVFF		}D)cxDx9	) p/X8haE].cٓ 
O
a[[BfQE^8hd B8@[ k (m *G 
Az))XЄ)!)0%F0 !FFPxDXF 85X8hBh * #FaE$xD1FxDQFxD;hYi)0F0!FFxDn@z ( IhxD`qxxDZTx. . xDJz )@𷁑IxD`ByD$ZzyDFU $AF3F  DzdxDK[TxDpHDTxD<}D844yDxD0${DzD((4 FxD{D	
XF9h PE ~ P*F$FXF-@;h PB g@򩁡E ;h   E TD- 7=-:I	DyD ) ;h 
BHxDHxDHxD8hHxD~HxDx-Д-4Ѓ-ѹ@9	@.M-ًѮBHxDZNO
~DE
 F0FHUE

, HO	}@
BE ՀF[ (
FRHxD&x@׀	P )O
O
%%@݀N.K	 BٚHxD )NHC>HxDFG@q@JDD8zD D
tFgF<S,-;FYPFEXF\҆B !F
,Q,{HxDyHxDxHxDvHO 
xDtIVEyDsIyD
 	S} nHxDBQF "= (?YI@eHxDn@DFF<XHxD VUHxDRSHxDL QHIFxDDOHIFxD>:KHIFxD4IHIFxD.GHIFxD(EHIFxD {@HQzxD>HIFxD jZ 
 @ N	 D	 F	 
 z
 0	 	  	 T
	  	 	 	    	  `	 	 	  0 n > ^ \  0 @    *     (     < (   z n v R 0 0 FM
|F}DS+ B83@ @@
@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@ @@@@  @@  @@@ @@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@  @@@@@@@@@@@@@ @@@@ @@@  @@@@@@@@@@@@@@@@@@ `h!hh`hh"h"h`hhz!`h W (`aݝ ahh	"ta``P`hh4`hh"h
`hhRI0F0yDhG`hh
`hx"t (`aahh	"|a``#ahh0F#h ] (`a ahh"t```
`hh`hh`hh `h!hh" "h g{`hh"hAu`hhp "hț@hahhL,Y hJ!h
k *]I0F0yDGU`hhNP "hțHFFpI0FPyDhG
I0F0yDhG4
I0F0yD"|G `   4  ^  $iF 0z0)M
FF}D h0	+
+HFxD05 F0 	H!F+Xh0ѺHxD05u P .  -OFMKF}DX8h (:B ')@Ah ) v	(E;hk (@ B8y8
F(  D%FO 	B (@-6EE ߀+                                      D0 +&          ` [                          V             Q    r    l                    [HF2FxD 	 AF	( Fc-*B2p.ьHIyyD(Xy$y )FFHxD;h$HxDHxD;hk (?HxD }H
xD{HxDzHxD++?+!+?`FFXFFPFiHxD(F1F"FKF7(F:h+x 8h2F)F #F&:h0v (F1Fb(F1F](F!F\;h  bEN+xO	(F!F:h+x (F1F7(F1F2(F!F
-(F W9h+x (F1F"F(F 9h0 o(F!F2F(F1F*(F!F2FF(F1F"FKF (F1F"FKF8h)F2F(F 9h+x >   ^ T     \  @  `  f    r  -OFHM #  }D DGODDDD\aE](F^E[FZBQBxD^EJ)<^!DpG_   I   /      +1	HFt[F^E)4ݚF@Fd[F+,AI8FZ[F(&R[F+PFJ[FHxDDHxDO4νHxD8HxD4HxD.
HxD* j :    X  f    -OF:tO 	KHD{DIxDJyDKzD{D	Q	BHxDO4z	\E
MDB) ) @FFB) %) 	@XHRFFxD) (@@WDIHFxD)) (@>@3	pFHxD * ɀ) F 	(@@〞H	xDrW )Ѐ@Ӳ +@ _ (@Ӳ +@_s	x ) HxDLHyyxDH	HxD@ *	
u)@À@𢀱D	zHFxD"O (@󎀺
@	xx *B9y			0+q	
 /g	f\HFxD*mXHxD0 +?P	QF G8y (?~xNHxDMH9yxD	.S Ӳ +?QD JH 7A +8HxD7HQFFxD4HxD3HQFFxD0HxD~/HQFFxDx,HxDr+HxDn|)HxDhw(HxDdr&HQFFxD\k$HxDXf"HQFFxDP_ 8   8 D    @         l    < v  : \   j    
 KJ{DpFX01h UB`xA hB dEHxD3hk
(Fp(Fp	L!	H"O5YxDT3(Fp X  @ KJ{DpFX01h UB`xA hB dEHxD3hk
(Fp(Fp	L!	H	"O5YxDT3(Fp  l @J K{DAIJ0Xh :BHxDO0L!H	"YxDT3O0h   @ -CFh5J-zD9FQ
V/I0VX2hPh (*4=
  F*F
1hJh *,н @@[FHxD,3hm 	HxD"
 F8FIFCFFHxD F)F"
 F8FIFCFFHxD   p X . 
FF𵇰xxyRy
L |DOqJ F PzDn F  VKWJ{D-GFS
F 0 Bg4F4+R=K+dd) HHxD -   BI 'DD%  0
;B:2  6FHF@= ""7/̿ "@4 *U  B&F6cF[[F@Fd  0!0F #2 (' ZH)FxDG4߹)HxDH  Bs[[FHxDG4ŹHxDG4HxD*HxD$z     |   0   <K=J{D-AFS
F 0 BC"R=)D)2HxDA4|0HxD -S 0 B&*O4 &D  0B!h	@㈂[8F= !!641.̿ ! )ѽH)FxDA4?HxD꽱   E	@#[HxDA4"L    < <  8
FF[@UBBI@SRB,HPB@VCB/ H"FxD8@4@R@B+CB@QLaEH!FxD8@4(F!F8@(F!F8@:HxD!F>(F!F8@%H!FxD8@4¸(F!F8@^HxD "    v 'K(J{DpFXF+hXh (=E$  F[HxD  
"FRHxD(h0BH1FxDp@4p`@ F:p@UHxD+h t h V   4xKJ{Dp $XFD0F"V 4,O4 Fp  XFL!J|DzD F2 F:  -OTLFF|D (vQKT  
B^LM440}DLKDD{D1F"" FI@  0 B=
 ` ,ȿO 
(F

PTE( P  BM	1F"~& @D
/'8FFHFVD,) 0龱 p 0 B
//D^' )(H &xD0F[' 0FQF GFQ' )HxD)  &8FGF V t x   Ч  | -CFGIGHFyDFLxDFEK|DX9h 8B)F"$6,<H!FxD	9HxD 	6H6IxDyD  4HxD3HxD<ԱG0IyD0HxDp.IyD-IyD-HxD~.:h)0B"	#HxDh:h0B#  KFBFHxDPI$yDrsIyDN F               @ 4 JB *
FIFyD  H	XhcEJzD`mN $O~DD ;h]0F4B  l    F
F$H$IxDyD"K#J{DX3h B."hF!F/H9FxD 
(dD\ aHxD2hk+-`F   9F (HIxDyD   x    >   h F
F$H$IxDyD"K#J{DX3h B."hF!F/H9FxDn 
(dD\ aHxD`2hk+-`F  V 9F/ (HIxDyDD    B @  "  .  -CF0I0HFyD/MxDF".K}DX(h9B6"!FS ('%JzDR   *!#HIF0xD   ("+h0! B @ ;FBFV调AFHIxDyD  HxD  (Н    X J ^   0F#I#HyDxD"K"J{DX+h B"!F RHxD(hk )FR+@0HIxDyD     @ 9X (н     X  t 0F;I;HyDxDX:K:J{DXh9BE)F"	)@D1HxD>0H!FxD:/H
xD4 R+H5 $xD*)HxD&	(F
4
m0[B ,, 4(F
 (H %IxDyD (F0HxD,
PD\$!HxD FGF & d         v  * h -AF  F#F (fvB3( %miM /EE,O O9Xѱ"HxD   * c[HxDaI u) 0FH)FxDHNxD0FHxDz`@ 
jhBҙU!!	HxDf!E     b 0F#I#HyDxDL"K"J{DX+h B"!F| RHxD4(hk )FR+@0HIxDyD     @ 9 (н   L  X  $ 0F#I#HyDxD"K"J{DX+h B"!F$ RHxD(hk )FR+@0HIxDyD     @ 9 (н    "  2  0F#I#HyDxD"K"J{DX+h B"!F RHxD(hk )FR+@0HIxDyDn    n @ 9D (н  :  r 0   0F#I#HyDxDD"K"J{DX+h B"!Ft RHxD,(hk )FR+@0HIxDyD     @ 9 (н   <  d  4 -OFMHF}DLxDF)F|DKXh :EAF"e-Q[h~
wH)FO xDXF ( ̀
$pMD}DY   * mHxDGDiKjHB4FFhID{DxDyDE8E , -UXFAF*F#FFE8EӷB[HxD $%FXH xDx $(sQM}DF * 
$(4MMD}D\   *IM}DF * 
$(EMD}D[   *AM}DF *ѽ   *0ۻ0[
E!( 4  RSHFY&   (ۻIXF0/R) Fr
l! !|MD}D^   *?OM
$}DF *5h    8 H R |     <       r b ʛ Ԓ  -CF
FHIxDFyDJKzDX2h 8B "!F	9-O GF!ٝ ( hD^  ) HxD~	H!AxDv  /H`	1h0;BP"!F (YD\  )RЄHxDR  (@сHIxDyDH RHxD@ /и %xB ("1h0E؝ C+hPP`H@80qH9FxD"2hk(  "@F9F (iHiIxDyD  T (hdHxD_F[Fy/\^H9FxD/d[H9FxDz/-XH9FxDr/dUH9FxDjSH9FxD /cGD"LEZ/VKH9FxDR/HH9FxDJ@F`09F ``F>HxD5@F9FF:HxD+@FF 9F2FF3HxD@FF 9F2FF,HxD~@F9FF(HxDt@F`09F ``FHxD^    F 8 4      n  X b  z   B *  D  0  p r -C*LF*K !|DFFX"+h!0x	)8)  !+hB8#V
" 
Fqhhh IG bX 7ZHE
"" ( 77E@Fh#0Fl v X-OFL
K|DFXE(h"8FHxDIfX2hk +@:  (RH!xD8F"R۸ AF"fF (@ڀFAF] (@HxDxJ !(hJzDR  )bHxDjK0 IyD JòzDJzDHxDV1h
k *@(hB@tH!xDD8F#
@+ *@𡀄EѻHxD. 8Fh (CFg`f`HxD`HxDgFIHxD		0hk *?WHxD!3hk)JHxD!8FHxD!:  (8IyDoHxDT: K@H QF JF)0hk +?e
FZE?_	HZFxDWHxD+
( D^  ) zHxDxHxD 	(x(F"D  T`   0 0	D(^
F"XCF
 	, S
\hhh
	`(L`
`, X0@ Q```Fgbfbc r AIyD `qFwF"D  T`   0
dD	 	 FF"(#	,0A`,00c`v   n . V r  b 2 ^  F Z T H 6 2     ڔ    XL * -OFFHIxDMyDFFK}DX0h9BI!F"	)$IHxDrHQFxDn&P)FI+F _[* )FI8ËD\#  * m\%HxDJ%  ( HxDB %% xH %IxDyD0(FHxD(iعJzDR* )cзHxD&P+F[)F _Iy*@mgFHxD%  *@2EҥHxD&IO FB ʀ( 𸀝%Oss0hYF #) Om&FHxD%  (y0%PFFmFa(F@O0+F[O m@FyHxDO+F[ ۰O)FIyڲO m@FkHxDztmFgHxDp _ m PF`HxD`Z*FRxD\!0 +?Gm\ FXHxDL %) (?% ?EiONB4<F,F~DXF#!F2FfBBFV YFKF:F (JF@IXyD?IyD?HxD< O*+F[@(,*FRCD^# mB^"0HxD(F@m-IyDL(F@m+IyD}m<F(HxDm@0F)FIm!IyDK  R   t    b &   :   ` &   x   N & $ <      t *FFFF,*-x3Ix!xx +/I0F yDG 0F!F*F;F 0F0 7
x*HxDLI0yDG	I0yDG0F!*;Fv :    Fx$J@?zDز!JzD!HxD bx@?J_zD[HxD_b@ J?òzDHxDx@?вJzD(HxD 
JzDJzDJzD       r  l f ` -OhEFd5|D	X8h 	:B 0Ah ) Ax)@79h	tz
kc
	 ((
	PJh@yD * !	xD
yDxD!/0F[ @rxO\O xpD xD\I * sxX " "HFF8	OyD	#Oy
D	"C @yD@xD 84yDkxDD!	FxD)FP!FFK)FZF#F HxD_ɱ:h Ebغ I R0[H

	xD@8hEDؚ@
 P	cBE7ءEIJyDKzD{DHIJxDyDzD
*F		!T*F#FF  	 	 		e 		e ` , 8!"HY0xDT3 HxDt  HxDnIyD0HxDb:hk(ݾIXFyD!
@8h0Eؚ@
 P	aBXELEٯH)FxD8  HxD2 !I*FyDF
!1FFHxD  ( AB f
PjBh
<FDWFF=xhB )F@F m"h E?g<)FFPFCv'FIHyDxD! FHxDnIHyDxD!wF}HxD
)YyI
?xHyDxD!{FvHxDJPЁsH-	DxDAF*F!OpKAF2F{DFS% !F QF*FFjHxD*iIXFyD!#fIyD]fN~D
eN~D)F!FFaI
yDF`HxD!	1F*F#F \HxDd ZHxD^;XHxDXWHxDT'FTHxDL
,,	 d?îKHxD6IIPF"FyD! FIyD9h0ZE? P-@HxDqx	PFiJ  4  Z  H d : (      $ & B   @ "   V    2 6 r N t z * P * j    $   L .   :  0       ~ ~ -O%LF|F|DFDO.	9 FBF;  F--D-ѻHxDJ90 FzD FJ 09zD@    t ` KJ{D-O
FXO!hY;h0B؄F\k6-
-Q  #hB@QZEؐ 	
? O\ O [E#IFZF
O D(,04>-2- IyDђIyDH2FxD-6-
  -4YEؐ 	OكHBFIxDyD
8ICFyDF~HxD}HBF}IxDyD  @yHxD:h	 AB?r06qHQxDF (9h B?ZhM}DhHDhIDhJxD,FyDzD	 CF!JFuxRF F SF 6Fh;hhB
Bغ)кu^к[RI0F*FyD  (5NHxDHKI@yDJIyDJJ zDHJzDHHxD4I-ݥF!	  
5F)h	jh F5UE\FO~~v08h0Bٷ
&/ICFyDF.HxD-ݥ  
D

F5FtFU+F	 FUE~    8     H j          t h   0    6  -O-FLKF|DJT X+hB
O 
PF 0B@!IyDFHxDn(h0B>zzz3HC
L
xDLV(hJB3x +lЫI6HO
yDxD@HDxDD8HI홊JxD(F$FyDzD 0 B 5x!ZFtx*F +F F@F
 0bB B=- ̀         ]      N  = % ] H$xDW~HO
}IxDyDP#, Ovv
1Z)>
 -($8,nHnIxyD(X |xFkHxD,xxhH6yCExDE	bHbIxyDX DxF_HxDb l %DLFFT	  *FHF5* +nB, ,O 	"6DLFFeFY;:":"F(F4:J KJE,p	9M}D(F<,e	(F2]3I8F"FyD  (U$,O  J*)HxDe$ZjS1+:,88FvF HxD. $tIj         V l     \l   ` p    ( \ , -K&	+H{D xDXF % ]F$HxDxS 1F MFHxDHxD
,FeFY+*g(z"F(F4

 zE
$?IHFyD  (?C* d  h" ,  KJ{DFXhB&#[IH
yDxD IyDFHxD< Fd@I pBHyDxD !	
FHxD(       r  `   -O*܋FFDF@I;Xp8hAh )<ћ )Oَ) _؃) 8hBh *FyDJFxDXF*FyDO 4) )M ):htShyDpyDlJFxDO1Q``  yDX  d  FLxD );hXh ( Xi ( $xDO1%) ˀ) 	1O
XFIF 0k)  F*FyD  (@ 	XF*FyDO 8h9E Bh *𽃛)@X0  ++Aʃ)A𯃛@ ,A$3+ɃF (Aƃ9h
kKh *AăPyDLyDH
JFxD@@
RFyDxD `O 0F  
xD9h
k* XF"yD M (Ъ
+ T   	1O 	1O8h	2O	xDO1E 	:E?- `)A)A,E
.Auk@ -YhA<Y}D8Y}D8"F4	yDxD 2)F JFF$	xDz)	)xDzDl0[	xDd @ * "HpFF8O~D#O~
D"CbyDxD,0[2FxD";hk)XF	"yD r;h,	 +,T,Fk*?0BLyDO T<xD4xDO1|)A|`v8hBFLF	9EA ! "X0xDT3O1y)An`v8hBFLF9E!F F
0[ @FxD 
I20[ (*
D #H  F  .D.>D.Cx yD xDX  Ѳ )d'zD1FxDH0xC ² *LyDxD4_ +7yDxD$   Ѳ )#yDxD@ز (yDxDxD  *yDxD0||yDxD FlxD9hk(\`PF"yD 0 (Sf)Aq`v;hB FLF8E?	 ! FR yDxD VaFFxD!  3FFxD9hk(	PF"yD (?<5F%{DTFzDyD 	A8h E?ݬEބP `	EلdF`WFxD\yDFFFD(2F
+F2FFF. -=FpFF
gF(?R  DG
  
  E
  

    ]  )    ]    ;  ;a  ;;;;;;;  ;  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;  c      
  ;	    ;3  M
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;Y  ;;;;;;;;;;  ;;;;;;  ;;/  ;;	  O  	  ;;  c	  ;;;;;;;;  IIPFJFyD|P       P" b Z   b ^  . 4   n 0 ,     "  z P  N 4    @   j 8 P $ J  (                @  : d  @ f ~ )A)`v:hB0FLF;E?	 ! @d` yDxDbFFDxD\@2FxDT9h
k*	,PF"yD (?۩<!)A`v8hBFLF9E?V!
 2FFxD ! FxD! tFxD
:hk+	PF"yD[ (?!<!|D$ F!² *xxDO0u1Fò + F9m )d- F8hk*	8
yD (?S

 	Nò +- F1F	² *Ф
- F1FD F!D- (ѣ- F2- ($ej~D
;h :BF0Fp* FѲ)ؚ
jxD`~DDt
"xX  +F0FP-HFL=?x8h SBR8j48~D4*
yD0jzD0:0~D{DDL :{D 
xD_`@?˲ +  :{DyD
,@? ( އ9{DyD	_b@?_ ) Ç9{DHFyD4 ?@8h9B?Hh F(Z *1FF
_e ̇TyD@? (D9{D}-Ю  B? =@	BCCyDX  "F0"FF 	xDz	 ?yD (-  B?s	xDV F )?cmdò +?X F! -m F (?J)$Ͳò +?? F! -T 0
B?0 FF@xDBe4h~D9h B?nF0F F_+%-#  0B?! FIFxD-		?:h CE?譙		
@yDxD*8h0B?ͭ F#FxD*	 ڭ;h
B?
	F\xD,í8h0B?V	"Բ0exDz|ⲕB?8h0YB~-  B?t RxDV-  B?_ RxDB @ )  % ,F F!`
F!>%C |yD|xDJ 0 PB?&ddyD xDFTxD) l6) H@	 jyDM ( `(6(fF${D$²yD
DD8;h SE?4F0h
 B?ج
	%F0hB?ʬ5;[XF0hB?[HF4
!	_*ee~D:h0B?F0F*! FӲ+ة`TeŲ~D:h0
;B?F0Ff F2
4 !_	+؉  BB?e	yD xDD|DFxD<_:h0;B?DF F*0F60!_
+M  BB?)@	D -?;U!FFHFC4&F?,9h BB?KB0F!FaTdͲ~D:h0B??F0F! F_+-  B?׫xD F,	':h_0XE?k.OV F @ꄩE)FΫB? F	˲dF9 +  JB?-@	 ,@>HxDp   CB?{IH yDxD&FHxDZi	?*?8h0E?] RHxD@	-	 m;hB?I!FHxD,\  JB?7IHyD xD FHxDkٲ)'8h	 B?	HxD h)9h	  B?!SFHxD );h	
 E?
	HxD  JB?ߪIHyD xDrFHxD0	 + aIjyD
 (?HxD;hHxD9hKh +~IyDHxD=~HxD"|HxDO/,~GxHxD~vHFxDxtHxDO/  !qHxDjoL|DnL|DnIRFnHyDxD	!FFkHxDT- ݀           b h    N ` b <  ~  v   P Z  J    ^   |  N         
 p x  T f   H X .     < H R b    B 0       v  v n   8 4 6 *    X v  J J V ^ N  T < ܼ ڼ J    !
 FxDtIFxDO/!
 FxD`!  F
0[xDL!	 FxxD@!	 FdxD4!  FLxD(D1FDV	4xD}D(F<$1FJFxDO/V}DV}D"FyDxD)FKFF xDO//F@   B>^B uex&xdFBpyDxD%xDzD0O0YB>3	@
bBB>*
>B ߁!F(FFlxD;h*1B>6 Ɂ+]2uXB rE>B B - \0KBD`E>BDm )@FZF xDd4{D$
yDzD4xD{DD	 HF2FyD<h k(HF2FyD	-~9h B>fx= 	B aRF
RF3FF . 8h0YE>`$
NDX@, F,F	EXF

 ;hJEeJB>_	P
hB tE>U
>B u)F F)FduFHxD_JB>>	
H
xDIF ?K8h0YB>(
P
>jBE>B)D	[hB E>B)FPF)F
u6FFXF	?;hJB> -HxDO/ &'H	"xDdH"xD^H"xDVH"xDPH"xDHܸ;hE>ddHxD8F FHxD(pK{DK{D<K{D!!
 y2FFHxD:hk+ݪIPF	"yDa (><IyDIyDܺIyDȺIyDJzDIyDIyD3IyD溛HYF"xDO/eIyDFHxDbHxDO/RHQFxDO/JH1FxD0fD;h QB> HFeEF->ȮHxD¾f;h QB>  0FBNFrHxDO/TF ,=mH!FxDO/&F<FhHxD^fHxDO/9h B>cI_HxDFv\IyD[HxD<lYIyDXH=`!FxDfBD, .><;h ED>3FHF(ŲBXF!FB  h f *          ʽ  ¹ x    r < h j 0     Pp    .       V ޵ ֵ ε , H       r    :        j    b    [H!BH,cEL#cE rBL!cE
 =+@"B2BW+H#B42B  !+#+ 8
FxFLE+|D  8O+FH#Xh 8`;+S 8  -OFO 
FFhKO"`{Dh``x"sY;h B.hxDCq M @	@@E&[h +@_bXO  9hJh *@ـ0ZB@ÀHhxD  HxD@Fl_ h	chD!`
 
 (  0CESF  زs\G+ IT+ B | v L{F!`9h

c` `sIh )@3;h * ŀ RB EYh )@Ă %D{5B@  Yh )@F\;h\;CE F (ѡ{D3*H  G G   G L G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G L L L L !h ( gs  |HxD9h zHAFxD;hXh(2wHa{bxD sItHyDxDFrHxD_bXO򮨈FR9hJh*F[eHxD aHxD{;h *FXh (Yѡ{D 0[c^;h E?Ϯp 	 o "8B `{bs[h +HHxD9hHh{G(GT(R |:h vPh{G*=T*H#h |!`:ha{ch v`sa`Php{G)*T)a|;h!vXhf2HxD^P1HxDZ0sss#s+HxDJ{\ ( #sF@:h!vscPh5b|"v 0[!h`{"`9h0bhc`sc`Hh#{Dj   ֹ Z B    ޸      8  p(LF(MF|DFF#eYjF+h"I
 bX6hXhH	)HxDB)б@H xD+h
 Bp@2B
 pY20F sB    pDLFDMF|DFF#eYjF+ha`
 6 )-);:H"XhYhI (6HxDn@2B7ٱs3OlaE pY:I
 *hBDp0F 
 B!H xDB *  *$0*0F #
  p1Z *H1F #Xh
 0F >
 0F }
 d   p7LF7MF|DFF#eYjF+hP1H$X!hJh F[#)@OrE)HxD 
( ؘ0+ h 
 +hB,p (0(н R#(F 7F 
 F 
 F 
  108  KF0{DMFFF]Y#+hQa1Kd
 @;8*h B
0HxDVJ  KF0{DL
FFFjFY##h(
  ("h
 B	0ҍ KF0{DL
FFFjFY##h(
  ( "h
 B	0톍 KF0{DL
FFFjFY##h(
  (p"h
 B	0~: KF0{DL
FFFjFY##h0
  (
"h
 B	0X  KF0{DL
FFFjFY##h{0
  ("h
 B	00  -C'LF'MF|DFF#eY+h	RH 6xQ)+tT@ hCh7IHyDxD
xIFBF FHxDR h1F5 	)hBHFxD>  F 6 ܱ "  p'LF'MF|DFF#eYjF+h!J
 X6!hKh۹x)
) hBh *&+h
 B%p h1F 0F IHyDxxDF[
HxxDx)	HxDz  T İ z  :KF{D9MFFF]Y#+hp' pp-qxJ Ob 	ALLBB$Н0+ 2])%0F
x *hB,
0F " 0F/
0F ' (pQZQ 0F Ί /KF{D.MFFF]Y#+h  p(:qxJ ]Ob 	ALLBB
+0F +hB!

 #0F  (]p9: 0F "8  ډ 𵋰LFMF|DFF#eY+h	XH !XhXhX F	+h BaIy\
H>yFNbxxDN P R pLFMF|DFF#eYjF+hq`J
XhKh[ F C+h
 B
pah	bRH0xDv   -OFNIByDRK ,zKJFKKO-JHXQQ TmBe *]imKieE5KPF ,\#  )@mSe +YimM"+ie 0smAe )Dkmke     ) F1F$E    @mYe )0jm^#;je- 1FM 1F^ 1FnB
, F1FnB1F- nB1FM nB1F^ 
 @8D03L4K|DX)hMF (P/H'X:h*. T@T)h0F7F (<8h mYe )*`m@# ;`e)h0F"HlT@mYe )cm."+ce@ TnBT. nBT@ |JXHTxD    D@ -AFLK|DX0hB)x)"j9)
ؖH!"xDTT0T3A.QJHXxDT1A.ĸHxDA.𮸊HxD3hj BixDDH:F !?xDAFFHxD/ ƀ  o  >    	 (F'F (3h Bؕ_r@񭀗:yB"kH !xDFiHxD1h Y (ZIdXcHTxDA.Y0h0YB\Hx5xD2h(F:F (0h0YBL/FD@F2h CB@FixA.(F (?S1h 
 EixLz
N!>HxDA-(F (?73h SBؐE4HxDT1h(FF (.H"XhH$XmSe +#`m." +`e3h(F (q"H!	"xD滈[S@@I. dXT0nBT. , ҅  @ B 6   «     Ī v P   D pFINE~D0FBp 8F1EB8 6-OF{DF\X#h B)F[ (I*xDO-;xxxDyDO-0hxDO-(\xD[ +F9 )O 	@ B /@AFv a .@yF@  rF )@i[p *@%] 
f!h /@
 # EUF5IxDJ#h BغPm
xD8 .@H 
 #h B?5IO~

 eDD/E(FEc  g / zE p .@DDD%D@D@zD<5yDxD {DF[(xD愈RxD( )  .@K  "h B 
+F
/@B yBuE [ *F[A (@݁jFF[ )Ѩ@yDJFxD@FxD(  @Á.V s g Y H C;77;;3;


H Y ^777

333O73G3 c37
U U U U U U U   E?k["
 P BL '>+0F	 D .) ,Q F  S FIRH
ҲxDꈧRHxD)IHxD  
 
@IHyDxDFHxD[XF*RPF zzF)   *Rk[H
xD@뉁[H
xD(@k[H
xD@늁[H
xD(@k[H
xD~@닁[H
xDrG	HxDj?!{;[HxD^H)zxDX(,  X	 	q!]iRHxD<!M
[HٲxD0@IHyDxDFHxD ~HxD)Ik[@뉂[tHxDO O+S &+T O	+Fi#h B?=IbHxD#h
 E?,PmZH
xD 
? OjRHxD* (	NHxDO-ALHYFxDO-9IHxD(F&} O-2BHxDO-#@HxDO-=HFxDO-A 0JA | U ΂  r T  x (          J v B ` D 4  h  Կ ȿ     ,      h n   ^ @  j & T .   -OFJ-FzDF=F[OR-4{OY;hZh *^ቦ=I@QB)

	F @F*FSF 8hBh *tн HFRFdHxD;hbHxD
AF +F6 (;hXh (8m )@F)F{砈xFxRSISHyDxDL)F"FFPHxD[iI  +FzFv IFBFFEHxD~ቦ= FZi0I *>\FX QFJFF7HxD`;hCi!IPF +<DFHF@ QF"FF,HxDHs3F/FeQFJFCF "HxD2FFOYFRFKF HxDTFHFF9YFRFKF HxD1 J{   T ZD P >  Ҿ   b -OFu5DDX(h!d `v||yDxD2F} 0FF@ *r`%zD[L +3P5{DL 2FxD#Fo	  ܁$@LfE S@CB wYB kW0h
k*@ !*hB@l#4{D@B @򃀶  >@0$ +#@AzD$zD[  4xD{D^	 )xDT$zDo 4@RBѹ`v3 +yD|yD t$zDp$zD  +@{`4{D  . Pd~D @|HHdxD~D	!4xD	 )?o$xDh\`D2FQFxD2FF xD. Q.LN	 Y2h0;B ^IHQFBW spF:0 *cJzDp?HxD ?1h 	
0 E *	p`/E``D\JDIDKzDyD{DtF. #. =I
 
yDF@Bwx6x/@=GE :!F2FXF2F;FFHFP.ѾHxDJ/


B	H!B"pxD0	HxD(FHxD >FHxDI R
 F[ +򐀟K{D@ L (LќHxD HxDdpH		xD/y/THxD.MODHF>		F8F.<I0FR (HۃJzD[N3K{DHxD"K{D~HxD~K{D}H~KxD{DE{I"FyD
yHyNxD~DvN~Dr @	 *Z*d"nHxDzlJzDkK{DnkHxDp  iHxDj.֭fODHF		F8F\0._JzDP
*F)FFFWHRFxDQFFTHxD8PmQH
xD,d"LHxD"y  .D   ޿     P  о 4 l   \ D <  ܽ   R B  L@   A v *A   ο : `  4 H b   . N < ƻ * 2    ` ں :  , <  < N  H N b > H  N zK{J{D-OFX9h0
;B FR+	k )qIyDFRpHxDl  	lHxDd  jIyDld	k( )@dI+yDF[bH xDH9h
k *
5   0;B\FVNGFVLDVI~DVJ|DVHyDzDxDF" \ҺYкVk*k(2FjOqq6? /i  0;Bnv+[OCDXFOTJRFFhh *R + 3F"FRF .?u  pB1	0 eE?c@.Eٺoت@q),लD,HF$ (  k+ݘ@@EIHF"FyDI+yDFH *Tr   ּ z ̼ ¼ < ʸ  z     )8FF,D(F$ (8-OFNFKF~DFX@h QB[lx(x"pB AA[h +. , ЀD^B0 +mK{D"FlImHyDxDV hI:FFyD"F dHxD5,
HB$  BC  @8F)FOvTHxD ,ѷ _(FFFZ ?
/P'D G      Q         Q   E   HgE  (FF ?!ho
  uE
 W   ) h  uE
    ) h  eE
  }0"FIHyDxDV JX< o l $ 0 *      <-OF &F*HFDFxD@򸀥x#x*Oл xFE %+^0hPhHxD FIF I^ hAh )@B/B.U- /.|/.@- hChB \  )@ۀ02FIDyDPF~I:FyDFPFw1FFHxD @ IsHCyDxD\ Fj
FHxD /.
-!h{ /.-
hPhHxDb qHxDx FYFF0Fg- !(F U/.t-q!  (?`;JHzDxD:F	HxD2FF}HxD	D :FyHxD uH)FxD
rH)FxDPFlI2FDyDFXFFfI:FyDFXFQF3F bHxD \I[HyDxDwYIyDF @VH%xDj1FKFFSHxD- x)NH!yxDby KLKH|DxD!FIr!FBFEHxD? 1Fj
FAHxD y  (<I2F<HyDxD%F9HxDpPFXFT2I2FyDF1HxDQF:FF/HxDV; > m v 8 * D  < 8 *9  |  `  7 8 P l h j  L | f ̓ d F7 H X  >7 6 " r p v @ > D -O-NFJ~DFP 0;B %x-	-@
k *@
IHyDxxD{IxyDFHxD )F:FF~HxD @L  E wLFwNmvJ|DvH~DvIzDxDyD	
0[ @',@$	 7p"F*:F	AFF    (
F[HxDj  aB0XE_ؙK2+ FW+ j = a 8H)FxDO,. O. ;1I(FyDlD @   Ed(HxDO,>.Oj.., Cg	'OFDFD@FJX+F8FE  * $tI i l ,6 n 6 ` >7 b N8  |      ..,  c	#'xDyD7zDD{D.F<F@FFLFFD
,0F2hF(F4FpT/F  (9FIFPFb"hF	OYF rxDR#ht#|BpyDxD$hF$d$|B6xD<FE
D<@0   @8"4yDxDF(xD.. 	 `F6	 x F9F xD2F @v&DyD6D,F
dF8F{DD@0[FR+@ǲIFZFPF}ZF;FF F ~ Y,0
8.I R`xD  k)?.	<xD  .yI0[xD  .f`v yDxD8FxDj RxDb	xDZ yD0XFxDH0FIFR[P ( 5xD{D20 :xD"::JS+	txD  m.	 TxD  \0[D"@yDxDF4xD.֭	 V`F6	 N F9F 2FxD  +>.? F	xD  k+?(FyD  .?  `@@ʁ?(F FxD  >.?w(F FlxD  . .b F	LxDn  Ih	0xD\ Կ ## +z,0
8  k*?04    RIF"^  0F["*  @tIF²^   FRҲ	 HxDg(z

S0+ 0 : HxD*S+ Կ ## F	HxD  5 IHyDxDFHxD  $ IHyDxDFHxD   F	HxD  HKxD{D0s @I"HyDxDaFHxDIHɲxD   NH~DxD1FGFHxDz
0[Hڲ1FxD9FHxDl  `vO&HD2F9F\  	2FFHxDT. .ѹ Rh9FҲS `FvHxD:IN"H~DxD1FFHxD(0[H"1FxDFHxD RHxD
IHxD
0[HxD R}HxD	 c FxHxD RuIҲuHyDxDFsHxD  4(F FmHxD  &jIkHxyDxDu)F3FFgHxDO+K @9F²S ] FR]HҲxDi  ~ h R | h   2  & 4   4  2 H f  t  Ķ 2    h   z    ε 2  n  X  8  ڷ dڶ ܶ   &/  f /  6    -    R.  /  Բ l` pD @ , : , 0 H L P T P  ~-  T * , * t -OFXT6
FDZ    8B#!F[(#I0xD&0F*F?d/@ 0E@@xDk
F .R@e~D"yxD1FM1FbyFxDCgyZFCF xDy*+
***1FxD%yyFxDnyDxDyy FtxD\h	hhxDR i biXxDHdi	i@xD: *@a,xD. = -[ 0E?jUe%}D~D5zD yD{DxD
< Pm`v .?.@).@&
*F*F3FF 0qB PE?)-- -Fk+@
 F2F*3D.  EPm c)F0F@xD) ǁ) ) F )FFxD. E?Ԯ7FMJDH}DKzDIxD{D	yD
&vem - i
2F	2F+FFPFbr*?S"sDGk  U          -        e   1    &]$F0FVZFFHxD.  k*?_b&0F0FZFFHxD&0F}F0wZFF F@Â<^ "R FaF[F&0FQh
FFF@K<I^ yDFRH ZFaFxD&0FF@ቃI"RH<I^  yDW#F[H aFxDF[Fh&0FF YF#FHxDW&0FF YF#|FHxDvF&0FF( F`@[ ~[F tHxDR#&0FF F@bR [F dHxD0 &0FL"}F_HxD$&0F"zF[HxD:B?_	VHFxD 0k+8/ 0NINH"yyDxDhFJH1F xD  F )FFCHxD
 I F>HxD:H)F2FFxD7I F2FyD 0 ]  F $ `. -  D- <  "-  : L H J - D F  R-  n d D X,   ֺ  л  L  6 H 
  6    ֻ  )    $  ^ -C KFJ{DXhBظ Pm	Bӹ 
N<F~D0F0BOD O0 U t )K)J{D-AFXh0BAطyBXB91hF+%+	HxDױl $D)]@F4B/(FFHxD/(F
DF
HxDO0vU   ֽ  BKpFFI{D[XhB  mu4F$B4pO0p4FT 
KJ{DXh0B @ (0O0 hT -CFdF4  ~DX)h BDxDf駈(hk )? /E9FxDV!hF %
FBE	BFxDF-!h	dB+h 9Bk(i	hxD,(F
 (XxDC*L9FxD /R	h44xDyDF @$9F $xDzD[!  xD)h
k*+ xDh	HxD!i	HxDai	HxD+hk(
!IHxDbRHxD) h \ѳ K\!B?r  BU+h$ E?|k-i	HxD`@pゲIMV yD<}DF(F"F[)RHI0XyD)F(Fv袌&R)F (E/!h %H9FJxDzD`c !h %!h%HxDC*ݾ  Be!B+h*  B?k-i	HxD0c[HIMyD0X}DF(F "FI+RHI0XyDF(FHxD
`j &%mbRH,xD(F_ (Ϯ&/v .  %B@8F5 (Dں+h"  B?emk.i	HxD#$FRHxD(F1F (!7I -  &BW8F6 (Dڀ(h$ B?xk-i	lHxD%&m`F[gHxD0F9F (X&?v .O %BK8F5 (DE+h$ E?=&k-i	OHxDT%j- (B(;(IHxDF5,8F1F (7!h %aIm &Bخ8F6 (DbR &BǮ8F6 (D0H)FxD.HxD-HxD!h$T  ּ j  : Z } B 0  $       ƻ xһ ( |       Z    , T  ҹ > . h ʸ  9K)-G{DFO6JX(h :B	3L	"3HYxDT3G*E.N"/HYxDT63F!Ic[&H!"3FxD)hkk F HxDlHO!xDf! F "H"!3FxDb(hkj! F " (HIFxDG*׼ 'FHxD<N @n f | 6 2 2   з -OB\TFX4}DX8h`sB8bxV B4!4"U0xDT3
0F   ff 1 HxD8h0YBHyxD8h :B FHxD!;hk *wd /M  }DDDIDD yD
 GEr(F@FGE!\ )CB@e  DGE[)R\!0D`G    M   i   +      8(@>PFv@F:*@kI0[HFd@F9)@U0[ V@F:*@Q0 nF H@F8(@4HxD>@F;+@"XF6@FIyDЬIyDHxD(9h
k *?% 8B?h IyDhHxD!BHAFxDHxD;h B?[HxD8h 	:B?#z@ @Ȳ (@ _ *@Ȳ (@:h0;B?aIHxD !~HxD;h QB?yHyxD0 +8h 
:B?!IpHxD;h 8B?bRjHxD !gIyDfIyDfHxD8h0B?oI`HxDr8hk +?o :B?]YIhyDOhUHxDZ9hk (?W0;B?E"iUMIyDciKHxDB!uIHxD<!oGHxD6FHxD22  4#zCL 0#zNH *#zBK &K;IyD;HxDj9HxD8IyD7HxD
6HxD4HxD 3HxDA #z/IyDvM @ :    Ҹ  | ^ 8 >   
 µ   (  Ƶ ȵ  l \    ڴ Z ~ (  "   ֳ  r  ƴ Դ    -OLH|DxDKX8hB> &FD{MD{HD{I}DxDyD BFO5 .YFQFFHF*F^;h6k
-IB!RkH_xDH9h40BdHxDO*̹aH&xD6`H_xD0-:-% -# yo(Q`(jE8
(d9hk +UHxD1F8hOP%8hk )&HHxD1F8h8hk )
?HxD0F9HxD7HxD8(8hk )'2HxD0F
FO8hk )'HxD0FO˸ HxDO*/HxDO*'HxDO* \H   |     `  0 , ȳ  j   (  B 
  jJ-OFiIzDFUX*h E
ظ  I@\cE_HxDO*ϸA)[HxD6 , (h EVOXVIDVJDyDVK zDUI{DyD  Ro k8FIF
3+k22  	  g(h E٨IF)h PB CF/HxD:,HxD+hJB?}(HxDL  3E"HxD)h
k*  (hH1XFQFJFHxD E ~ ڲ ² 2    
  Z      KKLJ{DX#h B_؄F\+
` *["h ER`FPK$`T@<BG@$ `0;B<؄F\K$aL@<E1Dh$ La E'`FPK$aT@<B@$ a0;Bh+b00;Bh+b0   pG"h@<EDh$ L`0 ;BChKbh0b0 ;BBh
ch0KcD JpzDL  Yh@"Bi B0 BZhB
! B8  ppG  B 4JpzD4L  Yh B i B0 sBh	)+5A  p$HxDv"  D  p HxDjK!  {D`pBpHxD\h"  D  pHxDPK!  {D`pHxDFL"  D  pHxD:K!  {D`pxB 6 `w * Jw ¯ ,w  w   w  v eK-MFdJ{DFF  X;h
B 򷀸 t2h[I\HyDxDrhFh5i-WH xD8h0 ,^;B ui-i $MHD
+FxDFRFG9hL0;E{رh	rjjAHxDj-1k	>H+FDxDuk-k	:HD+FxDk	2l5HxDql	l2L|D Fl	2m FT 0D T B6qi	&HxD8h<0;B%رh	isjj$H xDhj	2kL|D F^qk	k FXk	2l FPD   fA X l J 0         KJ{DFXh B"h
`BhKi;0"D   	I
HyDxDFHxD
  ? t 8 Ji 4 0
FF 0)F"F 0  0K-CF/J{DFF&xX  < 3	 )h++2'L."|D8F!FP0F!F."K!HJF 9FxD3F*hB, ."F8F0 ."F0F' ."F8F ."F0F$ >   8Fh
Fch!i-"j*!j+8HahxDdh (HhxD\!i )HaixDT
H!kxDbk8@)ܼHajjxDD      
KJ{DFXh0B
h!X0pG00"  = p)#N
FF~D!HxD KXh B h p!:B-4] F)Fp@4  pHxDfh6h	H "
C3FxDh	"icii6H4 xDd=  x < $ F(!F 0  𵃰F|L|DF ($KX0hkѹ(F9FfFȱz3hk`"B
H 4xD FHxD $< «  LKMJ{D-OFS   )Io&O S0h0BOj $ -L 8F1F )`8L@"|D F F !A"@P p1I2HyDxD4@B@.HxD*  0BA"IZXh0B>h6O  *7B  HxD펱I=hhyDDDHFU/4BAF] H	xDHxD ,< p p > B ̪   Ī   0
M}D 0!F<PK"FXhk 0   : p
FlJzDF (, ,$IVX2h B!h	 Fp!	F -)FBFh3hk*HxDp F)FTF $v: ҩ -CHKIJ{DX9h BCh$  AB ):FE6?M S  
<I" ]XTL:h0F!F   @ ,8mYe )OhmO "# ;he@F+HXmYe ),hm"# ;heO @F amCe +"im" @FieT" 
@F" TO  @FnBT" nBT" nB" TF 9 D@KK{DF ('JXhqPSmXe (Km  Ke4  ST1 F@<nBT1   8 D@-OFk;F~DF "XyD
`+hV   h )m
D"yD@F;hx+!zD(FAF F*Fth	 )HXQFXxDDJF 049h
8KO
VFF<FFgF
XBK4?,ȿ $B
D jhE4?,ȿ $B#hB@O)
RFxDĚ
D!@D@FJF;h!JF(F
QFxDh	)&
xD,й
"v (
"n (*9i	ziP
xD<i$D
xD,le~xrYS_8FJFL ({JFD (rjWFFj D^ <)     @ I|DT!) o/Y
D3 ~ W Q 	xDXB	xDR<	xDL6	xDF0x	!FxD@)l	xD:#d	xD4\	xD.T	xD(L	xD"D	xD8FQFy8 @!kO ($D   (!	"V0xDT3	xD8FQFR (F ( kF +@܃ F ( ,Į 0;Bh	Bhh-h -@҃8{D$ ,@уXi}D$@i ,@ŃH|D  ( xD xDtxD8FQF (fF ( p:kF *@ FQF (?w@ k 0 08B?i9h	zhh=i-i$ xDf  k )?Lh	zii6;jH5F ExDNyj	jxDF/xD@8FQF (?*F (?# -   Bi *k )@j FF (? 0@4<B? `1F	 FP-	@$0O $ /FN gg(F
E2FD;FxDE  k *?ȭWF?`F6 IF	$pF:F(FF,pF?0DF$aF FL MFLSF ELxDxD8FQF  (? -qfF (? +z Ji *t B?r!h	bhDxDxh ,?_8xDnX0xDh8FQF (?S - +F (?I  k )?CxDL 0 FkF (?4xD> 0 Fk ( $xD.8FQF (?  kp (xD8FQFw (? - ЁF (?  k (?lxD  F	kF (?TxDPxD8FQFH (?խ -ʭ (Ƭ(xD$xD8FQF. (?  k" (xD8FQF (? -xD8FQF
 (? - (􊬎xDxD8FQF (? - BW (?v 	kgF (?m -c  k +?c B?]!h	`xDd  k+J"B?Ibh<)FxDF0xDJ3(xDD8FQF (?. -  (?% 0kF (? )  k *?0!B?!h	HxDdh$ ,?HxD
HxD8FQFb (? @ -di*F8 ! (٫HxD8FQFF (?Ӭ @HxDĻHxDHxD8FQF, (?F (? 	k )@ F (? +h	HxDHxD8FQF (? -?gF (? )  0HkxD)s   FkG (hlHxDx8FQF (?b=F (?[ *Q -wѤIpXh *GVmXe (Km  Ke F (59 @*F!kH (+/ (%) +  Ji * 8B?!h	bhhh-$i$H xD8  VT1 {HxD
 	kxxHxD  kuHxD  k:rK{D-qL|D:qMi}D. 0kF (һ!e (?̫ @!kF (?ë  k*`HxD@nBpT1  o^ZHxDYHxD 	kJ8 zm   § m     > N k >a Z 2 Z z P ܨ  l @ | Ч j @ R B 2 " p  8 Х ҥ   :  v , .     0    ʡ   P *   n [ T $ ̟ Ɵ ^   J  ޞ  z  D   t   ڜ  0  -OFԆ
F6DvFX`xD "`1hXp;hh *\#h&
L!
`
zDXFvPF"yD`HFYFRF)FxD  	){)P#iai R	F +     LD\#0+ Vv~.ebhR      #h
L!
`
DXFbFPF!@bF "xDhX?CȿO   hON !Y`h`iaai	b i bJFO 	 JF!Y`Rhh`aZaY  abZbHxD 3hB@0xD F)FAHIF(9h  E؁h	h-Dh$xD "+F"CxD F)F IFn (D   (!"X0xDT3xDxDxD F)F (IFBF (8h B!i	%h+Feh-t "*CxD8hk )?|0Eai	PhhxDjDxD F)F (IFF (8h   B!i	 rFeh-HF "xD*C`9hk (?:HhhxDT2HxDP F)F} (?dIFF (?]H!xDK"X0T3D FIFm (JHxD, F)FY (?@IFF (?9:h  '  E?,i	hh F FXF FHUF $D
xDF 8hk *?Ѯ B?hH!FxDFHxDHxD F)F (?IFV (?;h    B?ڮh	h-Dh$HxDHxDHxD F)F (?îIF (?:hB?PK$*F (?I"FHyDxD9FHxD8hk )?_<,@ҀVHxDt F)F (?IFF (?!H"X0xDT3f F @ (0jHxDL F)Fy (^HxDHxDHxD: F)Fg (?NIFiF (?GwH!xDvHxDuHxDuHxD F)FK (?2IF (?,9h0B?%h	iHxDgHxDgHxDeHxD	dHxD E?h	h\h$h[H #FxD0!B?ah	"hSHxD B?߭Ah	hLHxDM (?ЭP (?˭8hk )?-*B?)h	jh<HxD8 6+ b`  Κ О U ( _ z  8 F @^ @R       > ~ V    d R | N   B  Q   X  t f p   
  H F 8 B  < h Ԙ  IC[
HB0+xD{!*'𚿯     .A  $K%J{D0Xh+h!$@h 
fzzH!FxD''
! +*贱"HhFUBA=J!zDF
HxD!)hB^#0     eA  /8# D   p-5N
h~D-hLh$ChS Fp@ -ݜB 
= !	МB5*mB!B)F!
  !G
z\V0`'
h! +- *+ 2
IqXT1`H)F*xDp@'վ     eA  /" D@,  -GFLFK|DX0hJB1+xHxD0h)xk +/ЗIFHyDxD9FFHxD
{IHyD:FxD:FFHxD2h AEًJXH!"TxDG'𘾇IHyDxD:FFHxDG'jHixxD3h AB~H/xxD3h BzHxD0hB!sH"	T@xDTCF8F2h EjH"!CFxDHFo3h BbH!"CFxDix)ug]HxD|2h	 8ETWH!";FxDxHFj1h0;E?oOH"!;FxD 	b@FU2h 8E?\FH!";FxD(5PHFC1h0;B?J>H!";FxD@(F2:H'";F!xD6@FIF{6H!'";FxD*@F)FGn>)?)8FF,HxD3h8F!  (8FkF#HxDG'8FaFHxDG'~!  Ι TM  ޙ 
M ֙ @& p L r     j Z ^ l b X P X j  r N -CFhTM.}D<hQK $U Jh>7+/;....A........G......LQ...Q.Q Hi"F (B>IU yD#F;HxDn:HAFxDj8HxDd   Qh )1m +8F1F&  9F6F8F2F88FF8FF"8FF_p IU yD"FFHxD*Pi"FLIU yDFHxDHAFxD  $IU yD"FFHxD     F B 6 < 6   FHFxD,	O	ND~D(F<C2F5F8F,ܗ   )p-
F%N ~D ="<,:*G4gF0F S+-p  ffffff@  K)-O-{DFF	JS 0 BHxDO'*F[BiIH"F	xD\ 0k *@t,Eo 8ELM|DI}DKyDL{D
|D  PR - ( M
*FF	 
@pFd 9	'*	  1F*F	A  ++- ؽBx-[ F2FADE 0 :EaRn-^-A-цHxD. 09B?KF~OMDD}D 09B?3 FF`h ;F

CFIF4F(FE   B?@deHxD~-	     B?@ ;# UH!	 J xD	K;#[ke+S2+F\  B?ĮBOBNDBJD~DzD	
DaD  B?c[[QF7QFFIF3FF	
 F9F*   B?|.	 F>W4F(F.D      ?H  H H 0 4    F   4 j  *F  LF   KK KJ{D-CFXhF BO5~aI-AH)F"O5xDpE hF&F6;[5H xDp8h QBx	.',HDxDIFIF"yF(HxDyAFJF6FFF FHxD>IHyDxDxF AF2FFHxD*;h QBIHyDxxDFHxD(F   h  lF  F H 4 F ^ f ZE ` -O-FTE  P5|DFT ` B	I( k:B
$$aXxDT1O'iyDjxxDn)xCFFFxD1xu)W  k +R0BhFvFEQF[xDO'& 0 BBd~D~xD1FIFxD| 0 BB1F~xD3FtxDf 0k1 5(F50: u(;B?uF4xDB   B?ch )AFxD.  kJ0;B?L@IHyDxDFRHxDI+ o	+kiH|xD| )x)
HxDO'HxDix) P! D Gy    )      5(F5)0u   E?ﮭi)F	)	@,JzD H	FxDF#	BNHxDHFA S0	 Y
)   ^ % ^     ( w( ( \ 
k*  ( &FY	AE @	  B ONLD~D|D* 	8FN AE 0 B  
F*F F4 @	 0B ހ	FHxD   E ̀OoFLDK|DJD{DzD" F   B  )@S   0B   *@=XEf 0E  0 +!!8Fb AB@F  	0Bnؙ  p	VH!AxD/ @	  BV
	FLHxD  
BFؙ_r 7	CH!AxD  k+@Q>I	 *FyD @	  B5N	~DF4HxD`F0FX FBٮ  0Br $tI @ D Δ E Ȕ  2 &D   hC     
C Γ   |    N ( 
 $ 6 Z J X d L   r  p   	 SB
yD xDF
xD  	Eعp	9BX &TT*DT:DP
zD{DxDB?=  :B?e!zK+ |n BE  0;B?¬ $5yDDyD	DDxD	$,*,<O.,NLLF	hB)F   :B?(F[-FPF9F 0FaFB  	: *9FF@F4L	xDO&<<	yDxDF0	xD    E?:/j? sAF:F FxD $  B?ij9YFxD  ( 0B?j:EFxD,5BsxxDD 0
B?&F8FB(FUF0FZFFDxD8F!,4(zD FF FXFbRxDxO (F/FeFFF&FF  0E? R5XszF4B1F=F^FGFF(6g~D	T;0Fa#B6B 0
Bp	 *FyD~ (FX'	8zD
 -  0B ^-@S&vg$2F
yD=2F;F4FxDB .. .   k+@&FdD6	ض{D&DzD6xDyD{D
 -\   B?k-?7tdBFW=BF#F7FXFB  0`B- B?Ik+/>,rh
KFHxD~@!F*FxDv4)FxDn(!FxDf8F %8F"F (e~D	T;0Fa#BFBȫ  
B FF F@F. FF F  FF FxxDp	lxDh%DdzDd5dyD{DxD
 -  B?-@7td:F=:F#FFXFBh  aB- SE?y/7/)/ k( F:FyD (ЮF6@F"FyD (+, qh	xD,@FFxD,2y
22yF~|!FxDv p!FxDnd!FxDfX!F*FxD^L)FxDVߺ@F<yDxD
  @|  0B &vemZF
	yDZF&+FFFHxD 0hB B k; <,		    :::  ] % /W   B H F]FHxDFOI"yyDZ "yODFHxD+H3  $FO.FeF[ 
g(z!F8F4

S0+B5FFF 	D	XH9FFxD&HxDD ,V	<XFK '{D"yZ FD "FHxDnHFbyZ  FHxD`[	  9F7*S+N/ќKI"yyDZ byFHxD>ah	HxD6O $FD[+*":!F8F4:JS+ ,m`h 
$ZHxDZjS+\ah	HxDU0FoFHxDL0FfbhFDXF-> VhFXF8rIrH"yyDxD"yFoHxD$k)?!lI0F*FyD% (hHaFFxDIdH9F*FFxD>`H)FFxD6TFҿ  |> $   | B  > ڍ  F >   j `= \ , D 8 B P  b v  Β <  t ; | V  9 Ə H     t r8 ލ  8 , p       > Ȍ l 8     ` ,   r  > d  h \ , n  J    | N5    8 v   D _FFдO_N~D_N~DT,!- 9 L ] p     WN~DVN~DF2F8F.1F"FFQHxD@&HNH1FxD)F@&;8F1FFFHxD@&/8FFF1F"FF>HxD@&FF8F1F"FF6HxD@&8FFF1F"FF.HxD@%FF8F1F"FF&HxD@%FF8F1F"FFHxD@%ֿFF8F1F"FFHxD@%ſFF8F1F"FFHxD@%𴿲 Ď   4 B R 8 * $ "    7K7I{D-AF]X+h B 1HxD+h Eh	&vHK3%HWxDXjFO(.c юH9FxDaIK!{D  
H1F:FxDHAF2F;FxD F ȍ  t d F & 'K(J{D(IFX0h[Xh 8B1!x *-!# %"xFHxD\axa97 3hBIHxDJ
HxDDO0
HxD<O0 H  ،   -OFIF90|DT  KB0yDjxxD)x3FFFxD8xt(g  0BiFB	IxD
O%y(BN$XTxD
O%x   QE} ² *@ ! ² *@ e   BةIi8xD  kj,H5|D F(F5 (
 FxD 0 
BثhFxDz   SBة{ )@/)x)
xD
O%xD\ix) R!0DG s  {    A        k )tG5|D F8(F5- (И 0k * B?@JFF *0'
,,WzDxD	}D
PFF ($ 0
0E `v
FRB B  * 8B >IxD!"T0xDT3I	1  k +?,5B( :B?֮DDD 0;B?ĮPFn0F@)KF5@FB   E?.i6$f$#~D !D6V; +?BV,@Fp/! 0k ){ E?~ni6_e܅#~D !D6V; +OV,@FH/!xD
O%ϼxD8B	bE <DrE B BC
;BP-p%A

8xDB8F3 (!H"T@xDT iF(@nv$*}xD    B? i9MFxD    0B?*j *@  k +?.$5dxD~DB(F!  B?˭F0F
;BT !F}D5FD'FtFU,B	U,@F/!U ( <F_FF0B?jP-_4T4t !}DD5U; + SU U,8FZ/!
;B?E`6M_O !}DD5Uk . U,U,8F8/!
 ;B?"p?M !}D5U ( U,BU,	/!
B?p?M_ !}D5U; +>U,U,/!
;B?㮺IK
{D  
 E?Ϯ`vH
 xDI0FB@ (е	H
!AxD(F/ (-BЭ   :B?(F5FHxD 0B?(F5FHxD  *? 0B?n(FFHxDtH
xDlF
fB(F 0 BIHxDT  
(0B?;
 pd(0FH9F
,5FxD6(	B8FO (wHxD$}/!auH !xD/!}SFpHxDE 
 :B?jOjHDjKDjIxDjJ{DyDzD~@FvE 09B?ۭ)x))&)'\HxD DF >F(9F8Fh@5 !F F(F ~ l 0 ^ > @0 L H  t ڌ F | ̊ ʊ    F l f    P  
     \ V  ҇  |  6 N F چ   Ԇ   b  . 6 "   B "  p   -OF@YFx8)}D	X(1h%#,yY;h B rF m!FF	xD%0hB'xY;h BXF"Rc[  x q* WXFFPFAFFxD8h9B`xD:hk +`{!zbzzl PxD!y) ܀  v  b N   / / /  
 <FxDby@D;hE b  @q) ]xDpv:h0Eؠ@* 7* !"U0xDT3^W9h :Eai	"i
xD>;h 9Bai	"i
xD*:h 0B"R( (
 O
oE.#aFD;h :EQFQ BF0
rE F	F

!i	R  xDN9h 0;B?t!i	R
xD8FxD18h cEVI( =(M
 O
 sEE
dqF.#DBF|!i	biid xD  F !FFDxD|	 FXFnF	 FPFeZFCF xD`	 q( XFTFPFPAFFxDN+F\FF"xDDRxD<A FXF-F FPF$JFCF xD YxD0[|IFxD
txD
lIF
xD	й@ׁ0
+KE ́  (h9h Ea$%F$LFzDxD%FzDxD%	zDFxD

 .
  6 ,    z p d X L C  -@<xD@y , v,@uP	 -=B i *9hE|xDx}t	dxDn-@`<xDb-@L<xDV-@8<xDJ,)F	dxD@-@\<xD4-@W	H<xD&-@P	H<xDz-@l	H<xD
l R( ( = - Ѐ-:hE$:hEX	HF<+?:-HxD-@	 0<-@	 <-@0[<-@	 H<xDHQF*F	xDd-@À	
x<O
o ]O
 
 OoE?D  R)?)O
	O
E?aF.#
D&.#HFAF  y	( 
(H(щHxD2#iH
xD*Oo ?\FHxDO	O

 O		B@ E?AF.#<oHAFxDDV O	jHxDO 	gH)FxDdH)FxDbH)FxDڻ_H)FxDӻ]H)FxD̻ZH)FxDŻXH)FxDUH)FxDSH)FxDPH)FxDNH)FxDKH)FxDIH)FxDFHxDTEH)FxDt j "     @   ̂  .  r J 4 $  Ȁ  > ց D h     8 j    z 2   b   ʀ  D } } ~ @ d}  ܀  @ 2  ~ l *~  :} ~ ~ |  KJ{D-OFS  0Bz) Bk*
  FGFHxD 0 BٯHxDO$Wk+o
 HxDI  k*@ 0BؔxxMDJDK}DIzDUF{DyD
 -    B8FF@F 8 :B{h3
Fp  
bE<d~vHF!FRFX

g=7FzHxDNሑ煊mI)]FrHxD<v.nHxD20FO  -@e~?F dI2F+FyD cHxD"iS }F]HxD
#~y[IyDZJ_`zDXJzD@ ò +@UK{DUHxDO$7	,IFPOO $FNKDNHFwF
UFF{DxD 0E
 ȿFB?LAL@H|DX_c_L:L|D@F7 3H6xD?B_F
F,F:)IyDa~?F #I2F+FyD "HxDx"i^ K{D}0  ʀ h < D          ~ ~ ~ `~ d~ b~ Z~ ~ *~ 6~ D~ ~  ~ ^~ t} 6~ } T} 
F[K\J{DXh SBXL|D$hTABx+\+O0,Q, &
!7F`B (B)O
)\8$
!Cx +&7F --Opp bDB)L
)_3x-(Ȳ7IyD7IyD_j4JzD&3K{D3HxD :)  &!7F$!)HFxD0F!F%HxD$K{D#JzD0FF!HxD	FHxDqx )HxDHxDFHxDqx)HxDz   } $| | | } | | { { | | x| | X| N| KJ{DpFX+h BaBBax)# R  n     pHxDp@$¹HxD, y	)ЙHxDp@$𴹗HxDHxD+h JB#z	) 쀍HxD+hk (
E؇HxDc[) HxD)h :E LF G)FFwHxDuHxD)hk (0E -FlHxDh	K  FfHxD FcHxD@p_HxD+h 
B?ZF 1FFUHxDh C FOHxDv+h B?70bi +hGIyDiFH" BxD^/CHxDX)h
k *?' U!=HxDJ+hk (?9HxD>)h B? F0F)FF/HxD*-HxD$+hk *?)(HxD+h&HxD+h
$HxD+h tF HxD\IyD { | | | { { { { { { { &z p{ l{ z y >y z 
{ z nz 4z Jz y y y ,z py xKyJ{D-OFX#h AEsHxD )) oHxD"h 0YBEPfHxD
O$dHxDbHxD F[ ) FRlhhDYHDYKDYIxD{DyD - "h E@FFHFT!h SEؘ*)*#*PF> #hJEؘ`=FXF&7HxD {B?0O/K !/JD/H{DzD
xD	̨ GF_sX
d F	>#h,! BFHxDZ
  y y Jz y y y y y y y y x v x y $y px -OFHF|D%X)h@B$2x	,#!F:FxDO#yDxD0!F:FFxxDx,h@Bk +\XyDxD!F;FFHxDO#paB84sxD 0 +@>rR$xDDp@ ) +{B +yD#xD2 B8F	) [  `d * xDO#*h yD vE9F0F "yD (yDxD !0F (6xD!0F (6xxD !0F (+h6 BTxD1IO3BJ81yxDrB7y?$qyxDB5xDI6B'xD !0F_ (A5B /?܆ &D	B ##Bؿ # +?1F@Fv!(Fv> (D6BxDd!0F- (6BxDT !0F (ڮtxDO#׽(h20B?"rhTTyDxDFHxD.0z	+ +  +@ F !FFxDO#DE*hE?eD5D%~D{DzDxD  ܁ 䁻 )hk+ȿ@M8F2F-DE[*hE? 0[`vOrr	E?IFZFPF^ZF3FF 𲁺ٻ 𽁻OPE*hk(GE <FDFDE܁XF F !K (DxDt(hk+ݘBRxDdyxD^ByxDRBۭxDJ !(F ( !-D4D${DzDxDyDB"!(F GBCsB;wx59F
 / 𰁬B@ &BF*;@6\E٘B ##Bؿ # + 1FPF !(FHFHxDO#^HxDO#W6BNHxD!0F (i6B?HxD !0Fx (Z5B.0V (N)h	H! AxDih	HxDO#7)мBHxD !8FL (.?=Bx@HQFxDl3x*HxDdOqB 8F{ ?䬬BOO HDOxDKD{DAFB!(F (g*BbvQI1FJF* . O ^E@8FYF(F! (D>HxDHxD
.JПH1FxD .2љHFxD}	t0[kHxD )9ѸCF[ *AFIHxDP.ЂH1FxDFI0[{HR1RxD31	tHxD'qHxD  (EB?C8F2FFFO(hO\^HFxDO#[HxDh &61Fb(F!+ (DE) QV%NHxDL~ { <x  Rx x   x " x t x fu t 4w bt z \z Jz 0z y y y y y w w *w w $  w v Z u u lv Fv fv u u |v xv pv lv vv xv Bv Hv Rv nv t r Xt u `u `u s s s s s t &t q q q 0r *r r bq hq q q q q r )0KF{D*/JX3h B%lx/xB,8)I:F)HyDxDE:F#FF&HxD/1h
k*3"I8FyD F $ FH $xDx F0B	HxDh1h
k*I:FHyDxD#F:F $FHxDTI8FyD 2s  fs s xs >s r 6 r s ;K){DF)9JX3h B.lx/xB,.3I:F3HyDxD:F#FF0HxD/1h
k*F+I8FyD`  $ F
,3h 8B"H $xD I:F HyDxD#F:F $FHxDH9F $xDiIR눒[-mH xD0hk)ݸI8FyD r 	 r r r fr  q r Nr q K)-O{DF1ݍJX;h B lx.xB$,@ۀI2FHyDxD32F#FFHxD|.@򂀦*@8hk+@|IyD  $ F
,@9h :E\خv舱@+[h@vkH xDD,qФfH	xDAF8 9h E0{ . 𥀻  YM}DMF`D nx  .DZFQFZF3FFHF38hBHH $xD.4.).|,&9h Eh@;HDJFxDQFJFF8HxDa?l9h
k*cY
,'1H1F $xDX,;h
B#F(HxD'I2F'HyDxDX#F2F $F#HxD7;h BبF0FAFFHxDIyDMF | q 	 q Tq q q  q q o  p Tp p o  No p o -A)NF~D9KX8h B6lx B,,sݸ2IBFH#FyDxDQ(2 2< )   0V V 0000 000 0x 000  $ FH $xD
HAFxD,*8hBh@IHyDxDFHxDjRL#B BL# BBеI(F"FyD2;hk*ݱIyD(#FHBFD $xD^(HAF $xD,;h SBӕ      ,;h Bk[HxD,8hKB?tIHxyDxD,xFHxDv,8hB?\jRHxDd,8h0B?J	|HxDRz,x8h0B?7h@L%B qHxD:b,`9h0B?	iHxD(O,M8h0B?xaH0X_IFCCyDxxCBBFWHxD%9hk(?%SIyDM,9h0B?֮iIJHxDHHxDFHxD	,B(zyx*yky=H xD,B?F4HxD3HxD1HxDL# B9h(0ZB?)I*HyD*yxD=F'HxD&HxD  o p o o  vo o n  m o n  m ~ &o n ~n n (n l m dl m Tn :n m m m m m X "m $m  C-OOiFF~DF H! Bf,HleE PL+B[@>L-eE ؀sB( ,@+,L YpXhJB@8	xDO"=- À[@!B  BW- - Â*F	yDxDFxD8F"FyDO)bB
@&H7B  qB*FyDxDeFFxD,V  0B@YFxDO")#- @ـ+- t/-FO:F (I ,@󇃀F7<CF ,+Fv:xCF}*,4nxx7 4hL!	~D,,,F(xDDDD&FFsFHB ݃ tH!B ؃62B
ќF FG6$ .8F!FOWWpYhJh * !;[8x yDxD)#F	
FxDO"FFO8F!FOmZ4GV  @0)x!) W)X+[OqB 傩:  (F@O"L!B?B ,@, sXh BB@ɂ xDO"K!-Ю9F"FV0hO@"Bе oH#B?ޮ43BhQ 
yDJFxD5{xJF FxD|  k +?:,?7B?ˮ{[`
xD;\  k)<"yD
 Q) DG               9   Y  ,   B?}yh	xD+׮xD    O,î  
B?Vyh	xD+xxD )?@   0YB?6PyDO',?  B? [$$yDxDeFRxD(mxDyDO,Z  B?yh	xD 0 B?ܭh	xDO"
,4  B?ǭyh	xD` 0 B?|zp!zABhV CyD<z
FxzPCBxDBO"ź k(?0RFyDO xDO"8F!FOV  0XB?I=FIkHyD2FxD2FFHxD  SB?1HyxxD  0B?#}m8B-k. .?) );B?	>y=7B?H<FxD  KB?0BrV   SB?=FIkHyD2FxDJ2FFHxD  BB?HyxxD 0 B?}m>	.?:$$H=xDl -. 0HE?bLFMD  0YB?WB" *8E?H<~E?H4FxD:D 0JB?0,PFEۖH?&F}xD  0JB?eEi:#HxDh@):F "H9xxDO"~H9xxDO"z{HxDO"syHxDO"lMEL+ BFrH)FxDO"[F* *YB?h~E?}fH4FxD  BB?$E +`  HB?ҬFkeDB?OPHxD#F]BE  BB?Xx+FF+F)DH)FxDO"  n n   n k l P  *l m a  Qk.l  "l k i  i i h ^i i i bi Ni e P h h e >h h g d g g &i d ^ h (h g c 
 bg \g Jg f f f e hf  f Bf e >f Hf ve e ))KF{D)(JX3h B$lx/xB,%"I:F"H5yDxDx:F#FFHxD1h
k*!I(F:FyD F $ FH $xD FI:FHyDxDS#F:F $FHxDI(F:FyD3hk(   _  _ _ zd N_ D D_ _ 9J)-CzDFFN6KX=h0BF @@BG~@B.*&Y 'BF4ؔ _r?497Fjhj$IBF$HyDxDBF3FF!HxD<@F!FJF8FkhHxD.4=h'0YBH 'xD8Fjh *HxDB4;[	7 ( _ l c c c Vc hh, $FFr FHxD Fc 
Fh,N,h~DH	x)2)).'KXhTh ,4%H$xxDx F,5xV`3hXhعiIHI$2FxDyD^FHxD0F):l F)F@H;FjxxDH;FjxxD
HxDHxD   c D Zb b b ~b lb bb   pGK)J{D-OXF*h@I_X;hPB xB
Ex1	R[) 	ЋHxDDЈHQFxD<I*FHyDxDFHxD0@PE   	-   (@ۀ<DE .@ - ׀DJFxIxMDxKyDxH}DxL{DxD|D	E]9h0BYvP@
 ,vaBEJ
UE@Opp  O.$FdE<cP+
Fx ^-0dE  !ET"NI2FNHyDxDa"F#FF JHxD*F . $GH$xD F+hB^!AI2FAHyDALxD=|DF?HxD FE] 2FHF'FtRF .j1HxDj0H1FxDdF.HAF"FFxD\ .?=2F #,0 F	L] P!HAFxDD  FHFAF  hg dg dg  `g  Rg rg  Hg |g f @ f f Tf  ff |f e e e e hFF FIRH
ҲxD! f h	HxD!zf IHxD!q f IHxD!g f IHxD!]  f IHxD!S e h	HxD!Je h	HxD!Be F
HxD#hX#h) @!4S A #h f F
HxD#hX#h) @!A ~D z#h e 8FbH
F!xxDf`KaJ{DXhk+'1 x( ( VHxDJ) 8@!޼"xP(& *4/!!xK+2;6JE@ #xZ*VPKnid_Z !x)u)x):AHxD@HxD?HxD=HxD<HxD:HxD9HxD7HxD6HxD4HxD3HxD1HxD0HxD.HxD-HxD+HxD*HxD(HxD'HxDz%HxDu$HxDp"HxDk!HxDfHxDaHxD\e  8f e hf e 6f <f e e d d Re e d e je pe Ne e e he Ve @e e e e He F H!xxDfKJ{DXhka"x*!&+
 HxDR) @!HxDHHxDDHxD>HxD:HxD4HxD0HxD* e  Hd 2e d d d d d d FHxD#h++
+? ) @!A  HxDD  d d FHxD#h++
+? ) @!nA E S d pFD
xD@:@*{DX+h BkX!I(
xD+h B	
xDyDp@!*kqc[*]*R	xD+h  Bfh6CML+,fE1k +4(h E&v.@	1FxDf+h
 B>.:: X y_F
&-  p	1FxDDh	1FxD>\	xD8+h P	xD.+h @@	DxD\& p B+hE B@	xDyDp@!HB'!{xD+hkq"{* 1* (* xD) (h
0YE4B@xDyDp@![ B+h B  B !i	pxD)h E ai	TxDp@!, Bz+h B oB i!i	xD~(h E Yai	xDn+h  B Ii	xD^+h  B 9i	xDN+h   B )!j	xD>+h$  B aj	xDp@! B
?+h  QB@%ddxDyDp@! B
&(h E@A<<xDyDp@! 9B
*h 0YB@xDyDp@!q 9B@ҀxDyDp@!a JB!Y+h
 JB@xDyDp@!F B
+h JB@xxDyDp@!- B*hE B@llxDyDp@! B
*h B@	@@xDyDp@! B
x+h  B@3xDyDp@!ݸ B
_)h  B@xDyDp@!ĸ BF)h4 B!xDyDp@!xDyDp@!xDyDp@!𙸽p@p(h40B?:p
!+h  QB?Ϯ}(h0E?Į!IPxD(h0E?;B?,xDp@!TIxD(h E?!i	 xD)h  B?ai	xD)h  B?})h  B?)h   B?x)h"  B?m(h$ B?bIpxD^(h&0E?Q(@;B?KHxDJ(hh0@;B?=0xDp@ ˿!*h 0YB?D(h4 B?:p[HxD*h B?*h B?O(h E?#[HxD(h E?c[HxD(h @:B?HxD+h\ @8B?zHxD*h0@;B?mHxDp@ N)h  SB?u!@)h  SB?i7(h B?^aIHxD*h 0B?N*h 0B?C*h 0B?8*h 0B?-p@*h KB?
!*h KB?*h B?խe*h B?ʭd(h4 B?p!+h JB?|+h 
B?qf+h 
B?f{(h0B?[!IsHxD(h0E?KaIlHxD(h0@;B?;fHxD*h\ @8B?.aHxDp@ _p^HxD*h B?4*h B?)*h B?p@ Pd  ,d d  d (d c c `c Bc ԍ c c r c la Vc  d d c c c c c c a  a d a 0 ba  ,a  `  ` l ` : Z`  (`  _  _  _  ` N` j_ ^_ N_ ^ ^ ^ ,^ `^ T^ N^ H^ ] ] l[ \[ R[ L[ Y \)h  B?q(h B?!IHxD(h E?ܪaIHxD(h @:B?̪HxD+h\ @8B?HxDp@ U
HxDںHxDԺ XY HY >Y 8Y \Y @Y -AG*gMF}D'T*F*н) aHxDA &)@^IjXh 8B ZN~D0FBѽ)YRNY1h SB  x (@MHxDh1hb0XB|IHaxxD\GHxDX1h BlCOD8FHEE>HxDB0h
BW
8F6EE6HxD03h BD48F$Bѽ-HxDA +HxD H.X1h :B(&O%FD8FEE!HxD3h 8B48FB) A HxDA vHxDA pHxDp  "[ &[ >[ @[ T[ Z :[ $[ pZ 8Z .Z $Z Z Z Z K)J{DX"h		HxD	!hB#
I[XhBh
@$-r"FH #xD 0HxD NZ &Z Y -C)?KFF{Dc=JS  
BY&FV[-*F7I	yDS *FF3HxDLG 0 B:by!y*>ّEBӖ4rB? *.D tE'HF2F*fˬ `+`F. $Bѿ/&   Bbx!x*ٺBؖ4rB? *HxDC 𒻽
HxDC HxDC  Y Y 2Z X *Y ^Y K)p{DF.ѢI[XhBp|D z +#p@:@h*D  d!h	JXzDU	 BaEɀHxDp@ ;HxDp@ 5:>*ov n n n   n n n n n n n n   n n  n n n n  n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n \ n  lHxDp@ !x )jhHxDRxgHxDx ACC0!xx )bax\HCBxDBp@ º!h	WHxDp@ !hF  	RHxDp@ #h;+nٳaoFHJHRxDQ	p@ !hF +\	BHxDp@ !hF  (C	=HxDp@ };HxD9J:HzDxDhS!p@ mex4HCBxDBp@ _K4Ha+HVOaexD
5r	bR	p@ @!HxDp@ :HFxDp@ 3HxDp@ -HxDp@ '  b  < pY HX W X d X ~X dX NX X X W L W 0X W W tW W LW 8KB
F +3IFyD2HxD8@ 0H	XhdEB:+2 H<  ++$-:!xJ*1ٴIH=xD*x4eBС `F.   )8!x )8!x)uH=xDax4 )
HxDHxD8@  U V V V T "K){DF I[Xh0B$**BFHxD@ _HxD@ Y"hF C2 F*FHxD@ GHxD@ AHxD@ ;
HxD@ 5 
 U T U TT tU V _K`J{D-OFX:h 8B.k[(AkB4FF *)TI $THyD*xxDSN+xAF~D FOHxDd)0F4	y^,Ѹ!GHxDO DIEH*xyDxD*xkx F@HxD>?HxDO ȸ5,P;h BJܠܐ7NDܰD؀~DDD(B@0F*xix]*
)09Gix8hk*݊AF[ixd
D,;h B*xS\+QFYkx+HxDO rHxDO kHxDO d` U B V U S ZU  VU dS dS  U  $V U R (U 8FK
FJ{DXhAhHxD(Fh  8 va -OFNFK~DIX8hV  0BOEE(EF-Ik (KݠIyDHbxxDnaxiI FBFyD8hB@$IHyD"xxDBFFHxDR  k * xA) ~B HxD:  k*݇I FBFyDHxD*IyDLJJH#xD%	F0OwIFwK^FyDvJ{D	zDuHFuIuKxDyD{D);qHxDpI"yDG>5.bx*J*(@O~qEjFI(^RbHxDaI("yD%*]I FBFyD (?W 0k($Fh iFI(i  QFhC 
FJHxD+[)MiIzh `hK(*iF	(F"xF
,\ 0  ",0; .I[ h? +#HxDHZD(F"Q V $a .a a a |x a a ` ` ` ` ` ` ` ` a Ta ` |` ` 8` _ ` 8P_ pFF|FHxD+F;FIHxD$.H|xD$ Fp _ _ _ \K
F\I{D-GF^X3hPB-B(F-x=)Q)RHxD)OHxDGGL@@		_EHxDLBB-0O
O
/FD	 F|?4/3hHFk*  UE0HxDtL@@		)(;'HxD`-$OD	X ! F=4O-2h8Fk)  NHxDB0+  (0 +  (0 +HxD*h
HxD$  _ _ F_ _ _ ^ ^ ^ ^ 6^ -O-*ALF|DAڀ>KT  
E :MF:O4}D9LD8M|D
1}D 0[@A𶀹A
 {0L F&HxD0+
@ "I²yD
!IyD!HxD0I"HyDxDT"FKFFHxDE   	 E 0  $tI $GD  w ^ ^ ^ z^ ] ] v^ @^ s X^ 0Y)    h  ^        hh                            t                                                          t   h ^                                                               G+        e                     	 !k*@|h	yDD /@A  E{@xDVO0,Ѻ l % ,~DDX	T<l{D\yD\F~D}D
X"Rg8F@&2FAFAF:FF
3FIFZF> . q,Ѻٛ@RExDD,_BllyD xDP@*F#F PxD  `  ,
 ,H` z@ 0xD '
(

 0
xD  +,3I0[
SFxD

xEU
xDzjD(D,~D8FFeF
+axdEAՀ"x9FXF#xIF F0F:cx)FCE,֮ ((
yDxDF
xD  , E,	,F	xD  ,􋮺 0	xD  ,up?	xD  t,dn٩OuY4	}D\D0F1F0-69FRFF(FBњ, {$	7<,?8P `,	ECxD CY }DT;F9F(F1.  <,? 0xDf  k(?,ꭺhXD(~D8}DzD{DDxD	F
8H
@'x)F0FcxFXF&bx * 𙅔 )Lx_cD 턠y
FJF9FCF bx<,?w:, D, 8,{٩OuW4	}D\DV+(F9FBѸ, ,[s	FxD  W, , ,AY	
pFpxD  9<,?(Q$ DG 7
  a
  
  EEE
  
  ,'I  	xDp KfV6~Dv}D{DDyD(, `@ "xO{p /#x>F4 F0-@݆PvD6DD{DyD`&x@YF2F8FO2FCF FHF RE
.  i. . . hk)@ $
-@򌆺 (,  f,Vnp08@LLyDxDa0FxD  @<,?/    ,&> xD  #,+@d@$`6P-HH yDxD2:F #F0xD` 0P- @$ xDL/<,?ԫ5"5"<
,?̫R$0DG       M    ȫ	=0FxD	v0F|xD`@v	PT"Fp}D)FFDxDRF;F 4xD,()F2FxDz2FFxD  [f
 	@R	!M"Fp}D)FFHxDXRF;F HxD, }, , +H1FxD  ( -#

d ?_TX\ p;k+?-/ 7//-
 IFFHxDZ'-chIFL-gh:F?h h	 IF8ݪ @I%H*FyDxD
0FH xD+F=- ( 0H $xD   pH 0xD g*:; 0@$HxD   ju	6FHxD  Ze	&FHxD  JU HxD  ;F	pF|HxD  '. ;.bh*ZpHxDjS+th	jHxDS1+hh:zeHxD*S2+Z!i	aHxDTai	_HxDNe>.?\^ah	XHxD>V g ^g u Hn[ ` Va a ` _ _  _ (c c <d  Jb X` .d ] r nd Z ] ~b ,b b b V\ [ q [ o [ [ V X 0X X T\ m H\ &U 8U D\ >j [ 
\ \ ] ZT 0n V pZ <X m ^ ^ 8Y Y ^Y 4 z\  \ X  \ N\ 2W FQ ,i \ v\ Y Y VR Q pR R W W W W W W ch:
|xD:S3+|h	lxDtah	joHxD`ahF C 		4xDTlich::xDJS+@XUah	xD4L-ڨ OIFF(uD  ˸JFFxDO0JF#xDF
O0xD O0 BF
S(FRFyD
Kt@j dD
gF
U;"F8F1F4TE #a  <
 B^ @$0xD F  :D	
0F[xD  $HxD8D|  H8D  
	0FxxD^pl xDR  깺~	
FI *F#F ,xD6  ͹~ׯ	0FxD"
0[H	 xD  #~	-0F[ $*F#F HxD  OtO3R
 D$D FFF0[9F(F
}!FFPFE   \~fLN|D !FMY
a0FHxDxY!F 
S`F @ !FW 
E FRH *FxD3F  ~)Pm⪲IS@yD F
!FHxDl  *HIxDyD` @
gFH
;*
xD
P R @H:
xD+
@  ׸~ᮻ@dOIYyD
FHxD&	!L0, p#D$ 8F@L|DьL|DO)DЉODH xD  ~	`
pFHxD  ~	0F[vHxD  k~u	PF jHDDxDD  O~Y	
pF_HxD  :~D	0F[VHxD  %RI2FRHyDxD
22FFOHxD|` '  8(,  EH)F2FxD
2FFBHxD^  ?H@IxDyDT =HxDNe?q HV FV U "U T T L L L NM X DX N N BP L TL L K K K <M M bJ hdN M L L L :I L L ^L nL H H H ~H L zK PK P P P N  R  Q J zS O J-OFHzDFX:h9E π 0O@k (@倸`vIH yDxD
\ @I@yDFHxD
g R0 IFyH*F#FxD.@򭀘>) 򒀘 N	 	 +@_  . 9h 8Bpؘ 	)@|F|_MD_KD_I}D_H{DyDxD$B ;7v0} .{  8B@"x	)s	HFbx
 F
bR!BF[F! - :F8H)F"xDO5HIFxDO2HxDO/I F2FyDO
A,I F2FyDOҺ(H1F"xDOe%I%H yDxD
{IF#FF!HxDOSHxDOIH)F2FxDO@ކ R ] J [ bR $] Q [ J ^R FQ Q P P zP Q BQ P \ P JP pQ -GF7KDZ@ h`qBM2HAFxDh1HxxDb/HxxD^x *9#h8JB48y (@yh	&HxDJ(_h B| $DfEW!F4FHF0DE(FeFHxD&yxJ *D!H"Z0xDT3 O0k +к . <[ B[ D[ .[ [ Z @Z K)J{D-OFXǰ0hE!{I]X+h (@BFvIFvH yDxD
FsHxDи E2hB@ˀG)h0B <j"FF$ * ;B|: 'D)h0;Bo!h	bhhHF4WE, 7GE cFF4 +[; 8MH4DxDLIMKDMJyD{DzD ' F3FZ	XFh0Fd*h E,chF OqF$N(h Eآh3I74yDGEHF8(hB*HxD,b(HxD&+h ,8B!h	#HxDah	!M}D(Fh	(FOD,4U+8FѲB6HxD$k& lZ  hZ  Z Y Y Y Y Y  Y Y bY VY RY BY 8Y -AF(d°$4~DiX8hA$"F yDxDeFxDD%aB ԁ%D(cBBXBHxDV0h :E[)j	jjHxDA;hB@΁BD!bBLSBBpBwBHxDrJXh
E1)j	HxDdD*aBBHLxDT4Y h :E)j	jjN~D0FDHxD@!h( 0;B@uHxD4D"bB SBHLxD&4Y h9E)j	jjHxDHxD#h( Eةj	N~D0FHxDL4Y#h E*jI$yD
IyDHxDHxD#h BjjhF JOqzDFHxDHxD#h( 9Bةj	jN~D0FHxD!h0 :E?u)k	jk0FH|LxD4Y"hE?`)j	N~D0FHxD h$ E?Lij	0F~HxDz#h(  :B?:j	j{HxDjyH^LxDd4Y h0;E?$)j	jjrHxDTqHxDP!h( E?j	jN~D0F@iHxD<#h, B?j	0F.`H@LxD(4Y!h0;E?)j	jjYHxDXHxD h( E?Ӯj	QN~D0FPHxD #h,  B?j	0FHHxD#h0  B?)k	0Fjk?I?HyDxDJ=HxDH3Xh E?)j	7HxD6j	j0F2HxD V̀ .X  X X X X lX >X X FX DX W W W V W .W ,W <W DW V V W W  W V V V vV `V \V 4V LV nU 4V U U U T U U T  RU tT @U 4)${D-GFX° hAl]X+h (Ri?\xD6AS 9;+
)F0F[A"hB@B+h
E07j?$
 / pE% &DF
~
Z;E;@FD !6" B)h pEHxDI:FHwyD xDFHxD/S' DG   =  a    [  =    =  )  K  =    =    K=  =  =  U   HxD*h E1j	HxD+h$ Ewj?@/HxD+h( 9F  (" ~L+h E7j?@/ظH$6xDh+h0F9F  (s" `H!xDR(h0B?a7FW	D@FBHxD>*h B?Lqh	@F2HxD,*h E?;1j	HxD HxD(hE?)1j	HxDHxD+h
E?1j	OD8FHxD(h$0B?qj	8FHxD*h E? BFF$6 * 𴀳Bؑ 'D)h B?ڮV	HF7GEѐ)h E?ɮ7j?@/?ĮfH$6xD+h0F9F < (" ^H!xD(h0B?7FW	XD@FTHxD@SHxD|*h E?1j	NOD8FnLHxDrLHxDh)h E?v1j	D@FX+h$ B?ewj?@/?`=H(6xDF+h0F9F  (Q" >5H!xD0(h0B??7FW	@F"+HxD+HxD)HxD { VT T T |R ڽ S 2S R R R R rQ pR JR ,Q Q Q R P Q Q P @Q @Q O Q P O P P O xP XP jP xO nO K)J{D-AFX° hAݨIS 0 (i?HxDAS 9;+
)0FA!hB@*BHxDI:FH yDxD5FHxDor/R'0DG           %  K           m           K  m       rHxD<  B1j	mHxD0   qB
E FU;;EbH %xDAP8F)F]HxD  B?p1j	WHxD  $ E?`sj+?S8NHDxD^#HKHxD 0B?E1j	EHxD5DHxD   B?21j	>HxD 0$ 0B?"qj	)(4٣pB?vFU+B+-H %xD  B? 5j-A-?%HxD  $ )F  (" pHDxD\!r 00
v O O M ` >O N LM N hN L O (N &N L M lL "M M 6N @M -AF?LF?K°|D>I?H2FXyDxD;hAF:HxD$(}Bq(:ЎB5HxD4JXh
EG1HxDA:hBKB-HxDT0h
EihF $JOqzDF!HxDBD$`BHxDIbXh 8Ei	*jHxDi	HxDHxDZs K ƴ L L K L J J 4K  K rJ L -OFMðK)}DFX hAA"hB@%CHxDBQ :9)
*:ٓI2FHyDxD FHxDl;}+.Ѧv.R&0DG q   k               8F1FvHxD6uH*Xh0E2i	qHxD(oHxD U
 0 Ei6 7 . 𧀹B %DW	@F5B?r  0B[HxDeZHxDSJX)h0Ei	TN~D0FRHxD)h  E9j	0F@BHU   Ei6 7 .bлB %DW	@F5B?"  
BٮU
 0 Ei6 rE.O %
D	DF
F^;;E8FD !5W" ~B{?  rEoHxDfHxD`HxDZ jr J I  K K <I NJ  I "J J H ~J `H 
I H  H G |K}J{D-O$MXF@@F3hF4F ( ؀sI
 F yD:( 0B (F	
mO  $B &DDMOaRFF  F*F( 0XF !(F  r 
l Si d w k Sa } B6B &
DDOOaRFF*  F*F(w 0XF~ !(FV  ~r x	l rRi ld fw `k ZRa T} PB?:6B42hB	
mo H H H H  H -AFLmK)|DFX(h	*hB@
mxIwHyDxDFuHxD1})!)rIbXh EinInHyDxDFlHxDkHxDiHxD?/R'0DG   wwwww   www   wwwwwwwww   w]   FJXh
EiEJOqzDFbBHxDp@HxD6H$X!h Ei?9HxDv"h  9F  (" nM1HxDd%H!Xh :E?xi	2jsj(HxDP5H!Xh0E?diPB (?^  aE?Wo4FOd@C0F"F0F1 #3U m D ܱ F F  F F G "D  D F D E vC 8)({D-GFXm(h@_X;h (@i62F>yD xDFxD.    6 6     bb   t    PxD9h0;E^!j	bjj0D@F8h, EJj6E04DHF;h F1F  (5" ~ xDp9h0;B#!h	bhh@F`8h Eh6
HFP;h 1F  ( xD@(hB@
m9h0E BFF$4 * ;BL: &D!h	bhhHF4VE, 6FE8h9Bٿ;h :E!j	bjjxDxD9h, 0Bj	f~D0FxD9h0 0B!k	0F9h 8E!j	bjjxDy9h0;E?n!j	bjjxxD8h, :E?Zj6 .@44!h	 ah	r 삠h 3 h	 Ԃq  xD|:hE?/!i	f~D0Fl xDh;h E?ai	0FZxDT8h0E?i	0FF9h0;E?!j	bjjxD48h, E?jXB (?߮0 qE?خo4FOf@C2F8F8F "U9h :E?!j	bjj,xD8h,0;B?j6 .@44!h	 /ah	r %h 3 h	 rxD8h0;E?!j	bjjxD9h, E?kj6?exD;h0 1F 
7 (U" U8h :E?J!j	bjjXxD9h, 0B?6j6?0404xDp;h F1F 
 ( " 6h9h& & :B?4h$ ,@`61h	HxDJqh	`HxDBh	"
H
xD8h	HxD0`Y8h9E?߭!j	bjjD@F;h, E?ʭj6?ĭH04xD;h F1F 
 (" H!xD8h0;B?!h	bhh@F8hE?&j6HxD?:h$ 1F 
_ (}&9h :E?u!j	bjjHxD8h,0B?bj6?\04D@F;h F1F 
- (K"  HdxD:h0B?9&h6?3@Fv:h 1F 
 (&HxDf9h0E?!j	HxDZHxDT;h E?&j6?HxDtHxD@THxD:8h0 E?#kyJOq44zDFvHxD2tHxDzqHxD9h0 0B?¬!k	iJOq44zDFeHxDXcHxDaHxD;h1 B?shYJOq6zDFUHxDxSHxDDRHxDPH
xDNHxDLHxDKHxD&IH
xDGHxDEHxDDHxDS26k vB | D E B B C C A @ DC fA rA L@ &@ \B @ @ jB <? > RA H> 8? = > @ @ @ @ = = ? = 6< $= > = X< > t< = = D; B; = = : : J= L= : : F= ,= = < <  = < < < l: -OF`GŰ\7)|DFX(hCC)hB@E@xDBQ :9)
*S$2F$yDxD
FxD;}+Do|fD.R&0DG+  +                    8F1FTxDx"Xh0Ei	hxDzy`xDtsLfY2h~E
	
MHFX; ;B, $A@xDV!FHF
-" TxDJ1h| E BFFFyxD2uDxD*5D{D yD2h ,8EF4	,	
, 𙁠E,
 3h,9E 	 	XF	XF 
Z+8FѲE`0exDY3h E?`i	DE|D F<xD1h  0B?J9j	 F$1h ~E?;
	
MFJF\;;B 'ApxD9FHF
w" xD1hp B?KFFFxDt|DxxDt47DE 1h B?E hFPF^dY`dxDRY3h
E?Юi	DD|D FB<xD<0h 0B?9j	 F$,1h0rE?
	wDFFT BH 'ApxD9FHF
" 1h0B?HxD0hq0B?|RFHFFxDtHDxxD47DE ހ0hB?ZE hFPFHxDH!Xh E?Ci	HxDNYH4<O xD43hDD 4BYB?!h	E ##) " *@Fa13h PF~1h 0h04;E?H
4Ȓ
hxDĢh1hDD '  +Z47\E ЀB?ܭ!h	E ##)    (a1PFD1h 48B?íHxD81h4 E?ak	OD8F(HxD$3h8 B?k	8FHxD3h< B?k	8FHF 2h ~H  'xD2hDD 47\EB?i!h	E ##) " *a1@F1h PF0h  8B?IdHxD3h  E?<!j	^OD8F\HxD1h$0E?(aj	8FTHxD0h(0B?j	8F4:B?JHxD3h4  B?ak	COD8FrBHxDn3h8  B?묡k	8F`:HxDGJa .: ~8  x: 9 7 ^9 8 : 8 7 ^: x7 Z7 b7 9 6 9 ,7 $9 6 5 8 8 r5 j8 6 7 x5 4 7 7 5 f7 4 d7 6 l4 6 6 3 v6 Z6 5 3 5 5 3 5 f5 (5 2 5 4 -OF ]F<F}DFU   +lyD"}xD
yFxD k (H(ah	hxDh	"ixD  k( (,\ !,}DzD\5cEE[<`}B[< +,  )$   x!E }(((|49FxD	O(xD	ObhF+ *b}[}D.hD3F3@+ȿ #BC\1 EihEѪhE)IEhEQ9miD 0)P! D G A    3  c  q    A  c[d}xD kL/  9B k-
ݣ[⋙R,xD j1	 j-yD, xD
t*FF xD-0F +   YB QE X + oo %
D*9xDzD@FFFwFhXE *jFBF0+jZEF8FAFFpF-a}   )'LLDD Ph  E ?(@󑂣h    N0h0i c0i	P8(?ĮQ IDG     u  k  -     }!   / +@i62F	P>yD xD
F	xD ".?P&D G M    s    S          S  S  S  S    S      s    '          /?(@iyDxD
MFxD'/% +@i-xDA 9
)٥P8( ƃ F F9F F9F F9Fs F9Fd  B%j-@k\xDRTxDL  B%j-8h$4~D0F8   F)F 	 (" 50%xDe"  0B,h$0F 0(!F 	 ("  0
B%j-$4xD 0 F)F 	 ("  dxD  0B?!h	pxD^  B?o!j	TxDN  
B?_%j-?Y0$4xD 0 F)F 	; (H"  dxD  0B?4!h	xD  B?$%j-?xDp  $ )F 	  (
XEF?ѭ	X-xDPBF[FFѳB	lQxDqD>-  	  k+ )4xD"  0EU	F|D F  C+ xD  B	 F	 0 Q)~xD  0B	 F	  C+bxD  B?n	 FMhNp/Gh*FdyDxD	\F\xD#}+?4LxD   E )i	0xD/ *F yDxD	/FxDz#}+?xDp   E i	xD` F9F*FJ/xDN@S 8;+
( ] F)Fϻ/̫*FyDxD	FxD*"}*@-  ,9B Yi	dxD!j	\d~D0Faj	0FLd(~DH4U;0FٲB F9F*FT F9F*FyFMEFFH +?HoFxD %HJFQxDFDF^FhB.F@FIF.F-Fo`FgE		\=F
| +jB^EFI-]EHYxD-0FHxD  B i	HxDxHxDr 0B}!j	H$	xDbHxD^  Ejej-@-fN(4~D0FN   F)F 	 (V" F  ! EG\;YB )A@E>ذHxD&  0B1,h$@,-0F5  (F!F 	 "   # mB,h$@,ؙHxD  (!F 	 (?㬒HxDxI*FHyDxD	FHxD"}*?fHxD  BXi	HxDSHxDMHxDGI*FH=yD xD	[F{HxD-?5P%D G    S7          aaa  a    aaaaa    S_HxDl]HxDfX 0 ` 3 3 3 2 3 4 3     h2 3 0 n 2 2 2 2 @ B , 0 0 + P 0 / / / `, P/ + . * j* @+ :. ) * . 2. . ) - - t- ( ~ , ) ( '  @, ) ' >+ "'  + H' B' 0' \+ >+ L+ * ' % ) % z) & ( % ( ~$  z& N& t$ $ X( $  % ' ( HxD8HxD  0B?%j-@-?HxD  $ )F 	" (zxHxD  0B?%j-@-?pN$4~D0Fl   F)F 	 (u" d  # cB?fh$@,?a0FJ  (F!F 	 (R" BVH!xDeD4 0 B??)h	NHxD&LHxD  0
B?+%j-@-?&DN$4~D0F 0 F)F 	 (" 5  %e B?,h$@,?0F2H$4xD 0 F)F 	x (" )H!xD  0B?r&FV	 M}D(FHxD   B?]ah	(F	HxD  E?Jh	(F+ :& 
& # % " % 8! $ " ! $ n  $ " -OFD 	4|DxX6	.F &h0E(FeE *@#*Rh@ . P oF j YF:FFxD>T
@T hk*@lD 5E B ΀L4 &LL{DxDyD@4@@{DxDyD	
c[+@ՁXB dE QF6uD2F!x) a) r) | HxDcxѲ )@ ² *@ [  ah	HxD!IHxDbRHxDh	HxD T hk)=HxDhm +@s: a
FR(@I 9U
) 4
) =) ) HxD
O) ]HxDfhk* - ,(E( ,FBKHxD
O۸) ܀2)V)ѴHxD>HxD8HxD4ah	HxD.h	HxD(ꡉIHxD RHxD!i	HxD)ѣHxD) )џHxD jF d 1F:FFHxD
HxD}HxDxtpHxDah	HxDh	HxD駉HxDRHxDBNO DchF>vxFvXFAFbD7Bj٦v@EܽB'O D	W+@FYFB[YEaHxDp	`HxDl	h \HxDb[HxD^ah	YHxDXh	WHxDR飉[UHxDJIRHxDD!i	PHxD>8DMHxD
O
GHQFrxD
O] $BHxDcxO@HxDcxF>HxDcx:F[;HxD
O $H 1 @:1 n1 1 2 *3 L3 X3 0 0 0 0 0 0 J2 l1 2 1 R1 l0 0  0 0 0 0 >1 0 . 0 0 / / / / / / / / / / t. p. t. r. p. p. X- V- r- - - p- - -CF!KF!J{DS J 0zDkJzDH1FxDz k ('d $@
WD(]4	B*[RE4HF4\B 0k(I(F2FyDC𩿽 TB . . . f. ,. F
xL" RHFxD. F . -OFhK,h{D`پJ	X8hAh0|	))зH$xD F$HFAF) F$8hIFBF FL S O I    *1ЦI\XT   (FmKe +`m ! `e<hh;l$5FDPF4,ѕH{xDHxD F4S@mYe )|cmcetx@* p* "ԄH!FxD  T@ ( xzHDFxD 0~5) )  в (@Ȳ (@_ +@O
* (eH)FxDF`HD	xD @pDDN*6WHxD2nBTBDnBKT  8I5|zJM,
*	}DHHFD+`xDN* AH)FxD?HxDw=KO
*{D<HDhxD
^!O
*D6HD  xD
\!t1H)FO
*xDFk.H)FxDFO+H)FxDFT*x25'HxDE0[5 )!HxD8 A P. D@N- @- &- `-  , ,  , 
{ , . z + + +  nz + Ƅ Jz + + + + h+ V+ h
K,h{D		H$1:Xh= FHxDP F = P* -G
FhN,~D@򧀳KX8hAh )h뉨
	Fd@\`E( ( Հ !:hSh + 🀽  *@;hm ( $ F
IF SF (;hZh *(@IHyDxDFHxDI, ;hZi *[@PB , , H!FxDHAFxD*RIHyDxDrFHxD@)z;hZiʹ@@QExع  rHIFxDpHAFxD뉨
	ekHxDHFFn$zRFdHxDjHFQFLj(@_I_HyDxD F]HxDlI,e:hSi +I@@QB?,M,PQH!FxDRPHAFxDL2 #
F HFRF (0*FEHxD6{JFCIV
 yDJFF@HxD&>HxD ~=HxDy"F:IV yD"FF7HxD5HxD4HxDF0HxD"F-IV yD"FF*HxD)HxD'HxDF$HxD= 2*  ** * 6* ) 2 ) ) ) `) ) ,)  $) ) 6) ( <( ( ( ( ( ( f( \( F( Z( V(  ( (  ( JKzD-OFXF8hE 򰀘  * *ј)@IHyDxD3F FHxDd;hk ( > B DzMDzKDzH}D{DxD
 YF HFex""x+FFPF2- !!BAq"xbiHxD"hI 2FyD
Ou;hhB dEBؘ "x DܰW cF[aI@RSI	RHyD"|xD	 aFJHxD;hk+&v,D:hBBHxD
OY
 @.pE*@Bk+E 
 -k*4!
;h29B4%bR)HxD;h F`@
0!HxD;hHxD
O
)?HxD
O;h X: '  '  ' ' ( ( ( ' ' j'  L' ' ' ' % % -OO  #FD t ) ɁJX0  SB ЀF9+@+Of  )  BB 7F+95_X "aE"` h    DWE :  p _BE""`gD 
 "`BpOI
N
	~DO hBi Bѹ RҞ. /
-  Cx߲:@` )vPjBK؂(% )kЅBCF;G95_߲ )X BB-G59۲6g 1йIg`!!tBhHVxDR# f h@<BhHVR# xDV hCB +=ݑH!"xD@X0T3TO0+g`&!!trhHR#xD6 h+lfNNNkk. H!"xD	#g`#t h+Ѐ𰀀""t #c` h  t h1h wE#g`#t  #``#t hSB +0hgE
##t # *@󶀺FF!B@#a`` h}PB (1h0B! *!t #+gE#Ѯ g` t h`<!g`D!tMH xDR# hP!g`!t hK" #"tc` hE g` t h@SB& +&t?M1h  gE?D9xO3 # *q:BA#fDg`"D"t,HqhxDQ#r hbF+  ! ta` h #H!"xD!H!"xD HxDXO0V pHDxD\+	xHO0%HbFxD>O0FR 7   & j& r& @6& %  $%  $  $ $ 0$  ,$ # -OF(f$&~D|DhV+h   
+ O+ 	+ ԁ!"V0xDT3   0B@]+D+ `oB / `V    dE So"F;FpX hY L  S2ɲ ) ف;+ӂ+7+X!`
"V0xDT3  ++iB ) 45Xh0YB  -(e~D0Fz=(F!FxDp  ŹD40xDS!`  w2;tV pi (jh )@$-@!ȤDHF0F +   * ā B FOF%FFFFfFF@ , p8F)F2F (ѤF`FDSF8FF Fr$,FNFFFX  T$ pi (" )0XB q4%F ${D
KD{DIFDHyD	F9FgFxD;#P D i3h FE #h )HxD` *!F(F8F "F i (@qE x CE	OYH!"TxDO0H)FxDz , TJg !h!J
%d$ʸA+zD2 ; ;hJ!(FzD#
 $!


18 9
0;08  $	)
9$01BћJ
XT1X>H!FxD"  8*FDHxDQ.  (-*ХH!xDhB ( 󒀈JXh B n -?􀮛H=lOxDDDB@F8F=io aKHxDt +S2+ -?XHMxD}D ?(F /h *DЄHxDhFglfl0 OyD 0 F
yEch +wIyD`vHaFxDD o' "DnH#`xD	h h  hIhKyD{D	h`=OYV	 0 +N8JXmHe (Vym""+ye 0)F F F (@ @ ,:mAe ){m"!  {eWMJNHzDxD`	h4hh`,FNFFO27  :AHhxD31O" YT$" T(F"nBT"        AT3 @$ 8n# " " h " : t ! ! 8t ,t t! t s s   !     ,  Ȋ \  *        
r q q  q  F |q Dq V " nBS" T F  `mSe +
xm"" +xe"T" nBT" -OFFF!FMO)D۝0+$!IH"W0xDT3b@Bb ,>H:XDT
  QF0F!F (۝)N6$IF@F۝0+H
 (--		D&@FIF (-- (
!"SFXF ( ,Ѧ( ( ,ќ= QFHaxDH!
"SFxDH!"SFxD{, @ & 0 @ 6 -OF5D
FX@#hq۝  	(t!p"X0xDT3#hB@bB L%XP+hk )@t ((e  X`T0 /@߀px(@/;O

@ )=-tXp8h (@ӀmSe +pm " +pe
$XFIFBF 
۝40+ ˀ!"TxD@@F(hk )!"TxD0
$XFIFBF۝4 (@)h
k *@
		BFPFIF ۝4 (@΀// !!@򾀺*@/ /
  + q+  D\#HxD
		DBFPFIF ۝40+@G (@𾀹)@/ /
  )  *@_HxD
	6vp!H"X0xDT3HixD/p"/HxDHxD  T1HQF"TxD@F`@@F\ (;9h		D )HmCe +qm  qeXFIFBF 
!40+YнH!"TxDR@F0nBT  P
/ րVH!"TxD4@FH
xD  T*+ D^#HxD
 "-
 )@/ ŀ +?MH!"TxD C@F (		
	BFHF 4 *@( DZ+	 
HxDQFBF 	4)@ 
 )@

?hD /@mPe (wm #;weHFQFBFWb4 *xeH!"TxD@FqQ`H!"TxD@FeEnBT  UJ!zDRRHxD^PHFxDX !zMHxDPLJ!zDgIH!"TxDL@F*
DHxD8AH!"TxD8@F<J![FzDL  T(z@F  (߭ 	
nBdT  b(H
xDI&HxDD* @ Dp               : 2|        d     v T -OF(WF$7}DXhiG,YmXe (Ecm "+ce '  XT8F1FB ۝ (!"TxD|[fE/9F0F# 	۝)!"TxD^<nBT  ^pAFxD:dxD2#L-X)hk +PѸ ND۸ݸ,,AFxD)hk +!"TxD0F9F 	۝< (1!"TxD0F9F (۝( *7!
"TxDDxD^(,0RFXFyD0QFZFxD	 BF(hk@FIF] (۝(0+H!"TxDwv0!"TxD		D@FIF8 (b( *!"TxDrQP		 
PFIF D( (!"TxDT32)xD<) и
٨+	ٸ@AFxD&|!"TxD		D$6в (@Հ˲ +@ՀT  AFPFIF 鮝( *$!"CFxD!"TxD		Da T	E
HxD(hk9H!"TxD&+hk:H!"TxD@F9Fk (`.H!"TxDHYFxD}	DI (۝< (RH!2FTxDd)hk@FIF0 (۝<)RH!
"TxDlK+hk *?GH!"TxD\=TH"!xD3FR(hk *кH!"3FxDHp T$r T$9F0F (۝<)%ЫH!"TxD&09F@F۝<0+&ПH!"TxD?60F9F 
z<0+#ВH!""TxDiH!"TxD,DD &HFB)]6*hk HxDVD0F9Fz 
><)(xH!!"TxD-T	  IFR@F9F[9< (-jH!"KFxDv)+hk"dHxDVD0F9F9 (<)[H!"TxDtSVHxD^ "?6PHxDP0F9F (Ѯ<0+HH!""TxDH&?09F < (<H!"TxD.E4HxD ~$ D@F ,    z  z 8t . , $      l l         z           ~ V  (       F!-AyVyyyL|Dx FJ QzD* F _ B) pFyFAHAIxDAMyDB}DF?HxDt  FR:H3FxDf8KXh
k *Kд @0[ 
R!0[e*"z(HxDF
f
G '*`*!':a:
 JZKS+"`s
 FHxDx(p#yIHyDxDFHxDp@   ;>z :) 4 6) *) ( ( ) y ( -O)N
FF~D,R (/ѮIHyDxxDFHxDx+)"
!ЦIHyDxxDlFHxDx"- +H)FxD
O<HxD
O5+
x) )e-ٔ#  *Ѡ@$1B<<D"yDHFAFHFHxD|JXhk )] `FvH+FxDhPmp 
R!0[ejezsHxDF
f
G '*`*!':a:
 JZKS+(`y
 FY0^H_O_NxDD%y~D8F1FFYHxD
 ZFVHxDG RI0MaF	QFqF	UPF-KH' PxDGHexD렌@@+7@;)2 f%D
DF$ 0[	HFb]b]fF
^	bF	
FXF@F	 FPF?s{{#H5	{	xD/#-ծ F)F
O  ; ( $y ( ( y ( 4* R( Nx J' h( T( 
' ' w ' 
' ' ' ' ' ( ' p
FhK,h{D+JXhAh  "iXò+Ihx<> +$ Fp   *HxD,D^# 	HxDHxD  ' ' ' ' ^K-OF]J{DFF\IX0h
S 0h /Y#hVJ
!zD@F|SI"8FyD	g*x	([({NIBFNHyDxDFbiJIJHyDxDsFHHxDh	)EHxDai	)#.
3hBbh  h )68HFxD!i	6HxD#h̰
!D@FZF !ZFo#8F*x	( F  YFBFF"HxDh!M !!J}DzD(FH)FxDZ wF r YFBFFHxDFy 6 r' l' p' V' ^' lu ^' R' ,' $' & & tY & & J& -OFh}M+,}DY{KX8hBh *.,	Ɉ,,
Fd@[XE
>hph (Fm,$ F
IF SFk (;hZh * m *HFQFʈRCi{@PEupJF\IU
 yDyFYHxDXHAF,
,	xD,SHxDIvi\E9NH!FxD@QEJHIFxD\E7 "FFIU yDAFCHxDBHAFxD>hm +ѠаJF=IU yD)JFF:HxDt"F7IU yD"FF4HxDd2H!FxD^0HIFxDX@Yii\E+H!FxDJ)HAFxDF;h^\EP"F$IU yDF"HxD40"FIU yD"FFHxD$H!FxDf <& & & % % t% % % % D% @% $%  % $ $ $ % $ $ $ $ t$ RKSJ{D-OFSF 0;B\ x<(`jBVnx '$ F`0L0>	* 
,CE=cE;.\>.Ѧ.\	k )Lа2F4HDxDYFQYF:FF0HxDIQF3F ,HxDE
4  E  KE!HxDOHxDO   k(I(FRFyDOL2FH|DxD!F!F:FFHxD)FSFFHxDO־ #   # # # # \# j  L# -OF|Ű 
DFxxXF
|-	h- $%FCxX h@E 
 I0[@iOO ( Ҁ - 𖂨y( F!FFxD@  :E ;@$	HF F @0[Ii )@9
@ ̲+Xh +@+XmYe )ƇCmS"+Ce t9Xh ,@h+XmLe ,AmF"+Ae 㲫@zXh (@ȃ4xXmTe ,AmR"+Ae  ĲW0h )@
9Xm\e ,HmP# ;He	  @ ( W0h )@x
9Xm\e ,[HmE# ;HeE      (?#$dE,@E ۇtE o fF `!FF8
xDC BABE FF FIF#F 	xD?	BF#xDW0h *@k	9Xm\e ,uHm.# ;Heh j (@ ʲ *@U	
	E ށ  	, , Sh#k+
@
L	ZxDn Ѳ )@34	xD`  ò +@^(
Xh ,@<XmYe )`m # ;`exD6@  B )h	'xD"#.
KEIFxD&,  @8   (@mQe )`m>" +`e
 ,?P +	 ) !h
k *?
tB ,@߆0xD
) 'NǼXW@h /@mXe (&gm "+ge 0 B5F 5 B.FB;h + ÆT] |!"W0xDT3	 $ "	
xDxEpAF2FxDn!hk +@܁

 ( ?	 * KFG!FFxDDe. |XTN xD4IFxD.樈 (   k +
 (qB )? E?
F("D`F
HD5F  H -


pAA2OB#D6 D !RF12F2BsD՜  dO|cEcECIxD , % R!FFxD,AF2FxD  W@T< DDDLD8DHPDDTX9h )^mQe )abmbe  KSEUFk.M٫B𹃚
 ##EC +@88. 
\&D`G   }            O    
  
      
  
  
  
  
  -  T"O	nBT/, 𤂳/, -@`BB ,/, 6B0BB `
/
5,5) NACBB G@ BB @"BB٬(F
JIS |XTJE XTJP XTbLR ;YT=F W0THxD  k
 ,pB (? E? 3F[ @$*0@"@#1FXF 0@	FIHxDF , 𗅻 F[!FFHxD6 	nBT. @$@ p?B v8O 
pp 8 \l j"  	/ |/  'T]PF7/#H 'xD#HxD  C p QB 'H')xxD#HxD@+ 0 B )h	OD8F@  0;B ih	8F'	#sHxD@  p B )h	yH'xD~#ZvHxDx@  0B ˁ)h	nH'xDf#A
 iHxDZ	34fHxDR@ p0B )h	^H'xD@#\H 'xD8#1F2 y 0B O<\O 
.FFE  t  		9B i
(F

WE\5F	3ػ;HxD@d 0 B H*R3H'xD# # D@! ! ! ! ! ! ^! ! f!  ! f Z  v X 4 $         F 6     n   J   "       'xDx#TxDp@߀  B À)h	'xD\#8 Ki +fk (?b(F
 \nBT  V9:;<=>?@A - A0 E # h
Yh
D0hDDh $D
    0A L"?R@>@ TX
yDL&F >F7h / 59$")FF ( F4Fز (@
 * jj				-PF:Yh (@D|XmPe (amW"+aeb(!"TxD9hT> !	"TxD   (mSe +Vam>"+ae FfF F[IF#F xDVw> TbV 0!4F ` ( 
@ @    0
 0 ) ߀		3bbdnBT> 2-W W0T"͸F" (߮h
D
,YhDDHDh$h
 hYhhhA nB\ TF ZnB6 TS 4nBTE  nBsTP qnBK TR IDxD / 쁸   B? O`D
F"@HFB@k
EOqq +?ͮ  F B?ĮU
0
EЮbB *?B?U  .$		0b	bnBBT> R@jj				p "9T  2dNYh (VJXm~e .`m+!& `e>nBZTW 0B?HxD0,4E>4 h !0
BD=Ah9mAe )Rcm] ce(F
oڿ(FտI+ &|XT(F
ſF"!FP (, h$AB
9Ah=nB֨T  Ը
 "(F
nBT] :F"`:F"
X""R""	Lx@ 1 D""!}8"" #0.
 *
\"8O  o8F9FF""9(F9" '#`	3(F
nB+ T&/;H'xD#Ͽ""""ID""A=D""F"F"""""mpFl#!#DHxD  	@FøHxD Z  F D@    j   6  FL!J|DzD F
 F  -OFKF{D ) JS 0 CB ǀ"x`9*@ ) 𔀃Bfx. 𐀦/ 򇀦*yرЫB𧀔'@򂀸 @.;/Fe FyHEb<+x(Ѻ% ݀& B P  SBsx%; ( PD\  ) HxDB -  JBP$nDD
B ^E 0 AB<5F PF #(:x*O0 sHxD ?~pKDpH{D^'xDS* olHDxD^'(hHxDO0B𐀻   JBx%; ( dD^  ) VHxDdBmһ  0 AB ye; ?c	(p(D\  )iHHxDDTRFFHDxD\'8B@һ ?x  0XBx%; (7D^ 6HxDB һ ?X  SB?z ye; ?(%D\ 'HxD 5/#H5xD)mFiFxeFaF]F 
 
   V dY Y > HY J <     X ~  @  
 
 -O
FD )rx+oFO	;HDD;IxD;NDyD~D!k(,ݹ :!F2F.'.HxDl F)F".!xO 	)) " F)F#OXp:hk + XFQFJ1BHxD< OXp;hkk(] Où
 O~ >
 T
 D
 \
 f
 j
 *
  -OFHLFxDK|DX(hBV;FRIHFyDJFxDFFHxD  t( ٣HIFxDOh"Ftp7T 0 +@𴀘H$XmSe +`m " +`e   )@mCe +am" aeJXHTxDO9" TFO 
T	 !XFb B  @x (  IF   *@mKe +amae+hXFB !XF> ( ( ?t+hB{[]HxDOӸ(h Bx@UIUHyDxDFSHxD,-h8HIbXhF +@FH$XmSe +i`m"" +`e -q>I  dXTPT" +h8F   *`mHe ('am""+aeY|nBt  r&I" dXT -5wnBT  nBT" .nBT" +h8FnBT"  -F  B  V   D@V R : U > -GBcMFcK}DX0hBa!x)C^HxDr3h BHZHaxxDh1h"0B=VHaxD\ x(  /I(G(EML,Y5h8F !0@F T4HH!"#FxDF8F"#FGAHDxD\!*3h B8IlX;H!	"TxDGɿ!5H"U0xDT3G1h B`h CF +FF5F'H!"U@xDT+FOs  #3	t(zHIFRFxD1hb BӔHLxD,Yv- )Fr@ b
 h
 ^
 @B
      l 8 K
*-O{DFFFصH%xD(FFFQRoP -`" 3ۨH%S  0^h`xf	* ʀ 0Yh )~m )0F9F/
 HFD P)kF )ѓH1FCF%xDH8	
S  Bh *@ƀFRk  .k[B<HDxDZ,"RK~HF{DxD %S&D`2FRvPF	5F@"scIkHDxD^!r
 F 0Fk (Y`HQFCFxD 0i3F[H%!xxDbFN[VHXFxD5FDIPF5
FR& sc۩
 0F:F
P (  Hh (>н  *F@F9HxD~!xSFdx6HxD"Ft 0
 \FX P)kFI,H1FCFxD^  #3F&H!xxDrFN
 9F5 0kF1HQFCFxD:SFH!xxDbF. x  l  0     j   P n n  
 
 h
 R
 (
 FFhh\Fx
FF	(1az)k*ШF!FF:HxD@pj YFFF =F9F*F#F ,HxDy*iШF!FF#HxD@>k FpF Fg9F*F#F HxDF )FFHxD@F )FFHxD@X
 (
 	 	 	 |	 O`@jIH
xD9
@h$ChI9 HxD HxD>|_HxDHaxD@HAxD$b	 6	 H	 	 B	 (	 -O-F4g0 ~DFxFwX 	;h(F !w
Yh0E  @g8F@@CE𜁧	(@o (@HiعB
h?@  /E Ä/E 
;Bاz/ QFZF(F*x	) ΃) "8hBi *@𽃻55 ABEE @
.EE EE }DD pCC i @,EE 𗄻 lAEE ALQEE ^zwEE W  |{{ 𝄻XX }@ EE v@bE 𑄓E  𜄻 𘄺  Xo @7E E YE E W?	/@򕄫P8	(@@	"E E @"#E 𝄛E YE 𖄋E AE  ~ z@m`E oE l0E hE e@nbE `E ]2E YE V@~E @<E E @#E {E x@!E mE j@WE _E \`(@P@"E EE BA>E 7E 4@,EE@@F|	O1F
FcHxD\:hB@Ń8(WU K A 7 ) FQFZFAHxD:FQFZF7HIFxD.FQFZF,H	xD$ZF(FQF!
@F 2"(FQFZF@F(FQFZF	@F)Fi(FQFZF@FOD(FE(FQFZFENDM~DL}D
|DLE Pm 0O$[+ ŀ'H	xD:hk5	HxD	DEJH	xD;hk )	HxDHxDK 	 2BЙH)FxD;hk1	HxD|
YFt5 EF8hk"!h	PFb i ei-ah	hh 
Z`0F!A;B;!K#[ K[@?ѐtHKxD6 	0BpH)FxD,:hk3	kHxD"LE :P-0  	 Zg : \HxD@`+A+S2+}	H(FQFZFh hv/ KI YJ  yD:>O YDD  ӁD?HSF PxDhk +?Y!i	8HxD @𭀹 )KB 쁺@.HixD9h?@F*F /@.(FQFZF@F 	$       >      =T  t f d   z f    ~   H      P  6    (FQFZF;@F!F B*(٪@s+٫@(/٫@r*?g	kQt!"YxDT3@F2@Fu@F/h@8 "BB *@7 /=HxDHxD	HxDzhk+1 /- ) _B /?$E?NFvh'*B`Ap@0@
)i8IF:` F< >0@ BpIF ( ߀HxD*x	ۻ
 (?٫hk *?ի /ѫYB )?̫ WE?ƫ("0FX
 0
  
ɇ HF 
B&6 k 2BsD9 ɀ "2<BaFDx9IOpBBC ) HxDl@Fi@F@F"^@F@FoD+AF+F'vI:>  J yDO 	pHxD/x9	-@F;p
@F*"gAF+F6a@F\_HxDW^HxDR@F]NZHxD(x	(F@F_4.@F-KHxD h@F @F@F }@F!F
!F?	<HxDd@F @FRF[Fo@F@F@F @F@Fܻ@F;ֻ@FZFϻ@F:ɻ@Fû@F@F@F@ 6 ,           V   jK-GFiJ{DFFX+h AB&&xdIdHyD6	:FxD1FF`HxD^HIFxD./ &&*h0YBUHxDGDRHaxxxD(hb0YBؔ1FKHJFxDKFIHxDHHBFayxD(hk * x )TBHxD/F@H9FxDz: ~*h4KBO  $D)h0ZB0F46AFO,FPFXBܹ)h0XB&HxDF*h0F! " B: < /0XB FAF2F (vHxD " G      6        R  -OF4HFFxD2ME}DX0N1OD1K~D1HD{DxD@F0[0		 UD
h0E0LE2ӛ0FQFW*
 SFKEDF, ##E(TEF *  HxDHxD    `?   8 8 -O)LFF|DK X0hAEz	 *@𶁩z) {    h  HxDOݼ7hHxDpD@ɀh	  5B ppDD FPk6hF1FPF"BuBpO<gEdF(F{khFYF@FB%FO,> 	9 ?BzHxDs0h Blli$@FM+iFH!FxDOfHxDO_HxDN3h 	 HEG@F*F %kiFi?i$HAF xD1h
k *-Щi	iHFOHxD0h 0sE@FF kiFi6i$H9F xDxHxDp1h( Eثi(  KFFFSF FoiF?qHKFxD @@1hD 
E'T 0 +@dH$XmQe )`m"" +`eYFPF  )qmXe (zam"#;ae/0h05 BH $O<
D1h0E@Fd0FQFHF4BFO,
eF> Oy@HxD`0h B?X@F:*iFkii$4H xD1hk +?Dii	i8FO+HxDO<* E,FT" I" dXTwnBT" nBfT" d "  n H        V   D@L ` 6 T p
hK *{D/ (-h .*M]Y+h B#3x +"3F *xR\`
h:
`,hh@B3`
hS` +)h h B0FppG &3F 8F
MOr
K}DX F#x " [I`jXh31  /Cx + F8h -OF		pV}DF8l"yDF	 ( 1F"	u ( {1F"	i (  	b . 1	Z	V&	Q (I	KF (F .D	B ( ݂	:F ( A	2 ( ς	*FF (0		 (& &		h!FxD^}					&1F"F	 (1F"<	 (7xD.8F"yD\ (@yDxDFxD* _x +@HFyD ( HFyD ( bHFyD (@yD (@^PFyD ( PFyD ( |PFyD (@Ɂll$yDzDhxD*?ޮ	a	F ,  .@VF ( 	N (?Įx$xD #F $OqU@zD  F*!F "xD 1F"	% (?Ȯ1F"x	 ( ր1F"nH9FxDfIPFyD* ( ΀IPFyD" (@HxDPo&FFHxDD7IHFyD ( IHFyD hIyD8IPFyD ( KIHFyD ( IHFyD (7IPFyD ( IPFyD ( IPFyD ( IPFyD ( IPFyD ( IPFyD ( IPFyD ( !xJzDOqKFJU@ zD FdH!F #xD0  )?ޭHQFxDHxD	UF ( 🀨IyDp (? FFHxD&PFzFHxDHxDIyDN (nЙIyDH (7IPFyD@ ( IPFyD8 ( IPFyD0 (|ЎIPFyD( (|HxDXvPF9FHxDNm0FHxDFPF(FHxD>\IPFyD~IyD(}IyD
Fi|IyD|JzDdFzHxD$PFFwHxD:	3PFFpHxD*&mHxD#lIPFyD (2iIPFyD8gIPFyDeHxDdHxDsbHxD}aHxDq_HxDPFF\HxDZHxDYHxD	h&	bFaFFd  :    8               d |  ~ 2              ,    J |              $          j l x z    " H      #jF ( O0	 HxD  8KJ{DHIXX4[XI*h FyDIyDF FI*h FyDH!@"#FxDH!5"#FxDH!3"#FxDH!"xD#F P 2 @j n b     K{DLh|D  
JzDho (((
IT DyD  0  f @T    K{Dh@չ   KHR{DXT0v]pG  @KJ{DHpXXT[6Ih0FyDN)F0F"FT)xa(F ,
*
 1Fp@pG  @0 KJ{DHpXXT[6Ih0FyD)F0F"F)xa(Fj L
,
 1F  r @ 0SF 
FIyD00@  hFX` (h
"F+`pG
 lpNLFNM|D}D h ( .NIKJHJIXxDyDh0FFImX*h *)1F
 BIyD0F*h *)0X  (R
"+7I yD5I  yD`p0X  (<`
!`
 1Fv"L(N)I,YYyD'Nh(Fd%I~DD(FyD  Z+F!"0FRI(FyDN0F!"+FF1F
 L1F
 H hKIyDFX02笾  @ 6 D&  & x   | x  -AFLKFLMF{DKO}DFDh*h1`S+`;hh F1FDM  0}DGF8hkO/I>H1FhxD<H)X
h *+UmXe (RKm
"+Ke5IDyD  hB   +/ѽAk).-H1FhxD&H)X
h *
 UT1k **&0FhghEHxD  AhEHxDT1
 hE ;2 * .  : D@    z FLK|D{D&hh6&`5`&HxDhj<<DD 0  Y    @e8F л ʻ ,   -CF<MF<KF}Dh{D)hh1)`U`6M}D+hlBh%-h(mimC+e )A݋B< HF\0F (H*mIFmAF`h`@Fh (.9F2F|D  jpJDzD 0hY   ChH "*eD?(CEHxD
L|D hFHxD
HxD^ V ., + κ ĺ     @<"-O{D8\Fhٰ4}DF/!+X2daO2$rd ,xD zD ,xD ` zD  &hh0FW ( (BU   Oq ( #O>FjXFF`xD;D+{DyDzDD 	
0+8F!FzDFC A88( Q  DG 
      o  W  K            =  '                    K  9    #                            ]      O              k  Y  G  ;  -       *X h`  D Hl (et
	nxD	hYkmJZcAeUPU
0 Nh
kScH@D  jJb?0D 0XjAYb6 "U0D
4 0  @
h B x *@  0 +OpB  + jXhD  AimKCaQeD  lSdD hB`d  UU0thyDXFh	!"[FxDP	(XT0 )X  00+ @F
 ?
@@F (l  h  )  #	h  ) 3cE  D hS`}D  AhJB`tU0hA`l(X XF (?aYFxD\hY h (  FOhkmAcPeF4(
X hF (T C +@Fgl !fl1X"0 jBbܷU0yD XF ( XFyDz (@"D 0gD 0jQb #D  a "D 
dD  iYaX'XD hg'XhK`4'Xh(U0D  hPf F (w"hұ`g %\w~DD50FRh)F!hh8F
 #hh"` *  W;hB@Y)XD 
hFD@,  +L0mFIFxDD kSc\yvD8hCj+ .  D gE  jX` (@ . h / U (@ (@lD   ( FjF ( Y8FyD[FUpyD  (0&
D #zD 0;`hh (@ + FFFD 0|D  h @0 (T%X	h )@]E8h|D ;
 !F!F !F !F F E|D h (.  PF&0hF ( :tuQF "D;hm hYF ( 9hl * P'hDP (@%0FF ( ރh (@h (@D  k +ݺ  yDV | ) -#FDZF|D hF   k - ΁4{Dh71 [ xD (?O! "YxD36IU `ػ  (OlxDjdXFyDl ( XXFyDd (@
H"D 0g<FDc  ,  \ OzsD@F l 8 "D   ( \0 +t (gO!H "YxDH)X
h *@sOD;hYl )D  a (+8hIUpnyD7  8F8FDD   BF ŀ
D@F9FZF (sH #;`xD 0 hP D gP (?֮ (њHxD F (\HxD  !JXh  F= H.XT D  k  ΁IyDyN  Y 0D  SF ( FaBF3FIDyD `  ` HIXFyDN (Yt D gϺN~D @`TD  MI"FyDFU 04;FIU yD  H:FxD E  p0 h#FHxD00P|E@P, *рNXF~D5h3h(fn ) !zHxD yIXFyD (@"D 0gm hFqHxD  -nIjXh /@|U`T 0D*+ 6 * z* t* n* l* h*   ( ( ( R( :( (( @  b' P' h z f X& J& 6& && &  & % ( . Z%   % 
% $   J$ $ ( ² # #  ʱ ^ l  N @ *" U!   !  Z b P! ^ ! "     r 8      @  r    p  ` > p DIXFyD8T D gqH IBFDyD `` |HYFxD (
 U
`T0IXFyDX"D 0gCIyD0IXFyD (@	 D g/
D $DYF @ `0F
kf   (b!oO("oHDU
pxDD3FDDT7&4> Q$ M 0FhS$ ZQFF0F  	P$3SB	S, *@F!"3FQJXh8F9F
 0FS$     bEHxD 0F<FBHxD AHxD `hh$ h2F+N#F:IYyD   :2F#N4IYyD0 .0HxD  h	F-HxD  hF*HxD 5 ht    
F"HxD !HxD  HxD HYFxD  l F . T r @      P  * f  DH    & B   b 6 j 0 FH
FFxDI  -O`FF8O O-DE,AFHI[ - +:NHNJY `Y@MKYh  2hmAe )XbmE,AFH[be ) (FT3h@SmJe *Fam^#;ae0KY`4h$.IY@mBe *CamM ae2hzmYe ).bmbe^ T- TlM Y@TnB
-(FTvnBT^ nBT- wnBTM (F n D@8-OFULFF|D )_8 #FB8B *KLHMIMN%XTTTFFFFFgFK>";h +RmPe (qjmM#;je8h (@mJe *\hm-! he  0:hmXe (5jmKjevEC +  FAF .  8h@mJe *hm^! he- AFM AF^ AFnB
, FAFnBAF^ nBAF- nBAFM  @D8-OFbN~D )j8 #B8C + 𱀀FMK ,XWIXHXJVV VF
TFgF!#;h +d\ B\  *{T M# ;T :h *N\H\  (aT -!T    0$8h\0Z\  *=T  KT ]EC +VK= ,   F1FH:h@¹\H\  (4T ^!T - 1F0M 1F*^ 1F&lB
, F1F l0B1F- lB1FM l0B1F^    D@8pKqJ{DFXhJj**)+2 jK{Dh * hL
 |D ht,9t )@aH!FxD| D ]IyD
`[H xDYLDV/h.&OBYh.Dt:@-nF (xAiiIHlqzhxDxK0mhH ?Hs!OagxDEbnP/ID\(h.,OD[XK7mhHh 'HOrxD.C'LOag!4bv4dcHxD
THxDHxD E  f ҧ & (    H     %*LNO|D~D4D646 -TB(F6V,6F8F(FT4
F -HxD@C- mB @  H 8 *KFF{DM[Yh0B +F!F 8HxD  8HxD  8~ B  -AFFFhEh]hBFToBh -Ѽ 	@FbF;FEF(FD & pL#N|D ~D#h]%`p ֤ Ң -OChF3 |O DDX, %$=d B
 qJFDX< +ѻ 
HOq;FxD
HxD	IyD<HxD璡  F > 4 b B !! + !P#  :L!|D Fj FJzD   
I"FyDj"  0RB" j KJ{DHpXXT[6Ih0FyD)F0F"F)xa(F L
,
 1F:   @ KJ{DHpXXT[6Ih0FyDv)F0F"F|)xa(F ,
*
 1Fp@pG . @d h% $F+FFFW?0$ + F 'FiF/+dF *|V_ -\(FHxDh -O !F 
HiF (le(FF (XPFAF"Fx 	ELFgBB6PFp  & "6E0#+ѱEq,F5'x
/1IE"pF6E  	 @F( h
YFFHxDHYFJF3FxD h
|YFFHxD
 h
q)FZFF
HxD h
eYFFHxD & d B   
K {D		JXh  HxDF> 8  8F xX )	eB (8 F(KF(LF{D|Dhi&IcXh0B#HxD@μ!HxDh+0@B/I+yDIyDt8FzD 0Nx~DI3hD&LyD|D&` -HxD8F)F@޽IyDIyDp ڭ  B  P *  2  2   -OFMFKF}DX0h0YBo~HxDh )e x ( ;BaإzazA uM }Dyc{N
*-hA	)C(DlHJFihCFxDiJzDh )s"x`* cIDyD 0`HxDhhi3h B~x9x[HA!xDzdD 0i .eXFQFJFCFG;BOHxDOﻔLK}{Da~K%A
!
}aN	)ZhE(A . *WhES)h+FEZj  *6M}D6HxD`{`4L4M|D4I}D#hyD+h]ii0JzDh@h.HxDOݻ -'XF)F	D 0l ,PF!F
D 0O\KbFI{DyDhOQFM}DL|D  z      &    ^ 
 f  R  > ^ ޞ Ğ  D   -AF;LF;I|DgX:h@eB7Kx{DhB
y˲ +F1M2I}DyDj<B/HxDA
F-IyD * Bb0DE8BF 08h@<Brx1x"HA$xD!FZԱݱ3x)FpC"DE8BF 0AMI}DyDrx N!AE(AFA     Z     t   -AF@L
F@K|DX!h SBFxD   *D9I
.O yD7IyD Fr0DB8:F 0V hB"lx*x-HB$xD!F ,+и 4Е+xAFC"DB8:F 0A-HxDAK.
.0v 9FB(1FTIDyDIFyD)x?A!B(9FAi \ ڜ     l     -AF?L
F?K|DX!h SB;xD  )9D0v 9B(1F/ h B"lx)x0HA$xD!FH ,8и =Е+xAFC"DB8:F 0A!HxDA..
.FIyDl Fr0DB8:F 0O |IyDIyDjx ?N!B(9FAϺ $    J v   d  -OK 	FI{DS  0YB "PPÙ
@KDD%	` D{D @C8LDZh|D `  * hB"h#FBZj  *L|D k(N
 ~D6hJahzDJzDHxD 
k*@󞀹OKIHFD	!yD;h - ڀ 0 G eEQ @ OO HDKxDJ{DOMzDD}D 	0XB `:hOF *T"ih  T(F9FJFGh@ .   i0XBohx(yBh(,yDxE% ) π  B"hFBQ$`  .}L|D}JDzD 0{JzD{HxDEBګFiai  n )Qh:F 0<  0ByxH(AF  +   ;h1F[HxDO5YH)FZFxD
 O1  (?2N!XFMHxD#jB88FB;B
F	
FQF,F
FvFF 0B!F48F 0C"FTb E0FF
 F,F
0urF(HxD:dF? ?	9E8AFF b  @ 8 
  @ B F ҙ <     ~  	 ~	    B n  H  -OFKFL{D|Dh  T@#h0;BTHxDO^K X!h0E؁z	J#z{{C{E	%̢N'IC&D	yDFM+}D B+h2pFE8BF h0E؛  HB# xDF }J%}N	!~
	}L'DIC&DyDQFXF+hIXFyD豈IXFyD ( Ҁ /: .	IHFDE8BFyD 0O"h AE ΀NDwI @+hyDcHF+        r e Z M @ 5 (  +hFgIE8BFyDk2FdIDyD 0O]2F_IDyD 0OP[K2F[I{DyDhOE`2FWIDyD 0O8L2FSIDyD 0O+OK2FOI{DyDhO ,2FKIDyD 0O2FFIDyD 0OBK2FBI{DyDhO 2F>IDyD 0O 2F:IDyD 0O  .?4KHF4I	{DyDhO п/I+hyD ,HxDO       * j t   N . R  Ȕ      ~  d  L  4        Г ^   L  8FK
FI{DyDh
IyD4D 0 Y8	HxDr(F!F8@  ƒ     -G)MF}DݖKXh0BғHxDGR(f 'xvk	I*
yD`'݉HxD6/l /=Ё/3ЄI FBF #yD 	
 KXT0Gk/\Ѕ/|I FBF #yD yHxD/ { / 𔀁/ sI FBF #yDG ܾoI FBF #yD lI F";FyD F (. ##ؿ # +ZcI"yD (SVENE@^HxD FE8AF[YI FBF #yD VI FBF #yD  ( . !yKHxDyJHxDtHHxDoGHxDjEHxDe/Ѕ/BHxDG@HxDV>HxDG~<HxDGx:HxDGr.3H$yxD*-HxDGT+HxDGN)HxDGH'HxDGB%H!FxDG;#HxD_ޞ  0   @> L : 4 L X J  8 *     8   ^ B & 2  b 6 
  @ -O 
4FDY  BC Pm P`R @ R
 	@øE
D 	k)HxDHxD }zwtqHxDOIyDHxD	h (uHxDH6	xDaHxD 0k)ZF+F
 	HxD	
pd,ؿd(Կ &&V ,A +XѻEҾIXF:F #yD 
 IY T0O{IyDIyDIyDIyDIyDIyDIyDH6	xDԯHxD~HxDxHMxD}DXF)F:F #6  (дB܃FHxDO/H $MxD}D	MIJ}DHyDKzDYFFxD{D
<DF:F	 # F ( 2Kd #
 F ( ׀F9+RAF" !,@  0ZE?HF #x yF ( t . |N~D|HDDxD
F$ (j (
3x_ ):в (?_ )Dв (I
 <b~)F:F # 9F (s 0ZB?xX` @(5`(HF3x_ )THxD3xв (PHxD3x_ )LHxD3xв (HHxD@F3x3xHF	EAF G[E?'FDb3x2IHF #yD F (DF  " & " (        h @       0 , 
   n   H   ( B     " "   $ pALJ|DX*hPB8
FB#kd*D  I*F #yD JFHBI"yDx (
 H XT0p@pHxDp@Q0F)F(   b @ nK-G
FmI{D^X3hp1B ex B8FkL!eBDO 	=FO	+ @|F[HxD|ZI F:FyD # F!3h Fk*sSI*F #yD 1hk+1` 	Ѩ ((ٸ%
 GH DJ zD
QX )3hk(O?HxD< )P # F*F 1hk+ܽBԀ(F"DAF (K	 $	FAF"0F (24,FLEѶ&HxDG$HxD #I F:FyD # gF I*F #yD _HxD )
 2hk)?H!FxD0F9F(F9F{         .      -GAF"K 	D!J $Z zDD`hpB8F:F`, 	"4gEAF(FҽI0F*FyD (F9F
 ~
IZ T0GI
I0F:F #yDG Թ   p @V  f B  $ BSV@m 
C>P0
`L```aHapG -dOD *;cJhX +~-hJB ^LBxO. #>YD[O6hD3B9B{سztdxU!3BLJ !zDFTdJM{YhWP+h0ZBR0
h *R,hBH9I0 #.&XDD?h}mxS3*:9B  %سz )`+h SB"
`x +Dh^`  +hF SB  pG;B؃`lFlf.h"F3@<E +Hw *Fs )?q禓 8  P    -C &<'F
FD(F|!(Fpae*FHF:ex  )8EFB8-OBOFDpAH ! $xD ?KDDMFX9h4*F@F0YB]xb58ЦB    (  .N~D0F=kѻ]F%	 )F   )c	 
 Of  Ѥ!	   	 !
 BܽPF!F
 HxDOr   
  > -O-}혻|FFKDNF핫햛~DX 핋Nh~D
8xر*(C7#((%(;ВMX0h )@𶃐MXPmYe )3kmkeJzDhoEH)FxDF F)Fd F;hB@
}[(%|(7\E7\F7EuM}D.hEF9F FZFCF6.`)hN.` ( 녠B7\E !")]!8Fh(9F*F#)
 !eF0F +nУE@vA: !fC%% T6    j ; 5}!(F|FF.2F"F
z)F#}PFt+K "
 X h SB QF&{x + , TwOX h B  @;gx x@!H4xD^kx5n       p@H?   ϦB    #AH  n D@p    o8FnCBF + 0X htE #F2F1FxDkx0	* C=F;0 	(kx	5n0F<( ( ނjx0:	* 
F1(x08	(+xoxb/ Dd/ D/ 𔄫x5n0FAB ) W:X h0YB LppjF'F~D0F
$kx0	* 넯=F;0	)ټ,
X 0hpB " @j`x N !

F4xDkx5 j~D1hOB / X h0B 	#F
FxDrkx1hh0	*D 򞄯=F;0	)rX0h WB ؂	
FxDLkx5\lX0h WB pyDkx5G@X0h WB !x)) ##@ `1FY "F ( 	xD
1hkx5H$xX0hB } @́x ;bxCaA @!4xDkx5
PF(F m( 
( F #yDhx08	( =F7)x09	)+x #  F1FRFrFtF ( *PxD7hkx5n0FGB /  (Xh B 
kx$0 	( 򲃪F;0	)ٌX0h 8B  @؀xyx Ab`xGc&yBCA  G"	 &4gF gxD;F2F@kx5PTX0hp?B 򶁹  'h?`h  "#B T4 #xDkx5+X0hp8B 򑁹  ˀ!h	 
F4xD kx5g F~D1FF ( uxDI6X h GB fxDkx5X0hB QgxyDL kkx5X hX mze *Om;Oe&XPTT 7+F`6XT1kx5 h bh;y &ycyPX# `C
Cg !lCBhLCgOnx0L2Cgax C 'Bg	L &Ng2C;Cxx BaA @!(#[!I!h	<nB
(ǫT4v5X h CB { * &)X0hB_ع @Łgx L#F4DxD 0dX0h :B?ئyIy'y1A cxC*F'zgA0++Z{
  40` (@
B
BE
 @(EنE `
  $~$xD 0xDX h EOXh>pE * #$1xOR3+Rؼ  B9B؃EِA_5؁x@)20P)
~
%D)9B؃EA_Qx@)30P)
2A9cEFɲ    p
F>	
~ "  p> "tE?r x + #FEeEbAD   ({?W * ߀                                 0F ( 6FIX h0ZB?{lHD9FxD p{JXh0B?x!x3C`@B A@ "42`FkHX h B?㮦x x1AcC B'~@pX0hB?Ů 'ѧx ;bxCaA @'9FjH4DxD p&D $nB
+kFT10'h?"R;\K{D\H!F4xD
YK{DXK{DXK{DWK{DWK{DWHIxDTK{DTK{DSK{DSK{DRK{DRK{DQK{DQK{D#5FUF5F=F޹F۹عFIyDO7@Wb! #$%&J40`4R$% '&<0`6H\FxD#
~4 \   n  n     L r $  N}   4 D@z   J x " w V  L t J T 6  " Z D  $      F 'JF'HzDpxD $p#PoBi4 - H J xD!zDHxDpMF}DKD{DhzhkPhBFThFB
h2 +J+FH zD!xD !h+FJ
HzDxD~:u  u  u  ~ | t T t J !zDFp4D\B  (L!J|DzD FL FHxDx ^ x 6  x?EF<+F5x .
xL*&F:[[ -q "pFF)FF p:
FF:kk,FF .bd`ppGF F+F *F #p)-AhDh6 .4 %DT|@F45,<4 6BH1FxD, .P4 %DT|@F45,<4 B . %)F F 54B E E E -GFTF}DChnX0h* ?5-%=====================================|t==l===d\==T===LD==<===4=======,===$======================= === === == ========================================= D	JDzD
@!@F#/ JzDOOqKFxD  e8F1h8FB@n	JDzD	JDzD	JDzDآ	JDzDТ	JDzDȢ	JDzD	JDzD	JDzD	JDzD	JDzD	JDzD|	JDzDt	JDzDl	JDzDd	JDzD\x	JDzDTp	JDzDLh	JDzDD`	JDzD<X	JDzD4P	JDzD,H	JDzD$@	JDzD8	JDzD0	JDzD(	JDzD 	JDzD	JDzD	JDzD	JDzD 	JDzD	}JDzD	{JDzD	yJDzD	wJDzDء	uJDzDС	sJDzDȡ	qJ[DzD	oJDzD	mJDzD	kJDzD	iJDzD	gJDzD{FeJ	DzDrcJzD{aJzDw: * >D DD D v JD C 2D C C C D C C \C C C C <C fC C &C pC C C C ,C C C VC \C fC LC B B &C B 6C B B B B B B B B B B LB VB HB B B B B "B B jB ,B zB A A A BB LB FB <B A A B A B A B A B pA ZA \A A A A :A A ~A xA nA DA :A A *A @ @ A A -GFH !"OxDPKDDX(h (@ahJb` *&h&`,W`3hSӲ +
(D F0
	B 1hQ W
_ + (h (@ahJb` * #h#`1hQ0DР0O
	*ӲW7(hB
 (@܀ahKc` +"h"`:(	(h (@ƀahKc` +̀"h"`		A 1hQ  _˹ahH`` (؀#h#`2hR_ + р
(?U*h * FBD`hAa` )#h#`1hQڲ *@GE *h * FC ":pchZb` *!h!`?
(
(h ( Fr?
(WHxD FfA	chZb` *A!h!`?
(
(h ( FN?
(0   FF7
(h (? F6CD	   F(? F$) F& F"3 F FchZb` *!h!`?
((h ( F  Fn F F< !
(9pu
(?#(4
chZb` *!h!`?
((h ( F FP F rr x dr D8p jp o -OF8M4 #DF [@F

3h4O U@
3BjBQ Fm (FFH !*F0FH (B h(> h	$OqzDFHFd0FL FO0& h	$OqzDFHFL0F6O0
$#hB@)=
mgBt#x +qP%F<D 5Bc(x (`(FQF" (")FB0FH, (݀\@")F. 
| 0FH (\$0\  +@F
 + ր")F+$ 
 0FH+$ (7\ O< FHIxDyDF ( 
' %;O q"F8 ( /\ݝ )XH[  Zx ò + ~
`F )CSxӲ +
)9x + I[:+0;F?K FIxɲ )" P30FH3t (j۽_s
 # 0o7x0	) ԀF;F?0	:+Fh*? h	aJ# zDOqHF FZ0F (t !O0!`FF )F
 CF (Ʈ h( h	3 OqpJ#zDHF F0F")F#
  0FH# (V۽\ O4t[0h *<ѴI F0FIF
 (  FO0h hc(G $$^$hc*MO \ FyR h	@JOqzDFHFx F!F4
;~8 hc(:O \ 4t, h	.JOqzDFHFRO0 h	'J# zDOqHF> h	oJ+# zDOqHF, h	]J## zDOqHF; `u 0< ; ; ; ; 89 :9 D8 7 8 .8 7  #N	JF~DFzD`54hh$o`, k l  S+JzDh8	OqH!xDi 2j KH{DxDhP# 3"	[P#3	:,HDxD 0	HxD`J!FzDB# i i i P7 i i J0-AzDN h~DV3@BY)`Od F|F`x !"FB`b  whFHxDp k j 6 8K{Dh((
  8M}D,hc a!``8M}D,hbiF(`h j j F a"`h`F `"`h`еFFF tG@"F`` 
Fi )a FнsKG {DF`h6 F`нh 8F a8 % #F` `V"Ff`D`8F  ,JGP!"FD 0`` 
Fi )a 5T"#`"F` 
Fi )a 'd"#F`` F )  #"F` 
Fi )a #F` F )  F#IyD`FHhxDh` F g g .g !XF E"!F`fAaD`
K!{Dh0DF E!jF`AqfAa8 "D`b f -AFFF(6 7AGS\;K!F{Dh(0@DFy T!F`` F0 +  F f`E`AaK& .j8 !b( D tF`F!FFh!FD   FM!F}D(h@DFF NJ<D@zD,FD 0`h` F#i + a f f e e e  O #@g  $O3  $Y FF F" FF F" FF  "!F  "FO36F)#""""""""""""""""""""
 IyD쐹 BAH!FxDjO0I FyDnX  FCH!FxDU
I FyD\ H!FxDHD3 2 3 2 2 2 pFD F1F"FF(Fp 𵇰I|D  $ )ɈXD9`	DXxD @`  (@9{D`)zD` (  ( ) $zDO3D`)zD`)zD`)zD`)zD`)zD`  Fxx	DxD @`ll	DlIxD 0|D```	D#`xD 0`TT	DxD 0`LL	DxD 0`)  q`P?-
pp^Kp<*
}l[H8[ppp& xDO17D{DxD ``0 PXh +@G|D!h ) V ( 9  S@!h ) 6h'zDh"```|  HO4D'DDzDyD @``4O30G ,D|DD  #` 0O27 yD{D $D
`` @O1 ' DzDxD ``6$!{DDO2D`   xF 6!|D{D"D ``  g FO16D|D{D   ``V@" D6DyD  {D $"  ``?O0FDD|D     `.t&O1p6pzD{DxD```d#`"D\D  0yDT6O4   {D
`D`DD@&@DzD @yD @``,&#, (zDD$D`  &  yD 0zDO4xDD`D#`` @ @5$%!{DzDxD```$!5DD{D @ @`%O0$zDDD`    5!$%{DxDzD```! 5DDO4{D   `u%O0!zDDD`    ct5$pO1l%{DxDzD```S`$\#\DDxD 0 @`BH%!H5 $DzD{D D``  14"0#0D,yDxD  D
`` !%$ O3zDDxDyD`D @`"$  ` 4 $${DD!zD` @` 4$D{D !  D"`xD ` $O3DyDD 0` @$ 4$zD{DD``   D !$D|DzD  `` #O0|DyDD  ` 0h$$h4  dzD{D!D`` T,$P$ P4DzD{D  ``s@$<!<DxDD ` @b($#($$zDyDD`` 0R DO3$D|DzD 0 ``A   KO1D{DD `  0J $I zDyDD``$ @!K
" L{DD!|D`  !`#J DzDD  ` 0K$HO1{DxDD`` @J$!KzDD{D` @` I$DyD"D  `  K x$J{DD!zD` @`h L #dD|DD 0 `  HxDsPD  L|D F" h8h+ìAi )HxDZM }D-h" ` f`EaL2O0N~D 5F6 `a```4B3xO0#pHxD- j "d *d |d d c c c c c c c , ze c Xe je Xe Te 8c @c Vc   0 tc a a Va .a b a a b ` ` b ` ` b ` ` nb ` z` Hb ^` V` $b :` 4`  ` a ` 
` a _ _ a _ _ _ a _ _ na |_ n_ p_ 4_ Ja H_ N_ 0_ a (_  _ `  _ ^ ` ^ ^ ` ^ ^ ` ^ ^ h` ~^ t^ @` V^ P^ ` 2^ ,^ _ ^ ^ _ ] ] ] ] _ _ ] x] _ ] ] X_ n] f] 6] 4_ D] 6] _ ] ] ^ \ \ ^ \ \ ^ \ \ ^ \ \ ^^ t\ n\ >^ T\ N\ ^ 2\ ,\ ] \ 
\ ] [ [ ] [ [ ] [ [ ~] [ [ ^] t[ n[ B] X[ R[ $] :[ 2[ ] [ [ \ Z Z ) Z Z ) Z ) ) 8F@h %%`e`8Fn8j *)kcF +jF8 "bj8 "bj<T 0 +  j8 #b nfpGZm\eF +0 "Fo  "@#!  !F F(F!F F0BpȿFO 
FFĿFFFF"0 O3@ "O3 ! !1FF F(F!F Fp BO pȿF
FFĿFFFF"0 O3 "O3 ! !1FF F(F!FT Fp Kp{DFh, V!F  `0` N")FF`fF`OFFa3D D `;!+F f`Fa=j *+kcF +j 8 #b$+F" !` fAajzkcF +,-nD P,zpYmXeF +YmXeF +qN~D6hs !0#F`` "FFd ` Fi +a "`!F` F0 +  "FF0 ` Fi +a "`L!F` F0 +  "``"F 
Fi )a #F` F ) Fkh F  (0l`p;HxDhr? 0!#F` `"FFd ` Fi +a "`r!F` F0 +  d"FF0 ` Fi +a "`UL!F` F0 +  G"``"F 
Fi )a :#F` F ) Fkh F  (0l` V U ZU .W RV )-CFFFU &	 "x xClLCC#FF0F ,.FF/2٩y "sxC#F(F!F F IF" 0F< F)F,F FF F %,F -AOFL
FD!F<Y&#%OH`'h`&`	0
Pv!hB jX (F((%HB@Q B%\"D 1J((I "yD	h?FK {D hI "C#yD	h- "D % T S S S S Fj8 "bn2kcF;j *Zm\eF +jF8 "bj<T 0 +   nfpG(-AF H BUX0BR,{@RB@\ "#FD Aɽ(h(PIF" yDh)FOs")FF F0F)F"  H7)F! F@R)Fj8 "b!F"H7 )Fr(F3O!@RD?h8FHjF8 #BbD  H"F0F)Fx9F"#F d)FG(Fx!@RD P(Fq"D#Fj8 $ bEF0F)FN(FN!~D5h(FT"#FFj !F "F S R rR R Q 8F)0   !!F FF(F!F F8 "FF8@  !"F8@!!F FF(F!F F8 8F)0   !!F FF(F!F F8 !"F8@˽ !"F8@Ľ!!F FF(F!F F8z 8F)0   !!F FF(F!F F8 !"F8@ !"F8@!!F FF(F!F_ F8B 8F)0   !!F FF(F!Fl F8 !"F8@[
 !"F8@T!!F FF(F!F' F8
 8F)5%% !!F FF(F!F4 F8KF!{Dh8@!F
H!xDhX8@!!F FF(F!F F8M M -OF) J8  8 !!F(FF0F!F F! mE'O	OF *F!F` t`6fF0F!F!HFPF *FjF` 6f8 #b!F0FIFHF!F!  -F !FF`fF`!  F *FFj` 8 %6f!bzF0F)F}(F!FQ!  F !FjF`fE`8 "&bFab F! E'O
O	OF `*F!F` t`6f=F0F!F@!PFF H*FjF` 8 #6fb!F0FYF!XF!F!PFF %!FF`fF`!PFF *FjF`
 6f8 #b!F0FIFHF!F!  i !FF`f!  XF *FFj`
 :!!F(FF0F!F Fvj8 !bpG FF	!"F FF8F)F,3## 1F  1FF F8F!F(F!F F 1FF  1FF1F  |1FF wF8F!FB& FFF !"OF,3## )F  Q)FF LF8F!FG0F!FC F )F=F  )F7F)F  1)FF ,F8F!F-AFF"+FFF 	!
FMF@F)F,:(!( 9F2F  9F2FF F@F!F(F!F F 9F2FoF  9F2FhF9F2F  a9F2FF [F@F!F -AFF
FF ;F!"F,:(!( 1F*F  1F*FF F@F!F8F!F F 1F*FF  1F*FF1F*F  1F*FF F@F!F_B˲+FE`؝@,\0IyD
hw*
*z*?{**HxD*=
*@i*0F)F@N***)F@HxDh /+"!OC F1)FjF0F8 #bF8F!F/ F)F@)F@f)F@(HxDhH : I   Fi +apG -GFFFFFmF8Fs,FB FD
 -f` j 8  bF F0 +sh Fi )|hph F#i + a|hll`Dhh8hL"04hL!0!F F)F(F #F #`!FF(f` F  *@F ,(F G p_F F #F +`"F F
`)a`e``pF F@F | #F`` u"F(F
`!a`l``8Fih !Fi ,a ^#``kh Fi )a Q"`h`jh 
Fi )a(F8-AFF
FFF(FF 4DF` F ) F F  (ph Fi *alhqh F#i +< !ahDhL!0L$0F  ```jh Fi +a(F |E 8F #F #`5"Ff`D`Ea88F #F #`jFfD`Ea8 "%!b`8=(0F9>((|(пh&()<(0"  O3"0 D!F` `j fE`8 !"b`F!0@ FT (` "#F0@a HxD  HxD  ˲ +؝)
JzDh++ѝ]HxD"D  )K-G{DFh (F&IyDD%JD
h%OzD @- `D`>` H)FxDO!F
"D(FOC <h	   F"CF(F1F@u F F)F,F F	HxDj C E C T 8  C Z 380F( &<L 3IyDh (Y1M}D)hH
ѿ/IyDh (ID H  "O30%HxDh -:D H  "O3pD H  "#TD H  1"O3
HxD"HxDHxDC D  C B B D hD @B    6{DFh (&W,
@퀴 o HeB@$o "#F # ! "`#F F F)F#(FyD
h* ۀ[    U  UU    a  U                                                                                     U    :	    U  U   U      5                  U                   U!,%xDo '@FFB $ 󦁴 o!$D K W "#F@ @a "OcD,#F @
 o nHbB _  @H5dE  ; o @BL"# D @!F"#!FF F0F)F xD,  , , @@\dE@ՁI "#FyD	h@ F@L F@o @FB  
 ogL"!# |D$h!F"-#!FF F(F1Fh!F"/#HxD< o ҀHcBp
# *m*HxDhjPj  ! 
F@[ o 3H`B $,N!"@3 H!"@3F @"@3!F 8F0F)F F)FHxD !o  
FOCGSFN~D3h ++"OC! jF F8 !bF0F)FH B @, ڀ, ՀB,1$!"5 F FF0F)FHB X2B ,N"# ~D5h)F"D#F F0F)FH B HbB~I "#yD	h@#1%   !"`#F!  " !@#FxHBuH`BW$S#FiL" |D$h)Fz*FH7F  F0F)FT"#!F h)Fs "!FF_)FB!F"H7 U)F8;QO# "D>h1FHHBFh  HF8F)FF1F"#F 2)F !"@3@$ !"Oss@#$+$%$)$'$ "#D @,I "#yD	h@'N"# ~D4h!F!F"#F"# D P)F"#FF !F ;F  A  A A 6A  @ @  ^>  ?  ? > h> > ~= f= P= 2= Hd L\
O|D
ID4%hyDDh=`M
`}D	!&`+`K  {D`< R : : ( : Hc 2+KF+H{D+IxDhyDh` -9'JzDh	)=h))$HxDHG F /; "!FOpG w 9F0F9F>FO\4X5DID0F 0yD @
`    " #F@ F `:   b:  9 9 z -C( 		0K{Dhw(K8(@@ɀ
( i(AЁHxDH`!"#F F(F!F FO ` $!O3
FF0  $ 'F(F!F(@󛀣((	Ё(eH!xDC! 9E&'OF F`(f oal`F(F!F!8F F jF `oa8 "-fbF(F9F8F!FX!   F !FF`fE`o!  F wjF `o`8 "-fbF(F9FS8F!F'!  F W!FjF`fE`8 "&bFa8O(4(7 CTz({(,IyD
h *?&"!OC LDjF  8 #b4F(F!F C(  C"9 
 8 9 7 ,LK{Dhw(B:(?Fݣ(<(:Ё(DFH!xD@,BHxDO `@Mx "}D!F/hC F F "+F! F FF8F!F0F!F F(
(i(,H!xD@z(?{('HxDF(($H!xD@̻!H!xD@H!xD@,IyD
h *"!OC \!jFHxD8 #bF(F!FYH!xD@λN7 6 ,	 6 8      >8   -CF
FF
*/0 >F@F1F#F  "F F@F!F F)FCF" )F "CFF FFHF!F)FCF" )F "CFF FFHF!F-OF)$
 THxD!!F FF(F!F FO	O
O#F Ov\ "HF FF(F@"YF OF@F!F  "F#n)FFI" QFsF@FQF|PF!FP  "FHT+FF["IF YFPF1Fb0F!F6  "FF:Fm" @F0F)FI(F!F8F!FA"O	O	
O
!N!F FIF(F!F*j \ -CF|I
FFyD,zIyD(*            | u q m i e a ] Y U Q M I E A = 9 5 1 -          ) cHxDbHxDaHxD`HxD_HxD^HxD]HxD\HxD[HxD{ZHxDwYHxDsXHxDoWHxDkVHxDgUHxDcTHxD_SHxD[RHxDWQHxDS8F1FCLHxDHKHxDDJHxD@IHxD<HHxD8GHxD4FHxD0#! 8F2FAFH59F(F " AF8F2F@)F%# 8FAF2FO cFAF 8F"3F%D F )3F"AF 8FF(FIFAF 8F"3F
FHF)F     l D   X  X 0   ` 4        b :  
  -CFFF޲   ,F8F 4,.HxD{ F
 0  ܸ  O2C(BHIFBFxDYO0HIF:FxDNHxDJ0  r  -AFO `FF5,F,Є,!F0F*FF8F!Fs F4о**F!0F*F!F0FF@F!F4!0F*F!F, -AFH`FF,F,Є,!F0F*FF8F!F7 F4о*F!0F*F!F0FF@F!F!0F*F!F -CFO `FFF,F,Є,"F8F1F+FF@F!F F4о+F1F"8F+F"1FF8FFHF!F1F8F"+F!F-CFH`FFF|,F,Є,"F8F1F+FF@F!F F4оp+F1F"8F+F"1FF8FFHF!Fx1F8F"+F!FopF *@() Ӏ               w s i e  { a ]  L  9  5 1 -          ) `HxD_HxD^HxD]HxD! " "!#FF 9F(F!FB FpRK{Dhh( k(~ "#F !F KHxDJHxDIHxDH`"#F!F CHxDBHxDAHxD@HxD?HxD>HxD=HxD<HxD;HxD:HxD9HxD8HxD7HxD6HxD5HxD4HxDO `"#F	!F p@{! "1! "F F+F(F!Fxx !"D@sp@O`\"#F!F \HxDV0    - 8  @ 8  , $   \ ,  | \   ,    -OFFF8 !OrąDFN,,М*F!0F!*FF0FF8F!F! FyxD5{Dh( ( p O	 %X  :,` ,PxDH`D@D0$DO    
o
F ``"$ 	($F `  !! "#$	F  `PP\;"!#
$
$F   PP`!#!#F  U``` <!HF  ``e``F  +$l@P$PP,"F   PPp#F `|F   @$xpOF  p|d!F  [#F  0PF  @$GP"F   ;#F  00OO$F  "F  @O`F  pOF  oQ`Y`F E``)3   OP

O
%F 0 L!0O	F ` H$0
OF  `N#
F  L! b`
"F ``N$0


F  L!0F ` D!0
F `N"0z

$!F !``L#@n	
F  N$ c
`!F ``L"0W
!F `
`L"0HFF 
`D   T# `FP i``a`\/3B F % 
a'@!DL'PF`!F$fc`faO `$ $ODD 0!o  $$	$F ` 	!		`
!F ` 
"#
!
;$F PP `\#!	""F PP@$ `F ``0E`F`3% `
HxD:HxD61 
 + N + p+ ' V' 8'   𵅰ղ$FF (T,+u-+-LB-T-Nн-#,~,,d ,@O4!F2F!F2FF)F
(Fq-=HxD,^,m /D  O1   "F3FF!F2FuF  !F2FF(HxD,1,, ,:O4"F3FF"F3FFFF9F$$-O1 (OйO	 ѱ$$  !"F3FFHxDmHxDiHxDe  "    88'( xqjc]WQKE?92#           q P G > , ( HxD' "!  "F !F(F!F; F8  "F "F  "!  "F ! "  "!F F(F!F  "F!F! " !F! "  "!F F(F!F! " !F! " z "!F tF(F!F "! j!F " !! " ^ "!F XF(F!F "! N!F "! F!F  "F>!Fl 8@{ 8@vB 8@q ! "8@$ ! "8@ ! "8@ 8@WH 8@Qp ! "8@! "g ! "Fg !Fd'! "2 ! "F2 !FU! "3 ! "F3 !FF	: ! "8@йH`8@F 8@
F 8@F 8@F 8@F 8@H 8@	 ! "8@  "F8@ ! "8@! " F F! " ! "F ~!F! " u! "F o!FH5 8@@ 8@O `8@HxD   -AFFFIh #yD/A"0F
/7/OмHxD}Op'(`c                 [_ _   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ * FN~D3h++w+@3 FF H@F` F0 + bh Fi (a` "``ch Fi )a FHxDF F . 3F Fi )a \#2F` 
Fi )a P#F` F )  BH@2FD `` Fi +abh Fi (ѥcF F / ;F Fi )a #:F` 
Fi )a #F` F )  H@<:FD `MK{Dh` Fi +abh Fi (0Fa*F h1F&`SF F<;F Fi )a #F` F )  #:F` 
Fi )a H@F` F ) DD   0`bh Fi (a0FFF8F1Ft h1Fo 1Fi&`HxDF)FiHxD 8!      6   b (  7K0{DFh)ݵ)#ݷ)%2HxD))܂)):q) (K  !"#0@ ("  !"F0@)ڨ)d ! " #0) ,#! "FF" #F0@  sF FF  j)F#FF 0@ӺF" #F0@»  -CF
F*m\U\ )F")F"F0FF8F!F F$!'OO 	hh  "  hFh	 "  IFw!Fshhh  " AF j!F3h)h	 "  9F]!FvH`"!FoOO	!')F")F"F0FF8F!F0 -AdMeL}D|D./F'F(*              } y u q l g b ] X S O K F A < 7 3 .          ) KH9FxDIH9FxDHHxDGH9FxDEH9FxDDH9FxDBH9FxDAHxD@HxD?H9FxD=H9FxD<H9FxD:H9FxD9H9FxDFA5HxD4HxD3HxD{2HxDw1H9FxDr/HxDn.H9FxDi-H9FxDd+H9FxD_*H9FxDZ(H9FxDU'H9FxDP%H9FxDK$H9FxDF"H9FxDA"=H  | J     r H        $ D    f    ~ 4 J  2  -OELFFDK|DT  	 )c|F (gi ,_р.ifO!#ZF 0Ѭh4 <h17,i42hi0-Ѹ#؀.Cѝ
 0  F8F	 0 FB
#D,HxDHQF2FxDjHxDHQFxD
HQFxDzH!xDu
HxDq  z .    (  4$-O{DFX@P;h,
 , I)F ($)FBFF
XF9hB@Ɓ, ̀6- -i) ցHF ( Ɂ- - -( Ӂ( ˁ!BFBFFYF,f,`м- - !"	$HFw ( HxDhKFF O F_F%FdFF
*i . rh*ѺгiXh O1 RFCFF /m8FIFOF,аi	 "F0CFF)F ()FBFrF\HxD- -i) .HFn ( )-n-N-( 0( ("CFCFFYF&O1 ( 7O	 "CF *FqFHxDEOFxFFwFV  -@JzDHIFxD,+ 倄+ *F* 倄* )F -FOFO
5* * ݀"+ + ΀!|L|D!hw)C)[;)exHxD)  !*FCF	F)-`z)8{)nHxDh -!"OC jFHF8 #bF (\AFF FYF(F}
):i)HFF (KAFF FkF (4AFeF F^F (kAF F FQF AFF FE))rF (_AFF F3L7HIFxDd5HIFxD_4HIFxDZ2HxDV1HIFxDQ0HIFxDL.HxDH-HIFxDC,HIFxD>*HIFxD9)HIFxD4'HIFxD/&HIFxD*$HIFxD%#HIFxD !HIFxD JzDHIFxDHIFxDt          x    b z   P n   F  *     88	( 4HZm~kK{Dh ( !"5  #1fI "yD
`F F8bM}D+h +  !"3 F" #!F4 F(F!F F8XD @ ,  !"3 F " #!F4 MHxDh )  !"3 F" #!F4 D   *i !"3 F" #!F4 =M}D+h +T !"3 F" #!F4 D @ ,= !"3 F! #
FF4 -L|D%hM!" #5 )JzDD 0D PF ` "J3zD`!HxD` F IyD`8HxDHxDHxDHxDHxDHxDHxDHxD  b ~ H "     L 2 ^  0 $    d 8    (p2((м/K{Dh8(L-I #" yDF	h?#JF Fp&JzDh<,:   #D "?# "1FM}D.h>.'l &  D"! P?#  )F #)F" FF?#
!FHxDcHxD_
HxD[  6 Z 
 ,     8pF(\ I+?IyD	hHa,m؍ $  "#E8M}D)hMDдOQ|U  $ $FF?s--N~D1hN0дO>v,   TFOsHxDhH,+   "O3pHxDHxDHxDHxDH!FxDH!FxDH!FxD
H!FxD j `    @    8   (8 >F(@G(<]IyD
h * !" #6 " #!F6 F(F!F" #!6 !F" #M!6 !F" #Z!6 !F !F F8(Dмh>L|D%h -b!" #6 " #!F6 F(F!Fk" #!6 !Fb" #!6 !FY" #M!6 !FP" #Z!6 !FG L!Fi F8K{Dh !" #4 " #!F4 ~F(F!F) !"3 Fs!FH F8HxD
HxDHxD,D 0 +	HxD P  L  ~ 2 
 < -OdmZ*O}D #Xx=F8FF`oO
\@lDdD$ 0TD(PD,HD0DD4/LBABpunE AOJ
E(F
` 0dF ( r YFOJ	T	2#	DFHFHEXFn>
>FN B	nF <@   M (@#yD\@]"BtI|D4B hDp / z$Ȅ F/ [ U G9+  th\QIA 4'  	x urolifc`]ZWTQNKHEB?<9630-*'$!	 zwrmjgda^[V MC;3+#    |yvspm cYPA 43 b`6`H 
 @]!@,w<  <p;B
2pB05<p # 0PG5|D4p|HwD7p / / a 0o   $'85&F\Ʉ [  * / AB%B F(F
}
@mVh F yV,Q)?sF1h" #hFjVD p'`aV#1hV,UFWV #1hV,KFM#J G"D!A''`>##`;  `8Vh  F+V,3)?$F1h" #F VD p'`V#1hV,FV #1hV,F4#G""`F!!`''`##`  `""`!!`''`##`  `""`!!`V|'`=##`>  `<""`|!!`&''` `V<#`0h `p V 2h
 `` V 2h `@ V 2h `P V 2h `0 V 2h `  V 2h ` V 2h `  V 2h `wVPV0V, `mV0"V `d0hy `_  `\0""`Y !!`V''`S0##`P   `MhxD`xD2h"`@0hg `;0hb `60h] `10hX `,0hS `'0hF `"1h!` `# `O0! `0h `O0Z `0hU ` N `  I `VV 2h `0h `0h `VV `Vz `(''`##`  `""`!!`%''`&##`$  `'""`!!!` ''`##`  `""`!!`''`##`  `""`!!`''`##`
  `""`!!`''`##`  `
""`	!!`~''`{##`x  `u""`r!!`o''`l##`i  `f""`c!!``''`]##`Z  `W""`T!!`Q''`N##`K  `H""`E !!`BXD p'`90hK{DFh `0JzDh!`)0h,D p'`F0hK{DFh `J zDh!`V#V 2hD p'`F #VV 2hwK{DFh `0htJzDh!`FV |V'`  FV "3hp`p#pV ' p papV< "!p!pcpV| #0hpgp pV, !7h!pbppV V,3h`pp#ph}  FV|  1h:F'`FVh  FVh  Fy F q F ih>  F^V,0hF"`F0hRV<0hF#`WF0hFV !0h"sF F:R   X   V 4 ~    ,          h J 8 V0 !V 2hKF =FV| !0h:F'`FV0 "V 1hcF FܻV0 !V 2hsF rFλV,0hF"`FĻ F V<  1hF#`F F  F Vh   FVh  FVh  FtVh  FfIyDh ``h[\F %û@DHI5hxD 0yDo7`Z  (
HD
IxD @yDf `z( &      F B#x0;	+	aBF#x0;	+ F@v"x0:	*  8FFF:()F"F8@;8-OFhFFF
$h\ah(F: (   @ "D!(F F"F (LK 
F (  "(F"``` (f (<л` (H #1`#a&&a=I(Fo JyD  (19M &}D5h5!i*iHF頹o @Eڻ (i.F .=h F`HFY%`64`(FQF<`b hJOqzDF`h FO0yL hJOqzDFr FO0f8 h	JOqzDF`O0V> 0  z T -FFFFF % aF#FrF4<"C= (: LF ( ` .30F`` (jк -PF` (Oй (HF` (* /#8F a (ph۱h	Fh (F  `F`   /'a`F h/JOqzDFh`h FO0 h#JOqzDF`h ( hJOqzDF FO0t hJOqzDFO0d hJOqzDFhh (Ѭ J     𵅰FF
F 9F2F+FP8Fh7h`h%hhh i F,F -phh0F>F~ / F!F0i
I FOr $yD FL"Yh|D F $ ~ -GFZLFZK|DFFX*h VIyD0X #;`3`F)hB@  "F 
G"AF $#0	
 PFHBRPFH3` (4PF;`+3h +OC;`2h  1`@@ O`A@ODo;` #s;`p h$JOqzDFHFO0` hJOqzD CFHFPFnO0L hc(	лF hJOqzDJHFOqCFzDh
JHFOqzD`O0ab "       0 $%!F%	~0 F| h
FIFFyDvh[I FyDn<Fh@b B,`#3`)`" 2`O11`I FyDRO4/`  z l 4 -A
FIFFyDjFFt(%8FF-!F@F /$ ")F:p"FF1Fx"F&hFx#h BO1!`  +`1`@F(F8F  hO0 8FL|D h	T0)F (Ѡ8O08q 8FL|D h	T0)F (Ѡ8O08q  #FpFF`x +.+ $$U $*F5Dx0<.+ +D&`x02ppG 0FIFyDkF(
   
CA!`0H)FxDT  F @#x JzD +<IFRX W:FvxDFЮ04	)W޲7A[#x:+4#F+0	-*FͲ -7:V 8pFL|D#hL|D hH2 hN~D 0h[)FF0䱺 ( F h`FpHIxDyD
J!hzDK#`` ( !Fp        FHxD 8FKi{DMh}DBk "abfFh`mkcmAjZjB
FS IcbjXhXafP8 & p$hhR	S"!CC"hHkDh  :<F;
hTo?A[hh#mh:QO @CPppG  hZ*  pGO0  hF$B&FD !OD	 F\&0iShBXhBјhBhL|D h0 `KLX|D;h ``Y``T& aD&0pG+
L;Y$hC0@  
 N > K{DNh~D )
J $XhScEg@j (Jw % X3hsYsk0H oYdgZmoeg[n +=BpG  f J8zDiFhBЀha )
ha (kdmiB88T pFJ %izDhBiBЦakdm0- ,(FpF  FK{DرIiyD
hB
H
NX~DiB
3haZ2`#`9hA#@kdm ,r   8F(Ki{DhBРakF`mch  !hi21 + iB#j 8  88F~ -OFKi{DhB
 T 8  0 <  (@ , #FO hiJ + , D(  	 0D	  	 	(0 @" " *h "GF 		2$i ,V hAЩ  h#h (+ГEfh . h -  /5CO FȲcFbFhB30BfhUB *@𓀉 "hBѼ @3 0BOіFBFQJHKIxDyDDF FV   <0 +?C( jCZ*   (G!P #"0  T (0j ;+  "   ! @F!  (:"" *?H  !#F8@?1i +E<J!	)2 0#0 FHBFIxDyDHBFIxDyDHIxDyD
HxD             hZ*,
 ( pG    ((O0@)`)hF 8FF ( #(cd#dD 0(F (
T AO2
` !D D P8 8F#Mh#H}D@+(X h  HhQh0`+ p+%Ѐ+@B+"[X #`D#` 08P+к( +
0+щ  @  @CHxD R n  -FhjLk|D + PmB fIfNyDhDY ` * @󓀬hOF &8Q /p^9F *q9#	3	3щ3X3!\'Z @ch +[B !CEB#i @ 0B7ќBDи ! )-TP -)  #*F 3B@`B12+/Fpk  MF +D 0pG  /aBHxD`# )<P `p(i "FOF2>B0`BC01*CF( "`D  5  b    j -O:FO
{D
 Zz}DD\ *J:zD|D{DDP !'-h  ` hc`L phSO4;AK]|	  %#Fn;=P8Y$P ->  Y /2;hnX	
Q 0C	A 0k ,nnۣ!FFh9\/@@;Kzm!Fnn\/9h@JCBFn /=>o ! hHj (ŀ >hvY .22hnQ	
S! B	C! k ,nnۢ#FF^;
hCXA+sm"Fnnh:^CCQ`Fvn .8=Cgj /{F  O P] -GЫF@d '>F=F( 
 *BC F (
 1BEC$i#h3 FJ ((ѩXF 6XF6'F&F%F  + tPxp|`d 9 /,hT?kXmoooB @o" A g[n +ѼBDD @D p SO7;E}X  !"Fk !"F(mlj , >hvYV0 H vn .<=c $xD'!F`XW0x(hxWD`  W   `!FOUrxDxKj`BO<w<	D8'xD8W8zD4}DDyD(
T
hP  TLF]F&o . g1i H" '1vi #"F0i"P+ Bp32+vi . 0gh / O 	O6;h+        r               r   a       a   r   a           r             r              r             r               r      ;  6                                         P w (A( Ӄ( 
 *BC4h -  *`* p*@*O O ހ *P* ̈́Ȱ  P;  *@   F YFFF ?i / `h :)0FB Ih) O ( ttO	hO;DiF 
FF2h3F6iW@L .eFHD h* fE*  0S1  (  0 *  *  h "FB^ ?i /Fh "50BM ?i /􉮇 -    P2 ) P10 + q8F  hF0 B!0?i /][h "0T BD  ?i /MK  hF -B>`?i /<:  hF -ѣh "3T# BD# ?i /$" ! 
F -ыh"0T 0 -   R3  (   < `h"3T#    R00c   8 `0B ?i /ޭ  - }  OP2 )@FhlB7>`  -5  P1  *@_  "R ?i / *?0FBh0  ``D      ccYBddn ,WF	
k	3
@ @ /@7$7hW$PU0 FH Bmn -4B\YHOxDK$h*hR'  тp ) ƂKiiPB@Fi B@Ri *< E<ZFT T * k< B@ Pnm	
P%  BqO
TRm *ikBfѐnO @YB` BPmT	 (WkBSтnR' BM BB     r 
       v p f ` ^ Z  j  | kB
тnRYB	 B Ђ T	@m ( + YiPB@[i +N%6i7h}*0Fj/  @6i9Fa/ 9F6ieFhD* p6) ) T)ci +hE!O7`\ba`DhkamE* 0`ecv`i ( Co 0kfeS1  (m !H"4gh78F?i / zO<h #VH 
 F3+ѣh  pdaiFh _hhBy'7`hO  )q  h +@7P' 2FОFX/9F2F)i9F6i .1h2FMhMi *ѱ!i	i )
hn-
i-i -.h6.h@.hO h`   hiP1   @h@𡀇#;`  B>`2 F
XF 6XF6aNeF~D Fh    0FIB` ?i /@>hB  8` 0 "0` ^Ȱgm 0c]0*h@*qai@gmkB &D `[c  FYFF8F8Fae4LF F  00`0  FXF ?i /ߪݻ  (	мP`мp`   FFg1 1FH"biB ##`iB4 ##fi ^ 0S1pai )٫#O6`DF` ʻO3 giD `aa`h 0 #d /MB$D PD   *?M)O3h`D`i `hfa `FaFbF ?i /@>:< E<^FT`T .umT B pn 	
 S'0 $
<k .smBѳn $X0Bk<6 +TEѝnU'Py<k +?tZmbEpn*X?jPBk0` c ,?Zp  *?WikEckeRi *LCm 01hAe p0۱ikEche[i +p0{  [i +n0`p0 +%O !.  X       v F 
 00ћ00pGpG -OlTh}Dd,hFDc+`!F LY   ( @d~D/` %45`0hD!D  @ FYpF8` ( !$Y0` ( OTJM	D5zD ` KY	F` ( ́ D  @ @O  aF "F#FSsEf)DK{DD cFRrEf+DaDOOt "D  F @ T"0 	FceFD0/qDK"@2<h@Ho`Q5BEde ` $V[kh + <  hiJ0 +BFEDD.F!0FD P.!F0FNY `$IY0
` - < ( 9 !LD/|D!*    D5FO eFF Q  0Vf@E5 P  TFF 8F F	k[pBEFZFIFXFFFERR?iBphBp\iB<pkBTp\mBrF\hpF _8hC ;h3?i /  ,  hC@ #h3@$i ,FFpFF"F /_nFLFF /FF`FdpFLFFF`F FFF!h Q;kBTn  cZmTn  \eqE (?` "h\hZ`	hh*ckJmB\kYmBF`h*Yh Fh\`hh ( #K`
hjhf8hd	 h`h\  
O>" W8h#hBhhB?i$iTpFF
F)FpFF "Fkp &lD5FD    FHxD 6 b  t t        d   -OFNFdd~DDD(F7h@F{3`    FF"F !@F,7 P @7` ((FHxD  8   pF
F  +h 00F (ih2F|  p4 h J@zDF ZO0p -AF
FFF#j{ F)FBF;F ( -- -  ` F)FBF;FG (#apG  ipG8
FF A<F(`#i `8(`H! $8 hnJ@zDF  O08 h\J@zDF O08D " FA
FLp7 ,
!hB3 #RB-3BHxDhBh0 ,J @+FzDO03iB  L|D#J @zDO0,0F)FGC5a  (я-@      'DILDyD|D1F {?[\e]B\7 )O0HGxD hpG N  | K{DhBh3 *FpGJzDpG ^  K "{D	hBh23 )FpGFB DPhpG 0  hpG0pG8! "F hBF 8 hxJOqzDF  F8  p "FF h!hF0E bF! h^AF  p% b hL
JOqzDF (Fp h<JOqzDF (Fp x 0G 0G F  h (۽@ F0G  F@ HxDpG 6 @#BF @0B #@!2BmY@#2BvrB BLѱ##a)oݱ=ڱ)X)1):  aA(=@2Bea۱B*))	_! !aa))!a T(`"B`  # aaб O1!aE)۱H@@<aE,@#Bѭi!!a *q!!a *w""a  a"a##ah"az##ar##a
!"!aa#ak!!a  " h!C-" "H  L|D h # h (  -GFOD (  ) : (
P $OyH@ME O
PFF ( RFPUOpL#F|"FHF@, , ,}23BZ,, )23B jK"  $! {DF (@!  F0a!  D b (X" #   (ڸ!"Fh  -D@FoR(FkNJ@zDF *(!IH'"W0xD3@ $H0@F0Ne  p )?}@,<@r,m#  ! "^AF+Ѹh@F `h\)иh_*и h
xIyDFW 0<  ! "0F H b hJ@zDF O0I  @yDO0 I  @ R   8FCn#Eoh o@ # hCF(F8I OrO5yD`(F8
I OryDV(F8. hJOqzDF T    -OIFo
8	 yD -% %zJ
$'X  

h  *%@1F   #b 	AFѸh*и h(@  hB@ !o dqt0ZBѝB *X)pP=B4)nhb[U Ol# @ @ CPmPC 
 *(":PH0B%FK 0QF"F+F (  H
CFE0
RF30
G x0B *~O@uURO ~# OuUR #CSOqR6 hJ@zDF \ FQ& h	J@zDF L0FAN   Cn#FpGN ~D04F6(`i```5BO32(`i`* pF:M:J}DnX0h	s nN ! F!fP	0hB\
p"!n # hH02нq
D   *ДB0
Fo )ЌBog hH,~0Ѹ h(IyDFH(X00 hKIyDFX0"o 0 >   @ 𵋰MFLF}D" #,Y%h	0FH'F0 	!hB> hJOqzDF8Fd(Ff4 v 𵋰MFLF}D" #,Y%h	j0FH3TCF	!hB heJOqzDF8F&(F(   p"F
F h@ & (k< &!lc	!d  0Fp h_(  #F O6 hJOqzDF  -OFpgFl7~DFOpFV  uF (  !OrfE4(FyD (@(xD f @ (  !O@rO 
UFFy@\ h&OqzDF@F 
!O@rBF ` 4#O cfp - 
P
T")F
N  O(L Xt"8F0 Ղ
8F 	bF0 	 ( )F hBFAF ȁ F9FZF iC ȁ @ #a(F f ( u !O@rFy?yO 8FdBFyDg - p)FBFW?F " FYFW"i?q* Q* N* K* 8)FBFxGF`g`
T"OO (O O@sX\LN0:0 G
! 	bF&02	 (  Z`oO!rF @  XP0@ѷH h$OqzDF@FnV6 h$OqzDF@F\D n F $u F 0B@w'q#O1'g#aag'`an )C%o -:h0iDF  ( f!h,$,4zD (${Da`$$0xDyD  #0X$ zDsX xD0 h+#` (I
 "yD (  -")F '
PFH!0 FXs Lh0BĿ FxGFD0uF8`y```7eEў   p: nH)F"xD6@H)F"xD. (x08 !O@r0Y''g0  #iZXб++?q!!aI@FOryD FBOsJ@FOq;FzDR hJOqzDF@FD hvJOqzDF@F6 hhJOqzDF@F( hZJOqzDF@FJ[F@FOqzD#i")F\ L` dXh hH0 𝀽\0q
 *ȭOD8hP~HxD0 𦀽\0!9` hHC|\0 "fD   @g hlJOqzDF@F F F,F^dJOqzDF@F;l h^JOqzDF@F F $AXJOqzDF@F&N hRJOqzDF@Fv FT F $!: hHJOqzDF@F`, hBJOqzDF@FR h<JOqzDF@FD hv6JOqzDF@F63I@FOryDT2 h^,JOqzDF@F  > . . .  \ )$ J h b      ^ t  x 
  B  L Z >      K " I{DyDH (O0     b   pG  pG N~D 5F6 `a```4B2x `O0a`"rpG  	N~D04F6(`i```5BO0pG  K	J{DFX jBзk@ @-OLF &|DI	FyDHDJxDzDDi +@%j!j+FpjBЫIFY0h .gѩ (lF *@0F`j (o
j(	
k(kЗBqҲ? BÀ2
h  8F` ( !+FBnЃNFY h )@𡀮 *  h
{JOqzDF O6(F 0  (з hnJOqzDF j(


B
FB!@F+F2B!YNFYh (aѪ +QзT hTJOqzDF z	@Fh:F @
 (?
 6GVE ?0i +? .)ao$:J  OqzDDu hO(FX"X/J  OqzD,^(FD# +Йj  Oq#JzDJ"M}D (h 0 @6MFO}DD /x  0pP      DX "     < ,  I0yDOrO0  𵃰F
FF
L|D hJ;FOqzD  KXT0B(F   x  @-OFOpFDF ( Հ !Or!"CF(F@L4RL3EE@L4TE #b@-Lna|D` &B ʀh64CL4SE/a ? $	/ @ )Fc (   D0 jc @!E  #b}HZ h +@ yIh`yJzHzD xD Z0  vJ zD0 sIsKtJyDtH{DzDxD0  (F	EE@𔀽 @O!A &"
B,L4T!EibU"bSUIHFOryD/g ' `LH )xDP'@dO CH 0_;H"bZ h +?{@F$x>FD\6p4**,__-IZ0h6 h1JOqzDFHF\(F %q,JHF OqzD#N@Ff 0 $L|D  &y h 0 `IHFOryDL|D   h 0  "  DAkyy{&  h v |  ,  -AFxOF-+DI FyDF(FAFKFH0F@x (I}XJXB(F.F hJOq#FzD @F    @ -GFhNhFPF@!"FhF PF"KF
-CF:K:LFi{D|D &BХh64j3JO3  OqzDKF $t1>F-JzDvhqЙ  -()љ )%&M\YDT4PL7'p'pp!"#F %( F	IHFyDVF (ѷ  hgJOqKFzD  &!F@FJFaF $ ~ X H @   j?O0  f,K-{D+J+L,M|D,H}D,I,OxDXyDD  (M)L)O}D|D hD D $k&  "!I@1VyD1 )FF7 Bȿ" 504BHxD0 ECFLJDzD  pG      ڽ     G  d v p r KI{DHyDL0xDhD	hR!@h%iL 0|D4%`DL Y`R! h x	K{Dp0pG     ޼  FKH{DIXyD0 8 @ -AN~D5hEOKD{D<hhbB(FO # 0`@$0K`L;L;L;L;L; 0  "J	IzDyD0`` 
`` v  ^ 4  pFK{Dh#JzDhS" BЉMN}DL~D)hD5x `
pS"P`S"0a`GJ zD`pp ,HxDh  λ  ֻ ƻ   Fȱ
K{Dh0JzDhP#B
`i  F@Ż`h "@# ` L Bh #
Lap|DAh"h$KpAhab`B D 0R# BpG   pF
F6F FhJ!KzD%`{Dbh@PD  P" B! "!bbbHXha  (Կ   a
`p(F(Fº ƺ  DpF0 
F>Fh`8``8 F#1Fca FpHxD~ K-A{DFh`JzDhP! 0!FAvOMOA
ND}D~D8h/h +hG( F +0hS      ޹ <-O{DLh|D *@xxl!XYp\pp}DplDl|Dl~DD	D(,
8$
L\ 
x}D h@̩F@<FD{D  
@1U80 Ll|D p~D:0yDDD;" GFF4 B10ȿ*SD9E: 20ABИ  yD+kD zD~DKD|D[<0D}DF<FFFxD'`; 0 40X[`!`}D  !LL+LKxDH[zD|D}D   + P#D G     _	  Y	  S	  M	  G	  A	  ;	  5	  /	  )	  #	  k  e  _  Y  S  M  G  A  ;  5  /  )  #                                                        {  u  o  i  c  ]  Y  S  M  G  A  ;  5  /  )  #                  '  !        	                          s      
  	      s            q  Y  I  3                  }  k  Y  C  -                i  =  -      ]  Y   $`D 0"  ܘD  D `D 03ĈD  S" $$(cXXXZ x[@T4 @|DxXOAtD}DD  .h pDF' OsF'@SOs@UOs@WOs@QOs@OOs@?Os@=Os@%Os@7!#@eOsOs@!Os@Os@@
Os@	Os@OsOs@MOs@KOsOs@IOs@GOs~@E{Osx@Cu@Cr@Ao@AlOsiOsf@cOs`@]OsZ@WOsT@;QOsN@9KOsHOsE@BOs?@< !@#[  `1 xD %)F   
$!"#$%% (@e hat@3U `(h@X@1Z `Os@5=#@/
   x0+ - +   f !Y%hW?
 + 0	. 4F )ѣ7)hHOsZ `  OsbX`Os@-#hx@cOs@aOs@_OsOs@]|@+yOsv@)sOsp@'mOsj@YgOsd@[aOs^!@#[  `S !@#Z  `H!@#*X`?!@#"X`6!@#[  `+
!@#Z  ` !@#*X`!@#"X`t
!@#[  ``	!@#Z  `H!@#*X`8!@#"X`$!@#[  `!@#Z  `H !@#*X`H!@#"X`  IOsbX`H !@#Z  `H!@#*X`H!@#"X`H!@#[  `H!@#Z  `H!@#*X`}H
!@#"X`uP" Dh  0F*H7hxD9xH xD(h0IOsZ `H #Fh)x6h"h V 0ij ,mi)h%"``V 0bV 0L|D!hB2bDB'h 򡁚j *@ˀ(h.FD `rD
h<0FNML}DI|D.xyD h `h10D `HxDOs@Os@Os@Os@OsOs@hFuJ@#Z `Sx X(	ѓx 2zH xD62 wJ !zDDhuJC zDp`C3 `v&`lL|D40;jIDyD  `DD< U;@BD> < W;pB_IP@1UyD1 "hB?X (?U`<D   #l , #\ 3BV 0j/ ÁhE/ / F%FDF l,  t   f  x x T ,  B "       ` & p f d        v v b J @    8¯ h B     ֮  Ʈ   6 <       7  j $ hY  )ؿ`1 x`  ;hhBW / .F 'xhzi *ѹF HxDHxD,FFi _O W - I 'MJN}DHzD~DxD]X hAhJB` *(h+`
* 1h hQ 0Xh7 ,B *h *hFS.h .@π$D  (@8FNO~DD1h;hS!`D  0a ( ~I &~KyD{Dhhh  !zL.Wh|D `9ThWh hOh'`?E.rıD< H+hiNjO~DjIjJDyDzD`hM3hhH}DhNxD~D8h!.hP&`ph ` (5KJX3hh@K h(Hѵ "`1hPD 0 ` h (*h?hW"`(hxh3h.h?hW&`lF `chbhc?H &axD`=M'  }D>FD+h S!PbZ6HxDpD   0 -&D  .J.HzDxDhDh  5*Mx}DD-h `U&0Yh:UU&`F    D   |     ֪  ֪  | z  p \ ` \ 
     | d N T \ : , )FFCL\0 PF>!`G``Ea`aaabb3 F $ FHxD FF8F.F # ,\T3B "(F9F *U0#CaHxDHxD   FF F@ʿK{D` ̧ K{Dh#H "xD`  -AF ( ƀ '8F%- ɀ                                          M   R[      _c  f   {                      #+  3       7       :       >   AD  G  J                                          hBK  O0hBp4F 0h4F+h4FF@#h4F h4FL@|h4F@hhF4F4Fh4F@hBz t4Fh9BP4FA 8C4FBСz h9B 4Fh4F@8@4Fh4F U@h4F\@|h4F@@4Fh4F@@4FF4FF4F@B4F8F4FhB  dh4F  hBӱ /M9FBӪh9BJ 4FExxxFaAFF  |h4FCxh(B?shBn 4FjBfhB?  4FFxxx5EfFL  QBMfh4F H8FxGF RxGF RxGF SxGF RxGF RxGF QxGF TxGF TxGF dUxGF RxGF TxGF VxGF UxGF |VxGF hQ           Android    0WW"XLZ[  [P\
`$aa\c  cddeeeTfPftjmn p#p#pq#rL  sP  tT  xvX  (x$yyHT܀< Ĉȋ$	L4?&00T  d,l,p|	̰
,
0  T$d4
<  0 	"<    `!  !!
 % &
x-05(;;A B(HdH,  K,NhO
RU  U[  [D]^L`e ffph0ii`jlnn?$ww
  8||} 
t$l4@<$<ȭ TD ȸxt
0d;H D"H
` $  0  , p
\
L,#"*,, /
3t  ?F,GG(HX  XHMNTtVTXYYZ߄\]0]]x^^T_l__8ataaccpLxx",yɀz}~~l
  Dp
  \l
  d,$ؙأ&$`,`  4	|x$hH	  h
?\?H?`#?'?x*	  ,	  .	  8?@QW(XHX[[d_aLfmnu|<}p~0̇?$<
0  йȺ t
p 0      (  < ?DH@ HpD!ld  h  0<th    xT8!  $'L'  |'  '`(((
),)P*d+ x++++d,|,P9\999:,==L>>,?@BEEFGHHIIJTJJ@KKt  Kx  K LLMU`U`U(VtXYxZ[X^__`4c?88ij4ntqTr<sHu
v{}x  <toԑ$p
   $|  $tX  \ė,d8L0(TD@Dķtȸ0hܹع  ܹ   $t 	
D?6X ||,  @<t|x  h  t,l&DP  \  t             &    &    &    &    
                                                                                                                
                                                                                                      0123456789abcdef    lookup_emem: calloc Unknown  (oui %s)   lookup_bytestring: calloc   linkaddr_string: malloc lookup_protoid: calloc  isonsap_string: illegal length  lookup_nsap: malloc lookup_nsap: calloc isonsap_string: malloc  newhnamemem: calloc /etc/ethers r   tcp udp %d  %u  newh6namemem: calloc    Broadcast   CiscoMLS    CiscoCDP    CiscoCGMP   CiscoVTP    ExtremeEDP  User    User Group  PrintQueue  FileServer  JobServer   Gateway PrintServer ArchiveQueue    ArchiveServer   JobQueue    Administration  Novell TI-RPC   Diagnostics NetBIOS NAS SNA Gateway NACS AsyncGateway   RemoteBridge/RoutingService BridgeServer    TCP/IP Gateway  Point-to-point X.25 BridgeServer    3270 Gateway    CHI Corp    PC Chalkboard   TimeSynchServer ARCserve5.0/PalindromeBackup    DI3270 Gateway  AdvertisingPrintServer  NetBlazerModems BtrieveVAP  NetwareSQL  XtreeNetwork    BtrieveVAP4.11  QuickLink   PrintQueueUser  Multipoint X.25 Router  STLB/NLM    ARCserve    ARCserve3.0 WAN CopyUtility TES-NetwareVMS  WATCOM Debugger/EmeraldTapeBackupServer DDA OBGYN   NetwareAccessServer Netware for VMS II/NamedPipeServer  PortableNetwareServer/SunLinkNVT    PowerchuteAPC UPS   LAWserve    CompaqIDA StatusMonitor PIPE STAIL  LAN ProtectBindery  OracleDataBaseServer    Netware386/RSPX RemoteConsole   NovellSNA Gateway   TestServer  HP PrintServer  CSA MUX CSA LCA CSA CM  CSA SMA CSA DBA CSA NMA CSA SSA CSA STATUS  CSA APPC    SNA TEST SSA Profile    CSA TRACE   NetwareSAA  IKARUS VirusScan    CommunicationsExecutive NNS DomainServer/NetwareNamingServicesDomain    NetwareNamingServicesProfile    Netware386 PrintQueue/NNS PrintQueue    LAN SpoolServer IRMALAN Gateway NamedPipeServer NetWareManagement   Intel PICKIT CommServer/Intel CAS TalkServer    Compaq  Compaq SNMP Agent   XTreeServer/XTreeTools  NASI ServicesBroadcastServer    GARP Gateway    Binfview    IntelLanDeskManager AXTEC   ShivaNetModem/E ShivaLanRover/E ShivaLanRover/T ShivaUniversal  CastelleFAXPressServer  CastelleLANPressPrintServer CastelleFAX/Xerox7033 FaxServer/ExcelLanFax LEGATO  NMS Agent/NetwareManagementAgent    NMS IPX Discovery/LANternReadWriteChannel   NMS IP Discovery/LANternTrapAlarmChannel    LANtern MAVERICK    NovellSMDR  NetwareConnect  NASI ServerBroadcast Cisco  NMS ServiceConsole  TimeSynchronizationServer Netware 4.x   DirectoryServer Netware 4.x NetwareManagementAgent  Novell File and Printer Sharing Service for PC  NovellSAA Gateway   COM/VERMED  GalacticommWorldgroupServer IntelNetport2/HP JetDirect/HP Quicksilver   AttachmateGateway   MicrosoftDiagnostiocs   WATCOM SQL Server   MultiTechSystems MultisynchCommServer   Xylogics RemoteAccessServer/LANModem    ArcadaBackupExec    MSLCD1  NETINELO    Powerchute UPS Monitoring   ViruSafeNotify  HP Bridge   HP Hub  NetWare SAA Gateway LotusNotes  CertusAntiVirus ARCserve4.0 LANspool3.5 LexmarkPrinterServer    LexmarkXLE PrinterServer    BanyanENS NetwareClient GuptaSequelBaseServer/NetWareSQL    UnivelUnixware  IntelNetport    PrintServerQueue    ipnServer   LVERRMAN    LVLIC   NET Silicon (DPI)/Kyocera   SiteLockVirus   UFHELPR???  Synoptics281xAdvancedSNMPAgent  MicrosoftNT SNA Server  Oracle  ARCserve5.01    CanonGP55   QMS Printers    DellSCSI Array  OnTimeScheduler CD-Net  EmulexNQA   SiteLockChecks  CitrixOS2 AppServer Tektronix   Milan   Attachmate SNA gateway  IBM8235 ModemServer ShivaLanRover/E PLUS    ShivaLanRover/T PLUS    McAfeeNetShield NLM to workstation communication (Revelation Software)  CompatibleSystemsRouters    CheyenneHierarchicalStorageManager  JCWatermarkImaging  AXISNetworkPrinter  AdaptecSCSIManagement   IBM AntiVirus   Windows95 RemoteRegistryService MicrosoftIIS    Microsoft Win95/98 File and Print Sharing for NetWare   Xerox   ShivaLanRover/E 115 ShivaLanRover/T 115 CubixWorldDesk  Quarterdeck IWare Connect V2.x NLM  Quarterdeck IWare Connect V3.x NLM  ELAN License Server Demo    ShivaLanRoverAccessSwitch/E ISSC Collector  ISSC DAS AgentAIX   Intel Netport PRO   SiteLock    SiteLockApplications    LicensingServer PerformanceTechnologyInstantInternet    LAI SiteLock    MeetingMaker    SiteLockServer/SiteLockMetering SiteLockUser    Tapeware    RabbitGateway   MODEM   NetPortPrinters WordPerfectNetworkVersion   Cisco EIGRP WordPerfectNetworkVersion/QuickNetworkManagement    CSA-NT_MON  OceanIsleReachoutRemoteControl  SiteLockMetering    Microsoft SQL Server    IBM TimeAndPlace    TopCallIII FaxServer    AnyService/Wildcard IPv4    NS  ISO Appletalk   IPX IPv6    Reserved    NSAP    HDLC    BBN 1822    802 E.163   E.164   F.69    X.121   Novell IPX  Decnet IV   Banyan Vines    E.164 with NSAP subaddress  Layer-2 VPN VPLS    Russian dolls   Maximum allocation  Maximum allocation with E-LSP support   STS-1 SPE   STS-3c SPE  STS-1   STM-3   STM-12  STM-48  STM-192 STM-768 VC-3    VC-4    STM-0   STM-1   STM-4   STM-16  STM-64  STM-256 SDH ITU-T G.707 SONET ANSI T1.105   Unknown Reserved    Asynchronous mapping of E4  Asynchronous mapping of DS3/T3  Asynchronous mapping of E3  Bit synchronous mapping of E3   Byte synchronous mapping of E3  Asynchronous mapping of DS2/T2  Bit synchronous mapping of DS2/T2   Asynchronous mapping of E1  Byte synchronous mapping of E1  Byte synchronous mapping of 31 * DS0    Asynchronous mapping of DS1/T1  Bit synchronous mapping of DS1/T1   Byte synchronous mapping of DS1/T1  VC-11 in VC-12  DS1 SF Asynchronous DS1 ESF Asynchronous    DS3 M23 Asynchronous    DS3 C-Bit Parity Asynchronous   VT/LOVC STS SPE/HOVC    POS - No Scrambling, 16 bit CRC POS - No Scrambling, 32 bit CRC POS - Scrambling, 16 bit CRC    POS - Scrambling, 32 bit CRC    ATM mapping Ethernet PHY    SONET/SDH   Reserved (SONET deprecated) Digital Wrapper Lambda  ANSI/ETSI PDH   Link Access Protocol SDH (X.85 and X.86)    FDDI    DQDB (ETSI ETS 300 216) FiberChannel-3 (Services)   HDLC    Ethernet V2/DIX (only)  Ethernet 802.3 (only)   G.709 ODUj  G.709 OTUk(v)   CBR/CBRa    CBRb    BSOT    BSNT    IP/PPP (GFP)    Ethernet MAC (framed GFP)   Ethernet PHY (transparent GFP)  ESCON   FICON   Fiber Channel   Packet  Ethernet V2/DIX SDH ITU-T G.707/SONET ANSI T1.105   Lambda (photonic)   Fiber   FiberChannel    Packet-Switch Capable-1 Packet-Switch Capable-2 Packet-Switch Capable-3 Packet-Switch Capable-4 Layer-2 Switch Capable  Time-Division-Multiplex Lambda-Switch Capable   Fiber-Switch Capable    Extra Traffic   Unprotected Shared  Dedicated 1:1   Dedicated 1+1   Enhanced    IETF (reserved) ACC Cisco   Hewlett Packard Sun Microsystems    Merit   Shiva   Ericsson AB Cisco VPN 5000  Livingston  Microsoft   3Com    Ascend  Bay Networks    Foundry Versanet    Redback Juniper Networks    Aptis   Cisco VPN 3000  CoSine Communications   Netscreen   Shasta  Nomadix Siemens CableLabs   Unisphere Networks  Cisco BBSM  3rd Generation Partnership Project 2 (3GPP2)    ipUnplugged Issanni Communications  Quintum Interlink   Colubris    Columbia University 3GPP    Gemtek-Systems  Wi-Fi Alliance  Ethernet    Nortel Networks SONMP   Cisco bridged   Ethernet bridged    ATM Forum   DOCSIS Spanning Tree    Appletalk   Juniper Hewlett-Packard Options ICMP    IGMP    IPIP    TCP EGP IGRP    UDP DCCP    IPv6    Routing Fragment    RSVP    GRE ESP AH  Mobile IP   ICMPv6  Mobile IP (old) EIGRP   OSPF    PIM Compressed IP   VRRP    PGM SCTP    Mobility    NULL    Q.933   LMI SNAP    CLNP    ES-IS   IS-IS   CONS    IDRP    FRF.15  IPv4    PPP X25 ES-IS   IPv6    Reserved    Frame Relay ATM AAL5 VCC transport  ATM transparent cell transport  Ethernet VLAN   Ethernet    Cisco-HDLC  PPP SONET/SDH Circuit Emulation Service over MPLS   ATM n-to-one VCC cell transport ATM n-to-one VPC cell transport IP Layer2 Transport ATM one-to-one VCC Cell Mode    ATM one-to-one VPC Cell Mode    ATM AAL5 PDU VCC transport  Frame-Relay Port mode   SONET/SDH Circuit Emulation over Packet Structure-agnostic E1 over Packet   Structure-agnostic T1 (DS1) over Packet Structure-agnostic E3 over Packet   Structure-agnostic T3 (DS3) over Packet CESoPSN basic mode  TDMoIP basic mode   CESoPSN TDM with CAS    TDMoIP TDM with CAS IP-interworking Auspex  BSD 4.4 OSF IRIX4   SUNOS4  SUNOS5  Ultrix  VMS HPUX9   %.2X    Unknown BSSID:%s TA:%s  RA:%s TA:%s     RA:%s   RA:%s BSSID:%s  (H) Unknown Ctrl Subtype    CF  Ack/Poll    Ack Poll    +QoS    DA:%s SA:%s BSSID:%s    DA:%s BSSID:%s SA:%s    BSSID:%s SA:%s DA:%s    RA:%s TA:%s DA:%s SA:%s      PRIVACY        n/a  AID(%x) :%s: %s    Reserved    : %s     (%s)-%x [Challenge Text] %s    Shared Key   (%s)-%x: %s     [  *    (  %s%2.1f%s        Mbit]  , PRIVACY    CH: %u %s  ESS IBSS     %s  AP : %s     (%s): %s   Data IV:%3x Pad %x KeyID %x [|802.11]   unknown IEEE802.11 frame type (%d)  More Data   More Fragments  Pwr Mgmt    Retry   Strictly Ordered    WEP Encrypted   %dus    BSSID:%s DA:%s SA:%s    (header) unknown IEEE802.11 frame type (%d) Assoc Request   Assoc Response  ReAssoc Request ReAssoc Response    Probe Request   Probe Response  Beacon  ATIM    Disassociation  Authentication  Authentication (Shared-Key)-3   DeAuthentication    Unhandled Management subtype(%x)    Power Save-Poll  AID(%x)    Request-To-Send  TA:%s  Clear-To-Send    RA:%s  Acknowledgment  CF-End  CF-End+CF-Ack   Unknown Ctrl Subtype    (LLC %s)    unknown 802.11 frame type (%d)  [0x%08x]    %u MHz  (0x%04x)    fhset %d fhpat %d    Mb/s   %ddB signal     %ddB noise  %u sq   %d tx power     %ddB tx power   %ddBm tx power  cfp     short preamble  wep     fragmented  bad-fcs     antenna %d  %lluus tsft     Succesful   Unspecified failure Cannot Support all requested capabilities in the Capability Information field   Reassociation denied due to inability to confirm that association exists    Association denied due to reason outside the scope of the standard  Responding station does not support the specified authentication algorithm  Received an Authentication frame with authentication transaction sequence number out of expected sequence   Authentication rejected because of challenge failure    Authentication rejected due to timeout waiting for next frame in sequence   Association denied because AP is unable to handle additional associated stations    Association denied due to requesting station not supporting all of the data rates in BSSBasicRateSet parameter  Unspecified reason  Previous authentication no longer valid Deauthenticated because sending station is leaving (or has left) IBSS or ESS    Disassociated due to inactivity Disassociated because AP is unable to handle all currently associated stations  Class 2 frame received from nonauthenticated station    Class 3 frame received from nonassociated station   Disassociated because sending station is leaving (or has left) BSS  Station requesting (re)association is not authenticated with responding station Open System EAP [|ap1394]   %s > %s Unknown , ethertype %s (0x%04x) Unknown Ethertype (0x%04x)  , %s    , length %u:    AH(spi=0x%08x   ,sumlen=%d  ,seq=0x%x   [truncated] ):  [|AH]   et1     [|arcnet]   %02x %02x %d:   %02x    %02x %02x %s %d:    [|phds] [|phds extended]    %02x %02x %s seqid %04x %d:     %02x %02x %s seqid %04x (first of %d fragments) %d:     %02x %02x %s seqid %04x (fragment %d) %d:   oldip   oldarp  ip  arp rarp    atalk   banyan  ipx ipv6    diag     [|hello]   
	ext HELLO %ld ms  
	ext %u %u [D]      [|aodv]     aodv    [|rreq6]    v6 rreq %u %s%s%s%s%shops %u id 0x%08lx
	dst %s seq %lu src %s seq %lu      [|rreq]     rreq %u %s%s%s%s%shops %u id 0x%08lx
	dst %s seq %lu src %s seq %lu     [|rrep6]    rrep %u %s%sprefix %u hops %u
	dst %s dseq %lu src %s %lu ms    [|rrep]     rerr %s [items %u] [%u]:    {%s}(%ld)  [|rerr]  [|rerr]     rrep-ack %u     %u %u  <No address>    %s  ,%s truncated-atmarp    atmarp-#%d for proto #%d (%d/%d) hardware #%d   trailer-    arp who-has %s   (  )    tell %s    arp reply %s     is-at  invarp who-is    tell   invarp reply     at %s  nak reply for %s    atmarp-#%d  [|atmarp]   truncated-arp   arp-#%d for proto #%d (%d) hardware #%d (%d)     (%s)    is-at %s   rarp who-is %s tell %s  rarp reply %s at %s invarp who-is %s tell %s    invarp reply %s at %s   arp-#%d  hardware #%d   [|arp]   %02x%02x   %s0x%04x: %-*s  %s   %02x   %s0x%04x:   /etc/atalk.names    r   %d.%d.%d %256s  %d.%d %256s %s.%d   %d.%d.%d    %d.%d   %d  %c%d    <0-%d>  <0> [len=%u]     nbp-lkup %d:    nbp-brRq %d:       *    truncated-nbp %d    [ntup=%d]   [enum=%d]   [addr=%s.%d]    nbp-reply %d:  (%d)     %d  [addr=%s]   nbp-0x%x  %d (%d)   atp-req%s %d    [len=%d]    [EOM]   [STS]   [EOM,STS]   atp-resp%s%d:%d (%d)    [XO]    [XO,STS]    atp-rel  %d    %cXO    %cEOM   %cSTS    atp-0x%x  %d (%d)   0x%x    at-%s %d    [|sddp %d] %s.%s    > %s.%s:    [|ddp %d]  %d > %d at-lap#%d %d    AT   > %s.%s:   aarp    who-has %s tell %s  reply %s is-at %s   probe %s tell %s    len %u op %u htype %u ptype %#x halen %u palen %u   rtmp    nis echo    zip rtmpReq IP  ARP KLAP    (LLC %s)    [|atm]  CNLPID  %08x%08x %08x%08x   OAM F5  %s, vpi %u, vci %u, payload %u, clp %u,     unknown cell-type %s (%u)   , func-type unknown (%u)    none    , func-type %s (%u) , length %u VPI:%u VCI:%u   Q.2931   [|atm] msgtype#%d  :%s     CALL_REF:0x%06x SSCOP, proto %d     broadcast sig:  meta:   ilmi:   Performance Monitoring  Continuity Check    Forward Monitoring  Backward Reporting  Monitoring and Reporting    AIS RDI Loopback    Fault Management    Performance Management  activate/deactivate System Management   OAM F4 (segment)    OAM F4 (end)    Call_proceeding Connect Connect_ack Setup   Release Release_complete    Restart Restart_ack Status  Status_enquiry  Add_party   Add_party_ack   Add_party_reject    Drop_party  Drop_party_ack  MSG  BEEP MSG   RPY      BEEP RPY   ERR      BEEP ERR   ANS      BEEP ANS   NUL      BEEP NUL   SEQ      BEEP SEQ   END  BEEP END    BEEP (payload or undecoded)    unknown (%u)    none    BFDv%u, %s, Flags: [%s], length: %u unknown BFDv%u, length: %u
	%s, Flags: [%s], Diagnostic: %s (0x%02x)    
	Detection Timer Multiplier: %u (%u ms Detection time), BFD Length: %u 
	My Discriminator: 0x%08x  , Your Discriminator: 0x%08x    
	  Desired min Tx Interval:    %4u ms  
	  Required min Rx Interval:   %4u ms  
	  Required min Echo Interval: %4u ms  BFDv%u, %s, State %s, Flags: [%s], length: %u   BFDv%u, length: %u
	%s, State %s, Flags: [%s], Diagnostic: %s (0x%02x)  Unknown 
	%s (%u) Authentication, length %u present BFD, %s, length: %u 
	  [|BFD]  Control Echo    I Hear You  Demand  Poll    Final   Reserved    No Diagnostic   Control Detection Time Expired  Echo Function Failed    Neighbor Signaled Session Down  Forwarding Plane Reset  Path Down   Concatenated Path Down  Administratively Down   Reverse Concatenated Path Down  AdminDown   Down    Init    Up  Control Plane Independent   Authentication Present  Simple Password Keyed MD5   Meticulous Keyed MD5    Keyed SHA1  Meticulous Keyed SHA1   (BOGUS: Bottom of Stack NOT set!)   (bottom)    %s/%d, label:%u %s  %s/%d   %u:%u.%u.%u.%u  %u.%u.%u.%u:%u  %u:%u (%u.%u.%u.%u:%u)  unknown RD format   origin AS: %u, route target %s  RD: %s, %s/%d, label:%u %s  RD: %s, CE-ID: %u, Label-Block Offset: %u, Label Base %u    
		circuit status vector (%u) length: %u: 0x    %02x    
		unknown TLV #%u, length: %u  ,       vendor specific     E2  E1  O   T   P   E   invalid len Unknown Origin Typecode %s  empty   ?   %u  %u   AS #%u, origin %s   NO_EXPORT   NO_ADVERTISE    NO_EXPORT_SUBCONFED    %u:%u%s %s%s    Unknown AFI Unknown SAFI    
	    AFI: %s (%u), %sSAFI: %s (%u) 
	    no AFI %u / SAFI %u decoder   
	      
	    nexthop:  RD: %s, %s   = %s   no AFI %u/SAFI %u decoder   , nh-length: %u 
	    %u SNPA   
	      %d bytes    , no SNPA   
	    (illegal prefix length)   
	      %s  
	    (illegal length)  
	      End-of-Rib Marker (empty NLRI)  no AFI %u / SAFI %u decoder unknown extd community typecode none    
	    %s (0x%04x), Flags [%s]   : %u:%s : %s:%u : %u:%u : bandwidth: %.3f Mbps  : AS %u, group %s   unknown (0x%02x)    : area:%s, router-type:%s, metric-type:%s%s unknown encaps  : %s Control Flags [0x%02x]:MTU %u  
	          
	    Origin AS: %u Unknown Attribute   
	      %s (%u), length: %u , Flags [%s%s%s%s   +%x ]:  
	    no Attribute %u decoder   R   yes no  : BGP, length: %u    [|BGP] 
[|BGP Bogus header length %u < %u] Unknown 
	%s Message (%u), length: %u   
	     Option %d, length: %u    
	    Option %s (%u), length: %u    
		AFI %s (%u), SAFI %s (%u)    
		Restart Flags: [%s], Restart Time %us    
		  AFI %s (%u), SAFI %s (%u), Forwarding state preserved: %s  
		no decoder for Capability %u 
		 
	      no decoder for option %u    [|BGP]  
	  Withdrawn routes: %d bytes  
	  End-of-Rib Marker (empty NLRI)  
	  %s (%u), length: %u 
	  Updated routes: 
	    %s    Unknown Error   , %s (%u)   , subcode %s (%u)    subcode %s (%u)    , AFI %s (%u), SAFI %s (%u), Max Prefixes: %u   
	  AFI %s (%u), SAFI %s (%u)   
	      
	  no Message %u decoder   Unknown Message Type    
[|BGP %s]  
	  Version %d,     my AS %u,   Holdtime %us,   ID %s   
	  Optional parameters, length: %u Open    Update  Notification    Keepalive   Route Refresh   Authentication Information  Capabilities Advertisement  Multiprotocol Extensions    Cooperative Route Filtering Graceful Restart    32-Bit AS Number    Dynamic Capability  Route Refresh (Cisco)   Reserved    Unicast Multicast   Unicast+Multicast   labeled Unicast Tunnel  VPLS    MDT labeled VPN Unicast labeled VPN Multicast   labeled VPN Unicast+Multicast   Route Target Routing Information    Origin  AS Path Next Hop    Multi Exit Discriminator    Local Preference    Atomic Aggregate    Aggregator  Community   Originator ID   Cluster List    DPA Advertisers RCID Path / Cluster ID  Multi-Protocol Reach NLRI   Multi-Protocol Unreach NLRI Extended Community  Attribute Set   Reserved for development    IGP EGP Incomplete  {   (   ({  }   )   })  target  origin  link-BW mdt-group   ospf-domain ospf-route-type ospf-router-id  layer2-info eigrp-general-route (flag, tag) eigrp-route-metric (AS, delay)  eigrp-route-metric (reliability, nexthop, bandwidth)    eigrp-route-metric (load, MTU)  eigrp-external-route (remote-AS, remote-ID) eigrp-external-route (remote-proto, remote-metric)  vendor-specific non-transitive  Router  Network Summary External    NSSA External   MPLS-VPN Sham   Message Header Error    OPEN Message Error  UPDATE Message Error    Hold Timer Expired  Finite State Machine Error  Cease   Capability Message Error    Connection Not Synchronized Bad Message Length  Bad Message Type    Unsupported Version Number  Bad Peer AS Bad BGP Identifier  Unsupported Optional Parameter  Authentication Failure  Unacceptable Hold Time  Malformed Attribute List    Unrecognized Well-known Attribute   Missing Well-known Attribute    Attribute Flags Error   Attribute Length Error  Invalid ORIGIN Attribute    AS Routing Loop Invalid NEXT_HOP Attribute  Optional Attribute Error    Invalid Network Field   Malformed AS_PATH   Invalid Action Value    Invalid Capability Length   Malformed Capability Value  Unsupported Capability Code Maximum Number of Prefixes Reached  Administratively Shutdown   Peer Unconfigured   Administratively Reset  Connection Rejected Other Configuration Change  Connection Collision Resolution cScSM  SM*     :   unknown (0x%02x)    BOOTP/DHCP, %s   from %s    , length %u , htype %d  , hlen %d   , hops %d   , xid 0x%x  , secs %d   none    , Flags [%s]     (0x%04x)   
	  Client-IP %s    
	  Your-IP %s  
	  Server-IP %s    
	  Gateway-IP %s   
	  Client-Ethernet-Address %s  
	  sname " 
	  file "  
	  Vendor-rfc1048 Extensions   
	    Magic Cookie 0x%08x   ?xT%u   ?T%u    , occurs %u [|rfc1048 %u]   Unknown (%u)    %s  ?Option %u  
	          ,   %d  %u  (%s:    %s) %u? %02x    ERROR: option %u len %u < 1 bytes   ERROR: option %u len %u < 3 bytes   [%s]    %u/%u   hardware-type %u,   %s  Unknown 
	      %s SubOption %u, length %u: length goes past end of option  
	      %s SubOption %u, length %u:     
		 ERROR: option %u len %u < 5 bytes   [ERROR: Mask width (%d) > 32]   [ERROR: Remaining length (%u) < %u bytes]   default .0  /%d :%s)    [unknown special tag %u, size %u]   
	  trailing data length %u |[rfc1048]   vend-cmu    F:0x%x  %s:%s  DG  NS1 NS2 IEN1    IEN2    TS1 TS2 
	  Vendor-#0x%x    
	    %s Option %u, length %u%s Request Reply   Broadcast    PAD    iSubnet-Mask    LTime-Zone  iDefault-Gateway    iTime-Server    iIEN-Name-Server    iDomain-Name-Server iLOG    iCS iLPR-Server iIM iRL aHostname   sBS  END    aDP aDomain-Name    iSS aRP aEP BIPF    BSRT    pPF sRSZ    bTTL    lMTU-Timeout    sMTU-Table  sMTU    BLSN    iBR BMD BMS BRouter-Discovery   iRSA    pStatic-Route   BUT lAT BIE bTT lKI BKG aYD iYS iNTP    bVendor-Option  iNetbios-Name-Server    iWDD    $Netbios-Node   aNetbios-Scope  iXFS    iXDM    sN+D    iN+S    iMH iSMTP   iPOP3   iNNTP   iWWW    iFG iIRC    iSTS    iSTDA   iRequested-IP   lLease-Time $OO aTFTP   aBF  DHCP-Message   iServer-ID  bParameter-Request  aMSG    sMSZ    lRN lRB aVendor-Class   $Client-ID  aUAP    BNOAUTO bSLP-DA bSLP-SCOPE  sNSSEARCH   iSUBNET $Classless-Static-Route $Classless-Static-Route-Microsoft   aCLASS  aSLP-NA $FQDN   $Agent-Information  bARMT   bAMSK   aTZSTR  bFQDNS  bAUTH   iVINES  sRANK   sARCH   bNDI    bGUID   aLDAP   i6o4    aPRTR   bMDHCP  bIPX    iNI aNITAG  aURL    bFAIL   Discover    Offer   Decline ACK NACK    Release Inform  b-node  p-node  m-node  h-node  file    sname   file+sname  ether   ieee802 arcnet  frelay  strip   ieee1394    Circuit-ID  CMU IPv4 (%u) %s    IPv6 (%u) %s    pt=0x%02x, pl=%d, pb=    %02x   , al=%d, a= s       full    half    [|cdp]  CDPv%u, ttl: %us    , checksum: %u (unverified), length %u  unknown field type  
	%s (0x%02x), length: %u byte%s:   , Device-ID '%.*s'  '%.*s'  none    (0x%08x): %s    
	      	    IPv4 Prefixes (%d):     %u.%u.%u.%u/%u %d  %s  app %d, vlan %d %1.2fW  %u bytes    0x%02x  0x%02x/%.*s , length %u Device-ID   Address Port-ID Capability  Version String  Platform    Prefixes    Protocol-Hello option   VTP Management Domain   Native VLAN ID  Duplex  ATA-186 VoIP VLAN request   ATA-186 VoIP VLAN assignment    power consumption   MTU AVVID trust bitmap  AVVID untrusted ports CoS   System Name System Object ID (not decoded)  Management Addresses    Physical Location   Router  Transparent Bridge  Source Route Bridge L2 Switch   L3 capable  IGMP snooping   L1 capable  0x%02x  Unknown %s, ethertype %s (0x%04x), length %u:   SLARP (length: %u),     request reply %s/%s keepalive: mineseen=0x%08x, yourseen=0x%08x, reliability=0x%04x , link uptime=%ud%uh%um%us  0x%02x unknown  
	  , (trailing junk: %d bytes) [|slarp]    unknown CHDLC protocol (0x%04x) [|chdlc]    unicast bcast   [|cip]  %d:     (LLC %s)    NetFlow v%x, %u.%03u uptime, %u.%09u,   #%u,    %2u recs    
  started %u.%03u, last %u.%03u    /%u :%u 
    %s%s%s:%u  /%d > %s%s%s:%u     >> %s
      %u  %s  (%u<>%u encaps) tos %u, %u (%u octets) %s   invalid [Invalid packet|dccp]   truncated-dccp - %ld bytes missing! %s.%d > %s.%d:   %d dccp [bad hdr length %u - too long, > %u]   CCVal %d, CsCov %d,     cksum 0x%04x     (incorrect (-> 0x%04x),     (correct),     request (service=%d)    response (service=%d)   data    ack     dataack     closereq    close   reset (code=%s)     sync    syncack     invalid     (ack=%llu)  seq %llu     <  Option %d optlen too short  nop mandatory   slowreceiver    change_l     %s confirm_l   change_r    confirm_r   initcookie 0x   %02x    ndp_count   ack_vector0 0x  ack_vector1 0x  data_dropped 0x timestamp %u    timestamp_echo %u   elapsed_time    %u  data_checksum   CCID option %d   %u unknown_opt %d  [|dccp] ,   unspecified closed  aborted no_connection   packet_error    option_error    mandatory_error connection_refused  bad_service_code    too_busy    bad_init_cookie aggression_penalty  reserved    ccid    allow_short_seqno   sequence_window ecn_incapable   ack_ratio   send_ack_vector send_ndp_count  minimum checksum coverage   check data checksum client ID   server ID   IA_NA   IA_TA   IA_ADDR option request  preference  elapsed time    relay message   authentication  server unicast  status code rapid commit    user class  vendor class    vendor-specific info    interface ID    reconfigure message reconfigure accept  SIP servers domain  SIP servers address DNS DNS name    IA_PD   IA_PD prefix    NTP Server  lifetime    NIS server  NIS+ server NIS domain name NIS+ domain name    BCMCS domain name   BCMCS server    Geoconf Civic   Remote ID   Subscriber ID   Client FQDN opt_%d  solicit advertise   request confirm renew   rebind  reply   release decline reconfigure inf-req relay-fwd   relay-reply dhcp6    %s  msgtype-%u  %s (    msgtype-%u (   xid=%x  linkaddr=%s  peeraddr=%s    [|dhcp6]    INVALID code    success unspec failure  no addresses    no binding  not on-link use multicast   no prefixes  (%s     ?)  hwaddr/time type %u time %u    %02x     vid     hwaddr type %u      type %d)    %d)     (   proto: delayed  proto: reconfigure  proto: %d  , alg: HMAC-MD5 , alg: %d   , RDM: mono , RDM: %d   , RD:    %04x    ?? , realm:    , key ID: %08x  , HMAC-MD5:  %08x    reconfig-key    type: HMAC-MD5  type: ??    value:  for renew)  for inf-req)    for ???(%02x)) code%d   %s)    [|dhcp6ext]  pltime:%lu vltime:%lu   IAID:%lu T1:%lu T2:%lu  %s/%d  reserved-ntype?     l2rout  l1rout  endnode     verif   nomcast     blo     reason-%d   %s  [|decnet]   [pad:%d]    future-version-decnet   init    src %sblksize %d vers %d eco %d ueco %d hello %d    verification    src %s fcnval %o    test    src %s data %o  lev-1-routing   src %s  {ids %d-%d cost %d hops %d}     lev-2-routing   {areas %d-%d cost %d hops %d}   router-hello    vers %d eco %d ueco %d src %s blksize %d pri %d hello %d    endnode-hello   vers %d eco %d ueco %d src %s blksize %d rtr %s hello %d data %o    unknown control message unknown message flags under mask    %s > %s %d  RQR     RTS     IE  %d hops     data %d>%d  nak %d  ack %d  onak %d     oack %d     seg %d  intr    nakdat %d   ackdat %d   link-service %d>%d  dat seg count %d    donotsend-data  send-data   reserved-fcmod? %x  intr req count %d   reserved-fcval-int? %x  reserved-subtype? %x %d > %d    data-ack %d>%d  ils-ack %d>%d   conn-ack %d reserved-acktype? %x %d > %d    conn-initiate   retrans-conn-initiate   %d>%d   seg     msg     ver 3.2     ver 3.1     ver 4.0     ver 4.1     segsize %d  conn-confirm %d>%d  optlen %d   disconn-initiate %d>%d  disconn-confirm %d>%d   reserved-ctltype? %x %d > %d    reserved-type? %x %d > %d   dnnum_string: malloc    %d.%d   object rejected connect insufficient resources  unrecognized node name  node is shutting down   unrecognized object invalid object name format  object too busy protocol error discovered   third party abort   user abort  invalid node name format    local node shutting down    insufficient local resources    insufficient remote user resources  invalid access control information  bad ACCOUNT information no response from object node unreachable    no link terminate   disconnect complete bad image data in connect   cryptographic service mismatch  <ELT %d>    <LOOP>  \[x %02x    %1x /%d]    .../%d] Type%d   %s (Class %d)   (QU)    (QM)   ?    (Cache flush)   %u  %d  "  :%d %d %d    %u(bad plen)    %u %s   UDPsize=%u  OK  fudge=%u    maclen=%u   origid=%u   error=%u    otherlen=%u    *       -   |   $   +   %d%s%s%s%s%s%s   [%dq]   q:  %d/%d/%d    (%d)    ns:     ar:    %d%s%s%s     [b2&3=0x%x]     [%da]   [%dn]   [%dau] [|domain]   %   IN  CHAOS   HS  ANY A   NS  MD  MF  CNAME   SOA MB  MG  MR  NULL    WKS PTR HINFO   MINFO   MX  TXT RP  AFSDB   X25 ISDN    RT  NSAP    NSAP_PTR    SIG KEY PX  GPOS    AAAA    LOC NXT EID NIMLOC  SRV ATMA    NAPTR   KX  CERT    A6  DNAME   SINK    OPT APL DS  SSHFP   IPSECKEY    RRSIG   NSEC    DNSKEY  SPF UINFO   UID GID UNSPEC  UNSPECA TKEY    TSIG    IXFR    AXFR    MAILB   MAILA    inv_q   stat    op3     notify  update  op6     op7     op8     updataA     updateD     updateDA    updateM     updateMA    zoneInit    zoneRef     FormErr     ServFail    NXDomain    NotImp  Refused     YXDomain    YXRRSet     NXRRSet     NotAuth     NotZone     Resp11  Resp12  Resp13  Resp14  NoChange    Probe   [|}    
	  genid %u    
	neighbor %s    Report  [|]    
	Mask %s   
	  [Truncated Report]  
	  %s metric %d     Ask-neighbors(old)  Neighbors(old)  [%s ->  %s, (%d/%d)]    Ask-neighbors2  Neighbors2  (v %d.%d):  [%s ->     %s (%d/%d   /tunnel /srcrt  /querier    /disabled   /down   )]   Prune   src %s grp %s   timer   Graft   Graft-ACK   [type %d]  [|dvmrp]    ):  ,   [|enc]  (unprotected):  %s%s    authentic   confidential    SPI 0x%08x:     int ext     [|egp]  egp:    [version %d]    as:%d seq:%d     acquire     %s  [status %d]     hello:%d poll:%d   [status %d] [code %d]    state:%s   [reach code %d]  poll    net:%s  update  unsolicited     %s int %d ext %d    %s %s  %sd%d:  ,   [|]  error   [reason %d]    [type %d]   unspecified bad_EGP_header_format   bad_EGP_data_field_format   reachability_info_unavailable   excessive_polling_rate  no_response unsupported_version indeterminate   up  down    hello   i-h-u   active_mode passive_mode    insufficient_resources  administratively_prohibited going_down  parameter_violation protocol_violation  request confirm refuse  cease   cease_ack   EAP code=%u id=%u length=%u     EIGRP version %u packet not supported   unknown (%u)    EIGRP %s, length: %u    unknown, type: %u   none    
	EIGRP v%u, opcode: %s (%u), chksum: 0x%04x, Flags: [%s]
	seq: 0x%08x, ack: 0x%08x, AS: %u, length: %u 
	      Unknown 
	  %s TLV (0x%04x), length: %u 
	    holdtime: %us, k1 %u, k2 %u, k3 %u, k4 %u, k5 %u  
	    IOS version: %u.%u, EIGRP version %u.%u   
	    illegal prefix length %u  
	    IPv4 prefix: %15s/%u, nexthop:    self    %s  
	      delay %u ms, bandwidth %u Kbps, mtu %u, hop %u, reliability %u, load %u unknown 
	      origin-router %s, origin-as %u, origin-proto %s, flags [0x%02x], tag 0x%08x, metric %u  
	    Cable-range: %u-%u, Router-ID %u  
	     Cable-Range: %u-%u, nexthop:     %u.%u   
	      origin-router %u, origin-as %u, origin-proto %s, flags [0x%02x], tag 0x%08x, metric %u  
		 packet exceeded snapshot    Update  Query   Reply   Hello   IPX SAP Probe   Init    Conditionally Received  General Parameters  Authentication  Sequence    Software Version    Next Multicast Sequence IP Internal routes  IP External routes  AppleTalk Internal routes   AppleTalk External routes   AppleTalk Cable setup   IPX Internal routes IPX External routes IGRP    EIGRP   Static  RIP OSPF    IS-IS   EGP BGP IDRP    Connected   invalid hex digit %c in espsecret
   	  file    r   @   print_esp: failed to decode spi# %s
    print_esp: can not decode IP# %s
   failed to decode espsecret: %s
 -hmac96 -cbc    failed to find cipher algo %s
  secret is too big: %d
  ran out of memory to allocate sa structure  3des    DES-EDE3-CBC    [|ESP]  ESP(spi=0x%08x  ,seq=0x%x)  , length %u 
,  espkey init failed  :   %s > %s , 802.3 Unknown , ethertype %s (0x%04x) Unknown Ethertype (0x%04x)  , %s    , length %u:    , CFI       et1     (NOV-ETHII)     vlan %u, p %u%s,    0x%04x  ethertype %s,   :   [|ether]    IPv4    MPLS unicast    MPLS multicast  IPv6    802.1Q  VMAN    PUP ARP Reverse ARP NS  Sprite  Trail   MOP DL  MOP RC  DN  LAT SCA Lanbridge   DEC DNS DEC DTS VEXP    VPROD   Appletalk   Appletalk ARP   IPX PPP Slow Protocols  PPPoE D PPPoE S EAPOL   Jumbo   Loopback    OSI GRE-OSI  @ `P0pH(hX8xD$dT4tL,l\<|B"bR2r
J*jZ:zF&fV6vN.n^>~A!aQ1q	I)iY9yE%eU5u
M-m]=}C#cS3sK+k[;{G'gW7wO/o_?[|fddi] %02x %s %s %d:  %s %s %d:   void    nrt     rt  info    nsa     beacon  claim   mac%1x  smt%1x  async%1x    sync%1x     imp_async%1x    imp_sync%1x     %02x    (LLC %s)    <SMT printer not yet implemented>   New,        Active  Inactive    unknown %s (%u) ,   TX Seq: %3d, RX Seq: %3d    Invalid DLCI IE DLCI %u: status %s%s    Q.922, DLCI %u, length %u:  none    Q.922, hdr-len %u, DLCI %u, Flags [%s], NLPID %s (0x%02x), length %u:   Q.922, hdr-len %u, DLCI %u, Flags [%s], cisco-ethertype %s (0x%04x), length %u:     Q.933,  ANSI    CCITT   [|q.933]    %s  %s, codeset %u  , Call Ref: 0x%02x  unknown message , %s (0x%02x), length %u    unknown message 0x%02x  , %s    
[|q.933]   , length %u 
	%s IE (0x%02x), length %u:    
	  
	      Interface   End-to-End  UI %02x!    Pad!    No pad!     FRF.15, seq 0x%03x, Flags [%s],%s Fragmentation, length %u  [|fr]   Q.922, invalid address  Unknown Message (0x%02x)    FRF.16 Control, Flags [%s], %s, length %u   Unknown 
	IE %s (%u), length %u:    0x%08x  FRF.16 Frag, seq %u, Flags [%s],    FRF.16 Frag, seq %u, Flags [%s] [|mfr]  Full Status Link verify Async PVC Status    ANSI Report Type    ANSI Link Verify    ANSI PVC Status CCITT Report Type   CCITT Link Verify   CCITT PVC Status    ESC to National Alert   Call proceeding Connect Connect ACK Progress    Setup   Disconnect  Release Release Complete    Restart Restart ACK Status Reply    Status Enquiry  Bundle ID   Link ID Magic Number    Timestamp   Vendor Extension    Cause   Add Link    Add Link ACK    Add Link Reject Hello   Hello ACK   Remove Link Remove Link ACK Begin   End Control C!  DE  BECN    FECN    sdlcore frag (0x%08x:%d|%ld)    frag (%d|%ld)   [|frag] none    , Flags [%s]    , call %d   , seq %u    , ack %u    , no-payload    unknown , proto %s (0x%04x) , length %u :   
	  gre-proto-0x%x  [|gre]  *       , badoffset=%u  , badlength=%u  , badoff/len=%u/%u   %s%s    %s%x   , (rtaf=ip  )   , (rtaf=asn , (rtaf=0x%x)   , sum 0x%x  , off 0x%x  , key=0x%x  GREv%u   ERROR: unknown-version checksum present    routing present key present sequence# present   source routing present  recursion count ack present HSRPv%d unknown (%d)    %s  %d:     Unknown (%d)    state=%s    group=%d    [reserved=%d!]  addr=%s  hellotime=  holdtime=   priority=%d     auth=" [|hsrp] hello   coup    resign  initial learn   listen  speak   standby active  %02u:%02u:%02u.%03u reply   request ip reassembly time exceeded time exceeded in-transit    in      echo %s, id %u, seq %u  %s protocol %d unreachable  %s tcp port %s unreachable  %s udp port %s unreachable  %s protocol %d port %d unreachable  %s unreachable - need to frag (mtu %d)  %s unreachable - need to frag   #%d %%s unreachable redirect-#%d %%s to net %%s router advertisement     lifetime   %u  %u:%02u %u:%02u:%02u     %d:     [size %d]   {%s %u}    time exceeded-#%d   parameter problem - code %d parameter problem - octet %d    address mask is 0x%08x  time stamp query id %u seq %u   time stamp reply id %u seq %u: org %s   , recv %s   , xmit %s   type-#%d    ICMP %s, length %u   (wrong icmp cksum %x (->%x)!)  
	  
	MPLS extension v%u     packet not supported   , checksum 0x%04x (%scorrect), length %u    unknown 
	  %s Object (%u), Class-Type: %u, length %u   
	    label %u, exp %u  , [S]   , ttl %u    
	      [|icmp] net %s unreachable  host %s unreachable %s unreachable - source route failed    net %s unreachable - unknown    host %s unreachable - unknown   %s unreachable - source host isolated   net %s unreachable - admin prohibited   host %s unreachable - admin prohibited  net %s unreachable - tos prohibited host %s unreachable - tos prohibited    host %s unreachable - admin prohibited filter   host %s unreachable - host precedence violation host %s unreachable - precedence cutoff redirect %s to net %s   redirect %s to host %s  redirect-tos %s to net %s   redirect-tos %s to host %s  echo reply  source quench   echo request    router solicitation time stamp request  time stamp reply    information request information reply   address mask request    MPLS Stack Entry    Extended Payload    %02x    T       R   A   S   P   V   router renum: command   router renum: result    router renum: sequence number reset router renum: code-#%d  , seq=%u    %s%s%s%s%s, seg=%u, maxdelay=%u rsvd=0x%x   
	  match(  add change  setglobal   #%u ,ord=%u ,min=%u ,max=%u ,%s/%u  ,?/%u   use(    %s%s,   mask=0x%x,  raflags=0x%x,   vltime=infty,   vltime=%u,  pltime=infty,   pltime=%u,  %s/%u/%u    ?/%u/%u [|icmp6]    , " ??? max resp delay: %d  addr: %s    badlen  infinity    bad option length   unknown 
	  %s option (%u), length %u (%u):     none    %u  %s/%u%s, Flags [%s], valid time %ss , pref. time %ss    
	       %u%s    %us     preference %u, lifetime %u  %s/%u  , pref=%s   , lifetime=%s   
	      [ndp opt]   C   a   G   L   [bad icmp6 cksum %x!]   [icmp6 sum ok]  unknown icmp6 type (%u) ICMP6, %s   , length %u unknown unreach code (%u)   , %s     %s  %s, source address %s  , %s tcp port %s    , %s udp port %s    , %s protocol %d port %d unreachable    , mtu %u     for %s  (reassembly)   , unknown code (%u) , errorneous - octet %u , next header - octet %u    , option - octet %u , code-#%d  , seq %u    v2   [max resp delay=%d]     [gaddr %s   sflag   robustness=%d   qqi=%d  [invalid number of sources]     {   }  , %d source(s)   unknown-version (len %u)   
	hop limit %u, Flags [%s], pref %s, router lifetime %us, reachable time %us, retrans time %us  , who has %s    , tgt is %s , Flags [%s]     to %s   who-are-you request     node information query  (  noop    supported qtypes     [%s]   DNS name    node addresses   [%s%s%s%s%s%s] , invalid len   , 03 draft  , invalid subject len   , subject=%s    , subject=DNS name  , unknown subject   [|icmp6: node information reply]     node information reply success refused , invalid length    ,    [TTL=%u]   (%d)     [%s%s%s%s%s%s%s]    [invalid len %d]   , %d group record(s)     [invalid number of groups]  [v2-report-#%d]     [invalid number of sources %d] , id 0x%04x destination unreachable packet too big  time exceeded in-transit    parameter problem   echo request    echo reply  multicast listener query    multicast listener report   multicast listener done router solicitation router advertisement    neighbor solicitation   neighbor advertisement  redirect    router renumbering  inverse neighbor solicitation   inverse neighbor advertisement  multicast listener report v2    ha discovery request    ha discovery reply  mobile router solicitation  mobile router advertisement who-are-you request who-are-you reply   node information query  node information reply  mtrace message  mtrace response unreachable route    unreachable prohibited beyond scope    unreachable address unreachable port    managed other stateful  home agent  medium  high    rsv low router  solicited   override    is_in   is_ex   to_in   to_ex   allow   block   source link-address destination link-address    prefix info redirected header   mtu advertisement interval  homeagent information   route info  onlink  auto    igmp    igmp query   v3  [invalid len %d]    [max resp time      [gaddr %s   [invalid number of sources]     {   %s  }  , %d source(s)  [|igmp]  v2  [max resp time %d]  v1  [gaddr %s]  [len %d]   igmp v1 report %s   igmp v2 report %s   igmp v3 report  , %d group record(s)     [invalid number of groups]  [v3-report-#%d]     [invalid number of sources %d] igmp leave %s   igmp dvmrp  igmp pimv1  mresp %lu: %s to %s reply-to %s  with-ttl %d    mtrace %u: %s to %s reply-to %s igmp-%d  bad igmp cksum %x! is_in   is_ex   to_in   to_ex   allow   block    *.%d.%d.%d  X%d.%d.%d.0     %d.%d.%d.0  d=%d b=%d r=%d l=%d M=%d mtu=%d in %d hops igrp:    [|igrp]    op-#%d   %s V%d edit=%d AS=%d (%d/%d/%d)     [extra bytes %d]   update  request          ^  IP%u    , wrong link-layer encapsulation    IP  [|ip]   truncated-ip %u bad-hlen %u truncated-ip - %u bytes missing!    bad-len %u  (tos 0x%x   ,ECT(1) ,ECT(0) ,CE , ttl %u    none    unknown , id %u, offset %u, flags [%s], proto %s (%u)   , length %u , options ( %s  unknown %u   [bad length %u]    [bad length %u]  TS{    [bad ptr %u]    TSONLY  TS+ADDR PRESPEC2.0  PRESPEC [bad ts type %d]    %s%d@%s  [%d hops not recorded]}     [bad ptr %u]    %s  value %u   ,   , bad cksum %x (->%x)!  )   %s > %s:    %s > %s:     ip-proto-%d     nd %d   (ipip-proto-4)  %d truncated-ip %d unknown ip %d   EOL NOP timestamp   security    RR  SSRR    LSRR    RA  traceroute  +   DF  rsvd    truncated-ip6 %u    IP6     truncated-ip6 - %u bytes missing!   class 0x%02x,   flowlabel 0x%05x,   unknown hlim %u, next-header %s (%u) payload length: %u)    %s > %s:    no next header  ip-proto-%d %d  [|ip6]  , pad1  , padn: trunc   , padn  , ui: trunc , ui: 0x%04x    , altcoa: trunc , alt-CoA: %s   , auth: trunc   , auth spi: 0x%08x  , sopt_type %d: trunc)  , sopt_type 0x%02x: len=%d  [trunc]     (pad1)  (padn: trunc)   (padn)  (rtalert: trunc)    (rtalert: invalid len %d)   (rtalert: 0x%04x)   (jumbo: trunc)  (jumbo: invalid len %d) (jumbo: %u)     (homeaddr: trunc)   (homeaddr: invalid len %d)  (homeaddr: %s   (bu: trunc) (bu: invalid len %d)    (bu:    res , sequence: %u  , lifetime: %u  (ba: trunc) (ba: invalid len %d)    (ba:    status: %u  , refresh: %u   (br: trunc) (br (type %d: trunc)    (opt_type 0x%02x: len=%d)   HBH     [|HBH]  DSTOPT  [|DSTOPT]   [|IPCOMP]   IPComp(cpi=0x%04x)  [|ipfc] %s %s %d:   (LLC %s)    %08x.%02x:%02x:%02x:%02x:%02x:%02x  ipx-sap-req ipx-sap-nearest-req  %s ipx-sap-resp    ipx-sap-nearest-resp     %s '   ' addr %s   ipx-sap-?%x [|ipx %d]   ipx-rip-req  %u/%d.%d   ipx-rip-resp    ipx-rip-?%x ipx-ncp %d  ipx-netbios %d  ipx-diags %d    ipx-nwlink-dgm %d   ipx-#%x %d  IPX     %s.%04x >   %s.%04x:    #%d         %s   [|isakmp]   [|%s]  +       %s: sa   doi=%d  situation=%u    doi=ipsec   situation= identity    %ssecrecy   %sintegrity  ident=%u   %02x    cr   len=%d  type=%s    cert    p    #%d protoid=%s transform=%d     spi=   vid d    doi=%u  proto=%u    proto=%s    spilen=%u   nspi=%u    [|attr] type=%s     type=#%d    value=  len=%d value=   nonce    n len=%d   sig hash    ke   key len=%d t    #%d id=%s   #%d id=%d  ... id   idtype=%s   doi_data=%u     protoid=%s 0    port=%d     len=%d [bad: < 4]   len=%d %s   len=%d      len=%d [bad: < 8]   len=%d %s/%u.%u.%u.%u   len=%d [bad: < 16]  len=%d [bad: < 20]  len=%d %s/0x%08x%08x%08x%08x    len=%d %s-%s    len=%d [bad: < 32] E   C   [|isakmp]   isakmp   %d.%d   msgid   cookie     ->   I   R   ?   %s [%s%s]   [encrypted %s]  (len mismatch: isakmp %u/ip %u)     phase %d/others     phase %d   CONNECTED   RESERVED    en  dis n    proto=%d    orig=( replay detection %sabled    isakmp-nat-keep-alive   NONESP-encap:   UDP-encap:  enc 1des    idea    blowfish    rc5 3des    cast    aes md5 sha1    tiger   sha2-256    sha2-384    sha2-512    auth    preshared   dss rsa sig rsa enc rsa enc revised group desc  modp768 modp1024    EC2N 2^155  EC2N 2^185  group type  MODP    ECP EC2N    group prime group gen1  group gen2  group curve A   group curve B   lifetype    sec kb  lifeduration    prf keylen  field   order   life    enc mode    tunnel  transport   hmac-md5    hmac-sha1   1des-mac    keyed   rounds  dictsize    privalg none    base    ident   agg inf oakley-quick    oakley-newgroup ipsec-ah    ipsec-esp   ipcomp  INVALID-PAYLOAD-TYPE    DOI-NOT-SUPPORTED   SITUATION-NOT-SUPPORTED INVALID-COOKIE  INVALID-MAJOR-VERSION   INVALID-MINOR-VERSION   INVALID-EXCHANGE-TYPE   INVALID-FLAGS   INVALID-MESSAGE-ID  INVALID-PROTOCOL-ID INVALID-SPI INVALID-TRANSFORM-ID    ATTRIBUTES-NOT-SUPPORTED    NO-PROPOSAL-CHOSEN  BAD-PROPOSAL-SYNTAX PAYLOAD-MALFORMED   INVALID-KEY-INFORMATION INVALID-ID-INFORMATION  INVALID-CERT-ENCODING   INVALID-CERTIFICATE CERT-TYPE-UNSUPPORTED   INVALID-CERT-AUTHORITY  INVALID-HASH-INFORMATION    AUTHENTICATION-FAILED   INVALID-SIGNATURE   ADDRESS-NOTIFICATION    NOTIFY-SA-LIFETIME  CERTIFICATE-UNAVAILABLE UNSUPPORTED-EXCHANGE-TYPE   UNEQUAL-PAYLOAD-LENGTHS RESPONDER-LIFETIME  REPLAY-STATUS   INITIAL-CONTACT pkcs7   pgp dns x509sign    x509ke  kerberos    crl arl spki    x509attr    IPv4    IPv4net IPv6    IPv6net FQDN    user FQDN   IPv4range   IPv6range   ASN1 DN ASN1 GN keyid   ike (reserved)  sha 1des-iv64   3idea   1des-iv32   rc4 null    oui deflate lzs External    Internal    , Default Metric: %d, %s    
		  Delay Metric: %d, %s   
		  Expense Metric: %d, %s 
		  Error Metric: %d, %s       ,   incorrect   correct CLNP    version %d packet not supported unknown (%u)    %s%s > %s, %s, length %u    %slength %u 
	%s PDU, hlen: %u, v: %u, lifetime: %u.%us, Segment PDU length: %u, checksum: 0x%04x   (unverified)    (%s)    none    
	Flags [%s]    
	source address (length %u): %s
	dest   address (length %u): %s    
	Data Unit ID: 0x%04x, Segment Offset: %u, Total PDU Length: %u    , opt (%d) too long Unknown 
	  %s Option #%u, length %u, value:    Unknown Option %u   %s %s    Bad NSAP offset (0)     Bad NSAP offset (past end of option)   
	    NSAP address goes past end of option  
	    NSAP address (length %u): %s  0x%1x   Reserved    
	    Format Code: %s   
	    QoS Flags [%s]    
	    Format Code: %s, Security-Level %u    
	    Class: %s Error (0x%01x), %s (0x%01x) padding data    
	      
	-----original packet-----
	   
	  undecoded non-header data, length %u    [|clnp] %02x    .%02x   -%02x   down    up  , sub-TLVs present  %sIPv4 prefix: bad bit length %u    
	          %sIPv6 prefix: bad bit length %u    %sIPv4 prefix: %15s/%u  %sIPv6 prefix: %s/%u    , Distribution: %s, Metric: %u  , %s%s   (%u)   %s      unknown %s%s subTLV #%u, length: %u , 0x%08x (=%u)  , 0x%08x%08x    
		     %spacket exceeded snapshot  %sIS Neighbor: %s   , Metric: %d    , 0x%08x    , %s    , %.3f Mbps %s  TE-Class %u: %.3f Mbps  %sBandwidth Constraints Model ID: %s (%u)   %s  Bandwidth constraint CT%u: %.3f Mbps    , %u    , %s, Priority %u   %s  Interface Switching Capability:%s   , LSP Encoding: %s  %s  Max LSP Bandwidth:  %s    priority level %d: %.3f Mbps  , %ssub-TLVs present    no  Reserved for IETF Consensus %s%s     Topology (0x%03x), Flags: [%s] Overload bit set,   default     delay   expense     error   P bit set,  numbered    unnumbered  |OSI    OSI NLPID %s (0x%02x):  
	  ES-IS   bad pkt!    no header at all!    nlpid 0x%02x packet not supported   version %d packet not supported     length indicator(%d) > PDU size (%d)!   length indicator < min PDU size %d:    %02X    unknown type (%u)   %s%s, length %u unknown type: %u    %slength %u
	%s (%u)    , v: %u%s   unsupported , checksum: 0x%04x  , holding time: %us, length indicator: %u   , bad redirect/li   
	  %s  
	  Number of Source Addresses: %u  , bad esh/li    
	  NET (length: %u): %s    , bad ish/li    %us %s (0x%02x) IS-IS   system ID length of %d is not supported bad packet -- 255 areas bad packet -- illegal sys-ID length (%u)    unknown PDU-Type %u , src-id %s , lan-id %s, prio %u    , lsp-id %s, seq 0x%08x, lifetime %5us  , length %u unknown, type %u    
	%s, hlen: %u, v: %u, pdu-v: %u, sys-id-len: %u (%u), max-area: %u (%u)    , bogus fixed header length %u should be %lu    unknown circuit type 0x%02x 
	  source-id: %s,  holding time: %us, Flags: [%s]  
	  lan-id:    %s, Priority: %u, PDU length: %u 
	  source-id: %s, holding time: %us, Flags: [%s]   
	  circuit-id: 0x%02x, PDU length: %u  
	  lsp-id: %s, seq: 0x%08x, lifetime: %5us
	  chksum: 0x%04x    (purged)    (%s)   , PDU length: %u, Flags: [ %s   %s  ATT bit set,    Unknown(0x%x)   %s ]    
	  source-id:    %s, PDU length: %u    
	  start lsp-id: %s    
	  end lsp-id:   %s    - bogus fixed header length %u should be %lu    
		 packet exceeded snapshot (%ld) bytes    
	    %s TLV #%u, length: %u    
	      Area address (length: %u): %s   
	      SNPA: %s    
	      LAN address length 0 bytes (invalid)    
	      LAN address length %u bytes     
		IS Neighbor: %s  bogus virtual flag 0x%02x   
	      %s  
	      IS Neighbor: %s 
	      ES Neighbor: %s short IPv4 Reachability (%d vs %lu) %sIPv4 prefix: %s mask %s   , Distribution: %s, Metric: %u, %s  %s  Delay Metric: %u, %s    %s  Expense Metric: %u, %s  %s  Error Metric: %u, %s    
	      IPv6 interface address: %s  unknown Authentication type 0x%02x  
	      %s:     , (malformed subTLV)    
		     
	      Adjacency State: %s (%u)    
	      Extended Local circuit-ID: 0x%08x   
	      Neighbor System-ID: %s  
	      Neighbor Extended Local circuit-ID: 0x%08x  
	      NLPID(s):   
	      Traffic Engineering Router ID: %s   
	      IPv4 interface address: %s  
	      Hostname:   , Flags: [%s]   
	      IPv4 neighbor address: %s   
	      Link-ID: 0x%08x 
	      lsp-id: %s  , seq: 0x%08x   , lifetime: %5ds    , chksum: 0x%04x    
	      checksum: 0x%04x    
	      Flags [%s]  , Remaining holding time %us    , for %s    Unknown (0x%02x)    
	      Inter-Domain Information Type: %s   AS Number: %u   
	      LSP Buffersize: %u  
	      Metric Block    
		Address: prefix length %u < 2    
		Address: %s/%u   
	      Sequence number: %u 
	      Vendor: %s (%u) 
		 
	      %u straggler bytes  [|isis] 
		 packet exceeded snapshot    %slength: %u    OSI NLPID 0x%02x unknown    Error Report    MD  Data    Echo Request    Echo Response   Segmentation permitted  more Segments   request Error Report    Discard Reason  Priority    QoS Maintenance Security    Source Routing  Route Recording Padding partial complete    source routing  recording of route in progress  Source Address Specific Destination Address Specific    Globally unique reserved    sequencing vs. delay    congested   delay vs. cost  error vs. delay error vs. cost  General Address Source Routeing Lifetime    PDU Discarded   Reassembly  redirect    ESH ISH Protocols supported ES Configuration Time   Addressk Mask   SNPA Mask   L1 Lan IIH  L2 Lan IIH  p2p IIH L1 LSP  L2 LSP  L1 CSNP L2 CSNP L1 PSNP L2 PSNP Level 1 only    Level 2 only    Level 1, Level 2    Unused 0x0 (invalid)    L1 IS   Unused 0x2 (invalid)    L2 IS   Area address(es)    IS Reachability ES Neighbor(s)  Partition DIS   Prefix Neighbors    IS Neighbor(s)  IS Neighbor(s) (variable length)    LSP entries Authentication  Checksum    LSP Buffersize  Extended IS Reachability    IS Alias ID DECnet Phase IV Lucent Proprietary  IPv4 Internal Reachability  IPv4 External Reachability  Inter-Domain Information Type   IPv4 Interface address(es)  IPv4 authentication (deprecated)    Traffic Engineering Router ID   Extended IPv4 Reachability  Shared Risk Link Group  Nortel Proprietary  Hostname    Restart Signaling   Multi Topology IS Reachability  Multi Topology  IPv6 Interface address(es)  Multi-Topology IPv4 Reachability    IPv6 reachability   Multi-Topology IP6 Reachability Point-to-point Adjacency State  Hello PDU Sequence Number   Vendor Private  IsNotVirtual    IsVirtual   simple text password    HMAC-MD5 password   Routing Domain private password Up  Initializing    Down    Restart Request Restart Acknowledgement Suppress adjacency advertisement    Routing-Domain Specific AS Number Tag   Administrative groups   Link Local/Remote Identifier    Link Remote Identifier  IPv4 interface address  IPv4 neighbor address   Maximum link bandwidth  Reservable link bandwidth   Unreserved bandwidth    Traffic Engineering Metric  Link Protection Type    Interface Switching Capability  Bandwidth Constraints (old) Bandwidth Constraints   Reserved for cisco specific extensions  Reserved for future expansion   32-Bit Administrative tag   64-Bit Administrative tag   Management Prefix Color IPv4 unicast    In-Band Management  IPv6 unicast    Multicast   Development, Experimental or Proprietary    sub-TLVs present    ATT bit set Reason not specified    Protocol procedure error    Incorrect checksum  PDU discarded due to congestion Header syntax error (cannot be parsed)  Segmentation needed but not permitted   Incomplete PDU received Duplicate option    Destination address unreachable Destination address unknown Unspecified source routeing error   Syntax error in source routeing field   Unknown address in source routeing field    Path not acceptable Lifetime expired while data unit in transit Lifetime expired during reassembly  Unsupported option not specified    Unsupported protocol version    Unsupported security option Unsupported source routeing option  Unsupported recording of route option   Reassembly interference no magic-number found!  --- %3s     ext-len %u,     no-L2-hdr,  no IP-hdr found!    %s-PIC, cookie-len %u   , cookie 0x %02x    :   control-word 0x%08x     Unknown Juniper DLT_ type %u:   hlen %u, proto 0x%04x,  [|juniper_hdr], length %u   Bundle-ID %u,   unknown protocol 0x%04x, length %u  Bundle-ID %u:   unknown ethertype 0x%04x    ES Invalid type %u, length %u   Unknown ES SA, index %u, ttl %u type %s (%u), length %u
    proto %s (%u), vlan %u:     unknown GGSN proto (%u) service-id %u flags 0x%02x service-set-id 0x%04x iif %u:    service-id %u, iif %u, pkt-type %u:     Null    IPv4    IPv6    In  Out ATM1    ATM2    MLPPP   MLFR    MFR PPPoE   PPPoE ATM   GGSN    MONITOR AS  ES  ESP ENCR-AUTH   ESP ENCR-AH AUTH    ESP AUTH    AH AUTH ESP ENCR    le  be   v%d     %s %s:      %dmin  v%d      (%d)    %s     (unknown)    v5 KDC_REQUEST KDC_REPLY   APPL_REQUEST    APPL_REQUEST_MUTUAL ERR_REPLY   PRIVATE SAFE    APPL_ERR    DIE OK  NAME_EXP    SERVICE_EXP AUTH_EXP    PKT_VER NAME_MAST_KEY_VER   SERV_MAST_KEY_VER   BYTE_ORDER  PRINCIPAL_UNKNOWN   PRINCIPAL_NOT_UNIQUE    NULL_KEY    %02x     l2tp:   l2f:    Unknown Version, neither L2F(1) nor L2TP(2)    (%u/    %u) Ns=%u,  Nr=%u    Length %u larger than packet    Length %u smaller than header length    No length   ZLB    VENDOR%04x: ATTR%04x    AVP-#%u %s  ??? MSGTYPE-#%u %u  /%u %u.%u   , %02x  %lu obsolete    AuthType-#%u    CRCErr=%u   FrameErr=%u     HardOver=%u     BufOver=%u  Timeout=%u  AlignErr=%u     send=%08x   recv=%08x   %04x,   %04x    Direction-#%u   |...     {  MSGTYPE RESULT_CODE PROTO_VER   FRAMING_CAP BEARER_CAP  TIE_BREAKER FIRM_VER    HOST_NAME   VENDOR_NAME ASSND_TUN_ID    RECV_WIN_SIZE   CHALLENGE   Q931_CC CHALLENGE_RESP  ASSND_SESS_ID   CALL_SER_NUM    MINIMUM_BPS MAXIMUM_BPS BEARER_TYPE FRAMING_TYPE    PACKET_PROC_DELAY   CALLED_NUMBER   CALLING_NUMBER  SUB_ADDRESS TX_CONN_SPEED   PHY_CHANNEL_ID  INI_RECV_LCP    LAST_SENT_LCP   LAST_RECV_LCP   PROXY_AUTH_TYPE PROXY_AUTH_NAME PROXY_AUTH_CHAL PROXY_AUTH_ID   PROXY_AUTH_RESP CALL_ERRORS ACCM    RANDOM_VECTOR   PRIVATE_GRP_ID  RX_CONN_SPEED   SEQ_REQUIRED    PPP_DISCON_CC   SCCRQ   SCCRP   SCCCN   StopCCN HELLO   OCRQ    OCRP    OCCN    ICRQ    ICRP    ICCN    CDN WEN SLI Reserved    Textual CHAP    PAP No Auth MS-CHAPv1   global error    at peer at local    [|lane] opcode-#%u  lec: proto %x vers %x %s    lecid:%x %s %s %d:  lecid:%x %s %s %s %d:   (LLC %s)    configure request   configure response  join request    join response   ready query ready indication    register request    register response   unregister request  unregister response ARP request ARP response    flush request   flush response  NARP request    topology request    do  don't   , Request for targeted Hellos       Enabled Disabled    no  Fatal error Advisory Notification   No  Don't   Sequence Numbered Label All Labels  ignore  continue processing Link    Targeted    Unsolicited On Demand   Unknown 
	    %s TLV (0x%04x), length: %u, Flags: [%s and %s forward if unknown]    
	      Hold Time: %us, Flags: [%s Hello%s] 
	      IPv4 Transport Address: %s  
	      IPv6 Transport Address: %s  
	      Sequence Number: %u 
	      Address Family:     IPv4, addresses:     %s IPv6, addresses:    
	      Version: %u, Keepalive: %us, Flags: [Downstream %s, Loop Detection %s]  
	      %s FEC (0x%02x) : IPv4 prefix %s    : IPv6 prefix %s    : %s, %scontrol word, group-ID %u, VC-ID %u, VC-info-length: %u 
		Interface Parameter: %s (0x%02x), len %u : %u    :   none    
		  Control Channels (0x%02x) = [%s]   
		  CV Types (0x%02x) = [%s]   
		     
	      Label: %u   
	      Status: 0x%02x, Flags: [%s and %s forward]  , causing Message ID: 0x%08x    
	      Flags: [%sReconnect, %sSave State, %sAll-Label Protection, %s Checkpoint, %sRe-Learn State] , Reconnect Timeout: %ums   , Recovery Time: %ums   
	          
		 packet exceeded snapshot    
	  %sLDP, Label-Space-ID: %s:%u, pdu-length: %u    
	  %s Message (0x%04x), length: %u, Message ID: 0x%08x, Flags: [%s if unknown] 
	      %sLDP version %u packet not supported   FEC Address List    Hop Count   Path Vector Generic Label   ATM Label   Frame-Relay Label   Status  Extended Status Returned PDU    Returned Message    Common Hello Parameters IPv4 Transport Address  Configuration Sequence Number   IPv6 Transport Address  Common Session Parameters   ATM Session Parameters  Frame-Relay Session Parameters  Fault-Tolerant Session Parameters   Label Request Message ID    Wildcard    Prefix  Host address    Martini VC  MTU Description VCCV    PWE3 control word   MPLS Router Alert Label MPLS inner label TTL = 1    ICMP Ping   LSP Ping    BFD Notification    Hello   Initialization  Keepalive   Address Address Withdraw    Label Mapping   Label Request   Label Withdraw  Label Release   Label Abort Request         ethertype   pid Unknown oui %s (0x%06x), %s %s (0x%04x):    [|snap] [|llc]  IPX 802.3:  LLC, dsap %s (0x%02x) %s, ssap %s (0x%02x) %s   , ctrl 0x%02x:  , ctrl 0x%04x:  IPX 802.2:  Unknown DSAP 0x%02x %s  %s > %s %s  Unknown SSAP 0x%02x %s > %s     %s %s > %s %s   %02x    ?   Unnumbered, %s, Flags [%s], length %u   : %02x %02x Supervisory, %s, rcv seq %u, Flags [%s], length %u  Information, send seq %u, rcv seq %u, Flags [%s], length %u Null    Global  802.1B I    802.1B G    IP  SNA ProWay NM   STP RS511   ISO8208 ProWay  SNAP    IPX NetBeui OSI Individual  Group   Command Response    Poll    Final   ui  test    xid ua  disc    dm  sabme   frmr    Receiver Ready  Receiver not Ready  Reject  CDP VTP DTP Ethernet + FCS  Ethernet w/o FCS    802.4 + FCS 802.4 w/o FCS   Token Ring + FCS    Token Ring w/o FCS  FDDI + FCS  FDDI w/o FCS    802.6 + FCS 802.6 w/o FCS   BPDU        non-    Non-allocated   Allocated   Receive Transmit    LMP version %u packet not supported unknown (%u)    LMPv%u %s Message, length: %u   unknown, type: %u   none    
	LMPv%u, msg-type: %s, Flags: [%s], length: %u Unknown 
	  %s Object (%u), Class-Type: %s (%u) Flags: [%snegotiable], length: %u   
	    Control Channel ID: %u (0x%08x)   
	    IPv4 Link ID: %s (0x%08x) 
	    IPv6 Link ID: %s (0x%08x) 
	    Link ID: %u (0x%08x)  
	    Message ID: %u (0x%08x)   
	    Message ID Ack: %u (0x%08x)   
	    Node ID: %s (0x%08x)  
	    Hello Interval: %u
	    Hello Dead Interval: %u   
	    TxSeqNum: %u
	    RcvSeqNum: %u   
	    Flags: [%s]   
	    Local Link-ID: %s (0x%08x) 			
	    Remote Link-ID: %s (0x%08x)   
	    Local Interface ID: %s (0x%08x) 			
	    Remote Interface ID: %s (0x%08x) 
	    Subobject, Type: %s (%u), Length: %u  
	      Switching Type: %s (%u) 
	      Encoding Type: %s (%u)  
	      Min Reservable Bandwidth: %.3f Mbps 
	      Max Reservable Bandwidth: %.3f Mbps 
	      Wavelength: %u  
	    Flags: %s 
	    Verify Interval: %u   
	    Data links: %u    
	    Encoding type: %s 
	    Verify Tranport Mechanism: %u (0x%x) %s   
	    Transmission Rate: %.3f Mbps  
	    Wavelength: %u    
	    Verify Dead Interval: %u 				
	    Verify Transport Response: %u  
	    Verify ID: %u 
	    Interface ID: %s (0x%08x) 
	    Error Code: %s    
	 Flags: %s    
	  UNI Version: %u 
	 Link Type: %s (%u)   
	 Signal Type: %s (%u) 
	 Transparency: %s 
	 Contiguous Concatenation Types: %s   
	 Minimum NCC: %u  
	 Maximum NCC: %u  
	 Minimum NVC:%u   
	 Maximum NVC:%u   
	    Local Interface ID: %s (0x%08x)   
	 Transparency Flags: %s   
	 TCM Monitoring Flags: %s 
	 Diversity: Flags: %s 
	      
		 packet exceeded snapshot    (Payload test messages capable) 
		    Active: %s (%u)  
		    Direction: %s (%u)   
		    Channel Status: %s (%u)  Config  Config ACK  Config NACK Hello   Begin Verify    Begin Verify ACK    Begin Verify NACK   End Verify  End Verify ACK  Test    Test Status Success Test Status Failure Test Status ACK Link Summary    Link Summary ACK    Link Summary NACK   Channel Status  Channel Status ACK  Channel Status Request  Channel Status Response Service Config  Service Config ACK  Service Config NACK Control Channel Down    LMP restart Control Channel ID  Node ID Link ID Interface ID    Message ID  Configuration   Verify Begin    Verify Begin ACK    Verify ID   TE Link Data Link   Error Code  Local   Remote  IPv4 Local  IPv4 Remote IPv6 Local  IPv6 Remote Unnumbered Local    Unnumbered Remote   1   2   IPv4    IPv6    Unnumbered  3   4   Fault Management Supported  Link Verification Supported Data Link Port  Allocated for user traffic  Failed link Interface Switching Type    Wavelength  Verify all links    Data link type  Signal Okay Signal Degraded Signal Fail 
		Link Verification Procedure Not supported    
		Unwilling to verify  
		Unsupported verification transport mechanism 
		Link_Id configuration error  
		Unknown object c-type    
		Unacceptable non-negotiable LINK_SUMMARY parameters  
		Renegotiate LINK_SUMMARY parameters  
		Invalid TE-LINK Object   
		Invalid DATA-LINK Object 
		Unknown TE-LINK Object c-type    
		Unknown DATA-LINK Object c-type  RSVP Supported  LDP Supported   Path/VC Overhead Transparency Supported Line/MS Overhead Transparency Supported Section/RS Overhead Transparency Supported  Contiguous Concatenation Types Supported    Standard SOH/RSOH Transparency Supported    Standard LOH/MSOH Transparency Supported    Transparent Tandem Connection Monitoring Supported  Node Diversity Supported    Link Diversity Supported    SRLG Diversity Supported    LSP-PING version %u packet not supported    unknown (%u)    LSP-PINGv%u, %s, seq %u, length: %u unknown 
	LSP-PINGv%u, msg-type: %s (%u), length: %u
	  reply-mode: %s (%u) 
	  Return Code: %s %u (%u)
	  Return Subcode: (%u) 
	  Return Code: %s (%u)
	  Return Subcode: (%u)    
	  Sender Handle: 0x%08x, Sequence: %u 
	  Sender Timestamp:   Receiver Timestamp:     no timestamp    
	  ERROR: TLV %u bogus size %u Unknown 
	  %s TLV (%u), length: %u 
	    %s subTLV (%u), length: %u    
	      %s/%u   
	      %s/%u, sender-id %s 
	      tunnel end-point %s, tunnel sender %s, lsp-id 0x%04x
	      tunnel-id 0x%04x, extended tunnel-id %s 
	      RD: %s, %s/%u   
	      RD: %s, Sender CE-ID: %u, Receiver CE-ID: %u
	      Encapsulation Type: %s (%u) 
	      Remote PE: %s
	      VC-ID: 0x%08x, Encapsulation Type: %s (%u) 
	      Sender PE: %s, Remote PE: %s
	      VC-ID: 0x%08x, Encapsulation Type: %s (%u)  
	          
	    MTU: %u, Address-Type: %s (%u)    
	    Downstream IP: %s
	    Downstream Interface IP: %s    
	    Downstream IP: %s
	    Downstream Interface Index: 0x%08x 
	    BFD Discriminator 0x%08x  
	      
		 packet exceeded snapshot    MPLS Echo Request   MPLS Echo Reply Do not reply    Reply via an IPv4/IPv6 UDP packet   Reply via an IPv4/IPv6 UDP packet with Router Alert Reply via application level control channel No return code or return code contained in the Error Code TLV   Malformed echo request received One or more of the TLVs was not understood  Replying router is an egress for the FEC at stack depth Replying router has no mapping for the FEC at stack depth   Reserved    Label switched at stack-depth   Label switched but no MPLS forwarding at stack-depth    Mapping for this FEC is not the given label at stack depth  No label entry at stack-depth   Protocol not associated with interface at FEC stack depth   Target FEC Stack    Downstream Mapping  Pad Error Code  BFD Discriminator   Vendor Enterprise Code  LDP IPv4 prefix LDP IPv6 prefix RSVP IPv4 Session Query RSVP IPv6 Session Query VPN IPv4 prefix VPN IPv6 prefix L2 VPN endpoint L2 circuit ID (old) L2 circuit ID   BGP labeled IPv4 prefix BGP labeled IPv6 prefix IPv4    IPv6    Unnumbered  %02x     %s  %u/     lwres   v%u    #0x%x    %s%s       [0x%x]   (  serial:0x%x  result:0x%x     recvlen:%u  authtype:0x%x   authlen:%u  flags:0x%x  IPv4    IPv6    IPv4/6 Type%d  Class%d  %u/%u   %u  TTL     [len: %u != %u]    [extra] [|lwres]    ?   noop    getaddrsbyname  getnamebyaddr   getrdatabyname  [|mobile]   mobile:     %s  > %s    (oproto=%d)  (bad checksum %d)  [S]     []  H   C   Care-of Home    mobility: BRR   mobility: %soTI  %s Init Cookie=%08x:%08x   mobility: %soT   nonce id=0x%x   %s Keygen Token=%08x:%08x  mobility: BU     seq#=%d     lifetime=%d    mobility: BA     status=%d   K  mobility: BE     homeaddr %s    mobility: type-#%d len=%d   (pad1)  (padn: trunc)   (padn)  (refresh: trunc)    (refresh: %d)   (altcoa: trunc) (alt-CoA: %s)   (ni: trunc) (ni: ho=0x%04x co=0x%04x)   (auth: trunc)   (auth)  (sopt_type %d: trunc)   (type-0x%02x: len=%d)   [trunc]     [|MOBILITY] 
	      MPLS    %s(label %u  (%s)   , exp %u    , [S]   , ttl %u)   , IP, length: %u    , IPv6, length: %u  , OSI, length: %u   [|MPLS] IPv4 explicit NULL  router alert    IPv6 explicit NULL  implicit NULL   rsvd     msdp:   [len %u]    SA  SA-Response     %u entries  [w/data]    SA-Request  for %s  Keepalive  [len=%d]     Notification    [type=%d len=%d]    [|msdp]     PROG_UNAVAIL    PROG_MISMATCH   PROC_UNAVAIL    GARBAGE_ARGS    SYSTEM_ERR  ar_stat %d unk-ft %d    %s %o ids %d/%d     sz %llu     sz %d   nlink %d rdev %d/%d     fsid %llx   fileid %llx     a/m/ctime %u.%06u   %u.%06u     nlink %d rdev %x fsid %x nodeid %x a/m/ctime   unk %d   ERROR: %s  ?   %s.%s > %s.%s:   mode %o     uid %u  gid %u  atime %u.%06u   mtime %u.%06u   PRE:    mtime %u.%06u ctime %u.%06u     POST:   verf %08x%08x       fh[    %s%x    :    fh %s/  fh %d,%d/  %s  %ld  dir attr:  notrunc chownres    igncase keepcase    nfs %u  reply ok %u  nop     null    getattr     setattr     lookup  post dattr:     access  attr:   c %04x  readlink    read    %u bytes    EOF     write   <%s>    create  mkdir   symlink     mknod   remove  rmdir   rename  from:   to:     link    file POST:  dir:    readdir     offset %x size %d   eof     readdirplus     fsstat  tbytes %llu fbytes %llu abytes %llu     tfiles %llu ffiles %llu afiles %llu invar %u    tsize %d bsize %d blocks %d bfree %d bavail %d  fsinfo  rtmax %u rtpref %u wtmax %u wtpref %u dtpref %u     rtmult %u wtmult %u maxfsz %llu     delta %u.%06u   pathconf    linkmax %u namemax %u %s %s %s %s   commit  proc-%u     [|nfs] reply ERR %u:   RPC Version mismatch (%u-%u)    Auth    OK  Bogus Credentials (seal broken) Rejected Credentials (client should begin new session)  Bogus Verifier (seal broken)    Verifier expired or was replayed    Credentials are too weak    Bogus response verifier Unknown failure Invalid failure code %u Unknown reason for rejecting rpc message %u reply Unknown rpc response code=%u %u   %d   %04x    %u bytes @ %llu     %u bytes @ %u   %u (%u) bytes @ %llu    %u (%u) bytes @ %u (%u)     -> unk-ft %d    %s  %u/%u   %u bytes @ %lld     %u bytes @ %d   max %u verf %08x%08x   unstable    datasync    filesync    NON REG DIR BLK CHR LNK FIFO    Operation not permitted No such file or directory   Input/output error  Device not configured   Resource deadlock avoided   Cannot allocate memory  Permission denied   File exists Cross-device link   Operation not supported by device   Not a directory Is a directory  Invalid argument    Text file busy  File too large  No space left on device Read-only file system   Too many links  Operation not supported Too many levels of symbolic links   File name too long  Directory not empty Disc quota exceeded Stale NFS file handle   Too many levels of remote in path   Write cache flushed to disk Illegal NFS file handle Update synchronization mismatch READDIR/READDIRPLUS cookie is stale Buffer or request is too small  Unspecified error on server Object of that type not supported   Request couldn't be completed in time   %d.%06d %u.%09d %Y/%m/%d %H:%M:%S    (%s)   %d.%09d NTPv%d  Unknown mode    , %s, length %u , length %u
	%s Unknown , Leap indicator: %s (%u)   , Stratum %u    , poll %us  , precision %d  
	Root Delay:   , Root dispersion:  , Reference-ID:     (unspec)    %s INFO_QUERY   %s INFO_REPLY   %s  
	  Reference Timestamp:    
	  Originator Timestamp:   
	  Receive Timestamp:      
	  Transmit Timestamp:     
	    Originator - Receive Timestamp:   
	    Originator - Transmit Timestamp:   [|ntp] unspecified symmetric active    symmetric passive   Client  Server  Broadcast   Reserved        +1s -1s clock unsynchronized    [|null] Unknown AF %s (%u)  Unknown AF %u   %s  , length %u:    
	      neighbor
		 %s%s        
	      neighbor %s, link-quality %.2lf%%, neighbor-link-quality %.2lf%%    
	      OLSR, seq 0x%04x, length %u Unknown 
	%s Message (%u), originator %s, ttl %u, hop %u
	  vtime %.3lfs, msg-seq 0x%04x, length %u 
	  hello-time %.3lfs, MPR willingness %u   
	    link-type %s, neighbor-type %s, len %u    
	    advertised neighbor seq 0x%04x    
	  interface address %s    
	  advertised networks
	       %s/%u%s [|olsr] Hello   TC  MID HNA Powerinfo   Nameservice Hello-LQ    TC-LQ   Unspecified Asymmetric  Symmetric   Lost    Not-Neighbor    Symmetric-MPR   
	    Bogus length %u < %lu 
	  Advertising Router: %s, seq 0x%08x, age %us, length: %u unknown 
	    %s LSA (%d), Opaque-Type: %s LSA (%u), Opaque-ID: %u  
	    %s LSA (%d), LSA-ID: %s   none    
	    Options: [%s] s       unknown LS-type OSPFv%u, %s, length: %u  [len %d]   
	Router-ID: %s , Area %s   , Backbone Area , Authentication Type: %s (%u)  
	Simple text password:     
	Key-ID: %u, Auth-Length: %u, Crypto Sequence Number: 0x%08x   
	Options: [%s] 
	  Hello Timer: %us, Dead Timer %us, Mask: %s, Priority: %u    
	  Designated Router %s    , Backup Designated Router %s   
	  Neighbor List:  
	    %s    , DD Flags: [%s]    
	  Advertising Router: %s, %s LSA (%u) , Opaque-Type: %s LSA (%u), Opaque-ID: %u   , LSA-ID: %s    , %d LSA%s  
	  LSA #%u 
	    Router LSA Options: [%s]  
	      Virtual Link: Neighbor Router-ID: %s, Interface Address: %s 
	      Neighbor Router-ID: %s, Interface Address: %s   
	      Neighbor Network-ID: %s, Interface Address: %s  
	      Stub Network: %s, Mask: %s  
	      Unknown Router Link Type (%u)   , tos 0, metric: %d , tos %d, metric: %d    
	    Mask %s
	    Connected Routers:   
	      %s  
	    Mask %s   , metric: %u    , tos %d metric %d  , type %d, tos %d metric:    infinite    %d , forward %s    , tag %s    
	    Router Router-ID %s   
	    Network Designated Router %s  
	    unknown VertexType (%u)   
	    Remaining LS length %u < 4    
	    %s TLV (%u), length: %u, value:   
	    Bogus length %u > %u  
	    Bogus length %u != 4  Unknown Capabilities: %s    
	          %us 
	    Bogus length %u != 1  %s (%u) %s  
	    %s TLV (%u), length: %u   
	    Remaining TLV length %u < 4   
	      %s subTLV (%u), length: %u  , 0x%08x    , %s (0x%08x)   , %s    , %.3f Mbps 
		TE-Class %u: %.3f Mbps   
		Bandwidth Constraints Model ID: %s (%u)  
		  Bandwidth constraint CT%u: %.3f Mbps   , Metric %u , %s, Priority %u   
		Interface Switching Capability: %s   
		LSP Encoding: %s
		Max LSP Bandwidth:    
		  priority level %d: %.3f Mbps   , %s (%u)   
		  Shared risk group:     %d  ,   
		 
	    TLV length %u < 4 
	      v2 type (%d)     ospf [version %d]  UMD Hello   Database Description    LS-Request  LS-Update   LS-Ack  simple  MD5 TOS External    Multicast   NSSA    Advertise External  Demand Circuit  Opaque  Up/Down Init    More    Master  Router  Network Summary ASBR Summary    Multicast Group Link Local Opaque   Area Local Opaque   Domain Wide Opaque  Traffic Engineering Graceful restart    Router Information  ABR ASBR    Virtual W2  Router Capabilities Reserved    graceful restart capable    graceful restart helper Stub router support Traffic engineering p2p over LAN    path computation server Grace Period    Graceful restart Reason IPv4 interface address  Software Restart    Software Reload/Upgrade Control Processor Switch    Router Address  Link    Link Type   Link ID Local Interface IP address  Remote Interface IP address Traffic Engineering Metric  Maximum Bandwidth   Maximum Reservable Bandwidth    Unreserved Bandwidth    Administrative Group    Link Local/Remote Identifier    Link Protection Type    Interface Switching Capability  Shared Risk Link Group  Bandwidth Constraints   Point-to-point  Multi-Access    linklocal-  area-   AS-      %srtr %s    %snet dr %s if %s   %sinter-area-prefix %s abr %s   %sinter-area-router %s rtr %s   %sase %s asbr %s    %sgroup %s rtr %s   %stype7 %s rtr %s   %slink %s rtr %s    %sintra-area-prefix %s rtr %s   %s  {   S %X age   %u:%02u:%02u    %u:%02u %u  ls_type %d  ??prefixlen %d??     %s/%d  (opt=%x)    (mbz=%x)    type%d  OSPFv%d-%s %d:   [len %d]    rtrid %s    area %s     backbone    instance %u    %c%s     ifid %s pri %d int %d dead %u   dr %s   bdr %s  nbrs   %cI %cM %cMS     mtu %u S %X     }  LinkStateType %d     virt    nbrid %s nbrif %s if %s     dr %s drif %s if %s     ??RouterLinksType 0x%02x?? }    metric %d   rtrs    metric %u   forward %s  tag %s  RefLSID: %s     pri %d lladdr %s npref %d   npref %d    ??LinkStateType 0x%04x??   v3 type %d   ospf [version %d]  umd hello   dd  ls_req  ls_upd  ls_ack  V6  E   MC  N   R   DC  B   V   W   F   T   %s > %s: [|pgm] %s.%s > %s.%s:  %s > %s:    PGM, length %u   0x%02x%02x%02x%02x%02x%02x     SPM seq %u trail %u lead %u nla %s  POLL seq %u round %u    POLR seq %u round %u nla %s ivl %u rnd 0x%08x mask 0x%08x   ODATA trail %u seq %u   RDATA trail %u seq %u   NAK     NNAK    NCF     (%s -> %s), seq %u  SPMR    UNKNOWN type %0x02x [|OPT]  [First option bad, should be PGM_OPT_LENGTH, is %u] [Bad OPT_LENGTH option, length %u != 4] [Bad total option length %u < 4]     OPTS LEN %d    [Total option length leaves no room for final option]    [|OPT] [Bad option, length %u < %u]     OPTS LEN (extra?) %d   [Bad OPT_FRAGMENT option, length %u != 16]   FRAG seq %u off %u len %u   NAK LIST   [Option length not a multiple of 4]  %u [Bad OPT_JOIN option, length %u != 8]    JOIN %u    [Bad OPT_NAK_BO_IVL option, length %u != 12]     BACKOFF ivl %u ivlseq %u   [Bad OPT_NAK_BO_RNG option, length %u != 12]     BACKOFF max %u min %u  [Bad OPT_REDIRECT option, length %u != 4 + address size]     REDIRECT %s    [Bad OPT_PARITY_PRM option, length %u != 8]  PARITY MAXTGS %u   [Bad OPT_PARITY_GRP option, length %u != 8]  PARITY GROUP %u    [Bad OPT_CURR_TGSIZE option, length %u != 8]     PARITY ATGS %u [Bad OPT_NBR_UNREACH option, length %u != 4]     NBR_UNREACH     PATH_NLA [%d]  [Bad OPT_SYN option, length %u != 4]     SYN    [Bad OPT_FIN option, length %u != 4]     FIN    [Bad OPT_RST option, length %u != 4]     RST     CR [Bad OPT_CRQST option, length %u != 4]   CRQST   OPT_%02X [%d]   [%u]   [|pgm]  Sparse  Dense    WC     RP  SPT Join    Prune   Sparse  Dense   WC  RP  SPT      RPF %s     Hold    %s (%s/%d, %s   /%s ) %s%s %s    Upstream Nbr: %s    Hold time:     
	Group: %s  joined: %d pruned: %d  
	%s %s%s%s%s/%d    [|pim]  Join    S   W   R   %s  /%u (0x%02x)    (%s%s%s +0x%02x RP-tree  Query   Dense-mode  Sparse-mode     Sparse-Dense-mode   mode-%d     (Hold-time      Register    for %s > %s     Register-Stop   Join/Prune  RP-reachable    group %s    RP %s hold      Assert  %s pref %d metric %d    Graft   Graft-ACK   Mode    [type %d]   [v%d]  !    auto-rp    candidate-advert    mapping type-0x%02x  Hold   FOREVER  RP %s   PIMv?   PIMv1   PIMv2   PIMv1+2     [rsvd=0x%02x]  %c%s%s/%d   [rsvd=0x%02x]   [|autorp]   in  Unknown Type    PIMv%u, %s, length %u   PIMv%u, length %u
	%s   , RFC2117-encoding  , cksum 0x%04x  (unverified)    (%scorrect) Unknown 
	  %s Option (%u), length %u, Value:   ERROR: Option Lenght != 4 Bytes (%u)    
	    T-bit=%d, LAN delay %dms, Override interval %dms  Bi-Directional Capability (Old) %u  0x%08x  v%d , interval   ?0x%04x?   
	      ... none    , Flags [ %s ]
	    IP-Null-header %s > %s  IP ver %d    group=  source=    , upstream-neighbor:    
	  %u group(s) , holdtime:     infinite    
	    group #%u:    ...)    , joined sources: %u, pruned sources: %u    
	      joined source #%u:  
	      pruned source #%u:   tag=%x  hashmlen=%d     BSRprio=%d  BSR=    (group%d:   RPcnt=%d    FRPcnt=%d   RP%d=  ,holdtime=  ,prio=%d     src=    RPT     pref=%u     metric=%u   prefix-cnt=%d   prio=%d     holdtime=   RP=     Group%d=    grp=    forwarder=  TUNR   PIMv%u, length %u   Hello   Register    Register Stop   Join / Prune    Bootstrap   Assert  Graft   Graft Acknowledgement   Candidate RP Advertisement  Prune Refresh   Hold Time   LAN Prune Delay DR Priority (Old)   DR Priority Generation ID   State Refresh Capability    Bi-Directional Capability   Address List    Address List (Old)  Border  Null    Unknown 
	  %s Option (0x%02x), length %u (bogus, should be >= 2)   
	  %s Option (0x%02x), length %u:  , Magic-Num 0x%08x  
	      [|bacp] unknown 
	  %s Option (0x%02x), length %u:  %04x:%04x:%04x:%04x , invalid-length-%d [|ip6cp]    src %s, dst %s  %s (0x%02x):    
	    TCP Space %u, non-TCP Space %u, maxPeriod %u, maxTime %u, maxHdr %u   
	      Suboptions, length %u   
		%s Suboption #%u, length %u  %s  [|ipcp] 
	unknown LCP option 0x%02x Vendor: %s (%u) %u  0x%08x  Unknown Auth Proto (0x04x)  Unknown Auth Alg %u , %s    
	   LQR     unknown    0x%04x  Callback Operation %s (%u)  Null    Local   IPv4 %s MAC %02x:%02x:%02x:%02x:%02x:%02x   Magic-Num-Block PSNDN   [|lcp]  unknown ctrl-proto (0x%04x) %s,     Unknown Opcode  %s (0x%02x), id %u, length %u   
	encoded length %u (=Option(s) length %u)  
	  Magic-Num 0x%08x     Vendor: %s (%u)    
	  Rejected %s Protocol (0x%04x)   
	  Rejected Packet 
	  -----trailing data----- 
	      
	  Message
	       , Seconds-Remaining %us [|%s]   MLPPP,  none    seq 0x%03x, Flags [%s], length %u   [|chap] [|chap 0x%02x]  CHAP, %s (0x%02x)   , id %u , Value     %02x    , Name  , Msg   [|pap]  [|pap 0x%02x]   PAP, %s (0x%02x)    , length %u > packet size   , length %u < PAP header length , Peer  compressed PPP data unknown PPP protocol (0x%04x)   %s  [|ccp]  In      Out     %s (0x%04x), length %u:     [|ppp]  %02x %02x %d    %s:     unknown addr %02x; ctrl %02x    begin   end Auth-Req    Auth-ACK    Auth-NACK   Challenge   Response    Success Fail    UserAuth    DialString  LocalID E.164   X.500   CBCP    MD5 MS-CHAPv1   MS-CHAPv2   Interface-ID    RTP-Compression Enhanced RTP-Compression    VJ-Comp IP Header Compression   IP-Addrs    IP-Comp IP-Addr Home-Addr   Pri-DNS Pri-NBNS    Sec-DNS Sec-NBNS    Favored-Peer    OUI Pred-1  Pred-2  Puddle  HP-PPC  Stac-LZS    MPPC    Gand-FZA    V.42bis BSD-Comp    LZS-DCP MVRCA   DEC Deflate Reserved    Vendor-Extension    Conf-Request    Conf-Ack    Conf-Nack   Conf-Reject Term-Request    Term-Ack    Code-Reject Prot-Reject Echo-Request    Echo-Reply  Disc-Req    Ident   Time-Rem    Reset-Req   Reset-Ack   IP  OSI NS  DECNET  APPLE   IPX VJC IP  VJNC IP BRPDU   STII    VINES   MPLS    Compressed  MLPPP   IP6 HELLO   LUXCOM  SNS IPCP    OSICP   NSCP    DECNETCP    APPLECP IPXCP   STIICP  VINESCP IP6CP   MPLSCP  LCP PAP LQM CHAP    EAP SPAP    Old-SPAP    BACP    BAP MLPPP-CP    Vend-Ext    MRU ACCM    Auth-Prot   Qual-Prot   Magic-Num   deprecated(6)   PFC ACFC    FCS-Alt SDP Num-Mode    deprecated(12)  Call-Back   deprecated(14)  deprecated(15)  deprecated(16)  MRRU    12-Bit seq #    End-Disc    Proprietary DCE-Id  MP+ Link-Disc   LCP-Auth-Opt    COBS    Prefix-elision  Multilink-header-Form   I18N    SDL-over-SONET/SDH  PPP-Muxing  truncated-pppoe %u   [ver %d]    [type %d]  PAD-%x  PPPoE %s     [len %u!]   [len %u > %u!]  [ses 0x%x] TAG-0x%x     [%s "%*.*s"]   %02X     [%s]   [|pppoe]     [%s 0x PADI    PADO    PADR    PADS    PADT        EOL Service-Name    AC-Name Host-Uniq   AC-Cookie   Vendor-Specific Relay-Session-ID    Service-Name-Error  AC-System-Error Generic-Error    PROTO_VER(%u.%u)    ID(%u)  CALL_ID(%u)     RECV_WIN(%u)    PROC_DELAY(%u)  PEER_CALL_ID(%u)    CONN_SPEED(%u)  PHY_CHAN_ID(%u)     FRAME_CAP(  BEARER_CAP(     RESULT_CODE(%u :Successful channel establishment   :General error  :Command channel already exists :Requester is not authorized to establish a command channel :The protocol version of the requester is not supported :?  :OK :General Error  :Connected  :No Carrier :Busy   :No Dial Tone   :Time-out   :Do Not Accept  :Connect    :Lost Carrier   :Admin Shutdown :Request     ERR_CODE(%u    :None   :Not-Connected  :Bad-Format :Bad-Valude :No-Resource    :Bad-Call-ID    :PAC-Error   BEARER_TYPE(   Any  FRAME_TYPE(    : pptp   Length=%u   CTRL-MSG    MGMT-MSG    UNKNOWN-MSG-TYPE    UNEXPECTED Magic-Cookie!!(%08x)     Magic-Cookie=%08x   CTRL_MSGTYPE=%s     UNKNOWN_CTRL_MSGTYPE(%u)    MAX_CHAN(%u)    FIRM_REV(%u)    HOSTNAME(%.64s)     VENDOR(%.64s)  %s   REASON(%u  :Stop-Protocol  :Stop-Local-Shutdown     CALL_SER_NUM(%u)    MIN_BPS(%u)     MAX_BPS(%u)     PHONE_NO_LEN(%u)    PHONE_NO(%.64s)     SUB_ADDR(%.64s)     CAUSE_CODE(%u)  DIALED_NO_LEN(%u)   DIALING_NO_LEN(%u)  DIALED_NO(%.64s)    DIALING_NO(%.64s)   CALL_STATS(%.128s)  CRC_ERR(%u)     FRAMING_ERR(%u)     HARDWARE_OVERRUN(%u)    BUFFER_OVERRUN(%u)  TIMEOUT_ERR(%u)     ALIGN_ERR(%u)   SEND_ACCM(0x%08x)   RECV_ACCM(0x%08x)  NOT_DEFINED SCCRQ   SCCRP   StopCCRQ    StopCCRP    ECHORQ  ECHORP  OCRQ    OCRP    ICRQ    ICRP    ICCN    CCRQ    CDN WEN SLI ERROR: length %u != 16  User_challenge (    %02X    ) User_resp(    ERROR: length %u != 14  User can change password    User cannot change password , Min password length: %d   , created at:   , expires in:   , Current Time:     ERROR: length %u != 8    [|radius]  ERROR: length %u != 4   %.24s   Unknown Vendor: %s (%u) 
	    Vendor Attribute: %u, Length: %u (bogus, must be >= 2)    
	    Vendor Attribute: %u, Length: %u (bogus, goes past end of vendor-specific attribute)  
	    Vendor Attribute: %u, Length: %u, Value:  Tag[Unused] Tag[%d] %s  #%u NAS Select  %d  %02d secs   %02d:%02d min   %02d:%02d:%02d hours    Unnumbered  NAS assigned    Tag (Unused) %d Tag (%d) %d Tag %u,     Salt %u     Tag %u  User Selected   Unknown Command RADIUS, %s (%u), id: 0x%02x length: %u  RADIUS, length: %u
	%s (%u), id: 0x%02x, Authenticator:     %02x    
	  %s Attribute (%u), length: %u (bogus, must be >= 2) 
	  %s Attribute (%u), length: %u (bogus, goes past end of packet)  
	  %s Attribute (%u), length: %u, Value:   
	      Username    Password    CHAP Password   NAS IP Address  NAS Port    Service Type    Framed Protocol Framed IP Address   Framed IP Network   Framed Routing  Filter ID   Framed MTU  Framed Compression  Login IP Host   Login Service   Login TCP Port  Unassigned  Reply   Callback-number Callback-ID Framed Route    Framed IPX Network  State   Class   Vendor Specific Session Timeout Idle Timeout    Termination Action  Called Station  Calling Station NAS ID  Proxy State Login LAT Service   Login LAT Node  Login LAT Group Framed Appletalk Link   Framed Appltalk Net Framed Appletalk Zone   Accounting Status   Accounting Delay    Accounting Input Octets Accounting Output Octets    Accounting Session ID   Accounting Authentication   Accounting Session Time Accounting Input Packets    Accounting Output Packets   Accounting Termination Cause    Accounting Multilink Session ID Accounting Link Count   Accounting Input Giga   Accounting Output Giga  Event Timestamp CHAP challenge  NAS Port Type   Port Limit  Login LAT Port  Tunnel Type Tunnel Medium   Tunnel Client End   Tunnel Server End   Accounting Tunnel connect   Tunnel Password ARAP Password   ARAP Feature    ARAP Zone Acces ARAP Security   ARAP Security Data  Password Retry  Prompt  Connect Info    Config Token    EAP Message Message Authentication  Tunnel Private Group    Tunnel Assigned ID  Tunnel Preference   ARAP Challenge Response Accounting Interim Interval Accounting Tunnel packets lost  NAS Port ID Framed Pool Tunnel Client Authentication ID Tunnel Server Authentication ID Access Request  Access Accept   Access Reject   Accounting Request  Accounting Response Access Challenge    Status Server   Status Client   Reserved    Login   Framed  Callback Login  Callback Framed Outbound    Administrative  NAS Prompt  Authenticate Only   Callback NAS Prompt Call Check  Callback Administrative PPP SLIP    ARAP    Gandalf proprietary Xylogics IPX/SLIP   X.75 Synchronous    None    Send    Listen  Send&Listen VJ TCP/IP   IPX Stac-LZS    Telnet  Rlogin  TCP Clear   PortMaster(proprietary) LAT X.25-PAD    X.25-T3POS  TCP Clear Quiet Default RADIUS-Request  Start   Stop    Interim-Update  Accounting-On   Accounting-Off  Tunnel-Start    Tunnel-Stop Tunnel-Reject   Tunnel-Link-Start   Tunnel-Link-Stop    Tunnel-Link-Reject  Failed  RADIUS  Local   Remote  User Request    Lost Carrier    Lost Service    Admin Reset Admin Reboot    Port Error  NAS Error   NAS Request NAS Reboot  Port Unneeded   Port Preempted  Port Suspended  Service Unavailable Callback    User Error  Host Request    Async   Sync    ISDN Sync   ISDN Async V.120    ISDN Async V.110    Virtual PIAFS   HDLC Clear Channel  X.25    X.75    G.3 Fax SDSL    ADSL-CAP    ADSL-DMT    ISDN-DSL    Ethernet    xDSL    Cable   Wireless - Other    Wireless - IEEE 802.11  PPTP    L2F L2TP    ATMP    VTP AH  IP-IP   MIN-IP-IP   ESP GRE DVS IP-in-IP Tunneling  IPv4    IPv6    NSAP    HDLC    BBN 1822    802 E.163   E.164   F.69    X.121   Appletalk   Decnet IV   Banyan Vines    E.164 with NSAP subaddress  Only access to dfl zone Use zone filter inc.    Not used    Use zone filter exc.    No Echo Echo    ip:     
	       [|rip] %sRIPv%u    unknown command (%u)    , %s, length: %u    , routes: %u    
	 AFI: %u: 
	      
	  %s, metric: %u  
	  Simple Text Authentication data: %s 
	  Unknown (%u) Authentication data:   
	  AFI: %u 
	  AFI: IPv4: %15s/%-2d, tag 0x%04x, metric: %u, next-hop:     %s  self    [|rip]  Request Response    Trace on    Trace off   Poll    Poll Entry  %s/%d    [%d]    (%d)    ripng-req dump  ripng-req %d[%u]:   ripng-req %d:  
	   ripng-resp %d[%u]:  ripng-resp %d: [|ripng]     ripng-%d ?? %u  [vers %d]  ignore  reject  and forward silently    23      Loose   Strict  not 10  %sERROR: object header size %u not a multiple of 4  %sERROR: object header too short %u < %lu   Unknown %s%s Object (%u) Flags: [%s  %s  if unknown], Class-Type: %s (%u), length: %u   %sERROR: object goes past end of objects TLV    %s  IPv4 DestAddress: %s, Protocol ID: 0x%02x   %s  Flags: [0x%02x], DestPort %u    %s  IPv6 DestAddress: %s, Protocol ID: 0x%02x   %s  IPv6 Tunnel EndPoint: %s, Tunnel ID: 0x%04x, Extended Tunnel ID: %s %s  IPv4 Tunnel EndPoint: %s, Tunnel ID: 0x%04x, Extended Tunnel ID: %s %s  IPv4 Receiver Address: %s   %s  IPv6 Receiver Address: %s   %s  IPv4 Notify Node Address: %s    %s  IPv6 Notify Node Address: %s    %s  Label: %u   %s  Generalized Label: %u   %s  Waveband ID: %u%s  Start Label: %u, Stop Label: %u  %s  Reservation Style: %s, Flags: [0x%02x]  %s  Source Address: %s, Source Port: %u %s  IPv4 Tunnel Sender Address: %s, LSP-ID: 0x%04x  Unknown Protocol (0x%04x)   %s  L3 Protocol ID: %s  ,%s merge capability    %s  Minimum VPI/VCI: %u/%u  %s  Maximum VPI/VCI: %u/%u  %s  Minimum/Maximum DLCI: %u/%u, %s%s bit DLCI  %s  LSP Encoding Type: %s (%u)  %s  Switching Type: %s (%u), Payload ID: %s (0x%04x)    Unknown %u  %s  Subobject Type: %s, length %u   %s  ERROR: zero length ERO subtype  none    , %s, %s/%u, Flags: [%s]    %s  Source Instance: 0x%08x, Destination Instance: 0x%08x   %s  Restart  Time: %ums, Recovery Time: %ums    %s  Session Name:   %s  Setup Priority: %u, Holding Priority: %u, Flags: [%s]   %s  Subobject Type: %s (%u), AF: %s (%u), length: %u    %s    UNI IPv4 TNA address: %s  %s    UNI IPv6 TNA address: %s  %s    U-bit: %x, Label type: %u, Logical port id: %u, Label: %u %s    Service level: %u %s  Previous/Next Interface: %s, Logical Interface Handle: 0x%08x   %s  Refresh Period: %ums    %s  Msg-Version: %u, length: %u unknown %s  Service Type: %s (%u), break bit %s set, Service length: %u 
	      Parameter ID: %s (%u), length: %u, Flags: [0x%02x]  
		IS hop count: %u 
		Path b/w estimate: %.10g Mbps    
		Minimum path latency:    don't care  %u  
		Composed MTU: %u bytes   
		Token Bucket Rate: %.10g Mbps    
		Token Bucket Size: %.10g bytes   
		Peak Data Rate: %.10g Mbps   
		Minimum Policed Unit: %u bytes   
		Maximum Packet Size: %u bytes    
		Rate: %.10g Mbps 
		Slack Term: %u   
		Value: %u    
		 %s  Source Address: %s, Flow Label: %u  %s  Source Address: %s, LSP-ID: 0x%04x  %s  Setup Priority: %u, Holding Priority: %u, Hop-limit: %u, Bandwidth: %.10g Mbps  %s  Include-any: 0x%08x, Exclude-any: 0x%08x, Include-all: 0x%08x   %s  Include Colors: 0x%08x, Exclude Colors: 0x%08x  %s  PLR-ID: %s, Avoid-Node-ID: %s   %s  CT: %u  %s  Error Node Address: %s, Flags: [0x%02x]%s  Error Code: %s (%u)  , Error Value: %s (%u)  , Unknown Error Value (%u)  %s  TLV count: %u, padding bytes: %u    %s    %s TLV (0x%02x), length: %u   %s  Flags [0x%02x], epoch: %u   %s    Message-ID 0x%08x (%u)    %s  Key-ID 0x%04x%08x, Sequence 0x%08x%08x, Flags [%s]  %s  MD5-sum 0x%08x%08x%08x%08x (unverified) %s  Flags [%s]  %s  Action: %s (%u), Label type: %u %s  Start range: %u, End range: %u  %s  Subchannel #%u: %u  
	      
		 packet exceeded snapshot    no  ERROR: RSVP version %u packet not supported unknown (%u)    RSVPv%u %s Message, length: %u  unknown, type: %u   
	RSVPv%u %s Message (%u), Flags: [%s], length: %u, ttl: %u, checksum: 0x%04x   ERROR: common header too short %u < %lu 
	  RSVPv%u %s Message (%u), Flags: [%s], length: %u, ttl: %u, checksum: 0x%04x ERROR: common header too large %u > %u  
	      Path    Resv    PathErr ResvErr PathTear    ResvTear    ResvConf    Aggregate   Acknowledgement Hello (Old) Refresh Hello   Refresh reduction capable   Session RSVP Hop    Integrity   Time Values Error Spec  Scope   Style   Flowspec    FilterSpec  Sender Template Sender TSpec    Adspec  Policy Data Confirm Label   Label Request   ERO RRO Message ID  Message ID Ack  Message ID List Recovery Label  Upstream Label  Label Set   Acceptable Label Set    Detour  Class Type  Class Type (old)    Suggested Label Properties  Fast Re-Route   Session Attribute   Generalized UNI Call-ID Call Capability Restart Capability  Notify Request  Protection  Administrative Status   IPv4    IPv6    IPv4 plus opt. TLVs IPv6 plus opt. TLVs 1   obsolete    IntServ IPv6 Flow-label Tunnel IPv4 UNI IPv4    Message id ack  Message id nack Hello Request   Hello Ack   without label range with ATM label range    with FR label range Generalized Label   Waveband Switching  Wildcard Filter Fixed Filter    Shared Explicit Reserved    IPv4 prefix IPv6 prefix Autonomous system number    MPLS label switched path termination    Local protection available  Local protection in use Bandwidth protection    Node protection Local Protection desired    Label Recording desired SE Style desired    Bandwidth protection desired    Node protection desired Source TNA address  Destination TNA address Diversity   Egress label    Service level   Default/Global Information  Guaranteed Service  Controlled Load Routing Problem Notify Error    Diffserv TE Error   Diffserv TE Error (Old) Bad EXPLICIT_ROUTE object   Bad strict node Bad loose node  Bad initial subobject   No route available toward destination   Unacceptable label value    RRO indicated routing loops non-RSVP-capable router in the path MPLS label allocation failure   Unsupported L3PID   Unexpected CT object    Unsupported CT  Invalid CT value    CT/setup priority do not form a configured TE-Class CT/holding priority do not form a configured TE-Class   CT/setup priority and CT/holding priority do not form a configured TE-Class Inconsistency between signaled PSC and signaled CT  Inconsistency between signaled PHBs and signaled CT Cos Metric 1    Metric 2    CCC Status  Path Type   Handshake   Reflect Testing Admin-down  Delete-in-progress  Inclusive list  Exclusive list  Inclusive range Exclusive range IS hop cnt  Path b/w estimate   Minimum path latency    Composed MTU    Token Bucket TSpec  Guaranteed Service RSpec    End-to-end composed value for C End-to-end composed value for D Since-last-reshaping point composed C   Since-last-reshaping point composed D   srcrt (len=%d   , type=%d   , segleft=%d    , rsv=0x%0x )   , [%d]%s    [|srcrt]    op#%d    cb call %s  fid %d/%d/%d    ver     %d  expires    %Y/%m/%d %T  %s type %d  afsuuid     %08x   %04x    %02x     [|cb]   <none!>    yes no   ubik call %s    syncsite %s     votestart   dbversion   %d.%d   tid     site    %lu     file    pos     length  oldversion  newversion  [|ubik]     pt  "   id  oldid   uid     gid     ids:    flag    oid     gflag   newid   [|pt]   call %s     vldb    volid   type %s     bump    index   [|vldb]     ubik reply %s   vote no     vote yes until  errcode     maxuid  maxgid  reply %s   %d %d
%n    %%%ds %%d
%%n    +{  -{  fs reply %s     new     root volume    #%d  error %s    strange fs reply of type %d     [|fs]   fs call %s  offset  StoreStatus     date    owner %lu   group %lu   mode %lo    segsize %lu     fsync   flen    old     link to     volname     count   nextindex   numservers  servers     partitions  %c  rwvol   rovol   backup  newvol  [|rx] (%d)  rx %s   cid %08x call# %d   seq %d ser %d   secindex %d serviceid %hu  <%s>     kauth   principal   kvno    domain  name    [|kauth]    vol call %s     [|vol]  bos call %s     type    instance    status  num     size    flags   [|bos]  cb reply %s     vol reply %s    bos reply %s    bufspace %d maxskew %d  first %d serial %d reason %s    acked %d   ,%d -%d  nacked %d   ifmtu   maxmtu  rwind   maxpackets  [|ack]  (%d)   data    ack busy    abort   ackall  challenge   response    debug   params  version client-init req-ack last-pckt   more-pckts  free-pckt   slow-start  jumbogram   fetch-data  fetch-acl   fetch-status    store-data  store-acl   store-status    remove-file create-file rename  symlink link    makedir rmdir   oldsetlock  oldextlock  oldrellock  get-stats   give-cbs    get-vlinfo  get-vlstats set-vlstats get-rootvl  check-token get-time    nget-vlinfo bulk-stat   setlock extlock rellock xstat-ver   get-xstat   dfs-lookup  dfs-flushcps    dfs-symlink residency   callback    initcb  probe   getlock getce   xstatver    getxstat    initcb2 whoareyou   initcb3 probeuuid   getsrvprefs getcellservdb   getlocalcell    getcacheconf    exclusive   shared  dropped new-user    where-is-it dump-entry  add-to-group    name-to-id  id-to-name  delete  remove-from-group   get-cps new-entry   list-max    set-max list-entry  change-entry    list-elements   same-mbr-of set-fld-sentry  list-owned  get-cps2    get-host-cps    update-entry    list-entries    vote-beacon vote-debug-old  vote-sdebug-old vote-getsyncsite    vote-debug  vote-sdebug disk-begin  disk-commit disk-lock   disk-write  disk-getversion disk-getfile    disk-sendfile   disk-abort  disk-releaselocks   disk-truncate   disk-probe  disk-writev disk-interfaceaddr  disk-setversion read    write   wait    create-entry    delete-entry    get-entry-by-id get-entry-by-name   get-new-volume-id   replace-entry   releaselock list-attrib linked-list get-addrs   change-addr create-entry-n  get-entry-by-id-n   get-entry-by-name-n replace-entry-n list-entry-n    list-attrib-n   linked-list-n   update-entry-by-name    create-entry-u  get-entry-by-id-u   get-entry-by-name-u replace-entry-u list-entry-u    list-attrib-u   linked-list-u   regaddr get-addrs-u list-attrib-n2  read-write  read-only   backup  auth-old    authenticate    authenticate-v2 change-pw   get-ticket-old  get-ticket  set-pw  set-fields  create-user delete-user get-entry   get-pw  get-random-key  unlock  lock-status create-volume   delete-volume   restore forward end-trans   clone   set-flags   get-flags   trans-create    dump    get-nth-volume  set-forwarding  get-name    get-status  sig-restore list-partitions list-volumes    set-id-types    monitor partition-info  reclone list-one-volume nuke    set-date    x-list-volumes  x-list-one-volume   set-info    x-list-partitions   forward-multiple    create-bnode    delete-bnode    set-status  enumerate-instance  get-instance-info   get-instance-parm   add-superuser   delete-superuser    list-superusers list-keys   add-key delete-key  set-cell-name   get-cell-name   get-cell-host   add-cell-host   delete-cell-host    set-t-status    shutdown-all    restart-all startup-all set-noauth-flag re-bozo restart start-bozo-install  uninstall   get-dates   exec    prune   set-restart-time    get-restart-time    start-bozo-log  wait-all    get-instance-strings    get-restricted  set-restricted  salvage volume  no such vnode   no such volume  volume exist    no service  volume offline  voline online   diskfull    diskquota exceeded  volume busy volume moved    AFS IO error    restarting fileserver   ack requested   duplicate packet    out of sequence exceeds window  no buffer space ping    ping response   delay   idle    
	   (  , ( truncated-sctp - %ld bytes missing! %s.%d > %s.%d: sctp %s%d) [Bad chunk length %u] %s%d)   [DATA]  (U) (B) (E) [TSN: %u]   [SID: %u]   [SSEQ %u]   [PPID 0x%x]     [Payload    bogus chunk length %u]  [INIT]  [init tag: %u]  [rwnd: %u]  [OS: %u]    [MIS: %u]   [init TSN: %u]  [INIT ACK]  [SACK]  [cum ack %u]    [a_rwnd %u]     [#gap acks %u]  [#dup tsns %u]  
		[gap ack block #%d: start = %u, end = %u]    
		[dup TSN #%u: %u]    [HB REQ]    [HB ACK]    [ABORT]     [SHUTDOWN]  [SHUTDOWN ACK]  [OP ERR]    [COOKIE ECHO]   [COOKIE ACK]    [ECN ECHO]  [ECN CWR]   [SHUTDOWN COMPLETE]     [FOR CUM TSN]   [REL CTRL]  [REL CTRL ACK]  [Unknown chunk type: 0x%x]  [|sctp] 
	      SIP, length: %u%s    %s%d   [|slip] %02x.   %02x:   ip %d:  utcp %d:    ctcp %d ctcp *   *SA+%d  *S+%d  U=   W+%d    W%d    A+  S+  I+   %d (%ld)   :   slip-%d!:   ip v%d  [|sll]  ?   %3s     %s  802.3   ethertype Unknown (0x%04x)  Unknown ethertype %s (0x%04x)   , length %u:    (LLC %s)    In  B   M   P   Out LACP version %u packet not supported    MARKER version %u packet not supported  unknown (%u)    %sv%u, length: %u   Unknown 
	%s TLV (0x%02x), length: %u   
	-----trailing data-----   
	      none    
	  System %s, System Priority %u, Key %u, Port %u, Port Priority %u
	  State Flags [%s]    
	  Max Delay %u    
	  Request System %s, Request Port %u, Request Transaction ID 0x%08x    (=%u)  
		 packet exceeded snapshot    LACP    MARKER  Terminator  Actor Information   Partner Information Collector Information   Marker Information  Activity    Timeout Aggregation Synchronization Collecting  Distributing    Default Expired [nothing to parse]  [Xtagfield?]    [no asnlen] [asnlen? %d<%d] [len%d<asnlen%u]    [id?%c/%s/%d]   [P/U/%s]    [P/A/%s]    [P/%s/%s]   C/U/%s  C/%s/%s [|snmp] %s  .%s %u  .%u %.2x    _%.2x   %d  %f  %5.5d   Seq(%u) [inetaddr len!=%d]  [%s]    %s(%u)  [BE_ANY!?]  [be!?]  [!SEQ of varbind]   [%d extra after SEQ of varbind] [!varbind]  [objName!=OID]  [objVal!=NULL]  [no PDU]    [%d extra after PDU]    {   [v2 PDU in v1 message]  [v1 PDU in v2 message]  [enterprise!=OID]   [agent-addr!=INETADDR]  [generic-trap!=INT] gt=%d    %s [specific-trap!=INT]    [specific-trap(%d)!=0]   s=%d   [time-stamp!=TIMETICKS] [reqId!=INT]    R=%d    [errorStatus!=INT]  err=%u  [errorStatus(%s)!=0]     N=%d   [errorIndex!=INT]   [errorIndex(%d)!=0]  M=%d   [errorIndex(%d) w/o errorStatus]    @%d [errorIndex==0]  }  [!init SEQ] [%d extra after iSEQ]   [version!=INT]  { %s    [version = %d]  [comm!=STR] public  C=%.*s  [!message]  [msgID!=INT]    [msgMaxSize!=INT]   [msgFlags!=STR] [msgFlags size %d]  [msgFlags=0x%02X]   F=  [msgSecurityModel!=INT] [%d extra after message SEQ]    }   { USM   [security model %d] [msgSecurityParameters!=STR]    [!usm]  [msgAuthoritativeEngineID!=STR] [msgAuthoritativeEngineBoots!=INT]  B=%d    [msgAuthoritativeEngineTime!=INT]   T=%d    [msgUserName!=STR]  U=%.*s  [msgAuthenticationParameters!=STR]  [msgPrivacyParameters!=STR] [%d extra after usm SEQ]    { ScopedPDU     [!scoped PDU]   [contextEngineID!=STR]  E=  0x%02X  [contextName!=STR]  SNMPv1  SNMPv2c SNMPv2u SNMPv3      +   E:  +   X:  +    S:  +   iso org dod internet    snmpV2  security    private experimental    mgmt    directory   mib snmpModules snmpUsmMIB  snmpMPDMIB  snmpFrameworkMIB    snmpFrameworkMIBConformance snmpFrameworkMIBObjects snmpFrameworkAdmin  snmpEngine  snmpEngineMaxMessageSize    snmpEngineTime  snmpEngineBoots snmpEngineID    snmpMPDMIBConformance   snmpMPDMIBObjects   snmpMPDAdmin    snmpMPDStats    snmpUnknownPDUHandlers  snmpInvalidMsgs snmpUnknownSecurityModels   snmpMPDMIBGroups    snmpMPDMIBCompliances   usmMIBConformance   usmMIBObjects   usmUser usmStats    usmStatsDecryptionErrors    usmStatsWrongDigests    usmStatsUnknownEngineIDs    usmStatsUnknownUserNames    usmStatsNotInTimeWindows    usmStatsUnsupportedSecLevels    usmUserTable    usmUserSpinLock usmUserEntry    usmUserStatus   usmUserStorageType  usmUserPublic   usmUserOwnPrivKeyChange usmUserPrivKeyChange    usmUserPrivProtocol usmUserOwnAuthKeyChange usmUserAuthKeyChange    usmUserAuthProtocol usmUserCloneFrom    usmUserSecurityName usmUserName usmUserEngineID usmMIBGroups    usmMIBCompliances   snmp    transmission    egp udp tcp icmp    ip  at  interfaces  system  sysServices sysLocation sysName sysContact  sysUpTime   sysObjectID sysDescr    ifTable ifNumber    ifEntry ifSpecific  ifOutQLen   ifOutErrors ifOutDiscards   ifOutNUcastPkts ifOutUcastPkts  ifOutOctets ifInUnknownProtos   ifInErrors  ifInDiscards    ifInNUcastPkts  ifInUcastPkts   ifInOctets  ifLastChange    ifOperStatus    ifAdminStatus   ifPhysAddress   ifSpeed ifMtu   ifType  ifDescr ifIndex atTable atEntry atNetAddress    atPhysAddress   atIfIndex   ipNetToMediaTable   ipRoutingTable  ipAddrTable ipFragCreates   ipFragFails ipFragOKs   ipReasmFails    ipReasmOKs  ipReasmReqds    ipReasmTimeout  ipOutNoRoutes   ipOutDiscards   ipOutRequests   ipInDelivers    ipInDiscards    ipInUnknownProtos   ipForwDatagrams ipInAddrErrors  ipInHdrErrors   ipInReceives    ipDefaultTTL    ipForwarding    ipAddrEntry ipAdEntReasmMaxSize ipAdEntBcastAddr    ipAdEntNetMask  ipAdEntIfIndex  ipAdEntAddr ipRouteEntry    ipRouteMask ipRouteAge  ipRouteProto    ipRouteType ipRouteNextHop  ipRouteMetric4  ipRouteMetric3  ipRouteMetric2  ipRouteMetric1  ipRouteIfIndex  ipRouteDest ipNetToMediaEntry   ipNetToMediaType    ipNetToMediaNetAddress  ipNetToMediaPhysAddress ipNetToMediaIfIndex icmpOutAddrMaskReps icmpOutAddrMasks    icmpOutTimestampReps    icmpOutTimestamps   icmpOutEchoReps icmpOutEchos    icmpOutRedirects    icmpOutSrcQuenchs   icmpOutParmProbs    icmpOutTimeExcds    icmpOutDestUnreachs icmpOutErrors   icmpOutMsgs icmpInAddrMaskReps  icmpInAddrMasks icmpInTimestampReps icmpInTimestamps    icmpInEchoReps  icmpInEchos icmpInRedirects icmpInSrcQuenchs    icmpInParmProbs icmpInTimeExcds icmpInDestUnreachs  icmpInErrors    icmpInMsgs  tcpOutRsts  tcpInErrs   tcpConnTable    tcpRetransSegs  tcpOutSegs  tcpInSegs   tcpCurrEstab    tcpEstabResets  tcpAttemptFails tcpPassiveOpens tcpActiveOpens  tcpMaxConn  tcpRtoMax   tcpRtoMin   tcpRtoAlgorithm tcpConnEntry    tcpConnRemPort  tcpConnRemAddress   tcpConnLocalPort    tcpConnLocalAddress tcpConnState    udpTable    udpOutDatagrams udpInErrors udpNoPorts  udpInDatagrams  udpEntry    udpLocalPort    udpLocalAddress egpAs   egpNeighTable   egpOutErrors    egpOutMsgs  egpInErrors egpInMsgs   egpNeighEntry   egpNeighEventTrigger    egpNeighMode    egpNeighIntervalPoll    egpNeighIntervalHello   egpNeighStateDowns  egpNeighStateUps    egpNeighOutErrMsgs  egpNeighInErrMsgs   egpNeighOutErrs egpNeighOutMsgs egpNeighInErrs  egpNeighInMsgs  egpNeighAs  egpNeighAddr    egpNeighState   snmpEnableAuthTraps snmpOutTraps    snmpOutGetResponses snmpOutSetRequests  snmpOutGetNexts snmpOutGetRequests  snmpOutGenErrs  snmpOutReadOnlys    snmpOutBadValues    snmpOutNoSuchNames  snmpOutTooBigs  snmpInTraps snmpInGetResponses  snmpInSetRequests   snmpInGetNexts  snmpInGetRequests   snmpInTotalSetVars  snmpInTotalReqVars  snmpInGenErrs   snmpInReadOnlys snmpInBadValues snmpInNoSuchNames   snmpInTooBigs   snmpInBadTypes  snmpInASNParseErrs  snmpInBadCommunityUses  snmpInBadCommunityNames snmpInBadVersions   snmpOutPkts snmpInPkts  enterprises ccur    ultra   ohiostate   snmpresearch    emergingtech    sigma   cern    allenbradley    nokia   frontier    webstercomputer learningtree    intercon    rnd nyu link    networkappltech datability  pirellifocom    raycom  ncd lannet  auspex  icl netlabs hplanman    digitalanalysis ungermannbass   att boeing  retix   nasa    locus   tmac    cornell reuter  davidsystems    dartmouth   gandalf apple   fibercom    merit   ubc silicongraphics tgv mips    castlerock  ssds    desktalksystems apollo  cabletron   gated   opticaldatasystems  chipcom mcnc    prime   cheyenne    synoptics   cmc 3com    sun sri nmfeccllnl  baylor  networkresearchcorp touch   dec bellnorthernresearch    cray    xyplex  santacruzoperation  nswc    ulana   vitalink    interlan    intergraph  sytek   nsfnet  spider  excelan spartacus   eon mit trw wellfleet   canstar unisys  xylogics    bbn utennessee  epilogue    hp  nsc cisco   nysernet    cayman  twg acc unix    cmu ibm proteon Primitive   Constructed x   coldStart   warmStart   linkDown    linkUp  authenticationFailure   egpNeighborLoss enterpriseSpecific  noError tooBig  noSuchName  badValue    readOnly    genErr  noAccess    wrongType   wrongLength wrongEncoding   wrongValue  noCreation  inconsistentValue   resourceUnavailable commitFailed    undoFailed  authorizationError  notWritable inconsistentName    P-0 noSuchObject    noSuchInstance  endOfMibView    GetRequest  GetNextRequest  GetResponse SetRequest  Trap    GetBulk Inform  V2Trap  Report  IpAddress   Counter Gauge   TimeTicks   Opaque  C-5 Counter64   U-0 Boolean Integer Bitstring   String  Null    ObjID   ObjectDes   U-8 U-9 U-10    U-11    U-12    U-13    U-14    U-15    Sequence    Set %.2x%.2x.%.2x:%.2x:%.2x:%.2x:%.2x:%.2x  none    , Flags [%s]    , bridge-id %s.%04x, length %u  
	message-age %.2fs, max-age %.2fs, hello-time %.2fs, forwarding-delay %.2fs    
	root-id %s, root-pathcost %u  Unknown , port-role %s  unknown STP version, length %u  Unknown STP protocol (0x%02x)   STP %s  Unknown BPDU Type (0x%02x)  , %s    , CIST Flags [%s]   , CIST bridge-id %s.%04x, length %u 
	CIST root-id %s, ext-pathcost %u int-pathcost %u  
	CIST regional-root-id %s  
	MSTP Configuration Name %s, revision %u, digest %08x%08x%08x%08x  
	CIST remaining-hops %d    
	MSTI %d, Flags [%s], port-role %s 
		MSTI regional-root-id %s, pathcost %u    
		MSTI bridge-prio %d, port-prio %d, hops %d   [|stp %d]   Alternate   Root    Designated  Config  Rapid STP   Topology Change Topology change Proposal    Learn   Forward Agreement   Topology change ACK 802.1d  802.1w  802.1s  [|atm]  Tx:     Rx:           0x%x    sunrpc  %s.%s > %s.%s: %d   ?    proc #%u    %s  [rpcver %u]    #%u  %u .%u null    set unset   getport dump    call    [|symantec] invalid ethertype %u    Unknown ethertype %s (0x%04x)   Unknown Ethertype (0x%04x)  %s  , length %u:    [|syslog]   unknown (%u)    SYSLOG %s.%s, length: %u    SYSLOG, length: %u
	Facility %s (%u), Severity %s (%u)
	Msg:    
	  kernel  user    mail    daemon  auth    syslog  lpr news    uucp    cron    authpriv    ftp ntp security    console local0  local1  local2  local3  local4  local5  local6  local7  emergency   alert   critical    error   warning notice  info    debug   %s > %s: [|tcp] %s.%s > %s.%s:  %s > %s:     tcp %d [bad hdr length %u - too short, < %lu]  tcp %d   [bad hdr length %u - too long, > %u]   tcp_print: calloc   , cksum 0x%04x   (incorrect (-> 0x%04x),     (correct),  %u:%u(%u)   ack %u  win %d  urg %d mss  %u eol nop wscale  sackOK  malformed sack  sack %d     {%u:%u} echo    echoreply   timestamp   cc  ccnew   ccecho  md5:    %02x    opt-%u: [len %d]     [RST    [!RST  [bad opt]   can't check -   valid   invalid [|tcp]  %#x IAC IAC %s %s   %s %#x   %s  %#x     SE %s  [|telnet]    [telnet    ,   
Telnet:    
   
				   %*s	        BINARY  ECHO    RCP SUPPRESS GO AHEAD   NAME    STATUS  TIMING MARK RCTE    NAOL    NAOP    NAOCRD  NAOHTS  NAOHTD  NAOFFD  NAOVTS  NAOVTD  NAOLFD  EXTEND ASCII    LOGOUT  BYTE MACRO  DATA ENTRY TERMINAL SUPDUP  SUPDUP OUTPUT   SEND LOCATION   TERMINAL TYPE   END OF RECORD   TACACS UID  OUTPUT MARKING  TTYLOC  3270 REGIME X.3 PAD NAWS    TSPEED  LFLOW   LINEMODE    XDISPLOC    OLD-ENVIRON AUTHENTICATION  ENCRYPT NEW-ENVIRON EOF SUSP    ABORT   EOR SE  NOP DMARK   BRK IP  AO  AYT EC  EL  GA  SB  WILL    WONT    DO  DONT    IAC IS  SEND    REPLY   NULL    KERBEROS_V4 KERBEROS_V5 SPX MINK    SRP RSA SSL LOKI    SSA KEA_SJ  KEA_SJ_INTEG    DSS NTLM    SUPPORT START   END REQUEST-START   REQUEST-END END_KEYID   DEC_KEYID   DES_CFB64   DES_OFB64   DES3_CFB64  DES3_OFB64  CAST5_40_CFB64  CAST5_40_OFB64  CAST128_CFB64   CAST128_OFB64   INFO     %d tftp-#%d     %s  block %d   tftp-err-#%d "   %s "   (unknown #%d)   RRQ WRQ DATA    ACK ERROR   OACK    EUNDEF  ENOTFOUND   EACCESS ENOSPACE    EBADOP  EBADID  EEXISTS ENOUSER [|timed]    TSP_%s  (tsp_type %#x)   [|timed]    vers %d     seq %d  hopcnt %d   time   %ld.%06ld    name   ANY ADJTIME ACK MASTERREQ   MASTERACK   SETTIME MASTERUP    SLAVEUP ELECTION    ACCEPT  REFUSE  CONFLICT    RESOLVE QUIT    DATE    DATEREQ DATEACK TRACEON TRACEOFF    MSITE   MSITEREQ    TEST    SETDATE SETDATEREQ  LOOP    [|token-ring]   %02x %02x %s %s %d:     %s %s %d:   %s  %s   [%d:%d]    rt = %x :%x  (%s)   (LLC %s)    Non-Broadcast   All-routes  Single-route    Forward Backward    516 1500    2052    4472    8144    11407   17800   ??  %s > %s:    %s.%s > %s.%s:  *       udp/vt %u %d / %d   udp/vat %u c%d %u%s  f%d     s%d    rtpv1   rtp +   [|udp]  truncated-udp %d    truncated-udplength %d  udp/%s %d c%d %s%s %d %u     %u  !opt    !ext    0x%04x  [|rtcp]     sr  [%d]    @%.2f %u %up %ub    rr  sdes %d     bye %d  type-0x%x %d    c%d     %ul %us %uj @%.2f+%.2f kip     [no cksum]  [bad udp cksum %x!]     [udp sum ok]    UDP, length %u  unknown type (%u)   VRRPv%u, %s , (ttl %u)  , vrid %u, prio %u  , authtype %s   , intvl %us, length %u  , (bad vrrp cksum %x)   , addrs (%d)    %c%s     auth " [|vrrp] Advertisement   none    simple  ah   <   dop-%d!     %s %d  [|] [|wb]    >   wb-kill     wb-id:  %u/%s:%u (max %u/%s:%u)    %c%s:%u  wb-rreq:    please repair %s %s:%u<%u:%u>   wb-rrep:    for %s %s:%u<%u:%u>     wb-dop:     %s:%u<%u:%u>    wb-preq:    need %u/%s:%u   wb-prep:    %u/%s:%u    wb-%d! dop-0!  dop-1!  RECT    LINE    ML  DEL XFORM   ELL CHAR    STR NOP PSCODE  PSCOMP  REF SKIP    HOLE        un  -nodefs *    [|zephyr] (%d)  zephyr 0.2  v%s    type %d  %s /%s USER_LOCATE USER_HIDE    hide   USER_UNHIDE  unhide  locate %s  ZEPHYR_ADMIN     zephyr-admin %s    ZEPHYR_CTL  CLIENT  SUBSCRIBE   SUBSCRIBE_NODEFS    UNSUBSCRIBE  %ssub%s    <%s,%s,%s>  GIMME    ret    GIMMEDEFS    gimme-defs CLEARSUB     clear-subs HM  REALM   ADD_SUBSCRIBE    realm add-subs REQ_SUBSCRIBE    realm req-subs RLM_SUBSCRIBE    realm rlm-sub  RLM_UNSUBSCRIBE  realm rlm-unsub    HM_CTL   hm_ctl %s  HM_STAT HMST_CLIENT GIMMESTATS   get-client-stats   WG_CTL   wg_ctl %s  LOGIN   USER_FLUSH   flush_locs NONE    OPSTAFF REALM-VISIBLE   REALM-ANNOUNCED NET-VISIBLE NET-ANNOUNCED    set-exposure %s     to %s   op %s  ZEPH    SENT    unsafe  unacked acked   hm-ack  hm-ctl  serv-ack    serv-nak    client-ack  stat    
	  %s version %s
  %s
 Usage: %s [-aAdDeflLnNOpqRStuUvxX] [-c count] [ -C file_size ]
 		[ -E algo:secret ] [ -F file ] [ -i interface ] [ -M secret ]
    		[ -r file ] [ -s snaplen ] [ -T type ] [ -w file ]
   		[ -W filecount ] [ -y datalinktype ] [ -Z user ]
 		[ expression ]
   Got %u
 %s: WARNING:    %s:     %s%0*d  pcap_stats: %s
 %u packets captured ,   %d packets received by filter   %d packets dropped by kernel
   too many output files   dump_packet_and_trunc: malloc   %s  shell   invalid packet count %s invalid file size %s    %d.%s    (%s)   Invalid adapter index   %s: ignoring option `-m %s'     (no libsmi support)
    invalid snaplen %s  vat wb  rpc rtp rtcp    snmp    cnfp    tftp    aodv    unknown packet type `%s'    invalid number of output files %s   invalid data link type %s   aAc:C:dDeE:fF:i:lLm:M:nNOpqr:Rs:StT:uUvw:W:xXy:YZ:  only -t, -tt, -ttt, and -tttt are supported Warning: setgid/setuid failed !
    reading from file %s, link-type %u
 reading from file %s, link-type %s (%s)
    -f and -r options are incompatible  No data link types. Data link types (use option -y to set):
      %s (%s)     DLT %d (not supported)
   %s: data link type %s
  snaplen raised from %d to %d    malloc of WFileNameAlt  unsupported data link type %s   unsupported data link type %d   tcpdump: Couldn't change to '%.32s' uid=%lu gid=%lu: %s
    tcpdump: Couldn't find user '%.32s'
    %s: verbose output suppressed, use -v or -vv for full protocol decode
  listening on %s, link-type %u, capture size %u bytes
   listening on %s, link-type %s (%s), capture size %u bytes
  %s: pcap_loop: %s
   (not supported)                                                        3:	 Q   <      %02d:%02d:%02d.%06u     %u.%06u     000000  %d.     %06d    Date fail   %04d-%02d-%02d  0s  %d%s    %sDissector error: print_unknown_data called with negative length   %sDissector error: print_unknown_data called with pointer past end of packet    #%d %s,     %s:     %s: WARNING:    copy_argv: malloc   can't open %s: %s   can't stat %s: %s   malloc(%d) for %s: %s   read %s: %s short read %s (%d != %d)    \%03o   y   w   d   h   m   s   idFileSystem=[W]
SectorUnit=[D]
Unit=[D]
Avail=[D]
SectorSize=[d]
  CreationTime=[T2]VolNameLength=[lb]
VolumeLabel=[c]
    Capabilities=[W]
MaxFileLen=[D]
VolNameLen=[lD]
Volume=[C]
 UnknownLevel
   InfoLevel=[d]
  data:   [|SMB]  Parameters=
    Data=
  Trans2Interim   %s param_length=%d data_length=%d
  Trans2Secondary
TotParam=[d]
TotData=[d]
ParamCnt=[d]
ParamOff=[d]
ParamDisp=[d]
DataCnt=[d]
DataOff=[d]
DataDisp=[d]
Handle=[d]
   TotParam=[d]
TotData=[d]
MaxParam=[d]
MaxData=[d]
MaxSetup=[b][P1]
Flags=[w]
TimeOut=[D]
Res1=[w]
ParamCnt=[d]
ParamOff=[d]
DataCnt=[d]
DataOff=[d]
SetupCnt=[b][P1]
   TotParam=[d]
TotData=[d]
Res1=[w]
ParamCnt=[d]
ParamOff=[d]
ParamDisp[d]
DataCnt=[d]
DataOff=[d]
DataDisp=[d]
SetupCnt=[b][P1]
 smb_bcc=%u
 *Process=[d]
Offset=[D]
Length=[D]
 Com2=[w]
Off2=[d]
Handle=[d]
LockType=[w]
TimeOut=[D]
UnlockCount=[d]
LockCount=[d]
    Com2=[w]
Off2=[d]
  *Process=[d]
[P2]Offset=[M]
Length=[M]
 Com2=[w]
Off2=[d]
BufSize=[d]
MpxMax=[d]
VcNum=[d]
SessionKey=[W]
PassLen=[d]
CryptLen=[d]
CryptOff=[d]
Pass&Name=
 NativeOS=[S]
NativeLanMan=[S]
PrimaryDomain=[S]
    Com2=[B]
Res=[B]
Off2=[d]
Action=[w]
   Com2=[w]
Off2=[d]
Action=[w]
   Com2=[B]
Res1=[B]
Off2=[d]
MaxBuffer=[d]
MaxMpx=[d]
VcNumber=[d]
SessionKey=[W]
CaseInsensitivePasswordLength=[d]
CaseSensitivePasswordLength=[d]
Res=[W]
Capabilities=[W]
Pass1&Pass2&Account&Domain&OS&LanMan=
   Coreplus/Lanman1/Lanman2 Protocol
DialectIndex=[d]
SecMode=[w]
MaxXMit=[d]
MaxMux=[d]
MaxVcs=[d]
BlkMode=[w]
SessionKey=[W]
ServerTime=[T1]TimeZone=[d]
Res=[W]
CryptKey=   NT1 Protocol
DialectIndex=[d]
SecMode=[B]
MaxMux=[d]
NumVcs=[d]
MaxBuffer=[D]
RawSize=[D]
SessionKey=[W]
Capabilities=[W]
ServerTime=[T3]TimeZone=[d]
CryptKey= Core Protocol
DialectIndex=[d]  *|Dialect=[Y]
  REQUEST REPLY   SMB PACKET: %s (%s)
    [P4]SMB Command   =  [B]
Error class   =  [BP1]
Error code    =  [d]
Flags1        =  [B]
Flags2        =  [B][P13]
Tree ID       =  [d]
Proc ID       =  [d]
UID           =  [d]
MID           =  [d]
Word Count    =  [b]
   NTError = %s
   SMBError = %s
  smb_vwv[%d]=%d (0x%X)
  smb_buf[]=  
SMB PACKET: %s (%s) (CHAINED)
 Bad andX offset: %u <= %u
  |Name=[S]
  TotParamCnt=[d] 
TotDataCnt=[d] 
MaxParmCnt=[d] 
MaxDataCnt=[d]
MaxSCnt=[d] 
TransFlags=[w] 
Res1=[w] 
Res2=[w] 
Res3=[w]
ParamCnt=[d] 
ParamOff=[d] 
DataCnt=[d] 
DataOff=[d] 
SUCnt=[d]
  |Unknown    TotParamCnt=[d] 
TotDataCnt=[d] 
Res1=[d]
ParamCnt=[d] 
ParamOff=[d] 
Res2=[d] 
DataCnt=[d] 
DataOff=[d] 
Res3=[d]
Lsetup=[d]
  \MAILSLOT\BROWSE    BROWSE PACKET
|Param    BROWSE PACKET:
Type=[B] (LocalMasterAnnouncement)
UpdateCount=[w]
Res1=[B]
AnnounceInterval=[d]
Name=[n2]
MajorVersion=[B]
MinorVersion=[B]
ServerType=[W]
ElectionVersion=[w]
BrowserConstant=[w]
 BROWSE PACKET:
Type=[B] (HostAnnouncement)
UpdateCount=[w]
Res1=[B]
AnnounceInterval=[d]
Name=[n2]
MajorVersion=[B]
MinorVersion=[B]
ServerType=[W]
ElectionVersion=[w]
BrowserConstant=[w]
    BROWSE PACKET:
Type=[B] (AnnouncementRequest)
Flags=[B]
ReplySystemName=[S]
    BROWSE PACKET:
Type=[B] (WorkgroupAnnouncement)
UpdateCount=[w]
Res1=[B]
AnnounceInterval=[d]
Name=[n2]
MajorVersion=[B]
MinorVersion=[B]
ServerType=[W]
CommentPointer=[W]
ServerName=[S]
 BROWSE PACKET:
Type=[B] (ElectionFrame)
ElectionVersion=[B]
OSSummary=[W]
Uptime=[(W, W)]
ServerName=[S]
   BROWSE PACKET:
Type=[B] (BecomeBackupBrowser)
Name=[S]
 BROWSE PACKET:
Type=[B] (GetBackupList)
ListCount?=[B]
Token=[W]
   BROWSE PACKET:
Type=[B] (BackupListResponse)
ServerCount?=[B]
Token=[W]
*Name=[S]
  BROWSE PACKET:
Type=[B] (MasterAnnouncement)
MasterName=[S]
    BROWSE PACKET:
Type=[B] (ResetBrowser)
Options=[B]
 Unknown Browser Frame   \PIPE\LANMAN    Command=[w]
Str1=[S]
Str2=[S]
  IPC     |Param  |Data   Attribute=[A]
SearchCount=[d]
Flags=[w]
Level=[dP4]
File=[S]
   Handle=[w]
Count=[d]
EOS=[w]
Eoffset=[d]
LastNameOfs=[w]
    NBT Session Packet:    Session Message Session Request Session Granted Session Reject,     Not listening on called name    Not listening for calling name  Called name not present Called name present, but insufficient resources Unspecified error 0x%X  Session Keepalive   Unknown packet type [rB]    
>>> NBT Session Packet [P1]NBT Session Message
Flags=[B]
Length=[rd]
  SMB    WARNING: Packet is continued in later TCP segments  WARNING: Short packet. Try increasing the snap length by %d
    Session packet:(raw data or continuation?)  [P1]NBT Session Request
Flags=[B]
Length=[rd]
Destination=[n1]
Source=[n1]
 [P1]NBT Session Granted
Flags=[B]
Length=[rd]
  [P1]NBT SessionReject
Flags=[B]
Length=[rd]
Reason=[B]
 Unspecified error 0x%X
 [P1]NBT Session Keepalive
Flags=[B]
Length=[rd]
    NBT - Unknown packet type
Type=[B]
 QUERY   REGISTRATION    RELEASE WACK    REFRESH(8)  REFRESH MULTIHOMED REGISTRATION OPUNKNOWN   
>>>    NBT UDP PACKET(137):    %s  ; NEGATIVE  ; POSITIVE  ; BROADCAST ; UNICAST   
TrnID=0x%X
OpCode=%d
NmFlags=0x%X
Rcode=%d
QueryCount=%d
AnswerCount=%d
AuthorityCount=%d
AddressRecCount=%d
  Corrupt packet??    QuestionRecords:    |Name=[n1]
QuestionType=[rw]
QuestionClass=[rw]
#   
ResourceRecords:   Name=[n1]
# ResType=[rw]
ResClass=[rw]
TTL=[rD]
    ResourceLength=%d
ResourceData=
    AddrType=[rw]
Address=[b.b.b.b]
    NumNames=[B]
   Name=[n2]	# <GROUP>     B   P   M   _   <DEREGISTERING>     <CONFLICT>  <ACTIVE>    <PERMANENT>     AdditionalData:
    ; REQUEST   ; RESPONSE  NBT UDP PACKET(138) 
>>> NBT UDP PACKET(138) Res=[rw] ID=[rw] IP=[b.b.b.b] Port=[rd] Length=[rd] Res2=[rw]
SourceName=[n1]
DestName=[n1]
#  NBF Packet:     [P5]#   
>>> NBF Packet
Type=0x%X   Length=[d] Signature=[w] Command=[B]
#  Unknown NBF Command#    Unknown NBF Command
    %s:
    found SMB packet at %d
 
>>> IPX transport  
>>> Unknown IPX    Add Group Name Query    , [P23]Name to add=[n2]#    [P5]ResponseCorrelator=[w]
[P16]Name to add=[n2]
   Add Name Query  Name In Conflict    Status Query    Terminate Trace Datagram    [P7]Destination=[n2]
Source=[n2]
   Broadcast Datagram  Name Query  , [P7]Name=[n2]#    [P1]SessionNumber=[B]
NameType=[B][P2]
ResponseCorrelator=[w]
Name=[n2]
Name of sender=[n2]
    Add Name Response   , [P1]GroupName=[w] [P4]Destination=[n2] Source=[n2]#   AddNameInProcess=[B]
GroupName=[w]
TransmitCorrelator=[w][P2]
Destination=[n2]
Source=[n2]
 Name Recognized [P1]Data2=[w]
TransmitCorrelator=[w]
ResponseCorelator=[w]
Destination=[n2]
Source=[n2]
    Status Response Data Ack    [P3]TransmitCorrelator=[w][P2]
RemoteSessionNumber=[B]
LocalSessionNumber=[B]
  Data First/Middle   Flags=[{RECEIVE_CONTINUE|NO_ACK||PIGGYBACK_ACK_INCLUDED|}]
ResyncIndicator=[w][P2]
ResponseCorelator=[w]
RemoteSessionNumber=[B]
LocalSessionNumber=[B]
    Data Only/Last  Flags=[{|NO_ACK|PIGGYBACK_ACK_ALLOWED|PIGGYBACK_ACK_INCLUDED|}]
ResyncIndicator=[w][P2]
ResponseCorelator=[w]
RemoteSessionNumber=[B]
LocalSessionNumber=[B]
   Session Confirm Data1=[B]
Data2=[w]
TransmitCorrelator=[w]
ResponseCorelator=[w]
RemoteSessionNumber=[B]
LocalSessionNumber=[B]
    Session End [P1]Data2=[w][P4]
RemoteSessionNumber=[B]
LocalSessionNumber=[B]
   Session Initialize  No Receive  Flags=[{|SEND_NO_ACK}]
DataBytesAccepted=[b][P4]
RemoteSessionNumber=[B]
LocalSessionNumber=[B]
    Receive Outstanding [P1]DataBytesAccepted=[b][P4]
RemoteSessionNumber=[B]
LocalSessionNumber=[B]
   Receive Continue    [P2]TransmitCorrelator=[w]
[P2]RemoteSessionNumber=[B]
LocalSessionNumber=[B]
  Session Alive   TRANSACT2_OPEN  Flags2=[w]
Mode=[w]
SearchAttrib=[A]
Attrib=[A]
Time=[T2]
OFun=[w]
Size=[D]
Res=([w, w, w, w, w])
Path=[S]  Handle=[d]
Attrib=[A]
Time=[T2]
Size=[D]
Access=[w]
Type=[w]
State=[w]
Action=[w]
Inode=[W]
OffErr=[d]
|EALength=[d]
   TRANSACT2_FINDFIRST TRANSACT2_FINDNEXT  TRANSACT2_QFSINFO   TRANSACT2_SETFSINFO TRANSACT2_QPATHINFO TRANSACT2_SETPATHINFO   TRANSACT2_QFILEINFO TRANSACT2_SETFILEINFO   TRANSACT2_FSCTL TRANSACT2_IOCTL TRANSACT2_FINDNOTIFYFIRST   TRANSACT2_FINDNOTIFYNEXT    TRANSACT2_MKDIR SMBunknown  SMBtcon Path=[Z]
Password=[Z]
Device=[Z]
   MaxXmit=[d]
TreeId=[d]
 SMBtdis SMBexit SMBioctl    SMBecho ReverbCount=[d]
    SequenceNum=[d]
    SMBulogoffX SMBgetatr   Path=[Z]
   Attribute=[A]
Time=[T2]Size=[D]
Res=([w,w,w,w,w])
  SMBsetatr   Attribute=[A]
Time=[T2]Res=([w,w,w,w,w])
   SMBchkpth   SMBsearch   Count=[d]
Attrib=[A]
   Path=[Z]
BlkType=[B]
BlkLen=[d]
|Res1=[B]
Mask=[s11]
Srv1=[B]
DirIndex=[d]
Srv2=[w]
Res2=[W]
   Count=[d]
  BlkType=[B]
BlkLen=[d]
*
Res1=[B]
Mask=[s11]
Srv1=[B]
DirIndex=[d]
Srv2=[w]
Res2=[W]
Attrib=[a]
Time=[T1]Size=[D]
Name=[s13]
   SMBopen Mode=[w]
Attribute=[A]
 Handle=[d]
OAttrib=[A]
Time=[T2]Size=[D]
Access=[w]
    SMBcreate   Attrib=[A]
Time=[T2]    Handle=[d]
 SMBmknew    SMBunlink   Attrib=[A]
 SMBread Handle=[d]
ByteCount=[d]
Offset=[D]
CountLeft=[d]
  Count=[d]
Res=([w,w,w,w])
  SMBwrite    SMBclose    Handle=[d]
Time=[T2]    SMBmkdir    SMBrmdir    SMBdskattr  TotalUnits=[d]
BlocksPerUnit=[d]
BlockSize=[d]
FreeUnits=[d]
Media=[w]
 SMBmv   OldPath=[Z]
NewPath=[Z]
    SMBsetdir   SMBlseek    Handle=[d]
Mode=[w]
Offset=[D]
 Offset=[D]
 SMBflush    SMBsplopen  SetupLen=[d]
Mode=[w]
  Ident=[Z]
  SMBsplclose SMBsplretq  MaxCount=[d]
StartIndex=[d]
    Count=[d]
Index=[d]
    *Time=[T2]Status=[B]
JobID=[d]
Size=[D]
Res=[B]Name=[s16]
  SMBsplwr    SMBlock Handle=[d]
Count=[D]
Offset=[D]
    SMBunlock   SMBreadbraw Handle=[d]
Offset=[D]
MaxCount=[d]
MinCount=[d]
TimeOut=[D]
Res=[d]
    SMBwritebraw    Handle=[d]
TotalCount=[d]
Res=[w]
Offset=[D]
TimeOut=[D]
WMode=[w]
Res2=[W]
|DataSize=[d]
DataOff=[d]
  WriteRawAck SMBwritec   SMBwriteclose   Handle=[d]
Count=[d]
Offset=[D]
Time=[T2]Res=([w,w,w,w,w,w])    SMBlockread SMBwriteunlock  SMBreadBmpx Handle=[d]
Offset=[D]
MaxCount=[d]
MinCount=[d]
TimeOut=[D]
Res=[w]
    Offset=[D]
TotCount=[d]
Remaining=[d]
Res=([w,w])
DataSize=[d]
DataOff=[d]
 SMBwriteBmpx    Handle=[d]
TotCount=[d]
Res=[w]
Offset=[D]
TimeOut=[D]
WMode=[w]
Res2=[W]
DataSize=[d]
DataOff=[d]
 Remaining=[d]
  SMBwriteBs  Handle=[d]
TotCount=[d]
Offset=[D]
Res=[W]
DataSize=[d]
DataOff=[d]
    SMBsetattrE Handle=[d]
CreationTime=[T2]AccessTime=[T2]ModifyTime=[T2]  SMBgetattrE CreationTime=[T2]AccessTime=[T2]ModifyTime=[T2]Size=[D]
AllocSize=[D]
Attribute=[A]
    SMBtranss   SMBioctls   SMBcopy TreeID2=[d]
OFun=[w]
Flags=[w]
 Path=[S]
NewPath=[S]
   CopyCount=[d]
  |ErrStr=[S]
    SMBmove MoveCount=[d]
  SMBopenX    Com2=[w]
Off2=[d]
Flags=[w]
Mode=[w]
SearchAttrib=[A]
Attrib=[A]
Time=[T2]OFun=[w]
Size=[D]
TimeOut=[D]
Res=[W]
    Path=[S]
   Com2=[w]
Off2=[d]
Handle=[d]
Attrib=[A]
Time=[T2]Size=[D]
Access=[w]
Type=[w]
State=[w]
Action=[w]
FileID=[W]
Res=[w]
  SMBreadX    Com2=[w]
Off2=[d]
Handle=[d]
Offset=[D]
MaxCount=[d]
MinCount=[d]
TimeOut=[D]
CountLeft=[d]
    Com2=[w]
Off2=[d]
Remaining=[d]
Res=[W]
DataSize=[d]
DataOff=[d]
Res=([w,w,w,w])
   SMBwriteX   Com2=[w]
Off2=[d]
Handle=[d]
Offset=[D]
TimeOut=[D]
WMode=[w]
CountLeft=[d]
Res=[w]
DataSize=[d]
DataOff=[d]
   Com2=[w]
Off2=[d]
Count=[d]
Remaining=[d]
Res=[W]
  SMBffirst   Path=[Z]
BlkType=[B]
BlkLen=[d]
|Res1=[B]
Mask=[s11]
Srv1=[B]
DirIndex=[d]
Srv2=[w]
    SMBfunique  SMBfclose   SMBfindnclose   SMBfindclose    SMBsends    Source=[Z]
Dest=[Z]
    SMBsendstrt GroupID=[d]
    SMBsendend  SMBsendtxt  SMBsendb    SMBfwdname  SMBcancelf  SMBgetmac   SMBnegprot  SMBsesssetupX   SMBtconX    Com2=[w]
Off2=[d]
Flags=[w]
PassLen=[d]
Passwd&Path&Device=
    ServiceType=[R]
    SMBlockingX SMBtrans2   SMBtranss2  SMBctemp    SMBreadBs   SMBtrans    SMBnttrans  SMBnttranss SMBntcreateX    Com2=[w]
Off2=[d]
Res=[b]
NameLen=[ld]
Flags=[W]
RootDirectoryFid=[D]
AccessMask=[W]
AllocationSize=[L]
ExtFileAttributes=[W]
ShareAccess=[W]
CreateDisposition=[W]
CreateOptions=[W]
ImpersonationLevel=[W]
SecurityFlags=[b]
 Path=[C]
   Com2=[w]
Off2=[d]
OplockLevel=[b]
Fid=[d]
CreateAction=[W]
CreateTime=[T3]LastAccessTime=[T3]LastWriteTime=[T3]ChangeTime=[T3]ExtFileAttributes=[W]
AllocationSize=[L]
EndOfFile=[L]
FileType=[w]
DeviceState=[w]
Directory=[b]
    SMBntcancel %.*s    [%03X]  %02X        WARNING: Short packet. Try increasing the snap length   Workstation Client? Server  Master Browser  Domain Controller   Browser Server  Unknown NULL
   (Can't convert time)
   READONLY|HIDDEN|SYSTEM|VOLUME|DIR|ARCHIVE|  %u (0x%x)   %d (0x%x)   %llu (0x%llx)   0x%X    %u  %s  Error! ASCIIZ buffer of type %u %-*.*s  %02x    %-15.15s NameType=0x%02X (%s)   Data: (%lu bytes)
  END OF BUFFER   SUCCESS %s - %s (%s)    %s - %d ERROR: Unknown error (%d,%d)    STATUS_SUCCESS  0x%08x  ERRnowrite  Attempt to write on write-protected diskette.   ERRbadunit  Unknown unit.   ERRnotready Drive not ready.    ERRbadcmd   Unknown command.    ERRdata Data error (CRC).   ERRbadreq   Bad request structure length.   ERRseek Seek error. ERRbadmedia Unknown media type. ERRbadsector    Sector not found.   ERRnopaper  Printer out of paper.   ERRwrite    Write fault.    ERRread Read fault. ERRgeneral  General failure.    ERRbadshare A open conflicts with an existing open. ERRlock A Lock request conflicted with an existing lock or specified an invalid mode, or an Unlock requested attempted to remove a lock held by another process.    ERRwrongdisk    The wrong disk was found in a drive.    ERRFCBUnavail   No FCBs are available to process request.   ERRsharebufexc  A sharing buffer has been exceeded. ERRerror    Non-specific error code.    ERRbadpw    Bad password - name/password pair in a Tree Connect or Session Setup are invalid.   ERRbadtype  reserved.   ERRaccess   The requester does not have the necessary access rights within the specified context for the requested function. The context is defined by the TID or the UID.  ERRinvnid   The tree ID (TID) specified in a command was invalid.   ERRinvnetname   Invalid network name in tree connect.   ERRinvdevice    Invalid device - printer request made to non-printer connection or non-printer request made to printer connection.  ERRqfull    Print queue full (files) -- returned by open print file.    ERRqtoobig  Print queue full -- no space.   ERRqeof EOF on print queue dump.    ERRinvpfid  Invalid print file FID. ERRsmbcmd   The server did not recognize the command received.  ERRsrverror The server encountered an internal error, e.g., system file unavailable.    ERRfilespecs    The file handle (FID) and pathname parameters contained an invalid combination of values.   ERRreserved ERRbadpermits   The access permissions specified for a file or directory are not a valid combination.  The server cannot set the requested attribute.   ERRsetattrmode  The attribute mode in the Set File Attribute request is invalid.    ERRpaused   Server is paused.   ERRmsgoff   Not receiving messages. ERRnoroom   No room to buffer message.  ERRrmuns    Too many remote user names. ERRtimeout  Operation timed out.    ERRnoresource   No resources currently available for request.   ERRtoomanyuids  Too many UIDs active on this session.   ERRbaduid   The UID is not known as a valid ID on this session. ERRusempx   Temp unable to support Raw, use MPX mode.   ERRusestd   Temp unable to support Raw, use standard read/write.    ERRcontmpx  Continue in MPX mode.   ERRnosupport    Function not supported. ERRDOS  ERRSRV  ERRHRD  ERRXOS  ERRRMX1 ERRRMX2 ERRRMX3 ERRCMD  STATUS_WAIT_0   STATUS_WAIT_1   STATUS_WAIT_2   STATUS_WAIT_3   STATUS_WAIT_63  STATUS_ABANDONED    STATUS_ABANDONED_WAIT_0 STATUS_ABANDONED_WAIT_63    STATUS_USER_APC STATUS_KERNEL_APC   STATUS_ALERTED  STATUS_TIMEOUT  STATUS_PENDING  STATUS_REPARSE  STATUS_MORE_ENTRIES STATUS_NOT_ALL_ASSIGNED STATUS_SOME_NOT_MAPPED  STATUS_OPLOCK_BREAK_IN_PROGRESS STATUS_VOLUME_MOUNTED   STATUS_RXACT_COMMITTED  STATUS_NOTIFY_CLEANUP   STATUS_NOTIFY_ENUM_DIR  STATUS_NO_QUOTAS_FOR_ACCOUNT    STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED STATUS_PAGE_FAULT_TRANSITION    STATUS_PAGE_FAULT_DEMAND_ZERO   STATUS_PAGE_FAULT_COPY_ON_WRITE STATUS_PAGE_FAULT_GUARD_PAGE    STATUS_PAGE_FAULT_PAGING_FILE   STATUS_CACHE_PAGE_LOCKED    STATUS_CRASH_DUMP   STATUS_BUFFER_ALL_ZEROS STATUS_REPARSE_OBJECT   STATUS_NO_SHUTDOWN_IN_PROGRESS  STATUS_OBJECT_NAME_EXISTS   STATUS_THREAD_WAS_SUSPENDED STATUS_WORKING_SET_LIMIT_RANGE  STATUS_IMAGE_NOT_AT_BASE    STATUS_RXACT_STATE_CREATED  STATUS_SEGMENT_NOTIFICATION STATUS_LOCAL_USER_SESSION_KEY   STATUS_BAD_CURRENT_DIRECTORY    STATUS_SERIAL_MORE_WRITES   STATUS_REGISTRY_RECOVERED   STATUS_FT_READ_RECOVERY_FROM_BACKUP STATUS_FT_WRITE_RECOVERY    STATUS_SERIAL_COUNTER_TIMEOUT   STATUS_NULL_LM_PASSWORD STATUS_IMAGE_MACHINE_TYPE_MISMATCH  STATUS_RECEIVE_PARTIAL  STATUS_RECEIVE_EXPEDITED    STATUS_RECEIVE_PARTIAL_EXPEDITED    STATUS_EVENT_DONE   STATUS_EVENT_PENDING    STATUS_CHECKING_FILE_SYSTEM STATUS_FATAL_APP_EXIT   STATUS_PREDEFINED_HANDLE    STATUS_WAS_UNLOCKED STATUS_SERVICE_NOTIFICATION STATUS_WAS_LOCKED   STATUS_LOG_HARD_ERROR   STATUS_ALREADY_WIN32    STATUS_WX86_UNSIMULATE  STATUS_WX86_CONTINUE    STATUS_WX86_SINGLE_STEP STATUS_WX86_BREAKPOINT  STATUS_WX86_EXCEPTION_CONTINUE  STATUS_WX86_EXCEPTION_LASTCHANCE    STATUS_WX86_EXCEPTION_CHAIN STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE  STATUS_NO_YIELD_PERFORMED   STATUS_TIMER_RESUME_IGNORED STATUS_GUARD_PAGE_VIOLATION STATUS_DATATYPE_MISALIGNMENT    STATUS_BREAKPOINT   STATUS_SINGLE_STEP  STATUS_BUFFER_OVERFLOW  STATUS_NO_MORE_FILES    STATUS_WAKE_SYSTEM_DEBUGGER STATUS_HANDLES_CLOSED   STATUS_NO_INHERITANCE   STATUS_GUID_SUBSTITUTION_MADE   STATUS_PARTIAL_COPY STATUS_DEVICE_PAPER_EMPTY   STATUS_DEVICE_POWERED_OFF   STATUS_DEVICE_OFF_LINE  STATUS_DEVICE_BUSY  STATUS_NO_MORE_EAS  STATUS_INVALID_EA_NAME  STATUS_EA_LIST_INCONSISTENT STATUS_INVALID_EA_FLAG  STATUS_VERIFY_REQUIRED  STATUS_EXTRANEOUS_INFORMATION   STATUS_RXACT_COMMIT_NECESSARY   STATUS_NO_MORE_ENTRIES  STATUS_FILEMARK_DETECTED    STATUS_MEDIA_CHANGED    STATUS_BUS_RESET    STATUS_END_OF_MEDIA STATUS_BEGINNING_OF_MEDIA   STATUS_MEDIA_CHECK  STATUS_SETMARK_DETECTED STATUS_NO_DATA_DETECTED STATUS_REDIRECTOR_HAS_OPEN_HANDLES  STATUS_SERVER_HAS_OPEN_HANDLES  STATUS_ALREADY_DISCONNECTED STATUS_LONGJUMP MAPI_E_LOGON_FAILED SEC_E_INSUFFICIENT_MEMORY   SEC_E_INVALID_HANDLE    SEC_E_UNSUPPORTED_FUNCTION  SEC_E_NO_IMPERSONATION  SEC_E_UNKNOWN_CREDENTIALS   SEC_E_NO_CREDENTIALS    SEC_E_MESSAGE_ALTERED   SEC_E_OUT_OF_SEQUENCE   SEC_E_NO_AUTHENTICATING_AUTHORITY   STATUS_UNSUCCESSFUL STATUS_NOT_IMPLEMENTED  STATUS_INVALID_INFO_CLASS   STATUS_INFO_LENGTH_MISMATCH STATUS_ACCESS_VIOLATION STATUS_IN_PAGE_ERROR    STATUS_PAGEFILE_QUOTA   STATUS_INVALID_HANDLE   STATUS_BAD_INITIAL_STACK    STATUS_BAD_INITIAL_PC   STATUS_INVALID_CID  STATUS_TIMER_NOT_CANCELED   STATUS_INVALID_PARAMETER    STATUS_NO_SUCH_DEVICE   STATUS_NO_SUCH_FILE STATUS_INVALID_DEVICE_REQUEST   STATUS_END_OF_FILE  STATUS_WRONG_VOLUME STATUS_NO_MEDIA_IN_DEVICE   STATUS_UNRECOGNIZED_MEDIA   STATUS_NONEXISTENT_SECTOR   STATUS_MORE_PROCESSING_REQUIRED STATUS_NO_MEMORY    STATUS_CONFLICTING_ADDRESSES    STATUS_NOT_MAPPED_VIEW  STATUS_UNABLE_TO_FREE_VM    STATUS_UNABLE_TO_DELETE_SECTION STATUS_INVALID_SYSTEM_SERVICE   STATUS_ILLEGAL_INSTRUCTION  STATUS_INVALID_LOCK_SEQUENCE    STATUS_INVALID_VIEW_SIZE    STATUS_INVALID_FILE_FOR_SECTION STATUS_ALREADY_COMMITTED    STATUS_ACCESS_DENIED    STATUS_BUFFER_TOO_SMALL STATUS_OBJECT_TYPE_MISMATCH STATUS_NONCONTINUABLE_EXCEPTION STATUS_INVALID_DISPOSITION  STATUS_UNWIND   STATUS_BAD_STACK    STATUS_INVALID_UNWIND_TARGET    STATUS_NOT_LOCKED   STATUS_PARITY_ERROR STATUS_UNABLE_TO_DECOMMIT_VM    STATUS_NOT_COMMITTED    STATUS_INVALID_PORT_ATTRIBUTES  STATUS_PORT_MESSAGE_TOO_LONG    STATUS_INVALID_PARAMETER_MIX    STATUS_INVALID_QUOTA_LOWER  STATUS_DISK_CORRUPT_ERROR   STATUS_OBJECT_NAME_INVALID  STATUS_OBJECT_NAME_NOT_FOUND    STATUS_OBJECT_NAME_COLLISION    STATUS_PORT_DISCONNECTED    STATUS_DEVICE_ALREADY_ATTACHED  STATUS_OBJECT_PATH_INVALID  STATUS_OBJECT_PATH_NOT_FOUND    STATUS_OBJECT_PATH_SYNTAX_BAD   STATUS_DATA_OVERRUN STATUS_DATA_LATE_ERROR  STATUS_DATA_ERROR   STATUS_CRC_ERROR    STATUS_SECTION_TOO_BIG  STATUS_PORT_CONNECTION_REFUSED  STATUS_INVALID_PORT_HANDLE  STATUS_SHARING_VIOLATION    STATUS_QUOTA_EXCEEDED   STATUS_INVALID_PAGE_PROTECTION  STATUS_MUTANT_NOT_OWNED STATUS_SEMAPHORE_LIMIT_EXCEEDED STATUS_PORT_ALREADY_SET STATUS_SECTION_NOT_IMAGE    STATUS_SUSPEND_COUNT_EXCEEDED   STATUS_THREAD_IS_TERMINATING    STATUS_BAD_WORKING_SET_LIMIT    STATUS_INCOMPATIBLE_FILE_MAP    STATUS_SECTION_PROTECTION   STATUS_EAS_NOT_SUPPORTED    STATUS_EA_TOO_LARGE STATUS_NONEXISTENT_EA_ENTRY STATUS_NO_EAS_ON_FILE   STATUS_EA_CORRUPT_ERROR STATUS_FILE_LOCK_CONFLICT   STATUS_LOCK_NOT_GRANTED STATUS_DELETE_PENDING   STATUS_CTL_FILE_NOT_SUPPORTED   STATUS_UNKNOWN_REVISION STATUS_REVISION_MISMATCH    STATUS_INVALID_OWNER    STATUS_INVALID_PRIMARY_GROUP    STATUS_NO_IMPERSONATION_TOKEN   STATUS_CANT_DISABLE_MANDATORY   STATUS_NO_LOGON_SERVERS STATUS_NO_SUCH_LOGON_SESSION    STATUS_NO_SUCH_PRIVILEGE    STATUS_PRIVILEGE_NOT_HELD   STATUS_INVALID_ACCOUNT_NAME STATUS_USER_EXISTS  STATUS_NO_SUCH_USER STATUS_GROUP_EXISTS STATUS_NO_SUCH_GROUP    STATUS_MEMBER_IN_GROUP  STATUS_MEMBER_NOT_IN_GROUP  STATUS_LAST_ADMIN   STATUS_WRONG_PASSWORD   STATUS_ILL_FORMED_PASSWORD  STATUS_PASSWORD_RESTRICTION STATUS_LOGON_FAILURE    STATUS_ACCOUNT_RESTRICTION  STATUS_INVALID_LOGON_HOURS  STATUS_INVALID_WORKSTATION  STATUS_PASSWORD_EXPIRED STATUS_ACCOUNT_DISABLED STATUS_NONE_MAPPED  STATUS_TOO_MANY_LUIDS_REQUESTED STATUS_LUIDS_EXHAUSTED  STATUS_INVALID_SUB_AUTHORITY    STATUS_INVALID_ACL  STATUS_INVALID_SID  STATUS_INVALID_SECURITY_DESCR   STATUS_PROCEDURE_NOT_FOUND  STATUS_INVALID_IMAGE_FORMAT STATUS_NO_TOKEN STATUS_BAD_INHERITANCE_ACL  STATUS_RANGE_NOT_LOCKED STATUS_DISK_FULL    STATUS_SERVER_DISABLED  STATUS_SERVER_NOT_DISABLED  STATUS_TOO_MANY_GUIDS_REQUESTED STATUS_GUIDS_EXHAUSTED  STATUS_INVALID_ID_AUTHORITY STATUS_AGENTS_EXHAUSTED STATUS_INVALID_VOLUME_LABEL STATUS_SECTION_NOT_EXTENDED STATUS_NOT_MAPPED_DATA  STATUS_RESOURCE_DATA_NOT_FOUND  STATUS_RESOURCE_TYPE_NOT_FOUND  STATUS_RESOURCE_NAME_NOT_FOUND  STATUS_ARRAY_BOUNDS_EXCEEDED    STATUS_FLOAT_DENORMAL_OPERAND   STATUS_FLOAT_DIVIDE_BY_ZERO STATUS_FLOAT_INEXACT_RESULT STATUS_FLOAT_INVALID_OPERATION  STATUS_FLOAT_OVERFLOW   STATUS_FLOAT_STACK_CHECK    STATUS_FLOAT_UNDERFLOW  STATUS_INTEGER_DIVIDE_BY_ZERO   STATUS_INTEGER_OVERFLOW STATUS_PRIVILEGED_INSTRUCTION   STATUS_TOO_MANY_PAGING_FILES    STATUS_FILE_INVALID STATUS_ALLOTTED_SPACE_EXCEEDED  STATUS_INSUFFICIENT_RESOURCES   STATUS_DFS_EXIT_PATH_FOUND  STATUS_DEVICE_DATA_ERROR    STATUS_DEVICE_NOT_CONNECTED STATUS_DEVICE_POWER_FAILURE STATUS_FREE_VM_NOT_AT_BASE  STATUS_MEMORY_NOT_ALLOCATED STATUS_WORKING_SET_QUOTA    STATUS_MEDIA_WRITE_PROTECTED    STATUS_DEVICE_NOT_READY STATUS_INVALID_GROUP_ATTRIBUTES STATUS_BAD_IMPERSONATION_LEVEL  STATUS_CANT_OPEN_ANONYMOUS  STATUS_BAD_VALIDATION_CLASS STATUS_BAD_TOKEN_TYPE   STATUS_BAD_MASTER_BOOT_RECORD   STATUS_INSTRUCTION_MISALIGNMENT STATUS_INSTANCE_NOT_AVAILABLE   STATUS_PIPE_NOT_AVAILABLE   STATUS_INVALID_PIPE_STATE   STATUS_PIPE_BUSY    STATUS_ILLEGAL_FUNCTION STATUS_PIPE_DISCONNECTED    STATUS_PIPE_CLOSING STATUS_PIPE_CONNECTED   STATUS_PIPE_LISTENING   STATUS_INVALID_READ_MODE    STATUS_IO_TIMEOUT   STATUS_FILE_FORCED_CLOSED   STATUS_PROFILING_NOT_STARTED    STATUS_PROFILING_NOT_STOPPED    STATUS_COULD_NOT_INTERPRET  STATUS_FILE_IS_A_DIRECTORY  STATUS_NOT_SUPPORTED    STATUS_REMOTE_NOT_LISTENING STATUS_DUPLICATE_NAME   STATUS_BAD_NETWORK_PATH STATUS_NETWORK_BUSY STATUS_DEVICE_DOES_NOT_EXIST    STATUS_TOO_MANY_COMMANDS    STATUS_ADAPTER_HARDWARE_ERROR   STATUS_INVALID_NETWORK_RESPONSE STATUS_UNEXPECTED_NETWORK_ERROR STATUS_BAD_REMOTE_ADAPTER   STATUS_PRINT_QUEUE_FULL STATUS_NO_SPOOL_SPACE   STATUS_PRINT_CANCELLED  STATUS_NETWORK_NAME_DELETED STATUS_NETWORK_ACCESS_DENIED    STATUS_BAD_DEVICE_TYPE  STATUS_BAD_NETWORK_NAME STATUS_TOO_MANY_NAMES   STATUS_TOO_MANY_SESSIONS    STATUS_SHARING_PAUSED   STATUS_REQUEST_NOT_ACCEPTED STATUS_REDIRECTOR_PAUSED    STATUS_NET_WRITE_FAULT  STATUS_PROFILING_AT_LIMIT   STATUS_NOT_SAME_DEVICE  STATUS_FILE_RENAMED STATUS_VIRTUAL_CIRCUIT_CLOSED   STATUS_NO_SECURITY_ON_OBJECT    STATUS_CANT_WAIT    STATUS_PIPE_EMPTY   STATUS_CANT_ACCESS_DOMAIN_INFO  STATUS_CANT_TERMINATE_SELF  STATUS_INVALID_SERVER_STATE STATUS_INVALID_DOMAIN_STATE STATUS_INVALID_DOMAIN_ROLE  STATUS_NO_SUCH_DOMAIN   STATUS_DOMAIN_EXISTS    STATUS_DOMAIN_LIMIT_EXCEEDED    STATUS_OPLOCK_NOT_GRANTED   STATUS_INVALID_OPLOCK_PROTOCOL  STATUS_INTERNAL_DB_CORRUPTION   STATUS_INTERNAL_ERROR   STATUS_GENERIC_NOT_MAPPED   STATUS_BAD_DESCRIPTOR_FORMAT    STATUS_INVALID_USER_BUFFER  STATUS_UNEXPECTED_IO_ERROR  STATUS_UNEXPECTED_MM_CREATE_ERR STATUS_UNEXPECTED_MM_MAP_ERROR  STATUS_UNEXPECTED_MM_EXTEND_ERR STATUS_NOT_LOGON_PROCESS    STATUS_LOGON_SESSION_EXISTS STATUS_INVALID_PARAMETER_1  STATUS_INVALID_PARAMETER_2  STATUS_INVALID_PARAMETER_3  STATUS_INVALID_PARAMETER_4  STATUS_INVALID_PARAMETER_5  STATUS_INVALID_PARAMETER_6  STATUS_INVALID_PARAMETER_7  STATUS_INVALID_PARAMETER_8  STATUS_INVALID_PARAMETER_9  STATUS_INVALID_PARAMETER_10 STATUS_INVALID_PARAMETER_11 STATUS_INVALID_PARAMETER_12 STATUS_REDIRECTOR_NOT_STARTED   STATUS_REDIRECTOR_STARTED   STATUS_STACK_OVERFLOW   STATUS_NO_SUCH_PACKAGE  STATUS_BAD_FUNCTION_TABLE   STATUS_VARIABLE_NOT_FOUND   STATUS_DIRECTORY_NOT_EMPTY  STATUS_FILE_CORRUPT_ERROR   STATUS_NOT_A_DIRECTORY  STATUS_BAD_LOGON_SESSION_STATE  STATUS_LOGON_SESSION_COLLISION  STATUS_NAME_TOO_LONG    STATUS_FILES_OPEN   STATUS_CONNECTION_IN_USE    STATUS_MESSAGE_NOT_FOUND    STATUS_PROCESS_IS_TERMINATING   STATUS_INVALID_LOGON_TYPE   STATUS_NO_GUID_TRANSLATION  STATUS_CANNOT_IMPERSONATE   STATUS_IMAGE_ALREADY_LOADED STATUS_ABIOS_NOT_PRESENT    STATUS_ABIOS_LID_NOT_EXIST  STATUS_ABIOS_LID_ALREADY_OWNED  STATUS_ABIOS_NOT_LID_OWNER  STATUS_ABIOS_INVALID_COMMAND    STATUS_ABIOS_INVALID_LID    STATUS_ABIOS_SELECTOR_NOT_AVAILABLE STATUS_ABIOS_INVALID_SELECTOR   STATUS_NO_LDT   STATUS_INVALID_LDT_SIZE STATUS_INVALID_LDT_OFFSET   STATUS_INVALID_LDT_DESCRIPTOR   STATUS_INVALID_IMAGE_NE_FORMAT  STATUS_RXACT_INVALID_STATE  STATUS_RXACT_COMMIT_FAILURE STATUS_MAPPED_FILE_SIZE_ZERO    STATUS_TOO_MANY_OPENED_FILES    STATUS_CANCELLED    STATUS_CANNOT_DELETE    STATUS_INVALID_COMPUTER_NAME    STATUS_FILE_DELETED STATUS_SPECIAL_ACCOUNT  STATUS_SPECIAL_GROUP    STATUS_SPECIAL_USER STATUS_MEMBERS_PRIMARY_GROUP    STATUS_FILE_CLOSED  STATUS_TOO_MANY_THREADS STATUS_THREAD_NOT_IN_PROCESS    STATUS_TOKEN_ALREADY_IN_USE STATUS_PAGEFILE_QUOTA_EXCEEDED  STATUS_COMMITMENT_LIMIT STATUS_INVALID_IMAGE_LE_FORMAT  STATUS_INVALID_IMAGE_NOT_MZ STATUS_INVALID_IMAGE_PROTECT    STATUS_INVALID_IMAGE_WIN_16 STATUS_LOGON_SERVER_CONFLICT    STATUS_TIME_DIFFERENCE_AT_DC    STATUS_SYNCHRONIZATION_REQUIRED STATUS_DLL_NOT_FOUND    STATUS_OPEN_FAILED  STATUS_IO_PRIVILEGE_FAILED  STATUS_ORDINAL_NOT_FOUND    STATUS_ENTRYPOINT_NOT_FOUND STATUS_CONTROL_C_EXIT   STATUS_LOCAL_DISCONNECT STATUS_REMOTE_DISCONNECT    STATUS_REMOTE_RESOURCES STATUS_LINK_FAILED  STATUS_LINK_TIMEOUT STATUS_INVALID_CONNECTION   STATUS_INVALID_ADDRESS  STATUS_DLL_INIT_FAILED  STATUS_MISSING_SYSTEMFILE   STATUS_UNHANDLED_EXCEPTION  STATUS_APP_INIT_FAILURE STATUS_PAGEFILE_CREATE_FAILED   STATUS_NO_PAGEFILE  STATUS_INVALID_LEVEL    STATUS_WRONG_PASSWORD_CORE  STATUS_ILLEGAL_FLOAT_CONTEXT    STATUS_PIPE_BROKEN  STATUS_REGISTRY_CORRUPT STATUS_REGISTRY_IO_FAILED   STATUS_NO_EVENT_PAIR    STATUS_UNRECOGNIZED_VOLUME  STATUS_SERIAL_NO_DEVICE_INITED  STATUS_NO_SUCH_ALIAS    STATUS_MEMBER_NOT_IN_ALIAS  STATUS_MEMBER_IN_ALIAS  STATUS_ALIAS_EXISTS STATUS_LOGON_NOT_GRANTED    STATUS_TOO_MANY_SECRETS STATUS_SECRET_TOO_LONG  STATUS_INTERNAL_DB_ERROR    STATUS_FULLSCREEN_MODE  STATUS_TOO_MANY_CONTEXT_IDS STATUS_LOGON_TYPE_NOT_GRANTED   STATUS_NOT_REGISTRY_FILE    STATUS_NT_CROSS_ENCRYPTION_REQUIRED STATUS_DOMAIN_CTRLR_CONFIG_ERROR    STATUS_FT_MISSING_MEMBER    STATUS_ILL_FORMED_SERVICE_ENTRY STATUS_ILLEGAL_CHARACTER    STATUS_UNMAPPABLE_CHARACTER STATUS_UNDEFINED_CHARACTER  STATUS_FLOPPY_VOLUME    STATUS_FLOPPY_ID_MARK_NOT_FOUND STATUS_FLOPPY_WRONG_CYLINDER    STATUS_FLOPPY_UNKNOWN_ERROR STATUS_FLOPPY_BAD_REGISTERS STATUS_DISK_RECALIBRATE_FAILED  STATUS_DISK_OPERATION_FAILED    STATUS_DISK_RESET_FAILED    STATUS_SHARED_IRQ_BUSY  STATUS_FT_ORPHANING STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT STATUS_PARTITION_FAILURE    STATUS_INVALID_BLOCK_LENGTH STATUS_DEVICE_NOT_PARTITIONED   STATUS_UNABLE_TO_LOCK_MEDIA STATUS_UNABLE_TO_UNLOAD_MEDIA   STATUS_EOM_OVERFLOW STATUS_NO_MEDIA STATUS_NO_SUCH_MEMBER   STATUS_INVALID_MEMBER   STATUS_KEY_DELETED  STATUS_NO_LOG_SPACE STATUS_TOO_MANY_SIDS    STATUS_LM_CROSS_ENCRYPTION_REQUIRED STATUS_KEY_HAS_CHILDREN STATUS_CHILD_MUST_BE_VOLATILE   STATUS_DEVICE_CONFIGURATION_ERROR   STATUS_DRIVER_INTERNAL_ERROR    STATUS_INVALID_DEVICE_STATE STATUS_IO_DEVICE_ERROR  STATUS_DEVICE_PROTOCOL_ERROR    STATUS_BACKUP_CONTROLLER    STATUS_LOG_FILE_FULL    STATUS_TOO_LATE STATUS_NO_TRUST_LSA_SECRET  STATUS_NO_TRUST_SAM_ACCOUNT STATUS_TRUSTED_DOMAIN_FAILURE   STATUS_TRUSTED_RELATIONSHIP_FAILURE STATUS_EVENTLOG_FILE_CORRUPT    STATUS_EVENTLOG_CANT_START  STATUS_TRUST_FAILURE    STATUS_MUTANT_LIMIT_EXCEEDED    STATUS_NETLOGON_NOT_STARTED STATUS_ACCOUNT_EXPIRED  STATUS_POSSIBLE_DEADLOCK    STATUS_NETWORK_CREDENTIAL_CONFLICT  STATUS_REMOTE_SESSION_LIMIT STATUS_EVENTLOG_FILE_CHANGED    STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT    STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT    STATUS_NOLOGON_SERVER_TRUST_ACCOUNT STATUS_DOMAIN_TRUST_INCONSISTENT    STATUS_FS_DRIVER_REQUIRED   STATUS_NO_USER_SESSION_KEY  STATUS_USER_SESSION_DELETED STATUS_RESOURCE_LANG_NOT_FOUND  STATUS_INSUFF_SERVER_RESOURCES  STATUS_INVALID_BUFFER_SIZE  STATUS_INVALID_ADDRESS_COMPONENT    STATUS_INVALID_ADDRESS_WILDCARD STATUS_TOO_MANY_ADDRESSES   STATUS_ADDRESS_ALREADY_EXISTS   STATUS_ADDRESS_CLOSED   STATUS_CONNECTION_DISCONNECTED  STATUS_CONNECTION_RESET STATUS_TOO_MANY_NODES   STATUS_TRANSACTION_ABORTED  STATUS_TRANSACTION_TIMED_OUT    STATUS_TRANSACTION_NO_RELEASE   STATUS_TRANSACTION_NO_MATCH STATUS_TRANSACTION_RESPONDED    STATUS_TRANSACTION_INVALID_ID   STATUS_TRANSACTION_INVALID_TYPE STATUS_NOT_SERVER_SESSION   STATUS_NOT_CLIENT_SESSION   STATUS_CANNOT_LOAD_REGISTRY_FILE    STATUS_DEBUG_ATTACH_FAILED  STATUS_SYSTEM_PROCESS_TERMINATED    STATUS_DATA_NOT_ACCEPTED    STATUS_NO_BROWSER_SERVERS_FOUND STATUS_VDM_HARD_ERROR   STATUS_DRIVER_CANCEL_TIMEOUT    STATUS_REPLY_MESSAGE_MISMATCH   STATUS_MAPPED_ALIGNMENT STATUS_IMAGE_CHECKSUM_MISMATCH  STATUS_LOST_WRITEBEHIND_DATA    STATUS_CLIENT_SERVER_PARAMETERS_INVALID STATUS_PASSWORD_MUST_CHANGE STATUS_NOT_FOUND    STATUS_NOT_TINY_STREAM  STATUS_RECOVERY_FAILURE STATUS_STACK_OVERFLOW_READ  STATUS_FAIL_CHECK   STATUS_DUPLICATE_OBJECTID   STATUS_OBJECTID_EXISTS  STATUS_CONVERT_TO_LARGE STATUS_RETRY    STATUS_FOUND_OUT_OF_SCOPE   STATUS_ALLOCATE_BUCKET  STATUS_PROPSET_NOT_FOUND    STATUS_MARSHALL_OVERFLOW    STATUS_INVALID_VARIANT  STATUS_DOMAIN_CONTROLLER_NOT_FOUND  STATUS_ACCOUNT_LOCKED_OUT   STATUS_HANDLE_NOT_CLOSABLE  STATUS_CONNECTION_REFUSED   STATUS_GRACEFUL_DISCONNECT  STATUS_ADDRESS_ALREADY_ASSOCIATED   STATUS_ADDRESS_NOT_ASSOCIATED   STATUS_CONNECTION_INVALID   STATUS_CONNECTION_ACTIVE    STATUS_NETWORK_UNREACHABLE  STATUS_HOST_UNREACHABLE STATUS_PROTOCOL_UNREACHABLE STATUS_PORT_UNREACHABLE STATUS_REQUEST_ABORTED  STATUS_CONNECTION_ABORTED   STATUS_BAD_COMPRESSION_BUFFER   STATUS_USER_MAPPED_FILE STATUS_AUDIT_FAILED STATUS_TIMER_RESOLUTION_NOT_SET STATUS_CONNECTION_COUNT_LIMIT   STATUS_LOGIN_TIME_RESTRICTION   STATUS_LOGIN_WKSTA_RESTRICTION  STATUS_IMAGE_MP_UP_MISMATCH STATUS_INSUFFICIENT_LOGON_INFO  STATUS_BAD_DLL_ENTRYPOINT   STATUS_BAD_SERVICE_ENTRYPOINT   STATUS_LPC_REPLY_LOST   STATUS_IP_ADDRESS_CONFLICT1 STATUS_IP_ADDRESS_CONFLICT2 STATUS_REGISTRY_QUOTA_LIMIT STATUS_PATH_NOT_COVERED STATUS_NO_CALLBACK_ACTIVE   STATUS_LICENSE_QUOTA_EXCEEDED   STATUS_PWD_TOO_SHORT    STATUS_PWD_TOO_RECENT   STATUS_PWD_HISTORY_CONFLICT STATUS_PLUGPLAY_NO_DEVICE   STATUS_UNSUPPORTED_COMPRESSION  STATUS_INVALID_HW_PROFILE   STATUS_INVALID_PLUGPLAY_DEVICE_PATH STATUS_DRIVER_ORDINAL_NOT_FOUND STATUS_DRIVER_ENTRYPOINT_NOT_FOUND  STATUS_RESOURCE_NOT_OWNED   STATUS_TOO_MANY_LINKS   STATUS_QUOTA_LIST_INCONSISTENT  STATUS_FILE_IS_OFFLINE  STATUS_EVALUATION_EXPIRATION    STATUS_ILLEGAL_DLL_RELOCATION   STATUS_LICENSE_VIOLATION    STATUS_DLL_INIT_FAILED_LOGOFF   STATUS_DRIVER_UNABLE_TO_LOAD    STATUS_DFS_UNAVAILABLE  STATUS_VOLUME_DISMOUNTED    STATUS_WX86_INTERNAL_ERROR  STATUS_WX86_FLOAT_STACK_CHECK   STATUS_VALIDATE_CONTINUE    STATUS_NO_MATCH STATUS_NO_MORE_MATCHES  STATUS_NOT_A_REPARSE_POINT  STATUS_IO_REPARSE_TAG_INVALID   STATUS_IO_REPARSE_TAG_MISMATCH  STATUS_IO_REPARSE_DATA_INVALID  STATUS_IO_REPARSE_TAG_NOT_HANDLED   STATUS_REPARSE_POINT_NOT_RESOLVED   STATUS_DIRECTORY_IS_A_REPARSE_POINT STATUS_RANGE_LIST_CONFLICT  STATUS_SOURCE_ELEMENT_EMPTY STATUS_DESTINATION_ELEMENT_FULL STATUS_ILLEGAL_ELEMENT_ADDRESS  STATUS_MAGAZINE_NOT_PRESENT STATUS_REINITIALIZATION_NEEDED  STATUS_DEVICE_REQUIRES_CLEANING STATUS_DEVICE_DOOR_OPEN STATUS_ENCRYPTION_FAILED    STATUS_DECRYPTION_FAILED    STATUS_RANGE_NOT_FOUND  STATUS_NO_RECOVERY_POLICY   STATUS_NO_EFS   STATUS_WRONG_EFS    STATUS_NO_USER_KEYS STATUS_FILE_NOT_ENCRYPTED   STATUS_NOT_EXPORT_FORMAT    STATUS_FILE_ENCRYPTED   STATUS_WAKE_SYSTEM  STATUS_WMI_GUID_NOT_FOUND   STATUS_WMI_INSTANCE_NOT_FOUND   STATUS_WMI_ITEMID_NOT_FOUND STATUS_WMI_TRY_AGAIN    STATUS_SHARED_POLICY    STATUS_POLICY_OBJECT_NOT_FOUND  STATUS_POLICY_ONLY_IN_DS    STATUS_VOLUME_NOT_UPGRADED  STATUS_REMOTE_STORAGE_NOT_ACTIVE    STATUS_REMOTE_STORAGE_MEDIA_ERROR   STATUS_NO_TRACKING_SERVICE  STATUS_SERVER_SID_MISMATCH  STATUS_DS_NO_ATTRIBUTE_OR_VALUE STATUS_DS_INVALID_ATTRIBUTE_SYNTAX  STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED  STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS STATUS_DS_BUSY  STATUS_DS_UNAVAILABLE   STATUS_DS_NO_RIDS_ALLOCATED STATUS_DS_NO_MORE_RIDS  STATUS_DS_INCORRECT_ROLE_OWNER  STATUS_DS_RIDMGR_INIT_ERROR STATUS_DS_OBJ_CLASS_VIOLATION   STATUS_DS_CANT_ON_NON_LEAF  STATUS_DS_CANT_ON_RDN   STATUS_DS_CANT_MOD_OBJ_CLASS    STATUS_DS_CROSS_DOM_MOVE_FAILED STATUS_DS_GC_NOT_AVAILABLE  STATUS_DIRECTORY_SERVICE_REQUIRED   STATUS_REPARSE_ATTRIBUTE_CONFLICT   STATUS_CANT_ENABLE_DENY_ONLY    STATUS_FLOAT_MULTIPLE_FAULTS    STATUS_FLOAT_MULTIPLE_TRAPS STATUS_DEVICE_REMOVED   STATUS_JOURNAL_DELETE_IN_PROGRESS   STATUS_JOURNAL_NOT_ACTIVE   STATUS_NOINTERFACE  STATUS_DS_ADMIN_LIMIT_EXCEEDED  STATUS_DRIVER_FAILED_SLEEP  STATUS_MUTUAL_AUTHENTICATION_FAILED STATUS_CORRUPT_SYSTEM_FILE  STATUS_DATATYPE_MISALIGNMENT_ERROR  STATUS_WMI_READ_ONLY    STATUS_WMI_SET_FAILURE  STATUS_COMMITMENT_MINIMUM   STATUS_REG_NAT_CONSUMPTION  STATUS_TRANSPORT_FULL   STATUS_DS_SAM_INIT_FAILURE  STATUS_ONLY_IF_CONNECTED    STATUS_DS_SENSITIVE_GROUP_VIOLATION STATUS_PNP_RESTART_ENUMERATION  STATUS_JOURNAL_ENTRY_DELETED    STATUS_DS_CANT_MOD_PRIMARYGROUPID   STATUS_SYSTEM_IMAGE_BAD_SIGNATURE   STATUS_PNP_REBOOT_REQUIRED  STATUS_POWER_STATE_INVALID  STATUS_DS_INVALID_GROUP_TYPE    STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN    STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER  STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER   STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER  STATUS_DS_HAVE_PRIMARY_MEMBERS  STATUS_WMI_NOT_SUPPORTED    STATUS_INSUFFICIENT_POWER   STATUS_SAM_NEED_BOOTKEY_PASSWORD    STATUS_SAM_NEED_BOOTKEY_FLOPPY  STATUS_DS_CANT_START    STATUS_DS_INIT_FAILURE  STATUS_SAM_INIT_FAILURE STATUS_DS_GC_REQUIRED   STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY    STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS    STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED    STATUS_MULTIPLE_FAULT_VIOLATION STATUS_NOT_SUPPORTED_ON_SBS STATUS_WOW_ASSERTION    RPC_NT_INVALID_STRING_BINDING   RPC_NT_WRONG_KIND_OF_BINDING    RPC_NT_INVALID_BINDING  RPC_NT_PROTSEQ_NOT_SUPPORTED    RPC_NT_INVALID_RPC_PROTSEQ  RPC_NT_INVALID_STRING_UUID  RPC_NT_INVALID_ENDPOINT_FORMAT  RPC_NT_INVALID_NET_ADDR RPC_NT_NO_ENDPOINT_FOUND    RPC_NT_INVALID_TIMEOUT  RPC_NT_OBJECT_NOT_FOUND RPC_NT_ALREADY_REGISTERED   RPC_NT_TYPE_ALREADY_REGISTERED  RPC_NT_ALREADY_LISTENING    RPC_NT_NO_PROTSEQS_REGISTERED   RPC_NT_NOT_LISTENING    RPC_NT_UNKNOWN_MGR_TYPE RPC_NT_UNKNOWN_IF   RPC_NT_NO_BINDINGS  RPC_NT_NO_PROTSEQS  RPC_NT_CANT_CREATE_ENDPOINT RPC_NT_OUT_OF_RESOURCES RPC_NT_SERVER_UNAVAILABLE   RPC_NT_SERVER_TOO_BUSY  RPC_NT_INVALID_NETWORK_OPTIONS  RPC_NT_NO_CALL_ACTIVE   RPC_NT_CALL_FAILED  RPC_NT_CALL_FAILED_DNE  RPC_NT_PROTOCOL_ERROR   RPC_NT_UNSUPPORTED_TRANS_SYN    RPC_NT_UNSUPPORTED_TYPE RPC_NT_INVALID_TAG  RPC_NT_INVALID_BOUND    RPC_NT_NO_ENTRY_NAME    RPC_NT_INVALID_NAME_SYNTAX  RPC_NT_UNSUPPORTED_NAME_SYNTAX  RPC_NT_UUID_NO_ADDRESS  RPC_NT_DUPLICATE_ENDPOINT   RPC_NT_UNKNOWN_AUTHN_TYPE   RPC_NT_MAX_CALLS_TOO_SMALL  RPC_NT_STRING_TOO_LONG  RPC_NT_PROTSEQ_NOT_FOUND    RPC_NT_PROCNUM_OUT_OF_RANGE RPC_NT_BINDING_HAS_NO_AUTH  RPC_NT_UNKNOWN_AUTHN_SERVICE    RPC_NT_UNKNOWN_AUTHN_LEVEL  RPC_NT_INVALID_AUTH_IDENTITY    RPC_NT_UNKNOWN_AUTHZ_SERVICE    EPT_NT_INVALID_ENTRY    EPT_NT_CANT_PERFORM_OP  EPT_NT_NOT_REGISTERED   RPC_NT_NOTHING_TO_EXPORT    RPC_NT_INCOMPLETE_NAME  RPC_NT_INVALID_VERS_OPTION  RPC_NT_NO_MORE_MEMBERS  RPC_NT_NOT_ALL_OBJS_UNEXPORTED  RPC_NT_INTERFACE_NOT_FOUND  RPC_NT_ENTRY_ALREADY_EXISTS RPC_NT_ENTRY_NOT_FOUND  RPC_NT_NAME_SERVICE_UNAVAILABLE RPC_NT_INVALID_NAF_ID   RPC_NT_CANNOT_SUPPORT   RPC_NT_NO_CONTEXT_AVAILABLE RPC_NT_INTERNAL_ERROR   RPC_NT_ZERO_DIVIDE  RPC_NT_ADDRESS_ERROR    RPC_NT_FP_DIV_ZERO  RPC_NT_FP_UNDERFLOW RPC_NT_FP_OVERFLOW  RPC_P_RECEIVE_ALERTED   RPC_P_CONNECTION_CLOSED RPC_P_RECEIVE_FAILED    RPC_P_SEND_FAILED   RPC_P_TIMEOUT   RPC_P_SERVER_TRANSPORT_ERROR    RPC_P_EXCEPTION_OCCURED RPC_P_CONNECTION_SHUTDOWN   RPC_P_THREAD_LISTENING  RPC_NT_NO_MORE_ENTRIES  RPC_NT_SS_CHAR_TRANS_OPEN_FAIL  RPC_NT_SS_CHAR_TRANS_SHORT_FILE RPC_NT_SS_IN_NULL_CONTEXT   RPC_NT_SS_CONTEXT_MISMATCH  RPC_NT_SS_CONTEXT_DAMAGED   RPC_NT_SS_HANDLES_MISMATCH  RPC_NT_SS_CANNOT_GET_CALL_HANDLE    RPC_NT_NULL_REF_POINTER RPC_NT_ENUM_VALUE_OUT_OF_RANGE  RPC_NT_BYTE_COUNT_TOO_SMALL RPC_NT_BAD_STUB_DATA    RPC_NT_CALL_IN_PROGRESS RPC_NT_NO_MORE_BINDINGS RPC_NT_GROUP_MEMBER_NOT_FOUND   EPT_NT_CANT_CREATE  RPC_NT_INVALID_OBJECT   RPC_NT_NO_INTERFACES    RPC_NT_CALL_CANCELLED   RPC_NT_BINDING_INCOMPLETE   RPC_NT_COMM_FAILURE RPC_NT_UNSUPPORTED_AUTHN_LEVEL  RPC_NT_NO_PRINC_NAME    RPC_NT_NOT_RPC_ERROR    RPC_NT_UUID_LOCAL_ONLY  RPC_NT_SEC_PKG_ERROR    RPC_NT_NOT_CANCELLED    RPC_NT_INVALID_ES_ACTION    RPC_NT_WRONG_ES_VERSION RPC_NT_WRONG_STUB_VERSION   RPC_NT_INVALID_PIPE_OBJECT  RPC_NT_INVALID_PIPE_OPERATION   RPC_NT_WRONG_PIPE_VERSION   RPC_NT_SEND_INCOMPLETE  ERRbadfunc  Invalid function.   ERRbadfile  File not found. ERRbadpath  Directory invalid.  ERRnofids   No file descriptors available   ERRnoaccess Access denied.  ERRbadfid   Invalid file handle.    ERRbadmcb   Memory control blocks destroyed.    ERRnomem    Insufficient server memory to perform the requested function.   ERRbadmem   Invalid memory block address.   ERRbadenv   Invalid environment.    ERRbadformat    Invalid format. ERRbadaccess    Invalid open mode.  ERRbaddata  Invalid data.   ERR ERRbaddrive Invalid drive specified.    ERRremcd    A Delete Directory request attempted to remove the server's current directory.  ERRdiffdevice   Not same device.    ERRnofiles  A File Search command can find no more files matching the specified criteria.   The sharing mode specified for an Open conflicts with existing FIDs on the file.    ERRfilexists    The file named in a Create Directory, Make New File or Link request already exists. ERRbadpipe  Pipe invalid.   ERRpipebusy All instances of the requested pipe are busy.   ERRpipeclosing  Pipe close in progress. ERRnotconnected No process on other end of pipe.    ERRmoredata There is more data to be returned.  %d
 %u %u %u %u
    { 0x%x, %d, %d, 0x%08x },
  unimp   0x%x    ret #%d     ld  [%d]    ldh ldb #pktlen [x + %d]    #0x%x   ldx ldxb    4*([%d]&0xf)    M[%d]   st  stx ja  %d  jgt jge jeq jset    x   add sub mul div and or  lsh rsh neg tax txa (%03d) %-8s %-16s jt %d	jf %d   (%03d) %-8s %s  socket: %s  malloc: %s  SIOCGIFCONF: %s dummy   SIOCGIFFLAGS: %.*s: %s  SIOCGIFNETMASK: %.*s: %s    SIOCGIFBRDADDR: %.*s: %s    SIOCGIFDSTADDR: %.*s: %s    Error reading /proc/net/dev: %s /proc/net/dev   r   too many registers needed to evaluate expression    out of memory   unknown ip proto '%s'   unknown ether proto '%s'    esis    isis    clnp    unknown osi proto '%s'      snaplen of 0 rejects all packets    unknown data link type %d   syntax error in filter expression   expression rejects all packets  ethernet addresses supported only on ethernet/FDDI/token ring/802.11/ATM LANE/Fibre Channel ethernet address used in non-ether expression   libpcap was compiled without pf support libpcap was compiled on a machine without pf support    ARCnet address used in non-arc expression   no VLAN match after MPLS    no VLAN support for data link type %d   'vpi' supported only on raw ATM 'vci' supported only on raw ATM 'callref' supported only on raw ATM unsupported protocol over mpls  IrDA link-layer type filtering not implemented  DOCSIS link-layer type filtering not implemented    LAPD link-layer type filtering not implemented  no MPLS support for data link type %d   link-layer multicast filters supported only on ethernet/FDDI/token ring/ARCNET/802.11/ATM LANE/Fibre Channel    not a broadcast link    only link-layer/IP broadcast filters supported  ISO host filtering not implemented  net host    'tcp' modifier applied to %s    'sctp' modifier applied to %s   'udp' modifier applied to %s    'icmp' modifier applied to %s   'igmp' modifier applied to %s   'igrp' modifier applied to %s   'pim' modifier applied to %s    'vrrp' modifier applied to %s   ATALK host filtering not implemented    AARP host filtering not implemented SCA host filtering not implemented  LAT host filtering not implemented  MOPDL host filtering not implemented    MOPRC host filtering not implemented    'ip6' modifier applied to ip host   'icmp6' modifier applied to %s  'ah' modifier applied to %s 'esp' modifier applied to %s    'esis' modifier applied to %s   'isis' modifier applied to %s   'clnp' modifier applied to %s   'stp' modifier applied to %s    IPX host filtering not implemented  'netbeui' modifier applied to %s    'radio' modifier applied to %s  non-network bits set in "%s mask %s"    mask length must be <= 32   non-network bits set in "%s/%d" Mask syntax for networks only   direction applied to 'proto'    arp does not encapsulate another protocol   rarp does not encapsulate another protocol  atalk encapsulation is not specifiable  decnet encapsulation is not specifiable sca does not encapsulate another protocol   lat does not encapsulate another protocol   moprc does not encapsulate another protocol mopdl does not encapsulate another protocol 'udp proto' is bogus    'tcp proto' is bogus    'sctp proto' is bogus   'icmp proto' is bogus   'igmp proto' is bogus   'igrp proto' is bogus   'pim proto' is bogus    'vrrp proto' is bogus   'icmp6 proto' is bogus  'ah proto' is bogus 'stp proto' is bogus    'ipx proto' is bogus    'netbeui proto' is bogus    'radio proto' is bogus  bad protocol applied for 'protochain'   'protochain' not supported with radiotap headers    'protochain' not supported with PPI headers unsupported proto to gen_protochain illegal link layer address  illegal qualifier of 'port' illegal qualifier of 'portrange'    'gateway' requires a name   link layer applied in wrong context 'radio' is not a valid protocol type    data size must be 1, 2, or 4    unsupported index operation radio information not present in capture    IPv6 upper-layer protocol is not supported by proto[x]  inbound/outbound not supported on linktype %d   'ip' modifier applied to ip6 %s 'rarp' modifier applied to ip6 %s   'arp' modifier applied to ip6 %s    'decnet' modifier applied to ip6 %s no mask %s supported    invalid ip6 address %s  %s resolved to multiple address mask length must be <= %u   invalid qualifier against IPv6 address   for specified address family   unknown network '%s'    unknown ether host '%s' unknown FDDI host '%s'  unknown token ring host '%s'    unknown 802.11 host '%s'    unknown Fibre Channel host '%s' only ethernet/FDDI/token ring/802.11/ATM LANE/Fibre Channel supports link-level host name   unknown host '%s'   unknown host '%s'%s unknown port '%s'   port '%s' is tcp    port '%s' is sctp   port '%s' is udp    unknown port in range '%s'  port in range '%s' is tcp   port in range '%s' is sctp  port in range '%s' is udp   'gateway' not supported in this configuration   unknown protocol: %s    'metac' supported only on raw ATM   'bcc' supported only on raw ATM 'oam4sc' supported only on raw ATM  'oam4ec' supported only on raw ATM  'sc' supported only on raw ATM  'ilmic' supported only on raw ATM   'lane' supported only on raw ATM    'llc' supported only on raw ATM 'fisu' supported only on MTP2   'lssu' supported only on MTP2   'msu' supported only on MTP2    'sio' supported only on SS7 sio value %u too big; max value = 255   'opc' supported only on SS7 opc value %u too big; max value = 16383 'dpc' supported only on SS7 dpc value %u too big; max value = 16383 'sls' supported only on SS7 sls value %u too big; max value = 15    'oam' supported only on raw ATM 'oamf4' supported only on raw ATM   'connectmsg' supported only on raw ATM  'metaconnect' supported only on raw ATM KKK 2 L KKKKKKk K KKKKKKKKKiKKKKoK   W   T   ( )    $ U $ 6 7 l m $    6 7 f 1  1 2 3 4 5  o b $ d y z $ ( ) y z t  f $   e f U $ W o $ . / 0 o b Q d 1 h i j k l m 1 h i j k l m u v q g $ t T U 1 W y z p T U T U p  t b o d     e f e f t  m o q m o $ o  $ t y z p q r s $ y z y z  $           e f $   e f $   6 7   $ o      3 	 
 h i 
  $ j k l m q r s e f . / 0 e f $ $   " # o       6 7     i j k l m   $   u                     !   $ % & ' ( ) * + , - p q r s j k l m   8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d g k   p                    ! $ % & ' ( ) * + , - 1 2 3 4 5 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d g k   p                    ! $ % & ' ( ) * + , -   	 
 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d g k p                   ! $ . / 0 - 6 7 8 9 : ; < A B C D E F G H I J K L M N ] h i j k l m k q r s p   | y z    t   V W X Y    u [ \ n p   ] ^  _ ` a b    c d      K  K  KKKKKKKKKKKKKKKKKKKKK
   , # KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK) KK  KKKKKK	 K KK> KKKKKKKKKKKKKK**KKK   KKKKM R KKKKKKKKKKKKKKKKKKN Q Y KKK_ l q KKKKKKKx K**K KKKKKp   KKP )     KA A b  KKKKKKKKK. KKKKKKKKK KN K_ KK` KKK    U  { r s T  Z l }           x m          e    f q q   }  x    w x ~ g   j      v  h       i          P k ~ U U o    R T T Z Z R           {   q   }     R       Z Z    q         w x                                           U        Z Z                S    	 
   
                       ! " R          # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O     P       Q       R    	 
   
                         ! "                # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O     P       Q       R    	 
   
                         ! "                 # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O     P       Q         R   	 
   
                              "                   # $ % & '         , - . / 0 1 2 3 4 5 6 7 8 9                             H                     Q      R libpcap was compiled on a machine without pf support    %s  syntax error    memory exhausted     wxxyzzzzz{|}}}~~~~~~~~~  3   AB@CDEFGHIJKLMNOQPjk      ?RSTUmopqVW`XYZ[\]_^abcd 33  2,r -. 0 gh stuvyzw{x ln  
33  '  
54:>;<=$%ef"#& }        |~     /   1   33	(        ! *+  i  9786       gipoljkmvsrqtuh	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefn malloc: %s  any no suitable device found    socket: %s  %s: no IPv4 address assigned    SIOCGIFADDR: %s: %s SIOCGIFNETMASK: %s: %s  inet class for 0x%x unknown tcp udp %d-%d   %d.%d   malformed decnet address '%s'   /etc/ethers r   decnet name support not included, '%s' cannot be translated
    pup xns ip  ip6 arp rarp    sprite  mopdl   moprc   decnet  lat sca lanbridge   vexp    vprod   atalk   atalkarp    loopback    decdts  decdns  iso stp ipx netbeui not enough core %s for block-local relative jump: off=%d    no destination found    no jmp destination  multiple matches    division by zero    malloc  malloc: %s   	

 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~Statistics aren't available from a pcap_open_dead pcap_t    malloc: %s  DLT_NULL    %s is not one of the DLTs supported by this device  DLT %d is not one of the DLTs supported by this device  %s: %s
 F_GETFL: %s F_SETFL: %s Setting direction is not implemented on this platform   BSD loopback    DLT_EN10MB  Ethernet    DLT_IEEE802 Token ring  DLT_ARCNET  ARCNET  DLT_SLIP    SLIP    DLT_PPP PPP DLT_FDDI    FDDI    DLT_ATM_RFC1483 RFC 1483 LLC-encapsulated ATM   DLT_RAW Raw IP  DLT_SLIP_BSDOS  BSD/OS SLIP DLT_PPP_BSDOS   BSD/OS PPP  DLT_ATM_CLIP    Linux Classical IP-over-ATM DLT_PPP_SERIAL  PPP over serial DLT_PPP_ETHER   PPPoE   DLT_C_HDLC  Cisco HDLC  DLT_IEEE802_11  802.11  DLT_FRELAY  Frame Relay DLT_LOOP    OpenBSD loopback    DLT_ENC OpenBSD encapsulated IP DLT_LINUX_SLL   Linux cooked    DLT_LTALK   Localtalk   DLT_PFLOG   OpenBSD pflog file  DLT_PRISM_HEADER    802.11 plus Prism header    DLT_IP_OVER_FC  RFC 2625 IP-over-Fibre Channel  DLT_SUNATM  Sun raw ATM DLT_IEEE802_11_RADIO    802.11 plus BSD radio information header    DLT_APPLE_IP_OVER_IEEE1394  Apple IP-over-IEEE 1394 DLT_ARCNET_LINUX    Linux ARCNET    DLT_DOCSIS  DOCSIS  DLT_LINUX_IRDA  Linux IrDA  DLT_LINUX_LAPD  Linux vISDN LAPD    DLT_IEEE802_11_RADIO_AVS    802.11 plus AVS radio information header    DLT_SYMANTEC_FIREWALL   Symantec Firewall   DLT_JUNIPER_ATM1    Juniper ATM1 PIC    DLT_JUNIPER_ATM2    Juniper ATM2 PIC    DLT_JUNIPER_MLPPP   Juniper Multi-Link PPP  DLT_PPP_PPPD    PPP for pppd, with direction flag   DLT_JUNIPER_PPPOE   Juniper PPPoE   DLT_JUNIPER_PPPOE_ATM   Juniper PPPoE/ATM   DLT_GPRS_LLC    GPRS LLC    DLT_GPF_T   GPF-T   DLT_GPF_F   GPF-F   DLT_JUNIPER_PIC_PEER    Juniper PIC Peer    DLT_JUNIPER_MLFR    Juniper Multi-Link Frame Relay  DLT_ERF_ETH Ethernet with Endace ERF header DLT_ERF_POS Packet-over-SONET with Endace ERF header    DLT_JUNIPER_GGSN    Juniper GGSN PIC    DLT_JUNIPER_ES  Juniper Encryption Services PIC DLT_JUNIPER_MONITOR Juniper Passive Monitor PIC DLT_JUNIPER_SERVICES    Juniper Advanced Services PIC   DLT_JUNIPER_MFR Juniper FRF.16 Frame Relay  DLT_JUNIPER_ETHER   Juniper Ethernet    DLT_JUNIPER_PPP Juniper PPP DLT_JUNIPER_FRELAY  Juniper Frame Relay DLT_JUNIPER_CHDLC   Juniper C-HDLC  DLT_MFR FRF.16 Frame Relay  DLT_JUNIPER_VP  Juniper Voice PIC   DLT_MTP2    SS7 MTP2    DLT_A429    Arinc 429   DLT_A653_ICM    Arinc 653 Interpartition Communication  DLT_USB USB DLT_BLUETOOTH_HCI_H4    Bluetooth HCI UART transport layer  DLT_CAN20B  Controller Area Network (CAN) v. 2.0B   DLT_MTP2_WITH_PHDR  SS7 MTP2 with Pseudo-header libpcap version 0.9.8   Pseudo-device that captures on all interfaces   setfilter: No filter specified  Warning: Filter too complex for kernel
 malloc: %s  recv: %s    Warning: Kernel filter failed: %s
  Sending packets isn't supported on the "any" device Sending packets isn't supported in cooked mode  send: %s    recvfrom: %s    SIOCGSTAMP: %s  Setting direction is not supported on SOCK_PACKET sockets   Can't restore interface flags (SIOCGIFFLAGS failed: %s).
Please adjust manually.
Hint: This can't happen with Linux >= 2.2.0.
  Can't restore interface flags (SIOCSIFFLAGS failed: %s).
Please adjust manually.
Hint: This can't happen with Linux >= 2.2.0.
  SIOCGIFHWADDR: %s   SIOCGIFINDEX: %s    pcap_stats: %s  any Promiscuous mode not supported on the "any" device  strdup: %s  socket: %s  lo  isdn    isdY    close: %s   arptype %d not supported by libpcap - falling back to cooked socket bind: %s    getsockopt: %s  setsockopt: %s  pcap_open_live: The "any" device isn't supported on 2.0[.x]-kernel systems  unknown arptype %d  SIOCGIFFLAGS: %s    atexit failed   SIOCSIFFLAGS: %s    2.0 SIOCGIFMTU: %s                                                          	   	   
   
   c   c      d      e      f      g   h   h      j   2   2   3   3   i   i   k   k   l   l   q   q   r   r   s   s   u   u   v   v   w   w   x   x   y   y   z   z   {   {   |   |   }   }   ~   ~                                                                                                                                                                                                                                                                                                                                                         Statistics aren't available from savefiles  Setting direction is not supported on savefiles error reading dump file: %s truncated dump file; tried to read %d header bytes, only got %lu    bogus savefile header   BUFMOD hack malloc  truncated dump file; tried to read %u captured bytes, only got %lu  Sending packets isn't supported on savefiles    Can't write to %s: %s   out of swap truncated dump file; tried to read %lu file header bytes, only got %lu  bad dump file format    archaic file format r   %s: %s  standard output %s: link-layer type %d isn't supported in savefiles w   stream: link-layer type %d isn't supported in savefiles stream                                               	 
    
                
             ! " # $  % & ' ( ) *   + , ,  , , , , , , , , , , E , , , , , , 5 8 9 , , , F , ; < 5 ,  G  , 0 1 2 2 2 2 2 2 3 5 N O 4 5 6 0 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 5 , P ? , @ , Q R , A  j B  = 7 C = D = k S = , 5 4 4 4 4 4 4 = K H d  I 5 e = J  L l { M  f g  | h } i ~ m n  o   p 5 5 5 5 5 5 5 1 ] ^ 5   5 5 5 5 5 5 U _  V W ` X 5 Y a Z b [ v q \ 5 w c r s  t u  x 5  y , z  ,  , 5  ,        5 , 5       , 1        z c    d5             = 0  =  = 5  =        , = 0 ,  , 0 x, =        , r   10  ,       5        5       1 5       p+jh1b        `5 1 ,/000001>?????1AAAAAA5 1        111 [y0               80  111               3f  /gN      Ohijk{|||||P 5       -y5 Q1~~~~~~??????Qy1111115 Ny1K1111111111 222222 8999999:111;1<yHy;;;;;;11< @@@@@@ 1 A1E0 yAAAAAABCCCCCy0 D1 B1DDDDDDm000000n||||||1OXZ0 0 nqrrrrrPY[s0 E0 0 sssssswxxxxxy0 1zPY[zzzzzz8}}}}}}:#J1~10 0 %~~~~~~y0 0 110 0   y0 0 10 0 0 0 11111	




11111en0 0 y1e8S^<10 <y0 10 0 81y10 0 0 0 11 0 0 110 0 0 y0 11ycddddd1""""""O





0 0 yX0 0 0 0  0 0 0 |yQ10 N10 0 0 10 10 z1
y0 1v1KH1110 0 Ey0 0 10 1!!!!!!l0 5"10 0 0 """"""#$$$$$$%0 0 0 &'1h&&&&&&1RRRRRRX0 '>>>>>>fy>,0 >>>>>>AAAAAABuyC1,CCCCCC8Z1DDDDDDElFynFFFFFF1]]]]]]fggggg0 0 JKKKKKKLyyMN0 0 ;MMMMMMjkkkkk1mmmmmm0 0 0 NQQQQQQBy1R10 0 0 wRRRRRRSTTTTTTU{xV1W1VVVVVV110 0 W\\\\\\E1]110 0 ]]]]]]^______`ya1b11aaaaaa1f0 0 b#llllll%ggom0 0 mmmmmmnoooooqwpggo0 hppppppi10 w0 0 B0 0 i10 <0 80 0 E0 0 0 0 0 0 90 >.y0 :0 0 EJL0 0 0 y0 HKSU 0 NQy0 ~ 1^`3!"0 0 5ny0 0 !" 1ddddddggggggiiiiiikkkkkk#%.%^ 10 0 0 0 ZX0 #0 0 0 0 0 )J#SNOJ10 0 NSW0 0 W^(b10 (b#.0 E0 .JB0 ~}|{z10 ySxwvut0 sr`U0 LI^0 EB@ =<;:910 0 





87650 0 4rst3210 !!!!!/.-",+*)(""""""J%0 #$$$$$0 %m%%%%%%1S0 & &'''''0 (((((((1^)*****+ y8++++++1/00000yy1vp111111233333444444p5555555677777y88888881555555:;;;;;>?????@@@@@@Am AAAAAABCCCCCyD yDDDDDD1AAAAAAFGGGGGIJJJJJMNNNNNOOOOOOvppP1 lebPPPPPPQRRRRRya`_S^]\[ZSSSSSS1PPPPPPVWWWWWYZZZZZ]^^^^^______ YXW`VUTSR``````abbbbbyMLcKJIHGcccccc1``````f#





hjjjjjjF: k7  4 kkkkkk1kkkkkklmmmmmmn.-*o)p('oooooo3333331&%p$#"! ;;;;;;J======??????1
GGGGGGJJJJJJ
	SLLLLLLNNNNNN-   .      1   . 1WWWWWW/   0         0   ZZZZZZ^\\\\\\                 ^^^^^^1                  [   \  T : / - 111\1111`b1ln1ac110 110 0 0 0 1ac110 0 10 1555555hj10 11ik11110 444444?115ik11p555555q11111111@@@@@@11qA11111AAAAAA1111111111AAAAAAOOOOOO111P11111PPPPPP1111111111PPPPPP______111`11111``````1111111111``````1111111111111111111111 11111      1      
111
11111





1





111111111     "#####&'''''((((((111)11111))))))1))))))-/l111111n1112111112222221222222344444450 1r617111666666s10 STTTTT111x=1z7@AAAAAB1ysC{1111CCCCCCDDDDDDE111Fy1{1FFFFFF1VVVVVV[11GGGGGGH111I1111IIIIII1^^^^^^`11JJJJJJK111L1111LLLLLLb1MMMMMMN11O1111OOOOOO1eeeeee11PPPPPPQ111R1111RRRRRRh						1UUUUUU11V11111VVVVVV]]]]]]E111^1111^^^^^^ddddddH111e11111eeeeeejllllllK111m11111mmmmmm1mmmmmmprttttttN111u11111uuuuuu1uuuuuu      x######%%%%%%z''''''||||||Q111}11111}}}}}}1}}}}}}3511110 0 1110 0 111111111111      1





1E1111111H111 1111      K111
11111





N111111111((((((Q111)11111))))))1))))))TTTTTT111111111l35111111111UUUUUU111V11111VVVVVV1VVVVVV11111111111111111111111111					11111




111113						





%&&&&&&&&&&&. 1111. . . > 1> > > > > > >  1          333555666===;;;E1Eoootttuuu1??11?||11|111111111&&&???CCCFFFGGGHHHMMM

11
VVV1111aaae1eh1hiiiq1q111111d11dgg11ghh1hkk11kqq1q5 5 5 15 5 GGG11111111111111111111	1	


15 5 5 15 5 ,,,---919<1<===E1EH1HK1KLLLT1TU1UX1X[1[\\\d1d111111		1	11ooo15 5 5 15 5 }}}331139919;;11;<<1<??11?EE1EG11GHH1HJJ11JKK1KNN11NTT1TU1UW11WXX1XZZ11Z[[1[^^11^dd1d11115 5 5 15 5 11111			111111!1!$1$%%%***+1+11111111166615 5 5 15 5 FFFIIILLLOOORRRWWWY1YZZZ11___111111fff111111111nnn1111111111vvv11 11 !!1!##11#$$1$''11'~~~++1+111115 5 5 15 5 111111TT11T===YY1Y111111111111111111111115 5 5 15 5 111111111111111111111111111111111111111111111115 5 5 15 5 1111111111111
1
111111111111111	11	
11
1111$1$'1'11)1)*1*+1+,1,-1-&11&/1/010 1111111111111111111111111111111111111111111111111111          _ _ _ `  ` ` `  h h ` ` ` `                        `  c g 9    h      k e b d a f                                 ! "               Q  :            K               : g i i h    k h k k k   9   F       ]                #    *       <   D $  Y     Z  - ; G \          S     [  ^ %   )  	 
 N  M     h      l k k   k   k   k       6 (  &     W   ,    
     C  4  X .    @     /   '    R   T     ?  i i i h   k     k   k l k         k k k k k                 L     E     H    1                   k k k     l k k l k     k k k k k         k k   k   k   V                 <        A B  U           i i i   k k   k     k   k l k       k k   k l k               k k k k k     3 5             =   + I J                 k k k k k k     l k k k     k k k k k               k k k k k           k k   k   k               n m   >     ~ i   k k   k k   k     k   k l k       k k   k l k           k k   k l k   k k               k k k k k   7  s z          8 0       k k k k k k k k k     l k k k     k k k k k               k k k k k   k k               k k k k k             k k   k   k   O            2   k k   k k   k k   k   j k   k l k       k k   k l k           k k   k l k             k k   k l k   k k k               k k k k k           x  P     k k k k k k k k k k k k   j l k k k     k k k k k               k k k k k   k k               k k k k k   k k k               k k k k k             k k   k   k      |        p   k k   k k   k k   k k   k       k     k l k       k k   k l k           k k   k l k             k k   k l k             k k   k l k   k k k               k k k k k       r    v      k k k k k k k k k k k k k k k       l     k     k k k               k k k   k k               k k k   k k k               k k k   k k k               k k k             k k   k   k   o { } w         k   k   k k   k k   k k   k k   k         k k   k     k k k         k k k           k k k           k k k           k k k k k k               k k k             k k k k k k         k k         k k k           k k k k           k k k k           k k k k           k           k k k    y k k k k k k k k         k k     k       k       k       k       k k k k           k t  q k     k k   k k k   k k k   k k k   k k k         k u k k             k k k     k k k k k   k k                                                                            	                                                                              	                                                                                                                                        	   	      
      	      
                                                                                                                                                                !   "   #   $      %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3         4                                                                                                                                                                                                                                                                                                                                                                                                                  ~
4 5 [
; g
? P 1  7 Y
>    j $   7 f o C
   q      L
 C
3
      
K
   A1  X(   =
0
+
 




 !

 
 


 
g & 1            F.  {^lz `ty@qXO    LiUPCDA    =  +(*                `                    |  zr    }  zf*{zyx2hvuZp    ]05    3  2$  #             
          






  
  
       

    v




  
w
Ix


  


  

2  
~

  
  

    
Z
Y
k
dh
  ]
T
b
[
U
N
B
C
<
A
P
OVY
D
mC
B
A
@
>
=
<
.
&
  %
6    

   





		 
		  							    	  										(		O	e			{<    	  V	W6=		w	|	    		s	r	~	m	^	e	\	\	X	U	  L	E	      Q	.	3	&	    '	      	*'	&	A%	i$	!			1	DU	!	X_Y.    7M              cz% ,    x#9P  V  \  bi  PRz)>iOYX W(RPQ1-+x*!)K?LFg"
7m)f	5	=  	  	  K	]	s	R	  P	Nu5^						


5
;
Q
X
n

  
  



  
  
  u


        v$:Q    ?W3^e]lsru6[	\	)]?<)	1wXo{sMdWG	&DHY	O
,
<  	
T

k
   B
  H
  



  







,CJ`w~           1p&-nD    J  P  3HV]Dt    z    qB-    *2W@rs
"Jr|TP9  OP
@a!
h
	2

/6M  4S
Zaho  I{
\b      rF    ]	_  ,  C  Z  "q    	pjb  `;    :9      	      +      ,
  b)#:  2&AX            ^  A  efs  yv    sr    pI    >        q   	wx                      
            %    + 23 @  	'  F   L   "R   eY   f_   e_   k  vOq^             wwA                   !%).258<>ADGJMQSVY]_bglptx}

$(-159>BEHKNQTW[_cglptx{ 	!&*/37;@DGJMPSVY\`dhlquy} "%(,.147;=@CFJLORUY[^afjosw{

"%(+.15:=@CFILORUX[`dgjmquy}  %s
 out of dynamic memory in pcap__create_buffer()  bogus IPv6 address %s   bogus ethernet address %s   illegal token: %s   illegal char '%c'   fatal flex scanner internal error--end of buffer missed fatal error - scanner input buffer overflow input in flex scanner failed    fatal flex scanner internal error--no action found  out of dynamic memory in pcap__scan_buffer()    out of dynamic memory in pcap__scan_bytes() bad buffer in pcap__scan_bytes()                                                            [     	   	  	   	        '	       @ 	 @  [                                                    W "  W       "              ! '   !   `  # &  ` ! ! ' & ! & ! & # 
# & # & & #         _      _ E          K      E        % $  K %   $ $ ) $ $ P % { ) % , % ) , ) , P N , 1 1 1 1 1 1 {  , 4 4 4 4 4 4 4 , 2 2 2 2 2 2 2 N c '2 c N c ' 2 2 2 2 2 2 6 6 6 6 6 6 = r = 6 =  v = \ 6 6 6 6 6 6 7 = r7 v 7 z7 =  7 7 7 7 7 7 7 \  7  z\ 7 z7 7 7 7 7 7 ? ? ? ? ? ? ? }         }           >_?         0>C_                      0>C\        rx \              rx              + { +	      	+{+++888888	        ~{	;;;;;;;???????}v       u!n m!                        fe_      AAAAAAAmmmmmm          ^}ZY            XQ}} Q      ////////|||||||~~~~~~~	t/444444\	4cs\t4444447777777sot7	sc777777999999999oy{999999:::::::y{:{y~::::::@@@@@@@@W~@~C@@@@@@BBBBBBBBBBBBBBBBBNN2NfNjNNNNnnnnnnfjn+*nnnnnnqqqqqqqqfqjq$qqqqqq!qwwwwwwwwjwwjwwwwwwuvw}}}}}}}}}!uv}}}}}}uv!x$'xx$'






*07*0C7FRVbCt|t|FRVwbwwz{z{z{        1  1       ######&&&&&&&









}k





CCCCCCCFFFFFFFv
dcv[XvTJJJJJJMMMMMMM$$$$$$$$$SKH$$$$$$%%%%%%E%8%%%%%%@@@@@@DA8@<@@@@@@AAAAAAAAAA992AAAAAABBBBBB29By8BBBBBBDDDDDDDDy2DDDDDDDEEEEEEyE1:-EEEEEEIIIIIII:]I,;<]IIIIIIKKKKKKKK;<K+(<KKKKKKLLLLLLLdlL%dlLLLLLLOOOOOOSSSSSSTTTTTTTTt|T"t|TTTTTTUUUUUUUUUUUUUUVVVVVVVXXXXXXZZZZZZ^^^^^^_______________```````	```````aaaaaaaddddddgggggggiiiiiiikkkkkkklllllllllllllllmmmmmmmnnnnnnnnw|nn:nnnnnnqw|:w|nqq:  >>>qph%e]%RHG?;:9763210/.-,+*)("IIIMMMYYY===zyvutspolkjihgfedcb`^][ZWVTRQPMLJIHFED=65321,*%#! 

                 














   
     





       33333335555555                         ;;;;;;;=======   ########   # #   ######???????AAAAAAA] #&&&&&&&&  ]& &   &&&&&&GGGGGGJJJJJJJ]  &))))))))   ) )   ))))))LLLLLLLNNNNNNN ).......   .    ......////////   / /  //////PPPPPPPWWWWWW  /44444444  4   ~ | 44444466666666z y x 66w u t 666666ZZZZZZZ\\\\\\\s r 6@@@@@@@@q p n @l k j i h @@@@@@BBBBBBBBg f e Bd Bb a Z BBBBBB^^^^^^^```````Y X BOOOOOOOOV U T OS R Q O M OOOOOOQQQQQQQQL J I QH QG F D QQQQQQffffffhhhhhhC B 3 Q________+ * _(   
  ______aaaaaaaa     aa      aaaaaallllllooooooo  ammmmmmmm  m    u    mmmmmmnnnnnnrsuxn      nnnnnnurs  xrs
  x~~~~~~    
~        ~~~~~~    
                                                                                                                                                                                                                                                              "  &  "&              "  &                                      S      S               S                  							                                                              






                      #######%%%%%%%'''''''((((((((      (          (((((()))))))------//////33333344444444      4  >?    4444446666666>?FFFFFFF      ?>@@@@@@@@      @  @      @@@@@@IIIIIIILLLLLLL  @DDDDDDDD    D          DDDDDDGGGGGGGG      G        GGGGGGJJJJJJJJ      J          JJJJJJMMMMMMMM      M          MMMMMMOOOOOOOPPPPPPPP      P          PPPPPPRRRRRRRTTTTTTTUUUUUUUU      U          UUUUUUVVVVVVV[[[[[[``````bbbbbbhhhhhhjjjjjjpppppprrrrrrxxxxxxzzzzzz                                                                                                        						





&&&&&&2        2223  33333334  4555666777888999:::;;;<<<=  =>>>???@@@A  ABBBCC    CDDDEEEFFFGGGHHHIIIJJ    JKKKL  LMMMN  NOOOPPPQQQR  RS  STTTU  UVV    VWW    WXXXYYYZZZ[[[\\\]]]^^^___``    `aaabb    bcc    cddde  ef  fgggh  hiiijjjkkkl  lm  mnnno  op  pq  qrrrs  st    tuu    uvv  vww    wxxxyy  yzzz  zz{{{|||}}}~~~                                                                                                                                                                                                                                 			

  
      

    
                                                 !!  !"  "#  #$  $%%%&  &'  '(((  (()  )***+  +,  ,-  -.  ./  /00    011122233  34445  56667778  89  9:::;;;<  <=  =>  >???@@@A  AB  BC  CDDDEEEF  FG  GH  HIIIJJJK  KL    LMM  MNN    NOO  OPP    PQ  QRR  RSSS  SSTTTU  UV  VW  WX  XY  YZ  Z[  [\\\]]]^  ^__    _``  `a  ab    bcc  cdd    dee  ef  fg  gh    hii  ijj    jkk  kl  lm  mn    noo  opp    pqq  qr  rs  st    tuu  uvv    vww  wx  xy  yz  z{  {|||}  }~~~  ~~                                                                                                    11111111111111111111111111111111111111111111111111111    1 111111211111 1111  3                    11141   52   111111332 ?     ?      ?     ?                                                          11  2  616 1 7                                                                                      8 9:1 ;<111 =                                                       /  >1?@11119ABC11@1BD=                                         9E1qF1GH1w;IJ11}1KA11LM1111N                                        nO191;PQ1111R1ST1111UV1L1W111XN                                  YZ1[1 \1]^1_`111
aRb1S1c111dU1e1fg1111$h                      i111A11Djk1111Kl1mn1111To1p1qr1111_st1eu1v1w11l1nxyzzzzzzzzzzzzzzzzz{|1}1~11111111111111111111111111111111111111111111111111111111
11 1#1&1)111/114161111@1B11111O1Q11111_1a111111m1111111111111111111111111111111111111111111111 111111	
1
11111111111111( !"1#1$%111&4'((((((((1@)*1+D1,G1-J1.M1/P011U1234156171819:1;<1=1>?1@A1B1CD1EF1G1HI1JKL1MN1O1P11QRSSSS1TUVWXYZ1[\1]^_1`1ab1cd1e1fgh1ij1k1lmn1op1q1rst1uv1w1xy1z1{|1}~~~~11111111111111y1z1{1~~~11111111~11  1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          (    4    <    H 	   X 
   h    t              !    #    $   ̐ &    '    (    )   , *   < ,   H -   X .   h E    G    J    K    L   ̑ M   ؑ P    R    S    X    `   , d   8 f   D r   P z   `    p                    ܒ                  8   D   X   p               ȓ   Г   ؓ                &   *  ( +  4 .  @ 0  T 3  l 5   7   A   R   T   f   h  ( s  X t  ` u  X   t            ȕ   ܕ               $   <   X       3   7   8  ܖ :   <   ?   N  ( O  8 j  T k  h x   {     ė       
     0    \ '  p (   5   C  Ę U   X    a   ~     0   @   L   T   h   t               Й               , 
  @ 
  L   X   ` )  | 2   3   D   H  К L  ؚ W   Z   [           $   ,    8 )  8 -  H 5  \ 6  h ]  p k   l   m     ̛   ܛ      0   T   h   | !   @   N  Ĝ {  Ԝ |  Ԝ l        (   <   L   p    $   j  ̝   ܝ       )   )   ,  ( !  8 #  ` #  p H   UU   c    o   w  ̞   Ԟ              ̛   @   L   l               ğ         |  T T T T T T T T   8 | ȴ 4 l   T |    ( x   ( x                                                                                @                                                     0    P    h    t                             (    4    L    X                                                             ( < H X l x         4 P X ` h p x          4       ( 4 @ L X ` h p x                    d             	    
                   |                                             <   X   p               L    T    \    d    l    t              G  ( H  8 ݆  H    P    X    `   d 5  h    t    x     `   `   `   `   `   8   <   >   [   \         7      	   c  	 d  	   	 p  	    $	   0	    4	             1             1                                                (         $ $ $ $     6 6 6 6 6 6 7 $7 47 H7 \7 h7 7 7 7 7 7 7 8  8 48 L8 d8 8 8 8 8 8 8 9     3 h6 t6 6 (6 X9 `9 d9 h9 t9 |9 9 9 9 9     : 84 X4 T4 @4 `4 H4 (: 0: <: @: h4 (6 X9 `9 d9 h9 t9 |9 9 9 9 9     : l4 : 84 4 4 4     %; q> D 5D ]G = < C B %B O 
@ ]? 9 9 9 9 (6 06 86 4 @6 D6                                                                                                         H6 X6     H: L: T:                                                                                                                                 44        84 @4 H4 T4 X4 `4 h4                                                                                         1        l4 p4 x4 4 4 4                                                                                             4        4 4 4 4 4                                                                                                 4        4 4 4 5                                                                                                     5         5 (5 ,5                                                                                                         45                                                                                                                             @5                                                                                                                             L5                                                                                                                             X5                                                                                                                             h5                                                                                                                             x5        5 5                                                                                                             5                                                                                                                             5                                                                                                                             5                                                                                                                             5                                                                                                                             5                                                                                                                                 9 9 9 9 9 9 9 9 9 9  : $9 89 H9 (6 0 1 1 1 2 1 0 1 1 1 3 @1 <1     :                                                                                                                                 x5        5 5                                                                                                             5                                                                                                                             4        4 4 4 5                                                                                                     5        5 5                                                                                                             4        5 5 5 6                                                                                                     5                                                                                                                             6                                                                                                                             6                                                                                                                              6                                                                                                                             B	                             t=	 >	 ?	 =	 ?	                Dc   Xc    lc   |c    c   c    c   c    c   c    c   d    d   (d    8d 	   Hd            k    k    l   l     l   (l    <l   Ll   \l   ll   |l            pk    tk    k            k    k    k            @k    Lk    Tk    dk            k    k    k            i   i   i   i    i   i   i    j   j    j   0j    Dj   \j   tj   j    j   j   j    k    $k             To    Xo    \o             n    n            `o    po    o    o    o 	   o    o 
   o    o    o     p             n    n    n    n    n   n             (o    8o    Lo            |    |    }            @}            z    z    {            |    |            Tw    \w    hw    tw    |w    w    w    w 	   w 
   w    w    w 
    x    x     x    4x    Hx    Xx    lx    x 2   x 3   x 4   x            l}    }            x    x            {    {    $|    @|    \|     |            }    ~    0~            z    z            x    y    y    y    ,y    8y    tw    Hy 	   Xy 
   ly    xy    y 
   Hx    lx    y 3   x            {    @{    X{    {    {            }            dz    tz    z            ,z    Hz            z    z           y   y   y   y   y   y   y   y   y   y   y   y   y   y   y   y    z   z    z    z    z 	   z 
   z   z   z   z   z   z   z 
  z 
  z 
  z   z   z   z    z   z 3   z 3  z 3  $z 3  (z                 ȃ            L                 	    
       (    H            (    \                                Ѕ            Ђ                    Ć    ̆                                 8    H    X 	   h 
   |                      0 0 0 0 0 0 0 0 0 0 0 0                 $    (     ,                <    @            0        4    8         , 8 < D P \ h x |                 $ 0 @ H X p x      ȿ    ̿    Կ    ܿ                                  (    0    4    <                     @ L T \ h t |             <    D    P    \    h    p            0    <    P 
   h    x                                                                    	   	      
   
   
   
   
                                ,         <   L   X   l         <         <       #  < #   #   "  < "   "                                 ?         B   }   $                                  (    4    @    L 
   X    h    t    |                                                           X    t                                             	    
             
        (    4    <    D    T    X    |    \    h    x "    #    $        ?    B    }                        4    D    L    \    p %                                                        
                                  @   0            4    H    `    l    |                            $        ,        8        D        P        \                                 @
    H
            P
   \
   p
   
    P
   
            
    
    
    
    
     
 @   
                 0    0    0    0    0    0    0    0             /    /    /     0    0    0    0    0    $0 	   ,0 
   40    @0    D0 
   H0    T0    ,0    \0    d0    l0    t0    |0    0    0    0         X5 6 6  6 ,6     86 H6 X6 h6 D5 H5 P5 X3 D5 5 P5 5 5 5 5 5 5 X5 `5 l5 x5 |5 5 5 5         5 5 5 5 5 5 D5 H5 x6 7 7 7 7 7 7 7 7 7 7 7  8 8 8 8 $8 ,8 48 <8 H8 P8 \8 d8 l8 x8 (9 ,9 49 <9 D9 L9 T9 \9 8 8 8 8 8 8 9 9 9 9     ;    ;    ;            ;             y     L    \    l    | ?               Ȅ                 (   8   H   \   t    	   
  ą   ܅    
     ,   T   t         Ԇ         $   < \  T    @t   @   @   @̇   @   @   @    @@   @` 	  @| 
  @   @   @؈ 
  @   @   @4   @L   @h   @   @   @   @ԉ   @   @   @   @8   @L   @d   @|   @   @   @Ċ    @܊ !  @ "  @  #  @< $  @d %  @         ؋             0 
  L   d   | 
        ̌             (   @   \   t         ̍             ,   @    \ !  p "   #   $  Ď %   &      	$ 	@ 	X 	t 
	 	 	 	؏ 	      (   @   \   x          	  ؐ 
          
  <   X   p            ̑             @   T   t         Ȓ         $    @ !  ` "  | #   $   %  ȓ &   '   (   )  ( *  H +  \ ,  p -   .   /  Ȕ 0   1   2  $ 3  @ 4  \ 5  | 7   8   9  ؕ :   ;   <  4 =  H >  ` ?  t @   A   B   C  ܖ D   E   F  0 G  H H  h I   J   K   L  ܗ M   N   O  8 P  T Q  h R   S   T   U  И V   W    X    Y  8 Z  T [  l \   ]   ^  ̙ _   `   a    b  < c  X d  l e   f   g   h  Ě i   j   k   l  ( m  D n  \ o  x p   q   r  ț s   t   u   v  , w  L x  ` y  t z   {   |  ̜ }  ܜ ~        $   <   X   x         ĝ            4   T   t         О         $   @   X   x         П         $   @   \   x         ̠             @   `   |         С         ,   H   \   t            Ԣ             @   `   |         ̣            0   L   l         Ȥ            ,   L   d   |         ȥ             4   L   `            Ȧ             <   X   p         ħ            8   X   t         Ш         (   D   `   |         Щ         $   @   \   x         ̪           8  T  l      ī  ث 	  
   0  L 
 h        ج      4  P  t        ح      4  P  p    !  "  # ܮ $  %  &   ' 4 ( T ) h *  +  ,  - ܯ .  /  0 0 1 P 2 l 3  4  5 ̰ 6  7  8  9 0 : L ; d < | =  >  ? ı @ ر A  B  C $ D @ E \ F t G  H  I  J ܲ K  L  M ( N D O \ P x Q  R  S ̳ T  U  V  W , X D Y ` Z x [  \  ] д ^  _  ` 4 a T b p c  d  e  f  g   h  i 8 j X k x l  m  n  r  s  t   u @ v \ w | x  z  {  | з }  ~     4  L  l      ̸         8  H  d      Ĺ         8  T  l      Ⱥ      @  d        ܻ      8  \ 	 | 
     м 
        <  \  |      ؽ      0  T  p      о       ( ! @ " ` #  $  % Ŀ & ؿ '  (  ) $ * 8 + T , l -  .  /  0  1  2   3  4 < 5 X 6 t 7  8  9  :  ;  < ( = D > \ ? x @  A  B  C  D  E  F 0 G P H p I  P  Q  R  S  T   U < V X W t X  Y  Z  [  \  ^  _ 0 ` P a l b  c  d  e  f  g ( h @ i ` j  k  l  m  n  o  p , q L r h s x u  v  w  x  y   0  T  x            ,  L  d                $  @  @X  l              0  L  p            4  X  h              ,  D  d            (  D  \              ,  P  h              ,  L  l            <  h          L  l               0  H  p              8  X  p         	   
   4  L 
 h                0  L  d               ! 4 " L # ` $ x %  &  (  )  *   +  , 8 - P . l /  0  1  2  3   4   5 8 6 P 7 h 8  9  :  ;  <  =  > ( ? @ @ ` A x B  C  D  E  F  G  H  , D 	\ 
t           <  \  x       	  
   (  D I \ J t K  L  M  O  P  Q  R $ S 8 T X U p V @ W  X  Y  Z  [  \   ] < ^ \  @x                                 $ 4    @ X    d       	      
    $    4 D    T h 
   t     d}                0    < P{      { !   {  P    D    P `    l                        H      ( 4    @ L    X d    l x      	     
                        (    D T 2   d t 3   |  h     i     k     l     m     q   $ 0 r   < H u   \ p w     z     {         4    L `    p |                    $ c   8 L    ` t                    $    8 H    T `    h t    |                    @ T    h x                    , @    T d    p                               , <    d l    p                                           (*	 *	                     P*	                                 `7	             `7	                                                           <             Ly         d	     d	     	    $        ,        4        <        D                	                         X        o            H           
  
   N     X          $     1     9     F      	 !         	          	             o                                                   	 	 	 S     0
 ~	 &	 0 0 0^ 0^ 	 0 0^ 0 0 0 0               	 '	 H'	 h&	 0 H$	 !	 #	 @!	 0$	 $	 #	 5	 4	  ` 	 $	 !	        x	                      D     |                C C A                                                                                                                                                                                                                                                                                               ̏       ؏         +                    ؟                                              ؟                    (    ,    4 	   < 
   D    L     
   X    d    t                        $            4            X 	   l 
       t                     Ƞ                                     ̡         	   ( 
   H    h     
           Ȣ            4    X            h    |            ̣    ԣ            $    D     d !   p "    #    $    %    &    '    (   Ф )    *    +    ,   8 -   @ .   X /   p 0   | 1    2    3    4    5    6    7   ܥ 8    9    :                           ̦ 3    d           ,            8    @    H    P 	   X 
   `    h    p            x                D    T    `    h    x      @                                	    
        (    0                  	        *    =   ԧ    ܧ         3    7          0  (   8   @ 0	  L L
  T M
  h   p 
                  
  Ȩ   ܨ    %   <  $   < H  D ("  P V.  \ (  p !)  x *7                              ̩ >   /      i   	               (    0    8    @    H    L 	   P    X !   \ )   d +   l ,   t .    /    2    3    7    :    >    X    Y    g   Ȫ l   ̪ p   ܪ q                             	                    (    0    8    @    H    P    T    `             h    t                ȫ    ԫ         	    
   4    T    h 
           Ĭ    ܬ        (    P    t            ĭ    ܭ @                            $    (    0    8    @    D    L         [|atalk]                                                   K                                                    M   $ Z   , F   @ N   H }   T u   \    l    x                         (    <    P             l    p        t                                                              , @   < A   D B   L    P    d    |                                 $                             4    P    X            t                                            l    $     @    A    C                   4    P                                                                                           $   $   $    ,   ,   , @  4 	   <    H   H   H   H   T    T   d   d 
  t                   D                                         , 	   8 
   H    X    \ 
   h                                                    ,            D    `                          	    
   8    P            d    |                                $    <    P    l            x  @            [|bootp]                                    4    < 	   @ 
   L    P    T 
   `    d    l    p                                                                      !    "    #    $    %     &   $ '   ( (   , )   0 *   4 +   < ,   L -   d .   l /   | 0    1    @    A    D    E    F    G    H    I    J    K    L    2    3    4    B    C    5    6   ( 7   4 8   H 9   P :   X ;   \ <   ` =   p b   | t    N    O    u    v    y        M    P    Q     R    S    T   $ X   , Y   4 Z   < [   D \   L ]   T ^   \ a   d _   l `   t d   | e    n    p    q    r    s                                        $    ,    4    <    D    L                                                    X                                   p    x                  @                               $    4    @    L 	   d 
   |                                    $    D    \                      4    L    d    |                 	    
            0 !   P "   t $    &    '    )    *    +    6                                                                      	    
            
            (    ,    0    4    <    @    H    L    T    `    d    h    l    t    |              !    "    #    $    %    &    '    (    )    *    +    ,    -    .    /    0    c    d     e    f    g    h            (    0    8    @    H             h t        $  h ,  8  H  `  |                                       Q    S    W                        0    @    H    T    `            p @   x     |                 ,    4    D    L    X    d E   l M   x Z    F    N    }    u                                                                            |                    $  @  8     H    T    h                     P    X    `    h    p    x         8 @ H     (    <    P    x         	    
       0    T 
   |                     l    x     
    
                                        4    P            !    !    !    "    $"    4"    @"    \"    x"    "    "    "    "    "    "    #    ,#    L#    l#    #    #    #    #    #    #    $    ($    8$            8%    L%    h%    t%    %    %    % 	   %             H$    \$    t$    $    $            % @   %     $            $    @$     $            %    %    %     %    (%    0%            $ @   $     $            '    '    '    '    '    '            (    (             +    + D    +    ,+    8+    <+    D+    L+ R   P+             \+  @  `+    d+          @  V    W            S 6   S    S            @N    PN             W    X         @   pN    N    N             ,N    4N            PM    `M    dM    lM    |M             Y    0Y    PY    lY    Y             d=    pT    T            4V    PV u   lV            P    P    ,P            $T    4T    LT            `O    lO    pO             @P    XP    `P    xP             0X    TX    |X    X             V    V    V    V   V            M    M    M    M    N    N    $N             X    X             Y             O     O 	   (O 
   8O    DO    TO            T    T    T    T     U 	   U 
   0U    LU    dU    U    U    U    U    U    U    U    U    U    V             S    S            M @   M     M            P    P    P    P    P    P    P    $N 	   Q 
   Q    (Q    4Q    DQ    `Q *   lQ B   |Q    Q    tO    Q    Q    Q    R    (R    HR    dR    |R    |R    R    R    R    R    R    R     S    4S    TS    tS    S             N    N    N    N    N    O             T    T    T            tO    M    M    O    M    O    O             W    (W    DW    XW    xW    W    W    W            O    O    O    O    O    O    O    O    P               4\       <\       D\       L\       T\        X\        `\       l\       t\       |\        \                \    \    $\            ,\     0\            \    \    \    \    \          [|kerberos]        |]    ]    ]    ]    ]    ]    ]    ]    ] 	   ] 
   ^            ]     ]    ,]    <] 
   P]    \]    d]    l] ~   x]          [|l2tp]        b    b    b    b    b    b             _    _    _    _    `    `     `    ,`    8` 	   D` 
   T`    d`    p` 
   x`    `    `    `    `    `    `    `    `     a    a    a    ,a    <a    La    \a    la    |a    a     a !   a "   a #   a $   a %   a &   a '    b .   b             b    (b    0b    8b    @b    Hb    Pb 	   Xb 
   `b    hb    pb    xb    |b    b             b    b    b            n    n    o c   o C   o    o o   o     o             Pn    Xn    `n    ln    xn    |n    n B   n N   n ~   n    n    n    n    n    n             ԇ   ܇                           <    P    h     
               Г                (    8    H    `    x -    >    ?   Ĕ B   ؔ E    F     G    c   < '  X '  p '   '   '   '  ԕ '   '                                                   
   	   
                                                                           Ē    В    ܒ              @                        (    4    H    \    d    l    x    x                                ̚    ؚ                                                  (                            (     D @   \    p                  [|ospf]               ԥ            (    0    8                                         ģ    ̣                                      У    ԣ                  @                                    Ȥ    ܤ                            @    H    P    X    ԣ    h     	   x 
                                                    L    X    `    |            Ȧ     	            8    P    p                4    D          [|ospf]                                                              ķ    ̷    Է     	                   $    4    H    T    d                           @ȸ                                     H    \    l    x                     	    
            
                             ľ    о    ؾ                    ` @   h                     !    #    %     '   $ )   , +   4 -   8 /   @ 1   H 3   P 5   X   `   `    h =   t W   |    1   3   !   #   %   '   )   +   3   5   W      !   #   %   #   '   '    #   +   -   =            -   H a   P                                 l    x                    ,            h    t    |                                 l   p                                 	   @    H    P e   X    `     h          [|pptp]           < ,   $ 0 < H T d t                0 @ P ` l |    X |   X ` h p                                           $    8 
   H    X                 0 D                          	v                                    v          s  Z	   s  |S	   s $         v 8         v L R	    s \         	v h         s t R	    s          v  xY	 	   s          s                       	v          	v          	v                       	v          s          	v          	v          q ,         s <         s L $S	    s `         	v p         	v          	v          	v          	v          	v          	v          s          s          	v  R	   s           s 4         s L         s h         	v  Y	   s          s          s          s  DR	   s          	v ,         s D         s \         s              t         aq                                                              	v  Y	    s          s          	v  R	   s  HZ	   s          	v          	v          	v           	v 0         yo @         yo P Y	   s `         	v p         	v          s  Y	    s          	v          	v          	v          	v          	v          	v          s           yo 8         s T         s t         	v          	v                       	v          	v                                                             ( 0 8 @ H T ` l x        d l t                $ , 8 < D L T  \ h t                                     4    D    T    l             	    
                                                    }                $    <    L    `                L            4    D    X    h    x             	                       $    4    @    P    \    d    p    |     	   L 
             
                                                     	    
            P   D Q   T R   d S   ` T   p U    V    W    X    Y    Z    [    \    ]     ^    _     `   0 a   @ b   T c   d d   t e    f    g    h    i    j    k    l    m    n    o    p    q     r   , s   D t   T               (    8    H    \    p              L                                        	   
     $   4 
  L   \   p                              '   '   '   '   '   '  (  N  4 !N  @ "N  L #N  X $N  d %N  t &N   'N   (N   )N   *N   +N   ,N   -N           d    e    f    g    h    i    j    k    l    m   , n   4 o   D p   T q   ` r   l s   x t    u    v    w    x    y    z    {    |    }    ~           0                                                           $   ,   8   D    L   X   h   x                	           e   d f   t g    h    i    j    k    l    m    n    o    p                                    $    0    <    D    P    X    d    p                    h    t                                                                (    4    @    L    X    d    p    |                                                                        !        He	             X    g	 y	 * (* 0* 8* D* L* P* $ _       y	 ' 
       u	 % @       w	     x	 v	 % ;       w	         lt	         8w	 "        w	 #        m	      $y	     l             4 	       r	         n	 L& 2       g	      x	     H                    z	              !        y	 p    j	 p	         `{	  $        p	 '        \p	 ,        8i	 |                     m	             ) ) ) ) ) ) * * *         h	         f	             $ X       t	 '        j	 |% H       r	 & $       @k	 d"        0j	     e	             Lo	          t	 h& 0       {	 #        x	         Lq	      xv	             Lg	 & +       k	 < 
       o	 & !       u	              & 6       Pm	         q	         ,t	 "                    Ty	 `& 1       f	 |        f	 '        h	     i	     % B       i	          xh	 h        k	 h    p	 e	         n	 '        e	 '        xn	 ) ) )      o	             l	 $        xe	      f	 Hw	         p{	 "        m	     {	 t	 <        Xw	 \        z	                     m	      k	 d	 & "       g	 % A       Hd	         h	 @        y	             0% P       @l	 8        $x	 x        j	 (        h	 `    d	 q	  
       e	         Xh	 x    @j	     <         j	 ( (     g	 ,g	 H    Pj	 k	 T        g	           f	 t"        n	     h	 h	 8$    0k	     '        k	 '        u	     Hh	     <'        w	          tx	         y	  
       s	 '        8d	 $ a       u	 $ V       o	         r	 t 
       r	 "        z	 D$         r	 & #       i	         Pl	         e	 & %       \f	 !        lg	         |s	 % >       l	         `z	 & *       v	 '        v	 P         z	             `% K       z	 ! 	       c	     he	     '        m	 8% O       v	          {	         v	 t#        p	 0'        j	 d#        pl	         y	 t'        pq	 % =       o	 x        x	         u	         `k	         (v	 (#        (w	          z	 !        k	         q	 0& 5       lp	 `         d	         Xv	 "        v	 T$ d       o	 $'        l	 ( 
       d	 \* `* h* p* |* * * * * * * * * * * * * *  
       q	         |g	 D& 3       d	 8        s	     `l	              8e	 P'        \t	 ' 
       Hv	         e	  
    l	 v	 "         k	                 Hn	 f	 h        4y	 #        f	          Lt	 % <       hd	 & (       y	 |f	 x& .       {	         j	         e	 |     Xn	         (        8n	  % U       p	 @    d	 xw	 P% L        l	 H 	       y	 `$ c       pr	 |        pm	 h 	       (e	 (        r	  
       xu	 "        q	         Hi	 !        s	 4    i	 i	 '        Tx	 8& 4       (n	 h    Pz	 z	 '        0l	          k	              t    Xd	 t	 # 
       r	 % T       t	 ,$                Pk	      
       x	         n	 h        g	 % D       r	         d	 )         Dx	 x'        {	 d    i	 v	 8     \o	 hv	 #        d	         @{	 % F       @r	 <"        u	 `        s	 #        x	         dx	 '        <f	 L$ e       m	     Dy	     % E       <q	 $% R       0z	 $ [       z	 p$ b       j	 D        w	 % C       g	         <o	 % G       q	 ,            D% M       o	 8        e	 # 	       q	 (    Lp	     & 7       <g	          @m	 t% I       Lf	 $ \       `r	             $( 0( <( H( P( h( x(         z	 !        0m	 8    hw	     p        k	               	       l	 0        g	     i	     L        h	  
   @z	     % S       Pr	         xd	 T    0r	 |p	          p	 X'        P{	         p	  x	   Pj	   k	   i	                      n	 ,! 
       (u	 $ W       j	     (i	     (             h'        l	 '        ,h	 D!        x	 P# 
       l	             h                    0{	  	       |o	         c	 '        r	         s	 P"        lf	  '         p	 $ `       (d	 !        t	 0         {	          s	 & ,       f	          m	 T         `m	 ' 	       g	             D         8v	 !        u	              (            l    <t	 Xe	 <% N       r	 "        p	          u	 & )       o	 $ Y       ,f	 H'        hn	  & :       {	 <#        8u	         n	          n	 P        ,q	 D        x	 H 
       c	 ,"        q	 ( ( ( ( ( ( ( ( ( ( ( ) ) () <) L) X) l) x) % ?       k	 P        q	 $     s	             ,p	 H        j	 & 8       s	         h	 '        `j	         `q	         hu	 #        n	 `        l	 0        z	         Ps	 \!        {	 t    o	         {	     #        hh	 & '        z	 \    q	 i	 0    i	 s	 x        f	         k	         u	  ( m	     ( d	     ( e	 	    ( \q	     ( <h	    $ ^        |	 X        n	         f	          r	 P 
       o	 !        <p	 & &       pk	             `    x	 Xu	 (% Q       Xi	         n	     h	             t	 h 	       xi	         \g	 l        o	 @        {	 "        h	 p% J       0s	 x    s	 {	         Hu	 $ Z       v	 @                    j	             (        hi	         p	 `'        u	          j	          s	 & -       v	 T 
       pz	 p& /       ,o	 |'        pj	 & 9       4x	         l	 P    x	 g	 p! 
       l	 $ ]       @s	    -    .    .     . @    .    ,.             @.    H.    P.             -    -    -             +    -    -    -             .    .    .    .    .    .         4 4 4 4 4 4 4 5 5 5 5 5 5 5  5 $5 ,5 45 85 @5     03 83 @3 D3 X3 `3 h3 t3 |3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 $4 44 D4 P4 `4 h4 t4 |4 4 4 4 4 4 4 4 4        6    6    6    6    6    6             6    6     7    7    7    7    $7    ,7          [|tftp]    < < < < < < < <  = = = = =  = $= ,=     @    @    @    @    $@    ,@    8@    D@    P@      9    -    .    r    }        Z 	   [     
   m     m l   uy    }$    r h   
[ 2   ^ 3   A q   M  i   E" r    k   5 {   3 z   a  w        M m    c       -    9            Ɏ    i        y        }            ͐        5    U            H H H  I I I 3.9.8       e     e     `f            f                     ~    f                             g                     %p    g                            (g                            <g                            Tg                            hg                         	   g                         
   g                            g                            g                         
   g                                                     g                         p   g         g  h         q   8h                            @h                         '   Hh                         +   Th     \h     ph         t   h                           h         h h         	   h     h h                i         h                 i     ,i Di i i        0j     8j h Pj            j     j h j            j     j h j            j     j h             
   j     j     k            4k     j     i            @k     Lk                     dk         h                pk         h                |k             k            k     j k                k         h                 l     l ,l                8l     j                    Dl     Pl hl j            tl     j                    l     l     l l         m     j                    m     m                 
   8m     m                    Dm     Pm                    m     m     n             n             i         ,   (n     8n     i            xn     j     k            n     j     i            n     n     n            4o     Do     o            o     o     i         "   p     p                 #   Tp     j     `p         &   p                         (   p                         )   p     p p q  q     *   0q     p p 8q  q     -   Hq    Tq q q         .   Lr    Xr     r         /   s    s     s            s     ,i s i i         t     ,i s i i        ,t     ,i s i i     5   8t     j                 4   Ht     j                    Xt         dt                |t         dt t            t     t                    t     t                    t         dt                t                            t                            t                         r   t                     u s   t                    t u   t    u     tL Hu     $   \u                    s 2   hu                     q 3   tu                            u                            u                         %   u                     z    u                            u                            u    u v v            w                                                     	 d_ |_ _ _ |_ _ _         _                                              `         `     ` @`     ` T` `` t`                         ` `  a |a     a a                                              `         a     b Tb     hb c     c c     c 8d     Dd d     c d     d e      e pe     e                         e         |    | |    } X}    d} p}    |} ~    (~ `~    p~ ~    ~  1   ( d 2   p  3     4     @     A   $ p C    ܀ D   d}  E    ܀ F   d}  G    ԁ Q     R      S   $ @ W   L h X   t  Y    ̂ Z   ܂  [    D    P |         ̃ ܀    d} ܀    d}             y    y y    y y    z z    (z <z    Dz Xz    dz z    z z    z z    z z    z  {    { {    ${ 0{    <{ P{     \{ { !   { (| "   8| `| #   p| | $   |                        ݆      5       `   `   `   `   `   8   [   \         ,    8 >  @ <          H    L B   P    T               	            GCC: (GNU) 4.7    	      GNU gold 1.11   A7   aeabi -   ARM v7 
A	
"Dtcpdump :H@ .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .ARM.extab .rodata .data.rel.ro.local .preinit_array .init_array .fini_array .data.rel.ro .dynamic .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                    4  4                             H  H                         
  
  N                 #         X  X  D               )   	          X               2   	                        6                              ;             j                A         z z                   U     p   { {                 `           |                 k           &                s         l l HO                          	 
	                            	 
	                            	 
	                            	 
	 (                          	 	                         	 	                             	  	 p                          ̐	 ̀	  p                      0       ̀	                                ܀	                        p        	 8                               0	                                 <	                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ELF          (      4   T     4    (      4   4   4                  4  4  4                             E  E                 T  X                           Qtd                             p$  $  $              Rtd      T  T        /system/bin/linker                                
                            *              F              e              l                                                  __libc_init __cxa_atexit __aeabi_ldivmod _ZN7android12uptimeMillisEv _ZN7android15elapsedRealtimeEv printf __aeabi_unwind_cpp_pr0 _edata __bss_start _end libhardware_legacy.so libutils.so libc.so libstdc++.so libm.so            
   	                                                                                    -h   Əʌh Əʌ` ƏʌX ƏʌP ƏʌH Əʌ@ H-MP00L   D   <      K   0 0   H-M   00  0 K   -GFFF
FT$ %Ozz"F
+F gOO 	
z A	
" #ep"F+F

f A	
" #^"F+FHxD\   8            Android    P   %jd %jd %jd %jd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            0      4                          o             H             
                                               !                                  o                                                         u              d  d  d  d  d  d   GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"timeinfo    h .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .rodata .preinit_array .init_array .fini_array .dynamic .got .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                   4  4                             H  H                                                #             @                )   	                           2   	      4  4  0               6         d  d  \                  ;             L                 A                               U     p   $  $                  `      2   4  4                   h                               w                                                                                                       4                                                          0                                                                  p        ,  6                                b                                  r                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ELF          (    ,  4   @    4    (      4   4   4                  4  4  4                             ; ;          ? O O 8  q          8 8 8           Qtd                             p
 
 
  C   C        Rtd? O O tP  tP        /system/bin/linker                                
                            "              )              1              H              O              f              k              x                                                                                                                                                                                     
                                       '             3             ;             @             H             M             Z             c             n             s             y             ~                                                                                                                                                                                                                                                                                                                        )             /             6             =             C             P             X             ]             e             j             p             w                                                                                                                                                                                                                                                                                 
                                       %             0             8             @             I             O             U             Z             a             h             r             ~                                                                                                                                                                                                                                                                    $             ,             2             7             >             E             J             W             _             f             l             t             {                                                                                                                                                                              b       __libc_init __cxa_atexit strncmp strlen memmove __aeabi_unwind_cpp_pr0 strcpy __aeabi_unwind_cpp_pr1 stat __aeabi_idiv strcmp _tolower_tab_ __aeabi_idivmod __strlen_chk strncat strcat __stack_chk_fail __stack_chk_guard _ctype_ iswupper towupper _toupper_tab_ towlower atol memset __sprintf_chk strncasecmp __swbuf time sprintf putc __isthreaded readlink strcasecmp atoi lstat open close strtod fopen fclose unlink strpbrk localtime strftime strstr fwrite fread realloc qsort getenv strncpy fflush __sF fputs fprintf strtok fgets fcntl fdopen setlocale mkdir strchr access rmdir __strcat_chk mkdtemp read __errno puts lseek memcpy __memmove_chk dup write rename fchown utime getuid getgid fsync __srget getc fputc __aeabi_uidiv printf putchar strerror sync fstat ctime kill memchr setenv environ getpwnam bsd_signal opendir readdir closedir fseek ftell free malloc strtol sigaction sigaltstack getpid select chdir sysinfo sysconf getrlimit nanosleep waitpid longjmp _exit exit isatty getpwuid uname getcwd fchdir chmod is_selinux_enabled getfilecon setfilecon freecon ioctl pipe setsid execvp fork gettimeofday dlerror dlopen dlsym dlclose setjmp memcmp ftello tgetent tgetstr tgetnum tputs tgoto BC UP PC ospeed tgetflag _edata __bss_start _end libselinux.so libncurses.so libm.so libdl.so libc.so libstdc++.so           -       r   4   L   9   i                 l   8   n                  p              Z   y       v       H   b   =   
                        K       u   C   |      !   3              Y       E   z   Q   s   N       ;          @   q   `              P       T                 B         W       {       m      
             >       <              %         k   (       V   .       M         \      ,   S   $   _           5   O         o                 x                       w                                                                                                                                                                                                   "                                        *                     +                       6          7   A                      2                                       0   &              [               X   )       c   	      a          F   ^   U   h       ?   f      1              ]       t       e   G   g       :   J                  #       R           /   D       ~      d      j   '   }              I       O    O    O    O    O    O    O    O    O    O    O    O    O    O    O    O    O    O    O     P    P    P    P    P    P    $P    (P    0P    4P    <P    @P    HP    LP    TP    XP    `P    dP    lP    pP    xP    |P    P    P    P    P    P    P    P    P    P    P    P    P    P    P    P    P    P    P    P    P    P     Q    Q    Q    Q    Q     Q    $Q    ,Q    0Q    8Q    <Q    DQ    HQ    PQ    TQ    \Q    `Q    hQ    lQ    tQ    xQ    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    Q    R    R    R    R    R     R    (R    ,R    4R    8R    @R    DR    LR    PR    XR    \R    dR    hR    pR    tR    |R    R    R    R    R    R    R    R    R    R    R    R    R    R    R    R    R    R    R    R    R    R     S    S    S    S    S    S    $S    (S    0S    4S    <S    @S    HS    LS    TS    XS    `S    dS    lS    pS    xS    |S    S    S    S    S    S    S    S    S    S    S    S    S    S    S    S    S    S    S    S    S    S     T    T    T    T    T     T    $T    ,T    0T    8T    <T    DT    HT    PT    TT    \T    `T    hT    lT    tT    xT    T    T    T    T    T    T    T    T    T    T    T    T    T    T    T    T    T    T    T    T    T    T    U    U    U    U    U     U    (U    ,U    4U    8U    @U    DU    LU    PU    XU    \U    dU    hU    pU    tU    |U    U    U    U    U    U    U    U    U    U    U    U    U    U    U    U    U    U    U    U    U    U     V    V    V    V    V    V    $V    (V    0V    4V    <V    @V    HV    LV    TV    XV    `V    dV    lV    pV    xV    |V    V    V    V    V    V    V    V    V    V    V    V    V    V    V    V    V    V    V    V    V    V     W    W    W    W    W     W    $W    ,W    0W    8W    <W    DW    HW    PW    TW    \W    `W    hW    lW    tW    xW    W    W    W    W    W    W    W    W    W    W    W    W    W    W    W    W    W    W    W    W    W    W    X    X    X    X    X     X    (X    ,X    4X    8X    @X    DX    LX    PX    XX    \X    dX    hX    pX    tX    |X    X    X    X    X    X    X    X    X    X    X    X    X    X    X    X    X    X    X    X    X    X     Y    Y    Y    Y    Y    Y    $Y    (Y    0Y    4Y    <Y    @Y    HY    LY    TY    XY    `Y    dY    lY    pY    xY    |Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y    Y     Z    Z    Z    Z    Z     Z    $Z    ,Z    0Z    8Z    <Z    DZ    HZ    PZ    TZ    \Z    `Z    hZ    lZ    tZ    xZ    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    Z    [    [    [    [    [    [    [     [    $[    ([    ,[    0[    4[    8[    <[    @[    D[    H[    L[    P[    T[    X[    \[    `[    d[    h[    l[    p[    t[    x[    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [    [     \    \    \    \    \    \    \    \     \    $\    (\    ,\    0\    4\    8\    <\    @\    D\    H\    L\    P\    T\    X\    \\    `\    d\    h\    l\    p\    t\    x\    |\    \    \    \    \    \    \    \    \    \    \    \    \    \    \    \    \    \    \     ]    ]    ]    $]    0]    <]    H]    T]    `]    l]    x]    ]    ]    ]    ]    ]    ]    ]    ]    ]    ]    ]    ]    ]     ^    ^    ^    ^     ^    (^    0^    8^    @^    H^    P^    X^    `^    h^    p^    x^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^    ^     _    _    _    _    _    _    _     _    $_    (_    0_    8_    @_    H_    P_    X_    `_    h_    p_    x_    _    _    _    _    _    _    _    _    _    _    _    _    _    _    _    _     `    `    `    `     `    (`    0`    8`    @`    H`    P`    X`    ``    h`    p`    x`    `    `    `    `    `    `    `    `    `    `    `    `    `    `    `    `     a    a    a    a     a    (a    0a    8a    @a    Ha    Pa    Xa    `a    ha    pa    xa    a    a    a    a    a    a    a    a    a    a    a    a    a    a    a    a    a    a    a     b    b    b    b    (b    4b    @b    Lb    Xb    db    pb    |b    b    b    b    b    b    b    b    b    b    b     c    c    c    $c    0c    <c    Hc    Tc    `c    lc    xc    c    c    c    c    c    c    c    c    c    c    c    d    d     d    ,d    8d    Dd    Pd    \d    hd    td    d    d    d    d    d    d    d    d    d    d    d    d    d    e    e    e    e    $e    ,e    4e    <e    De    Le    Te    \e    de    le    te    |e    e    e    e    e    e    e    e    e    e    e    e    e    e    e    e    e    f    f    f    f    $f    ,f    4f    <f    Df    Lf    Tf    \f    df    lf    tf    |f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f    f     g    g    g    g     g    (g    0g    8g    @g    Hg    Pg    Xg    `g    hg    pg    xg    g    g    g    g    g    g    g    g    g    g    g    g    g    g    g    g     h    h    h    h     h    (h    0h    8h    @h    Hh    Ph    Xh    `h    hh    ph    xh    h    h    h    h    h    h    h    h    h    h    h    h    h    h    h    h     i    i    i    i     i    (i    0i    8i    @i    Hi    Pi    Xi    `i    hi    pi    xi    i    i    i    i    i    i    i    i    i    i    i    i    i    i    i    i     j    j    j    j     j    (j    0j    8j    @j    Hj    Pj    Xj    `j    hj    pj    xj    j    j    j    j    j    j    j    j    j    j    j    j    j    j    j    k    k     k    ,k    8k    Dk    Pk    \k    hk    tk    k    k    k    k    k    k    k    k    k    k    k    l    l    l    (l    4l    @l    Ll    Xl    dl    pl    |l    l    l    l    l    l    l    l    l    l    l     m    m    m    $m    0m    <m    Hm    Tm    `m    lm    xm    m    m    m    m    m    m    m    m    m    m    m    n    n     n    ,n    8n    Dn    Pn    \n    hn    tn    n    n    n    n    n    n    n    n    n    n    n    o    o    o    (o    4o    @o    Lo    Xo    do    po    |o    o    o    o    o    o    o    o    o    o    o     p    p    p    $p    0p    <p    Hp    Tp    `p    lp    xp    p    p    p    p    p    p    p    p    p    p    p    q    q     q    ,q    8q    Dq    Pq    \q    hq    tq    q    q    q    q    q    q    q    q    q    q    q    r    r    r    (r    4r    @r    Lr    Xr    dr    pr    |r    r    r    r    r    r    r    r    r    r    r    r    r    r    r    r    r    r    r    r    r    s    s     s    ,s    8s    Ds    Ps    \s    hs    ts    s    s    s    s    s    s    s    s    s    s    s    s    s    s    s    s    s    s    s     t    t    t    t    t    t    t    t     t    $t    (t    ,t    0t    4t    8t    <t    @t    Dt    Ht    Lt    Pt    Tt    Xt    \t    `t    dt    ht    lt    pt    tt    xt    |t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t    t     u    u    u    u    u    u    (u    4u    @u    Lu    Xu    du    pu    |u    u    u    u    u    u    u    u    u    u    u     v    v    v    v    v    v    v    v     v    $v    (v    ,v    0v    4v    8v    <v    @v    Dv    Hv    Lv    Pv    Tv    Xv    \v    `v    dv    hv    lv    pv    tv    xv    |v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    v    w    w    w    w    $w    ,w    4w    <w    Dw    Lw    Tw    \w    dw    lw    tw    |w    w    w    w    w    w    w    w    w    w    w    w    w    w    w    w    w    x    x    x    x    $x    ,x    4x    <x    Dx    Lx    Tx    \x    dx    lx    xx    |x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x    x     y    y    y    y    y    y    y    y     y    $y    (y    ,y    0y    4y    8y    <y    @y    Dy    Hy    Ly    Py    Ty    Xy    \y    `y    dy    hy    ly    py    ty    xy    |y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y    y     z    z    z    z    z    z    z    z     z    $z    (z    ,z    0z    4z    8z    <z    @z    Dz    Hz    Lz    Pz    Tz    Xz    \z    `z    dz    hz    lz    pz    z    z    z    z    z    z    z    z    z    z    z    z    z    z    z    z    z    z    z     {    {    {    {    {     {    ${    ,{    0{    8{    <{    D{    H{    P{    T{    \{    `{    h{    l{    t{    x{    {    {    {    {    {    {    {    {    {    {    {    {    {    {    {    {    {    {    {    {    {    {    |    |    |    |    |     |    (|    ,|    4|    8|    @|    D|    L|    P|    X|    \|    d|    h|    p|    t|    ||    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |     }    }    }    }    }    }    $}    (}    0}    4}    <}    @}    H}    L}    T}    X}    `}    d}    l}    p}    x}    |}    }    }    }    }    }    }    }    }    }    }    }    }    }    }    }    }    }    }    }    }    }     ~    ~    ~    ~    ~     ~    $~    ,~    0~    8~    <~    D~    H~    P~    T~    \~    `~    h~    l~    t~    x~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~    ~                             (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                                                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                Ā    ̀    Ѐ    ؀    ܀                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    ȁ    ́    ԁ    ؁                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                Ă    Ȃ    Ђ    Ԃ    ܂                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                ă    ̃    Ѓ    ؃    ܃                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    Ȅ    ̄    Ԅ    ؄                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                ą    ȅ    Ѕ    ԅ    ܅                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                Ć    ̆    І    ؆    ܆                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    ȇ    ̇    ԇ    ؇                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                Ĉ    Ȉ    Ј    Ԉ    ܈                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                ĉ    ̉    Љ    ؉    ܉                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    Ȋ    ̊    Ԋ    ؊                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                ċ    ȋ    Ћ    ԋ    ܋                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                Č    ̌    Ќ    ،    ܌                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    ȍ    ̍    ԍ    ؍                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                Ď    Ȏ    Ў    Ԏ    ܎                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                ď    ̏    Џ    ؏    ܏                                                  $    ,    0    8    <    D    H    P    T    \    `    h    l    t    x                                                    Ȑ    ̐    Ԑ    ؐ                                                     (    ,    4    8    @    D    L    P    X    \    d    h    p    t    |                                                đ    ȑ    Б    ԑ    ܑ                                                 $    (    0    4    <    @    H    L    T    X    `    d    l    p    x    |                                                Ē    ̒    В    ؒ    ܒ                                     ,    <    L    \    l    |                    ̓    ܓ                    ,    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                                                        ĕ    ȕ    ̕    Е    ԕ    ؕ    ܕ                                                                          $    (    ,    0    4    8    @    D    H    L    T    X    \    `    d    h    l    x    |                                                                        Ė    Ȗ    ̖    Ж    Ԗ    ؖ    ܖ                                                                          $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    p    t    x    |                                                                        ė    ȗ    ̗    З    ԗ    ؗ    ܗ                                                                          $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                                                    Ę    Ș    ̘    И    Ԙ    ؘ    ܘ                                                                          $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                                                        ę    ș    ̙    Й    ԙ    ؙ    ܙ                                                                          $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                                                        Ě    Ț    ̚    К    Ԛ    ؚ    ܚ                                                                          $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                                                        ě    ț    ̛    Л    ԛ    ؛                                                                          $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                                                        Ĝ    Ȝ    ̜    М    Ԝ    ؜    ܜ                                                                          $    (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    d    h    l    p    t    x    |                                                        ĝ    ȝ    X    |        Ġ            0    T    x                    ,    P    t                    (    L    p            ܣ         $    H    l            ؤ             D    h            ԥ            @    d            Ц            <    `            ̧            8    \    Ĩ    Ȩ    ̨        $    <        L    P    |            Ա    ر        T    \    `    d    h    p    t    x                                                                                                                                              $    (    ,    0    4    8    D    H    L    T    X    \    d    h    p    t    x    |                                                            (    ,    H    L    h    l    t    |                                                            (    ,    4    <    H    L    T    \    h    l    t                                                                                (    ,    4    H    L    h    t                                                (    ,    4    H    L    h    l    t    |                                                            (    ,    4    <    H    L    T    \    h    l    |                                                                (    ,    H    L    T    h    l                                            (    ,    H    L    T    h    l    t    |                                                (    ,    H    L    h    l                                                (    ,    4    H    L    \    h                                                                (    ,    H    L    T    h    l    t    |                                                                (    ,    H    L    T    h    l    t    |                                                                            (    ,    4    <    @    H    L    T    h    l    t    |                                                                         (    ,    4    <    H    L    T    \    h    l    t                                                (    ,    H    L    h    l                                        (    ,    H    L    T    \    h    l    t                                                            (    ,    H    L    T    h                                                    (    ,    H    L    T    h    l    t                                                        (    ,    4    <    H    L    T    h    l    t                                                                                    (    H    L    \    h    l    t    |                                                                (    ,    H    T    h    l                                                    (    4    H    L    h    l                                                                    (    ,    4    H    L    T    h    l    t                                                (    ,    4    H    L    T    h    t                                                        (    ,    4    H    L    h                                                (    ,    H    L    T    \    h    l                                                            (    ,    4    <    H    L    T    \    h    l    t                                            (    ,    H    L    h    l                                            (    ,    4    H    h    l                                                (    ,    H    L    h    l                                                            (    ,    4    H    L    T    h    l                                                                    (    ,    4    <    H    L    T    \    h    l                                                                (    ,    4    <    H    L    T    \    h    l    t                                                                        (    ,    4    H    L    T    h    l    t                                                               (     ,     H     L     T     h     l     t                                           (    ,    H    L    T    h    l                                                                (    ,    4    <    H    L    T    \    h    l    t                                                                    (    ,    4    H    L    T    h    l    t    |                                                            (    ,    4    H    L    T    h    l    t                                                        (    H    h    |                                                            (    ,    4    H    L    T    \    h    l                                                            (    ,    4    H    L    T    \    h    l                                            (    H    h    t                                                            	    	    	    	    (	    ,	    4	    H	    L	    h	    l	    t	    |	    	    	    	    	    	    	    	    	    	    	    	    	    
    
    (
    ,
    H
    L
    T
    h
    l
    
    
    
    
    
    
    
    
    
            (    ,    4    H    L    T    h    l    t                                                                (    4    <    H    T    \    h    t    |                                                    
    
    
    (
    4
    <
    H
    T
    \
    h
    t
    |
    
    
    
    
    
    
    
    
    
    
    
    
                (    4    <    H    T    \    h    t    |                                                                (    4    <    H    T    \    h    t    |                                                                (    4    <    H    T    \    h    t    |                                                                (    4    <    H    T    \    h    t    |                                                                (    4    <    x    |                                                                                                                                                                                  (    ,    0    4    8    <    @    D    H    L    P    T    X    \    `    l    t    |                                                              (    0    8    @    H    P    X    `    h    p    x                                                                                          (    0    8    @    H    P    X    `    h    p    x                                                                                          (    0    8    @    H    P    X    `    h    p    x                                                                                          (    0    8    @    H    P    X    `    h    p    x                                                                                          (    0    8    @    H    P    X    `    h    p    x                                                                                          (    0    8    @    H    P    X    `    h    p    x                                        <   P   p   t   l     6  ܛ _              ؝   ܝ                	   
      
                               $   (   ,   0   4   8   < !  @ "  D #  H $  L %  P &  T '  X (  \ )  ` *  d +  h ,  l -  p .  t /  x 0  | 1   2   3   4   5   7   8   9   :   ;   <   =   >   ?   @   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    [  $ \  ( ]  , ^  0 `  4 a  8 b  < c  @ d  D e  H f  L g  P h  T i  X j  \ k  ` l  d m  h n  l o  p p  t q  x r  | s   t   u   v   w   x   y   z   {   |   }   ~                    ğ   ȟ   ̟   П   ԟ   ؟   ܟ                           -
  Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ| Əʌt Əʌl Əʌd Əʌ\ ƏʌT ƏʌL ƏʌD Əʌ< Əʌ4 Əʌ, Əʌ$ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ| Əʌt Əʌl Əʌd Əʌ\ ƏʌT ƏʌL ƏʌD Əʌ< Əʌ4 Əʌ, Əʌ$ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ| Əʌt Əʌl Əʌd Əʌ\ ƏʌT ƏʌL ƏʌD Əʌ< Əʌ4 Əʌ, Əʌ$ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ| Əʌt Əʌl Əʌd Əʌ\ ƏʌT ƏʌL ƏʌD Əʌ< Əʌ4 Əʌ, Əʌ$ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ Əʌ H-MP00L   D   <      K   0 0H
 | H-M   00 < 0 K j -OFMA}DDDDFO0UCMY (@؀6J FQF"P "x *F$v(V(axi)Ѣxm*x<;+X
x:*F<V+x:(
HYF" (0ܠ0	)<(0>( =(Ѻ< +ѵk:. FNF (wGLHH *Y DGLhD|D+X0F`h`$xF *Q\xx:(		HFIFB8F{ :й '  '@FQF"(@FYF"H:!@F !M'  #p  LO0,YC"h `@F _ !`FP /`0F
`Mk
F FIF"| ($( F	 
 v	 x	 	 	 	 	 8F
#hg`i ]X FM6o ,8-CFFFF ohB9$h ,-` -%
` g hchC` ai ]+`  ]"bao # `g!hc`yL`d NF (ѽah"h )Kp{DFٱJ X "hhFz9F!FIBF $hF)F2Fz+ ((FM Fp 
 K	J{DoXhFhBh +pGFpG 
 KJ{DXhB	k )FpG pG p
 8%F`)FGa #<V7xW 67c``8  -AF4MF4K }DlX # d
F   0 F (QԱ$ )l   #
F0 F (; ""d(h5l   #
F0 F ((;hBDE#H)X
hJLU0hhBф F!@  r ` FY Ffpvk"@c
 F9 `[ML`[Id`[El`[A`[=`[9|`[5T`[1`[-`[)`[%`[!`[`[`[,`[4`[
`[	`[`[HO36 F)_ F!0b09o@#M #7  8!F
M F/s	K}DXh)JXh` c8 F8@Mk  
 -GgOFFFD&FPk+(F<i# F B ")Fik(Уk +;<l # d  
F0z F0PHxDGEN !!d V? ((` (Ѓl" 
 "d3F
F0U Fi (&d Б# (Xck )g .efl6. && &1IPBP FzXcH Fg(F +hB  (` F1 (=( (9ѡk )Jc 0BLE.Ѹ `lMlMck"kH9X
` c#kbkH9X
` Zc FG> F! Dc F	 !$
 W	 -CF M* K}DFFXhFH 'xDE+ F!;yI /' '#   jXFFhF 0BF
 F0k !FBFFH)X`8F.
 	 C-OBYMF}D x%(#(TJXhmSL(Yh@ "0FF0F ( 2A
E@$ X  "DKOX 'O49/̿O$	O 	   ^*  XFh 1!yFXFMR0H*Xh$$6CEёlHF  AQlHF  p$H+XhhBh ) ,mk *oHFy ,C7/XFM bO HxD ,HxD1FBaO4 F
 e	 {	 -OFF #`F 0xHJ^)zD~0NF (|CIyD 	 F  FDEa

'PF!y\F(DE\ FM5X1MO	rY %h!$&걱l8F?F(ql8F9F 0FHFN A% 56k .ѵѨ M  @8FyWDE FL		8FyI )DE FL`( 8F 0F 
 0	 
K{D 
JXh  S0hmB	k )FpG
 8FFFP -  Yl l8@H8  8F
KJ{DX h0\(F Ci!h0!hp1\o h8@[`
 0HxD N
 pMK}DX hIlX#hhFaL,H*Xh h #apph#haL}!h"Jbp 
 -OFFFFpEL|DF6T ETy@H1FxDMVs>KXhFB l))e) a (F Gh F//IfX3h0h	(F2h(F ( h(0h @x +'F*NY2hQ1` ! m
FW3hZ2` (H!Xh + /
JX haL!h Hb   
 	 # h  -OFeMeK}DeJeIXzDeKyD{Dh
$6#  ( 
 ]NDQlY )@𝀔ZIZJ$nX (u! !\3hF
Xh	B	RJXh BE "#" %"ch+k (a#h#  #@ (O 	O=	O-	k@
 F (  +  x @1?hCF
 'C#F0hAF(@0D F 0_TK h	2hhB
BU0hi FVFAF
8FC0hDh/$kH*Xh )?Z8h@rLc"  F:hOSHZ X
 	 Ǝ	 Վ	 8
FFF8l++` ` 8F8  8FMCh}DB	H)XhhB`y F; F8@@vt
 sFiF  M}DF0<KXE0F   F|0
 K{DJF X ihi1
 FlXiF (   eaee ##eFFF )Bx +?Al )< FH (Aw0m(O2 # # FiFZ (oF1m$rm !F #BB
FmBBum #,F %BB	ѱm#F)FBB  0F3m +    KFJ{DX "h 

 K
J{DpFXFhk$k F)F2F ( , Fp
 FiF (O2 # # FiF8!HF0F(FL F F8  FBJzD@CJ #FzDC 	 	 -OF@@FFM*M}DF ( NKX7h@AJmzDCm F F"!0hl *@.I
8F
byDL/Bl#F    :FCH0m ](ODODOD2hk4D0D(D$DX DD0r ](IyDIyDIyDdJzD
2hkX )zJzD;F@AxJ FxOzD E9Y^H1h;hEhd!FPFd"	h
F0hhgH@AfJ+XzD FeNYhh.bJ F@AzDE	#_J F @AzD3FE[J@A FzDSF EN( F;hio23a 1f  ]I9h h+F+ F@1B " ""T( pp AIyD+`A<JzD;JzD>h0`36h CZ DO4H!-X F.h)`E.`IFJF FD-IjXh;,IjXh3+IjXh !B F	OL1 ?ٮ	 @B *
 	 t	 _	 W	 E	 J	 O	 F	 =	 ?	 +	 >	 	 '	 	 	 	 ܉	 É	 	 	 x	 	 	 p
FhFDl h<
Q )IyDIyD(F ,I(FyDrp@LKaBFd!F Fd `CJ1FzDF(Fp@C @B @	 >	 4	 
	 !HFh3h` h `8
FFlL`lL(FMd #DdH`d Fld8  0FF 	xs`lLjlLg  O2 #`dd#?jF (P (O2 ##kbFhB@h(HxDD_"F M 0L-L*  !`lL%lL" bdd#l +?d   ebe##ee ! F_ 0$	 -CFNKF~DX8hS(O0 ! ( (6	3FpL  FBFV0 hKF ! F\@1$ (@,"F$&F F/ F (@ $ $-8h (Bl *сk)Dh$<h$ h(?.x + !  
FF/:hB !  
FF/' (9hB @\MFLl
F8Lb FL_LFq"
6#cdM2d F
d Mgall`l %L?edlL;9hdB F,F8hB F !8hBz'iF (t F9FuDu F!-HI ""c pXV0hbc`hcacBH`xDhS` +e?HxDD>IpXh27@0!H9K!{D`! F\
o/KXo0h`p7D 7ld# +? &&e!be!ee " "c F* F:q F:
@$V  1F2F3F/ F (?&h 0F1F2F3F/ F ( F"
 l
 ΄	 <
 F !
Fr m   #L|DhHKXh*ImbXh0
 F@hl  h-OD4|D
XhcXhh (@4:>:h0h8FL ( &\$.hPiiHhaXh )
@!"Xh
F4d #FY	
	h h `D )U +M8 *NܛFI(hEA)i\  ChB
hB#}"DH*)JE##sE 0 

p
h )F B"VPiiJjaO E FEȰd +aHT    )h + (8)PF (Fh8 (PFXPFMHF`PPF %	ThhBѱIbXhhرɱ QhCPF8 !  !HF0F58	 FO F 3zF(`T	0h!
F
B )ؿ9F
 
HNT   S 0Y1hhH0`H
"X  !h$FT
`3hh(?xQ0hk*Fl&n +OO
 &xJXB)hHBuJ!X`]ұh Bk h0B	"
h]Zh (VSѸ bH!!#X@Fh `F (P 0Y h`
h(i  ) T FhXh@h# #"   hFF  O H   (  6JXhBBr`6
B
(F"	hBE
`	B*H"Xh +?WXF !XF
F ! !
F
 ! H  OK  
    K!J{D-AFXhF& *1LYhlHxDhI&`0F9Fb6 ( $ P-hB
ܦB(F9FR= ( $ -ݥB  hBIyD
hS` 
 $K jK -OMFJ#}DIF	XjX hhf1Bl"kJH6>
F F!h	\U0h"`Phk *"`HxDD h (!h6B  H*XhZH "N'h+X`YhFf~lo CK  F0Fl/8"h7	 +k(h eo L"K&1F 0F2F3F/!h(	H K1F3F BF0F/ (	  !?  " #aahH@F !?u#hhAE"hh(E~
?ox +	 h !E h !	F
F 4 . hkK !	 hJ4?H*XhhC
<IhXi! hK (EL&85ImXi!(hK (	0  hIFEg h\& #hkB@c  n-#Cd"h !	 F 
F.	8Fxh9F
.  #h k"c !( 
FF.w
.	
  H"`xDDo 7`<
 (}	 ,0{	 F!5M[L7}D F1H1J.X1h`qkX"X3hc  <`Y`aaZbH fchsP6x!U `  FFm IhXhIhX` ! F13h9h" Zd  !
FF.+8h ! 
F F.#0hi+  Egd0h1hJl*ёH Ml( @x|
 48-OFTNFTK~DX8h9PJ@XhV@%;h!hm  h&IJ ! XF
F)`=h .(F (Y& (U hhBу>O O (F !(F (:& (69h Bю#hhB # Ѹ V hyhb(F (OO  FF)F #BF!hQEPF) HF"hh8hE&c (HF9hB hOZF 
 <-O-NF %%)~DFF8)IrXh,L0YhNJ)XhF њF$kKXh  B
: F (  FF (@HxD#)%# $k ,9mBD )!F$k ,Fdk ,TF$&
; !BHxDC  wHV
 1X h ! +=$& *@`B\ጹHFxDѳHxDHxD - G/ch$ )и 	 F(HmxDLJXh$&ZB	ЛMVF  ]FB
k +  ! ((hB3IrXhi +h
l *DKVX
hhB8V0hh ) ! F*hB  Fd@k )  !F:FF MsYh-(FQ (@ˀvJX	h7 +@'O 	H9F+
  F ( 𘀠B $ ( hh (@𜀻 FB 
H:E E- ) ek !'7B	$0jh *uѻ F	-khmk-h$	Bd-k -b4 PFAF:FO/3IsXhE t<L3YhF"hPF7 (d  F (PF; (V7AFe*H0XPF9F& 8  $XV0hB ?uvO 0UF!z ]FF јF ,
 x	 x	 x	 x	 x	 x	  @D-O[OFFDBFCF" @F*
x *@F PK $FXF>4W0hmB!0F+F 
F(4 F5B 'x	09	) #5  \FQFfF-
h *hs 0FKF !
F(4"L.<Y h!IyD.IyDIyD% h)H:XhB#.,HxDHxD.,HxDHxD,HxDCHxD!FCIxX   

 (u	 =u	 Uu	 HWu	 cu	 iu	 tu	 }u	 u	 L-CF.L.I|D.KbXXhF0h/-hF& #(I 0 T `:FdX1h h(FT3hB  "#FF-(F2hE hY/hF&L T0`?HxDBJIXcXh  `hF& ! ^
 PTt	 X\-OLK|DjXF
jBu i@B@# !8 ݣJ!X
F(hN %HYT >F 0h;h( 8 *ܹ 1hBT2hT	hBir@ 	ыMFYF"3h`Y]F h5cF +ѹ  !
FOHNT J  T  !  Yhy`T 'hqh ) $& *|й аk ( 0 +T	 hhB h (/GfI  FcX!!h`E`F (Q^H !#X0F ,0F;`eFC
h*&QHYF#XhNH "
`#X &  eFNEIbXh5% ݏ_T0hBBr  eF6kBs0hCh !3`Uhp`./OY9hO	  0h (IF0hUBPBP	0Fd  ;h3 8 !  !0F=' `hNBIbXhk z
  PT -AFLHN|D%XYh %5` is  ^ 3h+ѹh
xs*&H)F#Xh
J !1`X`&@Fh
 PTlHxDpG  pG m	 K{DJFXh$&B
$ !  FFF 
FF-ػ
 8FKFm{DhHB`-  )F"FB8@-8ʽ
 -AF  "#F.ODF (P
)F0F,jF FE!F-$KX8h=(%* " o CH Fhll.q(:h)hhB1F "(F>RF0F>F@F (6 F8hhB %JI-9hB F ! %(F& R
 -O܁FFDF!
"JfyK ( ր)F:F<U
FB)F_:F0  UO bIX haHX 
h * 00lX\*jw  :>F  :rFPF;.F-LEJHF:gBF:ШBwLA1K08 ";ZB """cu
 PFQFB J
uPFQFB FHF:8#HX 
h  GDKX Lh C2   hA3<  (NF
  *G ,і F	 
 `dhlp<#)p2	*02 W2$Bp	,04 W4p#  #\	*02 W2U	)01 W1T ">#qp8
)MF}D
)
KX hK(
!
!  !JXh  )^#JXh  F8@^*|""p~#@#papp8 0
 t`KJ{DX
h
(I[X\  pG  pG
 `xK "{DF2 (DB(IZXh:@S hY(	BlaE
)  	 S0\    
 `|x
KF
I{DYX	h)  ):žH X  pG
 `x-AFOF %DKX
hrH;X FhGF FDDFD-w4- x>(FԶ
 dlo AпxK	*{D<S h *0S hR
HXFhF!FP`@ x
 BK*{DI[X\@pG  pG "
 xJ(zDFLY$h$ 
ٲ:LYh2:{(Կ   X(
$B   
 |`KJ{DXhɿ 
 KFI{DYX	haLYx	]):(Կ   H Xh@  
 dhKF{DLY$ht<xS0]+:~(Կ   x@  *
 dhK({D (  pGJX\ @ʲ * pGش
 x #F 0@],_u 0     
JF
IzDQX	h(:7( +  pGHXٲ ) pG~
 `xKJ{DX
h2(IZX\)DS h(:	( ( 	(S0\ Ѳ  pG pG<
 |h`x8	KdB~"@ {D%pXp  %IyDhS ^*H !xDDUEip, F ( !FD HxD8 3 3 3 3 ~3 
KF
J{DXh)F@L|D F F^
 `D3 -O@NF@K~D@LXhF3YhF9-<I8FrXhG(F9H1X8FWD
hGF2TDhFYF!hF! ($4 $F8x (`0KF0 F  B41 "p*  O(FYhG(FJXh(FGF( F)F:Ff F2QF mF FZ+x +Z 
 dl-GFF
lDF+HY 
hRO FY0hG(F- x6F(FF
 D ݠa*F FQF2F=#x +ѽ 
 dlKJ{DpFXFhLL-hB  p FLX, ,p!F<	JBR p p 
 -CFxFOF	+FD IzXhD,hHFF!Fd0F(F40xW0\)(FIF0 "  $ F&
 hpFMF`F}Dp@x	+ ((U0h@!hFF!Fj`pFp@
 -OFXFFFD %o J+F  1F "FHF
I[ h-3H[  F
hG  $#xWEDE(F T
 dlKFp{DLFY,hP- F #p@O
x	*)0S hQ
HX0FhF!F`pp@D
 F	h	M	K}D&hFXh)J0FXhG  68F&`
 dlsFFE"F0F)F$x ( F|F    -OF hF	h "=b0o BiLBP|DO F -dH!X
h -V %O #0x (s	((FQF
0hT h)XIcXh2(0F:FSIcX\ + OI2x`X\)8F)Fs@#FKX\  FE7T0h(?J0FXhG  6
F #RF8F+F 1F  F E,H!Xh+-JXhPFG  DVF# VF`P` *00x	()IbXh$	pT hIbXhxe)`  T hB
 RhBB`
`	 
 d`xhlKFJ{D0X " hP  #hP0 &
 -OFF
h 0FB
FD@Ь $$Lh B $$ 0FT)F # 0FAF #	AF#F0F)F#F BԿ   0B,Z  h xe(њB:    0ڬ
 FF+ *	*pGFF3x0:	*pGFF+0:	*pG08	(   pG0	+	٠a)A8(   pG pG8F%F ((F8J@(FzD%(IQX	h	:	(HXhXDDllPBPApG0R hQXx вpG  pGFpG 
 `4
 J@(FzD+(IQX	h	:(IRXh +БXHXhXDD UUXBXApG0R hQXx  pG  pGFpG F
 `dN4
 J@(FzD#(IQX	h	:c(@R h
HXhHxD\	+(3R h10FpG ª
 `d4
 J@(FzD#(IQX	h	:c(@R h
HXhHxD\	+(3R h10FpG R
 `d\5
 pFF; +	+ +pG\++Ax00x +	+ +pGpFh F.#x-+4F F(`0Fp  -OFMF}Da ! "@JXh (ldKJX #Xh4F )  U3"F +&T3+ѷLO̢,YU
`Bj F0hF& П+TPEю+т`#8L,Y\, )$$T3+ # @BfAH(X\(رBю+4+L@ T3э /' 'O8 # UZ\* dFD3H/рH/H*Xh`^)\x<^O	O 	 Fx0	+,qIjXh&96F0x-)Zx^^x0 	(cIjXh 9F3O6a)  Br.x,(s@,O
&TFo&FO 
k _ F ( F (Z?IkX] " B UM/)Ѥ  ^(Gh#6IhX"\*?1KX .H
]*XhOOsD# ] SC U!/!JX ,@L@ ! A 4BxC,,x +?lx )#7/
J zD`
 |tx`hdv& K!J{DXhN2
  x8
(а
JBR  a+W8pGA)78pG08pG-OFxFFF-*DOFO !x0)zex8-w9-uOX-x-Ѡx4 ) F %7+b/+0%?0	*0- %"F $
0<Fˬ0 ()%  %'F $
/ܤF
% $F$F7  F (0<F 0	+ %  P  `
: aB`
`(`ܽx\+@x 0 pG  pG8F(F8 FR!FB(FT%F4+x +88FJF,F F8JzDh3I;`yDh\pGO0pG$ $ KJ{DXhy(S0h(&
 pGdx (pG  pG@
 KI{D0yDh	hF\|D (
H:\xD	`(F0@ɼ F;0 `$ l$ @$ LK|DJXXh@R  I `CIbX8 #` 
 8FKL{D|Dh@C (	(I  yDIbXhC<089 (=  CaI  yD`8HCFI% ,8# n
 # `~# K	J{DXh )	O2`HXhi !vpG
 8KJ{DX h%Fq,L!S0hI( h08@K*ho8ʢ
 0FJIzDRX0	)hF	JhF
!zD@hF1t1#hBj
 IW	 KJ{DpFXhA -&LY#hi9
<U9 <P xHp!hia"hiB!hpiB !"C  p  C p8
 `-AF;L|D3U (n9KX -I+ (a6H6J'XX8h)hiBjhiBTЀ6 0h  { +X !K T0hF 
F,9h1Ʌ 7#M#HgY#X9hhMnBF H"XhFB ! Q 
FF,9hHn (`2h  {TT0hH"Xhx  |{I "`X`+G (
 -AFLK|DXh )JXhȹMaY
h<N@YT0hhiFiB8F[h+FA2   
 pF#L
F#K|DXh )>KKfJX-hxJT@zD!hLo|DHm`J ##`zD`9"!!`L|D hhKJ{DzDhhKJ{DzDu!!`K0FJ{DzDh+Fhp@wp.
 :  &             J0zDKh{D **IHyDhX	hB"*MXY hP5P:*IXX !hi0@uKaH{DxDh
K{Dh0@wK0 b
  : L > -CFL|DxG (/ЈKIX(habXhc<I/hbXhG	 a  KJ)hX hB$  !%
J(hXo`*h ܞ
 dpF.N~DDIrXh[  < ,,  `pp+] +	+ J
 -O\WJD[ h .@TIF7FF[0hFe`5F  '34[ Fh
,II[0]* FO]x,(X,&o,&O,$u,iU,gN F F--0  (+	(&
!E0='O	- .BE'9'Vu.ѸU.Ѹ,ܣ( & KB%FDF -
%
%DFd[ h?% K 0 F1  `%
 $&F% / /ѽ(F 
 h|-GFoNa F~DY ( ӀkKmFX h0ȍ <F  t@F6 09JBR +Eк B /@HBe (	(#hi (VH1X
hz<V08O8 (1 YHBF (	(IIrXh3#h 3 <508.8 ("h 2 c Ye +
t Y]F (@F
F#B (]2HV    !O0T#h ,J  ! X
hhB hiT (!hiZa[ (1ao @HqHw Y<F%hiBѩ0FJ4 #CUEFop"hi:F<\H!xD`8FGH
 `< -OFNFF1~DL0h|DH8JH #zD3`xD``0IyDhF;D}JzDhB|OD8hHzH{KxD>`{Dh`0FHwI܁`XTh +@ - rJzDha YoOToF `  i (x&BI (HBC (F	( 0 3   ! .	.B-H ! o   *kй 	D)hT0hhB_MI`XI! hH (V(hT0hiBLBOnFY;hF3    HB0 i *PaB (F	( 0 iB CT (  iAaT hh&NiY1hB<vrhBȿp`    ͱNxYT h fl H!XdɄ    
       h  Z 0	K
J{DpFX%hUHxD0^0F)F*F##`pD
 M	 LK|DXhFi*i +0 ! 
F} h!Ab@C 

 cLIK|D`XXhhi"hFB h0 ! 
F}#h XbB (ѽ@Cg 
 77LK|DXhHH!X
hh#H!Xh0O0JX%hlF5  !O0K(FhFhK{D`C,> j
  ~ 7LK|DXhKH!X
hhH!Xh0A  `JX%hlF5   FK(FhF*K{D`C> 
   KFI{DXXhLLYh`S	h@8 (	rh	JXh8O(O  *F *r
 p#L#K|DX.hV( J !)`zD`H|!XT0
h2  <HMK "{D`H!X
`0HxD0K {D`L|D h (&`)h9JzDh 8  p  p 
   J	    KJ{DFXN)hY1FhG #!X'
\*"papp4+3B F)hB	 H
 8FM}D(hHYD I F(`,,#; FJ #!zD`pCp8 J  8KFJ{DX	HXh) h j8@H h "a#h Xb8;#h8iJa )	) -Bx *瘔
 8;aL|DxF  8IbXh#
IbXhG  )\ )JXhia Hb8,
 dl	K
J{DXhiPBHa$LbXh	9b F
 d8 (K
FJ{DX!hi*  8BI[X-!hH ( "ha h jG
J& 8禓
 0-AFNlFK~DX(hGl )h1ɍ  F(Ѹ JXGf+hXlB
 u[hF^J!zD`C! L
 h  (KFJ{DXN!hYi2hhB  -B2h hhBԿaaH-!XhH (#hjG J  ֒
 0-AFNlFK~DX(hGl)h1ɍ  F(Ѹ JXG+hXlB
 thFJ!zD`C d
  K{DhIyD
hpG Z  -OFFF,N~DF@V @(F F0(F!HF F #9(F8.B4x0,^,	/)x)ѹ "2p $ <FLLDD(F0,0,PFXF0	9 4p     0 ̑
 LF	 EF	 
K{Dh	 $JzDhICF (| (Ac\+ "bT Fl   J!IzD-AFMRX}DhF+hB1L|D hB20! `HF "h2:"`L|D$h4!F*hN FH&M}D K2hN{D~Dh6hqH:I4wUyD`Ȑ
        -A-L-K|DX-K
hFXh*NY\.% 
 5B`F1FBBH"XhKB$NY\.v 'U7B(F78 (F1FBt(]<Za 0B
 dh`8 K	J{DXhF`G4f (%`8L
 pFZL|DKX
h2(Fe0FA
H#Xhiip@B(Fp@Np 
 dpFM
K}DX0hiB(Qa FU0hQ- (p
 -OGF7|DX8h/F b X  *F@{ - y	- vl!X
hP;^x +@gXX!XT0
hhiBl X8@' zDhB O>4 yDhB F(gY0hpx *F!Xh!iS}"yD
` ( *b XZ
m XVw XR6hf
 VA (	(x A " 6  &!{DzD8FA (F2 B@ځ )@
c X ; !#
FAFPt X ( 'fY:h>Fi (  O G;;hFia	0hiB AF F к	5XhB;078 (n3hiGAzF2hi (ݺ к	h );i07b7 (2hi к	h ) ;R07K7 ( 2hiXE1 X3h  E@GA3 (	(
h *Z;)07"7 (Q0hG1h	E>^: +70hEEPG0hiE	FBEF @GAA (	($Xh;077wx1hiZE'	FE)F0hiG
(v X (?$ + 02hcXihBi[hB F 3haF;hT   GA (	(IbXh ( Ɓ;077 ( 1hiB;h
i v	# 
# )     h  D` IyD     j *Bn X9hi8A (ۻ 	 O BE;hYFiB!B9hia;4?hKIi{DBȿa'``X &`FH!Xh +?FA - >FI
 t - 3OKYX8h (g2hBd; "#FA (Zm!GTHx<:+џK2"{DGF	9 
T	 )	)Bx,:*яK2"{DG{IcXhi FY  *	*г		 8
 3hl̜EHFAFB9 !zJ9` ^/1`X 0-~^-|8h@(FT0hG(q1 (mZJXhZh (d) (`эTP  -F%2HpU51jFh ^*)0('^(%;h+YI`X	 *d- CqD EQJXh )HF (p (
0FuD "l,BНT w!
 l, *>pO1/89hѱ5N(FYhG(F4H"X(FhG
  l1FB(F	(FBf(FKB/g !
 +A& +?O  /hB1 t
    
 
 ?	 `p
  
  =	 =	 d hFKJ{DXh(FhGF,G(] F &UB  FO1/i
(
(F .! !O2@» b
 sFGL2FK|DX #(h  \H!X
h@ @*hT0ihBi[hBO0p@Bp@Ap 
 -OFwNwKF~D "X(h 0F(hi W+h	 @5 O4!B	JBR "PZI (hrX 

o JDO hK@)hO; "sg: "FFIH1X
hR GKXh
 GDJFPF
MJFD(hoE݊B HF "D   #	0HFAHFGo J(h 0 !a"BbI h*hV0ihBXh0PE " Z`lV0hPE " `K ,  <)hiB  {8Fw4 '(hiB /z
 dl-OF@DF<4F|DX
hFh(:7 x (8 TeY.hi+iys X$Xh6*hT0ihBiZhBi XpT0h@IfX3h +*hiBo X0)hiB &k (  AFK "{D`H*h!X  ` |OiY NE
ѩ 	 (;ho Ay`X8`JX7hx
FO73hY(hiIEFKAx+hiFPaa Ww W)h"  i:F  (B0 +  	  !  
FFR AKF: @!1`*h8F/hF /<  &T0`/ `&" ( & |(hiNE &!/lT0hF Yr ( )hi *:<	+: ( & FO 	q !JXh ( ' p )&  Y>YC 'F(h;F  F(h;F  :FF1FpCB+: ) 	)"ѴbH*h#XihBiXhBZ`0FA7|T0hJ  (h  # XN '~DBKE]2YF/AsG'An'OF/
AeFG PFBHEFL9T0hKO0r=JT  PT0h!:?7  A  :2H#Xh
F /(hiB"IibXhBRhB&(hi) J  X`@F/I*hcXihBiXhBZ`pv!T0hFpI`Xh2	+ho`F80F v
 4  $)2	 `(08 p'M}DFHq ('KXhK FHLxD/r W|D"h (! ! CK "!{D"`` 8  8  8 8 ~
 3	 
 
 	K
J{DpFXhGFD0]< ,(Fp x~
 l7G$ "	M F}DF FVKXhi|tJX`> >~
  KJ{DXh0@C0 
~
 -ONF~D ( KXhd&x[l`JKA zD{Dr0!/*/*( !(O O*O*(!(  0(_F )O   '  ^*ј >(@5_( 2 Ѐ@B >-o*ѻ  &2B!O*ѻ  e*!ѻ  e,@MuY*hi)@
:FR+hiB@"f ( :*Lѻ  :,@: !FCR (@(FC (@D (@:xMuY*hi+F@πZ\:)@ʀ:)@Ā # !TC*H8FC(C' ':|*h:#i@ < /@𷀦<*"ѻ F< B  GXB BFF>(јF3 >)Ѓ=*zј0,+v +t~+O	O 	(F,!FF (F   /a
V
hiSEVtEй O,M FVh	h^1 B;:FhiREo
 P RF)F 7 8    ":FZhi-B ТB@F@F   ( / 	}
 2	 2	 p-CL|DKXhhBA  ): %FG
HHFT *F0F9F_-  oB  )ȿH"XhG (нz
 -OFF6 %|DFX&0hzD% T 0`s+ yD`T	04  p`X?(FLdfYh:\fY?HF>PPVPr)T0eYT
Ov)M(h
t	0R.ȉ V.$yD yDyD! "0  !O2   !- F 
F))htiCEiB0 x hE*h 2   0`Fz .h6T0 
 
 'W`:e5yD{D`o @`Y9h!tT `
hR*.XF..g/I .r)P    !,e` Y9`HM  <(3hC 7`K)
T	 h (?.~ (;  
'``H`HjT`3h;/hxDihB+hjoB:9*hi\yx3a$XhX8FbXhG?\)hia # #3`"|d !||4YxDxd{D`9``Yh@dtYhv FXfX2hBPtD;h 0@.F 8xD`0yD`0FFb$$ 'O	zD`O 	7Fd~Dh1h *O 1H
#X  h (@]+h"Zb.XN  ؃Y`T0h
,H ! 0&Xn1`j(h`N &AlB"`H  (h0	KEFmmT0NhoBBliBQHHxI^ !H(hAl1JBF@(OFT0 7  NH!X
h`Yh`1
hS`
hS`(F ۀ((
/]NF=8h (SFuI #bXF0`k(((  v '0  (^ !'HxD. MFK0F !"UO 	&cر  @!!0F (@ᇔHxDhY0F*!{(h(BJXhTK ( 䇞B#
QIBPJB#PIPHBOIOIBܡ qB1KJBpBIIB@T h@tOM .AYhi u " 't vwp.0F.-@ (AE# ( āTpO   0GF  LA H>FO O F7JXh?@2 (hOJizD`NH+hxDhiA0T hY` "`h +@Հr) v) h ( @HxD ۖy
 F
 ,|
 048L.	 B.	 >.	  
 
 <
 dl@
 
 D8H
 T
 F
 8
 y
 LPTX\H*	 V
 `
 
 (	 |xD. 
ETlT0h )O ; $TtX!Y hFU h#@
`.r/v/0xD.
,'!X(hxDZ`
`(h!0y
h+(hiB"BbH!XJiB)h  1 ~Ɏ ʹ(hiC(hJiKaXhi
@HT0h *6I#`GH!Xh
hu ,h + 'HxD> !v( .   !
FF)l "> T0\ ` h / HxD.@2F (@FF&8hCIyDIyD! " 0 !, 
F F)
h@ G
`GP `H.8H.dh )?\"
`O 	V!  s_BWO (@. 	h )?CI 'KbX{D`huX0@>" ! 0FMIT  P  0(F((HFOFMr0F  'D 0Y TK  P  X=	"
`OcF HF !OA'# ( .8F.HF./##HFO1" 'P8
HF9FO (;h'	 hJ  +jIyD`	 "`K.% ('h	K  !H 'F WJX8hC;`09hJ:`(
?OB
(Ч^pE@k(u(
j(@  0   'EKFI *h{DyD2``
  @H ! "xD/3=H#XThh  !" <B  <`V;u ) (0F..0/^/W+hi (SB  a@h[i^/?!OD8`  ! F@ ; ^'	 0'	 d
 dd+#	 X(&	 %	 %	 ~
 hl
 
 p
 i 	 p
   !" FhB9 x #;`J  zD`8?FOY8ho W@  IF"KFQjA=;h  @W ( !H`.k  !9 
!0F!F  -! !F  "!0F!F   !   !O 	F
F C (#`+hO
t	B   a '`FabF/h
t	  HB 
hao @o GE+hbJX8h 7+h
t	3  (HF tIbX[!hE2ȱoOT  i+HF o @iWaE  #Cb jA f b_H'X;h XM?WITF  0 TH"$ #XhaPJXh9G	  	FpEJ]!X hE (  T0ih:hB0i  #iCbya2OYh   ,H#Xh	 HF1*O &o ND8hpE*h
ihB8`@	F (@ȃ?FHxD`  @&*9 ( .XT0h!X (Ѩ .vXB 
 pdl
 
 $  `xD-FT 0+&  X vXFv9FH  D@HF@4'XhY  k? / "Xh@ )@BX{8 p / : . 7fY0h 9 		F`XL! hE2h    ?8 (T hJ )	)T  BB?O pFF CF CF0h	P6FO	{DO7*  QCB /#l	) /6XhBQhBW`S$+ *	*$F	AF	Bx (9?  p0FBFFhSBF8F10h`M
&0FM h )?ة  F/8h (IOph (@Bo)h.OO>i aF ( 0(0'X;hSJxQxD-  O3! "v60FR `  !v&5T0hB?e"Xh .@𡀅'O (}|`XhFct$0F
	XhGHD ||`}00 :hQO29` 0 !A  
FF(n '0 {F\ (0 rFF0  !O2hQ` /5>xfH>F 0#H"X0FhG
(HE
(@ 0+H"X0FhG  60x (8FO1-H8FO 	ENF? .wo  '?\K  {D`Oo LD9haE*h
ihBf8`0F( !0F
FOYh .p 0Fc.  !fO 	KB  `h 'HxDh )>2y (>-O 	0F ! (>"(~A%3hB B?C 󃀇KB?B܆IB?ܡ iNE?M
ܩlfE?@rBஃ|IB?
bB?xOBҮwIB?
ܡ bB?sOBîqJB?|fE?wBjHB?ǬiKB?ܣrB?o2RdIB?nvE?d bB]_?ի[IB?6ZH-ZOB YHB?osBy.?e3RIB?POB?ܧ rB?2KHB?&0B?F8BV. .CJBKQ.?.?.A.?
.?.?1	.1H
.?ۭ.?.'.?
.?2.?$.f.>z.8r*ۨ	&  !5O 		&O 	&O 	OT' ۖ$	 y	 0	 <	 tdl&
 
 
 x+BhJ  pG+@h (x ) pG  KJ{DXh hK`pGb
 KJ{DXh J`pG a
  # K`ppG # K`ppGO3K`pGKJ{DXh$%J`pG a
 pGpGKJ{DXhH`pG a
 4pGpGKJ{DXhH`pG a
 x # K`ppG # K`ppGO3K`pGO3K`pGpG#  pH`pG#  pH`pGpGKJ{DXhH`pG ,a
 #  pH`pGpGO3K`pGO3K`pGKJ{DXh #K`pG`
 KJ{DX "hmkBF +J`pG`
 O3K`pGO3K`pGpGpG#  pH`pG#  pH`pGpGO3K`pG#  pH`pG#  pH`pGO3K`pG#  pH`pGO3K`pG#  pH`pGpG#  pH`pGpGA+٠a)ٰ_PBPApG pGhSTxg,єx:,
#l,єx:,#` "
`xA)a:*`xt(Zx_*љxxF3xA)a:*  xs+
Ѐxa*I(  pGi( pG  KFH{D"
pF %XP#hxF|p`8F"hxQ _
 8J #F7IzD00SXhaR0R hhQ:(@.R0hsEг@гoг or!@m!. o-?!)o!"ZR" i"ISXhc!v!h!c"e! In#0RXho!! F``  p >_
 |F@hD	j@DFx
KQ{D)
 ##
#HIXyD: # #c`*^
 	 8FxKU{D-	 Bhx@hAhh8 %ChKiH %IXyD: %e`8]
 	 -AF,M,K}D|$hX8hB)I  kX<h:h|$xphԠhX IkXh * (a`ah3jB2kR! 1 (O xImX)hB<60F  1F*h;h|4xa`F>bhFH+X`@F ]
 -ALF"KF|D!h%XD8hD{IbXh  !m2"5CFEh ,!FE 0p:hBs`p \
 	 8  #H`pOPFEFhOQX(FF``(F8@D8  -BFFFM}D+hFBL
7|D hD8FE `(`F/`	H:!xDhap1F  F p
 
 b
 -AF7M )$
$F}D $'+4U0h*.H)X@FhG      0 + FE:F (>6#IyDA
0'" +?'!F&
H}'+ ;DU0h"hF5:   x +)#Cp0 "
p F[
 dlu	 pFh4F6 x< (+hB,` p  -C&< %FO	Dt8FT	XX (feBO4 F :
 pFx
F+	H1xD@F F0F!F:B Fp@Dpt	 -AFhFF F@ ,F%H1hxD:(F@0` <x  (p0h "FT$H1hxD:  "༱""p "C  ! pa`( pc`!!pb`+ф,     /p5`  F0	 	 x<+DI" FyDx	I F"yD@  s+@x:(  	 	 FHxD0L|D@h0KXB<8  
 X
 8Fr0EFرIyD)F F/%#! FD4	I #yDp F p F#!D ( F8 O	 =	 -CF#!FDq (9РB7 F %K{DhF 		X% IF	0J(5BM!}D(FEu((h*iAB @)` % %F F !CXBP%F4F(FD $ . F Z
 Z
 F9LFxF|D +Aa9)<4;;;;;;;;,;;;;;;';d! .HxD.HT0xDhiJS" *H#Xhp(H#Xhp&JX h,0$IyD
h	p!JzDh >p  F0:AhJXBIbX2Bo(F9FR ( (0F)F0 Ch +IbXB@h	8HxD W
 
 Y
 
 
 
 h;` +ڊiBò
+
h
`pG9  8
FGLK|DXhoSk`8 V
 8
FGLK|DXh Sk`8pV
 8#L
Fp|D h&h` hZ(
9(
0I(O(JzD`80 A X
 X
   F``  KJ{DFXhW`` V
  !"߽pGKJ{DXhǼ U
 Fw0``Fw0``pFF?F F?B) FEwFXFX(F1F((F1F#F $(FD$ F Fp  
KJ{D0ðX
FOq#hAW4 (pE_A"hBh`C0LU
 pFN  D  ~DD<M0F0}DChFJXB
IhX
IyD:*0F0 Fp@DI 
 T
 l
	 FW``8 pFEF``(% "(pchZp8F%^0``#pF%I``  -AFFFF<	@F;>8F;:  ; ;,# ,* ,[ ;(x[(5
,{ ;+x{+  ;(F<[,HxD;1h: "2`		 Cxx)@h$0 
)@h8 x pGFpG pGA+٠a)٠0	*_(:(а#XBXApG pG  -OFOOFFFD #``o&x0F (h{.@Fd'4
W0h(@I FzXhG  $ x (m'("4\(ax43JXh(2I FzXhG  $ x (Q"(>!x[)5])=Ź"x{*	6   p @}*	> & 0 @IzXh+H9X F
hG  $ %.F  @F^ (Ѹ{л и[и. . -| F ZS
 dlx@+Ax10pG$+&+ 0 !#
FGFh.F4F6 x& (ѬB Fe8` F(F  8F<0F+
IyD}(F?8@ʻ<8@p	 8FxFa;+#!D( , ,B 8  8  3K-A{DF2OhDc*0HxDA< )S2`L,xCp**>@h (:А$L,)$ .hN 1F"F-h -!@hxC#)pj8i6
VHI{XB	8AF"F=6 -IyDhX`
 ZQ
 	 
 8FxFJMzD-

 I FZhyDHxD
HxD
HxD<1
\hL
L|D
H
IXyD9 $ F8xP
 3	 -	 G	 ^	 	 i	 HxD 	 IyDb
 F``#pFE``pFFF "F0FE##p``pFW``  -CF*OF
h&DF  8$K
(Xh!F  !F
h!FB*0 (  & (hL
 !FW0h&1 ^  (
$W <-h -  &0F ~O
 #pFhEr``F`E"M#3p}DFp` (3IjXh F34F F4F8F3B8F!F3H)X
hR< FU0hG($
, xU0Bh1  x (N
 `dlpFO14``#pFf``sF $E
(F44x (t`|FE``##p  -OFExF.+O @x?X`x.(Ѡx? OO F (O % F)FDS (O ! F?axF58Eg ",FA D)F ( d' OF F1FOR (o #93Tg FCh(FCe|HxD<p- 0F?0x?p 0F?"F xxE'F	)F?F (FC< ", F?1B*x#0FW@# < F?#B F@F0F<80DF (!F8F?1F FC
<F FC0FEF -2h?F F 	 ): FE8)F4 FC  Z	9HFIFFB(FX(FFCQ x? (;ѻ %F!!x )3.)(H!FxD?`Fx)`x8? cx.+Ѡx? ( F,FC5(x.(ХBhx? ((F)FB F  F! FD<  F? @ Fa0FCr"   =	 	 F{``Fx{``Fp:N;M~D}D>F F \V )Y`y-() FZ($٠yK  zGౠzCF --  5((
 6`0$I FyD@`U0h 0 I FyDIjXhI FyD (KX h{tx`I F"yDf ( 
 J
  	  	 d 	  	 F#iF#pv (. pA OбOб OбOб _б_HxD@O
HxD
HxD
HxDHxDHxD
HxDDr   `` ? 	 8 	  	  	  	  	  	 FiF (O3c`0F#iF#pF ((FW  O0``0K𵝰Fi!1px ( %HxDD F ( $'B	 F!r
paDl,*U4	,u`rwx | F8 !!##p``F-D``8
F%xF  W^F ( FO a ( h`87
F #D=!FWZ (pi`>F !WN``!K"J{D-O
FSO &$n` F,p		YO D&`1F;h F0FBFVF9#hk 
PFDV8h`QF BF;h93h hB@!`
G
 b
 (K)J{D-G
FS! &n`F 0)pF 443F }44(AFDPmFhF:F4 PFD9hFQF2F4 !h`hF
F4@FCJ8FCG 0B DG
 KJ{D𵋰X
FF#h	HF 8F0FD>	h` (p"hBt F
 -C
F(L(K|DXx
hF	 +; (7F O 	DF'b+#w+W+IcX `T0 -H X9  c;۲+` .)hC.`O0F; +  	9hBDF
 [	 -OFoKDZP)hF sF m" #
pK` /  ( _M!P"CZ
h *@8FFB UJ9FZ 9GC
h *eON FF %Z GF) 0HFGBF  FIF2Ff	  F=Gj	x (ѱF"FF
Fx;5D   (L ТB @F=GD   ( -ѨFOIFD
PJF*	 8F)FCI Y]!xD4O%x -!DZ)FD~
C`F"F hB.E
 dlFxZ*	
 ``@h h@h  i``HxD@;ʾV 	IyDHxD 	IyDHxD9i  [ _ I g 
K{D( 
JX h0S 9I  2C
 ,pFE FWpBФ0	+#,H1FxD9)  pO , p  -AF x
FIFCFyD+ `h!`h !r(`JXIyD8 F)F:F3FA  B
  -OSNFFRK~D!Fh
4X(hCDLI'h $yD? "BF  BF F %`!F$DQ 	 	EEC9PP`
@FaFDE9 X`Bh1?h')JXh --XFk DPFD (# $PFYFDvU4PFDoB4 #BPV h )%>
 4@hC  $BC(FhBHB
 
 -OF~NF~KF~DFX|Kh{Dhc(yHxDh+!`wHxD;kvH ""`xDB`;xZ* 3  ##`xhxh =iB   `hHxDaxh ( P"!C^[!D`J yhzD #F C(F]!wxh =hBUH ""`xD`h /{!P"@C1{!8DLH#?jDxDD7<W (7FJXB38YFD !WF(DBIFDW
	8+FoFQFDB hA7 
V h )B }!D& !D" "8F"`IpXIyD8R   `JzDhY`JzD`hB @
 
 P
 2       v
  ¿
 
 -OF(M(KF}DGiX7
hDFhD
+WL< IjXB#>0	<+Tɱ  	  0	,!F  ([FF@FB7 .H+Xh )
hBJ>
 R
 O JFIzDRXIhyD"0=
  JFIzDRXIhyD"k0 =
 m 
JF
IzDRXh (IyDhBBiIP" yD "0@^ =
 ?
 0 JFzDh0I p "yDHpG 
  JKzDIFXN;F h~DUX1F*h"0,+h !"XnK {DI" yD0FB"hB
,=
    KJ{D0XF!+h!piF	 #``  D``	)hB0 <
 8K9J{D-FX h
F#h0'F #
 #(h0+JzD*HxD)L|D#hc(IyD
h*FAA0`HxDhl $̿$O4	 (qhkhBԿO4$BB9h FBl<
   
 
 
 -A'LF
FF|DXF@EFPT +hY)`F x](;(1h)HxD;  7`,(JFX8FXb;
  pFCx;L:+|Dx:*g#*e7N`)F~D0F.Ah4KXBZ3JzDh )W;`xg*Q0FFB G0F#!B (A(xb(T0h<w(#H"Xh4t( JXhk-v(#a(K{Dh ppl(JzDhpps(IcXh (JzDhBCiP# 0pI  p0Fp
I`X0p:
 
 (
 
 
 <
 sFFFe `H)x## #|  p
Fh !F\T)hfTF` x(	phL(`|D(`th FpA -CF)OFDf (Hv (D#x+#H#IxDyDC8[`h (6&|^ IyD8 & xF*xJIyD0FPM}DL)F8YO480ah2F (O4 $HF@ Z9
 3 U C !  I
"pyDFJ	M}DFP`{t0K!FX8 p  p 8
 8FFO3c`8 ((F%``8  pFxN+~D@hp@*+ $@h (<F
H1Xhl$k
U (lih ( , Fp *8
 -OFxF%K*Dh{D FO*8 xx$(ax)lS h)MOd F^Y  S	PK {D+`BF # ! FX  08FO   7
 01 Fl@h 0 ``Fa $ 0 ``FU 0 ``KJ{D𵋰XFF3h	O0``' ((FXF HF8F(r``	2hB 6
 J$#pCCzD.L |D)y )H
1%X5(F.ChF+0T B
I`X
IyDp@8Թ(Fp@.Kp8
 ^6
 e 0FxFF* z(|*Zi "-1  ! Xhh[iW(-c`0p #%K`
pFFH00F!F*Fp@ǿp8
F
L!|D FC(
"h\ !i +#hZ"`8#k`87
 K{DJFhzD (	iA`\# @+;IRXh+HxD; `` 7
 L5
 n FxFL+|D@h0HIxDyD86*:UINdbXYhJY`T`3`#X#`8chhh	 ^9r
 :$h ,=7	2hx` 4
  h X-AF-L-K|DX8hFF (B(F+xF );*z %B
n+t+m+%&  %? +%F8F+FбI "cXBO1F i8 #**8FBH!XhJ!X` 0B" d4
 xp$pF
FH00F)F"Fp@p h<0pG `pG |@pGpG  K{DhhpG ƴ
 K "{Dh`pG
 K{D`pG
  iBXh`pG[h +pG-O*tF
FFD*  `FYIyDD8(F.Tf`X0hBRI(FX0qhGCO060x ( 	( Bҽ2*##`O FODnx&.Xx&(Z/b`Ѹ    P N (P!l(!`g(Jѝx:-G3c`D$. <=. O9<.!h)(!BL (A/Ѹ (".\)хx
b``hCc`AxY")'.	ahMe`Jx
'* 
|.	ehjx|*kc`  ` eh(x0 )	)(FQFF`` (e` 3
  d 8FqK{DqqJqHzDqLxD`|D`pJpHzD!`xD``nIoLYX|D"hiB&P `kL	j|DjL|D!h1iJ!`zDh 2Th ,eHXBdKeH{DihxD`" (@g !F_LYh]IyDi
hBT`jYHxDYHxDh1XJ`zDh 2Qh )0S BQKb {D`gT`NL|DoNHXNH
hxDhiBT`IH	jxDHHxDh1GJ`zDh 2Qh )S B@Kw {D`7?IXXh>HkxDhiBT`:J	jzD9JzDh18H`xDh 2Qh )S B2Kt {D`0JzDh9+
$!YCXD`v \8@)M $}D(hA'I,`yD` F8 1
 2
 2
 
 
 
 
 ֲ
 в
 Ʋ
 
  
 r
 l
 b
 D
  V
 
 
 
 
 
 
 
 
 
 
 t2
 j
 >
 0 B'PK{DhbK "b{Db` ԰
 ư
 F0``##phJ` 8Fs #c`F xP F(`h)F8@8Fۿ B0X )h(hB%ڃi{Biueh "uedChbh2B[h:BBaaF  #F0  8
F9F(  8@H)FxDB& F8 Ch`A`K``BhJ`A`hZ`  `pGpFFFH$ "rBr`(F Fppp
Fx+HIxDyDp@7DhI$ yDah ````Nh F1F )l` (phcihJ`Jbap  | 8FFXF`#r  `Hr(Fah Jb`88F
FFBFȱ8F!F#  #r`r`  .(F1FC9CN` 0 0F
FOPBF!"Fr0, FAO	!FhhO2 ! (08FFpM "`h}D)F`h)FO28@8g -CFF  "FF2pp`E0F (ѽkh +2 ,0۟D*hB(F!F:F5HxDHxDCp`E)h,$EF!F "(Fwh5O2	F8FWLFDEݽ  FF@ھQh"`a`Ph Xi`AYa` !aT`hP`0Fh<`i%hBh%`dh ,ѓBhLh3h +D` \`Ihh	` 
` #a0x*
*@hphBЁ`0 @h(iBa pG8
Fh )F$h ,8F
NDh~DEiU@KXB	89F<5 , +
 8 BFK{Dh@	I %  yDP`-%pepe`` F8r
 \
 F0``##pAhJB` 8FD0BF0 	 )F ##r F80	1-  𵵰LFKF|DX3h3+FBFH   %A % F -F(FAxh (IbXB	833hB85D*
 8
Fx+HxD8@:Dhd0O2F F 0 h`8  -CFOFFD8)B iiBjVH:XB FO2F VBFKF	8 0=6 -   )
 F:JF:IzDWXx=h%xB^#6KOzu{D`4M}D+h4M}D cE2*`I9)@!( ,M3ah2F}D@h+`# W	'MZ@h#}Dah*`2F)hJ*`-@hXahA@hehCYBQ !C	F F>F(F&o B2^ 8  
HIXyD7    F;hBf$)
 
 
 
 ^
 H
 Y FF ɱBhhBhh
 2F;F`h-h$h5 ,    8  FO2 #	F, (н@BF  K$"{D 0`pG ,*
 K$"{D 0hpG *
 K$"{D 00*
 K{DheK{D`bpG)
 )
 Kp{D$$FO0r(! 4
FhA
`ps(FBY1FB=`p )
 KJ{D\0XFhFS hZI[XhG
  !`D   0 O2#hB	0'
 d ("#0 IyDd$ E 
")
  HxDpGK{D  pG(
 (
  HxD@pGK{D@  pG(
 (
 FCMF}Db00F&FArwl--% % %l5!m)h@cm+h5-m 5hBwF (QЧl/*IyD/(IyD "pl#%I(FyD'mO(Fh IyD(>gmO(FhIyD(2ma(FIyD((FIyD(B	D(FI"FyD(
IyDR F0F (
        u '
 0FxK "M{D- @h$HxD
@h !# 
FcHxD9_HxDHIXyD7	O1##`0 $
   0 K pF !F !F h@``p  8
F !L|DH!Xh8%
JXhB,T h(i; +h (8  8 4$
 8F !MO1}DKXha`8 #
 F !O3 mc`F !O1hma`8FO5M` ! e`8FbD##`0!F@7O0-AFxFF+DhD   ,h *.*( ! F
F (IX hm(`% " F)F (0`i " F (p`/ F "8` ((( @#
  #FE=)FFF8z  )Fa(#0F#pm"0F"pm``-OFGOGK "DFLFWEK {D!=Y F+`%F0z F!2|2 F F+x F2M}D@F (L *I(F!m (>6!Fm@F F %"Bh +] x (mBB !F" (L:YhGF  " x ( . ! B#b"
 0  l-OFJOJKFDFW  !FF0F[$F '$h*zOiOiaHI@	R*|B ! 		)	0FaF-H8X6 'J+HW      $IyX`F 2F	htرTF#/  0 3  
 B @7 F 0Օ 3 !Yb8F	`&!
 FF %Fr0FP`hʿ)F`h)F`h1FF !B4``F !FP !L|DE H -$KX
hB8LT0hBJXhQ%  H#Xh)
JXhS.0;IbXh0O3s` 
 `F !F !L|DE   -KX
hB88T0hBJXhQ%  	H#Xh1 O2r` 
 -A #FE=)FFF8zt%F)F 9|F1)F F % *0 -HxDcB ##cBԿ ###HxD9@F( 1Fhv -ݦB̿   B    (ѽ  pF !Fr !F l(C``p  +K,J{D-AXF  H`F+hF	 (; (7 FxF	y`.<x0F<p"z#|K ! 8F  k@ IyD@0F)Fx`@0F)F	 B

 @ -G $xFF+D&Dh ,`%h -Z F-h -T 7BԿO OBO O F+2@h (6jO
i6&VIY B	8= 7BԿO OBO O FFO 
6 -	HxD9",F F + $@
 ,  ""|-OF.M.KO6}D "FU~` FF (< z(#H$IxDyD62 -#|s W!~FQ OF1FO
 1F*H(HxDA@ "U0AFh[Fx`  B

    -OF,M,KF}DO6U <F 6~`F   1и ."|r #~FS F1FO
 1F(J*HxDAd
<BFU0  !IFh[F~x`  B|
 
  F !C``-AO3FK` xF(HxD9$6nh .3/|4h ! G9FF0F*~viF29F F F + $>F
 )F:F #P`$h6 5 ,ѽ 6K7J{D-CXFF   &;hFF  p)| G*~B '7FR < #f`#p F /n!
"@(FAF;F!x)IyDA`` FP
O2`hS%5 5FB@  `` B 
 	 -A#F2OO pF zD )|@Ed&D&Y (""p D& +;J!Xhv!x)(F2 "3FF  ``" F(F%   "3F %FO2`hS%5g
B  ``
 -OFDPKDPJPOF[ !E8  [0[`JOh0hnIH[ `1hJ2`[p;hX8` @F)FP(*R *_*L ([+PE3h:hY1`6IS "yDB;`&'4'``[0h )@hE
P%"# 	0 (
@B"
,< I[ hSJ
[0hG(
h"-"p !A*``   0B
 X\
 dx+Bh*x$+	hpG !FFGO p #)zDa*|R  #f`#p(FF x%(#(<(&8M0F}Y)hJ1F*`  #F(hA)`"x* Ft86`h1FO2IL0F@Hf`F)z	E% d (e% *5I zXhu x(	 1F  "+F`` F;ر!+F 1F "z %
O2`hS%5B_ #c`J
 -GFxF@O+D:Eh -u |.h # G=9F!~F9F FR(F9FF /H9FxDA| - & F %4	 !FJF # 56h .=+4Eh -8!|  a "~F*NY8I F.i  &-j4	 %Y`IzXB	8!FRF #> 5		 .	H %	IxDyD6P
 q *  p
FNFK~DX
hz[   !|( F/2	I FvX6hGh`p xh`p 
 dFNx~Dձ !W (IrXh
hBi PA``  ``!!pF4(
igh 5:O2F8FKX0h
hB
 pF !F !F (@``p #A=  8
FLx|D	
IbXhBH$X$h id(F@!hhhm`h ,8 
 F (y    ``-CFVOVKFDW F 6F0| $xA ( 2t*c*c"
g*g" "CJXh)t"+xA) 3b;+c
bbbbbbbbb,bbb14bGkxA)g+ G+ ## F(!A F$kxA (n+ N+ ## F!/  a}, F!'kxA)p+ P+ ## F)FxJ !(F(hyA+c( C( F!! Fx
Ao   "    0B
z
 -G
F6Oư6K"DFX1hF*pEF  >F()HxDA3h`>O 	1F#H2F?X9h1+!FJF1F<Oq"FCF@ F@+:h1F1* "1A !h`
F10F@E 0BfF
 Y  FF,zF$ F F9F[ p`FNzF~D  q(F
((TV 8
$(Fx+)0, #, # " " ! 
Fx`
 F98 ``8FKJ{DXh*"F(F.``8h
 pFFF M}D((0FCF+!H*XhDF` ifhxO2F0F`hh)F`hO2`h)FO2p@иp:
 KJ{D-AXF
F3h	e"zFj S"|F: FOD@F9F)^ h` h`	2hB

 % FMFK}DX(hA F)` !>*hS+`F 1FF |0 1FF *F 0F)F# Z
 "LK|DX
`x3t(IbX`  
 FMFaK}DX hA8F!`!J !Xhh1Bh *O1 hq`C#` 
 pFMF7
K}DX(hA0F)` !""p(lAu`` #c`(hA)`p v
 8O2FKJ`
F x{D!zI 	 (ۄF,S0hi F_H I[Xh ij`8 ,
 O2?@ݼ  -AxIN+~DDh,GKXA8_EO FO2D9F!BIuX8 F9F  =O FO2D9F8 F9F  6O FO2D9FP F9F  "  (hBb-O FO2D9FH9F F F@FA$O FO2D9F8 F9F L O FO2D9F8 F9F zP ?(hmVA+hYl	 Xd<V hZlhBȿXd 
 )      -OO3FK`xAO)D@HxDFh .vD4hDD0 z(W O8h -(FIFO2\ ((FQFO2T ((FYFO2L ()I(FO2yDC ($h ,$H=XD$OD(hD94h.F$hQF2h(F "f "9FF(F`IFF(FIyDF(F !YF p$h ,@X
      y  w R -CFFO D
F!FF FK0|( pF) AF ,	 $B,F )bB)  !#	 ;p@x`  -AF!M!KF}D OX
hF	Yh z`  !I0 F6/YI FmX-h,G
( # $< p  0p@f	  Bp`
 	
 dIyDBʊ
 F'M(K}DX0hB&JXh hx (<FF (4 IyDP2hBtU0h(ci&I8FyD|H2hBH)Xh hIhX9F5IjXh !i!h0BF  0hB
   KFFI{D[XFh`` 2
 8FF ~``8  FxFVL+|DAEh !@(F/QN~D0` )6 (4NJXh
hB.(F!p`00h3X!F(Fuhz+
h@@IyD>JazDQ`=HxDChK4BYA`e(F  _ x.( 	v(hx (2JXh )O0JXh0L'((I;FbXixh "-5C3h )<w( .$N  ~Dp`kx0+AJXhYl	$+AIbXh0Y1`0F$(NIHbXxDh "hB``IMbX}Dhi(`3Zh`(FH X 
 ~
 [ (
 "
 
 r
 ^
 𵅰M $KF}DX1hm!FB=%F2h hhBmB
IhXF #F"F hzYx` X
 F!  h``-AFFFO3FkN~D(F5eh'IrXh4@FF(FJ !!h !F(F4aho LaE1 !F(F(F !g V0hj(F1  ``
  ""K7{DJ
FX#hmB !"hmBCho LcE	 hhB	30X   Fh`><
 pFLx|DFIyD8	J)FX5  H!Xhp`p
  (K)J{D-CSF  F 0	F(FO1q`F_P2*|
F !  8x`9FFXHE	0
F %	 Fx +O2r`,t`	 0B> 
 !K"J{D-ASF  F 0	YF(FFO0p`)|
 iF "C(-UF x FB
 -`  F9Ft`	 0B

 fKgJ-O{DFX#h"J` ( x@,"$ "$` .>  ( O7O	 &+a+"A+V++c+	l+v+O 	O	Bx0:	*GGC&O	Jx +O7O	 *KP
 @F (Q
 0

hFFYF F XE@FȱHJ+h + 0 F )FO23FKP?@FE(F? lFX  FO23FKu #K`hB$L
 -AO3K`FFF$N~DF (A jF)F(7AH !"x.* cx˹H 1X
hmBJXh   )Jb>  x`IpX7'*`x (Фx ,)F -(|` 
 -AOFF $+zF HBPZ,|L $ F0FXBF#FFO` 0FF8 !y`#pF``@``@:YFxF+HxD71#@h!z) FM}D"2p!P" '?9#ah*F 9F@s` u`	𽱺  -OFZLZKF|DFO T ^TJX"h2p F ( 
!?౐ 	65CK@F{Dh6T 4 F<I<HbX#Xh`+z۹:H #:IT yD
hIF  05K  *@   {DhQ p`! 	DF')|w` 	7FX~ FXF  oqhY*zJ(|8	 Y@%p`>ATJ #T`X``hB 	 \
 X\Ѐ
 
 "/ ",8
K
J{DX+h\,`L|D"hS#`(h"hA)`S#`8B	  
 F|0c(O0``pFFk``P)zF  !mF0F3@``  pp  KJ{D𵋰XFF+h	D"z")/*
 F F5F8FF FF8FBp`	+hB	 KJ{D-AXF  H`F+h/F	HYFй0F  uxFI*F@F1F+F "b`	;hB
 4	 'K(J{DpFXx &hF*8!!p1HxDd  x ("  "  %P
PK((V  v  
#0

 KJ)F {D"##p@``0hBVp 	 	  -AO xF
F۱rF CBS #z vFr#|k lFJzDdtF CF'8x ("  " 3"*p .F!!)p . !Kh`J	 -CFFF- !ODF 7O30F (4F x
IzXh3  F.H9X F
hG$= -Ѥ@f	 `l"ÿ "FLF 'K|DX hA(F!`9F"hS#`F(z q(FPB!F#F"8FmO3s`	  !
FY@@  pF  
FF*J #fp #p!b``l`(pip(rkrp FL|D!h Fi?s(,OF&hD9iXQ  i,0bQ  3 A`B 'i?"FG&   #hX `L|D&hB 	 	 4	 -G"-L %-KO$	|D,I,OXyD+H+I"D$XyDD FF'H!!pxD*%HxD*~	
X0FU ز#ʲ
# # y#s  1F* PF1F*5:-K"  {D|''G3 	 {
 $	 0z
 z{
 j{
 Fz
 	  hvJzD`wWIyD` z
 z
 O1F( F
C F 0 -AF-N~DA,K-H{DxD`,IBiyD
`+M+H}DxD+hBhB?\,`#'IyD
h5
`&K{Dh 5lh ,#H2XB"IyD
`T8\j& F<%FoHAF5X(h :h*I(hyD:T<9T0<#I(hyD0-h %M}D(F	 `z
 Fy
 &y
 Nz
 4y
 
y
  y
 x
 ղ   8L|D!KO2{D`JzDh +HxDhK`+  8mعM"HSCdYD\ hG
I hyDhy 
I hyD h8 	 	 	 	 	  
 F!
KO2{D`HxDh *	
K F{Dh1`@ F ( T	 N	 B	 L|D (x09	)8
HI XyD@4kQc )܃h@	 } 8FK{Dx %*`h`h> #c``h`h e`HIXyD4 !ap8 n	  s !FFX0FiF#=hF(F|  -A# %pM`FFODF ^B)IzXhhB#ܰ 0F2[E FPH"1F;XBF h+Fz(Fv`h5 	 -G #FF=FM}DF 1FF !F   ,H*XhhBܸ F2
BH!FSF*X h:Fz F	 -OFFCKDY`1hF
hRF(z( ' `  &FF %  .X 6hF! /M ,K 0hPBE*IY0h* `^ hB F&(F+ F9F1(% ! F8HY hiB>   M "`9F5F1(
`!F( "  45)FO8r 	 lpFM}DKXh
hB
<	 F1Jx +  $t`p 	 pFM}DF ,
KXh
hB F1*x4 $t`p b	 8FM}D	KXhhB7``8O0``8"	 FFm
L+z|DF3 d#F FIdX9F  h#	 O3LK`Fz|DF (, )
J9Xhb5 !F  - (
NY
3ha2h8a>JIcXh
.0h! #Ab{` 	 dFNFKlF~DX(h0ȍ F (IrXhhB*ha;d+h3x`  O0x` 	 -GFF+KDX
h* `
HF?X0h
hB7iY(2љp/pw<h $'F &	  (F#0 "p6F1P$h(F1F8+IX hiBݞa   	 l-CF\F)nhDoiWLHX B> Ф	 .,_	 >G7 .(F)' #k` 	 !ǿF
 F@>,p 
F	0F
L)|DChF
JXB	I`X	IyD30F)d(Fp@ֿ p	 M -GFxFX+D3|!SHTIxDyDGh / QI8xyDD (@ oF ( 8F)FO2F(FH)FxD3|Ȇ  F8F!Fq+=H>IxDyDGh /g;I$ yD (_
H
 AFIF (R8FQFaF/HQFxD#)|q8F!F"F   F=7 AF%F ,8F)F;(H)FxD>!%FB-h -sh  0 ``(`JY 6	8F!F*F0F(н 	  A :   ٪ Ҫ   $pFFFF #!FCp e` p0FF  F0Fph J`ppFFFFF #Cp!G`p  p(F?``0F!FF( F(F pFMF}D (6KdhIX # FyD*hi+hI FiyD #?n*hI # FyDj+hI FZlyD #*hI # FyDl+hI FmyD #p@p 	   p i a Y pFFk(M}D(J'Kdh'IX #yD F*h%u.h"I # F%yDl+hI F %yD #c*hI # FyD$%Z.hI # F(%yDQ+hI F,%yD #HFh(h1FI F2FyDp@p l	 Ψ       hK-OFgJ{DF !FX"q`+hF2pFF x ( %z 	%|} %~FM FROD/F +  !&" $F FHF~o #FYFRF)F== /q8F)F3p`k0F (f /d!hh3F@i&yuh4I"FKFyDF(F1I"F(FyDh#F(Fi,I 2yD")IyD(F#F"#F(F#I yD"I#F(FyDjyI#FyD(FrICyD(F#F"gI"F;FyD(F`HF=y8F=v  B	  t f V N 3 (     ""<K=J{D-OXFhGF(fTF (`fifO1bXBF  ? )8F88F3 !"6 (F:F. "h iu "F(Fh #(FbhQF #(F )FJ$h,IJDKyDHzD{DxD ,		 Ĥ  ͥ   -OFF0D  HxD` PP8F)%jnhޱTY0B8F)F	
) 	,(PFgPF8=5 8F)e FO=z	 Bk
 8ChYA` )!pGCh19A`F  9 F@=X
FF F@pFjFjHxD` bjjb
+h#`*z( (F=0%h - Fp@=(rj
 -OFpNpKF~D!F "X 8h 
 (@
 (@/z /Bi F aJX6!_IyDF(]L9F0Y3.z."h98 & FPF"SFF0F6&PF &GHxD6r(F ,T9F"=7F (H6F (C %OF3q5Bp]
(	 	X>F F (6FF˼ O
HEӁ  BF =` F5B۠h"A`  @ $	9F"#F<&F /8F68F=Z0F=V< F! $&FhB
 j	 (I , "
 "
-O,MKFIyDX!zh$ 7IyDT |8 "P o Co A ( [ FxF x
IyD (O 	FDFFFL|DJX!F3:8F!ObF=FF+x
+й _ܹ  ::

(< ,0<
+<FPF>sй0FFX QF   & ` &FQ H FF="r`  Hr
XhE ) $ @W
#+pS+QnHXh +K (HyB ,ʿ1B,
{B ,13,,+0,*&ѻ)$ѫE
B6O ;FHEF	i:@D]5	 B< V ,?6 )2N (Dڹ LݪE+	Eۻ #EqOaZEF FXF>0FYFXF>)F0QF*FLFE *8XhhgdBE0F=Eگ (!PhX&X`$hB
m|	    ,`8hY` )!/pG8$%KF{D 5h`hA`8	 F@ i0 i F@=Y  -AFFODF0x(F@hJXB ֱHxD)F3  eh!F@F	( F F='	HxD )F (	   -A  zMzK}DzI{NX{K`{DlXh `Y`8`vHxDhp9Fp9Fzd .nO&D;ip!F6S  0i9hBgNY>hp!F96k .U0hF`H+XhB^JXh7ip!Fh /6h .WJXh!p!F `, !F6h .NN!FNOYD0!>hp!Fp!Fd .!FCOU DBM0}D(h
h1 !&8h  (8K8O{DDh
i>i!	&8h j (/OFD #BBPB 6h .(F=6#F=h -ѣGdp!>`pc0FB	 0b
 b
 X	  4b
 b
 b
 b
 b
 ^a
 K{DF (!x*
`h`h<
`hR	`h`HIXyD2 F@<ȿ 	  L|Dx09	)
F8HI XyD@2kSc 	 ܛ 8FxF  HpK
p)x{DJ*% khc`8hh``8>g``)x)ѽ8@khc`8hP`8khc`8XhAY`8IS yD8@2=8^	 W -OFx>J+zD<HxDO5pDh ,h (c&jO 
%iO6YVL ,T/H
XBO=F (LIFXh2O F	p>  9/Ѥ	 	0	F   (J FIF@F F		> FX@F!FA6 - 	  "u "r"o  -Oh
FKFD` "Z	h1Z0hHxD`O0h`((F@(,j`,p )	@ ,  "'hHF '<F	 !Y ( ր0 +B2  C
	 F ( F @\ F' F (  ~E 󭀙`F FFFF 0	 FFO	
+FFO	!iQ ( PIO Z h  /t	 < 	) # F81FZFiyF (n	9 f?h0Z0XFhG EBB< 9*.N $~D
, jBhh1FM@4(,$AhhhR(
, )F$>h`	 j`ih6k`i		<1`hB ,њ ,3	 0[ 8l "" ""-O*5OFFDF !
F/KX IF VqO F 'JXhFZ#
`#p 66   *.* ('BF KFx&(!F:F?OBOAw![F0H!F~ F"-!Fr 0X  	  ""#Fp &  N`
F1FF Fk1F:F3F0	8 )F@: | (-OFFc ĀZ0KDO X`0hFA(F1` !""pF)| )?9 .X
0 F`0x&(!F"  PI0FyD0!!p  Snc`b!2F[F0 !F! F ) !F  S 0 	  sFx
F+Fh> "  A-F0Fɹ0+
Fh  ^O2F0F*0	HIxDyD2 |  )F|  -CFxFFD 0F`a(bF  JF;F #(0F<
^ F1F-h-	KX h )ТhS` Fg $ F n	 -OFWKF\F{DDhc*THxD5  Q`xZ*  !F ! #!pcp@h 
FiB j``hK`gQF2F``a' !'papGhg`YNhB ``ChZB`N;F (H` ;j+[0X0B R	9F([9F	8 RF3F(8F<h(F9FJ8F(
 JXh (jhQ i`(F %e`bh HIX  yD2  
IyDhZ
`Y
 	 ? > xX
 pFMFz}Dk !  (FH(Xp@51
J F1FzDh5` ++F #"p@ f	 W
  "F-O}MFK}D
XKh{DUh	hB
HxD4"O3
pK`8T`;O`=oODJF8ht4<` ' _`<g``X:F	hF8F
JxX"hq|px
IO	yDPFJpQF(&agswh{s`&p>q"FV 

O	IPFyD"QFpO
('pFI 5,yDF(3(Ar  !qFp 0"KFIUL3yD(s`FH2aF(Fu6Ip l`FyDh3IF(tpp 'Dy  	 R'
	  !"[FT
D
.PF(F!36r!PF0=jFjOYhr`U0"U`h7h`
 /<ѻF>!r	QFO
pFSaF(  	Mq	Oyȉ =7
B۬8FF	XD
0=
0`F=H+X  ŀo:I8F	"yDh08IHF:FyD5IHFyD PF\AFPDl
h*@-HU  0Y 2)H1hxD4h
(@%HO 
xD3M#K,{D	p 	3A  (8 3=]  	 <V
 ~ W
 @0   e '  ̏ ȏ  D ?  IHFU  S 0 #| J  P(!P"Os1!3<

		
EێHxD3HxD32o  P     4JU 0 I
#UyD"F     $FhY` xAA"O3pC`
h*TpHU  0Y 2
F(jH1hxD45t$x(eH1hRhxD4)hU H  F 0Z  P(F!P"Os1b!RH1hxD4<OHxD3?2  C 00h<

	
`7``h)ݧ>OY8hC;`2?H1hxD4w>HxD32:hQ9`  9J@9HzDxD 0h`Y%J`B1BLB !Sp F;$(N~D7h4`XbthrW@"JXB	8>F 7 .C F$h ,hB
}  E C sD֍ ɍ  + I ߄ HQ
 P
 0P
 -OLFF!|DMeY.h=F ( 4J݀   0F!R"!" {lT
@#h +  !K&"
# {D)!pFO
$O
TF8F8
 '-
 9F
 0PD<F`RF(
 9F5F$ $ ""
` + ,@/xg/hx:(ѯ /F"O 
  8FO1& (w8FeF 9FD :F#8
 8FUF8F! (  (@8FDF 0Zh#`pE$\  E$U0Yջ Mn#pH  O  PFAFKFH  (ܚ<p0?	/8  *PF#o(F- (J!D ECyEIFh8G $cYBQ,	 HxD
HxDHxDHxDHxD1FBB(F;0F; F8FhB $f 	 ڋ ~	      H -OF FF F<<N~DFF (o:JO zD-Wx!!p   
		# F

[WB##p	""pW``4E۹ 
K !L{Dh`0YhS` OF $XFpFH2Xhi#SFXF !F IpX
IhyDS``(F;vN F
	 } L
 ,L
 $ gP0+ F-  0$ QH F]=F F F(F00$ :@ F !F FO5(F0  -OFFD ` .P
 h
0!Fg8hQF0b$K m{D XFP "N*F~DFXF3h#F FPF.(FIF~F@4I@2yDh (F(FlK{DhI@xhBԿO4$  $ FK
 J
 K
 vK
 J
 -GFxFF+
IyDIyDHxD1x+Dh , ($ IyDIyD (@|`!9phW`h/@8K<DI{DD*zyD  `  ` *H*h  5	A
HF +@(  HFs  D  xIHFyD(vI   yD
tIHFyDx(rI   yD`+|S+nHxD4QlHmixD` <F (  .I h !(F@1@<h0 +^J_I_HzDyDxD``hk(F@2BXHxD4VIyDhUK{DUK{D"(F9FRK{Dh *lFab`"``U6 F6B^JJJOKIzDDyDh>`&`DD h &G
D8FGE66 0#=HxD4h
h *8IyDhC"WhW,h`hW<C`Wa`#ihBh`[h +?hP`6(F;s { | g g q K
 K
 I
 J
 ~I
  NK
 } K
 k I
 I
  I
 H
 O H
 I
 |H
 jI
 H
 QA@I
 ܅ I
  "{"x-GF 'GTFIFpFyDDVPH# 0Z hF
hSn9F F
8F 
H!FxD18F)FV	@F(F - -  ~ d	  -CFKh OFF $Dh,H %xD3* 4"-h -0FFH:X hBFi0F( #FFF<
  } ,(F3 	 ^ pFz
F+HxDh *x)@hx"|B*HxDp@3bi+Fp@p } FFFFX8F0F!F*F~ FFhh0F:F $h= -OF  F+x+F F(3jh *0`h "ih>@ .ܽ(FO 7!!pF2 FGEx<FhFHFYFRF&DE  Ue`  5K-AF4J{D
FFXhF	+x+I+Gx *D**@0x+(=+;`h (?ih )< "~8+/1x+)-) FW2x+*F(FP?L? F g` p+F(FF0F6OF F~#e`#p
H1FxD1q    	 0B
	  F x #F(HIxDyD1P*ehEI$ yD&|. FhB(F1FF(H1FxD<(F F9F {   }{ pFFFP0F(F!F< pp  p#FK` xF(eh -
I$ yDy(F( F1Fp@mHxDp@3-pT | -OāFFD,D	O D
04(+=	H 
@  !!p 
(FT4,\ Fhi	"F KF(F	F(- F %@FO :- Ё@F3#x+
 H O %x-
 * HxD3 F+.*#F
F FjxhA-٢a-٢0	-_*л  a	   )nфX  x:+HF9F	T ( q		 %8F ('%  x:*$07  x]+HF	3 -@O	O
 " (:O 
O
RF  x]+
HxD3.  #0	   * +FO; !F&x.8FyF8F " #O;"F "F y_FVFO6 x8(    :   FF  -E%u .چBFB .۵Br QB
 - !<UF % UF Fa e` p`hh F - -۝Bۺ 
 + bH)FxD; ;F .B^I .rBO6O6F (h`h)FF
XF
 XF!W 5B F%%p AJ)F05 	
;HxD3<?4?8F*xFA
 +?2HxD3'ZF`hFF(
F0?8F](F9FF F   F %!  x[+.+%x-(+	 x(, *	*٭% *?IV )?dj@FB(F"	 b} s A Z w } } -OFP
FL8FD !X h)p'h	x `'h;x!+-+++9+0+&+ ؂"+-$+@C'+ L(+@<[+ {+ 	@+@2 O	 !8F KFv"hP ` . σ k`syO 

\Yx1Z
[x<+

4X 
h:|HFX0hG  HD

   "ч"h
 ; ( #h`+p
p	 hAI<\+@ɀS
Pxe(&U(80(7(z<(@𥀙X(,b(@r( f(n(@u(x(t(@##;
C
#
#
#	#x ( 
X
0xhQ #0XO
O
	
A
@x

8HX
	
Px (8X QFhFG
 /RF;L08p
x09ɲ)  p
x0;ٲ)2  p
K)HF";
X  h!HF+
iX h (2;

x +`"+ \xO 

'Zx'*@

Y
@4X 0h:4X hHFG  	 

  j!h ; (}#h`+p
p	 hBI<-'+Hx'(J
X0h HF+


x + !p
o&?FJF h
D	O 
0 `. FIF2F  (3ОbF`   @F	FHFo!h
x]*!hx](,*<xD
H{ `#hx]) )$xD0L@F!!O 	Hc ` . !)p0Z xRx}*nF " L x})F (#hO 	<
D
XD. `m F2F - (q!hx:+HxD0eVFx"hP	QF2F ` F 	 .n@FIFO2FXHIFxD0PF9HFF 
К  @F YFXF!hx}(!hx}+,(еHxDH `"hx}( (HxD0 .?G@F!AH ` . -!)p P " F)F2FFf	 F O 
8LFF .  (? 	 HF6F0x!;VFF:p8F6OF(x$*:f #	 k`(pz"`6!)p h xGDh`#hx ) Ӏ3#`xD2F)F ` F D#hx)*FY!`	(nHxD3Z(F[
# F2F  F
 (HF ) 9#hx(*8

0	8O 
IFRFUZIX h "i#F*F F(xh 
#hx()MHxD;"*ph`/(FO 	
> #*F #FO	
: h `1KF F)F2F(F(>B$ &(FA8mXF(FF!(8 $-(dB?B(Fy"l`*p	HFhBHxD .?=sHxD!h0_ .?3HxD2gO	 Z	 dlx x 1x w w w v g u u {t -C #FFF (U  x*./.%.Nѹ 
8FF8F	>MF  P!JF  @F F*./.$ -I!F(F8FT(F!F<O Ao A !F&y`>p      RK-G{DQMFFF]Y+hF ( 0hx+---.-!x)' FR T2hP:F0`0Fh (H /.- FF}F FA(F5KF Fz"e`"pJ+-!#x+ѝ (`h ( - !
F_F ()F "- ( FW!!p& ! F iF F
 F
iF F F+=:7+-
 e` p  (v  0B	 -OFFJFDY   hx=++!+<+@ >+i+@~%Qx=) ~)@vPx=( ~(@nUxO =-$$%%yTxO =,$$%%nQxs)@Sxn+$xo,yt($]   (@?', B%P4O
#+4O HY  ZF  PFF0F)  ?  E-0x(Н0+ ѝE"Eh(HxDHxD20Fmj  phBF;F"(+%W+thJBR9 $7+j*HxDHxDphBF;F-F@x(+ +i)rHxDrHxDph@A8 $F F-@𑀄(+)-'-%0F=F-{B $$q$$mB9B $$fB $$aB70F#F)F8FYF o B*~,   *	
 8 $6$2 (Կ $$-C*( (̿ $$#2H!2KY @XF{D #`fhFx "9Ff!Ff-8 $ F 0F~ t`0p  +hB=F$ '%
$ '%$ '%F$ '%]?+ /-	 8q r q r r 'r 0a -C #FFFr  P(F1F:F (ODF8 
0F ( $0F +јF(h /FO 	0)JF(`(FC ((FJF (o$J(hx&*Ax&) !t`1p  -A 'FFF (5r 
0F ('0F *aѐF(h0(`$ "F(Fp (NЌ /hi' +\=O+hx|*Xx|()hx?+K '0FA}JF0F! ' 'F(h01F ,:F "(`(F )hx:+
HxD20F]  Hv(`$ "F
(FAFn $   '"w`2pn -CF
FFFL)FJFODD
 FHF(x
F(
HAF8X/  $F0`(F FȬ	 -CFF #`FF:0N~DF (W9x8F[)!"Fj (Jxi*Cxn+сx )	)!HxD28%OYhQ`0iFJF8 ';F("    ?PV0hQ` 0+ 8HxD2hF
 ai`a h` - F \	 m H-f FFF#MX (!P"9y " J#zD|h +
!:$ !: 	;_FW F F
5` -AFF # 
 $N -p pF 0+pF $ )p Zl`D:F (9F1F F  FY0F96 { }!p p , # FjFFA F F F9,F F-GF #`hF*OFF1xD)rx*ѵxR-6`>0FgiFĿv&` -Կ# # hN Fٱ#h  `!X3FfF  0F `(FF F-
ѹ H!h8X/O5(FB	 FMF}D"KXh6`iF:F8 #IPThF:|FhFt,H,X"hS#` $ F	 HFMF}D#KX9hK;`iF8 ';F"2`t  0`WhF1FhF$AL)Y $hX` F8	 H-OF	FKDNF[ h[ 0`^F FZ@D0:F(FRF8FNF FJ2:@F   . IHF*F#FyD9x!0FIFI0F *FyD#FM%O 
F[ObOb
' 0UF438   qH[ 'ObF "
 ' 	h"F  l} (P EBs F
BSE	 FJ9]9$Tx
	B/+  
`2     "$F 03F  9 O5 + *)	*+7(~?/F /y%@5 %'W 0 3 %?b&@ 0i` @iSC`% U  2 MF 5FHF9#0F9 #h hB`G3
2(Fʨ	 0Lj j -O F?JD?KZ` "1h#ZP
/hvF F 	F   ȱ
XFF
`	 	(XFFZ /  / ~H)`    }F( @ !( ? ( *JzDJzD
 :F3FAF  HF.	*`#hB%	 %W W 7FFF (FiFe (ݝ"  %)F`hs`h)Fo>F !Q``  -CFFFqF O2F %D] AFO2N 9FO2 IFO2K~D!F*FX+F h!  !O2  !O2  !O2{ ! O2u 8  |	 P-OFh2 $FFFG=0x)),)Ё8FJF84+x,+,   
x)*M(<=>@ #F0FYFRFQFF ,HxD %HxD1F
  x4  (F3ve e -OFFFF !0"DK ! PFF
F=PF3F )5 x (	(
Fhx[+	.+H$Y 1p0FPFx`pl$!$Y0`QFY  /	7~h>` x[...@9h )  "p8hHF($H9hxD.p` %.Fhx( (IhA ,@HxD1 F  ,yHxD.* FF 
FQRxA (٢a (٢0 	(_*л  ,WHxDpx:+" (EF=& ^Fx:(<ѻhx(4HxD И )ܹ0+HxD1Px]*!9b  
8b"^
@T
Q  A!  !yax]*HxD1>yi );j +O;Xhx)@𛀻?hF x0 ,їHxD1gh #;aZFHh)Fxb&b ѻj +i1zjSx +л?0 yjHx((F8 !  *ѻj(F8 !  (!?  )ЇyjY BpHQFxD.x[+.+R$iH)FxD.?g#?(F:bYF:bj )@zQF< (J?jw "aAah  xbiXh8adF`8i *ڸa8iZ`hxia :j
l ,>HixDD (E  @
a
Wi )8i50 ,1HixD(;iChYFh1BO1ai (;ihCh  h0BO0aiiB ,ѮHxD9nHh1`x[*?1.*ѹhx(?*
"	 LT` ed ud a ` c ` ` EW <[ W W UW -OFFJFDF[ h#F !"l=h+x+jx*ѨxR(8F:` (F:F4(FI(F- ! ! !(FF?BFEHxD10
 +A.
F0 1АI[  !(F#
F
8`% 	   x(Xh:rF
Ѻ 0+zHxD1 $ 8`F$ PF	PF		8h	;hB:6dI "yDFf (@🀀%%peR" p`p(F`)FB`	FT.F%B"QI"FyD>ȹ ,z	.xg(Zx:* ,e .B 8h> (\:L[0h *8H[  p7K ! "{Dj!0EB* (<,HxD:!8!8@E(HxD)F.t`9qF .݀#"pBpR .pq0F !T  FhB	 &&0	 \` _ R 8T XZY ^ ^ 7 !"C
FFjFjD x(( F#F%F  % F8_(F>  8FH
F!xxD8cx:+ xbx:*xA8(   	HxDU F8HxD!F. 8(F8 ^ ] $^ -A
F5N5K~DX9h	<F x0:	*V 	#!8]H F()HxD!F.>'I F"yD0%I F"yDP" x !V`s(OODD3h K{Db!(F F1H9h`Xhh!F" F9h` (p	;hB
x	 ] Q ] ] Fhi "(N@=hF~DF8E )?Уi +< HxD  x
B8(F8JX1* l``  "
pi&(FF  &(F8piHxDh (HxD!h.:00F r	 \ L\ \ 0O3K`F` !'M"# F}D (< )9xIhX!عFF ``*"Q(_+E 0  	#HxD1/!HxD.0 )``0 	 Lw\ S -O $쁑FFFO
Di ! + F  #XFE *$F@ x (	(
zXi )@ ,@ ,@𞀳i +@0iA ,pj8IFE# #F  +}}@x (v	Q -
J
 )g *
B_Y
?T /Rа Q	 ,p" #!F" (z D$r9FJF# &	ñ
 9FJF
 A
  )
B0 9FJFy $i(FF x
 (?&XF
p`
I"HX0`X  13 	 TL7FhibxXFO4 $(F"F>h "߾  7FTM}D #  #p``!F" (
x*U 0> 	 L-AhF!P"DM 8i}D (BAInX2hW7`<ihF8 "H (W8IhX1F.QQiFF9C?ATAF0 K   ' 3x +2|+0
+-!i})IyD	h0Uw}{)
NY7h0WH*XhC7`)an#n8Di 	JXhH` 
`` (V	 H
 \-OFhLhK|D)hiX	h&dOYhB`'bIbK>FbHyDbJ{DxDDzD{^Hi#X	8 "`FX VHAF X. # 0si  (S+i7z+.
/z+JH9hxD/  

 0>F`1
(
(	(
. &8x	h/-9JXhy8JXh8FGhF8FAF028F!h078xh +
 '8iB	]	$ q|)
)
T
0  ?p	
7ih`*
H#XhQ`.Y)iz)0hB(	 H
 
 
 
 
 `?E dl0
LJ|DC
X" hAF!`@ !FO5#h(FZ"`0 F	 F hiF " ` F0
FFx$+0$ (i4(x$$ZFX&+++" !Fx *KѴ  PE*+0'
:+0#+Cx#+0FF/0I" #t $" #  ( FR(F #p(FJx ) $8f  $l`0  -GhFbMi}D	"UP+hX #(` h	!)hJ*`"2F1SHxD-
82 / BhQA`8FF "A
8FfF #$0F x((BH!hxD-ni6<JjXhX`CfjAi9#j +8H*Xhaa@Fji	F`j  8  @F#!i	8 "# (		 #i (
 (6
 
jBi"IhXhQ`xfPH"D)X
`U 0
``)8F7 ސ	 HK T TL-C
FFFbN~DFx`HxD. !#F(x(\v8F8 !	 (@ z9F (@`x9F (@ x*xBA)S+IHxD9F-V 2EB(`h77 (x((FJ9``miha`h(8J8IXyD(F6IyD``F FP0 -? / kN/I FyDB (G,I8 %# sX`d< F" IrX2E?vp08F0 	0FHF1F#W F7 ##r (x(((F!F$  (F*	 OF !S R R R d-GF@L@K
F|DX8hF
l (i|F (d-0F.|2F4IbXh 9Fxl5F F F (D -BO	 RF;F}- (6&x&. #(FA(=F(F*F	 1F#I Ff08FxIyD!F0F)FJF0F73"}B
  Bn	 dD  !q!n-C #(OFK`D (EF (@1F F{F F (0и -й *H2F9XHFh1F}|(F08FxIyD)F FAF"K F78F{a0 !8F
FC}Y L	 C 2K3J{D𵑰XF#h'F (OF (J(F7 01FF(F5F (: ,8 -6 x&((FA@miF(F(FW F`1F#I
 F08FxIyD'!F#0F)F"0F7a8hB𽠋	 B pFF9+F ( 8F`#E`p!F0F " Fp@F(Fp@71p-OFFiDjjT )f8KY Ba@FO2?F -9)T (PT	,*8 ! (AT	F08F (- 	 XF1F5r>@F1F0F 0e+HqhxDO-f+
Tl	>B(FT)F	84 / ~	 yN -OFxF+D2z+d %Ehh -i7I$ yD (a /_ | (F )ThB(F1F=F0)H1FxD8E "(F9F/+2 z(/gh /5I8xyDFp +!| F\D(FV(6.M}D8FQF*F FAF
H
IxDyDJ)FY - t	 &N A M F	 ~M B zM -CF'IFFyDFA$Oj"D@MhF!F`   H $8X-!V(F	 $  FAm F8 "  8 $ F D@ Fފ	 @	 Z	 -ONFKF~DXh	*I8yDDI4yDD*x*  $ QF (@F*lh ,  xQF (@、F{HxD-Y OF ( πuK
{DK  1oHA0X0#@FW !
<V hF`eK{Dl  @tAV 0#*x*UZI"yDF$# iT"jUIDkyD	
,6Y< +0NH2XB,HQFj#uPF	8
XF:F (  )/ FYF		 +3N$~DD $1N ~D	 QF0عXF:FPDx 0c/HFYFe4 # 
"  0C (F	hB	 L L gL kL 2A 	 X	 "	 	 	 |	 n	 " "-GFhFFF +4 h-F (@ɀ   +x=+ @Fr# F@F#(1F*FN( h:F h1FBF j
XxXh x!h (@ai )Dvh6h . h0E*x=**Fh 1i6h .k jiiB`hh1hihZa` i (Uhh!ii" *I%HxD?jбE*x=*"H)FxD-:F (5Рh)F@h(F7+`E+x=+Рh1F*Fh 0Fh h 0FhHxD/ j (ѮI B H -OВFFxDF $.F{F@Dm9F G](x+(ѨH)FxD-G $C-(gax8F7 HxD/AF (p PFF (Cձ-x.-0FA42hFH!F2	F)PF79F ,F\ ]F0F!F2I0FyD2.LY@"h2I0FyD  Y@#h3~I0FyD  `FFp&.XF (?x8F7A ( #PF	 p 0{FPFtF $3](x=((	F(*x.*
ع)x.)\H)FxD,+*	H!F2eF	7	 ,"F1FH?DF p	E@.F05)x+)?--)?*Ox8F7 (?1PFF0 -`-x.-]!0x@(" CoF (R!F2$F0F7w,F}!F #xO2@(" C4FF(F7b70FVF{.) #" F QF
Fȱ
oCx8F7F(H4FxD/b 
!FRFCF F
#H!FY   % F :	 A YH H hG lG o@ F -AFxF>N[+(~D ;Fn 0Wx(Ih6HxDh<E3HxD/ FYB/HxD/  OhDDh "CFA$h (<F x;(&HF020F|$h ,#`"	@ K"F {DF  ,(](IpXIyD,o+x]+   6	 }: E E E pE NE FhRK`Dh  FF" h] Q  F-OLFK|Dh  X#0F
h	2x[*P ( mB|./84xF=) !HxD6}yx=) 0x[(T /G (@
FNHK~DxD{D ѫi !#

Fh
 x ( 	(  (@𬀝I&t`X`T /
`"[8}FXF 
O (эH#J
&X3`X,QF 
 .>F#0F ("XF
(F (
JE?Ѻ<qx:)93xb;+/........*......&.rI"`X0	?	;	7jJX "0	C.	*	&bH1FxD,M  #

 " p
4 IE7FFWK{D	9F A
 6S
,6M
D

x(IIfX0h (?-
"i@J	DIXyD"0		K	\	m	5I:F	`X8I0yD0Fh`==  # 09x=)	0HxD6S:x  xi#)IbXh1`*
8 #iJ
 JXhC`X
 (h
hB*~	 D %0 ZD 0 TLC . a. dB <B Hp#M}D+h +9"N~D0h@!L !|D F7/K"i ${D! !Fh#F*hF0`H(hh5J#FzD HxD hdL %|D i6l%aL|D h6f%`L|D h6` !!`p	 	 	 	 IA 	 	 	 	 Kp{DFh *K^F 
FL)F|D F7(
!h*F i@1FR#h]%`pp@pd	 $	 -AF xF<L|DF ;H X/4(F7D   (b0 5M7}DF(`U0FV1H!Or&xD63 ! F  *h[)K{DF` (hh

x%JzDh#HxDhx!J JX $/K{DMKdY{D`%h"`JzDJzD #BHxD h!h
C%`9K ${D` F   Zz	 	 	 	 	 	 z	 L`	 + ? ? :	 	 -CFԐFn
FD!2K "{Dh` !"n;۸#d0 -& G @)%&L|D!htD& 7FG(    HY  /eG(@]K {Dht$p "htJ` !FO#D8h`t9ht$    F6 y	 x	 F	 p
	 	 'Ks{DF&Mhh}D %HxD/@i#"JXhJ`  ``1x|)
)"0FiF8 #Hi F"kFhFicF@" FFJ  ``bh0F``i1U0hP`|	 &x	 I> HpMK}DX # hF	L|DiF3F (HI-XyD(hG(h!F@20 F0o+hI0yD2 6u(h7R	1hB
pxw	 /) = x= Fh
KPh{DԠh 0 I[Xh * ( v	 hXh  pG  F  2Fx,HxD.^ F.[ F6&@,ƽ < 
F2NF~D.0HxD.D/HxD.@<0+	,H1X,H	hxD.#? < (O.-(  %.D	8F.#iQ% 5.hB#hCHxD.HxD.) .`hHxD.ahHxD-bhQHxD-,DV0h (`k@{`v	 < H3 x+ - - B< G< @< 9< -OFDj@:~D@X#h8h;uXx*h?
Fi	 hpzD}hiW`*XBx=0:	*<8M7 -	2Xh ) hx/)Q0"_Ki +=xp!hH!bn p YwYyDMh;hOi5WV Bx=0;	+
 BF<	bHFAF7 -d	2X   bux/)X`` <FiE
(F(!F6H'i5hi2!	xD,6 Z#a "3Xh	` /h x
0V .i``pi )@H7Y<h ,@(FCF (:!!2kOR$ѱ
 -w`-,  -ob,  -i0k !P .uw#40jB;h +<h ,@Ԅ
 F-P0xD- ˼()FFxDb ¼dx(+ЧiG!hxD,6F (!6 (!60H!"6! "6ia /Fx+8x(O
O 



 X l ( ?zx*xxD.8p7 'p{DD.(љ.)љ .*	'u0xA)٣a*٣0	)_+ЁEѧi /w 00;	+ 	*HFQF*
HF(IFxDR!77 ( 
 " pHF7F ( O 	S) AFFhAFxD+v@F6		EC" X
x,*K '{gx)*УisLv!hY+L'X  )(a4 "00DDDATAF"Fl @8FIF"b(7B
8FQF"V0@7;x
+7s"+
УiC	h?pX.G ' F%Xh
Pii;(xD.0
M(F(|)FxDi#	
h *@C
 -``rX3Xh`X5O
TO {DP%yDzDHH5HxD{D yD
h80! "V	0`$O 	
 V0 8F
!6 (8FF? F7cn: #9FRFgnRFGF
hBrX3XhA` xDhpE ; " HFAFF (@)@FF5i#X1x +	+:+"
PB0 /@@HF5L;
8"yDX
X"XFNXF"yDFXXF"@(XF":

"
Xx!+HXXFy   A)a8( "!F5x(+

P !
bxa)
AxA (١a+p)i)CxA*٣a)n+рxA+٠a*s(HxD7Fx<*oAx<)lxp*Zxy*
ћxA)٣a*Rt+Oe*XћxA)٣a*Er+Bt*
Yxc)HћxA*٣a)5l+2l*Zxu*8љxa)5xA*0a;+#,r*Zxu*'љxb)$xA*٣a)y+m*Yxz)ћxA*٣a)s+	0Ex7%F Y6 HF / BHF7(HF50X $AB     ;$YB#    /?F   '>i (@V	h +@Qb(F0( x(kHxD(FF ( eifHxDh *dHxD)F.  5  5(F5 %1i ZHxD.x!h$ (@(FSM5SK}D6{D*hQ")`  !467F (@!Xx(F#!5 ( EOY;h(FEF/!5F?hF8FXE	 PF918 $HF5 ,i3H)FxD+QXu	 	 8	 J/ L9 9 9 9 ;/ +/ 8 g8 8 8 8 tv7 7 X\7 7 6 7 7 7 6 a6 B6 3 3 \3 3 2 ,	 H N3 (F0@06F (U2F @58F5?! $p(F\p6"``A c<)F F.H!FxD!U
l  
!`   !   `!H;`z``3Xhzc
F F5 5FO @F55(F5	hC `
hA `IpX9Fo ,u;hB=	 KN{D~DG,HxD@.-bHO" %1X
`YO$hD5(F-8F- n-
 -!tw$h3h +  0` k	 i	 l1   -OF]MF]KF}D\HFX!h!/X:h"`"5` THFFU0h!!b/ (fx
BчB(U0h2HIhXh FGFO!FZF\D EF"F! #
 QF #a-F F
 6A5.
 BF!F! #
 QF#a0"xbg+ '4F1Fb (!!FNa (0F6kF5 0hB  C F#h	 0L8dl-OF%]F5zDF
F
QX #h
Q1h
`$xDzDyD	
+h :(@Qxp)@ۀ3+`@ hx~) =1	 `0h5# h0`"h *O3 0S8Xh "0.+ј   .0= (ј.)ј  (01 (<X@FhGD   (   h!1 `0h5#h3`!h) h{p ( hI) @F@F6 `0h5"h2` h (1z#Y V8(`Q. hx~*1 h !1FF O  # 5й.OQ
H_PF
 ` 0h5}  QF 
OS0#4~)

6HF( `0h5b @F5] ")h :( h0OF hn8`f.й~й8*`@ h0*FISXhP	1 hR hGCO1DE#h	 8`X@FIF5 (	6F (?0h5   8`JXhPP hQh	1GCO2DE@FIF5 (+h:) Bxh*3+`)h :(@Sxt+;1)` h:h ;` /"hJEّ
9h"h9Q 9.e+IE
FJE!h;h29`"`IE8`JE#h:`*h+`   *h:)rKxe+r+Йg+hшxs(eg+
 S@FIF5F (L@F
6*F (D

IFPF5F (3PF69hF h6 O 
 )ZAFJF+`F ( `P8`0h5- O
HF5&5# F@F5 ح(h :) SxS+ ! h
F6F (?0h5 @F 8`(h)`
Q1
hhB
8*s+cf@
]f	 ,  '/ dlKJ{D𵑰XFF %3hO F 
 8F@!!p 6j``53hBa	 KJ{D-CXFF3hF S	F MF GF  p и  !a`HFAF:F,``3hBLa	 8F	MF}DIyDHxD* F5BK "X`8 `	  4 @pFh(FL$hF FHsAap@|7  -O/L0M|D }DGh#h Nh +H4O(H)X
h
%%`&K{DhEB :8O06 L@F

|D!h(
8F h 
PHFXD  (vzFH xDhU hr (     8	 ^`	 	 	 	 	 -AF(#FF, <B'x   p@FF>< +	+	!(F5~!1`'p@F0FM}D  6
HliF (`l@ (IhX-HlxD*5 0,_	 xP3 -O{M{K}D{IXhoX<h,(
%.FsHxDsNO rHY3h )X
hFZU0h,F,[
,

,hIjXh5"(O
O
 $F F
L x ^+!F[JXF!zD+  L ,
`
 RJ!zDFPF+ !`2h F@AJJ zDF F+<h,
O
LFJFH XF   32h<!T8hX F%(2h !/H2h+X FhG	 0hb @QDEؿF#F+0h-<h
x

TDLKOxH{DxD	  ),:h *,
hB^	 `d3 d|2 2 2 1 1 -OF hKLKK
|DX:hF2F  0i(%w -BIeX+hVMv /T h -  P% 'sjjX1w (`rj@Y 0a@4i,T !\E  BF.  (*3i,8+rTб ! F/)  *B
 TF
 !PF/  B< ,$t F !/
 iZa jiB !pj2F/   2  j<F\	 -OFj@jM
S}D+@81w- ( I 'HyDxD`!` PC5F ( KFIF{DNyDH~D``xDJKIzD7`{DyD`&h
	r (o	(mi(#	r(	 `bn(#`\o(Rx(Su(T"(X0F
" 0F
``O1xA*8١a+48 /"cF@F^2xF xBHGE 
g H(X-)Ng @F!a + CNY>Fh#
IhX1F*6O
O!
60x (ѱK{Dh
)ݮH
H`KxDfj '{D
w0F(aFBFF "aH
h
@F  F
	h )2\	 !T@F @E,-*8x#bj)tJ J`  !
FSF	pcj#J`bj`aj"sSCI`3qIkXh *@6jB78F5kIyD` ( 8F5gK{D` ( eNHFeK"~D{D:6h .xjaHDaJxDzD	i#SC sCY (
Fqn 0+VIyD	h	hD뀱 "8FAFF(
'AF h_F37U0h *66B _FB
O  !`j(oE  &j . ݈o BF #Fo A#j !`jZsB.-IbjhXh ayHF4(K{Dh4'JzDh4aH)Xh"JX-%  H[	 	 	 	 	 	 	 	 	 	 |8	 r	 	 p	 b	 l	 %`	 0	 ,	  	 B	 <	 -OL "K|DX+h 
 (ژH XO-bѕH%X.hvJ '!>FFFX]j	(F(iF  (	(ѹ Ѻ ^FF (@

 i ) @rIbXh@ # *  PBFO
FDF 
F 
BTFO 
Iiwf (w @F
	! 	X5 (c .AF2F	 #SE '	'p3KE(F "O 
'}	/F ((FFO	 F F ?-K
X hAFT hGD96x35	 
 jB
hI`X,`H$X#h&B( aa  !zF.N
h#h  j4Owy V	 dl-OBđFFDFۊBmHxD,b FFwȹ   '5Fh "YF
 F'XF4B6
.FO BWH{^ #Y (F  9F
#
S !
F3F.Bx!F #rB# 0A E
i2F ##r   %  O QFcF#W QF
.
01w (?{FPF!'E!HY  h IY hB.HxD,H1FxD,hBY0hۥBa$4a h !B(FB"F !F.J ,T	 ) H' ' -CF)KFD7FQX h  (F %w (6IX0hFa$ F'5FP   "IFFi'HF4B  0iicBB6TaFB(F9F.f8FC/ @R	 -GFFFFF/0FCxs+%+00%!4 (
J 8FIDzD3F+
  
 xCF*	2FG+& -GFFF31IĐyDDF/
 F8O 
4g@F  
z'8F	4t$f0Fp KFY  hhJ F!4F@n(F!F JzDJzDCF+2AFGI(FyD|(F9FxN (F!FY0h3Fd(F S& Q	 % % % HxDtO(x+IyDIyDIyDH "xD@t𰸘% % % z% y% FLFK|DNXhYFh0iJ! zD#*
IdXaj+(F'_9F+22hB
O	 2% -CFMFKF}DX&h+
I   `"HFmXAF*`:F>
 +gs;s&` #+`zO	 -O !/O/KFD 
FXF,hF (hB  HF ((hYF2F# D Fdd(*hDH,)hkBc М  L@FaF3F<Y"hi<8I{Xhm!h @F32PF3/ 0 !  
FFk &O	 FjJ +zDhx j )+4R @,' hxB+  iF@mq (VN	 -CF
FALFF|D=T0h (sk< Sh7H!XhO!3 (0F2 (Zik0FGF(-J1FX)I+I`X,D -D(JXh (?'MgY9h
xR 4KF (2"IyDTOP4?F8;h)FOR@=K{D36H1F+F$X@F"h(tF(F3| F2@H!FxD)K F3p F3l    M	 0 5 " KJ{DXh(HxD,i    L	 X" -GFi,OD@B(H$9X`'M{YD %hF. FwjH5'bl"PFm4;i!F5 !F0Flcl ( Fi~ 5 FQ @$k ,	H9XhC(FG
^ L	 L" -O0FD{ (@/h<x\+i@JFX ,8F (FFFHFF ( ߀zKA!X  h3)iHF9F")HFF@Bh2oLX ,mNiX`1h  (@𬀹jhB
i\kcdHX h4cHxD, $ FF\N(F:FKFX` 1hq(F@*i^ ,\7h ! 
FF  !  F
F3hBlF (g0hllddClalcdAdlldd0h9F:F;F  k  9F:F;Fd$8$F FFY4hB:R (67hP&xa.HxDS ,H!xD  0hlj"kIFO ( :Fikj0h)iF
(0hlX0` $ FPF3 $F5 (:ij0h)DlB< F	 K	 0! X  [  8FKIh{DD]XPxjn((hP!abS0hhb F( F)F8@8 jI	 Fv  F@  -OFWF|'}DFh  X
!h0 mE@{ F . 2x * } . l7x/HlxLF0F (F0F4F ' hk+73 /OO hXh *FL !! (" "N hL2 @ /  . 0FQF#rr
8K  +  // +x )ѻ XF "F4m (л 0&[FzD,&zD*/ O23# /  *@jXh8%#hXmh  Ђ@FHFF' XF(F" "0FQF#p0FJFQF##dF %X #h . }qhc0F !0F ( n"hB@i (@duB
"0FhBh	O3	 hB l4%F h !UF
F `  [0Fo( =Q 1#hB_B0F!C#  vJ@F!h" " #+XhFAE$XhE	@Fw( @FzHF30F.HF!hB  hAhs`B&`qA`kBcVQ & &  h &HF3
 #`kYc &H!*X  h *@ ( O3	 >FЃU0hȓ"#hD'IF`鐱HO1O JFxD# A hA% hAF !H+X  h     e!hE@^{ (@YDJU	0`U /\ (Z  "K+  ii	 L 4FU0h ) hhB  uO hh  YF#u (  h 'v h!v ! 'qHFDPFPF3!hE@F (@ hC"h  FH"U 
 0Y 3   .@w#  iD
鹒J#!hXk`B :Fc
h*  
t 'h1F2F3F  
#h 1F2F 3F  ? 0
iXlBiO7HEO 	5 2 / 0aa3(F +  a3	 *
aIhXhK a3m  "Bb
 	ZJXh #h ha   yWRLO ,Y'hC@PJXh!OH*Xh&` h`p*'`JL  !F,Y!` !!`  !XF#
F  B  U0h=NY&h ѻ @0 `5m( &``5JXh4H"+X`)/  !O2C3
"   '' +?!  ?G. ?0) ?UO 	zH	   @4f ] 4PTH@-OQLFF|D$ (JKTg  cF  Fm& .->H%X)hFK+` *f  k)a8KXh (\Th +Uv (Q  	 (J/H)hJ*` X$+?= !!n!'JXha2  $)xT	0h@lT0h# # (O	O 	KD H$X8F#h #u($O4PF2  P   FA	 DD-OFNK~DjiXhFh	?68 "&)i*)
8 , FO,4D8`+i< , $ p ~J<5X+`0!`zH 'zIF3XrXOO 	  !`  `6{oJzDh (O7`F , F,FhI "sX`knhh (zx *w
!2F0PFb
 hh 4 Fx 1i`n:F )̿O0  nGFQHQJ1XX
hP` IhLJzD`QF # (3	(x.+
#3B
FQxPF2' 	c F	 v  (x   " FQFF& F!4-PF2 ?`  !&jZ i!F`K  &8 #6 0jhBB$(i:$jhBD E $EDV0ha2o dH"`3X` ?	 <	 	 :	 pFj@j MB}DJiX;81v (p3h& 8  5h (`j,M}D(`j1hh
2j`jQ-`jb Fp@~&=`jB =	 	 -OFرvIDij[ `mqHrM[ 0[`  h2hBЅm0X =h( )x-)+)=)^).)k +FF+-*+*Т0:	*\HxDO+0FXI[0`*x=*0+x-+++iF12xB.+-+$=+^+ Fu'Fs&ccMS!F@#Ezj Ej 
++qJ E5;je %F(C &F-%[ hhBFBFF8Nj(FƹB
 O	*I!K[  - 		*? 
hE5B
 O	*1H[  - 		*' hEUE "Ha[ 
`<	 u KJ{DXh HxD+G  :	  KJ{DXh!`	H$S h HX+)  Z:	 ,0-CFOLF|D C+Z (
 *GKXhF
r
 *CICHeX+h%X  )hy?NYh	0Fu <HxD*6k .r888H8I"XcXhh`r[I8F32H "!X 
`T0`rh)IT cXhJ`T0`  )h_G)h	_ J  X`OY7hr (h 8  *7`rJX0T !T0
FhF N  :	 8i XLPD-OFFF|DhIj6	X( 
 (@  (@삹 
 
 F% 'yDzD
@FF8F6 h( X+
60F3F8F !p9F2 
0Fh*0FAF 
0F 8F2,!/(ѲE
\(	PFQFB
0F #7F;O
 D  2 `gX:h"

 p /0FyD3F8O1PF2  O1xD  8`Tp  0d~D0hF@F


@ 3
 ( 19h1h9h! *A: *! **(VPPT0"Xhh`qIF58$X
xhF * ҁ(dY &;h	 a 	a444F
 -@ρ
O(	h;T0hع  O@		.F/F *>h~
Oh	 0	h $FO	i RF(Uo LFXH & X*\.FNF7FIT  0C 0! 9F "	  
 *w  Q 
 (@.H9F X(l'  B@!
 *\9F2FF ( JXh !8`r ºIT0yDh@2XFu(_l -PF2Z
 _ hIPF3m _V  *PF2BJ T
0O 
 X`sxT0  - N P (h 
0"o B  ZF0FQFSFh
V (@
 )H1F X( 0B@
4hiXF QF, -A}I	bX]iE

R!T0h2(	YF*F
	*F #
	F	1!HFYFo B #!
!	ha(F, $ 5PZhB %
   5
Mha cVJhC`XhB*RJOq+FTPJHFzD)HF*ȱ
	hHF(](F-
h 3 hC  `* 0B/I`XhZ`;HxD*8F20F.8F2R0F2O O   !
FFO2> /?t9NY (F>h .?(FO	W8	 	 	 0	 #  	 X (D LP0H
 	 Fk3  " F] F4L5K5J|DXXh)h/F3HB%XT hA0H"Xh) + .Be (>+h*MeY+)I(FyDe +p;h+%K{D$K{D$J(FOqzD"JzD!JzD(FOq*HOq"X(Fh+JKzD{DJzD*(F*`(F !(T(h0PT *  1	 Ht      V   -OFJݰ:|D*X(hh/$X3h3   ,T `Z"fYh+T3`T `@	, 0hxcE&&s(%@	x )  ) 	) 
xD2E (@,T xhZx	xD7\/,	IxxD2'',{&/ &,Y}Di9F(FYh[F[,xB ,&,B !,\*Yx	X,T0h2`Xh@FG   ,,x *  (=\yDT/!T0h1@D)zDh9<<yD8h1q3N8` )@ 9{Dh *o G(hj 	Y  -O(FyD (Ix /F,xRAx )Bg*l*p*#*<$ )ha xl(##(#p(#,0(  !$PF"  =($ 4Y  )`T `/XF T   ,;x&+7,.<"Xh4xYh(0x!D9`((zD`$8  {D`" 'yD8xD
`{D(zD`yD```8xD{D (yD  zD w7DxD{D yD:h hh	hcg+8O Xc+8O Pn+>e+8O Fr+7p+7#+7l+8i+9I+97{D 7{D 7{D |7{D x7{D`t't7zD{D`lxD``hyDh +=AO
&
" F':Fi! F	, 0 +,7{D $7{D  7{D 7{D 7{D`'7zD{D`xD` "xD`HF,x09	),= (
0;&zDhB(08( $0hhBȿ( ,,xI") #0 +@"xDh:h1(F !2F #e%hl&zDh ( d`X* XV}D)hi)#I) #Zx\*Ex=-`cXh]\(  " V$}D+ -SF 1	h*h^	 ( w"5o F %0{D

*2 (
D		1L9%3$ 3
?hBG ѱBPW\ / T0hGdYhG
3

p
@%zDh	),"
	

hY`2x\*@px=(@#
yDh . $O aX3hat1`u!&Y  h1% ( DȔT	0hN`;fX7h /MtPF#D1h &:h.3F- h  8GhZ3F a2F ,#h&h *-.7-0.) &  6)f-B^ 6)^.B !? 
F ( ŀ 1{$Xh'`O 	NF)PF%2HF ((F-F(0FF1YFFtF0Fp		H!XhAFi	 :FaPF$=OO 2FYOG`Y	H`#'X;`34# d#  ^JHX!'X!;hOhZTB  ''dT	0I `T O `X)j*d@F` d I!`Xhh_'' `THh
`#Xh `hZ
`FhK`@F` pn&PF1F:F$J  qX8`3й3й3ЯIcXhE1йn0йy-йlѩOLD8`$aѥJzD`JO 	¤OzDD(D#(h +
&#!  u!& h:`1 }IcXhr`n	/@,z#
 /@ N3~Dh2hab #N9h6Y:hQ9`+H ' &T 12 0Q]FvHxDh[rIh6fX0hB2`09h	
h CBȿ		ȿ
) ̀P8%	_0	     dl 0	 	 ±	   	 	 	 8	 	 j	 	 X	 P	 b	 P8	 6	 \	 J	 @	 	 ¯	 ̯	 	 7	 ʯ	 	 	 	 r	 :	 D	 	 $7	 B	 *	 	 	 	 6	 $Lh	 (L6	 ,	 	 	 	 Ь	 h|	 048X<\t	 	 	  	 p	 ,$	 3TGDDu	2	dHF2F (   .F(p(F:dDFE	2d`F2F(F1
)Fr*(F1MF:F0F'   3F012O ]~h	`hB0Z01$j2B<tD GFG
 *s1$xD2 !g\(
rx *T@FAFB0FV
(GPFs(FN
8 "s2p@F
Z)F #$K@Fo AJF # Z+h `FIF+/pPH60
0Y"XFhiHa0F|1FnB(F|dT0h1H"X0FhGAv60x (#'

  '! ' '
 )@|H"Xh +@v )@rE nJzDh / g( )@Z	( V1Z ( UN
 '1 	hh]k	 2B@	 'O3	 -d(F8 
 PFs(FrPF)F$ *+
	FHFs(b # !HF$V<CcE	HFo B9 JzDhHF+H  Z*h!PF !+Y
 (PF1(F0 % 
	M2

1
 hh]		 (E % %0F2T0hA`(F1X1U0

EK + (?Ū$hhK !+[ #OM}D10*h2h2 %hBA !$ +h"$ +h>IyDhK%o @0 8JzDh(`6HxDhA5HxD)+3H"xD`2K{DhZ1I1K(hyD{D	hih3"*hH!Xh#*I`X)%'HxD)&JzDh@d#FT &1] ' % *?®O1'	] b	 c dl	 N	 6	 	 Ԣ	 	  Ԣ	 	 ̢	 ¢	  x*	 @-OF<KD<MYp<hw:H! #DY  `FY 6M6J`Y 5M}D`+`YP)`9hY0 /JY0haa0x
(XF ! 0F
F#
rh1%H #+`xDhQ
 $  (*h* 0V2DJY0h0IY h 0  9P8hB!h O,Q	  	 X	 -OFLRKDZ hPHxDBih Ov%h/x\/JHixxD0HH,nx&FN \~D5CHxDn9F0FZ0h#FZF xB !"
0F ! #d(5HZ  )Q3JO 	gjZ 0KZ;FZ  XF	hh]g v 8F		$/7jBhah (pZ ) ѸvHxDHxD1F)(F$d]1	   k  , , pF %AA.٣a.0;	+ 5? +]A)٣a)0;	+ ,<A)٣a)0;	+T4,#\CT4x+*Axd4d#  p-OFJFK
FO$	{DDX>h FZ)(K0F{DS)%9baxyxkI0FyDca_x_*@$HxD0hx )	0y$(@I0yDH"x[*cx:+	++
ѡx+)\*`x{(\"+HFxDDD9hr~.+ $+*+"+
|+~+?+I0F6yDI0F6yDz. ."E\  0+8hB^+;љA*١a (XF0w (*<_+\+_!xI0FyD  *	@2Ӳsq\+6q6 		pq6_)1_"+- 0^+\#\+љ\)"x/*`E;HF"h00FQF6		 0; ')ѡE"x'*		 0 +YO 	 <h x`(BѣB`)
 FaF F0B`(<,+ FaF F !!B,`*\(<.+
 FaF F $L(I #o ByD +`)F B#'#8hBFn()h )K"  {Df  C+`R# 0T(h x\( 	 x        ` V   U-CFL|DXh
+F  u`
+|+x	|)F; +i5hc*xRsI`Xh'"qHxD)i )@ӀmM}D(F "8( BpB9 +	+x\)*x
bM}D&i3# 3F(FF ( fZH)FxD& . 0TM8h1ROF0cYYhF
hh -Mнh(T0hh )rh (! %u\6AHAI%XyD(hV(?H)hxD)WT  !w (O9N  YmhBu3)M#fY0hm  	 FFFh  P1hm .F)H#Xh!T ` "@F ! #nvH#XhmB0Fn k!|M   BhP@F0(k -ܑr	     DL # HHH !J#-OzDLxDBK|DX hhzIgX (N;hl+IyD+t ( ))F "#FF .  (2ݙ ` ..	.,<.8h)F"#F 6 >(Ѹ	, * 8h)F"# 
~(8h)F"#  & &5%FO 
8hhBݧ)F "#1F~5qHrI"XyDqHhxDpJzD	nNOR	 'Y1h0 A},1h:F,( 0h,#0h" 1F  /c(@BqP'  (iF (cSN@ABFY0h2hx*)TP0F (N3h|!"O pp
(
(щ  0 +
bHF 2"AD		   (*7J
QFYF
Xh!|

1h "!F  !
F!k "(FIFF#0hEHF05@F7"KDD{DB/
0	x )HN%~D8hhB' (? 4 = 	  L-  \      HxD
𤺄 HxD
𞺊 -O"h|Fxd(FyD~DPx +	+'e ` ' F
- ! !h "A#9F04!hxD&)C (XFh$YFX(h(hyD(hyD"#  )F/;`H2Xh )@܁HhxD%YF(h(h+I(hyDdI(hyDFHH)hxD%/M!d"0;uY/!1epHYF:FxD,E( 1F!)` "#FHIJxDKyDzD
{D
IJyDzD`A"pXOQ( 
F0HS(xD%O	S( G - ! HF 3(B!D		   (ы#  #(ИBX%V+h 8  !)` 8hS	*!HF0Q (NHELIFxY /FBC	/|/ЁBFF	hB, *	*.yx
0xx( !9p!1 	T0'/`C" JFKx*!0g FF (/JO 	@ARFVp8h	PF+h +?YE/  	)h )?* (@'0D0xOQ  Q'0P	JFbF hOQS0& h( F 3E7B/GH!FxDEJ 'EKzDD{D6
"P'@F@F' FQFBF\+V	/+	  \ !F' 0!F;	+!F7~Bo "*` %Q% 5/PB0k FXF/D! | 	 6 $    o        ^ p .     0 #hP#PB3B@$ hX`0   !$HpxD"F/oF (:!"N0*I F~DyDF!0NH F/!0FF(F1 (1FB# X  F -/ !C"  Fp0   𵇰!"F(L %/&K|DXhFQ` %x!0:hP`+)
( +Z\
(њ :PР\(Ђ5hi1`p. 
/X(F j
	  !
FBF!~ F!BtI FyD@wR   F hBhi  mBhB
[lk!h"Il+p     F  -CF/KF/JF{D)FX3h 0o(G0h$t
hBi   FF '0h	 07 iA90!3h iX	R B0hh]
`0h BQ
W$ 4/  $BO4 F 6	 -AFMN!MM~D}D0F0 C2h$3iGI40FyD"!CI0F"yD!a`F>I0F"yDh<IoX:hWl':H(X(#'c`7H1F(X0\o3IjXhi!a x/IhXAF%,  Gx0:	* aA5'a3bh*	$I0FyD* (0F7IhXhPl1+
F (+(F/" (x*+x`/ `h x (Ѱ$	 h	 l  G PH HxDxù
HxDxHxD x0	*  F@v +: 3 1 -OFLK|DJNXKhTI PTM p	T  
gXH:hfY3h%X )h
oo½IT hS`aX
hS "`#    +` 0:`2`T <F@Fh8HxD(OY0h(M`YhaHRFxD(I %F/FbXHQFxD(&I`K`{DbXh `AFH"Xh` ! > 
FFF I`X`8I T `Xh` . 0Fx *Tc:*4	3333,333333%3 K"M{D}D`&~I%yD
`}M}D}I%yD
`|M}D{I%yD
`zM}DzK"zM{D}D`
xK"xM{D}D`wJ !zD`vK{Dh*F?F# 2EУA (a;+lI #yD`kJzDh *3Q#)L"eKXThbIBraX_K|XTh:\H"X`ZJXO2
`(XHVI"XBp`"cXUI`yDQHO3!X PI`0FaX#0F /rJHKN!XY
hV`0F/g   B( K   0\R !`<I`T cXhA`	`
```
`#``/ 		 8TDXu  y 	 \X\	 t 	 h 	 ^ 	 T 	 N Ҋ	 D Ɗ	 	 	 	 @`"	 d8KJ{DXBs%h#` h	%`8	 `8F%H %%IxD%JyDhzD
` +*Тi
x(	Yx)	јxR(	I"yDIyDIyDIyDKH{DxDh(&I "yD
`"
`I`yD`8MPYM hRYhBܠi h8@"
`IyD`8 	 	 	 ĺ G A ; Z	 
 P	 N	 @`$	 K "p{D
IFhyDLKY{DIayD&h"`	h`"h aC&`pFp	 	 	 Ƈ	 F hM}D(F6K$i{Dhiaa !h
FFF h@/![1`8F/
h +"i&aK$I{DyDhDCi
h2QH
`*XhH`hQ`	 2	 	 .	 jj K!{D`pGJzD`pG 	 	 -O@7iF@BDѽO h xF8hıIL0!|D"h#i $SPBD4BAH9hxDO%x*)_ (n;MO}D.i %FFj&FO4  B p0B9&BF F,F5]E /l , '$*ih/c(ih[*hS+`B)iAD
tHY 0hQ`HxDh'  F M}D)h )O/R 	 \	 G 	 t
	 X
	 -O%O&ND~D;h +,$HxDO'FO	bh*p V0   hhOS*bhY* i5 HxD'w@ %@DD8hB	hZFRFV0h
	 b	 :    4K-O{D̠hFD
FF ,W.Fx(F00TF ((IyDp $'FD1 ##XhJBR HE$iYE!BhH "Z    1F[ i  @ 7 BۮB0F/^ Ff	 	  	 -AFPNPK~DJiX8hB	MI uX!i*hy;hca`h *@eh- FF0zBHb`1XhZ
`@H1XhC!/n (IV0hP` Fl`` (<xF\+6Or!/I)F0OX0`h. FL``F x\(AA~sECF10 !0u(F.miZ )F " F(FEF.hH3XhBH!iKxD{D` `:hba` %(F  	 0	 	 K{D`HxD`pG ^	 T	 K	J{DXhLl<S ' F P P𵇰LK|DhX#7h  %AlltF0hBIbXl'7HxD'(F  8KJ{DXh)LS hбIZXhLYhF FrP9 F F ,h$k ,8  h8FKJ{DXh,HS ẖHXhFll|(FF(FY8(FrH ( $ F F8\ h8FKFJ{DX
h
 8
I[Xh *r' (Шk((F!F(  8  pFMaF}D  pr (ТԳk+	0F ! (H H(X' p Dl-OxM "xKF}DX8h k2 (
 $ /*F (oJ

XChFmF @jHJ=)XhF
#h B0FQFmUh ,aJXhF`IjXhB$h
#ih0Fm=h + ,<hm0F/$k ,'F$V' dF7 Ёk ) Frt (FJ FXh )
!!W ( Fp (BO B^:IU `hXhB
7I7JhXX
h`6H)X`U ` F  FF l/HxD$H-O  Y 8`&f  0B  B"J  X*h PB)FihBt F (
h ) h ( F !$ F0F. FJ  xX\F D-A"F!FO .90F!/F(0F.(F0h%F2i 'AB @1`  F"x(*pax4ip5 x`(F.g ( FF F4#x +#x +   F0(Mh}D)6 (20&` hHB<OY  5tUPB/ )-݊B+i"h mChB 8`Rl!h2FIl*U0   hPB	U BK!X` pNK~DXhIrXhB@V0h,i
H01X
h B Fh ,-h -p   -OF`MFF}DF  .[NY &hm	!F"FO
S& #FF (hRIjXh![
 (9HF.xYiOXD "F
[89h iS4 .c8ha hi:  x;hhB
`;hBH <O41OFY8h
hB
[HF.2 	U S
$6B#L(Yh ,.;. 	 -F.. ,?m4\U '&c. F:F.I #jX!Fh   !p pt-OF^L^K
|DX8h hB h)UHxD -THxDO'ָQHxDhxs*NIcXhF  Fu ( 9h0PhBBE:DJXhF  :hi +FFHF.zO     2I OOicX (" "Hh (=(I`XB!T `i FH"Xh3H"Xh 3# #iO2  (OO sD8h3F  F ;h 1i
)' O  % @ T jK *{D݁j9I[Xh * KJ{DXh hY
   !  K	J{DXjh0hBQ  8FMK}DXh hxJXh (!i@aEJiX )!!h (8! "h !
H+Xjh  F8@8  -GFiGL+|DFH&X1h *i*0hT00,)hx (FG*i*16MeY)h h *_  $ B[ &+hi  &*h0B] &  4&+hhB۽
*3MHgY>hP&X(F1h/(&!1iO
Q4 ȱ:h 0/H9 ;h0i 
 +hJhi B`*hS+`4  $3hB۽ $ s!FL hgK|DX $1h0hiRhB4B(h/(j (׿0hj 2 2h@(F!F|  F	JjzD h )ݚjR hJ!~ -AFj1K *{DN0Mj^Yej7h hBȿb hjxzW1 /3O%H83h5 iQ .gjB2h`j 8ih  z3hh
`3hj BpbjB  hx)	HXA&X! "AH -OFiTDгБHxD8FO  iьMH#i[`[  '+7h %ІI[ h +фH[ 
h *i[0 )!!h  (Я! F #
FwI%wJxK[ zDwI{D` %yD.F!i
)8qJ[h0hB #`BiH[ 0h/ !FF?2 F1F !RFF?(PF.b (h B638Fr| (8FsgOI[ hBh HFr (!HF
Fs ')=M[ h$&
mk +O5# hann#i'+
 -7J[hmB$k +х i0/H[  h +?lw 4@F I[ h6  l#b$J[h/ !JFzDF?! F+F
F !RFF?PF-H[ 0hmB?	b =  x   | -OeOFFdKDFX h/FOP.k_IX (  . 8h(
M$BXH)F"hxD&8$NUJ $UKzD	{Ds	OR.HUG ,f8 $`,HFF(F _PHF)=,HF=K{D	 
8	I]6HFYFR.;h+$&$!  
-](
T# G S$  #B $
-K
x   ,	x@  ,F 4F-0F-:h *
LE$
H)FxD&$    L} m  ' t J #zD 	  F hi  pF hx+1HxDp@0.F (Si(*H $xD(HxDF/F$HxD#H!xDc"H!xD^ I0F*hyDF0F! H)hxD#~0F-HxDHxDmFHxDEiLH!FxD= Fp@-H!xDp@)p5 9 W X ; q x t   /   0pG0pGipG-OFГKFDFYP)h)2F $F8F-E @FAF(HQFxD&o*FH AFJYpx8hAFBF+F H k0g8 $;hAFBFG   #[@F0.@F)	xF.._.oI8FyDXI8FyD(I8FyDH_..! _!)p@FY h +@c$mJYh,HQFxD&_HRFY 0HhxD&U$k $IOIY0.h.Y $Gh-HQFxD&;RFH1hxD&3$I,ѥI@FyD,ѣI@FyD> $AF "FOHY0H7hhY P	*hh 
 F`"F"
F@($=x-!~x.ѻx+шI
TXFY IhyD"FXF)FF (F/,F8F'F-F{M}DzHY `@F3hFh,h4`vN~DC*C2iQPY(  D @Khh#,F %BBh0#FBB P]>AF) (   (\N~D3hY1`ZN ~D2h0F.c (Zib$`
Q 0Fh 0BY i
@3"b``0`a`  O DIDL8FyD#eY
h"@HY  &	
#`h+`#>8HQFxD&5!h5HxD&.#D

hB#hBY!`F $  Z-8F- !
F F@F-x F3 `  } x 9 ; ' % + ' @  | ` m	  R  8FLx|D+JX8@&PiJXhXJXh8Jh*n2C !(F8@˿ !(F
F0I`X)F8@#޺8  x,F hH !xD   !
F-C$MOFP}DDD:iSiNOSY 2h)HF!F2h&V4;hBH)Xh (н    BЃCK{Di PpGHxDpGHxDpGHxDpGHxDpGHxDpG J p s |   JpFNzD@nn~D(HxDp@&,h#x# F1FnhnIrX!Fh0(hB Fp@-Zp a* i  F)@nn #` !"n (	n !  d @n`n!`  
JFnzD@n( F !@ϿHxD@&=  J8zDFF8(F!Fh 0 8 KFI{Dp $[X jhF`j !F.`p&   F$O2F IO2F A ! O2F
 @5  -CFhA((FxF +	+2$h7/1@I F:FyD.@0F=NA$~DF':I F:FyDF80F7NLF~DF4I F:FyDh0F1N$~DF/N~D.N~D.N~D$)xDE~ FF x&JzD%JzD%H1FxDC&DE F)F0H)FxDC#'NH~DxD1F(,,
H)FxD(H1FxD( $H)FxD(CK H  K                F))K{Dh2 `IyD`
K{DhX<P$ HxDHxDHxD 4g	 g	 g	    	K{DFh2 `IyD`K{DhP$ f	 f	 f	 iIyDfpG Aj
K ){Dۂj *ۑB@iD )  pGHXhhBJXpG $KJ{DXfpGT ,KJ{DXfpG@ pG  K !J{DX"`S0`pG & <HxD%P F"iXR0 -]!hK#`#h +-GFFFFFlDFHFf4h9 hh\$ F.F (>1h:FVQFBFPIF8F  F<AIF@F2hh)h `0h
)k+`I	HxDB2h+c0h-4` F8F  -O &$KF$JO0{DOXDFhE  $
*i8hVQX (4LEEEHUF0H9hxDO"0h-h-i-(hC+`B	"0FbCOt𝻽   $ KJ{DXhAh	hHxD%ž `  jFBpbijui S)  -AFhFF%L8F|Dp$KX (8кk*50!IbXh (2Ѹ /xT A%wM`Yh8 ! )F0FAshHDT0h8 !  !0F*FAsºh + - -
h * DF isK  8@KJ{DXi%h R#`%`8N F#  ji  8FM}D hjxl)Bp)BBb0 `#h(Fx-# (8 shL|DxHxDFF*xFx 	HxD%JX x0FlL|  h  shD= FFF FF(x8x#0F"lkHxD%| D sFh'M}Dxb0:	*,xd:*('''''''''''Y^<&3OafNYpC "!
Z !"F  "FF "Fx+	H!h(X"#iy+@B #o| Q  -OCL$BK%|DBIFXD`bXhm
 
$<H+F<MBF@AT   # aY  k%gl:n3JXhB2MaY
hC5iA
 $T0hB  > $  $(hp& (  + $  $(hh (hFFOb,	(h@C   l(f  %'lnBh:h *6hUF&OY;h +d   FNh~DSxBx-)_O5+)]%  %8FmBH1X!f,ECV0hq*P jjBpq0 
FIxFN9ɲ%)
HxDAV !xl*F@pjOh *̿j"F ij}i 8O1KJ{DDMXD!`S ]Y<ThDi,`S@h"QC#`\0Y  (` `8 b 
 I"iSCyDXĸ   Fi@uB! ! ! h>  JKzDpjX ,
hNjYh Fh!; + ,Fh0F(2x-*+*ѩm@ Bp *  !Fp@q1  -A 'LKI|DiXeX .h`/`FYY,T0h *   _ .`AlX -CFL !KH|DX%X /h1`)`. JHT0h (    2 _
I  #/`HbX,`!X`T `Clz 8LK|DX(h  (`	I %$bX`T@#hm%`8 z  o3  JzDKFI%OXi`TXYF hh +" " )OOL$FX1hx  h+Fd( !9` 0 -AF@M@K}DkX8h9 " !F FljAo\ (f"hxn (_9ho B3FT Hljla!U0h,  h"F#o C ! F hjX (7 H!h(XA"S&H*Xhj>h4h $ F x! FoO(1F F IhXhi+ݣBYa F!&
 AY{ 0, Q  -AFLK|DX(h p  r ()h0h(JXh + AJzDh +v)HxD%+
HxD-.	H!xD`    d[	   @[	 Kj{D!ba(jS0h#ai@l *!O1"6_   KJ{DXhkAr!c l -AF$M$K}DXhh0"JX%5"i`jBBEj*@ !j "`jjAabBHjU0ha LknN@@Y3h +H!+X`  K !J{DX`6 # @YN d hxlӺ@c  Fhx8hx!*HxD%s h "i@h>2 -Gh_O#xD +(]IyDh\IyD\IyD\JzDh+ZJzDZJzDYJzDYHxD h+XK{DWK{DWK{DWHxDG%T %PD.FD FAF"(&F FIF"(%FGI FyD0EI FyD (/!xo)AJzDhع@H!'xD>K{D`>=H9FxD;IyD`E:H!xD9H"xD`#xd+:6H!xD  Gʼ2I FyDF].H!xD-JzD  -+H!xD)K  {D`'H!xD&IyD
`$H!F8XG"M  Y	   |Y	    ~Y	      e ȸ  X	  X	  X	  X	  } m dX	 d hX	 Y DX	 h@=!F  D  -OF hFFMIo D}DyD	 .ظ$и'@?=и\ /@Ԁ4T%,TU0hhSPx  В8 ! QFJ?FyH+XhiU  @2sHAF+XFh #UxAE@BU0h  o @Ba  /Fo AaU0,!`# AF`yF8   2  "hRO hYISQx&)
?)
/)IH(X$ #w#  # /2 o NtEUhiPx?(o @  
hU		h " #"2F?#O3_?A0	*UFo Hx-+0++	*DEL)Yhi	*0FO+x0:	*/  -$/+?ٮ?+?֮ F  L  Fhhi #U"FhhFN !"j!"j!O2 #! #
F !O2jF i()(    ji"j cj!h f  -OFF[K &FZJ{DhFYHX	XJxDhzDG
O r$8i  P@  $ 4B XF+ 2F ]B sЛ   *L ]V
8?  :B`P*B4ћ  0B ,F "
BO2o Xh\ i`i`[iaB
ћ  Hv"FF"`
F F;hEF;hE>
LDgEgFwo
`O 	
	H
D (ѫ&HF
0    -OFhFxk*ѽ%%s*Xxc(
јxs(r(xi)yp-g(i(ѝxm-l-g-I(r(Fxe)@a%a]=F7(xA.a8(p*Zxy*)F
F1/xA (٧a.0?	/ٝBFH)xxD+ 5h;xd+,l*	p*\	YE3 #DBpBl*jFBBb;xa;+0HxDP#Oq!a	9F2FS
PFFH `! 
	"aK@	+O{DE i@
&B@#BѢhx@)Z))F5xA+٠a*08	( # F BFbFhB&a(F ; f Z  FMF}D#x\+
`xXfG0F1FB F 4FIjXh+
H)X F
hG  $ x+ ( F  dl*L*K|D *IXyD)O(hD.h0F0@61T	hi*ѓ Q  !!
*! ![9F 0LT	h!hF@ +Z  x*)h E  p z   `dCiAj	"Bbj!bpGKOQJ{DX h?( h@$aHxD@$I   j+ !j
Fn nϽior

  Bpjj@BO0jj Fq8FL|D^XF8KiX	h8@g8 8FLi|D[o @+Ho B!X  hbXbIcXh*i@HaFbE#Xa @bER  V `i@Bi"`I "cXhb8  8FL|Dfi?H!X
h !PY
 k	kkAkmkk
X8@k8Z KFI{D[Xh)H#hxD=pG 4@ ph+I,N(FyD~DF)H!F)J#FxDzD='H'J!F#FxDzD=%H%J!FxD#FzD=#H#J!FxDzD$"I(FyDhF (!H!FJ#FMxDzD=}DH!F*F#FxD=HJ!FxD#FzD=H!F*FxDFp@=K)FXp@!ػ+   % ! * ( / ) 0 9 ϭ ' 5| ѭ ڭ L ۭ i@h@+̼sFhKx{D	HPx0HXp@$޹LjYlF3h a  o)hx	HxD$3h 3 p L5 sFh
FLi|D 1! !xn+Fгu \   1h+F((	J
J JX$| @  !ÿ  
KJ{DFXh8h!`#
 # F !@ !  F hNx~D -$HxD,FKX!hJ)F"`*FmF hC8F#`+=(F$H(F@+
HxD@$=cW0H!hxD@!պ { K ? hFJ	xzDHXfpGj"F!j
F LJFIzDQXh8( `RfpGih*i
 -CFKh	h3&O	hDB.ۦh .@hF
q!iGF (6%h!(F, (/0F ,u\H9 W0*h)i hB`)hH(`chZb`J !0Xc``"hWi @h`R3 C,M &0F  tK{Dh	iBЁHBHApG GK{Dh	iBFpG +p #MF}D&h\BГB3\ ("h,\U0hQ_s  ` p  p  Fx0;	+N "O~DDYE3\ )ѡA-a9)ٹMhB۠B h )2 #   ( &  "*OFFDDY\B3\ -9"PC\  \	 7 502( ##x2;+e %F !F x *  (F x (@
!B * mhBۿ   pFN
F~D!x')bxc'/)?)c\\*Xx #Fx±B*` #Fx3F0F!x+ (`PF#x:+ - Fpc @|("(а
PBPApG pG KF;|+PpG
+FpG-OF(BN~D܂ij?KXO#@<H1XhIFq,h x (a7I F"yDH y (	(4P FiF*(h!,FO  FxF&J)hX 
 #"PFTiF +- xP` xIsX+f$!x EH9F0XO!< ##pAFV 
# hRFq@F+  Fmh` | , L-OFD@kFDF %~DT##`EFPF)x+F (e`(x ( "( (F!F``Fx ) s")'` n|)
)5 9k)ШFBxe*н'GkGF9xA+١a (*)ЯB
xD+ (/FGF)xp)jxy*ѫB8x3(
F;A)٣a (*+з pX: "@	+{DO
BFXX)F 0
 @E*xA:*8FF;A)٣a*٣0	)*+8xx<A*@烣a)@0;	+@ރ@
(@E+xs+	ixxD+ @ao*xA:*  "9F#F'F@O @Eo#`:x!*7O F (`9!{D 0h8FF@Bћ 0>+ћ  >* tF!+ѷ'  'ћ p!/@,'@!Bѕ 	XFxsEHFw  +(
9FXFex	 5FE /C@QPE
ћ  @*ћ")
/F-+њ0˱

"+|+
+\)|+
+@
 4(Xh90PFV0hG  D 0 +B
ԛ 9xD+2 ( HF	 
 *	*		\*љ0		2Xh9HFV0hG  D  
E@ˀXF #F``ssXh	*|3XPFhG\(њ  *S

P`("
 B|(1
(/"(- (+	(8(	h+(2XPFhG`(#+ 	h@PFV	 hGFO		h0&PFXhG  DO 	   (

h32XPFhG  D   (
a`##`	 aXFghB ""`gh9x$)7 F (љ 0K bh; `Q+a``hx~*0FF ) /)&(bh*  `Sc`+ ̀+r+kq+-+ U1+ + 	ܘׁY@+@сA+ + 
+u+ 	+ v+ y+@'+ r%+a)+ Q+ /B+ ނ7+ ?+ 2+L+ 	M+ F+^+ 	T+ V+ IR+@d+ B_+^f+ g+@~{+ y%~+}+`w+v+t+ l2z+h{+@Q+ W܀+ I+]+X+@+U+ܭ++ 	ܡ+ I+ k+@A+ 𯂬+ &+@7+
ܶ+Ձ+ 𚂳+ 𝂯++ 𔂹+@#  @B 7+ ΂+ ʂ	+ 	;+ + m+ j+@+ + a+ \+ V@ N@cE@9B ܳ @
ܳ = 7@@)sE I c@'B\ r@AB 5B 𙁳o@eB `@acE@gB Ё2B@c@B L?ܳܳ e @
ܳ XR@wByn ၳ MX %@sE K <\N@cE 0P
@B ܳ ܳ 𷁳 1@B8 2ۣp(. ܳ @sE  @cE~ }  	#h+&%%h-%%` %#  YF FbXFxF[I ##`  uX *hSFXFY0Fx0F=!*F#H  oI0FyDBF<#@lI0FBFyD4 (#i#`a`1F  -*XFx
#4 #V 0K\-ћP
 P - _BM @NJ !F #X2hSfF\)ћ0 B3DN\F~D%F!0F* ((x ( %-XFRGx/+S\-Ax00x - /-1HxD* (@ ` FYF "" FYF] " FYF:e+ FYF" FYF"!H5X+hx
### FYFb FYFF
 XF !*J`` (##  H ۥ   " dlX   Z   FYFb~ FYFg! XF !*`` (	# -  *-y-]FHI yD  F. *\*kx5@IpXh:(FV0hG  -*x * ! "! !  !!  F)FZFCFFO#3#1'#/%#-XFxF#= "IXFyD*Frh IXF*FyDl0IXF*FyDd0("0F"`@``M %%`$# )#D]FGF麄EK@
0#xF )(F) dl   x|+
+0  F hMx}Dg++	Gx/JX@#F '0F``0Fx!")bh *СiNHY.XHsh`+Xh`%j&h -F0xFȿj:Fq !1`)` 2 8F hMx}D3	IkX#f8 hi``1H*Xh8@qs8 -GFh@'DN@Q@)~Du(`iB
 PFQFB(Fx (N_`(kx=+HbiE5@]|>"(ai9#iBKE"hB1CE hAB<@+&|(
("Jb!X h*ai<\+(FV)FBhVi "``pIsXh*
H1X(FhG  -(x (bi h*N 0dlF $'
*i4X*h*i*+hB(F@*
  HxDLK|DXh@@Կܾ  K
J{DXh$B4K{DhBi"QCXXpG  pG ̳  @	#B  
!׿J ACzDPXpG < )K{DS! pG  pG >t )K{DS! pG  pG Ft K{DHhpG"s -OFF $;],+
}
:F,FBO 
FUF'LO |D#QhF x XE8FZFl萹	.` A2>.& 0C  X` .}HxD"W  HxD(FQF+` 
H9FxDh;+ r  ; X -O  #
O7  ppDlFl6xD|D{D	 FFLxD] F*Fb
D\ F*FX ( ΀ F	*FP
A qJ F*FyDD蠹
Cq>FQx=)3	fFO BO FFF FJFyD2x0* 1*
B**
D
?*
@+*
C
xxD| FJFyDP
C
0x%(C!
^ .\ /
HxD

BC
F
BѸ E$xD  FJFyD
ACC 
V /

Dj
BEF'w$ FJFyDpxD0F AF
pDe  !F.x(pxD.p8 PFF -)?	A*@Fa9)F0 @A+٤a)0<	,٘ @ F8 ,	,PxDI@F-*F 7 xv ( 1,T #([ yDh E$O zDO"F
	Z	wh (@HxD!
 !b[0h )@  ! !R   " !KB  b !D  !AH[ 0Z	 h"Z	  
  

!.t)[9))Д) 00" 0*"
 0?" 0+" 01"p   HF  ! 0 	T@LBy 0I	 hyD
 p%!h *  IHDyD  	 D p.!	 	 ' 	p		
 #1iB  HDyh 	 D3 P3  *   0	 		   '	p  "49Fh!I[ hBpirikBh9#(hE #DuE(huFE +@ȀHxD"xA){HxD",X+,vI,"F"yDrHxD
i "(FF0A- j
2(F+6
 ( vTH[ 0hF$:0F!")\N~D0hO 
#/
2i	R	HFLIF"FF> 	NdEM JHxD";=h)i)#

E4!F+F0#1h
ZC	)F2hP0`I
/Hi```*a[ 0hia
)@F)!0F*>(" < m {  : ̕ C )x ' % y ˔    o j H { 	d H v     + K  J{DX` i * sFL|DF p@K
FXF(h 2 )hk*lH"!Xi
`  d (p@p
 F<L|DF @9K
FXF0h 2 i (a1hk*l +Z  i(Fo+H!X`*JXhF( i &IbXh +$Hi!X +OO 0h
h *OON% (@^o iD (o  H:h!XhKX
h"i! !@p𽖪 sF3L|DF p@#0K
FXF0h 2 8 (O1hk*l +H  iQ(For"H!X`*i(F l ( i7 p@oU i (oM  s<IT0bXhh;IbXh8 !  !p@pp~ FLKH|DX&Xh1hBF )FpY:h3hBH "!X(F	h@  -CFFn6NOzu~DF'iHF"F9F FmH
H"1X
`n Eѽ#iB=Cn6 KJ{D-BFX0hh1HxDB"L %@9Y4hhahB Fi FmO (Ozu$h ,3hh5ME  ӎ 8FMK}DXh
h*HxD8@"#j +ݠjm38@$~
IjXhBi8@p8 i8@=8h  s F"iR0 )b#hX ` ( F@)y!")
KJ{DFXBAiJBa * F@)@ Ц p LK|DX.h*+h  :H!XKiZJap0!Qa T
h2a
` p@  8FF!h *#iC1 
%h!i*!!zh` hB"`8  -OFFFF(zHFAF M*Q}D(,7 $&JXhQV$ 4)DE0F) BZ$ yh,HFW ""4jJDE@F1F(JXEI "kX`  FMK}DX h'F )!h\ " U@Ʊ#h3HxD h*[ `ImXOQ(h<I(
(h<h*M  h)g&` @ݸ T <(	 -CF7Mh}D (e4K.!X h)8l i/HxD/I FyDtH-JzDh,,HxDC!Q*OOQYD 8h<(8h*   # 0 xxHOR9hxD%_<h4pU !) F) (0i8(   _IjXh#H)X
h*0FHFC)湽Τ 0   '	  '	  tpFirNhK $~DX(!zOzpztj
jK0hBp 8FL|D+KXhHKmo#Xh V)hjxm+	OzqHCH X8@Y8@ z 	Lj|DjKXhiJ X` FHjxD! F@ڿX JzDIFCjPXhacjjB!j)$HXhhB@$'Zbj" i F8 !4  F@  0F6tj`jcl
"i MK }D	KajXh aIkXh.	"ib*в 4 !"#3?! ! !"l4d FO0 "  !p
FFN#h~DFc`p Fo @B -IrXhhBIpXp@!#i*F`j+jpzl K Fp@ F0H!FxDI     FO
FFD<0H!F %8X3M3xa+ F(}	HxD F1FF HxD!F(F   FhPIPM FyD}D#x>+!gx>/IO`DHODF F%F (|i:F U0` F)]@+:`xA)٠a*"(4U0`x>)4x>*44#xk,IjXhJx)IO2yD5: xP !%JU0`X1h=+`x>(x>*Р &&1F(
\U0`IhX!F
H)X
hJ0U0h
IjXhH ")X
`  X y Q T(L+ K|DXh 
+@*  𵙰FLFF5K|D "9FX#`0F !0K(	H!X
h * IbXi + -OFLK|DINT  T|H  Y{J;h&X1hXxIhFbXwIh	cXh
T	F	h )
nH XnH"XThFhBjHxD!^hI` & ````Xh
 &T aOXFYhGWx/68ZF (ܛ p / .(h60)dF (+hOOX(8FU7T h G BYxFUy (:F *F  #UFx )33  Q `
`	
 0
`  `@ 0`0F(Z$ '(j8!JhjXBhajba(h 0Fi " )O1 !+j +hjjBIcXh (г'  H8 dl-C $8FFDY$`0F 1FF8F*F P4
,O4 F F] -OFMFK}DFFX !lh9`  IF0F"    G^E<\+ $0F @1FBp*
)!!-F (@JzD	) 
          L*Yhl -yёL|Dtrx#*CяH $)XO O\]F i  $}l #
 )\)5<cU5 )h hE #cUh) F (% P  "  <*u | 0rx<*F+ d7 ~)F! _K{DRW]K{DLO5%`lZL|D% $XWL,Y hhUIkXhI"`$ h( `NK{D&
T0U0h *IJzD$HK  !(F"{D%FH)Xh (DK{DCH)Xh (AK{D;`P>IkXh>H)Xh=JzD:` ;K !"(F{D<%XF s\<+FNXF `.!(F@$B 
 --$IyD$IyD #9` $QF)N F(hB  EM M GL  )L   K ς   }O ׂ  -OF hFFN=}T~DKD{DF`)Bx=*с@4=x`*@(jC4 !h# 0F Sc$!(M@(F$F(F(UF(F~!(? (kXI"i%*#*!Н**О**:fKX h( X(F	h)F@(FUF( )k#i(F!!
H(FYF)F(FUF(+F F P(F(8x )iai k *%@- /D hQx1\++2	 +	+8HxD    _Yx +T /N h$!(/O  #ORV	 # h $R  = 0F h~!( (	H	 "1X	h !hB[F# "hFH SFF F-(5-Ј   } 
 -Oϰ J|DX:,X*1hM !Xp"/h^ 56T
0yhDJ9h`ܩDhiPEiYByDh6iB	"XB99{D`y
Y/FFϬ Ϭ ("   !(F0hx#*Ax!)+O7li #
~DdyddDdD.D	Dh.!	.(x (	(:( (68)Xh +00DhiqE Y`YBhiYET BY`YcXhhi*hB8%{DyD.`.x"*ς"X"}Dx09	)'+xa;+   E  P     <cw."yD.|"(FyD0 @  ud(F"yD (lT(F"yD ( ^A8."yD ( OQ.$"(FyDy  D(F"yDm!8(F"yDa" ,(F"yDU ( #0.B@"yDC ( 
(x ( 7 (@".  ."(FyD)  "(FyD ( 0C@l.h"(FyD
ر$0 +خT'oXh)'H'O1#zD$ < xD60(F"yD (    .IF" ( ,."(FyD`	 -!#X	hU`(FAF" ( #X1.hhU`x!(|< +?w	+?tH&.XZ)hH(`e"yD.(x.|p`X hl~C0C.9F"u (?0CH."yDg (1(VaYSh  `*.1F"U (#"yDK&
.X (x*h
 .0(`#+`.uY2hʹUaYhԅT0hw" * '5  +',22N%X)h! 2CT	p
	F6>h.5iFF65428 ".HFF. (ʀo AB:x%)	$C!.5Xhh(*),(T0h(^ .2P.F< F (  > 5F (  46J4 6.4C4x;)23  6a,)2.+6o NuE5 %4'. 0..x:+#2 (A\"+F- (J.x|-IbXh65B,@QOu10 (A9,P,14 )-J6X(hhB
$-!X h'O1-h)h66 +M0h"a6ha /,)F02 *@JzDx!..Qxi)xN+@=
T0(FNT0~D]h -
Th ۿ0@
%B2 .@҇JIXyD(hh})h"NY*`  +J'LzDD!OhgE'8DwE '!.
vB	6BеBB     +3N!~Dch12 (=ѨJXh&1ԻM	M`Yh)1նMbYI810 -۱M1o0x*B* *` (@Y114 .ݣM /3
M21N/2 /ѝJXh65BH"Xh!5665.tT0hJzDBHxD"ry(@, (@4#6,#0,[,1U Y0@tv" 0Fh(0F"b혹xn+)%  %pI ">yD ( / 0FYF"H0 ?#,9eI0F"yD:50FIF
"2 5 @ B\I0F"yD&`0F" 
5 5 A .SI0F"yD (@k!    & @	 )	   P  Kd	 ~ 	 8~ 4~ ^ 
~ -_ } } } } } n} `} J}  +} } } | ,8{| 9| | 0$y v }y "k ej 0(8Ax Ux w w w w .0 ! .`r E @,  Bp.@: (O4ABA1A. 3۲<; +;!
@FO5@@FyDoB%0:p]X\.ј 
BǹZ)DjD:yDZ~D{D}D
,(x+(jx+*?􎮆@B,+x>+i,nx>.)zD%:,!+ѱh",;03&" &;3 ,)x!)k ,;@ Bг".<C<,B<,
xxB,1(';),3x++pxu'FPpx`(F!xR $i~D i~D.FF(Fi, F81;,)0Л.ж;,\*nx
.n0Fj1FB(Fl
*i #-+pE*x *1	4:h!5Yh*h61,xp0 .=()]ՠ0	+#٠*-hX:0,F+=,x=.KxK(0,(F(,,,1J<,x0:	*7
,(F, -,
x . .	. /1W1@46#46j456k4!X
hhBȿ61A,1J,xE"-|-W
,3x|W2 ( 0+L+򷀀+$}+V+ + + +%+ 2;w+	v+g+ 
q;z;+ ܉+ ܂+ ;+~;j+ܶ+vڧ+t郬;+`;+]i0ܳeܳa+^+\+X@BVгS@M@WsEL	@GBGЕBDг?>@aB:г54ܳ0	@B+0B(@""@B@@cE
ܳ򈃣s+  @	.sE@B@v1(1	A, ( g,(x (44 )10 +.+)+(+(F(F*qB (	(1 #, @B_ (63#4,0 +/EFGقP3COT h<e~D2iT	h$  $$UO  5yD%}De{DzD~D@ !4h{D
0F<!'F(  >!'1FxF1(bOEzx*ѸxX(ѷ	(F1FJFMD>~x.!!   ) 	{"
 
(F1FZF]D	'8 -*
љ q('Q('		 'F@HFZFyDL ( HFZFD ( IHFZFyD: ( .HFZF2 ( "IHFZFyD* ( HFZF" ( IHFZFyD ( ԂHFZF ( ̂/@ - I(FyD71//
/]XFF - H(FYF"BXF 	JXhHIXFbXhG(  \("(		   ( - /F"!\#H!X
hjH!XXF
hG(  \("(;˛   *"#;p@ @+\)Bx\*7 *	*70")70 )	) x+x(Fxi7JXhG ?  x )F""O\+!K\+Cx\+!pKp +	+	!; !3 5"+!F !Ap0! +	+ x3!"" !FpAp!"",!pApp!kIbXh! !d!0; ! x +F -Uй  (FAF.L		 -P.F"#;3!  /D" 2h ! "HH!F /  	EF"! FXFH߱""  		ձ.F'#;=
+' 0p
<!)p|<!)p@?O	 "
	 
MD )V1F(FEkiF`# 1`&Mu hu u cu au 5^ u Wu    $L p ~p : p p }p [o Eo 1o o n |ld0F
r'\ (b@F&H& "DxD,ihGDJMXeY3h*%(hyX,!8hiDqEЂJXB( ",!F  (`0` &O5	
wJXhi&a
xsJXhfqMfY0hB1hhe0@
 B	 +%kCD\  !
 .`IbX`$ j^HoO1 xD#5$ 57"UFŖ  C!LIDbXT0hhB`,T0hH  ``WDJ #X`	!BJXhY`-x --hZ
`MhBRO x=)ũt    *?6@= 	O	 /x -􇮍 -O	3 	O	 /-.F -2|F -Oq.F -^rFpO	m@j5'6%4 +O<\ \[ h 8,-Ow}I
F
F9|DF) 'XhT 0X  9{Dh*	xDW8F9F `>F QO0
"sty`!&ZD+FihBTyRF+FDhiBDyYB<	WF+FxD4)X QE@`9hH8` [h?iB`XB
yYh
pn O #	
8{DhGT	 ``X`(
XT0T 7 'h`)#Xh`*`Xh`8F+z,8F  .-`Xhh`0/#X|h`1`Xt(h`2Xh`3p "
;h  
`HxQF(FDh	iB8xYB4 !T0`  ((zDF8{D(yDxDzDxOFRF+FhiBZBR`Xhs *ڸ  !  ( (rBo && (FQF0 (6	"hfX3hBxQF*FDh	irEd`XT0QBQ h
`	6h`#<Q7`T	Qh #hB 
SF(FhiB
T    ^ `	"Xh` (
B$% ##'&F .Q.fRF)F~DhiBlT	 B!T0`-TfY>hn< (Fr   ": QFGFP
@(P#X`%
$DT  &@80F'!   "#  `0F'F8vYH#B%:!' ( 0F (#0F|'F9 T #h0^` "cX`
 h%X0hecX`Y#|`bXxh`bXh`hT0h)$$X0hHT	`3hY1`s%@XxDh94!X
h{3hX0`
D `q  4 0$FXE  pV&}DRF+FhiKEhT BT 0ñT   &_  "   0Fr1FBt 0H!X
h|PF)FDh iAEB  4 )Tiݝ	U p  /B  )>h (:r /631Њ7S'p /,@N %3 *7RF+FDhicEH#!X [BhYBQ 
:`H	#Xh` +4Y" =s
_q
, #0C p Fw (
#K XP<`KFs_*
' hdp IcXhl4 ' p3`L q pA#p`i pW  8h!<T `4d p_  ( T0hh (3 0JX8hӱORF(FDhiBТIbXBQF+FDh	isE|OYB
 . +
O? & &O&! #Y`&9 *^fIgX8h (Dh *@чHQF+FxDh	iBTIgXBRF+FD(FQF (47  szhicEB (rJ pJ  nJ nJX
qy" !4PKF49" )`bORF+FDhiBB]IyD  !4  @h / *OYhFh// 𧀷OIPJ[hTzD@A    '\FhKFFJOFX'PF|   h w@$ \(,04Idt / S{8p<@D T 8 DHq{LPTX!; L_ \OFKFH!XH
hT     h`i    `K X`T `Fh8h8h&8F&F (9F8F&  & 0 H"Xh3 IOYh*8!T0`hO!Y`OQF(FDh	iB TpBRF+FDJX E)h_hisEBT0 BEtH"#X`FPF)FDh iaEBjIcXhP`RF+FDhisEлBfHRF+FxDhiBB\I`XT0hhBPZHxDBнBXHxDWHxD6 -,EI #)`XCI``QM`X*+`aY,
`-./  0T08H``1%X;I2+`BM`X3`cY`?M`eY +/=I`X=IhS``X<IhS``X "`T0F)hq7H"XhQ  8 !`T0`hK0JXh@  
`&,I  (`yD
hS`0FhB

	
w}(\$g@ը`\ \ 04<Dt@v -A#L$I|D$KjeXX+h>iahxE*-рhx*)*%@% @%le!T0h%i(F"!F/A!M"`Y F`8  #FT
 (9iB n 0`d !#
F  -OFLKF|DXh +Eip(@ !`*hx *:ѣH!Xh ( 9NOYT	`YhhF   0k`+ eJ  T  8`X2"0``!T0`   +i@B@B/h?xi ("	"OYh  # FF+F *hx + *hxStO@+iYCE F (@B"+ "  O(h/ix/F 'jkik )`Jg!X h%| ("tT
0hF1ZH#Xh# #i (! !(i .# #(! ! HIcXh  #   9FF+FF (. .7iPXBH!Xhk*[=IcXhJF '4H!XhW 0K4JXh8 ! ! 9Fl
  :+H!Xhk*& (kH!Xhzֱ(hxIcXhB0FipJ0hXhB\T hm0H"!X
`   (џ	 m D(0-A@-NF-K~DXiBhF@cE FAo~*@B%!H7Xh!j	jXk (/ F)FW  B'(Fi, ("H*h1XhBhйmhj  +̿j  v! !ld( F)FA+ j   !p"hFtHI@xDhFyD   KV  -AF)M)K}DjX0ha "hx/)7#OP ` #U '  Np  h!R رdU0h0:FFhFAFR(5haJX R%h(F( `%Or F"a !i 8t ! !-OFgLgK|DX   dI"(`dHcX`!Xh +@aOaIT  FT^H 0 p'X[H9hxDF:`XOYKYHD{D	xDzVJXh (UIbXi+`w RI    8`@8`bX`TpMJ;hYnLIXbX hiFHJHIXF FaXEH#2F!X0FCHCI"X`Xh;`hiB9hJnB"h:hh8H X#8OD:hBE3 ` !
FT0`hHh1?hh	)hTp )} 0  X  2 Q X2 ":` $i DU 7U   X\d4 -G&XF (^ĀF
	DT(FAF"F5K!F (FqF@x
z F $%R:m3 FhF8Fdr0&F88F%; F%84F
!FRFT9F
 0FFF0Fv8F% F%
4F+x + FS F
KJ{DXhhh
 S` +
h
`
   Df FF!F ( F 0     p@iF-NB~Dг(Fp@ hxA@B$HxD$HxD$JizDPF (9-i@eEIyDt FV0hIyDIyD F !H! " F58 % %I FyD (% FXCIpXp@pe <R =R  %R dR .R R !)HxDpGHxDpG  pG H CH "K0 {D 
2  )S pG d TPX8F hh%/ F%,,F ,8-OFLNF~D(IODIODHOD, , ,4, ,AM}D4AM}D1@FUF,a=H:F=K@A5X{D(h/h8F8F&6IyDF8P+0M}D/M}D/M}D.M}D.IV0rXhF F ( !`)J)IV" 0X  sX8F)F`=#HxD"HV01X  h 0
`A +ȿ , (Fc8FO% rd n_ _ r_ j_ u_ _ s_ =_ _ _ 1_ `8Dk X\-OFDLF|D0CI`XOz@KAJXXh)3h +]=H>OT T   & 1h )F "  2hT0hA *`0H!X
hx/I bX` ,HxD,HxDih*HxDE2h *Thx9#H!XT  h`hH *`   9F8F%*h*hh%+h+Ѩhh%(FO%ٸ b \`8Dh] ] 7 \XK
J{DXh),S hP	IZXh0I[Xh pG pG a \JKzD{DhI"[X`pG  Va \
K{DH	JXh) S0h* 0  4a ,KJ{DXhpG` \KJ{DX#hh! h !` `  )-CFO `sFh#x F^F0FZ94HxD&F %^!F0V/I (yDN0F>*HxD&F (	4F!xE);bx0:	*7أx:+0;	+1x:(08	(+!y:)(ѴB8F1FL$2x"*ѣE" (!F8F8 ! F
IJFyD8n4F(FE\ *\ \ [ -GFRLFRKF|DTqPI"yD@x:(((KHxD %SF (t.1F`JF8FOh` )f@J.`Xh?HxD&o`0 (Xhh$T9N:JYh9H)aXh.&X1h )B5O2hY *  #;`0H!X0h
hFS (`-IbXhx+I"cX`*HihxD)HxD0h ("IcXhx9$KTXh`  Q (   P (F$.`I"T0``XH     _ 4\[ J[  `8DhZ  X\(p8 !LK|DX(hJ  K(`X`X`8^ 4-OFILFIK|DXhF  T0h1CMcYCMh}D`(`BIcXhAIyDh@H!Xh#?H!Xh +=HO!XE`^:J8NzD`YhiT0hh.5H #!X`3JXhFC7h / %1F PF&a(`P(F$|'J% PX(`o`5` pBй ,h"I FyD|ay09	)أy0;	+y0:	* z:(az );h4 ;h\` ] (\ ,  4 p Y KJ{DpFX
FI h\X
(#h +"h *  1F*F h (ܽp@p x\ `KJ{DpFX
FI h\X
(#h +"h *| 1F*F h (ܽp@p (\ `KJ{DpFX
FI h\X
(#h +"h *T 1F*F h (ܽp@\p [ `7Fn!K{D1)K{Df6xH %$PSP-hdSP-h\S0hU ( %4  +%h2+F5"@  $ > [ W FnMK"{D1*KK{Df PR2iO0D" "@5ieE!!$S h9IXXh8I[Xh` * %	U4 +%0i`E0h2+F(/X2 !T"p20h+F"X2FD" K8F"  X2D" 	 / -8F1hm獹yp40C$ #     M;4N$ Z W pn/M"}D1*-K{DfpSO|2H$  d U	h )<U	h )5|U	h ).уB#4   )% %$(IhXp@1h "`2C`4N\$2`p@$`	KX2h *p Y U p0KF0I{D0H-C^X/L7hYXS@7(h h h (D(h (OO h /gFL (   C h (OO G `h   HXhP`7hwPOSD;h   C    ` `(`0`QhCý`P` X 4\V F'Mh}D ,I $KXhFph !\ FtU0h )/н@Q\rhU0`
PHU0xDh``H#*X`H#*X`!H!9`*Xh F@W  4\ -ORF $wO EvI 	vJDyDzD3[pO 
W h8mIzXh q
z
d (8(( ( !	DZ  s Ѳ9	D  ! C #d01[ r (@@BKKH	DW  0EGIxX   Si 0+YhO2_  hxɱiW
B @A    @A  	 FO28 O22XF!Z6_q_1O
0[BAO
 & _ P_JCh2Xh`$0[ Q1S< = -#(F	 V 	 VS 0\ !8
FFM}D (40 bYCn#n$	J40#$X&0hD H"+X`8 T 48F hJxzDK|+
+!iqF
H %XDiyu(F
FS (F8@$n8@8 T KJ{DFXhLIS YXh
hh8I[Xhh(H! "xD ( Fx    8T ,4sP F?O@KDnXh>JX3h=H9X
hjb . &s4  
 *&2 +4 +i+.JzD.N~D
 Q)i))JzD*fA(N~D.f(n&$`"(F$ !H`W0h Fk&*i*(h*3FN:2!$`
+n[2!24 @$ S O P P P K!J{DFX`n" *3IyD!fnn2Z" R <fO K
Fp{DFLh|D(M !` cY`IeX+hh!4 +hh0FJ!X`(h "`p v BR \ n2 + )K{Df!" FU (4 $ d @ N FFFF4 B)hJ*`24  
"X3T# 22X2B-CFnTM2}D + )PK{D"4  r F 8f4~+9 ) & &4   r#?K{D;f F"=s4 h8F F@ " FOq2O2JUUUpF 0+ 8h (A2d (&3T#J&1T! o  0;h +" "C &2    )F (OO Fd`9hYH&3T#*XhBH(X #B BQ SN 'N 4\-OFnL2|D + (	OO 
OD`pWF35r>(FO
X` O 
r5	{35   q&
? /JOzD` (F9F"=sF 0x8FP   &=D 	 "		xHFM^F @.H#Xh * !5 @ @ @ao@n3x[pE x KXg@F>F	(F0 (  "2pHI#XyDHF `!PE "F  9IFT yJO xHTZF  #XhIhPjF  @
 0PR ) 5 hIB `@fH%&7  bX O2#X U'ph`yayh?hxѱZH:iT J @AWJ  zDUJ@A  zD    <O2MJT0Th)   (NHK  X (hF #`  0T hH +`Thx+ T`9HyhxD7HxD 0 +Thx90H!XT  h`hH +` 0"  &2U"BT d(FOq"&0F O M L sL L0Q  40J  `8DhJ  \X\pi7J+nzD&5I5I&2QX +42 + /4.B
++M}D-)M}Df.u+%M u+#MRYfR4@sfp2B
! " F7 F)FOr>s= -"4+8 F @ p L lpI I XLn2 + )IyDf! " F4  j>s FOr L 3d  !d @! H -OFnN2~D + ~HxD8f|H1X
hFr{MsYhPzIrXh540  %4q

 F8f9 ) F"=sRiH5X)h ) 4~ +`KXhF ) @"
@
 z Fd8F{OJXhh F P4 r@*{
yFO 	dPd-& T 
Ӳ;=H&T"01X` FFOQ" F*"S2A @-i-JXhAF IF(F-
 ----
 -8F!8F !8FCF
F8F !   I"sX`h FO湺 
 -?dO O	EFO 
 J H 4HxDPF F; +	+:+ F  xw(cxh+	  f(axo)Ѣxr* F
OND~D<FƔ  >Fƕ     K{DhO35 ((JzDR 0 + )JzDR   %O8;=%'  >XB XCXBѡh
HBB1[H  "h )F@ R   h	hx
x<+<*<*jO0pG pG-OF=IF=HyDX hF#Q hFh )Y	x )Vpj ! (T`2J`zDh#hU Fhph$(uj+K !2"{Dj 8F%O
 D<F̬ ̬ ̬  # a;` 1ih>F !GFƕ ;h   h #F F#PF  Bn%:G x  : O(̿ d$ F$K{D  K{DZiiH iapG FMFKL}D|DX h
hG(<!hU0hG(H&i-X0F-h)F
B6&a E l^ tFL|D!h1H8"xD$##`NO~DD4FŔ  =Fƕ    8`abr 0 "  :(
=(
@(>(  pG pG  pG pG  )
JHzDxD\ppG
)K9{DS! pG)HxDpG  pGRC j & _/ KJ{DXh 	HxDhQJzDh0K{Dh (F  pGD *  R 8L|D%h$ h%`8)FhD"hh !(FT#jhBhZhKUԡhB"hUE` 8  -ALK|DXh )&MJ\fYzD7hTP@F9F"+h9FH%X@F.`&JHX`"XhBX(`(hAQ,D  \X8MK}DXh ),JzDPiL|Diб!jKITXkXU  hhK hXh`i#aPYa8i  <c ,8C   X\-AFMFK}DXh ** AIjXh[H 0)X 
hG8$40 $DB۽	K{DhA C  dlL @ KJ{DXh )JzDh pG B   -G0$M%K}DXhQ#N$JYX>h#h^CHo Fo F| $ODD$ FJU 0F FQF8i 
9aB8a  JD8hU0 hGB4 BB۽ pB t  dlpFh+ ++`hdhBF
 Fn40F!x#84N~DB p  p? 8F h0$DFH\# ;!h h#%`8  KJ{DXh 0 pG @A 4KJ{DX$A 8KJ{DXh (HxD   A x[? KJ{DXh (ܽ@޿HxDr @ |Z? 8
F
KJ{DX
hLY##`5
IyDhh   `8@&8 @ < 8KJ{DXh )&J!LzDYhh`BF  @S  h@8hS0hGF F{  (`8@8f@  <dl-O
LFF|DFK{DhZh)HB(F@N~Dwjgh7hh h8T
0hP#H

"X	 hG6O 
VFBۅN~DhH
:1h"XhG?hBꀺ hhhB ݰ`yN*F~D1hhIF2hh 'tHT!X
h *<1hh
pOh0hYOhG1hGh`h +'R (dN~D7hh81i
2aT	0h7` /\Ht!X
h`T0hx` !WIbXhX#UHVNTp~D;`T   hh	  REsj1  8`JOY1hQBJHHX'Xh>hNCHo Fo FCOO DDD6hT0Fh8hF  hPB !J0  X
hG/JzDhA BؿADX`*IyDhS`E& h1h*hh hx0F ? L 0 dl  `H X<\ t   D ( 8 #F FF0[ F@"^  s M}D )5O1"m3.Zx
XIlX#h#FK.,,
,
,,

NYhB,x* M FJx .| < dtLK|DXh -%OD9hAJXhPC@9I(F"fXh2`w5`$	HT0`!X
` N<  \<KJ{DDXS hHXh(
I[XhA`pG,S0hXmmm  `pG; \	K	J{DXhRI[X`@ v; -OMFFb0K}DXhFIoX;h3?, #
 G:,H*Xh F>7F  ?8 /w 0&v!" " ,X4FD	!#HFz<, !#  < ,  &H(*XhO`U	0OhA`Y 'F`F(!# ( 
wFh
  /@
, ,ЫJB,\dEЧKB )@jNYhk	 InXZ6hG0
 JA,  0 "J,tўNYh5	! "F0F5YFFD0F!F#+YFZ  "  H! "0FPE  &$ 0
"  	*  6dr

vH)Xh3wJXhPFGFOPFYFPFD6	 E U
0hP,BѺ0	к^
!U0`O 
B% "0F! :SH*Xh5FPF|

0F-F82NH! "0FPEt,g,e ,ڇ4$(?$:O	Yh:=H+X FhGFU'
, F	,  6s		@9FX F;6)JXh P 	 )KB<
+E3 #OB3\(X w`
 g)Y*'"2; 9 \dlX 'Fh +?gXhTC`
h #P`HU 0`(XU  hh8B1`,U `h"	
$IX8FHL "K|DX`
_IcX !h8@P} 6 \ #O2C``Caaab`CbpGFi (!j"8O3aFIyDIyD#0l"P@IyD#%F"[x>*+*-*XxT"5 35 -  FxF~+@x  %
  TOF(T"Dl5B  -OFFFFFFF!h4h,&,̰,FO D7 ,	,,?ri*
 hYF#F  h" Fi  4zF8T"D \)љ ~*T<x~(PFE #sa(hx+)(FO̹,0 $D
UAF#~F(U"\El4BM 3 FOF %D&FF %	KXh)J FXhG  $ x (0F4 dl*-CF
FFt&*r *p*n**
*'*%** x/(8F)FC#м "\*)~) 0	..)0,\)02B#F $~^# "pO.# O\-(ٹ\\)2B  Th\	?)*).)	\)~)
	.(T3 T23B(#UF (9F*F"} F -	c* \  #	\\)!x~): *B
c$!"@ F`!"*"bU5 -`<$+= !aU FFHBFO xD]UFBi
F=* F@
"Ak	)F
j#`hb` k` FF )ebbU^ 	JzDSi:+>+=+Qk	`pGK{Dhhh  -O $FFFFFD68FAFGFرxFPF "Nlp\
FYF##*hB) 		焹 , O #(` I FyD)` F4,O 8h(((((
K"(h1h{D(h1h"Y_ K1  W-OFFOPF#YF (eА	q@z#D	SOR!FKF"H FF8F2VEA FH@L9F F 	!F  (/ *,	!F (F#(!*h+iP&6XF|FXF#"B! +hX(`  &Bx ) F"F g -OF "
`F  FFR=N!
"~DDF"j

BPD"F "F(F\YFT,;F/IsX)Fh #Q(F"T ((KF{D4T%@ F 
B'8F"rF  #JXh@J1 FXhGCO1DE  
 F5BH!g    	 0 z/ L d-OFhFPF''G G@G *D&+msi +HO#^5\*1si+ \* Zx\* \ (	XFBFYFri*0 +	FlB
 l: 

  *O F3h+G&+'GG!FCs*F!{F  !<xD(`   `1h)x(xD!F*F #08BBR   )@ԀOP" ( 0F#FF
\)ј 0 +@FAFBHFF )0FGB5ع0x.(HxDFpxDrx.*Ѱx (DD!
"F!v +		:!HF!F HF	 @qB
(`"`!0F! ,YIF!Z@ HF1FbF2HD!J"F+F  !S(1!h"  h)h!t'+hS)XFvPE
FnBXFnCB XF!@		O 	"hE(h!59x7F 0 +ј@F!)k) F)F2`!	)!F*FKF))ѱ"F S +F`)ьJzD
)ъIyD')	щIyD  !F*F
%)D  !F*F3F)5|O1F"F+FX HFH!"!>h0z(h˱!"6@8F:(`#`$h8H#H) J6h .FX0h!N ( T2h#(0F"F+F27*!F*F
}x*XOI"F+FX 1FF (K	!"F!O =@F
!!F @F   rhx0AF "N 	!"@HF!K
	)`"`$A	
@F#B! 	C	   7F 0 +F# #DQpBh!#tDZhh+F "F0FF3+ $N^ F F%@/ ! Y ,  I U :+ P  6   -AFhFdD$hh"F	`FбKX 3Fh(F *OqP!:F !F8`0` F!O0 Fo  ) -OFiNY~DѮLX
(F|D h!hF(Fb@CI jyD
h
O $V @k
 B`IHV7X @  :`Z`V0
,hp`(h( (	(яI  
OSV R    
R 
S  4BFFFFO
0DE,h,xI7rX9FhJ(F! 8@FpI,sXhmHkxDiHkxDO O 		+h+
hT+ O
P+@ FCx Fh_
  
*h* *	*9i
3Y!F
 YF
Y5 PF!F!5
YB2K"VOS 	Y  8  
 Y );*8 + !	DdE$JXh +~
 5`!h ""`			EOF@0
h#`ic
!ZO4 ! FZ)   @X\7' )' -OFO8FDFF+iC (O 
n
ѸK{Dh2`K{Dh9K{DhQ`K{Dh *ڲIyD
h
AO1`K{DhBۭHxDhO1`K{DhHѨHxD h"jR! O"AййПM!j}D O0a(h! !)`J %zD`i3\іM}D(h!  F QF  (IiJrE0QFW h=  FQF#j 𓀹 ္1!hi (F%*(#jh  j%@h  5-srIxX5 N"jh"3F%V %i )@fJ jX hW	p  '&"h *	*	P# ]2:  EP# ]JE3BB07 	 #
Lx"F #j:Fh!BIO0yD`E: % H 'F#jS) 		0ED8F!"?F(Ȑ 'İpDD"jPFR'iXB .PFIFYF7iBO 
 F@F!PO 
O 
O 
%PF\&  ~ t j @ N $ 4 
    ppn   -GFiF́F3FD( FnIyD` h ѽ ( ΀jHxD`hJ`hzDhh2* `
 !  F
FFF (Jэ"h
F ( 𧀺 EREUHX huLhD  "+F IFF FFHF!
 - .   &h 0*+(FB
?+6B(F!c:JX h )=(F6JhzD hSh B1N~Dhh1h2 (F1hF)Fhh ``B  I(yDhb`(F!#h+ хi .u.	 !  F
FFn(F  % " T * 6 إ ` J  fKgJ{DgH-OxDXhhB  $bObJDbKDbHzD{DxDm !hC!F8 ,@ZM}D-h/FV$` . ";FF2CCC3Bt uE;0 #DF[$	
 3Eȉ Oq
F	  `2aXa3JEODyF #
	6 3vE3O.Ky;{DF O		R$   S$ h J>zDH `R$H>B
:B$P$  A$pO4F4,WIyD
` ! L 2 +  (    0 * Ȣ FFPHxD@i(F2F4
O $DW$ )
H)xxD 0kx#(x@O4 F  J V -OFzKFzN{DF~DFh * vH1X ,9,6Ѹ 3oMpIrYyD
hhB&mI mMyD}DIhjhBC   !gH xDAhCjhKC`P (h`hZj`]HO5xD`[IyDQ$P -YKYJ{DzDS$h*FA# }8FQF $ X,PF 
  E:H
FBc *`hVB &  2F<KO{DB%jC9M}DU$ CK0E$0 "J`D "A$ 0MO 0K}D{DU$S$ 
h 8FF8F "T` @"J  zDR$0Y,K
B$h`Ѹ 
JHXxDh`
H5IxDyDhA$PBѺ   ) ¡ )  X) >) ^ p   x(   .( P 
( -OװTDFP4?|D$	O X@h!!Xh"F#($+$dzDUbY+h
@]F %Ua`  jYll	 ؿ #aJ#Xh	x  M &}D(h (yE``p(h	 $/h`/MJ}D/O bX`Y3hcMgY>h;`d8h:`K !/{D45]k-jhk/02 !#/`+`л?л@OY0h@J <P `h+(%=` N `~D0hXFIcXh
U %NI=`YyDKJO{DzD`D
 '&I "O`cX`BLBFаH
'X9h )#.
ЫJXhBѻ@	8T0h
`KB-rB)ЄIB&С\fE"XFEШ ~vEPB  sByJBТaB6 (..  #JT BmHB6 +ȿ&62 ЎB9hṁH#XhB. i. f. c. `!  !/
FF  /.@ rHsJT  0Y T  C 0  0J  Y ((se(cK{DZi=*9h	<#_N~DhhB]N=I~D1`[JzD`:*F:p=.@:THT  0Z  *
 FH  :XN0FzIK{DZhF  B1FD  t0F GAJ`  zD8`hBԿ`	() !6H9`1`#X`43MfY7h /*1H#Xh *A$a!`    ğ h , T j b Z X T tt\̜  n f 4R >  H
.
.СKB.G:h:I`Xx! h  (=h.КHxDhhB +
h<\+ѐJB
&%MgY9h)5h -@JXh -ьKp{Dhh+F	e (@OYh)FN_u 0B
:h*I`XhB@6 )T	+)s  ʲ2/2#  ʲ/!@/!"@#F~  dJ /zD_! !"@#hF{
 &"/>`1F 3F2F <(A6*A󂀙  (KK{Dh
 ^Ӳ  ²:!@/#h/7ӲS!"@/#RKAH!"@/#D kO+.% ׆MB<?h / <@/%! "+F(@/! "/+F(@&! "/+F	(@ 𮾵0  X   . HB IB ݃cܱOBF =(ܯJB ˃ܢ cB 2ܣ@rKMB xHB@ۅ$IB ܥOB   uMB 5LJB ܢlfE 
	ܜKB ReB@sHB  rOB 
oTnBa]_@𝅀JB t2B@. u*܉OB ڃ܈MB Ճ=B@MB Z5B@xT. R~OB .@lS. .@e. . ..@WA. ... l.@H ". }.@@0eKfMBЮBdODhhBN`_NaJX;hkB_M}D(h n `hDP -@ʀ  9h 	 )9IF.F_IF0hF FF3hEHFJOaDF   b (IF8hF9hEHFLB8HFFB;H"XHFhGD+.'	9 FF0hEd1ODF . (	9:hE
 "@K@E	9#K{Dhh	 F `F`A ۖ d  B lڕ  5h	 	 		hEh %U P -@ڄ. ؄  (@ӄ	 .@h /@0>+ 
    `)h9	&X  2`Mu%Y` % {e~Dsj8 %ub ! "xD	\'X=h 9` . ׁ  0`` + ʁtuY)h<VB0Z0iXuDh8Fhr` "`h`T2hB;h %]Tuh ( # uY-h -  fX2i *  " ! eX*hS+`
(F(F
&F(h$A=zD)`O5`4{DXi=(:$)jF: 𴀸
h -@ии@F !) (ц	H \	X$)X*+hX#(`@F)$)hJ*`FH b) -d,T0h (NиK4{DhFh	,T0h$	1XhGIcXh0	
PFGHxDhhH!Xhs (	:F  EHF)BFHF)BF\8 "ED1F(F*F)4@F1FJF)p (@28`OD8h (K{DhBԿ``R/x ( Ƃ %OMHD}DDhhJBT PzhiK(:iX T hhKCE*i 0(a[Hh*h#XPhG`hJ`JB	FET0h   \ +ѿM}Dh )=FDJh :X;hKI(hbX 
hG
 ` `0 +
yJByHBИIbXh , *=h - U %N %~D` h`/!WxH!Xh +Gh -Cѻ/л?= /ЂN+YhiBi,BFnH#XhizJX/hOyHxD hSF0F&F . B^E0F\&\T0hnHxDmHxD1Fo (Ѱ/!6 */.!! "@# ( C_M}D-h -  _[M}D(h! ( h !TTKT{DP&DSKD{DQJzD%PHxDh8NE
IB.HBJBѽB&R%P-%Q" @EZ"HB F=
S! B 𙀽B EEo5 EF -k2ۖz   8 d 4 dj 8     l   $       2   2  %"\! h ( 𾂡JBQBB 6 (>=FB 𐀓O &D8hH/xDhBiЏJ zDR#p q*h^B[8F8E?RIE\)иhYE\)	и'	hF\!6 62 )Ѹ 0F 0 +9FD &cH;F2FDxDaO "D8hU^N8F~D0h (?9FXOD8h``ou^ !3@T0hF *Fc (Bh )>HODhh)  1W1
&BH#XhB \ .?J %X=`0F<H#Xh!.p 0F8JX=h.qT0h -+Fhh	 (c .)H!X
hM'J0FX)hO1"#O&HYT h$I0FgX ;hG `"F5T  : P!
F.p  /5F  .>(F&  h    ڌ Ȍ  `h td %H&X7h />oh )~j/л?~c	AF![
h 7 Th ( ._G^J0FT KYF 0OIcH $:hS{hF  B  #	>`		&    ' p
hd-Xd !m!

xh  TihaT haT hhBݚao @#"
h2    
h3  "aI`Xh;
hm (#0:W# R:7
 :h2 &R%/NH "xDbٱ
;h  #_dbd`T0`"B# L>JzDh );Аh  
.0[F # [F"\:
/IgX8h-K{Dh 8`+M}D(h)H "*`&X1h	&H'OxD"Y`! !
0`9`#|T `I #"yDh>``̿!ȿ .! "W 804| < D  !  8F	KF	J{DXh(	:(	(F!"F8@ `-GFHFKxDLFFXhF|D/ha@QBQ! c "0Fcc ,FhF h /`0F n ҇ K{Dh ((
	JzDR 0 +I"SCyDQ  XpGO0pG Z  & F( hh@ shO0  Fh` ,O HxD`JzD`F Ć  QF8@i(Xk (- @ F (K"{DS$ hHxD  FK{Dh ((H 'xDP$`hn=7`w``	IO2K yD{DA$ C$P   r L 
 F ?K-O{DFh $O 
j ..
x *6K{DS& F!KR (ТF/I0LGF0HEFyD|DxDOR&	hy " Kv FPhO
	 !Ia``BQ&   I0c``?h=hEEK {DS& h+HO1xD@&K4PF 
  ȅ ƅ 0  F)ODL(H"(KxD{DP%S%`h-""H#K9X{DhhBѴBO1`O`D9hK {DFS%    <FBK!aC{DS%  #< CPS``IyDh$
J zDB%@    ք     l h  F hFFJ ` x-( ! F he h!`=`%L (F h, `x,*0% ! F `D )5`"hP `
8h0`%(F  -Oh#HO1\xD
Dh"HxD0,x0	+7-,5,,3ЎL|Ds1xA (١a* F( (&x p(FLAF(F~IyDF(FL pF!p !F
[ x + oJX mMXP(h(hW$gIyD(h	dIV$yD
Q$ .
rBhB
&
	XqC[` VF /VIxByD	hB	x"QC[p  ' 4rBJK	{DV!hB %
  (E[ BAۺB?
 ME ">"h[05IX h 	:BhF8h
:cF3 qDThZ hz^AME5h (ЙIHyDJxDKzDI{DyD	
HX    B4 0  P K A L  Z 6 ` D 	 T P pFx.#F<( 0;Ix<)8hn (6Ob!x"F nFn "lnn (̿O0  GF 0F!F@ F !!FN
! Fo  p  K{DLYhhx1
+ 0BF Fh OE 
pXp$pp  G"]pp"
pp? 1д?դ4&XE4   O'p_pp]p3F
\D(F  O%p]pbFp\p
,ٿ *Fp *Fp
`I #yD3TLBZX *JzDFn  F	K ${DhiV$ 9F 4Bo F -OFFFFK4\ %	D ,	,,,0FHE0FAFJF, 5[5` .,,7 p6HxD hhR    Fh FBF F) GFF(Fo0`o8Fnoo F7Fx
F*+ Ax1 )	)HxD
4 FQ(5HxD!F $ 
H!F,FxD x (	( F> Q ] c KJ{D-AFX$ F`!F "(FF0 "`1FF 0F  0F4
(hB F !< ,  =`,h 	Ki 	J{DXh/IyDIyD F@e
   pF hxM#`}D#,!F hM&hF0F0 `)i!`F M ""`}DqF0F -(Fp  [ Kx{DHXhBC         @   j  pFLx|DH!Xh)F0Fp0FF(FnB8 pH"Xh pJXh )  `-C"K#J{DXh .;!HxDh )6|D,	Y&@$h*hJh 0(h(F P h -@h9``hKk F
<h ,6R.K "{D`  | | | -AF@MF@K}DX0h (u!h )r
 2h *l9K{DhB8J!izDhB
6O OY8` hAhT iA0IU/JzDiS   -HxD<*HxD8F<%H&JxD!izD`
 `p3h +н!h	h!:h
*
 a3h ˹ hH)X
h *ݠhB3hch (
 J1h )н ,ѽ   :} {    | \{ K({DHXx h/IyDIyD
(
Jx Xh/
IyD	IyD F         pFLF8FH200`IL&H6yDL !0he)ee  &d *##ad ppb 8
FL|DQmCH"Xh!
H!X
hx#P!	l$T0hKYBYA"8@,8 CmhqFH	H !"F xDO1#,= F@  ! 0    
K{D	IyDJX#"h s. h"!pI hyD@e} < r Z -CF#LF#K|DXh /; H&X5h(Fr@1BsO(FIFO Y/h.PXT0h"H!Xh+`(hK+J/` 1hX `  AF=]c !!`  8 K-AFJ{DFFXh8F < 4 !9Tl .@I F2F+FyDAe. FIyDI2FyDv F- DIyDA	I*FyDAe > W P M E C pFF  pF!FF0F*FO (`]f (pppFOPIFOQ1o(
(F1FF x +,F ,F0F%F(Fp  -A](M(K
R}DF&LXO 0h`OQ1C+Yh%lcWlaH`lXl (1= (cld,dd (`h$k ,KH
S")X
`h2hB
]" -OFFFFF<DF3xQF ( ĀOQ1 (F$F(F (F)/"*U4F(U0FF@D0F ( 1FO 
,!;x.+ѹ  x.(_!!p x
4GJ[0h@EJa(F[0hGCO1dB F(    F  38x.(/
1x )0F3 (_":x.*) r F.!."+
@D(ĿXF9F. й (FgxF.+9FBx.":p0F)F@x;_+_"
p	;EYF %v  p(Fb dFLFJF|DX$hV- 0   9F2F@  -O	LKF|DFFX=h3 % 	P>F	 @ 3:h8  B
(FD\!RFP$	I0bX` +
+@5 X m0
k 	ipGKJ{DXht'tpG KJ{DX*hjI\XI hyDJ##  !F&F(P$ 4z  $B0h $ L0h(h,`  6K7J{D-CŰX5MhFC^Y5h0h (ARDDU "15-IFOrرA F!FOR #c F F F0` F53h +кJzDhY`	  !KOr{DC;hBtE0 T  s  -OF$K $$O{DDhimBaj +xFxDDtO 
X%@D imB hJ O1#a 0Xh)a(FmFXFUkh ,5R-ѽO{  r . r q  0   F@KF{D )x)>IXX@F9H)FxD@e7M}D+iS  (i "@$ 2IyD&(0JO0zD`,x ,2(FF(*I4FyD
hiP$0c&N(F~D7i>G$ 1iQ$ `4BH!xD (2hBc3`IyD`M7N}D~D	(iP$  e0Fb4+hBD@ t  d ۴ R "      KJ{DsXNh~DE
 F1F"Xx
,*x,(4 F)F"R(!x )    |@   KJ{D-AFX0hFP5h(FF F (FFر#x,+1h
xap(F!Fo  HO1*F#xD,@(F8F   F	HoO1 xD"F#,& F@ p"hFI(FyDF0 m `0Fp p @JzDBC B R   n LK|DXh	   (JXh (
IbXi +@B    XdK{D( 0 pGzn K{D, 0 pGfn K{D@ 0 pGRn K{DD 0 pG>n K{D 0 pG*n K{Dh(
 LIyD`K{DhP` po no \o K{DhB	iP! 0HxDpGHxDpG  pG   )KF{DF %@F`3F#xQ0 (	(o,*(F+
 *#	* K!{D`
  `b`  0x )	),\*##`&`w .m Pm JzDhB
K{Dh`iR! PHxDpGHxDP1 pGHxDpG 2 l  L  R8 -A$܀DF (d#! # ;0FRF0$M F#!s8 ! 4Fo FQ]OR( $5 JzDR @ ,]I(FyD8HX 0 FO  hh ,h )"iB -и )Fv (ѵi\0Bѯ0F F F  Dl % -AFKFJ{D
FXh	 !I  hF "AFJF$hF9FJ (m I	2FI$ $ F  -AFFFF !F0FdF (/K{DS$@" hhh )Рi` *F#3Fah"	/mABQ  :F * , $(FM F Fk -OF<N<KF~DXDD8h4  8`F,hZ+` h QRh )Ыh"iBѠi`ji+i !hahH 0 iC \ Xi"bi28`#hQFH3Xh*9hXFx,`hi`hFh ("Zq+h +a1h$	IrXh +    pF"N~D#h3  pjy h``eh(hx hB
%`h!`#h + F!XJXh+RH)hxDHxDc(hhI*y0yD
`hV0iy`	 # hc`p  i + j -OFx$FtTzDF}D-R  O 	`yD
h *X*Xh1+L4{Dh ( (<$zDh!+@,
(*XDhK(HFQF"( ),)HFYFRB` 0 +HxDh
*H xD,IkXh(>, Ё, ́JXh+?, Ɓ, ÁHIU   F
hXJhXJhU 0
hJzDhJXhn,  И p 	pl   ` p     #``m:` И 0ӹ6, ,P 'lnFplH7FxDHxD@F` ,F
6,D,	E,I,1,,0,@FL@F !LF8FbJ`XhY`U
 #   0U  0U h  $\hYPl%HU	0)X
h`# ^`J ,HzDxD`h `0U
 `@F
d	K,O 
{DhpS$QFhHF  )?~HxDh   !2.SQFF.i  .  XwSF  XwbkIPFJFyD#a.8PF  dK{DhIE!`FO	hY]K` !{D``ZJ	zD`h	`  `
 0`
```@Fw8FGOsD:hP8`h/hB- PU0`<OY0V 8h (hM/`4JX(h (	,,,;,<,f,.0F)O 	HF#h  &j j i   i f 6i   4g g *f e e f f Lf -GF
FFF0hPF %oQF 8FJFCF\F ( 4`(Fo  $G  
K7{D
Mh}D<`
 	IyD
hB	H"F+X8 h#F !F>d ~ d -CF[LCh|D +}YNhY7hFkHc{VJT0XhF:hB#RHSIL#XhcXhT0 BcFiB	шB!
Fb8hb;h + h ( "0hO aO0h !ag>H!X@F aAF baxha'h2JXh9h0`0:h03h,Ih  dX hji"`C3h  YlhB2Zd0h` (+Hh\&XT@2hB(i#hBK)iHh3h"hXhwBqY`kHc*i"``#hkHch2`h#` 6 4 -OFDMFDK}DXhFBAH*Xh	@IlX$h#hBh ,<I9HlXU #h3a"h @,6IlX$h @  U	0hF:`` "`z`D+IO)HkXq U   `  A`kc`   at @U h`{aXXFbH!  #F-X F ,`ca    0 `>a`  4-GF'OD
 FDF x**!HxD/  6! (%O 
F!F0I zXIFh "# ( %x- +	+ 	HxD 8   Z  Y 𵉰hM@=}D:FH)Xh*bh
$k&!F !F~LLU U0hhB     F ( ,	  40K1J{D-AFXF%h$63 !  
FF h !
FF  F  >!hB HxDz(FAF:F3F(#hkB c!h   !
FF#h$&2   FFFzw ($hPxd
HxDx 	H!FxD   C $ n   o  #-OFLFFD
 #p 0F 	4F%$#x.+*+,+{+};+ J
X hY  FX0hG(4
4UFLEhpF ( 0x*(
6	42x**ѦB^!$)p  $<	:*+F	 F (ݚ 	9*)"  "O O\	?)",)h.)*)n
{)O\)h})R~)c
(.#+U4Ap 6qx*)t*3xO.!)Ukpx (iq?( ,(	%(#( ({(}((U4\(Ѳx\*x{+)(U64KpH7 ~  8p*vx4VpF8*( 4Pp/))#4Kp;& !*|#Sp4 KX hjx0FXhG(+*U4/0x? 8p1x)U461x)?VEb$ (U4 "*UE
HxD	HxD(F %(F * |l  #K-OF"J{DFF
FX3hDlpDF d"KF Fc !
FF    ! +FBFFPF x ( 3hB   -O(FFKD	Y 1h
	K{Dh*
x- # %x -@ENO8O~DDV*`a0iB0hJ"5`:`	3iB0FQFJh .{*3}*;F+DE	,* +\).4ݜI F"yD.hugc]>+*.іJY
hm	.@y=(@
.яI F2FyD| LY`5h4 FB@ FF % FDE;h +@8iB:ziB7F F2Fxxh	     lK {D`F  O2!8`a "8FQFh+7h /x )n /MP(F(WH)FxD-  &F ' F1F=~aF8`  $a|` FAF#a[F!H|x` FX<8hT8FQ  Eyh ) &`/``7JzDh ;a.h . F (
-I `FY h` F	`,`"q  ,(DFD!x F # 
hB %K !" {Dx!'>FJ" > Z Z ? 
 Y nY +  JX K -OFG
8F6F ( !Q ( FFF+B *	*\(І(F$!8(F}F (F(F~! (рF FxF:I"yDPy .	.Ѡ&tF & F#xC FF (TO F "x(HxD'IO0'KoyD{D``x*))x*
 ' F 8F)F2F#F 7R/9Fl )F2F#F ( *	* F @F !t i ( 8X V F
FF F)F2Frth+8F-O,F3wD$:[@xx"h xkxx	
 .	4Dl( #)Щ[P,h$[@m! hd! hx! h  ;[
05hFQltf![0hHx0F
 ( @elLB  P"NEO	 \  $  $[ ` )1F[0` *.
c	Pn<	  $ )!3 #F 	  
F !   n o ,  0@[ h` `x*F( _`( #  zD"
I	`/ ('( pN O#о_ о@OоO  (zD(zD	l@$`<O 
' +; kA16
 *A0	q< 0 (P H@   $Cw
	ppppO7 k"0 c

 *A F	O7 (A	! OO !
F (s$` )ǂ' *Lh+G  kAc ) 0B	`lBIlExDVF  #& #zD&zDFc  
F 0  -N r @v h(rhK)l&zDh&zDd&zD F #  0!  "&{	1  "<&x' 0 ! 
ع 0B	alBlE
xD	 *Aj /  Qh!h9F/[ 0h*	 (A
 )ALe  [p & +#d49h)H8`	 /rx
[  hhF&!`"%   !
#5  9
 
  0  
F1  B`8)hA`$`*
x 0BblBlE !
F ()$hZ
` +`xDxD+ 0"&q  Dh1[`7h0x
+|xDd	5p$zD	y $ ``7h9m
"D'?%G
SGm?h'i )`W -Et[@!x )A8
 -A>lA (x. X. && .*WP" !
FF

|7 P -	7BNO~D  [	 hx,H%l&@=%L '|D%OO8*"&+'4 &4DD7FF-F 5F4F#!*O'PO 	 'MF'PM'O 	'FFO	F	S
 )@>
Ft :O O
` !2`Fr`E  : 0  "cmQ  +R  &:5h
x2O 	O98 /<!  +SmkzJ #!zD-;;; 
8"-jJzD0Bg  , (fbIyD (bVO[p9hIt]I[	0yDh(F (T
 *%	 (!SI[0hx (?$ )?r F ( χ;h#DJ[ hEIyDKF (  HFHF ) !
F (6HxD BOIhO 	x (\
 *X%8 #"S 0&   &   } u Y $ PD   } `! | e|  { z   ס Pm    " @v3d!FF 𰼸 @
%O79H !`=GP  aXD}x ! x !v O=F . FW2F	 +\Eb !(`D:B" #jF

) 3B4\
* " 3 #B (
"AO "TEZ[ h<V= 
FJ!F*FF -ȿ @C .Hݹ " +<
[  hhXB#H$*[hh*Q#
1 & p5F!
X w  s%F4B g#   % (@𾀹OMF    )@ (@xu*
 *@|	[ 0h * -x p (rѹOO0#x+gx/c-aУx+^C '( * ( -T+cx+O-ݢxJx9G $(@
 %( (A +( .7+gx/2B +( -( 0(-&+gx/x*#x) C '( )xOD F*F` " &' ' FO /? *? 'O ! -@  w	2*ع@TicBFٖ ;*0x_0BA7F ;#%  9F !ЧB|((7FXNo% 9FQW#2F F{|g<|,'2' M0B@M~wE 󚀤E" )	JaFbF
 𾀳?F2##XN@3E <Wd" )֫ !Fp
 𑀲?FP` ,7 .|Bg+?_gwF$ F,F,`F
F" (*!F
>г?F[ hJ8F
8FAF
'*/<"" +]I!F
B 7m"
F#<|B?DF(FZc4e[p;h +[   )U'FFb .Dݗ 0 +>8F1FB@V ѧB (ԿO O	W9F2F#O%" :#+!F:F#
08Fyr?=
r>pF7 & FFaBҸ ȺNF8?O+#!F"F *9x2
/ ( {+ * lB@i|
/@dmbEF BF^x;
/'+
*B
*_aEB̿   R (@HK!
'4+@O
'!x!
)
)!'p #pcZ (o!`H!`gBb4=h x
(S'pP *H"p*-
)tF#&+ 
	( !
F /?  !B '&&OBFб!`Q!`Kc4=!	#" O "\f	ttDDI[0h *?="! ( ! (  $, *   P+x)CB s  	< pFbI0` "F i  ,tH #O1 xD#)g	(
 ! _s!LL
K   \J[` 9)0hY`h *@Tv1  h hV 0hF * ^.( GA1F
1 Z>ZZH69J[0hx8H[    ! 0"&$`X&O[p )@ˀx ǀ  LpE_[P#IO(hyD|;hxr  +tIyDIyD@FOO&)I(hyD-
I(hyD"`h   E ƿ m um   ,3I(hyDOH @FIyD@D# ) @F|I#yD@D2I(hyDO1F (@F 48[  :K !  [
F  (hxEFI[ hKI[ h;I[ h !  (`i:+# (
K;h"&]bH[ [0\
hha ;h\  fD$ e  x$tG`]
 +2	 )/ѕN[`$h5h  +B#`!$   !: 	  0  
F2hB`P0hI 8  	    4khB րwH[ p;h +>ɬ]O7O HpJ#hzD; +>mL|DmL|DO  !HF
F (ifHxDeHxDeHO>HxD ?>69F &0#O 	OO8@[0h )?y $&k &  *?O 	MF\(@OOD>OOD<OOD:OOD8OOD6OOD4OOD2OODO7.OOD,OODO9ݹO6ع(ݫ. (
m O ? D M (!   X  g ? 3 '   j  ٺ   -OF
@
}N!FXF!F~D>(F@wK
 X=h  hlrIsMsXuYh (*hhB  O!	]+h  h#QF\SF F(hfI hvX(к  x6  "#FF([HlxDi+hB:h(``(h
9h,``F ((hB F1F (кN+hk B "co CF`ll(% ?HlxD ./0F2X*hB()hh(
 h !^ (0F!F] x (+hB FQF  F] F](h]>0F0F !+hhB:hPd9hKd;h 3 +h  ` B&B   
VF-   -GFM`}D@l %ch +Сn )JzDh +k	@À  * hX + )
D Bѥ 0l.m (@] )JXhk F]PH /ڬOD" F1FD / F]@pEФOD FH (BПODODODx"% 9FD  O2<I& O2yD5HU   0Y l # 
F   ! S 0 ( Ӏ FHxD& IyDF8xd(уI@FyD ( %xn* yxh) m+ ÀPPk0* %`l (kF oNcD '~DmN~DHF~N!F@F!F0F
AFJFF 9FO2^H)Xh[JzDhx2xBYI8FyD8F1F8F%N.SIkXh2QHU 8FQ93x3H 0FQ0HN'{YhNYH!Ozp[YBImX.`AK%{D`HF8F FM (? -?l   #
F*4 F#BB;xd+G-N '~DD,N'~DD*N'~DD)N'~DD Fl'F (K%(F ִ :   o   9 e x   6 d d 7 H l7 c  Ͷ  , I w  -CF9L9K|DXh )f'7JX3h 4N#Y`X2H!X
h * (/NYh .-H!X
h *T0h ()M#HcYhFJ`'J!%X&HzD)``!X
hFk ((F9FBF ((Fq P -k -H 0\Z  !X
`T0hJ.HxD,Y:  &0F  LP|xD5 e FFF $
0F9*f (>h+$B F-O]NK
R~D2F
FX;h`>zH1Xh   FF(FF0F (&  & F ((F (#BB#4BB .3 F@qB ٠6!F%lVO{&D6_AF2F6 ( F6 (@6)F (6!Fx6Bt(F F)F ( F-F F-1F2FF FAF !(FHBF?F O PFP0FYFO RO PF0FHFJ4PFYF:F&BDXF0FPF (xD /t%FDIF(F'HF$ F)F- @F)F F%O0
S3hhB9
]   ` մ մ  -OFFh Wh@Ѓk]AF	M7@DBۦk  	k 'n /; k (80BFF 1FRF#kHF

@F k*E*Y"cPHF	F!kE  

 c)
HF"cO 
b FXF
 BF*+"c YFN(XF	F XFBF("ll!!dcd
ѠlBdWDB k   h1F*F$B     -OI}TFFӝDL:FH*
[DZThǐ[ h[0 Ph/! ҙ  P %2x * |P	
F (@p0F_	[  Fغ!Y9D [p9`[ (֝hEכ)ԟ[P/(hF!8(hP! (	0F!F ( , D ,4FA0F8 ! D	[ 0h  Y4y "D[Pҟ4)h$H(`H QF uZ%pԝu 
!F"F +hF (E  <כS
' "F ԙhԝ5֚\e
!F"F +hF FX\V8h\8h\.
  
# "F !F+hF@
 " !F"FhZLPF/H2- (K Fhc`'` (~ -2к OmPFԙ< " "X < ֜ ,`0 +ԝ - /X'[h+!8O  (ExD? B߹ҘB Ғ Bt%hxDo'``LґNED`"QBQHp 'FLED@H@o * 	O sh(`"
`ל<'PF#FzD #`O P(OqO R& " #&#>#: (*pC OɁO ɇ-(@ЇͱxfW!EF[p8h5$O (@ŇllFD|D  (w@ ,r:)+g`c4[ h ,A([0h *A[ h#x +A9F2F8 ' "!e#hh` [pԜD[0hx ( vי )@r 9 ,-%[@ h'pԙ )уj+.@ (&#@BBXg>#BBdA17[`0h T5{D0h;:F0h@ ({70hHJF,-[ @`0hN (F,B
G-BD	# "!8F0hԟ&h&@!hPXg>#BB $+/X>XgBB # !t$[@'h8x	hd~D	 + 1 !
Fv (
(B ^F $%&F	4dOU0D
[ |Dh#Z " #9F##Z#O R &a=9FIF (&* 0   )F	 #RF((F4Fr%!F (O &#BB#>BB0FXg>6#&g &ig+H[0h)0F\F	Xb4z B84F"xP p#xa+!xa)
0FZT (0F & (F .j0F0FH0F[,-aB(FO1P	@	 0FN,t1F,O S ` F5xZv
hj
9FO R (` $L|DH[ @(F (L|Dv -ڛL|D:0F8 %%$$^0F1F,#
x -,F.F
b8F,  , O @F~E~J#M[p}D8h `_hM[hW! (_@B+F F[p9h9h+F (C6+   9F	 #5F8FW~YJ[ h /@Ć0F,, (0FdF	`{wz!B87F;xY9p:xa*8xa(@0F, (0F&&h6x .Ѹ  ־0LLD|DKLF|D &O %	   𘆹  %.F@,B@|!H[ hW!= (@rI	IF,#
 mOZ![@ h)F. PҘB(FҐC֚ *I
 *[d  0D+ / GZ   TX  iZ Ҫ   3X  
 8  / ,(h . !PFh +@𾀠
|m4h
$	HV  	 (>0*[p<hT(Z([ yD h х}  !ҙ ( !ґ ! )[p<h%xw F (@o	 $@ExD  ƅ #! ڽ ,Z+)GZx&#ZBB:r>#BB2Ѹ \I|D9XW![0h  (ѹ 
$
,vBOQ
@	-rBI	Ԛ8FAI|D	 Y '	[@H|DBH|D8FZ (0F9F8FZ (0F^0F9F8ZҚ"rҒB ]8FoXԛ3@AA )F@A! OR
Or8F (T
tu=l)J X  V -3kԜ ((F( #$%pSpp
#O`##M  % -v	A Pwtfv %FҐtPF`
`dP #0 "PFAFB 
(  
()
   3B
 F)ر0 #H2Px (ҚEtE  E<) Ґ$= 
! F
"  F)3B F ( 30 #
"+3B F (  Zhӹ0ҘE{ $ +Ҝ ,tv ( $Ҕ $Ҕp[0hd	 $XF|DҐ"0F9F,;8FZp (`,Ba-B,-  [ `8FIF,P0PF E  Ґ|D
)	 8FIF,8FJBҘ[0h)%[  hxD:F#Ґ8F8Fҟ /@ܹɱOp%}p%OqzDFhc%F4E[@
ҝ%FHE|DDEҝ|D .  /Fh8 [ X !0F
FZOS@A!
N
| (t"ۇO QuFwF	@F(t@ (8FIFOrk ( v8 #ғ8F*X0FO ( SZן[ hS` /@PFt[ pl8hyD셛`$@A8hzD"L8hyD;D8hyD|" ך!08hyD:hn )yDyDF^""*F (F W )ȹԝUw =h)IyDIyD	w =h)IyDIyD(F, !8h
F !֟бԚ¹QPF!PF[PF[	M+![p8h (hPFԛ< ""X<M[p:hx (S +P)W(    #bFޱ HxD:Z ()9F0F0Ft8:@@8FA & HxD OR
Or8FH ( W,-8F
,48FEI[P/h /B .E0F (EТHxDX6 $O	%FLD|D.F$p %LOD	|DdLD|DO 	OMF
OO 	HFFEF&F	;hY9`
OO 	OF5FOFMF  h 0FB8F	 ,lй HFF FtNPF[0h;YI[p:hFF F on # T  XFYFB 8hIFBF8h!F8h FҜO FVQH1FxDPH1FxD& (:2*HPp P`@F (@QF#htZԝ-
  
Fל,
& ԙ n֟ /f *c
  
F#hb` y P $ 0 Ч   ) u =  | Dz x   P   S R L K #        	  â 
!  
F+hZH (O  "hE!`!@Fǚ;hB 🀛  (~"LL0`[ $JH`xD[0hFHFxDn(~خCJ[  hx )~&>L|D1F ([; '>F $

מ
 *?FF '
 +?BQ !ґ, ! #" %O9F A  .L|D!FFF >:SB? !z
I}8[ ~  % K{Dh  `aIyDh "`
apG   8Fh`hhh#h F+`8@pFhhyQQ`]-y-hF"``0FpFp-AFFFF -H&h&a`h+"HxDA۾hX @FAFB0"i !`Bۦh0*F9F3s iE%a-FO! Fh09F*F#aZhh1`h`` ߣ (K)J{D-GFX8h$I F[XhGF & %O
F+ ,,], ̹, $cBٲ! !,`B" X"  @@FiFO25`B8hB  FFh $(4-h$ -  `!m (3hF )h +p  KJ{D0XF "#h  !K{Dd(FO2!hB4
0  G /I0KyD𵉰/OXDh;hFx (E+L
Y.hF(Zx*'L
Y.\ &&J %<zDh(Zx**Иx "PB H3Z[x#hFeET
M.}D*`JzD`H	XF
hGx5FIHyDxD
``  ;hB	ȑ   dh   r t 	K
J{DXh`I	JyDa`zD@	`Z` `bpGܐ p Z L|D!h9HObxD##` D FH!FxD>0H!FxD@6( 0 -AF3O
F3KDX i"a9hhs*`+h2+!h*F2 bhh2 *F2 `hD i!hB2ADhah"i ADR`iBݩBea  `aiBcEaaiBݪBa aI  "j{XQ!!b`P 8F hh(F ( `8p!NM~D}D0FuF0F F
JzDhB@ ##TX(U h)8#\+ ""T Fp L Z  H !xDI  K{Dh8IyD
h 8  pG  pG  K{Dh 8  pGz K{D`pG2 	K{DhgLN|D~D F5F7`(h `   x K{DhLO|DD F=Fs>`(h `  ( F  K{Dhr` .(OXDTD=FDtF>`(heF `L `|DpF)h!`1FFP8F!FO2 F@׾     J8zDhX`LM|D}D F)h	M!`}DL|D F*h"`8\  ,   KF{Dh(HO2xDɼpG < >K-G{DF=O
FhD (oT4#x  ^( -ۣB;,0*^*<B@FRx ,J -ۈBE%KXh 	F1,,x:0,^,HF!xI0,H"IxDyDh
PF!FHHHDDD -ڑ  "B "" *ѽ B d|  \ Z X KF{DhHxDpGx  KF{DhHxDpG\  FHO2xD  FH
FFxD	  FHxD[  D
x۱+
AxAx2! F
(
((     FHxD ( pF;L|D);I;HyDxD
h:K:H{DxDh9K`{Dh *`7HxD`"(F4H"4IxDyD1F+A.HxDFv-#*IT eXh0ȅ   T%M`%IbY`eX+`T@#`|FfwF0	+H1FxDGH)FLxD|D F`F ( pFp j   .        |<l ` Z 8KI{DyDh` (/J0MzD}D`(F!F8`O,o,HO2IxDyD	F ( F_L|D F (	K {D`8 t ` p  >   K "{D`pG  -OFFFLeKDX jFQ!bPFF]hB:hQF`"Fg8i r	XX J  F ! F (F F0Fjh6 9h`*F6QF "F zh :i+9hDR
 2l8K8h{DBA>`*F~h6 hq\h{h:i.
 RR,IxhyDB'6 `9i 8a#  #F#O	 "_h	{hTqF !2UByiBxi{aiB4!iaX `i
a  v X  0LK|DX
h
F	RB! #

  0TT0hG
 # <IHbX!Xh
hI  "yD \	h	+hB0ć tX K{DXJX
jB pGHXh (pG2 KJ{DXXi 8  pG KJ{DXXipG ;pG8LK|DJXzDh
FBHI XyD
>8hhD`E	$IT yD8@
8@*ʆ d
  2  $%NK~DIHXyDH4X *h"`V@T. ;h  BD# Y9` X l 8@	(FLK|DX `(F"h !``  8 j`C`O !aaaaa#b b8  8c$$
MK}DI8XDmXh+h#`F F8 8  F KF J{DX4F#h+`AHBPzb2=F.h&`LO2IO |DNyD#h~Dh5F"`b0b 
N~D+h5F#`D )h!`XeR N N   pFLCj|DSH5F$X)h!`L0j|DJj `zDL`|D F)hD!`L|D Fu+hm#`p@X޾   0 .  FLK "H|D{D`!X
h@* h 08FL|DX 8  !
K  {D`8KX	hJXh
lHxDhQ`B8H!Xh +8  ,  -C$L%K|DX*hF"#OD;h]=` "G FDk0F  0HF"`BH!XhJXhYJLXT0hS! Y8 "HT0`!XhZ
`  d Z XJKzD{D`HJXzDh`pG ΂   -AFFF
FO( xP(#-ax)Ѣx`*a*FJ#x+YB X +p#[Bڲ" "6bp4= #0F#p  -OFhFYJFDF{Z h+d/VV0QK@(Z@%hEE
8 "8Z `Z
`KK %KHKIFZ@%`O4Z  Z0 0ZhCLZhDhaA` ) S" v	 U" hK`r (Fh(O8D4p%O hQ" h ,)+KZh +&HZ  h , "!FX(ѝ (V!XF:FKFF0FXFHF8C0F)FFO @F+hB-(  \pFM}D"  (KXfh hQ#j
" (2! a``ih#i` aH #caa*Xa`p L|DX0KXh   4 h"F;i+l+c+n+cxo+v+x+s+o+A"F )aF!! !!
!A!OQ !`F  -GFFx| $|DD$	&M}D#SiB
Qa(FA @Sh  OEh(`X.`H. Fo
*h *4ѽ: 8 
 7FLA
FF|DsKX+FFh ">~ F!"+!!:i!5l!0"c!+A  AB ! n!`o!AAEv!	x!s! !  K-G{DP %hFDFF Х4FZ%@	`i Рh9FH$h ,5    f  𵅰
F#F " W@n!F(F(F$v!
DTD(Fx!D(Fs!DT(Fo!D(Fi!D(Fl!D (Fc!D!F2F8FF F  -AFF	
 +V)WбT !`T1! !(OuD8`	&K {D%KA {D`#J$OzDD`&.`D!N~D F1F"b  F9F"Z 
 FAF"T I F"yDL I F"yDB Fl` *ѹ *Ѷ      ` a K 4 ) -OFF #WH&WIXLxDXOyD`|D`D+`Dx_//
//8D
HFYF "C0P. XF H$ 47/O D 03 19HxDh&8JzDR(p! {iBxh!X~FFHF " C P.dF*hB$0 #dFF?h /T.6.	,
" (` (  '<F(h!Fi-h	.
V{(h9Fo`58F<VNE`       r r 	 2 -OFR#:N~DXC0F (gFa(axIx:(p`xhpx4p5S.I/OVY  Fh"+H3X FhGG)JFXh FG F)"JXh FG  x)FdF  (IrXhG ])FU  FhJLV0hG ]G?_E ! FhG  $ x ((pHFz d lB$+Ax)сxX)<	+	Ax)сxQ)L00<2x +<  -OFh̀DF '[F0F /Q-K-JX  A XP+hX(` F'LX
h2  "HX	0X 0F   !
F  S 0  F(hA)` -h5 8F0F/ @FF@F%8F 8y 4X-ONFFK~D
FIXhsXi  4JzDh,Ѹ СO	Yh />IF(FF6XEIF(FO 
+FO
O 
O'+IF(FsF x0IpXhHFGD HFE7E	-@F'FO	;; @ /E  'EZFBExeIdMpX}D-h ki
*iBEhhYFBFz ( -h -X ,ۀ,р"  B$`B! !,!bB# X#"0O&,	ܤ ^) O   Fhr@H,ȿt
 3X FhGD
@ L
@ " ,!(F V+!FhrF h*# F  "iD FDi a F!   ! h *F	) "8 !F  hB,gFDx  dlH -OFZ:}DXh *nX6h . %#h
X ` * &X`J&p,Y cil
*X`hj !hh~DDD
@DPU0h.  "`XF$Fh 
"+X`i )@U a Q! ڼ&fihWhFh " hq#jbiRU0h&& &   h!p hV) !X` d"i *@r	h!h+Xh *@ڀi~D6h . ӀxUh0 ƀcikdU h . fh]@L0hXU0h"h@h@!BѺ
 𡀺 @ 𚀷 o 4A 	  F8 &
{D7F2FS(uxPEn04gЛ"hOh i`i (Y0sEESkXhx(X(
XhGBȿO  E iE(ѐE&`hh\(0x(!Xx(ћxR+Ѹ p{[(bEFEFFOF
  2	OFoF  &7FF(jXhx (g /fjXhb hFh"i 
	E		E	 	0 +9fiEr	* !HF\)XphxD8 ! "F'[2h PPPgkX`U YhK`C
HEHvE NE	(VEZ h!'Xh aiA&Xhȱahh\pFFV (Ѹ?	D&i`iBO8W"hhPV\  𺃢ih *aiU0Կ "" )`U0`!``hh|6\{D ` !0( !iE fiEh h
PD}%@FiX .Կ && !` 0
0*XhEe5YhcH8  O 0eYh%X1ha{i	  O10` " #9i$  !h`xhFh !@F`NF 'cyh 1FPFBF ( #o:h2$ ! ! PFF "#F PF WF0F /?-VF %X3h	 |  ܂!i)@؂#hh\*@҂jXh )@˂LU h )@Âbi *@TjXh@U hY?@U h ) 0!"#j; (@pU	0h" EQ!3h i| *  U /Y8Uh (O " 	O 	OFF ] (	(JFFqFhD9H*X`FhG? 7	
hiBKXHF?h9FQo9FgHFF9 '?pw 
O
0gYhGpW WFh /1h  *	PU0hFGIkXh8HDG(1h0X HU1h |0|I!ibi@ a12B<`U0h ) (?5HJ)XXhh Áh&&OYhU
 hԻ ЪOYh;JXhHHo'i /@󅀻 ~ТH+Xh *|h +FK@.sEFh!h?z(F h !h#i WFH:  '0h|0|	"i
*̿
	O 		"hh	 		 iE6h	|FOFh%tH.X  h#i&hP0T(F'hh#iQF7FtF_FO 	OFhh h
`DQ к LNYh:KNYh?
?QNYh *PJX2hZFO2#j|F  /hhNH .2ѻ   ȿ!%bh  6 &a&ih!h 0 +lu x$(~ ΅  n ,0 dhl4 X\t |8<@ tH DH .T .?F+IhXh +,*JXh'.&IhXh%JXhر#i##JXh   Es"iRIhXh3p"U0`EhC`!iB?osO8   & 8U0h * 0F 8@tDK{DhB  ̹pG Zt K	J{DX#hX `!hJ"` 0  i L|D0KXi )̿   h -OFDMDKF}DX h(AH(X\w@JXh +r>NYR F	0 `8FORU
`1hr7I0hyD H* `9FU #h +LY!`IG (Eй BO 
)O*NU	Y)H 0 Y9h.X 3hUP` )h  "G  T !RX*  * +` 8`2`h L\l ,H-OMK}DIXh	lX&hF>U0h
{HxDhaInXоJO1`zDh0`-K $4`{DF`2hJHJ)Xhc`XhL` 3hFKJXJhK`XhK`,+OU
Y   P     F  0Y  / 0`/ /  $dBwHBn3ܠntEoܮ@|dEn	ܬ sBkqB8$lJB^pB5$iKBy	ܣ~tELqB2$scJBAbHcKBFjaIBDܡ |dEYܬrBVв2B.$XYHB"N0BR.WKBVIB4rBF/SIB~tEЮ rB/$8+$6-$4*$2
$00$.1$,3$*4$(6$&7$$9$"4h, #@L3`,  >L0`4h, #<L3`,  :L0`9L9L9L9L 9LEIjXh (5,3BOY]/.=NOY
M$
hFP` òU+
 F Q(Ѹ4B/H J  +X0FhGF #	 F 0hBL fg 0xr h n \dhS@ڹ  pMNLBаBРBp F9L:K|DXhQ8JXh0hisFP&
 2IbXh +8FF8F  6.hh!F  6y.ݩiH!HT xDH"XHxDh  `  ]hx;IHbXxDh\F@0F !0FqH#Xh )(j-@T c 8> ]  t -OeFuF~D #DDFD(O2F F1F"D8 !F  F9F"68 #F FIF	"(0	 %F$ F"yD@ oF F"yD0"F F"yD8 F X hB!#F* \*^x33xB * 	*F   x#
! ?" F FVF
zTyD:X  "#V04{D (} F2(F
 Ӂ ) ׁ ݁TX`6h .7 FO:X	`3hF FG)F" 	P	HF?FѨBFO:3hHFG	DE*ݺ?QEڋ%mh]hFcE@z6	NE #\ ) n	) k3
BwH !X 0`
 N "	~D; @̀D	 PCjiB
 џ!(F&	SpFF+i`FBF:F!F (xѻѻB
 (p	 )mѻBkxeni ha>
(F8B VXHxDHxDaF&
_
ja\F ( ؀hu`hqN+wiwjaw`aHX h+b&iiHF^Ajh xYE	+h 0P, *`@,P F P%h +?Q

	jJFFzDh )?.	*$ .uaHX h +| .k&	
k .c XHxD
8yWHxD
3W .U$ F (S&x.PH"X 
` Fh``lh` Fh[hh(F.a6N)wjaw(ahwX h)b*6K{Dh.``A  /JzDR.)`B.P &&& &k &
 .􄮻􊮊0F Ds Cs s b r r ur 02r  dl @ .p Qp . go so P , -GF^OFxFD +@*@YIyD^CD)F (   (K|x,(.CYx)xx+F FBx**Єx#\B :L0 ,  )g Fn)F
,.(FQF (Eڽ(FIF. ,	,",\,)JXh\  ^)|,
.BE ,.<,t W0h)FiP (I F{X)Fh[B (yP00DDx )_ 
,Ѧ\ nm l l -OKFO {D6HIFJxDKyDzD{D к @hW*p|i xhQ(Hx(ъxR* l (љK{Dyi )c)B
)0)mu)5)h-)G9)S)`UAaE:ܱ_ )TNABPBLAB, ZB+PB@D $&F $&F $Oo&FH $ $ $o&8 $&F $o&Ox9 $o&Os4 $v&(o$x&%o$s&" $o&Ov&  $Oc&F $Oi&F $Ol&FHxD
7 $&FF
 $&FOnLFFF|D DFIyD 7ѹhx˱KFzh 
FP*
*O	O	/ *3+ѹ (F (  (Ft (zI(FyD ((Fh (O	 ѹiɹXF)FR0h ( )Fx (fI(FyDv (zB
`H)FxDd (ڶ8@\H)FxDX (ګi	)FN (ڠCRH)FxDB (ڕJHR  9)F4 (چ  )F
(Fyh "8z  )F (s 0  )FK(Fh"(d (_(F (ZF&F $ -?h /

lO 
c #I(FyD (6(F (0I(FyD (((FC  bK{D`	 [  @ l l l !k j k j yj dj Xj i i i }& -O+L6*KO |D)HXxDDhD`; 	.41 P'[&P$ 'Flhh)є_a
ԍ ! 
T 44!x )7/-h -6 &`W h  2 -OFFFF0F %(%K{D F$HxD -<\F2R%@.ci)!i йB#яB:F
F`h 
x+
Cx+уx+0Bؿ1FH
 ` !`h	$h ,5 F   v  pG  -AFh +D~܃h+Bi B u h!KC0@!pchBhfhzr    &v 8\ЖB.giB9FhF"=FoF
 !F8h hBA!(F!a>gi (F !>"WIX0BW Yha YYh	@	 < 7 `i`E5ch "ea&``"a   U  !F" ca `Ci0BFpG-OF 	M }D`hNYBF[`FE2(%FFFFF %A	`h -,F[3 BEPE(PE -%Fv	 F8T 
FiFFF)`hBb`khC (hH`n` F/`@K {DDh<D`S0K`@ |S hY`pGhQ`׾x;e!#/ *FpG  -AFFF!FM}DF0F:FaChF
JXB0F"F;FAIhXIyD
7  S d 8FFF!FF(F8@5  FL
F'J|DKXX h!FV!F
  IyDQ' !FJeH!FxDD!F(F@" !F
HxD6 @(1 R T d md 	K
J{D
HxDX4!F
 !F @(0R ] 8FLI|DyD F F)F
 8@[ a ']L]K|D]M^NX}D]O $(F~D	hDZI(FyD1F(FY(F4,SI(FyDQHxD"PHxDOHxDNHxDMHxDLHxDKHxDJHxDIHxDHHxDGHxDFHxDEHxDDHxDCHxDBHxDAHxD~@HxDz?HxDv>HxDr=HxDn<HxDj;HxDf:HxDb9HxD^8HxDZ7HxDV6HxDR5HxDN4HxDJ3HxDF2HxDB1HxD>0HxD:/HxD6.HxD2  @'7 Q T c  c c c c c c d d =d \d ud d d d d d "e Ue ae |e e e e e 
f (f Uf f f f f f 0g ig g g h 1h pFliFF F  
B FiF` (CYBQ ppFhFF\p h(DF"hS#`!hh\ (0Fp  -OOFFD  ,@1lllDDD 0        DD y`JzDhEH PxDdK{D`HxDhvJzDhSHxDh1,$`HxD`L|D"hK{Dh`IyDhK "{D`F $}IyDh|JzD`{I  {JyDzD`hyJzD`xK{Dh wM}D*hZ (њqIrJ}XzDh+hiBRhiBHkHxDhJ   !
FF'-h5D  dJzDh
aKbI{DyDh
hCnB_IyD
hB P )F*F+FZMZK}DZJ{D(hzDAn``XM6}D(h FSK{DhF	PHxDhOM}D+hCFLIyD
hUKJ  `(FzDh(FGM}D+h3  !F !)`BH %BJxDBI`yDX
``	h(FFFS<HxD`:H;KxD{D8 !h`:^KBS !I .O  p     "  * Z _  <     ~      * F        Z x \   6     p  r -AFMH"MKxDMM{Dh}D`KJzDhDJHxDhH !A (QDLDHU .Y)X4F3hO6B Fihg{n3	l #  
F~f#hhsF *hh +/K{Dhah	$kl   #
F F (&J !zDFh
F <  , (	K; {Dh  !
FFJXh+I  yD`J !zDh8AK{Dh	A@FA'k  4 K 0 W   v P p V  -GFF4F x#  F$5O  NoD~D =`M }D0` F )`     F   F -OFJ
F:|DO6Xh3' !"
P  "
,01`T0`<@@l@bX`  '	OP0j]Y` ($  F yD&DDDX/IFFF"QFH	!XXF1 '6B8F)F'1#-Ww')T@F !n&~(h[O2F 1F9 )hO20xA+r( R(   (d"yD
`0xA+e( E(   qxA*v)V)g) G) 63xA)g+ G+ ##0F"yD됹8 (6{DzDh`Br#X`0F"yDt 60FyD눹`X 	IFxD
 IF '0F"yDR령"yDJ 8&{D8&{D `$|"|O 	xhyDxD?~D5	
  `+." )@p	. M(hO32Ax908
{D
CA<6m-.@N (@Jc0 OغN c+غE 5غC ) 򢁺A   zк-@H .غF@L dM@݁+V 
غR E򟀺O@́X 𔀺Z 𡁺b@n غg غe ۀ yiu债l m@t ,غp r s@v IPw Hy@zf~D1h)&yD`i* YF{& *zD`\0FyDZP0FyDPF|fP |6!~D{D0``V
 jdxD`F'/X0F"yD
 ( &H0F"yD  ( 80F"yD(,T0`
$0F"yD

0F"yD( ǿ )   YF#`TxD-e "~D1h!!&3h " .e"~De"~D!XxDC	 %XxD1. '*#|%X "!##/XF "&O1XF "&G12@5&<{D$yDh`fXBr_$e"~DZ 5{Dh ( ?e"~DN* YFy.h#*pr\ * ++VBs0
"XFcX`(h] )  !FxD$)(hd "~D  ( 
"(h "FFxD$md"~D2`g` . 	. "
*h6A<O1L  YFG ~ѺS(hUiO;0 غT ̀غ-dкSW ހc@!t غs@hu 𱀺w@D	  !S.^  -(F>FDDPF0F 'IRFHFyD
"`,C
ihB/hxc)@	/  !
mh
 {@P\hh	`OYh<HTpxD79F9F(h9F  p9FhhH9FxD &IhhyDȢZT
0`zIHgXxD79F9FhhH9FxD & (gCjh+cih.`mh]khxx4 '
"hhA}:F;FFHxD$0F
h /ѺwhhѕIyDIyD` (3TH'XH7xD9FV9FhhRH9FxDN &J*O2( YF!* (hF &1IF"F>F / P] >"EF7F /?V -8F0FhkI:FyD~/ QFO2RPFh +iF  &`I`OyDDh:hE
`
,&&ZK{DhF9 (@̀WO D8`, ( Ā- /  -@MPHaYxD1I XC oa pa ra  A x . M` A` .` d8 3` \ R 
    x    ? W  j ] ] ] \iD t] XQ  , " X Y 4   v   \  [ " !Z Z Z =Z <Z V Z Y Y (  Y fY H   b  X )	XxD1" -?PR> T0h!O`!TIh)	X}D+h#xD,IxDh'.S@T1ĈX7(8ĨX{DT h(hX`  cY`@x$'yDxD`` !8FO_(|0zD `T
P"+h 'xotaxDp8yD`{D`
47lOET(  P8zD{D``1D !xD
F<T '48FyD0(8FyD8xN)@ ' p !8F
F(  9FxD!'zDh )@
FxD!xD	(!xD
F!
FxDF`xDF(
FxDT0h )UxDI8w7Y{Dh` "DxDIFP( "IFxDG(t "IFxD>(!HF
F}XxD84Lw"XDhDw !D@ "@D9`xDQF( !PF
FX$7{Dh)'xD`7 "{D`  (!xD'zDhKF0F!2F3Fc0F& /&  gX8`7 (F7 v"6 &D{DyD8h``&zD`*+4f~D7h&DD0FD ` ` w9F0F:F  p) 0FW     X&X`T'X>hF&LyD
hbHT0 x'<&yD` RO0&zDh#(xDh 
fR\~D1h	RR&zDh+v2 D8`@&1&21yD1`#'X>h11O(222/XT0hh9WBWYS1V1xDh5&{D`}yDhBh0F  |e|u~D|Dx1hD8hDJp2`CyD;`&@7f2F* ,eY h*DT
0h
h *S0FX.hh (K(`+h$%hzDNh` .4O pF0F1F2F  ( h1  "  fX9 (d !~DF
F0h(hO3 ! 0&0F &T$zDh?2/ X3XdYh)`*htdhD~D8`x3hxDY1`hW`lt/  !O2Dn>h6X4*h{DhhaPt ! D
FF>hDt D, 84:h{DV>`hH`(h03!Y # #'yD>FxDD|(hJ!6Y #p2+	H"Xhh +k  Xh (d !WndT hhhBIl )CH !*h@xD``T 0B *F  O*hFF
  K{Dh1  "  XT ((h!Y0 # [F  AB"`6 #SK{Dh71B2/ XPNI~D2hP0`NcX !~DhW2h1P0`)/(h !b"Xh  +ֱ̂ '3FDJ@A pzDTp8h	8h  0  /=ݧH"xD`&)hi+ؿaJo NzDI~DyD` &`
4@F
4< @F6B-h !KJ{DizD``!aK{DhJzD`H %xD`( ?IKJyD{D
``XhK"{D`HxDh:   !
FFJzDhH  FI3  cXhB .)h
\ *?4/5{W Z hW B \`I X  N  V  h  V \V V |V  |V V zV uV tV kV d( h& ( V V U q(   G( U  * t U F  hH    ^ `   4    H            H       b R \ $  P v  h      yP  J ;P   T f 2   B Hx  f .K/I{D-O %XX,F*F-g_O BGV0F>h	Eѻ aE#0B5;hB'GBG sw4ˇ xh7 H3 -CF M h}D(KX
hhBHxDCL,Y!hFFF ' F ?B   p8U0h(I FjXhG  $ x (0F~2 M dl-AFMh}D )3xH~+,XJx/*HOR!hxD'h8Fh1b82 h@r8@AUP(h%)h h" #F hA1 BM -GF<M?FF}DF
8K{Dh !`e15HxDG
3HxDGN0KX
hF *P0h0LAF (FD 03'HxD	! 
 	*  ,!Jph!IUBF yD3h    
<ϱ0F!FGVF &PU0h>F9F F
 F$GQaL1  L L  L L pFhFkhZFF
F(m`h`p,L,K|DXh )O*JXh (J)IbXSi +E'MgY;h|u   Ȍ J'd*9h|'' s H!X
h !m``d&g%;hp5vd-Ȇ  0 x8=L|Du'+`+;H$X#haEsP!hrs G"+1H#Xhs>[+-H#Xhc6]+)H#Xhc.<+>+#H"Xh| H"Xh|Ɍ I`Xhp!Rv!p&z+&H%X(h ŲMJO;XhɃ  
LA;|D `h !` 8  8 B/  KJ{DXS0	hh1mj0. KJ{DXh!iBiB Rr|    pG . F:)O*KDX0h	  2h7XBڋB1hG*'ths
2h7XB FIhzXhmB0 - O0- "h!hF= (2h 2 O0 F- 0LK|DX
hJX$h'z  BHB
p0F0F0  0 - -C
OFFDF~- '-`-LW0|Dh qɄ "- t^- t.- t[- d]- d{-}-nN"oL;YY F8h` #0Ȇ 
 }-O1FFH9hdL1|D (+)^N\HY?X F9h1Ɇ !)-O0F`F@:hTL2|D   F:h 2  <->-/ѵ<`!h1 UBЬ !!ldB !!p!BttV*c9K {D 
 $o D\`FUa,4 MA 0(	*D	*= F)IyDh F+ #M}Dh ,mDhB#\@Ա а!CF
F(

IO4{X h2 
LO0|DL  |D `  $ F, 
 x D Ҽ  ~ l    K
FI{DF[X!Fh #@¾N*  #  -A&K DhH{D * $) *o DJ  XF cFP -+)8hB`GhB ڨE PB8hBFhpBEEЬ %%PB %%  23*ѽ* -AFNAl~D ),
F ('X $D)F:F4$,KXh)Fp:F|6  &Bh ,(FAu v)  
K{DFHh ,
H
JXh
hBHX
y     ) lptK0{DhK "FL #|DFF2Q3*` 2 #*@I4yD 51
`"1|!140 > . > 
JzD
LhYhmBѽ@ҺF !"@G D( -GTMh}D#x + $QHOQO # &)X' 
h!F rBYF;ha  !F #62.MFBO &DDDh1	!F *h.h̿ A mZ!F \
 CFh@F67$.*h&" !F # r+h[ !Fb  #*h] !F # b+h^ !Fr  #*h. !F # r+h< !Fr  #*h> !F # r "O0 !FF( : 8 6 -OhdLi*x|DBbKX hOxxFDpT O
=a
0O 
O
	. && A)>ox-/ѯx Чa)u0	*ABk5 FF  	OT0h@1A K hEJ<(2"(.( (9@[(>(3,](^(.IbXh|a/pT0h'JXha!H!X
hdIbXh e<T0h`a
H!X
hhaJ)FXOP5(x (Z&   -O $HHHMxD ~GK}DDUNFb 
1 +Y!* | b!0h~!pD*F (E
 	 08F,J1h1JUB # ">"  " PFYF  	"H3h)X!hmBIkXh  !8F	c8FRP14 F'BHU  0 +  'BHxDO@ $ @ ? @H-OxD?M>K}D $XDFU! *L
 u 0[5I 0hXhBTL/I0OjXUh  wB ">"  ";21hOYDOh hQF  	0h! 8F (hU	0h	@FYRP4F9h$BKU   (Ц
HxDOp ? # ? > -OBTD}D.Y4hm + itYi /@ԤFo KD

yF`B
ێB ZE &`#Bp pB\|B	ۏB ZEL#BLl		E

o KaBqB	ۏB ΁ZE+Bq7WEaB
ێB o IJE '#BqaB
ێB o LbE '#Bq|q/a^BۏB o KZE &|a 'o I  +ЏB|qaB	ێB wJE#Ba7_E`aBێB bo HBE`#B`qhaBێB Po LbEh#BhqU`6hqB
ۏB 8o HBE '+BqqB
ۏB %o LbE '+BqU pFBۏB 
o KZE   p#B pHHUpD Upo H?hGUP-hEP /hB@&gFFaBaB	ێB ƀBE#Bq

E j'CЩFwBwB	ۏB BE#Bw		EBۏB BEbBbkBۏB}BEѨcBcB(olB
ۏBmBE(ؿ'BodiB
ۏB]BE(ؿ' &aaBah -T  GD + + +9; +PQ +ab +q + + + +Ю + + +AB +hi +|| +щ +ќ +ѯ	 l" ̳  -OML}D,Y&hm * U@i ,@x FD 
Z;`B~hB
 +J;pFE~`O
hB\
pBE
 +L
`Ew`4,  	O 
DOhB\`BwhB +LOEw`4$,&hqBAB
 + q_BB $ AqBAB
 + q_BB $ A '  F2

`B
fhB
 +FEf`74hdB`qBdaB
 + `q_BB & dahqBlaB
 + hq_BB & laUp>hFABAB
 + q_BB $ AqBAB
 + q_BB $ AONY7hB7FthB +   dE $t`|`UP ,h %jO	E	rTEE
 +2`Eu`D7  'gB'h2hB>ѡF '#'B"KjgkB`B + fEP`7		iB `BЦiBiB	 +afEaah ,	R   -CFFFFO 	qvɆ 		547E78F $47B8h+0rȂ pG pG(Կ  pGp pGKJ{D xX\pG  hJFIzD xRX\([x +  pG  h ) x 0 pG  pG   )LF|Dxs)	I`X\(
Rx *    FF  h pG	KBl	J{DX	haEx*I x[X\pG pG l |h pG
K){D	JBlX	haEx*I x[X\pG pG 8 |h pG	KBl	J{DX	haE
*I 
[X\pG pG  |h pG0KB{D
JXh    pG pG  xpGJIzDxRX\)@x #FpG hFx+(F ;K{DZ]*pKx,k*?x.]*	? )?Cx/L*? ??C y4*? ???e4 Iy*? ???u?D6 a -AFh
F('hK {D`.8`#h#`B8Fd@E(	yx)ѿ'`*h.`O0] 	 #pFF
mvhBk FcEۓBXB	ihB h	h Fp  pG $N'F~D(FY 4<,O4 F (

 pHp
"Jp pGp pG0hB $9es[ mhB\P3BYB 0  0  
KB{DJBlXJ	hXaEh	\) hS0\\pG pG 4 |h(ݰ o۰?۰ ۰o  pG pG pG pG pG(p pG oڃ	 ?@;:p JppG? ?  ;8:p pJppG ڂ3:
p ? 8;:pKp ppGoOc;pC2;Kp ? 8:;qp ppG?:
pB;:Kpp3 ? 8;:Hqp 
qpG8B
KF
F{DJX\)(x 8 Fj$B   8  8  hF (K"{D 0@hI F"yD舱I F"yD`
I	" FyD 8     / / / -OLK|DX  ѲH"!X   I"T0 bX`GI@F"yD~0I@F	"yDx0MNaY %
`Y0I@F"yDjX@F!N%H~Dg"X{h
ЖO&`Y%%
нhE0T	
``%  #T
 `T `OKY`X%2h! !OY7h`I@FyD>H}I@FyD88 " "yIT0xH`xJyKTTwIxJTTTuKT `XXXsKXosM}D PrM}D PqM}D PpM}D PoM}D PnM}D PmM}D`lHxD`lIyD`kJzD`$iMTh}D #HfM}D PeM}D PdM}D PcM}D PbM}D PaM}D P`M}D``HxD`_IyD`_JzD^M}D P]M}D P\M}D P[M}D PZM}D PYM}D PXM}D`XHxD`WIyD`WJzDZ]("" "ZT3D  =0hpKM}D(F F@IJO1 #(FzDEI@ bX !hDJ zDFp  AJX % >  hx|3/ +/ `/  |dC m. lt   	  9  m    _  y {C?=S%O- , S  K!J{DXh 	   (HF"xZIXXh *I[Xh ( I FyDI F"yDI F"yDXI F"yD (    p `;    8K@<8J{DXhbE0ܲiVBcB3BN#  B%A ,EB"EAYE	B<E  pG
 pG!8(3D  pG²P ò+)6 ò3+&١:*$&
 pG pG pG pGɲ))  pG pG pG pG pG pG pG pG pG pG |a -C %NFF,F~D
H1X@F
hG0V0h-@FG$ LE;] +(F
 tlFM	K}DXh hGJ&hXhF0FG0 `8F
 l-C NFK %~DXhT  ?FHV 
4V0S% YH5-$ B FJ
 xFs	IyD\#)3BpGFpG pG FN
K~DXh hGJX+h%hF(FH1X(F
hG+8F#` `lK{D\pG{ JzDx\+ЋBF"\,2B #Fm FHOaxD] ( F 0
F +,O
FDF 3Yx (вBF"xY\B :)*SBѴB F/b(   -C
F.x9-)А0 +'0F)F(F:B0W7 (8FAF}@EF8F@LDB $,F $ FpFx.ܐ0 +(F(F.(W. (
0Fg80F$4F $ Fp-GFFF9FF0F6(Fܖ 0 +$ۼB"1W0 )F>б %H%5-09$B2W0 *
F' ( % F  H% PF-CFF{F0F(Fܖ 0 +qWp )jF $G$4,p-prW *
VF ( $ F  G$ HF  FHH!xD= 8   I 8(MF}D HOq"FxD&йKXh
xd*( 8p
HOa"FxD ( 8 8 8	 G  8F 0 +F(F2(T, Fܽ8@޸8@ 8 8 )8F x#YK{D]B(FF(F(T, Fܽ8@8@ 8 8 ! (F ($	(" ( LA! "O|DP@ ohBBYBAhB     KF{DL xY$\, (! (	(, (  IYX	h1(Qx@	HXh8F]@   z h|`KJ{DXh  IObyD
< J(FzDIPXhգa ( ;+	H3Xh10IObyD˸FpG  h) FBѰHBHA   J(FzDIPXhգA ( 3+	H3Xh10IObyDFpG r pX2 F  -OFdXKFDFY h ,  hF7F2 -F (tB(FdF F`(Ѐ | (rok4(FN!F ` FB!F	]K<Q= d -K x (Gx +Bx ( *2/
8] (1JPFYP+hG(Fܚ  9]BF    
0YFBFPF*F`dB  O0 x (и  `l-O$N~DF#FX %!K"H@;{DFxD,F 3HxD*IV  -   48F&F 0	9+
* "   $\E	IrXhO5EE ! ! . BK
F{D'JBgXhB,*I[X *)xF
B x(4 F$B     F |hKJ{DpFXF hhG!hF0h*F<0hB2`#h]%`p x l8
FKFL{DY$h4    )& 0 +F #x9,
В JzDB  83B
FJXhG88: ` pF JFxzD  pMUY-h
FO, # :,	
xIyDZEp3BF8RP-h -Kx +(R ]+ p  ` |hpFKhM +}D	h "iIfhjXhG0``p" KJI{DX[X hh1ݿ  
KB{DF
JX
h2I[XahGCO0$ F dp
N~DhF $H41X(F
hG-+x + F Fp  l-OF% $DDhDD;+8Ax)рxX(<)  /xQ+",4
<N #J~DsUY h0FG(40F? p 05 +4;] +- V     Е lKJ{D0X"hR  	HXS0hhPG(Կ    FPL|DF0FPKFXh9JX6h -!TT0h`IbXhS' B\0h
I`XhR(T0hQ' 6r]=(F Z d|`	I"yDFh4I F"yD^ 4 F   ZI-AyDFt8 (@UHxD FJ0F ( B<- 
_+A) 3۲<2? +<(FBI"yDFH
0F1FB F:I F"yD
P0F1FB - p2I F"yDx!z-)0F1FB	 -""r(I F"yD@0F1FB` F (۬B+ F!FB(F" F GD|h ,6O &DW6O )
(F8#\CD\ Al(F      _ x  -AENEK~DX(h/F
  FFx?HxDpFxz<HxDhFx;9HxD`F  Z x (.! F3IvXFH4B%0I0"yD+y2hAx-+L_,
&I FyDP̍<0 l1h "- _+-+
 mxУA- 3۲
02\1*
8hFrD #8<
;hBH     Q + -AF% #FF( F` )Ex +B .@0x (=F1F (78FF0F )JBJA  \!"!`i#"%%`b`: C  `%h( (FF"   -OFFF"FF h6HxDOF 0X(  &jjt `F)	?@89pYp32 "FB  p / 9`#sCXF ( FO 	3	 (ئ(Ш(Ф("(ظ(
(о(Op@a@}
Op
Op@SOpB )F		-E۩pF ( XIFO yD FF F(ђ   FLFE`umF 0+FAѰ8ܴ(9ܦ(6Ш(4Ф(41(/0۠ (,)$ܰ@a`E@SpE"BB@}B"
""	""""OrF e Fȹ*+ ( F`#F+p}(5?!ip5	9DEd !)p-=`  $ F ͮ   #  -GINIK~DX"hF2    DIuX+hCL2YhHV(FY?I*FsXh %mF *>(F!F "F (HF1 FF)( FIPE `iC!a2=d pF0F<ni6a0x ,TD  T  Vi
hhB\a 0 3 	(F !
F   ` -A
FIFF "yD FHjFX1FFر CE ("8` `0F!F    Fd  J xh
iBa aiha `iiKa{DiPh !`pG hhR,   hhBpG 3hh@hC$  `hJhZ`AhKC`F@i F@pF  FFhPpCF`a  F,F a FpFhhh #P% K`
`Q`h@%ahQJb` -P#hL^)F zF (A h)F 10F(h U"0hGW\MG<F.0]`+`G<]`h + +``2#hB٠hB h`B S#`"!-AF F6F (-hi{iB۟hݸ`a
hF`w@r@h 1F`@F`5@F1F`fp)Fa   -OFhF +D Ph *P  (DhLGEXFAFGFF 5F	 "hAF@E h$IyDF#HxD* O	 -)F1FhIiF3BHZ 0 HxD#!`  *" (wLBȿL2hB  !` -h ( 7 *  8K9J{DpFXFh	 $diiB3L3HYxDhh/ $$ $h )ڔS h`*I[XhBhB9 k (h ( ,liڲZ$i ,(F!F4 ((F!F*!F  NiB`i{PpC F`a Fpa )_s Fp  F-MF}D (TЀh (
 ((KXh h%M i}D
i)hP"h+`0F (h`)h (Ѡj,Bv %
hS% h8F (50hB8rB h`h F@  ~ -AFNDh~Dth ++ۉH%1X
`F)F8F "5:hB # 0h (H0X hO1`P h`h ""`b` KP"{DPh`f -AFFFFhF +WiB'8(F1FxF $eh`hi`a3XPpC$ (hh``a&h`h`8Fl4(F1FQF (и D2X`HDJH"@`@@"# #w "Ta)i`,ah"ala a
Kii{DBPahi !  `!F-P"`i !rC Fv -CF@2FFB zDBv @FF (C .lLBh(F9F*F0(F9FF ([ "`"wahBQP	1FhB
X h%IyDF%HxD	hai:FBD hIyDFHxD'(F!Fd@F!F" !B#w(i`,ah!a
la aiiKP{Daih !@F`!F Fz $ F    x T -AFFFFز
HxD&'A"T"!w Уh +(F!FAӼo 8FFHi\  !F$(F!Fh + FMHJH"8h``8  -OF9O
F9KO DhX (2h TB_4`$!@
-  *%ۙ !, )L2Bں  @FIFF OU)O0h(  !TjLW0hxrIyD 8  ( $0h @3` , F  \ Cih *Awi +#T2pG K!J{D-A 'Xh3uh -/Шh (0Fh *#li ز_p
!F(F/!F@F'S Fdli(F!F% ($i ,6k .8F  wFF8F&F`H2!FXH8Fh' F
W0F !F h
4``  pF!`F
Fr
 hiF (HO3`xDY hF AOr`h (	 h
&`h
#   ```!TԠh!BJ(F!h! hQp  "Fh + T  -AFOpFFODF ( -`E`O0`)F2Fh + F $
n %Or`  )F%aeaO?TRa>,Orb p)F2hrOSB8!0P2
iFHoLP1BPh ( #@2 q" (PJ^@@" !O0HD
#L"PI;	H:Xh B	(a
!a F  FH h8ch+
U`h !a` `h3H (Կ   pGFpGxxC!Bx xB#@ pGFHFROaqFl t@3@Bݔ.`vH*Fn0>qf "l @pFiCiBh Fph*"h
ai`Jba#iX aO5(Fp-CF OD	IyDFAF (0п0F 1F,FO%		 KXh)J FXhG  $ x (@F)F"	F(F
 F0F
 F F   Ý dl-GFiFFhGt
<%.h0F"YYqF (%@i=RE
 "0FFHxDG0< h	`  # 	0F " ,ڽ -OFjJFFzD^CjB܀jBۀIRXh{-jBYb-@jBYbbh1FXF &j&b F- ̀- @ʀ'i{hEܰhPE7hF#a;: +ڳ"XF9FF ( -		-	9riFaN EѢh !&b" $(b`GtEKHxDl F (eh PO0`S #) @DPE`p 9Ih /XF9F<B
 FOsFFBO PB
#hE$H
xD"H9FxD-hB-hJO`XF1FrF #d "XF1FF- F!- FO1 &&a &O  GF aE0F 
 
 F
 8FF`CiFaB "PiCa``9Y`8 !"FXCiGt !YP":	J-OF7KF7I  {D[XhFR2I@F"yD(` (P$ F-I@F "yD	FE$  (C,/h8FF0F
1F *ȿ8F(0F
$ $ `!@F "IyDFE$ ȱcU#PF(F8 (ȿ1(Fؿ1F0F
4 F   FV h	 P	  +K-AF*J{D]FFX
Q,1#hF`iF  $0FiF $` ##8FORS 
Q1#ORF0FS/(
Q1-$ 0   
R,2h 0Bп
 ]b -OF5FF{DhBĿJ` L 	`h"	PF F YF!F ( 𵂥hbj%` O6Pjhh
B
1B"hEj;"bA FbF ( jfj
EiO6"hP `ihBM)io`whKE+a `% .(D[i# H 
30P;@)B Baa9JFshrhB Aq`hCC`9 .
Z hCi# @E !# #F" 4F0jjYbSb .bF O 
 ' hWi
i 
	ɹzhh  z``	xa@ Bza8JF BX  )7кhyh`8z`AD *h0 0 0r # 	 2D3RE

j (   
 P	X`@ E]`@DJF

 . #
  "=ahA`= .hB`" # %j Fb)F"" i 9hO	R"hUF ( 
EiGt)B
ЎHxD "AFFਈpEI~vES(01ni7
H	?h`A`6
``Y`Q6Q #AF" + ƀ Fx"ih hP`#iY ( Fi)F0F		 hZF`AF#h` #` %`5Fj* O  OqkXBj 
k`O`X`bE 	#
s``qa3a
7	?`B`Q #3hSEO 
hSF3hDBAF0	9h
 #
" #"! #	   
HxD !	!a  .z + 8 -GFCNCK
F~DIlXhF'lhl#   :F@z3l~))Oaq8Fl(!F08Fil@y2(!\@y2FPDBm	 RFm09F(8FJFhl, (!t

`ttt
!u
`uuu(Fjl ##tcttt#ucuuu0000	H2X Fh' 0Bо( -AFFhF .70F !"F (/Di#xb+`x0($c("C( HxD F)FMihhil
C#B"0F9F" #A    pK !pJ{D0MXF#h40(" (	fHxDcHxDcHxD@_HxDu !(F
F&Or*vVI
 "yDDSHxDm b*ѝ00+yc+wC+uLHxD^LHxDGAIHxD?FHxDFHxD5 2CHxD.-r0c>HxD=HxD7b,9HxD,, !2HxDJB41BJ LE(HxD'HxD(Fv$HxD
 #hBHxD )Ј'
m0 3210U          j  h  j       v  r  {  {  q  V  x      -G #FoJDbCa`aaZ j	6jOZ0h"!  !  FJF ( O	h` ! JFF (  VHxDDi0"PHA,b#bp1QJzDOIh"#pU# 3Z0hPs
sbs s(n (U" "(F#
A F)F(! (!D C k 1F
 v cvCFvJFv8FF8F8FF (/Єh,%HxDAi#8F"F` #LLaa`1F'8F !"FhFh*HxD@ihBhKa`QCa "A`T F8F!:  h` "8F1FF 3210     F@hi+hidhak !a`"cpFMK}DXhnk
J&!Xh8 !1F ! F$k ,ѽp@t 0	K
J{DXh FOu F!$k ,   !]  KJ{DXhh pG P FKFF{D	  JX3hXhoFFb ( F
F (0hiB hi0hha#aA`  . -OFlHxD@Ӏ!hB πiM}D+hB;+`)"eJ !X cIFyDhC`gh1F F":F ( Ei`jj6#h	X `Si# Lh  i" C?_8FGt
%i ##b=FOOh" V8FCF (lAi
RE
9HxDz "8F1FF]KXJ*8F1F=#ZE	F01Z1F8F" #j%aQ F!ihj h`#iY!a) -&h		h4 0Bh6@NEkhh (ij`B`*ahA`    m O [ -OFi / Ch + 𑀁h@GK{Dh *@!"`9Fd(AH9FxD
njjDi Ci# J h1i! @ HFbh B6ۯjƹ AhC`bhh
``IF`ZFh@`0Eڢh7 
2Ph3BB(hBjhR ! C (F9FJF[F(F9F "HFMH "xD` !ak N j -AFKFJF{DFX#hXh hiIFF (@$h hB`hX "  F)F:F3F    Fh
F*NFB~D)L|D#hC(H""`xD
%!hH `$L%I4YyD h h@h-% (0СiBJXh F F)F"vPL|D"h *  `H)FxDajCij hAi" a! L`cDahA`i	HxD 6 j   i  _ K	I{D	J\XX "#h hi"hi@ h KJI{DX[X hhi "p6 KJ{DFX "!hh_ah@ KFJ{DX "hO  3K4J{D-GFXFEh 
+h+ S-HxDLO  XAF" F(F!F(F(8hP" FAF"رjO(F!hE" ! F(F! ""a ( & F8h@
9` 
.
HxDG-HxDG   O R -OF6N6KF~DO O	Xh[ih	-kW
h *(F(F !"d(FO@ %hhlhliF0@B	 FBB !(FKILrX 3Y lhT ((F /O
O 
O (OO  FL
> /M ( - LPK	J{DpFX
F h~ h1F*Fp@   8K{D%JXhFhBBhK{Dh	BJzD`!F"p+h@iYjd" `h@ Aa`hB `8 f f KJ{DX+hXh $.IyDh%!F" (+hAi_jjzB @i (
  BJabh@`K{D`	4B(hhB F j :f e KJ{DpX+hXhHIyDh!F"l +h "Ai^jHi (  @HahA `42jB(hhBK  {D`p  e he 5K6J{D-O]XF
Qh>`FF 1F@r %a@xF5d-'H1FxDU  6!F@r (
ܾh*- h+  FI
VFvF FrXD@EPF!F!FOR#Q
Q
h;hBн
]l | -O]FDK
Q1[@"h
`@
QFs(F F0HxD@
 M[`0h03hE<F (@yF
!FG	'x./`x蹹 HxD
HxD
HxD
$QF"F GF #X F ѹI"yDI"yDE FI"yDE F'' F9FcP,E FQFPF"F FkF (Х AF "nF@FR#yFR( zE/;F# '3B2!8F L 
xѹ ЄIPF"yDF|0 E( #@F:wH[  hKh )=QhhOR("zhS( H`h
hQ A FEO E۾B[ܙU<H S, 
MIyD
`K (F"x.*
axA FHxDEHxDEHxD FBBHxDع#60FUQ( 
 UP( 12KO {DE/HxDKO  P( E (U!J &zD	
x ( Fq
S30FhhBн1
] z  r n 
 2 .  ]  ` t   F >  -Oǰܴ #"D[ P*`[p<hfhl8 #[  D|D F.(F "`yDfxDHp<A (a;+ F
"7 ! F
FFF@T!FOxD( "! FF
 0xD  F% %O,F.F  B F F ! " ,58hE @\MF ( %Ea`aab`
v)FFDFhBں HQFxDZO %p`Oc)FP2"WFxkIYHIFxD hIFHxDx"I yDr숹QOQ hHOQxDlHOQxD]  b(
ј00+ Ãc+ C+ HxD,JBJ!@BIY hIFHIFxD<HIFxD7 #D l0IF/HxD!0+дHxD!hC PEF< FDP2SEIY hIFYHxDIFU# !"h` ( !@P@@LPuF ( iiRFhiJ[  OSO
 !h  aH xD38hl  OR8h  "# ( Ђ8h @rFPF]	9hOS   Il-pH xD
 D 'F8h@l0 h,0@&B&IE_HxDvJ  	_>lpF 8BF, *F " F)FF =hhhl` !o C" F
F
 
 	0!B 	9H !RF#xDPF!8h9h %5a`uaFHl/IC/H XFyD%xDUF	s% F)FFN FF (N)@HxD#"! U  ~ ,     d q           :  i  n , 	4B@FyD*FGt aExѺ 鱹SF	3hcEz#IB@FyD " ZI@F#	yD
B_Eʀ	
h +	 *@h	
[0hi	 ;PlBF. ( D

0F (A  L 0	
hO 
hSiFaBB(HxD!h/	I@FS "yD#FjP  BмI@F "#yD
P"FCJCO O   "	 , B
ЫI@F#
yDrFOSO 
	Si# A) BY ID "#R


 Eۼ  "# > F3iYh1a
X"h 

[0h
 *?
);hOH BhB08hh*O;h! x )(PF#F
 FHFvFHF5H/dJ[hXnBZf	

(E;hh@E
k@c
  `hPhWHxD+?THT[ DHF K 0,OHxD  P  LHxDHFncHHxDGHxD
FHxD	DHxDCHxD BICJ[0[ h`( 8O O "`L% F)FF' F !W.h0F "8h!+';h !	  lF:h !  Fl	@F#QI "FyD@#	W#IBL>G 3210        D    8 l   X\[ p
FF9+x.+F"hx 0Fp@kBF%x  " p0F%pFx!F"F(F(F!F"p@F Fp-AF2KF2J]{DF
PX F;h`& F1F,E
)F FF $0!I "yD&(F1F7(1F)FV-7   "x.*ex8 #  #JzDF (!FuF(F
Q Fh9hBн
]4 { 7 -O]F5FDLZP(h h0,F `Fp59FG F{D!DJF;F`FT%T5TzD{D	xD
  @FvF @FFRx0w+@D p(@ )@' *@1.!F}(Fh(FF(@Fx.+@AF(F.!bFx%P@F	x.,x#0epp J   !@F
F
!@FOr $T     !XF
F !XFOr $ 5" !(F0 $`F(0(#BB&@#BB $$`FhXFz(F^@FrXF
0@Fp (@F(> ((xw+@@F (џuPp-@zɹx"@F"pE%p (#@F7
\DJF;FIF0Z0h )@U ( Q' *@L<0@F@F
F	Z0hk 7ABOr $0DȲD F]F F @FD J]Z@OR!hPG$h!FFD T$(F ,@JA!Z@ h
/F (@逖MZP+h +;F JFH- AFO2=. !FO27I#FZL  BF   "F  0- O2Y !F.  xa8ò+D  *uxL
Z@D%hj"`@FXF@FFmHxDL XFL (0eHxD<

baHxD5
B^HxD]HxD\HxD[HxDZHxD~L WHxDvVHxDr@FTHxDkSJLZ Z0hQH`#hZ"`Z  #`"!P( 	
#6!@F	!)`AJ#+`!Z `@F (+	3:JZ h)"Z0`p  a)xa(	1HxD@F
O B{ 
ppxQpx8F
%@FhBм&C
m P v u 2 > |PxO D4    n  ( C g    X\8Y F-NEh~D -UЫh +R (N(IrXj +I'OYhGx9F F "Fȱ )(FW(F F!(F((F F !W)hɹM"HsY`5X F)h+`X  FTF l
HxD *hP(` !0 D	 KJ{DXh'26FpG` 	K
J{DXh!n Fs$k , 8 -AFDh:Kh{D *9JX
h *h7I[Xj *cU`4HO8XhG*x *10F9F"h-FK (!hQ(F
h (ۼx h)Fx h
`h%`
 FQ0F!%(F
 %hC! " hN (`HxD! _qԠh!LHxD      FCh +'\i#h fi(F)n )U" "#s^)FC0FCs @!w!hh@$i ,0 FChz *pG  	K	J{DXhPIyD	h)b 0    L 8KJ{DX%h
 % ((F&#0F (I"hyD(F8 V % 8LK|DXh	 %JX(
K%h{DhB!h ) F (I"hyDh(F8 L  -A  L"KF|DX ;h9HxD7FPH &9h*FT H  08J9hLX 0T@O|:hR pW"h2@dE 9Z8  Oi pFL!J|D8NX)`TPY*h1h8P
J+hX(`XhB2h  (`Q1`p X-GFLFK"|DMFX
`cYhGJTF(H%X 0(hYBH"X> QhJ0F9FX +h"h8l+h  	)`B#h "*`Y!`0F  tX-AFLFI |DlOeX(`0FTPY +h:h85*h 0  J)`  XhA0F6(hB*`0+hThB9h "*`K;`  X`-OF $p|FO` D&F&(*])
:UF$ 	ExRK>UZ
hrPNZ0hG4B.]>U8 (4NFBGHZ 0hѱ(FCFF		<HZ FhGD	AE;8JZ h(F3p5IZ FF	:
h(FG			9	
PF/ PF6FEFJ:F;
 6FE8E N]D~D1x9Sp(F,)FF 	fE2F" ", # < z dl|`z F2L
F2K|DXh	#0JXh (T  (,IbXh +*H!X
h *)M8F(I(JcYaXhXT0 $4	hhh]C
hhjhT0Uh%=B -NYh&nC$6	JBlX&hfEv 0F/F (8F!F*F3F F 8X`|L|D h
\J ##`zD`G F 8LK|DXh )	8T0h (Կ   8
Jm!X(h
 ((ht!
 ( 8ʲ H "1  KFHxD@ -G
F*L*K+I|DXcXhhT01hT0h888(F   (
.t PH!X
h *$dT0hٱ(F@EFH &T 	  HFG@T0h?HFGGEDp-<"*p(FP \dtlK{Dh (JzDh!h`
K{D``h
 F
HxDhQ`   E E vE hE F)KF)JF{DXh )HS0h#M}D(h( F (3 ,0FF1F < ,Fx1
+ < ,!FK`{Dhh`  (`2
)`HIxDyDh
``
IyD
hP` 0 8E D D D D FLFK|DX(h
*FFH!Xh#0F(`  `J #HX`"X` f 8KJI{DXZXh "`HX`pG  \@-OFEKDhX
hF"%x- &+ (qfx&x.x.F5F  'cxxq++%mB ,M4-O& ->&>F7F  B -&%HX 0 FhG  F!H X 0QE
N)F4~D0F| @0F$M FTDX hGF 4 @6(F9FO
(F( -H !xDpAp % dlh$C B F(" !
!FhFVF x )
-A #FE
Fp !(F:F8F F4 B F9Fbx )ѽ  K"{D`pG 0B 8L|DEh	%` h (8B -CFLF
FF|D #h   `1hBh0
F9h`  1hj	K{Dh`b`b```   ` JzDh r5` !9`A A A K{Dh"rpG fA LK|DXh )%  7JIXhcXhB8`IHcXh#XhB
:`
H#Xh 8  I ( f XJKzDI-AFXUXNi*h~DQ0F "#F8-o0F-h#F=)FFHxDA8 "  -AL|DFJXh )/lT0jxXhx )#AIK &IJTcXX   Ah;h8&
I  *FcX0 h;h8 XKJ{DXhpG  8KJI{DXZXh "`HX`֫ X\KJI{DXZX hh9BJ0XSh	hB	H"XH
`X`pG  X
KJ{DXh0S hxa(S h0I[Xh pG pGT hKJ{DXh
x"HXhJ`pG  h8K	J{DXh
xBHXhJ` *  `pG  h8	K
J{DXh
x2 S0hQH!X`pG  h8KJ{DXh
x:
HXhQH !`pGHXS0h`pGx h8\XL|D h ##`H "xD`(> "> OMD}D;h HxDh *
L!`
I.YyD0hF8` ($1hU  F>   > h ,-OFjLFjK|DXh )@ȀgJXhx)fJzDh ( 5xaH
-T    (A;
-*  0QFO2#XT0h*HFO1;QH!X	h  LOK{Dh  DLHxDhQ`JM,,}DDDII+hbXhB۾1F:F#<MaY
hF0F9F	 FDDD  0s2JX	hQT0h Q2H#Xh
)
)*H "xD	) H@ (CcPqD  HxDhZ`FeF( /EdT0h(JIzDcXh`   Th= = = = Z Z < < p< F< 8< -OF#`&xD\
GX=h
H'zDD 'xD
k%+ %! FBB8"F?+J "& 	#%	 "! $ &	xF00+-+++ +#+'+*+F&0F\   (@B%0;	+b
!0;F2 0	-  !x.)1є*!F+  4 ("ۂF0
	&4O 

  
Ĥ0
F2 0	-& #F #F hйl
el`xl(4O 	xO.D.F.U. i.Ѵd&Ol	o&p.o.X. ր%. S.c.d.@u. ǀx. Ās.@c.%. S. s. $%&FF"F  
p		1
, FxF  !HFF дo BRFHF !p0 %4 UFS.@fHFxO1FHFz TF
(FD6YhGVED &MF)x )p.+F!F @ ,m#FF"FF!FFd.4ѹhйlй v, FF  SW\F[FFZFYFp-(FF  GIdFcFbFFaFZhйlй A F   *;FFFFF>*FF 0 ++FFFFF* #!FFFF# $#FF"F $#FF"F $#F $#F"FFO1 $#FF"FF!F $#FF $F"FF! ( %d. űH (+% %LP%	mqx.X.0 M`L % 	
F  %(  )tO
%!D 
й2l !E F E! !A  p.,l+
L "F'd.ѹhйlй *`ZFPbFhйlй X
L F 	ME
H$<-+lF,F ,FaIE
*$0(k$x)X) 4MF ,F	+o.ѬB
p		 $0)ZE ҒFSE8
( &!
L	P +ȿF4F %F $%&F $&F
L	 $%&FxS 
 BE8RF + !0!WD ,BIFB("F? .BB(2F0! 4F
 
B		RE(RFrWD -B !B(*Fx +-jB8:FTA]5 HxDC8F+hBd&u&Ol	Dj  KY  l  $S+ 2@pG  , DM}Dx+H)Xh F  (8F	FpJXJhzD#F4F 9F&FL|D, !FO250FH+XhQ`  V -OFLKG-|DXhIOyDhaY 'Fh	X7FOE&ph (  &O@q(F` j(x&ܦMBUܥ\`E Aܬ^pE|7KB 4QBs:( ,ܚJB9(iU
( %
(f(/G(3 ():(Y2b(d(Tk( 
g( j(K	q(5u(FьIbXh s]mB@JXhs]9IbXh3IbXhE.zM1OyMY`{M|NcY%Y{NhJ`Y !`T0`wN pMY`T `fYT01hH` k - 𕀀vkOD8hbJF 'X Fph (7F_Eڸ  ǀ  (0# ѺXI 'yD   `wFXF php?BF5 %" KF(F)F8((FAF 6 %AF(F  5T0hJ`F |  PBv,I5HT#X   Q "h7 1F =FW 'O 
 .bJ %XT01h  %H*Fh7iJ`Xh )MH2h#XQH`#X`DO5G% ?B ~ V3 \1 1 XH %J#XhX H %*Fh7(FpNY`   -OF($$FD #FYP(h	Y@#`<F *@HY Y
  QhB
+ )-2J)hY  HE	+ EJYh ( ʀ FY0hG(@)h 0 Eڵ"F3F~HY 0hY
9  " + 󅁉J  `Y )hhBZ*` x((,Y0hٱHY  hK  F}IY h FGF2F FF1F4OO IY h:# !F2F	0.I Y `Y0h	)
"`H!JY 0`Y h +Y
h
;`   (A h# @   (џI@,Y h`Eh )јJY  h (&XY0h )"x
*(ЃJ(hY  BY
0hO 
{JY h FG()h 0:PEO 
O
O
 )ݺ "x
**	**"F3F hHY 0hI: !F 2F	#x
+gI "TTY *``Y0hH`Y hBkH`h
+ #+*h *_S+`\	+  1F(hCR+M@IY h (9 FY0hG>JFY hS  F_6I FY hGF+K(h Y hSE) F2FD x1F
O
QF9 
 ("Fd4 E|#x +v"F3FJYh@3 !F2F	  Xdt<`l\FKFJI{DX^XhO1"}/`
*3`  "i# z h!h )Fh X-CF?LFF=K|DXh )q	 .*F8FO1%U5JXh84IbXh3H"!X
` T0`F (I}O D3+IcXh*IcXh)I
*`Xh+
#
0 
ph"HF H!X1@)xp
)T0
) hP`/" .BH T0`8F1F*F 8@H 
FO1_  KJ{DXk ܕ  !  
K !
J{DX"#h 	K{D8!hBк  wK -OMKF}DF
FlX $Dh"BXx( *YF0FQFFHFU(F !KHFXhG(HFDDx * Fn " lKJ{D0
FX!hRB# !0
  

I[XhG
  !`D )F[#hBк	0   !ǿ  8FKJ{DIX]Xh
,`8	HXhBT  )hB8t 8-L-K|DX>h.,H%X(h.`*IcXh  `'MaY
h}T0hJ$I$JcXXh`#H!X
`"H%X-hu
 IcXh-MJaY%Xh`hT0h"H!Xh +8h0DT `Hd=HO1xD@2 8`\X@kH -OFLFK|DIXhgX;h 7F &H!Xhw(F/ ?B< +	+*x:H!Xh  /JO FFXIyD 	9 @׀F;xH!Xh +CvJXh(FG(F:sJXh(FGpH!Xh(FT h G( jI hcX	hGh	G
@ ,)FRF#	
 ",	UD'F;	+&VH!X
h *@UMbYhV)F"		9 .pLHNJ!XXh K+6DH!X
h T0 FG˹>hB\Y3JXh +<IFO O	bX,F  ( 9F ;TO   +GE(lT0hT O  +FYFhUFh *?!CFFO FCFFO : D dltp "LK|DIXh`eX+hF
 H"Xh
HxDR0HT0xDj7u,.`p > : p$L$K|DXh@  HT !XhX`po	KIXcXhhp@5@"BбoDMT0fYh1h5FBFB8 #,T `T `1hH(`p* X-O8FFFD%UIKX hR8F DH)FxD<F &oAHhX # FIF  :;I FX0hGFO	   (2й/4JX h FGF600JX h FGB8F*FXF	x-X0h )FdXF6DLD xAxFB8F*Fg-XX0h )FHFBHF>6 64F
ռB8F*F0F t `A dlt-A
FNFKFL~DX3Y	hhB+L!F9H2XHhxD ,F+!F :FA'  DT 8FF"FF(F8@KJ{DpFXF
hj
M[YhG(F F)F2Fd1F Fp dl "8FF"FF(F8@۾ !F  F ! F@u  -O(LF|DK2"X`IcXh (@JXh + yH"!X
`T0hsJXh (@hJ¡XT0h`^MOfYM2`YhT
 F	fYhF`3`
T0h5HxDU7`
%(F5I@   bXh(F 'T05hH"XMhK`TM  A hcYh  (``F0`T  h 0`hT8`  P  ``T0h (OЍJXh +JьHb-0#XT k-
u-g-lIBPBhhB(F~MIbYEF``X` 0# p
%7`!EE \hhQBj- d- f- SHB  RB -?mMJB?iI	eH)FxD@-bN(F!Y9`	  :-`?-/-EMbYh.DHDO#XYh
`VJ'TI #X7``X` p P~G8NJX1hMH%#X` &KI#KM``XJI`O3bYIM``X`eY(hб8JXT0
hhS@JYX?J Xh!B(h.`oGVOG,H#Xh"I`Xhc?	GA
 O4ѻMk 8xDX\T-> Pd\d
 
KJ{DXh0S hP
LYh F FF H -AF7MFF}D) !FO22K{Dh*Z1IP`oX;hB"x<*-HxDhYIhI F( FO12F;hB ":`2 F !R1F (FF FDF ر FI\jXU0hhJYXJ Xh!B F !8FHxDhZ` &0F   \*  "y  -CF%LF%K|DX  ="I eX1F*hWO2/`<tTp8hK /FX H!Xl*` 0F)hHLT0h0F)hI #HbX!`"X
H`"X`;hY9`  8Dp MK}DX `&FHxD@x1JHXxDkL|D$h`hh{$h$
H)X
h * #3`p ( [c   FFO1F1F8F&L	K!|DX!`)FFL ""`B0FF  FLK|DX(hA)`F(9F00FFhJXYj$0F	HJ!XzDh`DT0hFP
L|D h0h  `)hJ*`t DL 4 s #QLF|D YNI&NKbX`NJX`Xh`LH!X
h:(F1F(
t!T0h (V )4AJX`q )FO2=H!XhCFX9IyD FO1 FFX2IyD FO1 F}(FO1 >)N*HY`!X`T0hr`%H!XhX'h&T0`J#I|X`fXI2h0`T fXhhIbX`0F`  1FT0`(FO|څ T;: : 8 
hFT  4@,S`@HxD F _ F
h  T 4@,HxD FS` ,   7 Fd ! F
FcFp F !
FZ
K{Dh@h@uG   @=  0FF	B !( " 0@pG  ?LFS+  
I|DdX@A  h h)F0@pG B IS+
HyDX ! @A h h@pG  x/+@x*( pG/(  pGK
J{D hX
hiB
H *X	hL |lڀpGhLpG pFMN}D~D\)cx40FfH)X
h:, FU0hG  $!x )Fp px I= dl hO2	hpFN~D- FIrXhhFx9B#*Ѹ,/*hxl/( F$*(5*+)x/)4+x,F5 +#x + ,F Fp  x 8   x#YBQ -AFhFh0FF<`%,< F-xF;0\) F8hB  (F  -A(*NF~D(F	DFF8xF +и~ \)1 F  F]F 4!x"x=*@F (  `9F (#xH"+4 #1X hO0  g -CFFFF2F& FAF:FF"#xӹFv0F1FF(FJF 	 F(F7 (4 x (ѽ pFFF1FF F*F8`] 8  p  pF x'("(F4  & x%F4(xF ()xB(F Fx:+Bx:  8F  Fx}+0FI F"yD8 y 8    I4 -CWODFtF-RI F*FyD@dF-KI F"yDv๠
-GI F*FyDl (O HFJ-@I F*FyD\X@-><I F"yDR (6%`.7I"yDFF x +'	+%2I0F"yD: 0y (	(-I0F"yD. qy )	)
(I0F"yD"82y *	*4F 4F&F5F	(x6 (ѹ   +x +	+ F2F ((FIzXhi   F#FY ( v ] N 5 *    ~H 8	"IyDF  8`z@	  %F ( (	( F%F{(	м ( -4 x ( 80 $K-C{D#JFX3h4 @FF (0(FpcDF0h4F!FBF0FKF!FF(F:Fl`]% (x +F F> F(F *} 1 8F#x'+bx2\*%	5 %c3 (`]'("+\(ax4"(4 x (dF4!x< F8pF hFF F  FF FD#x`pphbB-CFFxF{+&x> '
}+/ ( F &)F %+ FxF})]=m;)})й ,)` 	"x{*
Ѹ ` x5#x4 x (0F{K-O{DzJFX#hFi  ! }x#* ހ x (8pnxF#-0F $%F'FFqgK{DFfHxD  ୹ FdxF{+}+;+!x10 (4'x /"x *>.   iB 60FF8xF +Л ")XF :)ћ :(  %F
 /h $  @ %$/FFXF "0XF"
  (ћ pc/
  (
   %'F  {(}(;()(?(,мx  zl PF $%F % 'F%F  iBћ ,)  "   Fb $ F N{ g  -CFKFJ ${DF&FXhFa#FNBE4E< `a&S\ )0FFy I"8yDFvF`bx:+@x:8 8 F8  8\ FP$M}Dx}+0H!IyDW (8HlF.X3h a  !a1h8iSa/
w*H+X  FFhL7:FX0x; R3h 3  F`Fx Tr I"yDF8`y 8    e I"yDF8x 8     I"yDF8x 8    q? 8Fhx8%hh ` h xF ( h `x:*A!`Cx:  8(F8  -AFOFF $D	+Ѹ 
IzXh3 F1Fp$$ +4(F; + FFw LK|DX
h "@ſ v LK|DX
h "@ v -O!-HmF-LxD,K|DX3hF _jF  	 ih "H!Xhs` JX0hA1`T
0hdF H!XhZ
`0h#A1`N Y&h#` 0  _b& &`OPF M v ,4-OFFlKD $[ h 41] )	) 'eK{D=FFbI[0h8&	u Ѹ   
2"	K
:!F (_ "pU
m!(
e! (Wй 
n! (H)
O! (@њ 
 (	( ,62 )pF	)-F+ *	*O 



  *N
 B
0 +	+ k
m!- -=ЪE;UF	x +% Ѹ  p
TF 42] *	*
n!O	 +F^(2]0 *WhB	
b!L (ѸD %R u * F+M+K}DXhFhBO0G &U0h Fm !#
Fq h (:hF!X2 F 'T:F20 FI12 +, x (	J #X h s -OرO uKO9D[@!h'	oKpL{D
|DFlO[ (h8GpI
8F2"

:! (=F "+Ax )	) ,2 (+F	()F )	) *FO 



0 +
 ̜ED  (	( ( )r`ox (S*xF *	*HFF"(h8;2"8FB2:!<0xF0 )	)(FFBF%F=IFX
EF -QE+x +ѡFp&FtDEI	HF'hB

b! (щ
n! (ю),s ( ( p "F h~M}DxF p Fo BbF  IjXh6H-X F-h- -ݮB Fv$)J0pO@p>q 8F0FC -ݡmBF8 8  KFJ{DX"h p -GF/NF0~D S h " $FFF#F (FIF:FV0$h(!I8FrXhG  ?8xб	(IrXh IrXhK  IF #F(F:FAdJ(FX6h6 .ݴB(F1 F0Bp p dlFFF %!F8F"4f-B(F  =LK|DXh#JXhG xo dK	J{DXh1LYhG xho d8FKI{DJ\XX"#h hin"hiET84o 8F	L #|D 3\ *	*H!X
hi(B   8 o x,+0FF1x *pG  J
KzDp%X
&h
hB	m9LPYh	,ؿ`h +pn pFMFn}D1 # F#fNv (	 F FH")X
`cnX`fprn p&LK|DX(hf(hH!X`p (n -CF;L;K|DX0h )jI8 (f6JXh )a0h& *\2MeY+hZF*`
F  
3h)h&H(` *I)I)McXbYhFhFEB%JX`%OY%OlD~l8FAQO2 9F
H"XhSI`Xh2EOzp!G3h!H "#X `H 0BC5׼m |X6 8LK|DX(h nIfX7ha(h'DT0hpIbXhSE{O`!G 7`,(hAnJBf l -OFMFFK}DIXoX@i (@뀑JX#ha$ * j * 12
YhB@0 (O BE EހMc"p$qOFr :h   h BcFi
hB )9h +h *;h   hsERFi
hB	Eh *h +#hB$!hP~$ t U0h'ZKL(YhB(U0hK<iICJ!hXhBA i	*ؿB FiAE Fu0B F #   R3BQE    IDP3 B  F#!2hO
 ,?h /IkXh	*
 `IkXhiB  	DEI "kX`!h  84
Hd+U
U < Tl  pLM|DdY$hn&oeoB gBB`gfgfoBȿegog% gfgegp@ i pLBEo Bi#FF~0F !*F#Fp@¿-ANK~DXhFi'ݡ F9FHxx1hh! F2h5hBH %6XB  #a= F)FA ^i F ![BpEF #(F"Fo A*(F !*F#Fp@n0F !FhKJ{DXhnRoBgZoBBZg$gfg\gB #@ h FKJ{DX+hii&HxD F1FF F ")h Fi?(hi *Sa   dh  -OF(FIJDFY iiFvFBF  x?HY  h! !<KY h@F4B@Fy 4F(M&F
 (F 3F
 F. ,ӱ'OY h `$Hi_aY  hY!KY h(FG?aF &kFh
 !F ()F"F F
 2F'QF:FZ  i 	g (`d-CFF
O %D.FFH59X F
hG6$ME0FAF"C=#x + f l
KJ{DFXhXv x` !F@ƿ !FF@lf d-OFLK|DTF  ii0FFAFHF ,AF"F*FYF8 +	29F "0F0F!F  iMa"f -O4FxFKJDKM[  iHFDFA[0h@&5]0->I[P+hGF  O 
<[ h8
pXCD
 '

EPF (G ,1F"F
 ZzAF:F`Ft "QFHFDHF!FH[  hhP[ hqK[ h2I@F[0hG :hiae ld8KJ{DDX!hS0hGF 
#09"hBзL Hd -AFMFK}DXhI8jXh1
IjXhGF8AFDD  $B۽8]4B۽c d`l-OKF{D"FH
X*h@ 6KO 7F%FO:CFF8FoE )H#F7FF(@FaF B@F  FO:YF B*D? /FF (	(?		#7F%FO:O 7F%FO:FCFF  #*x	*5 #		Bڔ*x *5 #8 ( /DK*x *	*  (FF 'F8F E?!
 F ( !
	g\oT1QE
`F )	)	 F (ЂFh@ (Oѻ E )A"F$h6XFF  FEXFhv9F{BD>
{ .{ /	/	 
F
h6 	!hBPF
O  ; ) .VD
 9F0FS
  "i)FP  iGi( 0 !i H
X  hiBPhpELDS`	vBV`(F)      	 c -OԁtK &DGm%4FX B{h` DD?!.F$(FF	(d
 F^QF!F(UFF,(FO	  #IF *d"O2F "1 & +ȿ6 !F*F;FE (HHX  h +FHd!qCX  h (X0hBXE?HX  h +=IX h *X0h 77 (ȿ *?|  ax)?)
)x
 !I 	E2/'HX `: *[ F|UXhHX 	E?HBj #TJX h FGFKX hEO	 F2 `HF H` P<DHdht-OF+OF+KD+IX0h zXh D3'MO b&LxY2`D%JhFY`=Y#H+hY)`X#hY!`?XYFjJFH (F(n' n'8FD	y/n/ 0 Y*h !hS0`+`H `8F 8^ D \-OFD	 #`BH[ h ,q@J  [p?JD?I=hn>`[P&F+hX(`[0[  	h2{0F	+
!40:$IB#KB#IB(
PF<0F
!F:(ѹ qH[  h+I  [ `l!H[0` #[  `
*
***9h*hH8`S+`  &0F f] 8\+ X\-GFL|DHxDHxD%KH &!X .`'X  9`AFAJXhJHHXhJI*`T0`bX`T0`  $\  C \tX@pF)L*K|DXh )J7 (F&JXh %IbXh +=#Hss!X
hB4 M+eY(F .IyDIyD@\
 .OqJzDJzDw\T0h0I(FOryDK(F8 !(F@I"cX`p [ H     LK|DXh )!JXh(IbXoD D<e!T0hsXH$Xl
HlxD@2 Z  KJ{DXh(@:Z  L M|D}D hH ##`xDF (/ xh"0h FHJ@AX8h(<h0h(<U  FK{D`InXOQ0h( Z  d "K  KJ{DXhP! p	I #yD\=*ZT3c+H !xDTpGpY   K{DFh: `	H!"xDIyDhB
iR$    x N F -GF~K{DhF: `H!"xDI $yD%F Z%p1F8FX8F1FJF5T ($EE $ F0   8FM}D
H)X
h:( FU0hG  $#x/+4 F8~X dlFF3x/*pG  pN~DȱFF
H/+e1X
h:( FV0hG  $#x +M}D(Fp0X dl	 pFF(FF <B(F!F ( Fp/HBHApG-AFO &,FDFDE#x; x /+; &޹; x~(а.&IzXhs
H9X F
hG#FOK8F (4W dlpFBFx #p(F&pp p  KJ{DXho BKzW K{DLYh@´@K V -OFFF	)pP7;F8F(FPHxD hPFMHxD:Fx~!m '8 @HxDXF*B8 0/+ pF )O0FFJ 0WFF0F:Fع]/*<
,* *j~&kx/*< ,/&0F_FBFkFk^,. .< ,F (,(< ,0D2x*  (p@E ,	H   * FF!F %(F+F8#8F 1F"F+F+ FFFFFDF4B4F
 F9F (ѬB(F!F ( F
FFpF(Fl00F09F)F F  FxkV! F0I FyD@K: 2 
FFF@F(F< 0FP9F F F)Fb F  8FxI"yDFX FI(F"yDFPL (	 F $BF F8 ؃ J -CFFYN~DF ( x + 𓀤UI(FyD騱 $RH1X
hxtPM}D(F@x1(FF (cJHV    (>$! (9 @ ,5 F  BF?J)F FzDFg<J)F FzD:JzDF FFB F)F8 = F)>F0 Fn# 07$IpXh"x
  'MtY h%Fx +?MF   ,h !  ,7H!FxDJH!FxDJX!`I(FyDp8 ' /?bh F (p F S Q 9 D  +I  S lA h1 -OF
FF#FF|>IJOyDzDFHxD$+~+@怸   '!x~)axCg{)>:FFF (ѢF	<F}(	˚BF
x@J (ax{):x}*@؀7 #(F 0FG! gA/) (cF	_cE !h 頹 ( (S/( @	 "P#	 	)F "-#F й  HF蘱HFVFh HF2"F (Й 0+HFBF8F>CBIF(FHF2 F6A(F):x/*7-<F ' 'HFg#x\+bxz;4> +,+8O FO >c BZF (O#x  (p .? F xO 	    #   7KF7J{DC]
FX
CQ1OR#h`5iF5F(Fo (?'5)F 9
Q #1OR5I 
Q1 #ORF(FI.(	
P
Q01 (  #BB2#BB     
CS3h"hBе7
@]pO sFOPFF@ # (F!FOR F| !pFF %OPF ((F!FOR3FI F (FF F(Fp  pFN~D  *!"8F $ hF0x#ch@BahBBJ$hXhi; + Fp N KJ{DXhPſ M FJFImFzDTX"h'F2    1FF8F $shB:h L2|D   ( $;h 3  FM x F( ¿KJ{D0X F(!)"H(hL hFI "yD>*h(d
I[Xh #a F +h(B F0  M  -OFFFD FF h F(!)"XKY hLHhEE $(FF 5F F[P F  FF 4"x *(*Oh;*'*"*)+`2u(FxF )\е ,\$Y x,(ax)` (-J Y F F
 (%hhSFB5 (FPF  (h
hB* FF ѻ,x,+)+ F@  FF4O #xS;+
'+"+$DFF  $B0F8` F L KJ{DsmFXL3h|D3  2h 2   FUahB`	  {!"F8-F (#F h3ha2h 2 F| K   -O(9KF9J $${D %%F
X #F0haWWaFm8F9 (8F  (3h8Fi (5   hHE.eFH88 51h8Fi4MF(=Ѹ $8F < - ,1hiRE vJ KJ{DXhd
xHxDHxDI K  -Oĺ:D

[@ h3[P*h6a ( 9Z[`7h $[ hi@w]LUFFF\* '[P(/`L[	0h7'!h& "0

  &[0` z %
[
`	 >  P#:F?@Fb. ؀s. ̄m.@92"{DFb*O	5*x:(92"{DO0x-	8`3x:)`92"&{Dy	FhC
9\`)@	(F&:F ( 5+x + 2!F= ) 	) Jx[P)hiB ] +  ' e.A):h86	mF (@ہ
>B 0x,(1F >B\:-O0x*	8`F+
:*	9hJ@BF[
,-<	` 6f.
 /@ց,hF~D 0O	n.x . $:. ' "F . q "
	FIxr+l+њF
0	*-+HFA0x:+Ѻr@ai YBx (	(0FAFZO 
|'[h`t[ 	1h(FGCO2	 MDXEکE	  		 F1FBFLDcE4 " 0[  (FhG(F(8Vpo	X	px (	(p  &9B~(FO 	XAF0FFx[0hG	 
QFBF	 	0EE IDT $1FBFL &6x )0	).AIE
Cx	+<4 %[hG(F(8 kP	dpB	HE "ph&2(F "E &HB(F	!p< * ,) ( ,	+, *	* '  ' !)U' '/U4  (U .9+F <F ,?x3 *	*8,x*,+nx/.(h&
\	[ `3h a   F8(h1ha2h 2 /F	 %/F,F %/F,F/F<F&F/F.F *EphI  h&F
  hR	+ *	*
 [ h +HF{ (x!H "[ 0`HxD ,0

 )8FO  

 	D8FQFBE)r8F4H"[ 
`	<`O[ hF  OBa "iF} ( d 0o A"i #x ) ̀  9hiSa (~ѠhFqF E83

+ 
  *	*FhqFE@

_	"+

	!hE @& *F8  ! ܾ DgLG
 F	X	
 #"F	
 #F
F8F2  i	  ;h!E  i{`hO
  7  ' 0iB  iv;hX  < , 0  (<h-i  T*
J p "i 0ii#B
  ii[By"  F   Oa< @ !#iF 06Ha[  h1<h(d&x鱘i@8 !/OtF FhS`F $;hvI  F(FC  F3#hBOL /?5VI     ] dl`  s.?fO FFg ''7FF>F	
	D (
 
 XF (̫F58
FIyDFP $x:)Bx:*'0x'+Bxx'+0/+Ax*)  8/)"+ 8  80x + FL 0 8 8m F:+
 F/:*F !P#x{'+`xx')44#x +  `x )  pFL|DFh	KA]X # hp = e"IyDFnxI F	"yDfPI F"yD`퀹   	  Hx:+Ax:     l l l 𵅰2L/|D   X F (hF] ()K7FX(h0Ȅ 9Qaa< .h6 tJF8F x *h 2 F!2F ! 0 	+hi*ܔ 3   v< KJ{D-AFXFlF3h ȝa $ !FH(F&Fp@F< (j (>F8`2h 2 (F ; ``:-OyD˰X
XhI
XP
/h,'	X:h2 (   _7 (JY
hմj<hiB])+ !U8<h "aF  #(x#),hhG# !"H (@*h`G$7 + @/,"ћ/)Fx/+AAx/)т #b`!F 8h~"hP ` (XFF (@A!F ( ; 1F8hSFO	_)hJ#8 B
yD (s(e(m(фFl(r(	0	)-(FSO $Fx:(2"<>s
<"A"2! 	
m	</0/2!FwetXF/JF (>2!<<FXFv (38hi)'HL"Fd08hiHF@F/JFX<hiP0hsh"J (4#
r*XF/JF:@2!<f<FXF0;hi`F  	r*A"F/dDO
x *O A聛 0*+48Z<tBFAс(h$'1hB0hgshF@b\ p` # 1F8h=+h$!x (A 7XFx],*h[ L  h2(hLF(+h\ )
  ,A ٿ ,A𠹬 ##
bhChB ## +A+hH1;hiHFB 
x 3PP(8hahbhBBhB
 0)+F
BA[
DBc@o F,hp' *j8h
0Ȉ  Dh;h)haLp;h 83 HF,F	hJEO 	@8D4	 "yD  (	( ,	 "yDh,	 "yD (O			 (мFFx(*.;hia)!;h

 a+h  FL76mPhB@hB FO :ha
PDO  0)+\)h0' 
8 (_x()[Ѹ X.h<'R  "yD, &#r\)*
(*
{*}*3+;1B(h "<gD(h@71
s] *	*
 o F (
 # 8hBF 0)+)hD (n+h0' 	8ax(+Ѹ o @B4FWo JJ]x(+)+
*h47)h`4$AEo L`E *;h)haaL.F ( : ( ۇ  hBЬ   @hB    ( ȇ ˿)hp7(h07B4FXF, ( *h # 8h
2x{*  0
(!8ha0F)"8+hLh,h`d'RJ !e
+h`F +h`!XFhF F  }(*hXF (@dXF (@_ .*h G(h)fGp)h #l$
6O  FXF !F8(h "&7XF)h(T&d8XF# *hf &;hCJ3zD   
$FYTFF&O 	& F9hO 
iXaB 
.@Ȁ  * Մ)h
L7B
(h`7 +@Ǆ	d ü;hh9h1 (F ("QF_(и,$ ;hRFi (и;a  ;   w R/   ; :yDFG 
 /F "SXF:FPF3
 
* +PFyD" (@E|PF|*yDzD (@9 ?K{?G(!)"U@{!}"O ( l(hLZ (@܀f ( ]. X.
	.Л @{,*h6  * 
B? ( B# 9h1 (0(hl7$ (F0;hh1aQFF	.Ѹ (c +Ů. 
.  ..
 ( Ҁh
B:hi.F (F (   ( x ( s( X{)hFFdTDc.h 7X7*h (&&d..{!}"o (?Y (?T9h #haPaL)h`7sfJ9h1C
F@ (; (S1 (?. ()F (!.&(h( )*F3 . ?  {(?0F	.! " (@ !"F_ *h`7,. ( /.Ѹ,@&Ft
X
hiBB
Ѱ . `,@\(!)"<S	 ( 
hhBBhIhB
{!}" (6 (2;h3  !G  b (Ѹ,)h`7 Px +2\);hiPaO 
8hi*  i9,F". Л  {(TR0xh{)hTF(FTD ) `' *?K.T$ (S
. I @{,XhFTD TF.S h&6( ( فB (? )@l 0}+  B F (  	hC ( .Ѹ,@
.Ѹ,DZXh(7 + 𚁁F	&TEGܨ .?Ѹ,'T  `7  LF[ ~@  hi
ZB qF&FTF
&|4x , t0F:1<\+@k  ic..ZTF__;@\x4{DFFKHF xF)*?  x;)800 (3		LDP hP  LQF hfx}+08.  haA,DF 			   (
. 0aM `{.F  &&X	 (ޫH*FPO 	ϻ. ) 
.	.
 + ) 0(!)"J,QQȱ  L 03  !Q l (g @dg6 !A&  ib {)F  6
x{* 6ֹƹcd& (F (; h (5 &G&c{!}"R (?;s (?6 03 Nx}*?s- (?n  i "aYFaTF XFd+hd(h' *@ + 𤁤  (h{*FhB+XF8XF{!XF}!kIXF"FyDmhIXF"FyDfxa
FFHXF !"*hGi>h 6  &6Kaa(<h haAa',h('z  {(F9h1 (@F (@@I"FyDX!x )@ FF#L\,8(!)"P)hL ;h3 ԱF (@PFx )г3\(9hiaSa8hi*k	 (F  FF lXx}*dI"FyDF ([IyDu	^` ^ M ` # $W )  U U x;)30x8h 0Ȅ Pa4P9h1 9hi (;hi*;h 3 	yI "yD[ ( $G:hi "7F+hG;oI"FyDEб9hi8jI"FyD9 (#x; Fl"\)(!)"(hL <h4 F8hi)?ĮXF(hd*PFx6(\)
P (	 F;h3 $pIhBif8h8L0|DȄ  +>QL  )(~}p
1hF
sFx{,bRF*h47< 13   ;h
a(,fTFO 	.}*
 hhB~& ?-'KU T  Ƹ -OFB' #O2Lw'!6F"66F6O
	6 7787<7@7D7H77 $7P'\7`7d7l7FTX(,@ 4g0p7,G
8F-)VFx.(P !FZ	 
!x0:	*  !xs(SE
uCIJ &- 5FY   -(mB#:Z* dy|aUFI.[Cvjm@LX17^s4ORgp:= VdVaV^V[VXVU WRWOWLWIWFWCW@W= W:$W7(W4,W10W.4W+8W(<W%@W"DWHWLWPWTWXW\W
`W
dWhWlWpWx,)X 0 +   F
LF	K|DXhH !.h  @]@@@a   "LK|DIX`cXh@. @JH"XhYhqh`HxD@.@8  Fk +  	HxD@ @T  P P  iF 8     K{DhP(`pG !`BV K{DhP`pG !`BG  -C"LF"K
|DTD 	FH"XhE(MhF"KF;F88F.! XB"F( x , $ 	   Bв v O  pFi!h(FU#h^UUx(h Fs*FR3B!hBH `> .p-AFP
FF(FF8F (ڽ*0F!h!c(F9F (ѽ(F({Fp)F' @F0h2iAB 1`-OcLFF|DDF$h W(@\)cx4HF ! (@VH[ 
h:T F[0hG  $!x )ѐ<FDEMK"!{DO 	`"  EY@ Fv x~(  F!fF@g F  SF 0F9F3K "{D`R!x~) F0 FKFa!F*FwCИ (YF> (YF*F"XF TX/B F M		E`IyD FK " {D `
0F9FSF o
$  dlM  R { ư -GF
F3O DFZ (X.KXhFxa3h+JN(h ! P$ F (*h  R$JF)hY #F(hBXQF0h39B<B2`HF4 3hB(hO	P$ *h!FR$S 9C	 FB+hC'74 '<F1hB@FJ $-A hFKFF{Dx%,#,<, $JX+hY #)`F *hS+`F (I$E  :F3FZF, k F h(Ff -OFKxF{DDhh (	j0FFFrHO 
xDhBJY@!h ) $B(F 8)x/)
Ѻ  #D 0^*B' ZJYh౷JYhCHY  (FhGC (xY0hRAxF FJY0hJ(FY0hG)FF@FFD-)x )ѮXF`
8>PFQFBXFE0F !x0**x*+!@EF0x "AFF0FF '"IY0hkЀHY hZ
`PF!-
 yHY hZ
`PF x
0i F p>*)D c۱*(x/(i0F
# 2 !F;F  P   !1p#x\HxD  FZF (`XJDzDXFTF (p|.(.)
z
	 "- (	0F F2Fa,2	 ( 0c+ 	)F#A	 !F ;F  P  	 )F(FH " !F	;Fp)x!	 F (!F:FXF F 
-	hd ,i" K!F{D F!   J dl  V H U-GFDNFFF~DJ ${YF (o F0V PF!F*FF J4KX!hJG
"`s hGPF'` M.I(FyDF0+L)F0Y<FBAF"j8FlAFBFF8F`
 F0!RF;F$F F8F(F\E\)FV  F  $ 
\ T3"KFCE ! (F  F" ( , (p
FiFV
 <(Fp@ ׺p	K	J{DXh  g (Y 0   HMK}DX hF x0 h@'h<FJ!xX/)gh(I FjXhG  $B8F@Y  (dl h	hG-OF1MF1K}DXh/JX'hoU	0h '+IjXh'xo/' " U
@ hFOo LfEFѲr4F8
K
  F"FPFYF$BBx );$I + #0jXh#  AFB    ( dKJ{DpFX)F h0o CBF F .hn#
f
Vx	)#hngB f0Fp H pFlM}DxFJXhsLU0hGahc`1\	  p p`hBb`qx
I"hhXhhBc` S#`pO0p dlKJ{DXh0 F (ch# F@FChM +}DIX``jXh (+ h\fhU0hG0``   h(8 `FI``FjXh[	H)X8F
hG3c`O0  J dKJ{DXh0 F(ch# F@ipG  	J
K
IzDXRXhhihBȿai ("apG  8FM "i h}D. iB!IjXh
IjXhKIjXh;IjXhxo)a8J8aXhQ h8@h +  a8 T dKJ{DXh  @  %L%K|D%HX!X*hhle2V7 H)h$Xo"hB lPB$  $(h   #B8}*hlB	Hu0,hd (h$Db( ,c Fp ,KJ{DXh`IyDP 0  (A `a* ;۲ <; +pGA # ;BpGFZ ! C YpBx *	*\(;(8FF6 #+U8
FFF8F(F40AB	b<)F. #<)F@  K{D(JXh	GEpG* pFhhh0F ( h@h h%`#h +pF@hhh F@˿8F%h-+h(F#``iiieaaa8
F*N+K~DX
h-F
 FBC%J FXhG$ x ( $8 L3Yh-F%BbxB(\ FV0hG$ x (JX#hF
B4 FV0hG$"x *BF0!x ) F  `l|d-CFhFF#x.+p4% %"x\*@Fax 4ME#xsU549!x!  pU!x1@Fs (,)4 F8`(FBxF0 *FFpG  F
NF %~DHB%F1X
h:$ FV0hG  $#x +(F > dl	+ٰ HBHApG pGF i ##ac`#`8F $(iP$ 4+hB(F8@ #aC``pG #`aC```pG  aJ+ 8 #FzD3$yB  " 1^ , F0 -Ah*	(њ# `HBBN,ײ~D "GEєEB	# x`ax"PB2] -ѽ d (KB:ܣaBAܡ rB@|`E:|S I$ KB'qB3KIJB!
ܢ |`EsBKIIBKIJB
KIBFpGHpGHpG
HpGHpGHpGHpGHpGHpGHpGHpGhJzD0РA,a,,# 8Р? ,a٠A-,
,L 8#@  ( F	(LYh@ #`0  |J #zDR3B3Ih )O3FpG` mK<"-G{DlOFpD$hBĲO!,Ȳ #DͲdEђHEyC!MB3 )(F -F&UL8Yh(FG(Ѹ (F ++	F(F (F -@5F #$DO-	D3  
E 43
yA*Ѹ B -mBt _#D 4p-
Kpp@+H9X
h(FW0hG(&I(F{XDhG$'(F  JzDU4(F HxD#T40 +`MD}D(Yht(F!FH>" !xDUap  * D    <  d    v \ -GFxt+I@x_(Fѥx -Fx )BЍ !P?+(  Bx!HB;,A (A 3) 2BК  Zp6F7  Q (0 +0#HxDP5 5 % 
F D	 'F &  -OFhmNFF+x~D<+  DFD: x-(axdJX+h3cI`rXhG	 		%FAx>)F %F"xt*cx_+Ѡxx	4IF F"jFX# 	`	S4 x-(е ( x>( !
-( (CE_y0:	*
#
F -V0hP@FV hG	!	p	Hx>(	h+(J@FXhG
jx	@FF  F *?aF 	IB\`EKB (4`<`  
I"yD@FF (Т h 8 dl7 FN #FA=~D	0-p%#!#pap (@B!aUd
`ppJXh9?	JaXhG('a} `Uh d(K{D @hpG  pG* L6x0u)m)  pG  pGYmh\l!9JBR&#KLxu+m+  pG  pG7(MFJ}DX(
0!hJzD!hJzD h "&JzD	 h^8"U0`
   HO1CxD
/>  5  0%  K	J{DXhxd9˲	+D pG  pG0  KJ{DX h
IZXhAHXh + OPpG S0h * pG   |pBMFF}D  pr (	KXhQJa0FXhG 8  p p dFH  % @FH F= F@*K"{DFQ -OFONF  $~D_MHV  F1JJ(X;hGF  8DI rXhGFp  /C  r /@<KXhIXFsF8Fo "ұXFO0U8F (Oh@XFUF8FQ D A 0+$H1X(
hG  $  +ۜBۻEF - p7I(rXhGF /] (iIJXrX hG  G @xEE
 ,(F) (//ы  dlKJ{D]XF
Q
h`F   ,OR #)FD(FTF FPz B(F!F* 8  
S
h3hBбp
]  F   F!V ( FV (    FL
FF|Dx
K@A2FX+F  h h@ 
 pF
L
F|D{hK@A2FX+F h hp@ p 	KF	J{DXhTHX `H`xD@ѿ 1 -CFKF{DHJ!F%FX`HxDNO~D FF3hw |Fe5`P		 F(FZ 1  8FF !*F F8!8!FF !*F F8-AFF
FDFP6I@rOyDh)F2KiF{Dhp(FZ (  RF,L>h|D+ rhh !F #BB
h #FBBO O F!h 8 ! )6h .M}D(h0F  `` ``f` )h8h ` <` b R 8 ֔ -CFFF $7h%FF0iP% 5 B`VF 'FpB FIFZDD1i FQ'7R F$3hB(FFhChBh iBFhNC0F%1FzFhh !bhZC h%ag` 8
F!F(#h"iT hA!`8  8FhM +}D
JXh&: i,
*;#` F !	H)XhiBa "!iF   `8  pFFF@F F)F(	 i1F#h*F8!hM%`p-GFFFWODFHF"2'+4
+= !+	a% . 4FV (4BAH:Xh+?IxXhPFG  
 x + FoF (b

'" +JN'+
\ pHpppP@
+= !+
.\#F;=6Cp"Ʊ (\"+X (JXh PFK;;x +'!CppF F < dl-OF3OFFFDF&!W0hP.I(FzXhG(68-@F)x6 (F (65+x +0FF (0F*IzXhH9X F
hG(F	(F!FZF]D;,\D@F!xN  F (є 4 x ((p0F dl\" #-AFFMFFK}DFJXXh)a1h !FAHxDU
 >J>nf3hx0;HO6(X`;F$7InX0hx* FAF`FP2OY/h;x%F0IyDF ( F9F^"CF ((FF0hy@ 2F(1h=)F8F6hI0FyD@I0FyD N~DN~D1F8F8FAFF8FaO6B(FY> 1F0F (M, 048G  + +  pFHFF(1F"F@ #+U(FpF FpF:D FF1F"F6(Fp8
F	LF|D#h;H(F `F: 8  F F-OFԑD OPF ( ׀O @)J@qlKY h )@ǀ4h , À"h2`h3hah0 i ( ܯ h );`hDS8i)(Fi(Fnah(F(FgD HF`8x8`#`
  *  l`i (k'|bhOS' Dh(FQ%(F*(Fqi(FD@hP'  (@ph)F0(8(F, (2 (FSBSE#7't0h `(F4`D(F;LOQ|D h(!h(FcF<!FB(F<7hB"ba F2/(F %(F   J pFh
F, F80Fah}$h #`0FF``  F4F(h `,` Fp-O/N~DFF (VR-H1X
h *5 F!F FYFXFYHEF(Fz@DYF (4
)FRF
	 X(F
EF!FXFK@V0h@I FrXhG($J xXAh0#x +(F `dl-OF0F8F4D ( F ( IF(" LF F$#b{
( F"8F>`` ( ހ8F5` ( ՀБD *x.*JOP   (hxRkx +9ѻ N4eHZ hd!S`0F 	0FDF@|El1FJFD    QF0FIFai + hx55*xBLNOQ~D0h0u(FDi (0ha (i(Fia5a (^i
pHFFi*_5HxDI3MIF}D.h0FU0FZ(hFi	 X6)hFB	 i=0F8-hi(F(F90FtHxDh  F !```tAaaN~D0F=h`8(F~ F $D"h8F*`%`-`a ( F  J 0ڊ  4 4 ډ  KJ{DX h (I@B[XhmHCd!Z <F h8 ` (o Cc```  K{DJLXYh3hGliFB $E-hF:h PlB0hB   d1hB  @ T
KJ{DF h0 `Xh
hBo @````  /K-O{D.JFFXhm hq?BF``Kܸ   Ffho ABrB #h  Fuo @E	E e`   F\bho LbEBMDBH   0)n#!+pGiFBnBnd" fɌ inBlnBnf flfpG8
K
J{DX h%h+nԨi(g hnAf8 n " !(!f*ȿKJ{DXh @ ClAd0!Hn #f
 *ڿKJ{DXhn!fpG n#fpG  KJ{DXhn!fpG n#fpG  KJ{DXhn!`fpG n#`fpGn# fpGK	J{DX hU#hn SBS   FC"n Fx #nC  f1 F#!@*6KJ{DXhٿ  KJ{DX#hXj0!h #oKb
b  0 pG  (pGKJ{DXh  	K {D HHn!Xh (    0KJ{DXh | -CMK}DX1h
n*ԌoF$H/X 5h0s9hB	6 .`1F.CDl+nBȿCؿ $)f@ \ JKzD`Xh\l@\d R hhBȿYdhQnBȿ"1 YlfiB"?afj@  mYpGFL&nifoel#)F" F:iBF g Ffg)"nB#fmB!n FPA`1F"f@˿5>F#hhBKJ{DXhnpG   -O*O
	)K %D.FW  Fo JiYF5B#JXhhBY  mB
 
nD"qC f54BHF 0mQEdTFBv -OF|O|KDX (h n`D )0
 $o KAdZE(h!F*+h^lnNE@`f.hmEtddF+hXl( A`fG+h oE  $ 4FO o JP ,DEKI{XhEJI{XhhB*hB>f)hmPE6VFB20B0D8H9XhhB)hm6B/JXhEDE0DB0D( ,(hmBGl
 
~Jm &7FPF6WB	+h BBv  &+hmBFE  0F!9(hAlIE	 ; fnBf	 T-OO 
9KDX`7J0hAlX@ 7hi=o{lfgBFO 	,0F
 FYEDX hhB8F | -hmB[lBDBEE4F7>F .hmB  O@BlBDdiBlBȿCdClBn"qfnAf T-A _M}D+ ( \KX h hn XIDnX3hh( x"hPl(( *?#h!"nYd @`fS"hQl)@󄀓iBk2 (g{ !<u"h0hhB7ܓi<NBY#hi m2hAYB"0hcE p " 1hBhF+!h  B0hB	 !  #hYlnAEB f1tO0mU ` "( e 
 *#hiYlB C"hm qHKQl(X;i+# h E#hnJԄ T-OF,4DX`5h(ne-hQ klhBԿO 	O	O	 'ilog @с0B́ R7 Bۘy0B @?7iB(F)n#Թ 0B  y!R7 iB(Fi"(g	B !0)g0h(n@*f0h0  x X
0hEĿO7`3hO]oxg 
  Xp9h
 -ܝmL@hg\ :h,5hEZ	 !F(o0
g0Ll ,AЦLAX h	
		
	Ժ $  FLX h!eEtd	EuF
F  E%rBd( *3h lEP $Bҿ@ 0hommB )MX
hE "i0F0hmB@  "0hm ) 𥀁iElB@ ,@nOmXp=h8oEԿO 	O	
F5h;:hoP
m!F@FEFF8E۹O	C!FonsYB̿    SBF`C(e'oH!FN ( BEؿFoH`C  B@E (eP!F@F.gB7g*e(m!F !(F F-
 !(F RBF-%0h "e5h*mB( *3h (nH# *3hnB f1kojgD(F"tS
 igYF7	 t ,@T	K
J{DX h9#hn ) @ѽL F(O &(KDX!h=Hl(
 hoCo ugFg8Hd#h Q6 -H!h;Xooh>z2 "
Ba"- hn#f#hmBJi(j@ LK|DXh!  @0 ^ -OHLII|DIKbXXhFhkl+Ѩm qOaFEܰFF  &  T@P#hhAB	єmO cpABȿFTlEEQ '=FGEH
(F=|ED
ڹEGE F4qDEGE0۬BB  aB 0aE 0Xl(ݜaE
 0h hBܝan"f 
nBfBOEܴ 8 T-OFLFI|DKfXX2h(hhGl+o J@M $+hXl$ T  	h`EBԿ !!  !1(M) $TT    E T  qIaX	h9EڼAYd  ZlBȿXdYla BnZd  fO1-+hnZda!{ XWI\aXT 	hhB#TIbXh *HT	h9B*8`DXdYl ) XdYlR1hPa
hBKݚaIC!0hO +hhBaREDF)hmE + +#Kd+hn!1 f(hBlB:Bd+h nAa" nAd#1f8 ?$[ %+hn fJh ! FW)hKlB0hhB7Od
 )0 F T-GFLOLKDX9(hmBԿ )h`m+hB4F` 3FFZXl$պ ^+hZlQYd i	hBn2a!fnD6!f(h B)h6  030hBO 
 ,0$H+hW   FhB-8$ .+h6YliJZd(n"qfA"af ,	)hHl(#aa g
 G)iaeiB 	K"  PC{D JCXX (@B +[BpG ^ (,Kqq{DhBJzD2 M2N#}D'~DpD5  V  aEb cBO0 t 
t s  jCbpGpGKJ{D`0$X`HIX,`S M`XX]Yh  IXXhAHXh 8S0`)ܐibc0  <D8 #`C``a  Kh{DI[Xh F  h F hؿFh  NC`%'h~Dxa'h=a
OY6hub cj h0(!h`H``a(#h`@ڽ j !C s
FͿ   !hFK`{D h"
IBao B[Xhb!h`jh88 !$  h@ P  #hFI<`yD h"Ca haQhBb h 0jbj1( h@^  <)!OMD}D8FKXFH-XK"{D	1h #*h8F9+K "{D8` #1hD*h 9+@/LHs  "  $ -GFFFF	
 " PF HF @F8F0F(F$ FGֿFh " hHhjh   pF: /Mk}D#-HxD/+IinX2hiB. `jiB, 2h`jiB. IjXh
hB$ 
iBHxD`k8#h
+HxD"h*VHxD	*IhX hx
HxDHxDp@p  _  %  D  Fij* +#SCF +F!F"h   `-AFLFKF|DFX	&h (  AF `8Fjj6jAb#h&` 7F
LK|DXhB   !
FFOJj XA b`> T X h
@ɸp $hF
N`~D hDa F)j
JBXH0h)jJb3hb3h  Xbp   Fh"`!h@jh88 !c  h@ý"hh(hv)
)(( ( @d  FLj|D#H!X
hh '+h&`+j +;F +
H!X
hhBF 3FIbXha @9 ` 	L	K|DXh[!boH "#X` 8F	Kj{D"HXhJ% Fbeb F8@ 8 $hM`}DhLajH*X`8  -OFO 
xKDo BX`F0hj 	YcaoLFX 
h E$vUE2h O 	~ 9x  JE
 !F8
C O	ByH!FBS +FXE !FC C3hjB)i)FOaBF53h@!F8jA"B{!FXA\ F3hjbEbiX	h	hBW!FabF
: OO 3hjH0hi ) 7h;joBݫBue!FXtdԿ !!iSa 0ho Ab@F Z FFFFNK~DX(!h`H``ah'(`([(](2h 2  ,#h 7'`h`(!h"
a#h  1h"XaJbZ -AF\M\K}DXh )rФh
XNYJO,YXWWIhXh+R3h"F  aF FT1h"ha3h b BaEH)Xhxe)2bj3hiBm"haB:H)X
hxe+At3h a h0hbL5h      !ib: hsF (4JhX3hiO)FPo)FQ?(F"ѠhO(OO8o :F (! !@Fx<#!U0h{ fb F !h# 0-AFh')N`~Dh'JL(X+h PaajBݟa4/IM(wX!,hm0 $&FBqOa6FE4+h:hXlh B4+hmB dj<+h9hZlahB ݘa A J  "hFK0`{D h!BaS0hAb`jj1J  h@  FhI JBzDHBIBHB
 |cEIBKKKKK K`@hR`ۖP KJ{DXh
xe*,HLXYhhiBFHhiB ି   bh *HQa`!FXh#h+X `:``    F hhQ+Z+HxDHxD@ h@  8FL h|D8hj?K"XhJb8   8FLK|DXh )-*hSi +)H!X
hxe+## IHcX"XhhiBЬ ""PhiB ""bI`XhiHa+h "Za8 dpFLK|DXhFi )8T0h(JXhxo(1h
HiSa!X
h
#kap L d-AF=N=K~DhX8h0e- еEKBS % hEa5"hh) "" ( (	($*Hw!2Xh{ (!h # h`>#h%*F]a "%!h # `9hHb%`jj1%h`jj+h"1TF8h iBЬ ##iB ## hb= hh"A FA 0 !hFJ<`# hzDa hAaR hKbjaj1  h@θ h@)  F h@h  h@	K	J{DXh@Y h@v -OF_M_K}DXh	K#b FO&hWH`#hZa)X
hJUNYhxo	O	 FfjOO 
8z zѳW (rѠh (Сhl)s!U0h (BOCIYkX:hihhB/hYE+:JX h (>!U0hu (!hhKJi: x!h29hi$Za h& hh;`jB5OJXhix +'!h"Ja#IjXh NG 
aXa> .@x *
OHYh$)Xi
h *B pld-OFGMGK}DXhJ#b FO&hO	`#hZafjm (hѠh@E(Сhh)6IjXb!h (3OY;hi(FhPE
BU0h ('IjX<!h (/8ao @Q9h$"hh++*шi x ($xJXhII?hjXhGXDa8hiSajAb	!h
hJcjBѽO#> .ܽ pdl8FM h}D9 (h=+h8h
FF  h8@	1`jBbb IkXh )8 T 8F
M h}DK jX	h1
JXh8 !4  h8@ܾ8  8FhMt)}DбT BBR  !#h  `hB h8@ F/v (I"kXhBb F8@ȼ F!hh
hg+ih8 !yCFѠj0R @E@ Fj@WF4 !F"F  FO2 #0 4   F!M h}Di (8ѧhD/$K#!X hK&hX6h1Ɇ &"h0F` FfbHU0`8F& j}Mh}D(Fm
JzDAR! 0  a  0? 0 pFhhhN~DF hhB Fp@,x	J#hX3h1Ƀ (F#h`p@np2 -GFPLPK|DXh )@NJXh (@(hh)  (@GNY2hi[xcDH!Xh~!((hG(F>} (h2hoF$O 	2  ,+h1hh1KI 	F-H!Xh~!б3hT ih
hB0a>0>8 3h Xb $Кi # 2IcX hlb 0h0Ȃ  )	H(FG6  Hp
JF
IzDQX	hhS(	(
HR xDh`V!`c"F`
  ^ FhKP{DIXXhQ_qLSh(JV#`zD`C:*
Jo @XhbHhxD,Ax F`@Ͼ : f^ e h	I
KB{DIBx"`I[Xh
]  	KF	I{DYX	hI S0hx#`F⼆ |F2M3K}DXh@hh`"hSa&jn. 'j/(HxD!jHU0h!h  !NFhYB #FU7h3hBJXi#`!h `H``ahȱPiU hhB h@GjTB
IhXh +P  tHdhF	J	hzD) R h1g u"`F`\ 8FhMh}D	*g"q!``8@F`H)XhCh  h8@8& (hLh|D*
IbXh9g#U!``@F0>H"#XhJb  pFMK}DX
hzIc" #``kXIhyD
`V"`p@ hF (H+Xh(
IhXp@j F +R"V"Fp@Cp [ (0F M K}DX
h"0@\ h (. j(##bJ`!jXhiU0BhhB h0@S#h "h Xhh/h" j F8 !0
 pFh8J9MB}D6HBi!`U0hIhA*I* Fp@ha(i( hhp@
(IjXh6k&NYhN%IhX"h`V``ap h (.ѢhI*a*A*H#-X-hkbi61aHH!+Xh   "x
 ! FhFp@xp p H(0pFhh?+	*h*g!``p@ "FajUF c (`h``(apj Fh +O s #p@  %hF(N]a~Dj ))d) /h`$Mr#I JpYuXh.h8hBc0d!"jPC#jd!XCc0a(h;hiBȿa @ h`"ha h0F  h@B@
IsX h  F]b@M @B  F h? (h=+`hp !P hhB`!j#haXh@Ľ h@F hF0 j"F@F hF(h!j@B  F hF8H"! xDbj9[s 8FL h|D8hj=K"XhJb8  	L h|DPKXhHh22 @'  8F M h}D (8ѣh`jg+CFJ!XhAb8@( F !8@Uhg(IjXh
HxDaj )HxD8@	HxD h8@d8 X    
K
J{DX
hbI[XhB  `*	I"yD
`AjKBCb@  |U KJ{DFXhi8S0h 8  `@*t h5F( j"@{t |FhK*{DI[Xhi(
*HXH
hXihhB h@ hHh!jZBR @  8FM h}D (KXhI
բjScjXB  j8@@żjaj8@=8 KJ{DFXhO2b@̿ h"`#h`jh8 !  h@j  @At KJ{DFXhOЃb@ h`"h`jh8 !  h@bj# @ F hYPhaj( F@_ !L|D$1)
K" F{D2J #!zD4 HCXB3+JYzD` S 9 dS KJ{DXhy
JzDh8	I[XlHxD1I yD`B T P zT -O h & "ODF|H9XFFhF F -&.$W
hGD
0
 +


 % ( (а	 \    ( 0 +0
 Fp
2 FW0h G 
  BUH њF  ..&..(+
: 
  (	(	и а 8       (
 5-j
 
H @.tp)H $xDJ?'HxDE:  @@F $$FI0FzXhG$ 0F%HE (4= ;# 2 *	:"  " + F  dl  FJHzDXh ii ̻ -C[L[K|DXh ) YJXh ( ? (@TNUMYeY8h*hiBЬ !!inhB !!FFFF$~Tp?h/ *F  B@HS?KxD !)"{DOV/КB;H !;K)" xD{D8a(FFF5H &T 5FF(F0I6`Xh8FG5-?  xe+GE ##GE, ## +ѵB	"H !"K)"xD {D	H !K)"xD {DH !K"xD{Dr`
J !KHzD{DxDp`h	  LQ  Q p l Q ,l Q l P P P P  K !J{DppXLN`YYN*hhupASɅ Yvh  )jxAtJXh14"S0`p@  @LK|DXhA 'J  X` N <-OFM h}D (@4h+ѱy`(Կ& & Fh ( #IjXhIhXh
Vh
+O1
+o` FO:F^ajB hOBH+XhF*8FajB.h	(U0h@wH+Xhr`jmR >	 ; O5= ( ʀ.h
)
) !`j
 "  F!r" #O "D hr#'hpxhajWHU	`/X2h2;h l   )8QJ iX F`iejOP$h ((2h(!O1iXx 0hiSa i `i= -=$0i"8hh+F0h+тi+OO> G83hi
 i
0$H*Xh3#IhXhh/3h	9iHa 3hibji3h  iHa
3h9hl   XbhOܸ  d$8LK|DXh!= 'HJ  X` n <pFhL+|D+((h "I`B``afX3hKH"Xh)L T0`I "2`cXh 	 'h*IcXh8a"2`p hp@p: @H
I "yDh	H`Z``a	XhHxD@˻  - -AFh)L
h|DmirjKHhH%MgY9h8 % % FjTpTs:h:   HxDIcXh:`  `I"cXhBb '
#1h #`8hK``a@(	JXha 8`x H -OZF:F}D
hX9hx1ɂ U0h1d
*Xh + !h ) P
*XhchV+ v+Ѣh* !*ci8 !aa  `+!` U	   hX ` #U `hX`)y!U  )$#h+Vh8h*h:+N!h
)KаhD(H h JF hNh JFhQFFhXFh/+?+	r! h 0kO1l	xD:+`)U  OO1H	xD   ! 4U0hF *I;h$) zDɌ hiAȉaU o NhhBȿayDU 	h`(zDhrEv)v)(	;hyDo
hBb;hj(yDh0b   pbh (~hlU
U '|Ț :hU0h~| Ɍ h xD p p jxt!8Xh  V*09h  `EЬO O iBO O    `Fjaa v"   0v+i 0 V+    b;hiiBЬ !!i jB !!$y   Ȃ n!f
3    `jiJbch#  )  'XhF+}!H!d # 8hD 0 $
8hal
BlcdBU  h xe( +݋B;d d8ho LjbEa
8i "da "  F9hlBȿdiPa8hcjiB
 9|clxDhKd`j$9hal;h3    `l:h2     (AѸ >8ho N  0jyDrE`yD
`(+H$ BFCFM  (ak) # 8hD=lalCZxD`%lzD`%ckzD`	y! h#h+]
+[h )XѲhg*hn(N(bhF1jF hFh hZFh:*FF h!h)h !v#  !
FXFQ 0(%(zD(5xDh{Dh`yD5xD
`{Dh1jxD``hh+!aa  V( `' "(`#$ xcahXhxo+ htajU hhBck1bZabbc `a !  $ Xh1"U	0`0 h(
(((h &\U0h`ixP$ kX ]G(Bjb;h"Zbh !ai!i`jB	#h+$  (!jjPBPcQ	E!h 	O	 FkRk(IkXh &h )1ci{j,ԠjPk9dU0hxo(  lak)JajO
bcKcb`jb8b #a!h #J* <I c y          % %  2**:::::::  krj " F!8ck+"bc;h`kiZU0hhB&
  ^3F2F  1F8U `   Fh(a 
<  ! и  FIF8 "JU ` @𳀐HD)XU
hJXh	  F # 0`<j@b 0 +@ 	!! h HxD}I"kX` h(	qxpU0hdxU F^m F  FMH)Xhp&x FYgI FkXhx!P! F2KaNY0hx!_HxD~A<J Xhnc $ ȃ h)biF#lPIyDh(NIyDMIyD0h! #tU `
H)X` F# >JXh +@h)|Ѣi *y h+(s9h
bm঴ |<0Kh 8h  H G G G G H DE D *F E E F C C "E C JE C C @dlHt0 PTDX y }y t ;h3  ""d"`b``"a -O #hF8d4
	`~D hCauXh+h3[*  Рh](@hxD (h*.
HhxD (/'` #
mиM
ѡhBw[)O}O{ &+gjhAF h #[*""-FPhm)M) h,

0+h? 3      / *h  hm+M+qѳmwBW
{gj .S

   I?G{,2 ' .8 h3/{(}(@Eѻ Z/
ѻ /h7  ' 6(h0Ȋ VFhAF h[+"" #-F(*h2  7F?

 /*h 2 > ) % . !+h   Xbh[)])&-hhB}#{#!ib%hj bj-hM)ѳ{ ^  % .  hh *@ p)P)@ ho (@ހh]/hp*O7'O7nI hV	0rXh F  3gI rX0 EPhB ђ  ȃ aE
(Qh	B  x    FPF9Fbj#t ~
 *h V0   y)hh h@`hi		 a"  V0hV) hd%` %` F F)F*Fc   *># &8')`),*hej2 
0h Fh[)!O1'; ^F
= - *h F' \O hw/
    -OF hnNh~D#OPhP(g(OhP)O8 FZbJhXg/' '+h +k hEh="-Х0	)--(F!FO 
#hO 	d"` F  FIFJFLH2Xhh!h M` IF(FdQFF(F F  V0VhV(hGhiv(G(ѸG hhiBOO8!`FFFF hAFbj;F@h> (FYFQ tV0ha~rɎ `Ȃ ۱L4Y!hh)x h! h8!hV0
hhiB݂ao @g  !O<¤ !K"J{DpX
h *9I[Xh +4L|D%hN#`~D3pyxF *IyDM)!}D(FF F\0
 )s(FZi)#H!F)"xD p  p L809 b9  F9 9 -GFhN0
	~DT h, (@KHXV 9h @J:`c 09h 0J:`Y FLEУHBPF
!F0	+
$
:
,PF>l,h,ЖJBТaBhj  
hb(h+h !`2(h (@-H!FxD+jOY:hiBK(jXhhB˿8h;haaH,t
,FwHBvvJB?vIB +,'
,@5-,V.,@7h,a^,<L,@ib,Ie,@‘s,zl,@ۀgt,z,@Հ+jcH2XVh
h hBԿaa   !B  
 %SL)j4Y1  !+#hZl#hZl*:a   !HH3XhkjqHCCkbBJXh  *@ijlB BdV0hkj rQKCkb4H1Xh  *mlijBd%f-MsYhF@ ,^ #F [)IrXhBԿ (hȿ%L1YhF  *B F ?H2Xhh`V0)h E #K hlB d( h > \p ,(h @+  KJ{DXh(HIxDyD pG  L`5 5 KJ{DXhHHIxDyD	@ޞ Lb5 05 -OFFFlODF (  FhIyDhIyD2F#F(FeK
@
X h0Ȇ aIxXh "W	`	h

` 	 h"@/Ȋ  
O1"{#- ( h0Ȋ  hiKa!hi+\x *!h #EHO
Oa?X#O 	 h  	h,w#hiB3jGi (лHF}!"3-( hB  !#
F ('h "iaYa (#hiB	3
P  3
P  (Fw	
``
F F  h$Db,e F   -AF#OF#K!DX"hDibH9Xh#!hiB&((i~B  ! h hnBfB۸ 1FT (#hXl@Ej
 A%򼾜 TF h#(jaj@  -GF,LF,KF|DXhFV*(I(NTY  2hiB	й      V)@8`(`&ishB0F8` 0qhi0F=8`  rhiJA)`XhP
I.h8hcXrhGC.`v   dl-O #hNFg-~DhO	F-]--K-H1X
h28h (@߁	8Fp ( ց#%*-#-!! !|(:h`P``aL0Yhx  *|V0  @I@FyDnPI@FyDh
8O 
O
@F>1 A F (  "K-p*#-*-@]-@𑀊H3X u C I FyDJ#X` # зIyDSJY
x-* +#HxD>I@FyDIyD 8   @F:j8O R A ѣI F:yDDI FyD;j F+ МIyD AFI FyD        FIBFyD I FyDIyD2\ F
h7IyD ЇIyD!I:jyD#K-,Ѻ ?!
FBFN FhF(Fd3 FYBF  F;(F)F4F(F2*-	V
0hD"#-eH1X
hDhyDD
|DxDtD FO\ ,PFxATH2XhSH2XhGCF8QE * CFFX + "*-  #-.ѹ :IsXh80_!!2I FyD2 !F #FD8F*-?!/!"F # F F #*. \  N `7 8  
    K 	O J  Q d \   J V S W I dl p
F
F FhF !4"hF "p  8FL|D ! (K)FX he!JX`8~ d|k v @ͻ  -OFLFK|D4"X0hj
 !
fJ
(hX;h!T `!nh'
l +(m ()m "d*ekO@FY` m
fIgX:hFFH'XHxD`K{Dh1:hJFC (?N~D0`K9h F)hT hXF`@
л
ЄHEXF& 0I   +OcOdKbX{D``XF &IJyDzD	8h (cЀKX
h *^Ж
!IbXhӱ)!	(F!    H0
# *]J 
^iJT0hH`XhH`eJXhX`&hK`FN\H"X\HhK`"XhK`XFC\1 (8E=KEл0л% .@˃+hCGNGIT  S 0fX0hB2` 02hY S3`Fc0C&_&IEd(eJC (  Y 
&&@<"(F  (E"D pҳ(F ɚ;" ~* v* \* |* + + L\,f` !D	 p" (@Ƃ9h )2`T0hx	@YPT0hE %PJXhñ	 B
}v	 ;H!X
hD"
` D  	)*h	 (q+(h (@T0h )@JXh[a+i+@)h:h * IbXIhFC`cXhFAH`!X `g)PB r( '( `( (@r)  "H!Xh<( 9  9 
`"  "F
`O	  FHF  `j J   J  @
`   
LaEC  *++ 9n(N(g*
h !`=	h):T0h (cH"Xh2)F2  _ 28   (  )+ F#  F(T0hz y ((sBIcX\(   B  K 07)JB  T`!`) #+`  k``+a (@O ( Ja! EB #&HT	 `!X`
,;hh0Ȍ  +SIbXh (Np!D 	z
F8_ h`L_ d(\XDH`h\   sHT   I ! 0JO zD )
0Gh)hq .۹`|+  h``(aN~D0h (0` "
JXh +4ДH"Xh )/ 0c8h ()hiB#iBыH!X
h*(T0hIbXhKH!X
hjT0h8IbXhH!X
hz 0 +o8h (l{IbXh#|H!X
h *ckh +`]k (Y] (UtIbXh +PrH!X
h *K+h +H   !`gNT
0YhhIT  0hp  *bJPF XhPF*787QH!X
hF
3h#Ozp!9@0 !9RH "!X  2` FJ #X``*h:hh(5IBo^DJXh)hq  *8h?K{Dh!>JzDh( бnhƹ8M}D)h)T `'.`  @;h31IyD	h"7/HxDh*#``&]"x # 		Y(F + +a[ z# D8@td! ! ! |z! `! FhnM+}D `!h
h2h  `iIkX`hNjhHY;`.XUp1hqh8hB;`' @$ȼ"j *}[K{Dh (xYIhjXU0h0ȃ #3`UNjYF`c LQJXh9PH*XhOI"hX`NK{Dhv+MIyDh(KI2hyD,h!jHCi8@aUP)h
hBȿav+;`BK{Dh*@K5h{D!jho #Y<H5hxDh)b5h(j"8Mo A}D(hB3h8h(3h j)ho !Hb
{3h"Zbwjc h;hV+
U hxe)bjP`b!j )bjP`b (v++ F@^V+ F@o |P  <D8  ! x! N! !     -GFhOJ,hD d', 5ܿKB >ܾHB cܠQB Pa]_ ,JB NKB@G8, z, , 1IB{$, &, #,@0e;, ,, *, [+,0,{8, -,@	D, Ƃ<, ?<, H,  zE,@>h, ,], 4Q, ĂN, P,@U, V, ـT,@a, s_,  b.e, g, vd,@Ԃq, tk, i, j,@łn, p, m,@v,t,  ^s,@5~, W, ߁w,@GO 	cHxD0F (@_H9Xh`!*hBhXLdd>Y`W	 0hFpWW`h~`x  pxtjb2t        t`q  sb2Ʉ   O W0   2    j *I{X c 3 $'"I  {X` `h"(Fb3`nhjSBS,JXh0S1h"`hj8 !0F!/ l <|IxXh0S2h!`hj8 !>{0FO1jjtO	d $`taW hFɱNYh6Fd  oB
۲DEݘQF
 d lhm)MxYhv  - ( ,    sc F   Hbb (	(ѯ( $`h"o @JaW@#hb)hjjhP8 !+(h;#hi *݁\	:ai *݁\ )	) Xb(F%J $!`qaX#hF 9o BbkjB0ыNY%h-%lF  oBۮH1FxBD F+ 0  io *Xbb@  ( 怡B@Qa0FZ%qMlyYh(8!ho$
b(FeI "`#xXhKbsahhjE \,Jug\H;XhWL~ <Y#h3 Z!hiBȿai `(F  0FF (@(Fg"F b(F$zCjOzpXCs  aoj*yifc "b^1J,6Xh1Ɇ (FR!-jF G # d ^+FA (9;(F+7((h.0FP &AjKBCb 0F(j0FjjPB<k0Fghhhj-+@B !
FF90FP KI{DYX	h!
H"X`pG$S0h)v#!`bgpG |<-O 'F`O`F`FOaFaahDFFF1FHFaiFTHcaZ  h9H0FZ0hG  F6biklBailB0x (a (h(nѪlilSX``hS  #`alBܲF)+h+ h	il+  #h `?g`= ` @+h+9il?'`lQa`0PFiF
ailB4  ))(h(()h)ki `` "b`qx``B	 "h *^F``"a
 Qa`  > dl-OF !FFDFFFF1UP #N8 # #T7Z h G $DE1(]* ( 0DE (]3h F1` lxFc  )б	SBS F   Kp{Dh
hN F~D2hh@Y=<L|D h h#h !`p (   K{Dh@hֿ -AFFFFTF6)F "# ` &` h (	*hF;+:+e+  %@Dxy h (*xe*	 !8F
F, 0  pF Fh0'FбIyD
hhC& !h+ hh-h(Fhmah(Fch " Tpp H -C 'FE})FFFF7`0
e(:(78x (  F)F "KFc0e):)Sx )$#3` F  -AFMFK}DXh>OYhhI FjXhG(F F9Fq F!kg<F!xA8)Ѹ bx * Fx6 d~ dlOFE
D.4"x ^)ـ*ЄB .!xıKXh!(FoF0N,	,,  Fx +} dKJ{DXhFV+	g!R# "
0 I+۲i# "0
   "#O1(   `j} -AFFFFF  /3H "# xDO1(F*(FFPO1 (F "#F' F(FD ,H#F O1xD "F,F -9F F 1  -AFFFBP!f+ 8  e+\s+(F  (T .H /I>m(H (H:(D?:+(FF FF"4  $0] (	(h %|A] )	)3]4B42] *	*5B0FBѴ \ 0F8F   pF1Fp !O2F( F!T,F#h` Fpr(0~(	L "|DF]BѥmxB32# #F0@ K"{D 0xpG  J#XCzD\pG  K"{D 0@xpG  -CFKFJF{DFXh	FF )F)FF8F>< &$t DDeCE%p @ !Cy z -OFLNLK~D LIXsXhFh1GIpXO2 'ekFD1-(F2!DakHB	<KakXhBXF)F~h x G!3H  p  i  "iaCa=	  k7$JXh (ck
 z !HFF #I`krXhBCA)HxDHxD,$4h lb   rz (ί H$ + 8FL|D hs%`8   != 
F0@xc=   Kp{Dh $3F (M}D)h	)
J !*`"F(hC F+`>4F Fp   K{DhpG V ݤA+ a (٤0	*",H!FxD_@-,д_KBS   % K "{D`"(9JzDhHxD`pG0	*Fa+W8
A*K"78{D`-($   
J,zDD `IyD`pG L F B 
    -AF!FFFF( F(FKI{DyDh
h!8` F  K{Dh    F ! 2F K{Dh  ޱ	!` " ` hX:h&hhS% MF% 5O %DahB .` F ^ " 8F !QK{Dh   F8@G  -CFRKRJ{DXhF ,  A (	٤a+٤0	*",%
`&EI(FyD`CH $`xDMyF (\=M>J}D>NzD ~Dh (F!F  F0FR_- F32O(F!D;hk/HxDh
hENh>U& F F!80;F  F8F)U&!F8F FU& E&p N ~D7h_F8`  F(F3h  !h`X`rKJ{DzD  v d )( l \ f ( (    -O@(pNFF~DFnK{DhmHxD%, FI $#, F !9 (eH_,xD` :,.bOO Y<h$`H0Xu^JX hK]I8h"yDCF F`V0h9VI"yDNx 8F!
F$=,F !BF+FF0F.,ѮF FIpX7 !BF+FF8F	d F?L !|D!h
h *(FW'h9K O9O 	ذ${DhDD;#hz(YhJB
D 0hP' Pe PFIF "# ([ IF "#F`F ,?L 
HIF  "xD# (?>?H"1X
` $ F &u    HlD O ^
 ( .
 &
 p (-AF;O #.(`DFFF`B
(O(cK#(%(^
:(/(X"=(_(SO*H9X
hl#` 0F7#MxYhF!!JX`+h),0.tW T)" `% ` P#h + .H8XA箱-!! F@F h `   K{D  s Hl$ sF*MF7)K}DXh
  Hl F)F (.,!(F
F9 FiF#VFh  (1F  #)F FIyD
hh +,F
Fh1FR$ +hz(YhJB
 4(hAhB| r 
 -CFM !F}DO+hDh@  h1FS$ #(hz)ChZBڸ ЙB hP"0xHF1F7
IxXh +4  $D)hJhB p
 Bq  -CFF
FQN~D(F/ і//,-LKXh9KJKIXyDhjIHFV   2      S S  0 3 (F%9IpXh
,^ F8x/ѤT !<a/N F F^ (E/Ѥ4 !(A/9 FFB3V0h,/L6YlF2h2    !Y !
F8F3h 3 H)h2Xh"khT     p  D |`-CFOFF %DKXhaJ0FX G (Ŀ $1F@F(C0F0< ,(FBo dl-AFajiXO18D9 ( &lmF   # F* hiFC C   & cjB .~ !ZiFNh*&b`j@b@Ab`i$ cj B	ѦjiF3 hZyF$ &`j  BѡjJhFF@FiFc C`jB	jBhF 0ц # 2 "I$xXh nc   Hak;XhB)HxD
HxD?k *
 n H  J #zDFP3pG0 -OFdFFkD$@h8!UFs`h_( !oJKzD{Dhh )h`h"j`ik1OY0hxo(
!lAj7.
:>O # !D p`~` 08`h PTi lH!ro Kbll`Y 
hjXE /?` 'KF{DLhz))C F
 #6hFB' /Fi(B,#j #F`jBѢjo NrEFFB0`i 
9FG ( 7zRE|JzDhB ihCh! F ( π '*hR'J'7hhB(h)z 	 !D>!Y0h (jh)hPQ  D 0hFh!PD0  pxhG)h:Q* 0hh(hP* c hh]*h!B* GK{DOh 	h7)h\A3Qh Eo`h=;JzD`3HY 0h # "  #l. &0IY hB .#l+HxD+HxDI)HxD(HxD1F'IY  hnb $ Ȃ y!l )uo B%mxHxD`   @m * 4    0l    H     
L
K|DXhi *p$T0h@IbXhԽ@Ii K
J{DX#h(  #  !" (!hh' 8  Li -O왊F #D 

I)Y@Y #hhF3./fe     Ѻѷ?a o ?i O  "V@ ( l L # ( &hiA8 )1=.@ %.F  G! 
!XA8py{x * &  ( KxD9hhKhhz	 '	.W )8 ( /F ( &"hi "Fr#'hioF ( %h "Fi   #h z3 O
 'h  7el    
 !" &	 !&pFyDxD/.!h pi;hQBȿY88 .%h  ih5( x!h)F88 ' /@8 ( (h<!h.ii@hs "/, hF  (Y  hi &hY  i SG9a#hiwa^ &xD h2F   #X 0'hhiB
" # ( p7 'F\:F@F ?Bx *B ѐ 8 ##  #BڲD>Y0hJ8Y h@FG6 	*!
 '  '
S #
	 
  RFu

C
B*z
S X (_2FAF` #BR
J
BDY QF
 3B9F

z h "i#hiQaia_B
"h !(Fi"h 0n  TiH qc  a/#hiB@a .?Ѻ1pl$Yp;hñdY0hG
۱'h 0i
au8HR'h  iYa%Wu"h 2l  ?=#h3  ~  OJ	8
A(:w .@(FFZ@F ( AFT #	hHKBD@F4AFB49F "(F'hiB hi
aOY0h0  5hB#h pn  VHY  hiBa(FA .M(Fn hF8FXkF ( ǀ	h8F
9F2F3F(Fq8F(FEFxKF ( xhZ9F(F2F h'a  'zBgBB
 "(FFQ%1 (c5 +O#h a (FEFQBn	x#(xA
 !
F
 ,p    !y#h 3 EKB(F8		7BE0.  #4$P 8 '4o A #' hiB  9FF p Uh	(B  "%K ha .8hB'ha"h5a!h #a#haa.#h
Ѻaџiya `3ȃ 'h!yb=/J  Y`! i  >w i dl -GFFiajFRM81}D8 ( NJ#lX0h F4x1ha#+EH!h+X R :Fh # (0hiZacj !iZF@!l)6hia
 i 1ha6hiPa*Hbk+XhB*&h.'K{D&K{D&H*.X
/0h$IFyD"IF;FyD/I0hyDvI yD0hn0hJ X5hl cj 5`j`1h (B%^ pH4 fX    Ȕ A	(00pG$(W0pG" pG- pG-OMh}D#x + $HO7N)X~DH
hxDK{D8FFx FAF (yJzD  <D8D
KU  8E`  "(чIyD
hEW 0 +Q
 O 	" @Fc}H)X
h' B Q)tKXhPFGFPFaF { D  *PF 		0Eڸݛ (`HxD4/67%/Ѭ F8YH.X1h )?i2hz F.!  (QHxD8F!8U0hF7h F:! (FHxD  9FBIkXhFl5h F%! ( F%!X8HxD9hl)Fm ,5hm(F80HxD)F[(o5h F/! (&HxD(])FD"K{Dh4h F=! (	HxDH!FxD h+B] # " )     l ޒ H z [ 6  
  -O+NFF~Dj  0  !4@F!`	KXhiHAD7 ( $PO !(JO 	MFF{FLFX<hi	 i  , ;hhih}ѱ 
j!
RFA)0_ !
CF  +Sй  O FxF)*H -Fк	CM & B "XM FqYhG(3ܺ/ H2X FhG(ݺ KxXHp FJX)h.BxUEpPj!V0h(?к! F` 
F  *6 -7݄IsXh	0J1 FXhGAyH3XXFh
GEF	h3h1 FGCO0
XDhGF-
O FO  F&eH2Xh )@		E <P
2	 	F  F
 		!F*FHF!		HFp;h	i@D !
8hi ! h7[D 3 FF F8FBQFBFtT;hhi PFh:h)F #iB;h ! a	I<hrXq!h 
Ea$s:hTb  $BK= ( FRZ t0d-OFT4}DX0hh  ik7evU0hPbiB`jj'9bhk"lڹak)h h(`j~j\ 	`iD`F x d#`hak) h(ibxcT$E!Xh	 ( `h_(|Ј! (!`h! " FBWBWA F ѡh)`k(#iSIDyD	
`F	 E KIH{DyDxD
`!` " Fa(' ѣh+4- QF``T FQFJF('J!HUxD  p5 y(H(X]8F@ iiajP17  H+XhFiI# F*F +? piBa(F

F$`DFQF DPFDQFB (F9F "5bjB cjiZi #  `ch)@"h*4ck+ݜOY8h	ackX9h7 (0h iJ8!HX`U +Xhi`Y  rck+@Ȁ`k K7ck+H7Q (?QqO$!Yh#h+uIgjmX(hiBk3aij )8'jj`i'h (5/x2h`jhB
lB8F !!h)k8 "  "(F!KqXOY9hiP7 ( 5h`j+hJBR ;h
  
 aakIFs 2hhcb`ij (F	л `jE  !W;h  1hhEݘa;h "a h(k8 "!HF;h 3 :h3hihB !  
FF2hh #l;1hbj %#j50h n  0h4 n    `V (d0 v  F < 8 x pFNI~DhjrX+ %hh	7AH2XhiB
Ci xh*ѭf  "Fp@a  p $Q -AFHF!FxDL9F|DF	 {  1Fw@F%KXhQ`NYhpF%	JXhX`0  !O20F  P ,-O #HDY P L*h!ACq F2 
n 	w Y@
&hi/x[F# h[FiF]Pc!hip8 & &'hOi %XaCFO7<S#hiHa)	 hY
0ihhB	 !O
H&F,P[F	FJ#hiH (Կ    @ .@#hi`8 & )&JY0 )1
	 *,S!hhihB#
r0 xH'hiP		?) hi=F"hi7F! hhi
hBT! 8    (  - 𷀸 !F
%`o @#hi)K (
%WH #`Y P +` @!XF :F   +! !aD
 ` .u (O %O7FFE7 (r (
 !
F"h !i[B
F /FE - !(F
F!hkBi !
F h #iJ!a  Fkx?B #%F %.FS3FBIY h *?  *F *F&Q!x&FO7#h  iaJaBڈ0P D-CF=MF=K,}D<IXU0h 0 3  iaj816 (\ 0 3 k  50h nɎ ?&K, X `k9FiB  3hihB1a 0hh	HF) 02h3l  ?IjX    `k{IjXh	j0kB˿HDIDbch +ѽL Fk  i "akV( F !@ep #(F AD F$ x (q "F F3F ((F3F (w  n 
X Fa (Y(Fn ( 8    F( 8  p-OFMKF}DJ !U
x!  X'h}#h 	O	o!rp! hk'IjXhFF ;   (ёx(
<0+Px;1  P8 / A*a8(; 
H /XxA)a8(@0	*_A+٤a (6(  - /?ФA*٤a)7غ`,@"apU0haxa$A$`,ԿZzDU0haxz$Z$     E FT 	 ,-*;'  '	 XDO 	
!e2/
G
OF 
Z		"6	"
BZBBC		 ) '  
q-(
S
FhZNO
D~D(C
SIjXhSAx 2`  ;J 
0F (fF-'{)0 
S
x/X/{
H
1	"9K {D0)	5K !" {D3J	zDh !1K !"{D/K"{D$!
0,

*K 0 
J )
 #+p0F0F0F 0iA aXbhBBޮBxX(jj J     N ~ ~ /(8F
F
.()('(#("%(=(_(:(L F !)K{DhhB F ! ( 8%z)h)` z8  8  =(-CF
F
 e&#@(8 "$ F ! (O FiF #qF  ,D0 -| F,Fw FF -q F1FD p  $~h,F9*@F5FOFh FO2Q&6% (%;hZhB -A F!U $;X$ 9z)DLE 54Bh! %2h R% 83z+DvhpB45( $O
	D%F ` shB !U  F 4  *-OFFFFrF F/"0F !F&Q=0F)FF ( O!FF F1,F F_ HF;Fd ( ۀoK{Dh h ``) -w<
+!
+   " #Fw\
/31B*%w
(3O
O 
ah )"z;OO ! {F ( O !hQ+ G+ `hE hD'` '\
 
*

SESF BF

E h;P+ F
HH (93"hR+F  hP+  RF  TF!hA+ 
 B

O WDBںF*"r )B` #`"K{D`HxD`	    -O/(FFFL=( 903@HxDGw>IyD@8FO2#Fl_(jS (d6K{Dh h ``.&   0Z P -ahB! F (A#hS% H% 5chOB h O AFXF5FXFFL BFZ .&re`ѹ 9"/K{D`JzD`	 y 7 p   $  $7 !T":-OͰL !K|DXhKT0
hFhH XzMfY3h(O	O	 +YTOT`Y7hhiBЬ !!YhiB !!
L9 7  7   K Xh9xe) -kH'X9h)L  qF%C
HD3 0h./6ho L03jcE11B10G{N '
%>FB4H!Xh +@22h )RBOBLܛIcXhV)v))b*F #hd(Fo KmFB(FPO 
B	o KYD : PF[Fa?  hB,<6K1PFXE!ȡT
 0iB(F%  i 3/7(F5 o C"6 
hBh<V%dhT	 )VTJXh-NHo N!XhjsE 01LJ>2!zD3= " BB
 @A 0h>=JzD  
  h@A4J>zD  yzF#J2!T  io>23P(FF(Fj4(!ZFF(FBQFB;B8  i 0JhzD>@A  9ࠆ @A ov >v Rv .v  hi 
h@AJ>zD  
 P(FI2FyD(IK  dX{D%h#`%`
KhBФMu v | Kh{DI[Xh`pG < LKJ{DJzD@
iDB1B
HXh`pGHXht`pGK{D@0pG< } n} FKFL{D@|DhEu`IcXh*IcXh
9hBh!` J} h< ,hhpGKp{DL@ %%|DiEOHpN~D@a -Y
4Th AH%pI`Xh@ p| < | hxt*Xx_KBS pG  pG  -ODO $DKD@
@@@XDhDDPxSFA (٦a).,.:.  X+(FYFF (
@ +F(FIFx@
,B
(FQFh (
@,.,4)x9*F4T ,I 
0xXp Cppp  p; |Vt 0- Ht -OFFFO O
% &S&p8FG!FF8F*F젹 `],(
H,5da] )6"x *ѹ   F "6K-A{DF 0,xa+ Y0J#0NzD0O~DhFDx xB	t,Qx_)ѻa<&03FYQ  *t,/nx_.,%(F눳4tDbR )"L|D4pGIh(F븱6sX  (
I&yD4@
H &xD0@ .O4 F> z   .z   ~ K{DIhoLYh8 #  # 	  	hBhS \  hQhf 8   8 dpDh|D + .iDB  D B y<BbE HBB N *  _@0 B BcX J ,>BB E	BB (XB@1ID BcX > HO@ہ2DBT0 VD B @	DB 2HB@0D	B 82B@4DbE @DB 6B `DbE@'D B 3 -3LD& BT t=DB GD B 9	DB #XB@x)DB !B@l1D!bE 4	DB +XB@\D$B , .XB@P D.bE DD)B 2	D' B (CB@:D, B & (D*bE@-
EbE$E B30BD1B@E+ B/0B6E"bE@
hx ( c
hxx ( ch&x )  c
h )c
hx ( c
hrHB ހcpKXh3h3lJXh3T0h3fJXh3h3bJXh3h3xT0h3hchc\T0hch $chchch ch,ch4chch<chc{hcwh LcshcohTckhcg7I`Xh<Sa	hc]	h\cYhcU
hdcQh lcMhcI	hcE
h|cA
hc=h`3:h c6	hc2hc.
hc*
hc&hc"
hc	hch c	hc
hchc
	h	HxDKXhcF`8 m .K{DF	i:hZP LKHC i@EBEB!2B9E+B!JB&E"`E-HXhc'I[Xhc!HX
hc<S h c,S h cHXhc F@c #F3 qLK|DJIX#XyD h[IHcXI"XyDh#Q
J
KXX#hIyD@E 3 s (s ts -OFPSJDZ BQI&yDOK&{D %T0P-B # #+`0BB %Z@CI-%Z@%`%<hb F"F FZF (H0:+D  )<;Z hFG(.-H  Z B
x #
hG(x,( @BdZ `  		E۰E!x,)4 x O  -?uHZ  	 2 br r  GF@ABFQ O=F% ԭ^ -a( 2 =( @Q .xt+
Ax_)уx+x"PB
"8 !F +     K{D@FNh~D %'h - F>_H  JV0XOR  U F9h=h!F(F@,h(F lq 0 #K$J{D$IyDXh F& (. I FyD (*I FyD (&I FyD ("HxDHxD;! (Ax0*8)рx (HxDHxDHxD
HxD
HxD0 5i 'i &i i i h h h h h h F-Mh-J}DXF ,+IjXBU0B5h -(F !$h	(F (U(F$hF F@I hyD2h@91h hp OS"hHh*XBhOR!h@ h@r@
B/  4-G "%LF%KF|D$OX# 2`T 06FhIbXh`3B5b(HxD
8h (Щh:h *HxDHxD$(h!h= (FQFS
H!XhY "    j. O F . -OFO`FiDF ( 𿀻
`HxD_K_J&Y zD[HxDyYHxDYHxD@FF_T, *A (?@F9F@FgF`-8( %@F T.9F@FT Y0Fh,(J%5. 4T <  +./H!Y  hv (F!l`nF F $#
 h6.!&Y
`9FZ# 2  #FB1S43DEh +PFO
h - - f `n f f g 8FFF(F (	KE{DXh@iIyDKh\a@`8 l l F (K{D@Davl >HxD=N~D	<K{DEhq '  'F (b5IyD#GV2I FyD (/I0KrX{DD`B.I FyD
 /2<*I FyD ((I FyD (%I FyD (#I FyD ( I FyD (I FyD (I FyD (

J`KXD{D`Eka F@4 Ae + Tl [ e d l d d d d d d d  k d EL|D )S (.ёBI`Xh@DS8K9H{DxDh8K{D`7Hh7KxD{D`6Hh6KxD{D`5HhxD`T0h@@+I+KyD+H{D
`xD*I`yD*K` 
`{D/ (.АKXhD@QJKzDH{DhxDh`IKyD{D
`JIhzDyDK`{Dh` D*   X  $ 
          d 4  l r t R p %
LN|D~Dh@h)E&5 4#h +pi i F `L`d`l```|`T```````,` Fu`4````@  KJ{DXhB׻pG' L8@K4{DD`DhciLSBhF h%`8h h 8FKJ{D hXhFB(h `8' L
K"{D
 3hBHxD BhC`pG2j )pG@h 2h 8
F	L|D ()F) hP8KIXyDGO08*' a -OF؀JF
D	1IX 1IyDO'FD
D0 +L(F"F (FPFO 	O	 9F!TF  (hF   F)FKIyDDihB `չ (h,<X0h*`NX h F9F2FO& ` g @g L-G0O 
O
FFD !@F@FD0F (qX8 '  'Y)DD
iZ  !F Zi3FFL(hDD{i+`h!`5BDDiB#JY  h5" Ci+`HDxD  Dzi*`i`Eѣ (` !@F)h`1F F
h!`H1FY 0 FhGU f % f Hf $f e  $MO}DDhJXh)^

NYh2H!.X F2h74D0Fc (н@ $ re d-AFL %O|DD
hAI(FbXAFh5E0F= (KXhIbXhB8T0h.i0F5ch .-h -ѽ 8$ e d -AF?Nmh~Dq  $3-)+)OO8SPx08	(V X*hq  (	09	)CG$04xZ,*ACx +x	,t{tA*` tK"!F{D0Fp #FCtXQ  V"BV" tA# 32BtO1@#  
m# -OxFFD!
@FhZ PF}DNX:XFXhhX+LU0hADDFhY ل8DFh	, hyD CU0BF
 hx / 1G (  -hXB+y# hYyD:F:F(O ԉUh@  ) #yD '	U0BF+XМBhx.)h0
x.*1 ( s|hXBtU	0hFntE
dU B\9XBѧ{ ( XL9XB!D)XhFH<	<xDyD !9`0)X;h + (	(xDyD  8`h BU B,~8{DB hyDU B " hyDY(oxYF (@hX (@Z8XBFE " hyD7(FL#h d \  F- hxdSBS B 3pDHF ( *HFAF h TxDPxD  XFs  F-48XB (?$8XB hyDt8XB8XBF8{DBU BAP7{DB@K*@> h,! (@9  7 h	!`\EF ( a]kXB@w'YX  9h :h(X|7{DB2! 4h " hyDt(  K 0(      9(xm)@k( Uf+XB" hyDD(Z#hx+X )" "`LxDB]#h*X	h )P7v@FY;hG 	  HF	O;	x + jXhG$:hF@FG: 	J?   ( ,(Z	$  )Ax:)x +?x * ,*0		x *8DbEW00& hDzDHHF0	)-(WFyDF8FF !:)O  F   ( ) ,* ( * ) @I \+Ax00x ,+x + FU0B +XB FFalxDB	,#hx ) p7dPFo@U0hx Bp8F(U hB(`8FhXh   !-  0<dE@7< 02 .U0B hx )?&yD9+XB hyD+XB!" hyD(	o! hU0 0 a!` h jX#`+XB| hyD "_t+XBl$l hXyD^d+XB` hyDGX+XBT# hjXLyDk(p<+XBF hx )  " "	F1	 (   {	 0+XB hx0	*2)?Cx +􊬆IyD"kH+XBHI*XyDh#"(tpHxDBFh "	U0BHxD	JXBIyDH*XBIyD	O TaBIyDU0B  hx *|D	۱ 	9x  GIyDF8FxODFF )Ѹ кFU h#`U BY,(VJ0FXhDFhB`	i!PF	 h4	U0h`P*0F!FUJXh`B 6 #laB#U `   PlO o NhjrERЙH>JxD Fh  )H XbEI 3IU3 h	 (4D'0D#,D '(c$Da FD\FDW'Q 'DPDLG 'GU0hx *DFh@Fxc " ,8c &c a] b a  p Dh  l}  | ` Pa l`  Y X |&_    Ҹ x|ظ v^ ^  dlʶ X - wX \ L[ d^\ x\ h`\ Z [ t[ 4vZ 2[ ֳ pU |U 0U U :T 5U  bZ 4Y (S R R 8gS BS S R eS Y -A
FFF=N~D (&OAFD@8F%hQ h `  ȱ 	IsXh`2B3E(` h(` o o O0D W Fxt+  Ax_)тx *x + (
D@ ( h@0|V HxD (K{D@@i   CQ LV HxD (K{D@@i     $V -OF #HDJxD!zD
6T $S@T,    8FqF 8F1F (@TT<3Q@ I!8FRF8FQF''VFHxD/, 	F T3hT  +sK{DrK{DrIZF (FyD$7
7nI(FZFT <yD (iHY 0BhIY B   !PFS)FPF8 ((F (򁀛YI(F2hyD (ڒT,D' BDbEQI(FT ,yD3h (~(F (yO
T<(FHIZFyDT < (j1h )=BJY BF
 !0F"F(F: (S
x *$OP F (D  ZF OS1h(FYF"XFb2XF^(F"H(FE ($ۺ  I(FyD]ر7/% 4 8F (?ήKY
O D	     U     5 O O  kO >O 4< B 8ML}D|D FKȱhhhh`i0hU0h`hhba ` 4#h +ѽ8@0: S L/@ǿ  8ML}D|DhBѢh h	KhX
h`h `8 4#h +8 R LL|D Fh`i
hBУhh `hhhca A` 4#h +\R #K$J{D0X h((  	I M\XZY!hhB  M $pZYM`S`\Y%h$` `\S@$h<h
`4`HhXhh (`` ` +"
`00 LKJ{DXhxHXhpG | Fh`Aha`h`Cjcbiaia jD  F@8FF  pq8@׿F  p@ 0,-C
FNF~D ( n/ ( iKXhF %JS! ND% *@K F8hs! (@A= 'i (@<DU -@7FD F !KJ{DzDhhoHHxD hhL !|KJ{DzDhKh{DJhzDK{DhJhzDK{DhJhzDK{DhJhzDK{DhJhzDK{DhJ hzDK@{DhJDhzDK{Dh~JhzD}K\{DhzJhzDzKh{DhuIyD8hrJzDThXoHxD hmK{DhkIyD
hjIyD&|hHxDhh(6eJzD0hcIyD
h,aH6XaH&3hxD hP6]I3hyD
h6&4YHxD hXK{DdhUIyDlhSJSKzD{Dh3h@6x666phO2&<H` %DIyDhqCJWBMzD}D+h%6`h!D FC F !CĹ'? %``V%  0j Ȩ <   n   $  T  Ĩ ̨     ̨  Ĩ P t  §  J    f B R  L    ڦ f    ` K
J{D
I $XyD`hF	HxD& (D@Ta 4 F H L KJ{DXJhzD<`pG   KJ{DXJhzD@`pG   -CFKF {D(`	xD`0FB\ +\($"x *,*;B#F\) *4<B،I F"yDHI F"yD4"*`I F"yD4#+`l`!x<)"F ( F>(`(`~{xvOABD

ppt)#F`x_(ѡxx ( ˀlIV|yDSxpxp  "F1F{A*٧a)٧0 	(_/*/ / O 	 F G7pBXD@h !;Fh -+++^+qx=)6=+:++h+o)`qxy!)`*@KO0{D`>JzD`6n` #+` *^ѻ\6n`+D6I@X hX B2JXBЃB0JXB"B*`
#	+J (`XBha#ka F G8$""x *,*;B#F\) *ji*
+
,*74l`<Bؽ  , G G FK K ,K J J J L-OFK{DHtmXH $hxD%FIF'FKyDJ{D	zD
peh+O 
~O 		0FY "QFX7 PFK% 5		 h *Yh(њhR
JCF /G "0FIFRF *@Ah 70FD (@<"t!0 _#1>!20 3 0F 54  "6 % (@ 
7HF K% 5

OJ\ h*  /UЎiH 
Xh JxEГpDAx>Ѝ00F1 2Zx3  "4 F (@< 10 0F2 3Yx>#6 504 (r	h,C% 5		FOt
O_HF/F (!
0qeF
< 0 PF"0F "` K% 5		HF
F (*Ĺ`   h ` JzD`4,кhB ,?'- ,Ѝ , ,? 
0	!0  |I xI l ݷ -CF $` 
Fc#N~D(` (>D 0B
|D	 /F HF  HxDh )LJ|DzDA!hTV0hL|DH1X F	hF0(h},` F*h` 8`  E E E  6F  F	K
J{DXhRHXhT 0     8FKJ{DX(h  8!Fp(ha!~ (H!FxDw 0 8 8  |~@ 
K
J{DXhB`
HxD? ( D@hBs` b dO@ E ' (K{D@h     D -AFH #O
FxDDȹIFlzXD`hb F!4D8F (G(FFP0FFH(F!F	 F ?  dD -OFlF	hd6DFFZ`XX62hZ P)hFZ h(DVZhC<DHhE ,V@F Z0hqZP(h& *66ZP  %%Z0Z BZДBKh (е%`ZP	hhBU`ZPh )U  `ZPZ Z h	hB OB5Z	  hmB4B@<h7 + 5   hmB.4*B h (4 %%`ZPh
hB`0ZP3+0%Z0B  43	 Z B4  ldE ntE )@<4ZB h(""` ( #` <\dE<5+ %<UZP$<zD`Z0h ) Z0B
h ) 2hBP cB@K+\$ %@UZP`4@{D`TZ0B, h (%%`ZP2h  4 AE 4 P`hBlZ 0h *e4bJZB h (Kd%%`ZP	h )R *OLZ0B "`1Z > bB
 1Mh/ aB+6 + %VHZ PJZ tZ0hEJZ
h F 
 h *   4EHZ 0hjO4J=FzDF8F4~0` )ܽHZ 0hZ?J8F#zD=F' p.X1hB 0B5жOZ h'`JZp8h(  ".i.ZIH7hZ0hZ 0zhBݏBȿ`I2hZ0hFB1hK;`HxDe (h& *܀I%VZP`Z0h (yJ '`ZP~IZp8h0 +݂mB *݁IZ h tEMZP3 +# m0HZ 0h )  aM`BrBiM`ZPZ0h)cM "`ZPuHZ 0h )SM"`ZPpHZ  hd1hB\HZ 0hi0hB qH`%`_JZPZ0h *
OIZ h*` %`ZPlZ0h )
FHZ  h) %`ZPLZ0h (,IOb`ZP4Z0h (&J %`ZP	!DH$h`DHhCp`:ho AjBРh
K 	 PbDHh4MZP(F p X ,C H&  ` ; ; \ HH<T,@6> $> = 8s(L(K|D(NX~D0F)hI:0F%
DBh J!Xh_HxD H*h!XS`-hHixDHxDL|DEhv xd(J)F 0FzD#Rh!r`| . f8 < d  8 < 4 FK
J{DXhx1*2*0*
 s  0   \ 8FL6< &xWx|'-(FH@(FaH=8-OFDF4
F|D FXh!$Xh@DHhP 1@F 9FT0h;	p!xD HJ `bXBTdYh`B
 (@	@܁8cX`aBHF:F$bB$6E
 ! +    #
F.`B0FAT0hR!IbXB+Os!Y8h*hF (@H9h%X(hwI(hyDH O1xD*h#3 ( ~E(F)FB0FsT0BF@h *iMt}D)hT  )8hVVVVk +HI#XyDHh
`#XIHhyDxDK
`{DhIyD`MhK}D{D(`HMhxD}DK`{D)h`h  	k )·HT `%X)h	 #J+`HzDIMxDyD`}D``+`JIyDh (EЦMcYhV&V&k +ѬHJxDp¡Xh
`IT0yDhFhBUKI{DyDhKh*`{DMIh}DyDK(`H{D
`JxDzDhHhxD``K  {D`H!XB#ѝI+hbX[pT0hԙH#%X+`H\%X+`#`T h1H%X)hH%X+` %JHX!XB
h# yBьH! "%X6 *`nleE69F aT0B*hJzD~JzD~HG ! xDO1I` B
Ѻ 0FuH%X :sIbXh eE )/ #d,T0B	*h" !IFJF4fH"XBeIhcX- 
cIyD aH%X)h0x%`pDHhBp`PIo LcXhj`EЩh
K !Qb@DHh  0T  %W p  ,; ^; d(|5  ʒ  B   T   ڒ Ȓ F   Z v    r ^ 8   h ̑  h ܑ ` H<@@8d3  }3 , 3 Lb7 .7 8-GFFFFDCHIFxD6`AIAKZ {DFh +/;HZ  mKOF*7ODh@ FF (::i_!! )F8FM #hF`0F F (:0F)F"4D )F4F ((Џ0 8F#\0+8HIF"FxD $	 #F( 0F:FOF	F0F:F+FGF F  G1 ,5 05 45 0 -OH8|DX x*h- (@  	"	cXxh*Px
	x&-A  [ ! SH"	yDp /" <	"FX"	yD	
"	yDt 	' 'x<*8Cxt+
хx_-x*yY		O		`&>.O		0>+@ % 	PBxt*сx_)0WFO5>&	`n		802t*
Ax_)цxFxƹ		O 	 F	0A-٣a*٣0	)_+O		 & 	`F 	h   0F				0 +	+	Nx=.++ #		!^+ #!			-+&		 !
 # !
i	` ( ( -&xD
E l1FxD (@Մ@҄?. ҄F  PFF
 (BB` 
#`0a   -ǄDEhS@
 -DEh3 @cXhB 1F`&.	T hYxv)њxi*xm(  3!1FxD_8Yx! )	)@q?.r/`\1FxDI (XT
   -.4DE(F(#Xh )*hEi-i	*#XhE 
i*#XhEH
.F ( "/|?.  .   	@! 	M=. :. !. 5&.R 8     | Dri)<.`$XhaE.T!DEh6 и	@ȃ/  O2 :F(FYF1FxD ( /@ H&.[8O  FIyDris<.JXhfE(f!DE8h]JXET0E#Jx<*^*x .	.Ѣ0	+F	a* @@NYE+Ix-)09	) F & & !
FF]0(
љIxA (x) X) !!6;0	)3 +	+@" J
 0 `rC 0P!(F YFF -	DEiH  &.'~8 &  &J |§XDENixF.dT0hX(F1F, (0F
<.H!DEv h/FAKFXE
Gx /I8FyDqT`E"  x0;	+XFj((	pxH"Xh pzHxDyHxD  3hYtIgXEHFx0>	.D "d BFlI8FP"yD\_p8FP"T_HqdI8FP"yDJ_r8FP"B_c]I8FP"yD:d0SP!8F
 & Ul
Bx>*	PKXEOOYE0 !
 Ei~ 8
F0	"@F60>F ( wF{\+Cx05IbXh +j4H!X
hG(Fb0FJFND	] W0 . . B2 s. 1 1 ,d- _- 0 0 / + b/ :/ *. - L- \! ) ) px) \) D) dlx#
 !1p2	 +	+w	!(F9FFر8F0F
F0!@F78F ( Ł1FE8FFFO 
 AFF)@FE,,*bF0F9F0 ,(pFE<\+

O 
63x +
 ) 38FAFK
 +7 J
И 18x 
O
 F
@FF8F	
9FB 8FAFJF8FF@F|	
BxAF| ,"	 AF8F1x	FE	 ,( >		DHFTIFBVոF F
ѹ,)	HFkHHF:IFB@F:8  )
YF p (FF (k0&.9F-бFF}\/nx55/x /	/ &.p2F-/ptN~DtIbXh  -2 ; -98
;8 " " (F'eN~D$.F"dN~DcN~DcN~DbMbN%~D& # &"[M[N~DZMfY%B\+Cx0x3} x=( +	+= .:LO1FObY(hF/h8F	oBI8FyD	(hRx*h	X #3T(h@AU7IdX hB(h"`c#h  Y!`81  .IyDF,K-M-J{D-H}D-IzDxDyDx	 -cTP+hq$N '/`
 Y$4`-,F,`7` -hB  
P/" 2$ $ $ 1$ 0C$ L8$  D  # V' # # -G"MK}DX`HxDXHIxDyDHIxDyDHxDF(xHxD!d" &DDDV  ! x/iFFuL|D#x F9F( (QF!F+IF  F]6.1_HxDrQ]HxD}   ZN &~DHDWH|axDm (@ta  SL(RH?K"O1/X8hFD%6.YKL|D0h1 &Fhhh0F !F`h`h`ihgaA`6 4	F> ()Z  pB/H(XlFH,J-IXyD%h `8*HxD `0FA%HxD (#hD@hKa@` h%`  d
# # ! { # " 7 @  C j Y" O" % 9" L%  ~!  7 $ Fk  9L|7
xB(
h)Z x ( x<& &BH6xH 0    I "yDi `" 66FpG  KJ{DXh (pG  -OF$FHKFDFZ h|FDJZ h *RBJ FZ G+h?JZBѸ 0` F  `GBG(`, 0 F PG0 G0` T  FG 00"FG)hBѸ 0` F  G #(`;`9  FG0`# @FG")hBѸ #;`(h0`x xE
Ѹ :`*h2`!x)`
#;` x0`4 x,(4#x +|X dl-GF FFF0` $
X$ O	KF)3h4C	B =`4  I yDLK"|DX`  I yDK"{D` { -A $MFFF}D+zIO biF "nr1F4`YCѽ  I yD  F@"K{DhIHO RxD` !`A`4\pG z jz FiFppA O	! F6 8        !L|D hr&!h@46"z 8LK|DXh )/JXh MaY
h -IbXh#
 8@4ߺH!XH1xD8@4
 8@,$)cJ)FXh88@ν8  3 -O
ŰFOzq(FOzq
	(FOzsYCO 	gN OD ~D !"(F !"$E'K` " )F$?Fўh+0h ( !1`, Կ   E<y 8FL|D8K)FX h8@ 8 n I yDLK|DXh  1!!
 I yD! 
I yD	HO1xD@ 8 7  KJ{DFXh([H!FxDRh F@4=  02 F
FF 	LHI|DbX`H#Xh1JX h@% -GF3NF̐F~DFDO 
 , 0 + -	2h  0`,%N~D(FM ("H1XhEp/@F@` "#p"p cpLMO 	}D.h& ,O0!F0)h )(`,@F ( F9F.U (ݽ L w zw 2w     (K)J{D𵕰X#h'F~p
$@< MC
$ %' pFb l .	 (v<  b` +	Y%
`E8F8
$% H9hBО, h 7F!I KyD{Dh`,,Ozq(FOzq (F	HAChF !& F,K "{D`|> @B u v u pFF $"(F1F
 !ܞh
+ЬB Fp  K !J{DX"`S0`pG  ,  ,	L,!  |DV ,KI"X`  cX` PLP!K	J{D$X"`S0`,y@%    F8K{DAK!{DM $}D,`M}D*hj)h,`JzDhQJ(zD`	H!X`  8 8v O 
O t N t F?M@K}DXhJ>N #!Y``<H(Xd;IyDh,h9HxDhb8N ~D7hy1`5J &!zD!,	,,,
,, F (B*O !*J*HDzD<`+Xh(`6\0Xn<hM}D/h/   HxD,0+ \!XDU0IhyDrh@S  Bt t t  s s s -   -   0 KJ{DXh 0  FXI"yD0I F"yDI F"yDI F"yD눱
I F"yDPI FyDF 8   9 3- ,- $- - - Fx	I	"yDrPI FyD$ 8   , , F
I"yDXHI FyD
 8  HxxD (  0 , , F (1~  F ( F (I F"yD$ (I F"yD (I F"yD (	I" FyD 8   ~, u, m, d, pFFFHh9
x* FrB pI F*FyD  p  8FF)F"F8@ٿ  KJ{Dp䰜XFF#hc (  (p(F
Erc"hBОdp 38FFP hF(F F8 8 x/(а~JBR pG pG-OF]iJDF
VFZ 6hF1`# (@(F/!FtD  )@ZH
FxD򙀞 (
8F# 0rJE F)F F "uO F"pOO7 &O FF FIFF p /;HZ h.,8HxD:8FFF8FPF.Z  F	3B  + ("/()xQ%I(FyD #I FyD  F~F(FzKEI(FyD F)F 
R
h 0B	O7OQ (i
]2 \p  * /    iFLO0  8    sFF (R*N~D3h3ў0`'HxDh )E(FiF "  (ڞbh_+7HxD(F\
 , F (
HxD FK
  (Fx F)F (	HxD F4
  | H H B)  ) )   pG x  iF ( pABSBS    -CFFqP+x.+hx/(.(ѩx/)(F (f /f*x(F.*!SK8`Z/HxDtFO6Rx *(FxF0Ft#F (D0F:!F 0Fb  F*IF1F F)F F F;(Fї!x F.)1F8`  :( FF &0F 6  iF2ppA O	бOбO      O PK{D`@޸Tl 8FL"K|DX`  +
+O(IcXh++DJXh
H$X"h
+e+ \IyDh(FB  k /K0J{D-AFX-L.Oh|DF%h	YE+JEA8h #zD#`^'MlF.}D*h"` #t" A ! #" ! $.! 8hEAjF00	K {DB`
 h(<
l E k k k 0LK|DIX(hbXEAh0%Н`0T@H#` $xD@"F,HxD,V`x B@x`E F+hBНP
0 t  KJ{DX    0-L  # |Dj )H%X(hb ((hEA(
  +HxD`  (IbX|!h (
R HxDJ iF+ +  *0HT
`"X`+>    0  &% 0% KJ{DX
xz(
HXS0hh++@K -O۰HF8|DXO38hYbX h
&X0h
 ( +k~  +[O FF:FB' 7 ""+F;k * + Ƅ	+ ¼ k'X hx79  ( 
 ' -:Pg~D2h@' 78T`0h0t	 ( 0hO 	FB'`F;F;# +	+x{ )F'PF 	 %`B'P hr (Xl (\JF JxD . # &8620  @pv9lVD8heY %X "!xDPfXF0FT   /t8F(`8F(`8F(`8Fd .dfYh) F "xDyDe$D !2"?Tp;h CF?"xD8hCF !2" ?|?"xDYCF !?"h 2"l?"xD  p(` d(`hz  O1T yD_ .  &vr88%eXOad+h.`Xh@`|гE{۝F0 xDp .gTgY8hFT(FF<4yD{D
PFF 
*XF"
PF
!  :FXFQFB. ` BIt7B7hB<&BXF" dY`  5 5BXF  (F &F (6XFO;   !d"S ' ! =F  dd)  +@ -:/@ -@)Fd!
"?+F- 	@؀&ѝp/T hB
!   .0F! 
۝)	XF 'O;  '+FR
z
l,*0	*1kj I 
EЮHEЭIE X
:`DaDKZE ТIE" " l,	
*
 lH!X
hzH
	

"X hGA[3	
SE-
|l
((&T	0h?KT FhGFIF	3
! 5UEXMT0bYhhd*d "XF? 	
? 	e#*F/F % UFIT  Tj!   .0F! # 07
		d 
@ ' 
)
!k7WEbcH!Xh +Q 0

z
 	F ^IbXh PFJVIPFbXhG`\ T BE
 DE+@

   #HF 0E  QFHF:Fe#
~
HF, 5JXT0 hh+*	h )kJOzqOC9oP'X ( h " A "  $" #" - ! ! !   |  tdlX`h '
!t (  'BE"@FfCѝTh
)BF "@E  X?ǭ`ѱZPW-T	 *	8FgPIbXhi 0 0  t8F?)F,y `XF`^AE@F  .	!0F0F !
.0F+vQ!%5T0h z-.HxD0h	)HxD(F
 4%H&xD%EF &S	P&
(+
GY(FhB<8H &xDg*uO5?FO5|[     
JzD
Kh{D(I[X !h   @, ^ B F "   pFMN}D~D\)cx40F(H)X
h:, FU0hG  $!x )Fp p  dlpFMN}D~D\)cx40F x~(axJXh(
I FjXhG  $!x )Fp p   dl-O $FD``R$  (@%4BS (@FY h4xY h  $`!R$ P%F (@3 (@4Bo F08&Y _-<h!x`)
 FN(#,`* Y P/h8F>(@ՂyD@FP ( ׂ@FyDF ( Ђ0FХ ,D  c '5 O 	PF <  55X )7B(FF0F,.xyD@F
hQ @FE) _ GE:F )	)x&-  'p #,@FyD)jyDyDV,@FyD
,yD,yD 'yD  @F1F,\$O 
zDyD	@F # 0 # 5F5`*у(\*s	0R
 `(\"+7SF   \  #Q
 7P
] *

*p}B  $ !zD`/@FyD^,$yDzD, '$!S' D 7Bۼ@F!F
 !I  J#yDzD`@F`0F0F
 IJY Y0hQ`Y ,@Z]IyDFH5OY 0F9F"PF9F:FFPF CFH0Fl0FPF`0!BFSFPFV0FZ@E
H1FY  P0Fu(F~0F>Fo
&(F`&F	F )
)ѡY6x
*WF,,`(F &
F
)  )ѡ@6x *>F,ѦIyD
hrT(FROBڠHxD` 
 #,*8# CF &` &(FF )6 `EӸ 6(F` F  (Fn 0C& ,F,Fx )+
* *@Eр  FF+
@EF6 &DFhB $ @
@:  P'  (5 `OV' F(+  Q 1F б  P s-Fp Q5HF9  B$47hB(Fj`d  c @   , *[FOѽ1HY h +?ެ8F@,IyD0 ($ $4$2$0$.&I&JyDzD`<F2 ((  P | X       4 . 4   nZ .Z 4 \$t Y X ,w I V 𵇰FRIyD F! (|ќF (mJHxDh %,F.bFFkFF=0bGcGc!
FF
8` %(F3v`.H #9X`W h)H9XhB!'HDxDYhO3&DQ Q$H!FxD;l=JX1   KX` (Ђ ,я /ј% $% $  ~ $  
  (e(b( pGr(t(	 pG
 pG pG  -AFhMcx}D=+  H)X
hF2OYhGF 'x=*x]+ )	H*XhG x1h72`H dl-AFhMcx}D.+  H)X
hF2OYhGF 'x.*x]+ )	H*XhG x1h72`ع dlKJ{DzDhh`IC`yDK
h{Dh`J`zDIhyD
ha
KBa{DJhzDhaIayD
hbpG \W Y Y Y 
T Y NY U BY JhzDAh`KJ{DzD`hh`IJyDzD`iAi`
K
J{DzD`ii j`
IJyDzD``pG V ZY HY Y S BY X tU X JIzDHyDhxD`h`
JzDh
J`zDH !xDh`H`JxDzDhh[`pG X X X 6S X  U PV X KI{DpyDh #
&Fh%x0=	-43 P`O2I +O0yD
`pX V RX K{DhiQ,`h8`pGT C
K{DhaBx#x)  pG  pGFpG U B8
FF (#x+?K"{D`8
p`p8T FFɂ HJxDzDhh`IyD
hX`pGfR W T yxlJy#ycD>)јB   pG<)јB,   pGPBPApG)8;FJHoou1#hmܫB{o|%3+B
3	+B 8dh
M`h)F`h)F 0 8 , F8  8 )p<FJojpozu1#hB
ܫB|o"6.h܃B6	.W6
.dhN`h1F1FFhBF %#u ,%F  %(Fp KO{DDh<hBN%eC4~D<`6hspQ` "Y`a`aZa  #F rV S U h`F (pG7lFh Bҝ  h3`>-G)gNF~D@󯀷(hB 9[JBozqB9BqB o|`Eho@O|}NJB@󇀑owqB ܋BloyqoxrBdБBd`BKB{l@ER@JB
ooqBb9B_tOgcFe=*HE@obrB5:b7БB9-/KB* W2
*1=
hh9F9FFh~ .< (:۰B$7$KXh	4"KXh	4 4oesBH1Xh44hEh (IsXh"IsXhG  $mhO $@F< -HO4 F%j)^ `d uz6K-A{DhhhB.F&F31JzD  "FR/JzD )BBhO2BOhO7BF2ЇhhB@Ѽ ЫBhO2BhO7B12i
iB+301B"BO Bh 'EѸ 
ЫBO Bh 'E32B   Q S S -OFF0J1IFChzDyDFO O*zhh=
 h  PhB/p)FcH(pYF[h8 #>2h*!hqhhhBPX!PB
\T1XP1BE    + +R P K{Dh#Q#@hBK{Dh  # (   O 
R -CFMMoetLHoovLOow|@oyx)h m(ܳBeڻB{]BHBf|Wo9?JBfkcECEIKE_L:IBaovpBVRtr*QABH
ܣBTܫB6M0IB;7HB@9-JBT-,1oSqB-B0#Phho3Еh*ho.L!F!FF(FB0F c Rh1^ U Z b _  +Կ2 _     M)KJ{DzDh
HxDhh0hDaE
X~( R     RN P P ( ,FKFI{DL|D]X"h(h/HX    F!H8"i#hP!hF`1!` 0L 4Kl!J{DX h
K{D 0 \!` hJzD!` 0M L FF `HxD FF{ `  F8@i F@FF- `HxD FF! `  
JHzDKxD{Dh hB
I[XahG	IyD	hC @)O0XO @L  O (J8zD(Kh{Dx\)&L |D%L  |D$M `}D,h]"IZXh|S hAtS0hG (`4,`KI{DyDhhI`K "yD{Dh`K`{DIJhyDzD`h`K{Dh`O2`8 L  O N N `dlBL N J NN pN H N N -A	K
M
L{D}D|D /h&hH/`xD&` zJ  N ~H M nK{DnNh~DlH1XhlHlJ1XzDh
hB  iOY9h )gM
pY hiBЬ ""ixhB ""B   Ɍ   UH2Xh'`!hBЬ ""l!dB ""Br  pqɌ pȅ p@K@J{DzDhhBBv):JBzDh9JzDhEۻBO5KX	
hxe(FXE   B)? # F aF # F )FBBo CȿB	B J FKzD{DhhRBGPV0hxe);B̿     HH  M G L L I ZI lL K{DF0h)	IyD
h!J !zDh    ` I H H 
K{DhA )
JzDhBH "xD h  pGHxDpGK K nK ] K{Dh0`IJyDzD``@8F XH jK 	J	M
LzD
K}D|D{D/h&hhh)`#`/`&`K 0K 6K E p $M F}D+hx0* ,O0p FK+h4Y,)`@ (p H -A %NF,F~D3hx8F5P8F$+5C0hA1`EE -O4 F\H -CF7KF7O{DDhx-)PO`O 1M}D(F *0`+hx,*	X(`XxP(F 09	) `K#`"HxDhx\)S`HxDhx})JLzDh;Y)hFJzDJzDIyDJ hH";X  `0h#h јBB2h!h1`"`T    H * G G G I m[ | z 8h`
h *
K01{Dh  0dpG G 8FhF`Hhh` 	IyD
h* tu  8I hhB`
h*
K:{Dh0101 0(pG F -C!XND~D  3hO		zw 8F~F5hO)F6I4`yD
hS# "(F
` @ HE C `H -O삓FFJDFFzD hKB |o ;{z	IBm oosB"ј 2	*ؓIKyD{D
hhBxK{Dh * !IyDh +@IhyDhB h 	T#BъKBВIyD
h2/+iIB@(F!FZF;F9 (@hhhB&OE 
qOa2
@FYFHxDh"O*s(h
`ܡD(` Fh	 O*sD *hihKC	Hh`Pp9F	 !)a	pQFfK{Dh:	p
 F#hmoopB0ozpB,o8B@
z 
DIB hojpB
8B@@HB o (FahRF;FhF
ozxCESFO 	8	
8SF;J !zDhh (?ѐEFO9
 O9 
 10AEёF `rOD%JzDh "`HX`"J"IzDyDh!JzDX`hh  `O OE	FF9O9: VBjrC 8E  H D JE E B G 2G HB F C @ @ E B 	01@EёFO  `aJzDhY` RFah;F(FH#h1	) F?FUHxDhJ
    KJzDhJHxDh! C  HdhF zSFO 	8	
8SF:J zDE ܿ ` $
   p.JzDhH`+H+IxDyDhh`)JzDh  aF$K{Dh` !RF ;Fah(F#h2	*F F 

     FPF	E B ? ^B B > > (D 
A D -O '0FFh P 
pEfchc.
!h;O*rPOݢhB3'WCpO*w@20`xCF (B!hZF`bh!h T
 Z
:zC H h  !hO*w[ZzC 
4ah"hK !*`h=Bb` P	 + pG0  pG pG-G #7I7LF7MyD7N|D7O}D~D܀DؐDDFD0
O
#	88
O
#.a
Oz
#$g
Ox
#A
O
#G
O
#_*XRO
23IyD@ J@|H@BsxDK!`? ? ? ? ? ? ? ? >? < JzDhYJzDhp !Ypp`FpG
A 0> JzDhYHxDhJ`pG`pG @ > 8KJ{DX
h
(
M}D,hb	IL[X|D%hhG( `8I[X!FhG (`8 d@  = JzDh?
HxDh``-pB #pKpp\@ = C3	x*t2Ӳ	+0)pGK{DhIyD
hbIP"yDh!HJ!zDhP"
K !("{Dh<H !("xD h4K  {D`  ; = ? : "@ ? : 8 "(KO4(M{D}D`'H'KxD,`{D&M`&H}D`xD%K,``{D$H$`xD`"M"}D!M"}D K H{D*`xD%` $`J!FKzDH{D`xD
"`IHyDJxDK
`zD`{DIHyD`xD```8\= ? ? ? ? : Z? ; b? Z? l? ? \? ? ; V? N? 8< $< : ; K{DhIyD
hRH!P"xDH!P"xD	H !("xD
H !("xDK  {D` 9 t< $9 ; .; < X9 K-G{DiF`rOFddDdD`DDD9h  `v l  Mȅ i P nP23(*ѽ *9 ; ^> $> > 8 Fh8`BJzD  ȃ FpG: -GFhkx:+8 $	DZ$@FAFFHF:F75`4,c$ FTs -Cx9L^+|D0
x]*-*O3OЀАDDDx +UV0NY1hI/JXhG(x-(]Xx]( (1h9(FT0hG  -\(:h@FYxvIyDh3HFQxi (x[(vc( (. (K]+ѽ >:   dlf: HxD -OFJ #FzD	
 ( ] N~D0hA !72hSF
 	FFFMH}DIxDJyDKMzD{D}D
 povqB 4o}sB}]B @*B @5o~uB |B@AJB ؀} QB@𣃩o|pB 
0B@rmooqBkotxGE	ouuBցkB@MB ~2ojqBxh@OV0( oJ 
"F
BM
"F
B1F}
P$сK{D*
"Fq
B
"Fg
BkH2F6 S;F Fh )`
XlK{DhB`0
"FB
BYH "F ( -1F(F- !
``6YK{D"F

BGH !F ( 	1F(F	 #
hs`6HK{D
"F
Bc4H " ( F !+FB Fh )`
p5K{D"F

B; H ! ( F !+FB Fh )`
x]"K{Dc
"F
B !
H
FwF ( 9F0F` # G?
!6A  |< V< P< L< F< D< 0 ; : r: *: 9 9  P
"Fa
Bʮ"F
V
B1hKa3`:hIa9`1FA"#
ѧK{D !8F
F
 ( * !$A`
0%
p %F.IyDh`5
"F
B~ "H  F (  -FFAFRF !+FB Fh (?F` /
'
 KFF6. &&7 R/sK{D5`3PgMowv!p

 
 OOeIhyD"F

B !(F
FsF ( 0F*FjF (   !HH
F^)F "FFHXo`Fw  (
G))Fk
E
*KF+ f ) I /AFkFa?.MB2ojsBt>;B ovqB=9j%HB6$JB#oiuBi*ohxGEh!xNxKogxHpElBl?ofx<d9`6`3\0
-	 &BZY]8 f8 V, 7 bdefhij(
B !8F
FF (  !@F
FF ( (F '1F@F,
-W
"F
B8F "xF (  !@F
FoF ( AF0FovqB(F "AF@/CF  .
C/#
h2H !8F
FGF (c !OH
F?F ([(F '1F@Y
F01 9
`hB
` !8F
F (8
 "3B`KFa
2 6FhB
` !8F
Fб
 %4E`5 
KF

	E
#M}D*hP(` %1
"F
BjHxD	OJDzD;hhB
HxDM#AY` %N"ZC3~D;`	K6hP "`J`` F(F7 Ba@4  0 4  8P3 3K-A{DF2NhF~D $0IsXhF2.H1X FhG(   F",c
 F, Ft  FF(F!FA~H1Xh˹*F! 0{,
(F<B	H2X(FhG-BйB)x )  BиBF ((F &.  ` dlFIFJyDzDhpDR hAH"hxDhFH"hxDhFl(K{Dh@ ` :-  d6/ $/ / -O49 x{D0Y0(}D  LJ ( "( ( ؀( A(@m ?(  ـ((~ >(u ւ(( $( "(  &(  ,( *(  .(  @( ł8(L4(M2( 3(@$c6(A <(6:(5 ρ^>() 򌂍H( D( B(  򥂛F(  򯂥L( J(  򵂫N( (@O 
O{d ' '* ' 'PO '6Xh17 FXhG  $#x9h!Bx2;+ ' zDhB 7{Dh *@B V|6 @Uh[LFlwl &hDDDBے'LFXX &TDDD] 7U  :@ FUhG  x x08	(  0& FXhG  $7"x2'zDh )@Xx28( R  yDhB I   (@D&FX|D$hh{7  ) 3
*@0x28( *46B#'LF &DDDU6 F{Dh x08	((U
h2 6Xh FG  $7!x!   *@x28( < 0yD
hB ,xDh )@݂% @Xh&zDh + ̂
)@ɂx29) Â46Bۼ'LF &DDD]tU   : FUhG  xn x08	(  2D5 FX
hG  $7"x"  )@x28( ~t% zDhB uhxDh *@n4 @XhcHyDh + ]
*@Zx2:* T46BM'LF &DDD] x(   (@:x29) 4$ 0zDhB +yD
h *@$h @+Xh )5H4U )d$Xh FG(!x09	)  04 FX
hG  $$zDh ( #x
+@
x2:* 46B!x9h )@فx28( Ӂ  hB ́4xDh *@ŁmKX$hhXH*Xhs FU
hG(ݺ @$ x3QE 
   * 
(@x2;+ 46BۋO
OzFOLF &DDODHJDxDzDO 
OO
O 
OO
O 
OO
O 
OO
O 
OO 
O 
O O@
O 
O@O
O 
ON~D4hx &Fx9 6	BBЁB & 6	BB	L8F*YhG(F@HxDhTInX4h48Fz6F 'FLF &D! !Xc\xB1AEDD6AE   ( ׀JXh ) р FRBBOLFLL &HDDxD\!x   (@x29) 򪀊K  {DhB 󢀇IyDh +@DVH*X$hh )7БK{Dh8
)x29) )HKXhұ FUhG(FLH*X FhGF8F/8 #CEh\D8F!x#8O E[46BU @6.KaIXyDhh: FUhG  $`VJUzDhh1LFLSO &LDHDHDQJDDzDB#xc:h B 0IHxDhj
+
   (DNYN &LFBJ0FzD` 1  dl+ + - / 0 * * * 6- d/ N/ , . / . b) t) R) 0. + 8. ( ( t( R- + Z- ' ( ' D' ) & & l) + + & % `% @* ' H* $ $ $ r) B) $ # ) # # ) & ,( IyD
h;o+
`
U+d+u+
x+	=    W (HxDhJ`\ T% % -OuFFxD\+@@x=(@E|D  @𙂪e~D5h - F)F(Ff(FC xxUD}D  6llyDl5.hxD
h{DdUd}D`yD`\\5.hxD
h{DTU`}D`LLL%xD.hyDzD` hQFh""`RF  8K
+  
  p\+bxR`
* 	
#cpFO{Xh29X FhG  $FDD#x +Ѹ pD|DyD hF h'`yDh4{D$yDhzD4`{DhyD`
h4xD{D`$hzDxD4`{Dh$`zD4xD !`{D``&) (@ف|\)@ )K&)0 ò	+4xDU) E)L)(l)u) }e)  D{xO t  *:И0 !pPep p4_(x8n(b(r(t(EFO
	 EFO
	EFO		EFO	* \##p4	JXh)H:XhhGF 
IFGF"
IFG4IxXh +3зI9xXhHFGF J
Xh!FGH:X
hGCH:XhHFQ@EF
ں  3` $2 
"p41hO^h .Ѐ 
O	IDKh +ƀ0Fhh 	 BhBсh	@FF
 j (  	  🀕K{D )h *@hPmB  
!!p640F	h
ZhBFPF Q  W Fh
)\)	Ѻ \  p ap4ETJXh(gI@FzXhGF 
GF
G 
h_JXh@F@FW0hG8D		 RI
{X!FhGPH9X
hGB 
#p4	9i(D
F &FIGJFGMyDGKzDGH}D{DxD	
EFF )*    pd` !:K{Dh (%)V  ! $ \$ $ & p$ # & & ! |& ! &   v! dl& & j#  P# l# ~# " %   % r% % % v   ^  4   M `$# < ! ! c\ K{DFhK h{DhB`wJzD`HchxDJhzD	J!hzD	H`hxD` l t        K{DhQ
KJ{DzDhh	JA`zDJzDKh{D`h`pG
 X  B  D   <K-O{D;LFh|DFFhF (a4IbXh +\3IyD
h *W $ĐĠİ%FDDD=FBF3  *{@ 8/((FF FB% h{C ;/+I$yDhB
  (FF F~B3h B`7`   `@     -OIOFFD ##`FFEIDEHDEJyDEKxDzD{D h
hB58	#<IyD
hB20	F
	` U4I	yD`h2JzDF aF   Z  `(FHEEF
		JzDh	  h	C#`EEJ  zDhB? &&`H5 &W0h (Ш ~   (  "    l .  0L|D#h?IyD
h2
`0%`MrB#qp #rSpppq
Sqq
rPrF0@h  -Ooy|F-J-Hovw-M-NA#hBcE6o{[E@oSE/6CE7KE*4B2w#۳B)ݻBB$; M`h
-)F
-h)F 0 hdh +dh , F    ")M&-O} %uhD
oorABQ 	pW0h ,AdUO*r!}D,`XU}D.h6VC0F% (hA0F"!+h Z'% )o (l!$&)E	|D%hh##%zDh5E{D|DxDh%hhJ``D|D%hE`! # !` ih	  O |4$xD{DzD8yD4D=Y+hD=Y h+hG$X
hFhGF%hx ,
%F F
#
 
  #hK`aQ`2``@h (ۂ4$444zD4{DyDxDȹO*v^C
hR   < T)I		''''''''(   \W																			 "&.C>Kd .5?FPo^^^pppH:XhyI"yD
`qHxDh *VK{Dh ( F (A܀ q@K{DhuIB#4JzDhIhyD	hBэIJyD[hzD	hh"JhzDh" *AqhHxDh; q\{K {D`Bh *{@h[yQIBx
BozFQF njHxDh; qb ! Y
Yh2*	9KBZ \ #B3PF?THxDh:p3OHxDhNIyDhkh +  ~ hh!O
YhO 
F t, U:K{D*hQ7H8KxD{Dhh6JzD5JzDh~Yhr *Ih %!{  X 
 l n    ` Z  ; dl ~   ` `  2  H R  r n "   d @       yJFAFhJFAF(AFJF @j xAF`;{Dh9 qS ! Y
 ( H@FA`;{Dh8p4H;{DhpDD;yD{D
hh
i,+zDhhYh 𬼫Bܳh^h;h +zDyDhh d ,  h:yD{Dhh(F@@EA ̊ FD 9 ( ݆
yDxDhhB@ % (@Ɇ :D{D  hB hyD	hFE  ( (@ \D  (   x *  F  (@ (*zDh )@:*{DzDhhB@v:{Dh (@*zDh) ʼ)9zD{DhhB@] ,@Z&F {  (	:X FhGFyDh    \  vN ,  B #E #x FW	0hGFp	h;X	 hG*PB* 

{XhGD@)O 
zDEP# BSE3  #SE * v#Yh F1xDh +@΅(zDh )@ǅ8xD{DhhB  O;&FF 
,@(zDh ) O &D , os  (P	zDyD щ~#TE ۄB@h +  FF	PFB 

Eݠ )I>y"%18GKO\eiprtvc+o'XhZx
`(c{XhAx!s ,XJc+R'XhZx@d0	) !!]`(?{XhAx !!N F  Fb*(h9Xh 9	+ , !!0 F FG!%	,
,,,J !!Bhx FF    \    ,IF ) Yh ܽ ,@ ǽ:Xh#O O
 F (ЫFO 
Y &0	+@ FV&xDzD h0	)@~p6p&{DzDhh7 0	*@n FX (@ fhI&<XxD hhG06{Dh xk ( O b0	+@HhI%XxD hhGxDhxM (@I / , G	,@) B , $ , !	,@9 , yD1  ,  , , $5{D3 @, %zD2 , , 
tyD1  , d5{D3  , ك, LyD1  , ˃85{D3  , , ؄ yD1  , 5{D3  , , yD1  , 4{D3   , , xD0 , yDu , y, xD, oyD# , h, xD<,
4{D3 @ (@ox4{Dh * M, JhyD1? , ?,PxD0@ +@1<$zDh ) E, B,xD0  ?,
4{D3  (@-4{Dh * , IyD1 @ (@ , ,	JzD2  +@JzDh ) ,  HxD0@ + rG 9`!JE NHxDhi 	d (Cl! *?IyD	hBтBIh!pyDhIyD4 	hp1(@.dhIyD ryI{Xh2   "@FIyD@F	h (@pY#qhFBvh^FO 
phF . mJzDh +@MI V0KyD {D	hhI S0KyD {D	hh1(ёB !!
(ёB, !!PBBR  )  AJ TyzDhI{XhJKzD{DhhR40@E   
@E,     ^  ( Y
K "{Dh) ( h +@߁IJyDzD	hhB}I}KyDBh{Dhh@BYhoSshSh/KB@YpK{Dh + nIyDhh iE@iIjJyDizDhh@B@𜁽( ( 𖁦 f   V h N   
        ~ F            
 N P
  D
 
 
 `            ~ b L 0         t  J 0 D  
  
 
  
 R
 H b	 j 0 @ Z	 \   n   0 
  
 
   Z
 X
 @ BH9Xh{h * ÀF FE@h (@݁ FF ѪO F t	M@F ! (iм9 IFh
  (!!Fh`h2*ٚHBCJBR FE  ahi VPBP	hh2*
مHBA ^ #E=p15}JzDh0p*O 	EIF*
	 r AF KF, AFKFY .	O*|KhZh1N`SQhB2]HxDh +@	ZIyDhpmYK{Dh (1WJXKzD{DhhB(UHxDh + SJzDhRIhyDhB "
NIOJyD[hzDhh@B"2qJHhxDhBk	 )a
 i ( ހ - ۀZh¹ALAN|D~D"h3h ( 2h #`h@5I5HxD{XhhPG2K{DhP]
iB /L|D!h )+ЛF
 iB"њ(J)KzD{Dhh `$JzDhXH` Yh #	 L|D!hM%`' !`P        ` j    Z D "        k$HxDhi#JzDhK"H	hxDhB ?%<9IyDh&(F$Y
YYY &O
'YF,	IyDh (l]
}    T -OFFJKFzD{DMhh}DtHDxD-hhHxDhHxDhQHxDhTAP`  0(هLB`B@JzDhr1IyDh|  HxDhP  (ܲhDD    @  0    uIvKyD{D
h`I"̡D  EpKh{D`mIyD`@h0``  dKD{D  h0E_I 0Y hipFY hG    $VHxDh)":hrSHxDh F8`(PHLFxDLd8h,jO Qi@#2;O	EJ1EKO 	zD`{DhhBؿ`@I0FZFyD`F 8h,jP#Qa2;
4H5IxDyDhS3J`hzD`2H2IxDyDh
`*(F=/K{D`.IyD.Kh{D-HxD`,I`,HyDxD`` F	!v ^ & d                6 Z  @ *  d 2 B T   8         &  p F JpzDMh}D3@[HxD hx/)`3))%).!)?#))٘-)+)$.^)[
:)1@)[)\)@*|){)`)@"
~)@HxDh+@%HsxDJzDh(@HsxDK{Dh)@JzDh (@	K{Dh1JzDh K{DhqJzDh   뀈IoyD3JzDh)@HxDh)ЂJzDh )q()@ĀxHxDh3@vIovK yD{D
` "tI`yD
`rJzDh+@󪀳 Q0
F"0<\+<c+C+m+M+v+V+ "Z+Џ +@
&+)+	n+|+&+)+ )uVIoyDDxTI\"yD~,.HD0CPNO4OM #~DOI}D04`yDML*h|D+`LM
`}D"h(`Q!`+h"hX3h(`QFH +ssxD!``9AH!FxD( F>IyD,=IyD
h*$,^,:JtzD8H+XhQ7H8IyD+X
hhPG5IyD5JzD`U0h2-IkXhG/IyD`.IyDhp *{|+q}X `            h      b j  d  2  
  *  ~    V  z n L P          d`     8FLK|DX
h
  8<T0hG((X
H"Xh +(F 0 8 8 x] d `F0 F-OO  F[}DF R t,l @ B}7 Bt,hBe : O + ()d. B'Ypl *c]WBOBJ  LB  (  L:{DF K BFF !w^/ $/	 .H:{DF -4h[/D 0`  /OO FwFO
9FxDF 
xD*Xhc	Q F	xDI|DT.  F)zDh[ F
 @Ft F0h@	ø	xDhI|D h(yDyD	xD@ D|i|~D4hU`pI|D#h+hyDdyDd	xD 0`%TU !Hs*+lX h<yD
h*Կ "",)zDh9 ^)zD)zDyDX hI|D'hǱ =FUFgF (`9x )M0h/$<FU 8"X`9D (zDh`	@,Cx<+сx!)=)O ,p ( p9(1(=((Se(Ns(NI`xYh/XxDTxDhLH|D!h)DyD@yD@xDm F (k3h (C 0`zD`пgYh.xDJR0FxD`P nZ lxD8w[/SC/N$/E(/#/@AU/ V/@<o/ Ԁ^/0d/u/ x/@o/7{DhyD
h*yDyD|xD sF (2hBV     DwD?h /;<'zDh,4yD0yD,xDȾ$7{Dh)yDyDxD #F8F FH0F  F@<FO	FD](ьF|D h(yDyDxD F F`1h!ݾ)F8F)F@F%F*x(F*AF5z]FBU/d/u/
x/	     (F4xDh+,yD(yD(xD+R   F
 8F  0h{0	,	</>/'/S^ 8F &
$0>T0	+'( .?JF `AF5{Dh\xDh
pOp$l(c(v(     @BFl5{Dh0<`13xDhp1
Spppq2`-DE|D#h+<yD8yD8xDDF $,D  x]+A p;x^+
  J  F FxDh;x]+-+
FzFyD
`,O9(-)vP  Sx]+k?
\+ђxn*hXh- O-	[+`F<FpxD`FtyD
h
`\dxDh;`yD
hXFE 8+Xh9DHFU hG(	|EhXFG(D(YHF		E>HF{		E6\)T  )PQx@K{DhQ`Pxn(#JzDh (9 0HYxxD (/c x(3##p1hA2`HxDhY`O9d(o(x(u(U(
F
 `<m2`HFUTD  x[*AXF((_(BU ('(zh(((
(˃ك((c(XFF (`KXhIkX XFV8IXFyDP (Aڂ@WE  ́n DT @ܹI ܹD :ܹB  AF nAG oH wN 
ܹK ̆ĆL ؆M 🼹P AR ESd^#ܹY ӇܹV tW 𨇹XAi 𸿹a ܹZFbci
ܹfpDgph -kԀȀlm R\  L 
  `γ     / <   8`   M \         , DO n  
    Y     	   &  ?	 L   	 &       p       p `   ή    d> 0   v  $| n J 6   n Cܹy>ܹtÀܹpRrsvɀwx ܹ脹ܹxz>w@CTܹ, ܹ * +$@󲆹g
ܹ@uBܹr6 ,@'E E @E P@	E &ܹ @E v 
EAڀ j ?d@E 𙆹Aɀ 2 D@E & "EA } .@E @E ņ#ܹ 1@E ) %EA ~ x@E s ?@E 7 3 P@%E 𥆹.@?E Jܹ }"ܹ N@)E F B: <@/E 𔆹A- / ̆ܹ V@7E 𮆙 Y@=E TA
 𭾹!ڹʆ@CE f@AE@ :@EE Y򶆹 𲆑E@ M b@ME ܹB T@OE@̇ 𰾹 @Q@UE ᆹ@ xAnE u a / @kE O@aE ن&ܹ q@YE S eE@ ¾ [@_E 𷆹@y N `@cE X T4 d@iE Ć@V W@uE #ܹ M@mE E AE@: 𢾹 7@sE 𗆹 @wE y uE@  @}E @ 龹 ɂR@E |%ܹ چ@E @ P@ q@E@E ق@E _@E ʃ򫅹 +@@E I䁹 {E@ Ҽ@E ̈́%@E ܹ ς@E '@@E p 
@HAbE <AaE ԁAQAcE -E@gAnE A
lE@[AbE ցQE@Q 0_  ŀADcE aA0`E r(A#nE ܹ_ RA!bE SSE@(A'aE kKA(`E BE@ ]A;aE A4cE =A1`E@ A5bE QE@<A?cE XE@K_ HAAlE@ A^nE -AUbE AHaE :AEcE@ʅ AI`E 0E@tAWbE ӄnQE tKE@ ѼAk`E ܹ_ zńAaaE ք	1AobE QE@{A|cE XE@  AlE !RAnE ʂ&AbE AaE 
KE 	XE@cAbE E KE@S 
A`E 2AbE  QE H$AcE XAbE zQE@- {AcE 'A`E AlEIA`@AbE 2E@AaE 1E KE@_A`E AnE AlAaE S1AbE QE@݄6AcE 2XE@ӄ A       OpOpOp@OpOpA` B A`A` C  OpOpOpOp D {OpwOpsA
`oA`kA` nE d a ^ [ XOpTOpPOpLOpHOpDA`@A` CF 9A` <G 2Op.Op*Op&Op"OpOpOpOP H OpOpA"`A&`A(` I     OpOpOpOpOp@A`J OpK OpOpA0`A4`L @9@;@=@?@AA:`M A>`OPN  @C@E@GAD`AH`O y v s p m j gOpcOp_Op[OpW@SOpOOpKA`NP EAT`AAV`DR ;Op7Op3Op/AX`+A^`.S %Op!OpOpOpOPT OpOpOpAj`An`U     OpOpOpOpOpOp@@A`V A|`W OpOPA`A`A`X A`A`Y  OpOpA`A`A`A`Z @y@{|@}x@tA`pA`sa j g d a ^ [ X@T@P@LOpH@D@@A`Cb :A`6A`9c 0 -@)@	%@!@
$d @@A`A`A`e     @@@@@A`A`f A`g @@@!@#@@@A!`h @%@'A#`A'`A)`A`i     @)@+@-@/}OpyA`|j s@5oOprk i@7e@aA1`]A5``l WOpSOpOOpKOpGOpCA;`Fm =A?`9AA`<n 3 0Op,Op(Op$@I AE`AI`o    
 
  @M @O@Q@Op@@A`p AU`AW`r @U@W@YAY`A_`s @[@]@_@aAa`t @c@e@gAk`Ao`A`u     @i@k~@mz@ov@qr@snOpjOpfA`iv `A}`cw Z@uVA`RA`NA`JA`FA`Ix @A`<A`?y 6 3 0@w,A`(A`$A` A`A`z OpOpOp
OpA`A`HF8FV9h9`KO	U   	QxHHF		KFU   	QxHF		r  HO	U   	Kx  ²HF		VO	0	+HF		FHO	U   	KxHFu		/O	HFHFe		O	HFyHFU		O	U  	Kx ²HF<			 2
 / , )
 &  &O	HFHF		ջO	HFuHF		Ż	 
    U	hvJXhGFtH*X  hGrKFXhzHFXEO9  F0  HF
cODcHDcKDxD{DD  x])~  '[K[H{DxDh`x])XL(YWH+X`#UIyD
hTHxDh,RIyDRIyDRHxDKJ!X!` $o8FF@ aF8F0hS VDDF* /w,J8FXhӱ-OnYh  9 P  YI@FOP  50h 	x ( 0 + /@@1`	HxDL U0` F dl`4 0  M    x H8`     0  ƒ -O#` %D UyD ezD4}D~D{D	
   &xD5FhC `hC
`xDhC`
#`O0`	"`4O0{D$!zD`4O0{D	!`p4O0{D`
BF ( BF
 ( x^G ɀ@-.P р@!
 !F t F F!F F F F 	F F
 !FS F F9F !F F8F F F;F ( p<(
!(@y=( ~>(@rO
	 ( p!( u=(@cO	pIyDHxD~ F FUB  F FK%ؿI+{yDhXѽIyDh``-qB #ObOAO  cppp!q`qpHF!Fk!F  lF F eF FIF
 FIFS ( 
	 !F"F4XD 	ݓHxDh)ёIyDIyDHxDkH"X 
`!F	 | #F F F!F"F	   + *
 @h (1xLX@0vI hyDh+tJzDtJzDtIyDrM&h}D*h*pM}DpM}DoI*FyD0Fs hV ,rhK{Dh (mC>C!Fe
%F??0M?/0E7??08 (1% F8 fh@ `F)Fc0-  hF(F4K{Dh	 )F  /IyDh+-IyDO		O
	O	
? ^8  z  r  V > (    : F B h   + : g 8           Y -C$(FFD`рHxDh	-
~HxDfX0` $i`n ( wK{Dh	-vHxDh)tIyDtIyDtHnLxD"X0`P j`F	(і  %F %,FF  FG F:h" 8`p;hDC:`F (   * F%9h!;`:h  B 9``0.x .Z .   Z'FF FIF8FIF8FF ( .U,0I/H.X @4HxD##`<FH.0JzDh(.IyD.IyD.HxD!-IyDh+,IyD+IyD+HxD+LI|D hX@'K{Dh*&IyD%IyD%HxD>X !!`.	|D` ( F 2    8  G V ӌ J ߋ   & ! f    v :   B L -AFkNF~DHjL0Y,F0hI#pX`gK{DheO(FAFDS O19`   *]J!zDh0LFAF(F: ;`  RHxDh FPL|D!h9NHxDFH"3X` $JJzD`!sh!aaa``D@ ``ahAb`AHxDh #vx )]b**  s(FF+x+
5H2Xh#4IvX1hx!)	+P+Ж+Z+З+(Fx*V0h1#J0XhG`x`p(x((7F*x*@FpB$FGF(FxF ('afaK{D#` F R0 L8 D R   H   d -C(gNF~DfK{Dh	-dHxD6cIpX`y(aK{Dh	-`HxD'\H"1X
`ih`  %
a
 ([   B;ho}rC+;` (I00LODDDf0 ,yR0?,@L4YDHxDh*CIyDBIyDBHxDBK{Dh)@IyD@IyD@HxD##`:.MuY0:K{Dh)9IyD8IyD8HxDn"*`  5HxD,2H3KxD{DhDh@B/Ioop-yDG (, )H)KxD{DhhB'Ioj|eDyD
hB[
` + ( (Ц f. p  8      y    _ n P  1 @  ) P   2    4-O{DhDF _R , 
 J JoJ (߁ V / ,- 3 ;JM   *
Ӏ̀JG ÀJ v Jn q (JyHxDnK!Y `
JHzDxDhhBҽHxDf (
{JKzD{DhhB
ҷJ IzDhC`JzD (
cJHzDxDhhBүHIxDh
% (
OJHzDxDhhBҨHo{qxDh
 (
:rw_HxD	H#Y  8F`
2^/љHKxD{DhhBҗHxDhI
 (
$/ёKI{DyDhhB
ҏJ sIzDhC`JzD (
[/ Q /%  %>Fw%>FH9FxDF-~H1FxD!Y0`,yH1FxD&wHY 0h
m@qOD8hF
nInKyD{DhhBlI-lHlKyDxD{DhS$ A+`
`# (
cHxDhBaJbKzD;I{Dh@`hB (
~ZHo}qxDhC`WK{D. (
nSIyDhRHSKxD{DhhBPH
!xDh
, (
VKJLKzD{DhhBIJIzDhC`GK{DhB~ (
;  0 
>>HxD=HxDq ;L|D$h ,@À9IY w< F,  8 x   V  r n $ ^ F  4      |   `  C `      "       | 2 l T 
 D \    8h 0B1hY`2hz& (
𙸸HY 0 Fh G   xAH xDhB  B)hHA)` (
vY0h F	1h1HY 0 FhG  $MO}DD|D|MDD}D"x *ќKI{DyDh
hBҚHxDB (
=HJxDzDhhB
ҕIo@|J yDzDhC `= (
 Yt9,1,6(,qZe,s,lфKI{DyDh
hB҂HozqxDh	Ѿ (	}K}I{DyDh
hB{HbIxDzJhzDC` `	l (	Y0h)qHxD	ͿpHpKxD{DhhB
nH!nK~txD{DhBK``	E (	`LY h,cHxD	 @ (	_JzD` F	 ,\HtxD!Ft[, KC, $, ހ(,#,@U, V,@o,2^, d,u, x,@yo,  (	f@I@KyD{D
hhB>HxD[ (	VU,d,u,
x,	     (Fb-K{Dh)+IyD+IyD+HxD
d `lj b  T 
 P D  6 "  
 $  ~   T   D/ R  <  m D 	 v , h 4  { ~} KH{DxDhhB	H ,
$xDhBK	L (	𿾾IKyD{D
hhBҼHIxDh	8 (	IKyD{D
hhBҵHIxDh	n$ (	IKyD{D
hhBҮHIxDh	Z (	IKyD{D
hhBҧHIxDh	F (	pIKyD{D
hhBҠHIxDh	2 (	\`IyDh(љIyDIyDHxD (	H4  $](z|JzDh+яIyDIyDHxD	)HKxD{DhhBҋHIxDdJyDhC+`hB (	JIzDyDhhCKB` (	|HxDhSI	̼ (	<,>,*F !F %
&% F0	*l)c)"v)@?iHiKxD{DhhBgH<,xDh:J
P (	ý7J>,oUr_HC+xD?]K^I{DyDhhB[K<,{DhoTt0 (	(J)I>,FFRHCKxDQHQKxD{DhhBOH<,xDhL (	JI>,FFFHCKxD`EKEH{DxDhhBCHxDhB[	< (	d)*X  D ( ޿          f   > x t  z  <  y         Z  J $  ҽ        P  ')6 -8ѻIKyD{DhhBҹI<,yDhѲK
[ (	μK>,oSsI@;yDJhzDB`
ҮL|D%h*FB"`	x; (	 )qHxD	 $!L|D hF x](Ip&h7x^/u# #5FHBP!FHE-jx-**(xA(a(
0(@Dx9*C7*Cxz(Cf(C@
xZ*CF*@%C j(xZE\(ixn)@_(C
(@ rF!F]E@ )$b+4+[+6+_+@+?+5+@B+L܄+'Ј+PЂ+@+0ܘ+@܀4+!+@ր4	ob~tD	bt	4	4	oas	at	4	黤4	o`r	໤`t	ܻ4	ػz4	Իo^|dD	ϻ^t	˻w4	ǻ3K3H{DxDhhB1I<1HyDxDhhCKB`4 (	)H*JxDIzDhC`hB
! (	"Ho}sxDhB; (	HKxD{DhhBHxDhBK`/ (	qp & `  4 * Ez ¼ .   ҹ   м  l  IJyD
`Y h3I(FY hG  -HxD`	^/(ѺHY 0h1JY h0FG  I6JKyDzD{D`hhB	ҴJ!KzDh@;` (	KH{DxDhhB
ҫHoq "xDhC`z (	JzDhx-+=ѡIHyDxD
hhBҟJ-!KzD{Dh@`hBY (	̺ML}DIH/hxDGK/`Y0hh: B (	~O(FY@!hG(M}D(`-%O5K 'JL{DIzDH|DyDxD		#x[+H&c(IZ+F (IJ\ (FO4wKwJ{DzDhhBuHoRqxDh (	fpKpJ{DzDhhBnHJIxDh (	SiKjJ{DzDhhBgHBIxDho (	@cKcJ{DzDhhBaH9IxDh\ (	-\K]J{DzDhhBZHoQqxDhH (	UKVJ{DzDhhBSH'IxDh5 (	OKOJ{DzDhhBMHIxDh" (	HKIJ{DzDhhBFHIxDhm (	BKBJ{DzDhhB@HoPqxDhY (	̹ 
 dl ¹   Ի  l  ^ x . f  B   ̸ ȸ ĸ    T  v , f P  @ *      ܹ  ̹  l   F  j   X KJ{DzDhhBHIxDhq (	BKJ{DzDhhBHIxDh^ (	/KJ{DzDhhBҼHIxDhK (	KJ{DzDhhBҶHoOqxDh7 (	KJ{DzDhhBүHIxDh$ (	KJ{DzDhhBҨHIxDho (	⸤HIxDyDhhBҢHIxDhB`Y (	̸KJ{DzDhhBҚM}DJG (	𺸖JY
hI(FyD8I(FyD (H@WB
 d,_ n,HlT,у0I,D,B, A,?F,vLG,H,N,	K,L,łM,P,YR,XS,ad,Y,[V,=ÄW,X,Hca,Z,b,tc,i,	f,Dg,h,k,l,m,,2,y,t,͂	p,vr,}s,v,w,ۆx, 8,,Ё,,z,o,,A	,,,р,,ۅVS,Q,D,,,6,E!,,,ԃ,x, | T 
 D .        з  p   J  n $ ^ B  4   ;3 @'tEÄ @dE[P@	B&ܴ &@B	 BH΂ @BH ھ @BΆ ʆBHؽ @tE𰆴@dEx#ܴ@B〴߀BH}Հ@B⇴;@BI3/;@%tE#2@?dE0Jܴ!"ܴ@)BمՅEυ@/BH!½<ܴ@@7Br"*@=BꀴH!ڴ6@CtE@AdEFи@EB"BHفغV@MBܴBH@OBH𭻴?@Q@UB𪆴H0AntE, e# @kdE0O@aBn&ܴ@YB뇊BH~WQ@_BLHmԿ5@cB-)>T@iB側HJG@uB#ܴ=@mBρ51BH.ù'@sB𸁴@wBg򣆴🆑BH
ȿ@}B𽇴HŁR@tEp%ܴ߇@dE@q@@B@Bl@B@B򨂴LH@B܀wBH@B'@Bܴs@tE녴H@dElhHsCAntE-AldE AQAcBBHY AntE TA
ldEHL LAcB GYBHAU_ ʀADntE5dA0ldEX)A#cBܴ_A!aB1BHպA'cBYA(`BȂBBHֹA;ntEA4ldE"A1cBGSA5aBNHBG;A?cBYBGۇh_dAAbBGЇA^ntEN.AUldEJAHcBAEaBGAI`B0BGAWcB,YB$JBGAkntEԆܴ_AaaBc	1AocBYBG|HA|cBYBGqAldE˂SAntE'AcBAaBJBPBGNAcBBJBG=A`B-AcBYB}1AcBYAcBYBGUAldE)AntE|AcBLA`CAaB-1BG TAcBcM3BYBG¹AldE3AntEهAcAaBh1AcBYBGņTAbBOPBGKJ{DzDhhBҵJA!HzDxDhC`hB (&IHyDLxDhhCKB` (H!JxDzDhC`hB ( IJyDzDhhCKB` (J!HzDxDhC`hBq (ۺIHyDxDhhCKB`_ (ɺH!JxDzDhC`hBL (𶺁IJyDzDhhCKB`: (zJ!zHzDxDhC`hB' (sIsHyDxDhhCKB` (lH!lJxDzDhC`hB (ldIeJyDzDhhCKB` (Z]J!]HzDxDhC`hB (GVIVHyDxDhhCKB` (5OHOqNJxDzDhC`hB (!GIGJyDzDhhCKB` (@JOq?HzDxDhC`hB (8I8HyDxDhhCKB` (1HOq0JxDzDhC`hBYfk (չ 
>  ,       r  L r ( L  ( ާ   ު   n  J n $ J   " ئ   ֩   h  @ ,,$yDzDhhCKB` (n$@zDxDhC`hB (XIHyDxDhhCKB` (FHOqJxDzDhC`hB (2IJyDzDhhCKB` ( JOqHzDxDhC`hB (IHyDxDhhCKB` (HAaJxDzDhC`hB	| (M}DDr (݀HKxD{DhhBHB"IxDyDhC+`hBW (JIzDLyDhhCKB`D (𮸸JAaHzDxDhC`hB0 (𚸰IHyDxDhhCKB` (HAaJxDzDhC`hB	
 (tM}DҺ  (kJKzD{DhhBқJC!HzDxDhC`hB (OIHyDoLxDhhCKB` (<H!JxDzDhC`hB ()IJyDzDhhCKB` (~JOq}HzDxDhC`hB (vIvHyDxDhhCKB` (oHOqnJxDzDhC`hBs (ݿgIgJyDzDhhCKB`a (˿`JOq_HzDxDhC`hBM (XIXHyDxDhhCKB`; (QHOqPJxDzDhC`hB	' (IM}D (EKEJ{DzDhhBCJD!CHzDxDhC`hB~ӊ (l
 r  F l " D    ֤   ԧ   b  t * b  >   ʣ   Ȧ ~   F ~ 4 Z  2   Ģ   ¥ x  P v , N  *     ʤ   n IHyDLxDhhCKB`w (ᾣHOqJxDzDhC`hBc (;IJyDzDhhCKB`Q (𻾔JOqHzDxDhC`hB= (𧾌IHyDxDhhCKB`+ (𕾅HA
aJxDzDhC`hB (}I}JyDzDhhCKB` (ovJAauHzDxDhC`hB ([nInHyDxDhhCKB` (IgHAafJxDzDhC`hB	 (5_M}D (,[K[H{DxDhhBYHE!YJxDzDhC`hB (QIRJyD6LzDhhCKB` (JJ!JHzDxDhC`hB (BICHyDxDhhCKB`n (ؽ;H!;JxDzDhC`hB[ (Ž4I4JyDzDhhCKB`I (-J!-HzDxDhC`hBR_6 (
 X z 0 V  .  
     t  L r ( J   (  Ȟ    ܡ   j  F j   F    ֝ yDxDhhCKB` (@h!h%xDzDhC`hB (+HH%yDzDhhCKB` ((%Oq$zDxDhC`hB (yDxDhhCKB` (Oq$xDzDhC`hBm (׼$yDzDhhCKB`Y (ü$OqzDxDhC`hBC (||yDxDhhCKB`/ (\OqX$xDzDhC`hB (88$yDzDhhCKB` (o$OqzDxDhC`hB (YIHyDxDhhCKB` (GHAaJxDzDhC`hB (3IJyDzDhhCKB` (!JAaHzDxDhC`hB	 (
M}Dk (KH{DxDhhBHF!JxDzDhC`hB~ (IJyDLzDhhCKB`k (ջJAaHzDxDhC`hB	W (M}DM (KJ{DzDhhBҼJG!HzDxDhC`hB2 (𜻴IHyDLxDhhCKB` (HOqJxDzDhC`hB (uIJyDzDhhCKB` (cJOqHzDxDhC`hB (OIHyDxDhhCKB` (=HOqJxDzDhC`hB ()IJyDzDhhCKB` (JOqHzDxDhC`hB (xIxHyDxDhhCKB` (qHOqpJxDzDhC`hBs (ݺiIiJyDzDhhCKB`a (˺bJOqaHzDxDhC`hBM (ZIZHyDxDhhCKB`; (SHOqRJxDzDhC`hB𝀧& (
`  6   Ĝ    p  D f  :   ț    t  H n $ F  " ؚ   ؝  x  f  @ b  @ *   Ι   ʜ   \ ~ 4 Z  2   Ę    x  P v , N  *    IJyDzDhhCKB`~ (JOQHzDxDhC`hB	j (ԹM}D2` (ˁKH{DxDhhBһHH!JxDzDhC`hBE (𯹴IJyDLzDhhCKB`2 (𜹬JOqHzDxDhC`hB (IHyDxDhhCKB` (vHOqJxDzDhC`hB (bIJyDzDhhCKB` (PJA"aHzDxDhC`hB (<IHyDxDhhCKB` (*HA&aJxDzDhC`hB (wIxJyDzDhhCKB` (pJA(apHzDxDhC`hB	 (hM}DN| (dKeH{DxDhhBbHI!bJxDzDhC`hBa (˸[I[JyD6LzDhhCKB`N (SJ!SHzDxDhC`hB; (LILHyDxDhhCKB`) (EH!EJxDzDhC`hB (=I>JyDzDhhCKB` (n6J!6HzDxDhC`hBer ([ 
 f  > f P  >   Ε   ̘   Z  6 X  4       v   > v , R  *       r  L yDxDhhCKB`~ (h!h%xDzDhC`hBi (ӿHH%yDzDhhCKB`U ((%Oq$zDxDhC`hB? (yDxDhhCKB`+ (Oq$xDzDhC`hB ($yDzDhhCKB` (k$OqzDxDhC`hB (U||yDxDhhCKB` (A\OqX$xDzDhC`hB (+88$yDzDhhCKB` ($OqzDxDhC`hB (IHyDxDhhCKB` (H@JxDzDhC`hBq (۾IJyDzDhhCKB`_ (ɾJAaHzDxDhC`hB	K (M}DA (KJ{DzDhhBJJ!HzDxDhC`hB& (IHyDLxDhhCKB` (}HOqJxDzDhC`hB	 (iM}DǸ (`KJ{DzDhhBҼJK!HzDxDhC`hB (DIHyDLxDhhCKB` (1HOqJxDzDhC`hB (IJyDzDhhCKB` (JOqHzDxDhC`hB (IHyDxDhhCKB`{ (彏HA0aJxDzDhC`hBg (ѽIJyDzDhhCKB`U (𿽀JA4aHzDxDhC`hB	A (xM}D	7 (tJtKzD{DhhBrJL!rHzDxDhC`hB (jIkHyD%LxDhhCKB`	 (scH@9bJxDzDhC`hB (_[I[JyDzDhhCKB` (MTJ@;SHzDxDhC`hB🀫 (8
 f  < ^  2  
  ޔ   l  @ b  6   Đ    t  L r ( J   (  ȏ    ܒ   h  z 0 h  D   Ў   Α   `  8 ^  6       Ȑ |  T z 0 R  88yDxDhhCKB`" (@=$xDzDhC`hB (vIJyDzDhhCKB` (dJ@?HzDxDhC`hB (PIHyDxDhhCKB` (>H@AJxDzDhC`hB (*IJyDzDhhCKB` (JA:aHzDxDhC`hB	 (M}Db (HKxD{DhhBHM!JxDzDhC`hBu (߻IJyDLzDhhCKB`b (̻JA>aHzDxDhC`hBN (𸻳IHyDxDhhCKB`< (𦻬HOQJxDzDhC`hB	( (𒻤M}D (KH{DxDhhBҞHN!JxDzDhC`hB (mIJyDrLzDhhCKB` (ZJ!HzDxDhC`hB (GIHyDxDhhCKB` (5H@CJxDzDhC`hB (!yIyJyDzDhhCKB` (rJ@EqHzDxDhC`hB (jIjHyDxDhhCKB` (cH@GbJxDzDhC`hBk (պ[I[JyDzDhhCKB`Y (úTJADaSHzDxDhC`hBE (LILHyDxDhhCKB`3 (EHAHaDJxDzDhC`hBӂ (=M}D 
  ̎   ^  6 \  4   Ɗ   ƍ  f  T z . P  ,     ̌   p  J n $ J   " ؈   ֋   h  @ f  >   Ї   Њ  (|KH{DxDhhBҴHO!JxDzDhC`hB (빭IJyDLzDhhCKB`n (عJ!HzDxDhC`hB[ (ŹIHyDxDhhCKB`I (𳹗H!JxDzDhC`hB6 (𠹏IJyDzDhhCKB`$ (J!HzDxDhC`hB ({IHyDxDhhCKB` (izH!zJxDzDhC`hB (VrIsJyDzDhhCKB` (DkJ!kHzDxDhC`hB (1dIdHyDxDhhCKB` (]H!]JxDzDhC`hB (UIVJyDzDhhCKB` (NJOqNHzDxDhC`hB| (FIGHyDxDhhCKB`j (Ը?HOq?JxDzDhC`hBV (7I8JyDzDhhCKB`D (0JOq0HzDxDhC`hBXe0 (
ȉ ~  l  F j   F    օ   ֈ   h  B h  B   Ԅ   ԇ   b  > `  <   ʃ yDxDhhCKB` (4hOqd$xDzDhC`hB (DD$yDzDhhCKB` (
$$@ zDxDhC`hB (  yDxDhhCKB`v (HOqJxDzDhC`hBb (̿IJyDzDhhCKB`P (JOqHzDxDhC`hB< (IHyDxDhhCKB`* (HAaJxDzDhC`hB	 (M}D޹ (wHKxD{DhhBHP!JxDzDhC`hB ([IJyDLzDhhCKB` (HJATaHzDxDhC`hB (4IHyDxDhhCKB` ("HAVaJxDzDhC`hB	 (M}Dl (KH{DxDhhBҠHR!JxDzDhC`hB (龙IJyDpLzDhhCKB`l (־JOqHzDxDhC`hBX (¾IHyDxDhhCKB`F (𰾂HOqJxDzDhC`hB2 (zI{JyDzDhhCKB`  (sJOqsHzDxDhC`hB (vkIlHyDxDhhCKB` (ddHAXadJxDzDhC`hB (P\I]JyDzDhhCKB` (>UJA^aUHzDxDhC`hB	 (*MM}D (!IKJH{DxDhhB
GHS!GJxDzDhC`hB (
H   ҂   ȅ ~  V x . T 
 ,        ^  L r & H  $ ڀ   ڃ ă z  h  B d  @      ̂   ^  6 \  4 ~   ~  ~ IJyDLzDhhCKB` (qJOqHzDxDhC`hB (]IHyDxDhhCKB` (KHOqJxDzDhC`hB (7IJyDzDhhCKB` (%JOqHzDxDhC`hB (IHyDxDhhCKB` (xHOqwJxDzDhC`hB (pIpJyDzDhhCKB`o (ټiJOQhHzDxDhC`hB	[ (żaM}D#Q (]H]KxD{DhhB[HT"[IxDyDhC+`hB6 (SJTIzD8LyDhhCKB`# (LJOqKHzDxDhC`hB (yDIDHyDxDhhCKB` (g=HOq<JxDzDhC`hB (S5I5JyDzDhhCKB` (A.JOq-HzDxDhC`hBS^ (- 
Ā x}  P} v ,} N } * |  |  |  l|  H| j  | H 2 {   { ~ { ~ { ~ d{ ~ <{ b~ { :~ z IHyDxDhhCKB`d (λHAjaJxDzDhC`hBP (IJyDzDhhCKB`> (JAnaHzDxDhC`hB	* (M}D  (KJ{DzDhhBҾJU!HzDxDhC`hB (oIHyDLxDhhCKB` (\H!JxDzDhC`hB (IIJyDzDhhCKB` (7J!HzDxDhC`hB ($IHyDxDhhCKB` (H!JxDzDhC`hB (IJyDzDhhCKB` (J!HzDxDhC`hBp (ں|I}HyDxDhhCKB`^ (ȺuHOquJxDzDhC`hBJ (mInJyDzDhhCKB`8 (fJOqfHzDxDhC`hB$ (^I_HyDxDhhCKB` (|WHOqWJxDzDhC`hB (hOIPJyDzDhhCKB` (VHJOqHHzDxDhC`hB (B@IAHyDxDhhCKB` (09HOq9JxDzDhC`hBjw (
|} 2z T} 
z 0} y } y | | y | ty | Ny r| (y N| y (| x | x { x { px { Jx p{ &x H{ w ${ w z w z w z fw z Bw dz w @z v z v 00$yDzDhhCKB`: ($OqzDxDhC`hB$ (IHyDxDhhCKB` (|H@JxDzDhC`hB (hIJyDzDhhCKB` (VJ@HzDxDhC`hB (BIHyDxDhhCKB` (0HAaJxDzDhC`hB	 (M}Dz (KH{DxDhhBHV!JxDzDhC`hB (IJyDLzDhhCKB`z (丹JA|aHzDxDhC`hB	f (иM}D.\ (ǀKH{DxDhhBҫHW!JxDzDhC`hBA (𫸤IJyDLzDhhCKB`. (𘸜JOqHzDxDhC`hB (IHyDxDhhCKB` (rHOQJxDzDhC`hB (^IJyDzDhhCKB` (L~JAa~HzDxDhC`hB (8vIwHyDxDhhCKB` (&oHAaoJxDzDhC`hB (gIhJyDzDhhCKB` ( `JAa`HzDxDhC`hB	 (XM}DJx (TKUH{DxDhhBRHX!RJxDzDhC`hB] (ǿKIKJyDLzDhhCKB`J (CJAaCHzDxDhC`hB~Ӊ6 (
(y u x u x u x fu x Bu dx u @x t x t w w t w t w ^t w 6t ^w Hw s 6w s w s v s v zs v Rs xv .s Pv s ,v r v r u r u nr u u 6r nu $r Ju q  u q IHyDxDhhCKB` (HAaJxDzDhC`hB	 (M}D` (IHyDxD
hhBҼJY!KzD{Dh@`hBs (ݾHKxDL{DhhAKB`` (ʾH!JxDzDhC`hBM (𷾦IJyDzDhhCKB`; (𥾟JOqHzDxDhC`hB' (𑾗IHyDxDhhCKB` (HOqJxDzDhC`hB (kIJyDzDhhCKB` (YJAaHzDxDhC`hB (EyIyHyDxDhhCKB` (3rHAaqJxDzDhC`hB (jIjJyDzDhhCKB` (
cJAabHzDxDhC`hB ([I[HyDxDhhCKB`} (THAaSJxDzDhC`hB	i (ӽLM}D1_ (ʅHHHKxD{DhhBFHZ"FIxDyDhC+`hBD (>J?IzDLyDhhCKB`1 (7J@y6HzDxDhC`hBer ( 
t p s p s s bp s Pp vs *p Ns p *s o s o r o r lo r Ho jr  o Fr n r n q n q n q dn q <n dq Nq n <q m q m p m ||yDxDhhCKB` (\@{X$xDzDhC`hB (88$yDzDhhCKB` ($@}zDxDhC`hBj (ԼIHyDxDhhCKB`X (¼H@JxDzDhC`hBD (IJyDzDhhCKB`2 (JAaHzDxDhC`hB (IHyDxDhhCKB` (vHAaJxDzDhC`hB	 (bM}D (YJKzD{DhhBJa#IzDyDh@;`
hB (=HIxDLyDh
hCKB` (*H!JxDzDhC`hB (IJyDzDhhCKB` (J!HzDxDhC`hB (IHyDxDhhCKB`v (ໞH!JxDzDhC`hBc (ͻIJyDzDhhCKB`Q (𻻐J!HzDxDhC`hB> (𨻈IHyDxDhhCKB`, (𖻁H!JxDzDhC`hB (zIzJyDzDhhCKB` (qsJ!sHzDxDhC`hB (^kIlHyDxDhhCKB` (LdH@dJxDzDhC`hB (8\I]JyDzDhhCKB` (&UJ@UHzDxDhC`hB (MINHyDxDhhCKB` ( FH@FJxDzDhC`hB ( 
p l o l o jl o >l do l <o k o k n k n k n Zk n ln "k Zn k 6n j n j m j m zj m Vj zm 0j Vm j 0m i m i l i l xi l Ri xl .i Pl i ,l h l h k h k nh ,,$yDzDhhCKB` (Z$OqzDxDhC`hB (DIHyDxDhhCKB` (2H@JxDzDhC`hB (IJyDzDhhCKB` (J@HzDxDhC`hB (IHyDxDhhCKB`| (HAaJxDzDhC`hB	h (ҹM}D0^ (ɁKJ{DzDhhBJb!HzDxDhC`hBC (IHyDLxDhhCKB`0 (𚹸HAaJxDzDhC`hB (IJyDzDhhCKB`
 (tJAaHzDxDhC`hB	 (`M}D (WKJ{DzDhhBқJc!HzDxDhC`hB (;IHyDoLxDhhCKB` ((H!JxDzDhC`hB (IJyDzDhhCKB` (~J@}HzDxDhC`hB (vIvHyDxDhhCKB`s (ݸoH@	nJxDzDhC`hB_ (ɸgIgJyDzDhhCKB`M (`J@_HzDxDhC`hB9 (XIXHyDxDhhCKB`' (QH@
PJxDzDhC`hB	 (}IM}Dۺ	 (tEJEKzD{DhhBCJd#CIzDyDh@;`
hB~ӊ (X
j Jg hj g Dj f j f i f i f i bf i :f bi Li f :i e i e h e h ~e h Ve ~h hh e Vh e 2h d 
h d g d g td g Pd rg (d Ng d &g c g c f c f f Xc f Fc HIxDLyDh
hCKB`c (ͿH@JxDzDhC`hBO (𹿛IJyDzDhhCKB`= (𧿔J@HzDxDhC`hB) (𓿌IHyDxDhhCKB` (HAaJxDzDhC`hB (m}I}JyDzDhhCKB` ([vJAauHzDxDhC`hB (GnInHyDxDhhCKB` (5gHAafJxDzDhC`hB	 (!_M}D ([K[H{DxDhhBYHe!YJxDzDhC`hB (QIRJyD6LzDhhCKB` (JJ!JHzDxDhC`hBl (־BICHyDxDhhCKB`Z (ľ;H!;JxDzDhC`hBG (4I4JyDzDhhCKB`5 (-J!-HzDxDhC`hBR_" (
|e 0b Re b .e a e a d a d pa d La nd $a Jd  a "d `  d c ` c ` c h` c B` hc ` Bc _ c _ b _ yDxDhhCKB` (,h!h%xDzDhC`hB (HH%yDzDhhCKB` ((%@$zDxDhC`hB (yDxDhhCKB`o (ٽ@$xDzDhC`hBY (ý$yDzDhhCKB`E ($@zDxDhC`hB/ (||yDxDhhCKB` (\@X$xDzDhC`hB (o88$yDzDhhCKB` ([$@zDxDhC`hB (EIHyDxDhhCKB` (3HAaJxDzDhC`hB (IJyDzDhhCKB` (
JAaHzDxDhC`hB	 (M}DW (KJ{DzDhhBJf!HzDxDhC`hBj (ԼIHyDLxDhhCKB`W (HAaJxDzDhC`hB	C (M}D9 (HKxD{DhhBҼHg"IxDyDhC+`hB (JIzDLyDhhCKB` (uJ@HzDxDhC`hB (aIHyDxDhhCKB` (OH@JxDzDhC`hB (;IJyDzDhhCKB` ()J@!HzDxDhC`hB (IHyDxDhhCKB` (H@#JxDzDhC`hB (xIxJyDzDhhCKB`s (ݻqJ@pHzDxDhC`hB_ (ɻiIiHyDxDhhCKB`M (bH@aJxDzDhC`hB9 (ZIZJyDzDhhCKB`' (SJ@RHzDxDhC`hB𝀧 (|
8b ^ b ^ a ^ a p^ a H^ fa ^ >a ] a ] ` ] ` t] ` L] j`  ] F` \ ` \ _ \ _ \ _ _ P\ _ >\ d_ \ :_ [ _ _ [ ^ [ ^ [ ^ X[ ~^ 4[ V^ [ 2^ Z 
^ Z ] Z ] tZ ] PZ r] (Z N] Z &] Y ] Y \ Y IHyDxDhhCKB`j (ԺHA!aJxDzDhC`hB	V (M}DL (KH{DxDhhBһHh!JxDzDhC`hB1 (𛺴IJyDLzDhhCKB` (J@%HzDxDhC`hB
 (tIHyDxDhhCKB` (bH@'JxDzDhC`hB (NIJyDzDhhCKB` (<JA#aHzDxDhC`hB ((IHyDxDhhCKB` (HA'aJxDzDhC`hB (wIxJyDzDhhCKB` (pJA)apHzDxDhC`hBr (ܹhIiHyDxDhhCKB`` (ʹaHAaaJxDzDhC`hB	L (YM}DB (UJVKzD{DhhBSJi#SIzDyDh@;`
hB' (LHLIxD#LyDh
hCKB` (~DH!DJxDzDhC`hB (k=I=JyDzDhhCKB` (Y6J!6HzDxDhC`hBdq (F
[ >X `[ X >[ ([ W [ W Z W Z ~W Z ZW |Z 2W XZ W 0Z V Z V Y V Y vV Y NV tY *V LY V *Y Y U Y U X U X lU X HU lX "U yDxDhhCKB`j (Ըh!h%xDzDhC`hBU (HH%yDzDhhCKB`A ((%!$zDxDhC`hB, (yDxDhhCKB` (@)$xDzDhC`hB (l$yDzDhhCKB` (X$@+zDxDhC`hB (B||yDxDhhCKB` (.\@-X$xDzDhC`hB (88$yDzDhhCKB` ($@/zDxDhC`hB (IHyDxDhhCKB`r (ܿHOqJxDzDhC`hB^ (ȿIJyDzDhhCKB`L (JAaHzDxDhC`hB	8 (M}D . (KJ{DzDhhBJj!HzDxDhC`hB (}IHyDLxDhhCKB`  (jH@5JxDzDhC`hB (VIJyDzDhhCKB` (DJOqHzDxDhC`hB	 (0M}D ('KH{DxDhhBҭHk!JxDzDhC`hB (IJyDqLzDhhCKB` (J@7HzDxDhC`hBz (侖IHyDxDhhCKB`h (ҾH@JxDzDhC`hBT (𾾇IJyDzDhhCKB`B (𬾀JA1aHzDxDhC`hB. (xIyHyDxDhhCKB` (qHA5aqJxDzDhC`hB	 (riM}Dи (ieKfH{DxDhhBcHl!cJxDzDhC`hB (M\I\JyDLzDhhCKB` (:TJOqTHzDxDhC`hB𠀬 (% 
W >T ^W T 6W S W S V S V nS V FS dV S <V R V R U R U rR U NR pU &R LU R $U Q U T Q T Q T jQ T BQ hT Q @T P T T P S P S P S ^P S :P \S P 8S O S O R O R zO R R BO zR 0O VR 
O ,R N yDxDhhCKB` (xhOqd$xDzDhC`hB (bDD$yDzDhhCKB` (N$$Oq zDxDhC`hB (8  yDxDhhCKB` ($HOqJxDzDhC`hB (IJyDzDhhCKB` (JOqHzDxDhC`hB (IHyDxDhhCKB`n (ؼHA;aJxDzDhC`hB	Z (ļM}D"P (KJ{DzDhhBJm!HzDxDhC`hB5 (IHyDLxDhhCKB`" (HA?aJxDzDhC`hB (xIJyDzDhhCKB` (fJAAaHzDxDhC`hB	 (RM}D (IJKzD{DhhBҠJn!HzDxDhC`hB (-IHyDpLxDhhCKB` (H!JxDzDhC`hB (IJyDzDhhCKB` (JOqHzDxDhC`hBw ({I{HyDxDhhCKB`e (ϻtHOqsJxDzDhC`hBQ (lIlJyDzDhhCKB`? (eJOqdHzDxDhC`hB+ (]I]HyDxDhhCKB` (VH@IUJxDzDhC`hB (oNINJyDzDhhCKB` (]GJAEaFHzDxDhC`hB (H
P M P ZM |P 2M PP M (P L  P L O L O jL O FL hO L FO 0O K O K N K N K N bK N :K bN LN K :N J N J M J M J M XJ ~M 4J VM J 2M I 
M I L I L tI L PI rL (I IHyDxDhhCKB`N (HAIaJxDzDhC`hB	: (𤺿M}D0 (IJyDzDhhBҹHo!JxDzDhC`hB (IJyDLzDhhCKB` (lJ!HzDxDhC`hB (YIHyDxDhhCKB` (GH!JxDzDhC`hB (4IJyDzDhhCKB` ("J!HzDxDhC`hB (IHyDxDhhCKB` (H!JxDzDhC`hB (wIxJyDzDhhCKB`n (عpJ!pHzDxDhC`hB[ (ŹiIiHyDxDhhCKB`I (bH!bJxDzDhC`hB6 (ZI[JyDzDhhCKB`$ (SJ@MSHzDxDhC`hB (zKILHyDxDhhCKB` (hDH@ODJxDzDhC`hB (T<I=JyDzDhhCKB` (B5J@Q5HzDxDhC`hBbo (.
PK H (K G K J G J G J nG J HG nJ $G HJ F $J F I F I F I jF I FF jI  F FI E  I E H E H E H fE H >E dH E <H D yDxDhhCKB`T (`@\$xDzDhC`hB> (<<$yDzDhhCKB`* ($OqzDxDhC`hB (~IHyDxDhhCKB` (lH@JxDzDhC`hB (XIJyDzDhhCKB` (FJ@HzDxDhC`hB (2IHyDxDhhCKB` ( HAaJxDzDhC`hB	 (M}Dj (KJ{DzDhhBJp!HzDxDhC`hB} (IHyDLxDhhCKB`j (ԿHAUaJxDzDhC`hBV (IJyDzDhhCKB`D (𮿭JAWaHzDxDhC`hB	0 (𚿥M}D& (KH{DxDhhBҟHr!JxDzDhC`hB (uIJyDoLzDhhCKB` (bJ@UHzDxDhC`hB (NIHyDxDhhCKB` (<IHyDxDhhC[B` (*zI{HyDxDhhCKB` (sH@YsJxDzDhC`hB (kIlJyDzDhhCKB` (dJAYadHzDxDhC`hBt (޾\I]HyDxDhhCKB`b (̾UHA_aUJxDzDhC`hB	N (MM}DD (IKJH{DxDhhB
GHs!GJxDzDhC`hB( (
\G D 0G C G C F C F nC F FC lF "C DF B  F B E B E E vB E dB E >B `E B <E A E A D D A D A D ZA |D 2A XD A 4D @ D @ C @ C z@ C R@ xC .@ PC @ .C C ? C ? IJyDLzDhhCKB` (J@[HzDxDhC`hB (뽝IHyDxDhhCKB`o (ٽH@]JxDzDhC`hB[ (ŽIJyDzDhhCKB`I (𳽇J@_HzDxDhC`hB5 (IHyDxDhhCKB`# (xH@awJxDzDhC`hB (ypIpJyDzDhhCKB` (giJAaahHzDxDhC`hB	 (SaM}D  (J]J]KzD{DhhB[Jt#[IzDyDh@;`
hB (.SHTIxD8LyDh
hCKB` (LH@cKJxDzDhC`hB (DIDJyDzDhhCKB` (=J@e<HzDxDhC`hBw (5I5HyDxDhhCKB`e (ϼ.H@g-JxDzDhC`hBS^Q ( 
A > A l> A H> jA  > FA = A = @ = @ = @ d= @ <= d@ N@ = <@ < @ < ? < ? < ? X< ~? 4< V? < IJyDzDhhCKB` (\JAkaHzDxDhC`hB (HIHyDxDhhCKB` (6HAoaJxDzDhC`hB ("IJyDzDhhCKB` (JAaHzDxDhC`hB	 (M}D Z (KJ{DzDhhBJu!HzDxDhC`hBm (׻IHyDLxDhhCKB`Z (ĻH!JxDzDhC`hBG (𱻬IJyDzDhhCKB`5 (🻥J!HzDxDhC`hB" (IHyDxDhhCKB` (zH!JxDzDhC`hB (gIJyDzDhhCKB` (UJ!HzDxDhC`hB (BIHyDxDhhCKB` (0yH@iyJxDzDhC`hB (qIrJyDzDhhCKB` (
jJ@kjHzDxDhC`hB (bIcHyDxDhhCKB`z ([H@m[JxDzDhC`hBf (кSITJyDzDhhCKB`T (LJ@oLHzDxDhC`hB@ (DIEHyDxDhhCKB`. (=H@q=JxDzDhC`hBr (
> N; p> &; L> ; $> :  > : = : = = V: = D: j= : B= 9 = 9 < 9 < 9 < d9 < @9 d< 9 @< 8 < 8 ; 8 ; 8 ; ^8 ; 68 \; 8 4; 7 ; 7 : 7 (($yDzDhhCKB` ($@szDxDhC`hB (IHyDxDhhCKB`r (ܹHOqJxDzDhC`hB^ (ȹIJyDzDhhCKB`L (JOqHzDxDhC`hB8 (IHyDxDhhCKB`& (HAaJxDzDhC`hB (|M}D	 (tHKxD{DhhBHv"IxDyDhC+`hB (XJIzDLyDhhCKB` (EJA}aHzDxDhC`hB (1M}D ()KJ{DzDhhBҪJw!HzDxDhC`hB (
IHyDLxDhhCKB` (H@uJxDzDhC`hB| (渓IJyDzDhhCKB`j (ԸJAaHzDxDhC`hBV (IHyDxDhhCKB`D (}HAa}JxDzDhC`hB0 (uIvJyDzDhhCKB` (nJAanHzDxDhC`hB
 (tfIgHyDxDhhCKB` (b_HAa_JxDzDhC`hB (NWIXJyDzDhhCKB` (<PJAaPHzDxDhC`hB ((HM}D ( EJEKzD{DhhBCJx#CIzDyDh@;`
hB~ӊ (
9 6 9 r6 9 N6 p9 &6 L9 6 $9 5  9 5 8 5 8 8 X5 8 F5 l8  5 B8 4  8 8 4 7 4 7 4 7 b4 7 >4 `7 4 <7 3 7 3 6 3 6 ~3 6 Z3 |6 23 X6 3 06 2 6 5 2 5 2 HIxDLyDh
hCKB` ( yHAaJxDzDhC`hB ( eIJyDzDhhCKB` ( SJAaHzDxDhC`hB ( ?M}D ( 7KJ{DzDhhB҆Jy!HzDxDhC`hB ( IHyDoLxDhhCKB` ( wH!wJxDzDhC`hB ( pIpJyDzDhhCKB`y ( iJ!iHzDxDhC`hBf ( оaIbHyDxDhhCKB`T ( ZH@wZJxDzDhC`hB@ ( RISJyDzDhhCKB`. ( KJAaKHzDxDhC`hB ( CIDHyDxDhhCKB` ( r<HAa<JxDzDhC`hB ( ^4I5JyDzDhhCKB` ( L-JAa-HzDxDhC`hBR] ( 8
4 1 4 `1 4 <1 ^4 1 <4 (4 0 4 0 3 0 3 0 3 \0 3 60 \3 0 43 / 3 / 2 / 2 z/ 2 R/ x2 ./ P2 / IHyDxDhhCKB`p ( ڽHAaJxDzDhC`hB\ ( ƽIJyDzDhhCKB`J ( JAaHzDxDhC`hB
6 ( M}D+hCK+` ( ( KJ{DzDhhBҿJz!HzDxDhC`hB
 ( wIHyDLxDhhCKB` ( dHOqJxDzDhC`hB ( PIJyDzDhhCKB` ( >JOqHzDxDhC`hB ( *IHyDxDhhCKB` ( HOqJxDzDhC`hB ( IJyDzDhhCKB` ( JOqHzDxDhC`hBt ( ޼{I|HyDxDhhCKB`b ( ̼tHAatJxDzDhC`hBN ( lImJyDzDhhCKB`< ( eJAaeHzDxDhC`hB( ( ]M}D ( ZKZJ{DzDhhBXIXJyDzDhhCKB` ( oQM}D+h$LCK ( bO4(D `3x-+j FLYp;h3DJ0FYhG  6AH'xD`q\+@Ԁ>IyD
h *@΀pEʀ:HqxxD< (q2J7LY`|D$h0h (x } 
1 J. l1 ". H1 -  1 - 0 0 - 0 - 0 ^- 0 6- \0 - 40 , 0 , / , / z, / R, x/ ., P/ , ,/ + / + . . + . t+ . T, dl", x+  + N~D3h +M HIxxD (B FY0hGK"{D` \n(	ѧL &K|D"h *F
$@d(o(x(u(U(6hFHxD NJ1Y0hGCO1 I&yD`F & FcяHY hLHJY zDhhGFJzDhx / ԀB݇HY  KBSݥJKzD{DhhB҂J!zDhC`	 (9}K{Dh`{H|KxD{DhhByHzJxDzDhhCKB` (sHo~rrIxDyDhC+`hB (kLSO|D%hE{%`x (VNYp8h (?cJ(FY`3hG(`N
_O~D|_MDD^N}D~D%1h FG("9h  B*hhBB*`R (0h

0J@+0`E (ѸE-
HOHM$DHN}DD~D	;hhB)h  AB)`# (і3h

JC+3` (щEO4KB +".c ,a-I.KyD{DhhB+H
!xDhB_ (b
+  l* *- * z* dR* D* $H, ( 8,  , , ( , ( + ( +  :( z+ .( r+ p+ ' 
+ ' + * N' * HJxDzDhhBҫHxDhBK` ( JzDhhBҤOHD=hE=`y (JYhh0O(FY0hG   '-
`%Fh\E?MYP*hBHaY 0hGCO1K`{D`a\-)&ъJKzD{DhhB҈J-#IzDyDh@;`
hB/ (ѢHpIxDhC`" (ѕ|J(hzD 8XFY0hG   tHxD`sKsH{DxDhhBqJ[IzDh (mmImHyDxD
hhBkJSIzDh@` (X+@cJdIzDyDhhBaHbJxDGKzDh )F
 hA`\JzDhB
 (3XHo}qxDhB` ( &QK{DhPHxDPKY
h * ÀML8FY`3hGF1HY 
hGBF %DDELDD|D8F (ќ   B 0 -C{ 0i (  B!hJA+!`Z (8F -BXxF 
) & ) d& ) dl
' $) % ) % ( & & ( `% ( ( <% v( T( 
% x( @( $ ( R(  ` ' `$ ' Z$ ' >K?I{DyDh
hB
<HovqxDhC`8HxD` (T5K /5Iw{DyDh
hB1K{Dh@{` (< E+MY0h (vw(6bR 0DG_kkkkk!lGlmllmmmnCninnHxDH"Y 
`  	O5!v1)v4n& ># t& >$ J&  # <& `( 8-OO"KDDH{DMDxD}D	  B 0 0C HxDhC`	!`KO0{DH"xD`O2mJ!zD`yKO0{D	J!zD`nKO0{D`_NL~D|D $h ( 6F+ ( 0 @J @J0hzDhBJzD (HO2xD` ( K1h{DhBҾHJxDIzDhC`hB (JIzDhC` (FGq<)!)@
=) >)@3q=) !)@otvq ( 𥁚IyDh@k6.` 򍁖JzDhBҔJzDh@K`U (шIJyDzDhhBҍJnKzDh@;A (t-(0 & &
WHxD[
A^JB$ю|I}HyDxD
hhBzJzDhTK (HvJwKzD{DhhBtJPKzDh (6
OOӹlKmH{DxDhlK`{DhBiHAIxDhC` ( cLcJ|DzD!hD `Y1K.^Io|s]HyD\JxD\K $zD{Dz(hh ( 
BIB"~MJ+hzDhBKHIxDh ((hhB HA  (Ѹ(hhBhB`qt (ѧ 
  
D v  % n  \% B% >  >% 
% $ % $ $ $  ! F$ l$   $   # v#   V# <#  ,#  "  " " r "  " 2 n" b L" H" :   "   ! XESKSI{DyDhhBQJIIzDhC` ("
BBJBFHO1xD`4BH?HxD>I"xX`  _;H;KxD{DhhB9H+KxDhB;` ( !l?X?c0?r0x?V?A0yV (r HxDouv
N
N 
NIHyDxD
hhB
  ,-.  P     
 8"      z 0 -OQHRKxD{Dhh  )MNMONLO
4LM~D0D|DD}DD[0h:hB	#h;I  CB#` (our)hD 0C+X 0O
( (ѻ 0*h  B.J#IzDhC` (ѣ)H)KxD{DhhB	'HKxDhB;` (ь0J HzDxDhhJzDhBJIzDhC` (m 
(         h N  >  *   -OFFD ( EK{DhI(FJ $yDzD``CO  	zqO	!HFJzD` ( "O 	IDNyD8`~DH`QFxD3``(F FD=h4hBґMoovJ}DzD)hAkh)`$ (ъLH|DxD%hhB耈JHzDxDhljO"0FDK ;hYHC!H0F ( ̀}J , )hzD`0F "5F` ( vNO 	vI~DvHyD!`3hxDtNuI~D?hyDhc`h3h&Fbaa`b;joyqBЊBoxsBWE*pk !XFF0kF  FXF oxsB WErl * (
!HC`E   7b		6E !(FY !`(Foos a.hB &:nh '
EIX h+CIX hG  vh?0h (#IBph"NhB8F;F (ohFh3IX h;3IX )FhG-h8h ( #+p,HfaxDh%b*M}D(hk)K)J  )I{DzD(`yD``` $ F $Z $ F Mp}    P . F  *       < ~  $ r | X !d n .    @h  pG-GFFF *%%D<<FJSEK[+-5\+3`x[(-`uF x@80?α?(1h18F0`2h	BHFIFB FLF 4#xv+V+% %IX h3	HX  F
hG  $#x + F 2z dlK{DhpGz YpG8FX!
 * %c5Xh(- F8@8  T:-O{DLjh~DH: ~Q"@J{DB|D1``4yD`0
 #,xDyD``j*:~D
zD{DxD	yD

jYh *A -(Fa 2EF	h+3)zDhpyDh2xB	xDyDh
hB+i~D6h2x
*	!Xh3)Xh0FG  96{D`y+Y3hFSx)x	XxD h;hGFl	xDhx-& b
				

			
f
(Bb/E_|=^e=































fffffffff
         
@@@@@@@@@
]	]	]	]	]	]	]	]	]	]	















































 o1la'7zD{DhhBDg~D3h +A=xDyDhhBA27{Dh (Aˁ'zDh)$¹t7t'{DzDhhBA /A\xDh .TT'yDzDhhi EA@7@'{DizDhhA0 "xDx h5y (h +A'yDzDhhvB7{D@hyDhh
PE<-е> EBEA % -A\>-p<-n&zDh (A6yD{Dhh (<fxD~Dh3h6{Dh&Xhf6~D{D1hhR0 /y1htVt}DyD(h	h(FAiB5XV8F}D)h$ ([H&HzDxDhhBA)h20V0}DyD(h
hBA6h V}D)hF|B3 (0(À+e~D1h ( (hx +1h8F (A /2hxDh2e(FYhG  %-zD8F (6hxDh6(FbXhG  %-zDq|U}D+hx08	(A؄8F (҄6h-h6(FbXhG  L%-zDQDUD5}D{D(hh (0h-h0dd(FY
hG  %-zD3U}D(hx0:	*A5{Dh (0h-h0d(FY
hG  $-zD8F (z2hxDh*N(FYhG  $-zD T}D(hx0:	*A^8F (X6h-h>(FT
0hG  |$-zD ֿ3hCIpcXxD hhGdxDhx (1TT6h}D-h.J(FXhG  <$-zD 4xD h 0	)A3h#JXhG pF (T6h}D-h.H"X(FhG  J-zD  /	/AH1hxDh)N(FYhG  J-zD n /ۃ /؃	/ՃH1hxDh)N(FYhG  J-zD T/HxD0AM6h}D-h>l(FT0hG  J-zD 7 //HxD0M6h}D-h>,(FT0hG  J-zD /K{D3   ){M6h}D-h>(FT	0hG  J-zD  /e/
HxD0 +AXM6h}D-h.jJXh(FG  J-zD ׾/DK{D3   ):M6h}D-h>l(FT
0hG  J-zD  /$/
ܥHxD0 +AM6h}D-h.IJXh(FG  J-zD /K{D3   )M6h}D-h>(FT0hG  J-zD v //
܋HxD0 +AւM6h}D-h.)JXh(FG  J-zD U/~K{D3   )zM6h}D-h>h(FT	0hG  tJ-zD 5 l t " y         x  r   dlt N >  l ( Z D  &   d      ^   t   $   d     x   x b .        p b , 4 *      z h Z D *        v  X <       X  |  X < 
   
   T
  x 
 T 8  //xD0 +A[6h}D-h6*Xh(FG  *-zD )/:{D3    )Z6h}D-h>(FT
0hG  *-zD  /s/
xD0  +AeZ6h}D-h6l*Xh(FG  x*-zD /Nh:{D3 @  )CXZ6h}D-h>((FT0hG  <*-zD  /+/,
xD0@ +AZ6h}D-h6)Xh(FG   *-zD /9{D3   )Y6h}D-h>(FT	0hG  )-zD v //yD1
 +AՀY6h}D-h6L)Xh(FG  )-zD Qi~D2hx Ex . Sd9{Dh )\)Xh )ь?F0h x:BA*yr4T	0h!,	xDh"5(FV9{DhB
(Fa (Axn8{DhP|08{DhhxDh .x*AY /U9F0 X (*F *ABX6h}D-h>$(FT	0hG  (-zD6h .* XT
PF 0G(FA<T  `6L(PFXhGF 0+< #xDh-0F$T0hGF /&^E	 PO `G=XF3? 'D  ] )
\xB3BOOxDhM`]gY9h[:h HF
 03!XHF
hG  	 3`Wg}D~D(hB (6lW}D+i*h %(XB5BPg!~D0F 3i)ZP0hA1` ,'zDh$'qhzDhB@'zDhyDhhvhyDh [  *@M q P= ( ayDh&zDEf~D3hS% `xDj   (@ł C n= ( 9f~D3h#0yD>6{DS% `xDB Z= ( l&zDh)d&zDh0\6{DhS%``TxD!i x= ( <yDhF40yDi$6{DS% `xD hC% \d=xDhxDhV% Z5{DhQ%  #B=V% e~D1h O95 {DhR5  (5{DhR5  * "O!U}D+hBтBpheIh~DB3h*FXyD	h Ihsh(FOtxDh`he=Yh * Nh . 0FHU}D)hB
0F (@3(h*`    ( @ @2x* yxAyl$+zzDy`Bzjz4
( {D`t 	)*:yxyl^y
+yD zA"`Yz4j &
({D	 yDC" A"`hp\l$=lzDhxDR%0yD^Q%0B%`P% BFFvE BܞB F ~B A a ( 0 :x*4x{Dh0F0F"0FFO ^F F-=O%MH}DxD-hh9F[hF )@BܨB B !!	 XT D  h/PF!h ( a B̿
  1  ( R@O@l@   H	  ( ?0(NT	 ~D0hh/0F!, ( %1h
 11`F ( N~D6h@l&  ODDD[FD
h  	
 	Ɋ l
  D  8hY  aYf63(.HxDhJIHzDyDxDhhBhB@𬄡Kh{D]NK~D{D1hVHxDh )@𙄜KH{DxDhhB 󐄙K{Dh *@
/@h ) 
hzM6h}D-h.(H!X(FhG  -`
$T ;@̼>?iY
+ g .Kn@mtIyDh rJzDqKh{D    <
 l 
 
   r
   ,
 h J 	    	   R	  p d   ` 
 
 
  f
 H
 	 	 v	 *	 (	 X 8 p x     " b D  l   ~    <   l   ^  $       @b H   b p   \  B     0  4h     x d  T >       0       ,
   Z yxDh6{D*hyD2fyDh0&zDh6h{DhM6{DhX6{D  :hyDA. 3 hhx*h` y
 m<& zDR KB 04 X&zDR+KB+0  F@0
+ Ƃ

+ ,OOf@Z5{Da B5{D     Q`FihzE\%zDhT%T5zD{DhhB6H5Rh{DhD5{Dh<5<%{DzDhhABQ $5 {D   *O4{Dh9khyx1y n"xDh )L .h/hyDhBxD h HhhBB4h{DhBH` (  pxD h`xqT0hppp$zDT0hhAGC6``T$hzDhB ʁ8T0h90$yXhGCO0 .D`@ yDhB 󭁟 R Oѥ OATHxDh9`HK{Dh9`W PйYU)U<8BE,B]I 0yDhB  8  a` (J  4#DT hQ<YT hGCO0`B'jh!UHEhOUH hhthxBU,B>f  8  O>WIyD
hi:B ODNDIDH~DyDxDh .ݻh>-IyD
h~%(tT  @𚀕Ns~D2hIyDh3h +2`r`HxDh0h (ڎIJyDzDhIhyD3`hr`N~DK{Dhh(N~D2h`IyDh2hK{Dh0`NY $0h|4`~,HxDhH,  zO %DDyODyI,FD0`yD 0Y )-U B)y KhB! B0Jh
O
R$ XQ$0; 
P`45
,ѩ  4YI`Xh .>OO ihS0 D  *RI;@s"          b   P x V < Z z  v       d  dn N  F .     L     ,            Pb  (    `T -OFL
FN|D~D#ik F!O b4 FO a_O@`L|D!iY@" F!# F@!OO r`K{DhD p<h2JKzD{DF  T0``	FJK,0QKzD{D``'OYL HHxDh )ݍBAch ЬJ zDժJzD`ըK!{D` i (nЦJXhF+JXhGF HxDh   (2!iRF (P
@FIFNF (IsXh (4ђJHFXhG(,!iZF (0  *I@FsXhG  D@FIFF (!iZFk  (}J@FXhG  D@FIFF (ѻtH !tKxDtJ{D`zD {`` (yhH1Xh3gJXhxGF ]h( F)FF}BfK{Dh * ]IsXh/	݋F8FBh(܊F8FBwh ;hKIJXh/  P 0X_ (` PEh (݅BW F)F64 0;    ?JzD`?IyDhXZ]1IsXh*4IsXhG-5ܐFؠذD؀D5ID5KDyD {D3JXh )2HxDh0L|D hv ##`-HxDBh o*HxDAh@) '8F  "X        L    dZ ` l v  T      V p      0FM  }D(`M}D,`M}D*`Mh}D)`IyD`IJyDzD`I0yD`J`KzD{D``0@L  d  v t Z L  T pLN|DM~D ` $4`}DN@m~D4`N~D3`KXK-h{D`K{D`K{D`HKxD{D`FF`  p   S    X  F  vK-C{DFhF%}rOPrIDlFyD`hFR){(FAFjFR~ ( fL|D#hdJ #dIlFzDyDh H    	3     TlFTDD hBRIyDhh * "D ON~D4h"h *MHMKNJxD{DzDhhh!`1a`!IL|DQh@#hN# 3"hBCHxDh#h#AIyD
h&`@HxDh#h>IyD
h"`=L>Y0h\,j #3`,9HxDhHC,  4O $0`D3;h
 
  h (%iB"hkhB -jhhX`
 h@h35hyh`4)B۶
%}  4S   V          z   h  P"  K-O{DLh|D{N~D0hhFJ3hzDT3`JzDFIR[,3yD
`JzD` H Xt2khЩJ!zDէJzD`եK!{D`JIzDiyD`  J`zDIi`yDJkj`zDI `"yDK`{Dh`  )  K"(j{DB`јKI{DyD``J !zD`(i ( ݀
 (hi ( ӀJzDh +@̀NOH~DIDJxDyD	zD T`3hF3MPFgY9hGF % 'I 9 T	0hGF F 	YyI bXhh GFh E   h (fHFFXFBZdH#XXFhG  -*_H#XHFhG  ?] +[H!X
h3h	SX(T hhG
h  ] ((MHxDhLKLI{DyDh
h`	C`IHxDh
`	UM`FJGIzDyDhh	B`DK	{Dh@` 02h	*5H#XPFhG  
*PFA-7 (G6IyDh (B2K*Fj{D` #Fa3bPb2B(Fy Q F    J  L  X       z r z h l  L H 0 B > d `    ,     0FM  }D(`M}D,`M}D*`Mh}D)`IyD`IJyDzD`I0yD`J`KzD{D``0@   0       pLN|DM~D ` $4`}DN@m~D4`N~D3`KXK-h{D`K{D`K{D`HKxD{D`FF`  p  J M L .       -OFF:KFDF{DX~(?F\(Dax~)? />h@6F(F2PDFh)FZF, hRF&c #F
YDD FB(F@FAFB F EF<4JY0h8I FY hG8$4 x (L|D hB%`(F `(F L  dl -GFFLKJ|DN{DhzD~D`  `0`&T0JhzDK${D``F%I`XqH 0F)FJF;FG
   ~K z     L-GFK &L{D |D	`K({D`H#XhK{D`K h{D`AKH{DxD``F%JXc&H 0F)FBF;FG   J      LYK-O{DFh $ .UIyDh ,@L%HDDQKO{Dh  
 Ph (HFhhwxhHE
Ѹh- P FYF:FJXF-FYF F
!U
	 7O	 X-FFpF-D
!U7XF 0	JhB-:F   	XFh -mD #Ux4!F (?m5-yPh (?cjF +?^O5 F j 4 @ > 6 ;K-G{Dhk (i8OD<h ,G6M}D.h
0eh  -FhX .VۧhF (N(FB  F	8O2
8O '
x7O2F F (OWE0FJFF FȱUhű
0 ChFx9h)FrhRi  F! $ F    FKFJ{DMX}D"h)`IyDFX y08((``HxD/` FJzDh+
IyD
IyD
h1FG G  P ; t n п hJhGhh #hGhh#hG7h%h hG>2
`
hh +CpGB  -C *BKF
F{D  ?I_X8hF]fEq<IYX	h11EhS  "5IYX])BaEю.
S	h]`EJ*AvxHx0     (<%IXXh )$HOOXhP$P% B*ѩx  S	 NYQ `VV`B0HET FS0hG(:hUaxhx  G |hT`KJ{D0X!"kd`bk\`S  hhб%k`kBɱIHXXS h	hBH,XS0hhB^" )="^"F0 E X\pFL
FK*F|DXh !JXh@
IbX !h  	H!X
h !F j p@w LE `KJ{DXJ O1h@ `D -ONFF0~DJmIhCB !怢mB  #V ` PoIrXc!hu(cmmhB )F "hF0cJXh1bJXhG 		X F#hPK '+F  F fPhVp:h *{PIyDB
 hANH !"3X6 ` !!`9`| #j F0O: 1 4SA " !0B+_DzhJE۩B B#
XhBڗ 
$     FP  
!0# ;o Be ! `
a`ae 1 (ch + 0
hB(ܠmB'
 D 0dl d KB{D') " HXhB`pGB pFM&}D F(!`h ,K"X`p|B KFJ{DXhȿNB 8FKJ{DXh F)Fh ,84B 2 K"{D`  	K
J{DpFXFh hB F1Fh ,pA KFJ{DXhA 
KJ{DXh 
B 0B 
 A 8%K	J{DXhm P
 h ,8 xA p&MK}DXh
mQ	J#hXhB`
 ih ,p HA -GFhF&M<%}D*B$N$IYoX$I yD0` F ;`H !-X F+hZ*`
F)h K +`Fx&FN~DN~D0FX0@EI F2FyD ""p(F*!x     A F H	 ~	  F*L+J|DXhF .L(NY6hBGT`6hB@T`6hV  !IfX1h1`` &hJ\np+pX
hRIbXhQ  ")FD.TIBlbXhbE9h
\*L*pT0h
\RIbX\+9hBx  jppD@ `|ThPKPL{D|Dh ( NI?(gX":h*

^F ( Eh 5%{
CF (|Ѕh -sBH#X(Fk (j(F %f %<K{Dh8NYlk0F0F %4HxDh/IbXmk0F0F %+HxDhZ&NYNmk0F|8T0k	0F -JzDh9h)JXhXIbXh8\T0h!
JX@lK !{D`%H  xD`I %yD
` h?  l F  `dh   LK|DXh)$JXh (IbXh +
H!X vKO2{D`H!X
hZ(T0kf	IO0yD`= `dB h" FLK|DXhF"IcXh
JXh{M`Yh]Ozp!=`JX
` p= p %LK|DX hoIfXJXS% 5e2hBPT0h[H!XhVJXhQH!XhL
JXhGH!Xhp@@= TlpK x{DJXh) pG$S h (I[XZjx (pG < dJBsHzDxD``pG   -CDLEK|DXh)CJXh (zANO5AO~D5`DY %F7F=I=HcX!Xh	hR% ?T0h51hFB5J &Xi8F2M8Fi1I`Y`bX`)H!XT0
hhR% 5F F  B#I"cX`%#HT0`!Xhk J HX`!X
`McYh2*( `KIXeXIh(` %cX`rJIXJ`cX`X` <  l@t\X@-OHF&D6|D  
X4&zD,V3heY +?$*h!XhB8`XT hhB-`XT hh B`XT Blhh" )Z`XT hhB Ȃ*h * ĂT  F ( T h + 3h +@'7`euYhQ`7T `puYhBhT0h7i8Fh /6h .LeY	 h*h PHC ! !" T
p;h.hO 
  p   !T`*h  Q  ! B* 

3hEdB`Y2hB)h 0H !XC(h B !X  !
(h  !(h   !P F`!XhEX$Xh	0Ffh +  	h`0KT
 ("
"
H #!X
h	Q# !3B?hB2hBfB[
I?( 
 *C>hJzDhPN'+h~D XHC
7` &F6xhG	hB
PFO 
<84 0,K
{D`   qCGU +@   !h2B`hB*!    D  S(   !	hE   !   !
R H H+h!X
h  
h * 4 T0hBFIhcXH!Xh$	T 	h hB
hWQ(&h0B`
hBZGsIbXh *vH	 X	h hBOl hWQ( O qIlP, bXhQR,W,  	hE۰QIbXhjhWQ(\hWT Q(h
A@ Z 6)hB  KK b{D`5N`Y`h #	 P#`TA#`3B/IfX8I2`(J
X`3HbX`6J#X`XI*h`T0N `X `2"Y.H`&X2`=+H !xD`)I2hS3``Xhi>	%M= bYh
F Fe#:  `T| 4\ P   pl( LK|DXh 3   "  @Ż  -O
FLK|DX
h * wK{D EEѽIyD
hB k wHI&XbX3hNhB~D_B E 
T0n
x *& & VFHxDhBIbXhEB%EE-ڥI`X  
 03HFCC@3iBO #!!FO 
[ VO 
FFO 	!KFFF!  (F[EԀ T hR' T hL 8  <+RE8ћ 2  @3sJXhzrH"Xh  P(  *@E[E)NIHF1hK3`cN~D1hB!)	6
 Y]H !xD)N*
 L2hS3`UN~D3hBTH !xD`SHxDh jDNY FxXQxI  x(8W=NBjYDhP'DOK* T0h[Bh  5H!XhSEh)T0h 6E)HxDhB
'K{DhBH!XKox8F)FJ IzDyD`
` *?-2 3     `x Z " . (  |TX f ( > -CFyLFyKF|DxIXhFcXhE؀T hBЀCpHE"Xh9BOp# kH3PxDhB01F@FeK{DhBldH`"Xh +f?-aN(FY
h*		tF  P & FWH#XXl SIbXh(ݳSRIbXh0<T0k>JIbXl6FH#Xm-kBIbXm%>M`Y lT0h)
ݲP2=hCph1H#Xh0JX(hP'0ӱ8F
    )hQ' c($K{DhP`"MeY)h]JBlXhaE	+h]*H!Xh]IyDhZ
` 0BЃl	 &0 ` J h`, |T ELKO|DXY6hhB>B
;B
JO|Xh!	H!X
hP]JK{DhA`- > -OFT4F}D
FXhF * YkXhERD.YU02hhR)$|X #0 /hB8FIFB  cx !T*X  hp$! X
hjddU
hB# U
hB# `IFzS#6hO<V)hD
 !D	hXhU 
 +Hha 	40F
ZH*X0FhG
BbhB)O$ 	40F
0FF9hBȿ>#ȿO	  $]bE@
YxhsxB@~
BchB	ю*IhXqxhE=hCI*OhXhS$ B@\KX #hQ# IhXP#QB@G3BۮIhXh"3B@9U0h )@14H+XhaIjXh0 ?(	W@  !9h (к  8 "	4
B4 "" *иѕH+X FhёK FXhG(
h`G(Կ   
h0хH+X FhG(  "  FU hG(
h`  	"UeH+Xh ! h +B	aH)+XhC$)hO$C$  #UF
UHH)XXXiF\3,	L P)
hE۸*  aO CT h# pxa 0XT h F# IF:F
B`hB	+8IrxhXhU FIF:Fh9DDGD8fD476&O:hB1ں 4SE%1x )-JXhY F( FIF:Fs FIF:FS *ͮ ! *خ (- d`{ |lTx7
FF O1*F#Fd>  -CFLFKF|DJX1hX-heHT@#hG " , P9FCFJF3hBЃD	J( d-OFLJ|D<åX.hB1FIT fXh1h - B򀁋BFFEyK F"  X .YF
=hOT0DM}D1h XFQFXE " !RF3hE
HFQFHE ' !RFKFINHbX#T -#X
jѢOY.hEeѠIbXPh4 (]$@+X$?/U7R P
YhU	#
8h	h"I
0hfXh3hE # 5uE%1A] )@ԀZ .@Ѐ3CQl .5uEC] +@1p /л6hwU6h.T`6hP
536hR2B %  _F
Y"OAOh\BhSbJXh.̿3F #R B	
h$30B +9XJXhz )
h2?)@ !#ThKJ.XhJI "C`cXhA  "C 
$h"
 .\QF:F$$_E-7H#XhE#7OE4I #fX0h 
02JXhpE""T0 )`# .+H "#X` )IfX 


EPF9F@hB	j   '  ?_EѪ ' d) # `xl@-OFMFK}DIXhkX	h * ^ hihB X̒U	 h x	8O 	O 	 FLIkXhiBi0BѠoBbl0B
 h hBєE mmNammY;h XFOO Yh ;oyNY:hZ   F#0"hhJ
zDTi #F!F!

4F`DF ir  "{F!

F0 
E FQFyPF,m22gOUgO 0YX qH9hB8`8h EU0%ha\K
4@FXhG6
 6 L29h 0PB
 FF36h6.(
4U  FG:h  B %L\$<H*XFhG6 #F L (F!
=h(  E8h Ll:h
YFF!
5h>h  02XFA 
`Ȍ ocl!h 0h 	hBЂ!B$  dtlF
LFBmH|D'XH  !!XHhP;h "0F)F@ ! -OࣀFKDLZ ZPOh.hDE8B1FIJ8hZ`Z@I3h%hZ U(@h8F!F !KJ{DzD

F	FHxDTNZ h`kBN8FZ hGF &
p	1	~ 	O	O	JZ0h  
0Z  00C0B$)F@FJZ @ht - 0a3 HK)F{D`@F "
`O	(HZ  h
 )?.hB-ڪJ FZhG($	 #FhKp.BڟJ FZ hG(F
h`G(	F !hp
BnhqEіJZ0h]UhB.щHZ  F
h.хJ FZ 0G(	  `G(ȿ#	h]UZ0h.)"|HOZ 0 hR'B$hS' RuIZ R# 3RPqI #Z  B	hJxBpZ0Zha  2 ?(O	  .00 0  a0 
 FAFh*F#.਱ -FI`Z h33 B h FB	 ";Hh
UZ 0h19J !Z hC$ FAF*F *:	/H)I2hZ 0Z`,Ih3hDZ0h #53Bb] *Z* (Q  *   # *F@FI #Z h 0  6    d , |T`xl-OOF FDFFI ( 
 ,@-KXhB JEXO Oj3x3hh& &(j "Ѹ ,hixjix, ƹhh   (ix
~ ) ŀ . &&&& &0
 DxFYI O xXVJO	FzDLh Q	 JFW   bDX  h FE 0C   #	hTT<JX 	h	h		E.@F !(j
.	@F ! FM&.'F !x'F
 7.@F !~(i  !whh(7jx..
 ! ahh<    (F	 |I l-OFOKFDFFXhhF  (  ,@H9X
hB 	(jEO O 4hx8,  h
x * ݀kix( ,!h
x *@р +ix )ox ( ˀ @𺀪jx +  .@𸀄 "IF SF"F@Ff "@F 
"FSFZ 	
Cx  )JFPJoaC9NHXO
xD	FKFJH
hQF8XR
 0 0[X 0hFrE  "A# hT	W0 `Fh`Fh	9
E !d. F0F6 '.' !Rh (o7 B. jx +GD !@F;hhE  
&& &jx )?YL & | lsFLK|DXP(F&h@rF0F OS (Fl"hi hOQp@  -OLK|DNX  YI;h+̿ ## 'fX7`
B@TM9FbY FF6h1 .ѪH%X/hF{a IJyDzD( 
M eY(hBFS .|  !2F;F
8 F  !-hBF  RF
;F'IcXhEюIJcXhX  O 
SF  pS (O
 Ѻ +=+*{HOQT    0F	   FE
8Fk "F+F 	3 	]F ! "+F&   !ZF;F
 J *IhWHT     H ThFPF4h0HKPFXhG  DEB@FD  PFEؿ;+F  "]DFPF !;F  *Fd
Ks 1H6"XhR3VE VF   B .F! ( #_#2F    0nhh  X  !:*\ T0HOAh"  `r    dlpLK|DXhJXh  (
IbXh +H!X
h    B t8FL|D0`"T0`8=c KXh )J  HIXH`T cXhA`T0h2H!XH	jxD8@ɻ  tXd
q -OLK|DJXXh ) McYh (@IbXh@T0h(IbXh - OO d%5` % H!X
h *~McYh (рOY)hF~H~K"XX F {O)hYKhBnwO  wI-hYj8`cX`tH!X
j trH)FxDNT	 hF@lHxDjHxD]H!X
hI*gHxDR*fHxDV*dHxD)F+ 0aH!X
h"`H)FxD4T0h (/[I[HbX!Xh
h +OO *# # V*0( 	OHxD
NHxD
NHxDMHxDMHxDLHxD)FKH)FO	xDHIbXh3GH)FO	xDEM!`Y`   
  #TP  +`=h;` IbXh=McYh FIbXh{80H!Xhm!nH #3`!X`T0h ((F\ D8t\X* :p 9p 1p 1p 2p "p |\o ko so uo |o Fo o do @-C2NF
FFF0~D	 (Q /Qݹ *KXh*<EmBam  $L "4Y H#h$3I"HsX`1Xh F)Fmbm  ! :F[ AF:F[Fh<
JXh )$ $$F  $ F` -CF'MF}D #0m'IF  
BF F2Ft(5J  amUID 2F 0WF0hKm8I  kXPhBem  m  02Fl%`Ph=8FU0` (F \-AF7NF~D #0m(  ^  !BF  FAF*F
(O*JhXm0am  m Q;h*F(h (Fam   *FAD;hF@ .  h "K!`mXm`mJ 9h X &   &@EԿ2Fh  -OFZٰ:}D&hpX`h(.?AW! #0m wO p"48i 	#h܁1?h /P"hyD ppn0"o +@p  z   ngoB
 F@,)/'Co
B yDhGhwxi?(?h /'blBB F'O loc  *o A .! #`Fp CDB2B l 
&(&(&yYhF!`
.#...@glB yalhB #FFmmE΀: FmBFĀ (  +XhbPBP !  FRFF^(@  *ၣm  oBȿ00 ;:    (  ';:q +lO XblBм3Ec?`  +Xh:FHBP !  FF(KѢm@0PE@;P0 +O 
PSF  O
  oaD mE33P  PB0ι,m$-jX+XhhB  (&U0hQBO @7O F@;P 0+&  X`
mO @;P-#.Ѧm ' -(&U	0h7:vYhhBj ) ր(. Ӏ *u&|(X| U	EU 0.ўi 0kBF7F3FjB7FBFBFijB7FF F kB kB
гB +FBFBFBF.  I F 2IFH 0IBIjo @H"kBIB`kIB  BFBF#cIcckB7FFFal nBF BVBW  +B "   F     а `D  ѰJD3E B m- ` жXB۰32ID[E -7:hұ.X3hhB.X1h(ibU hVhccj#d "( bcc "DO	FhXDh
`@>m
B:hE
BB B-B< /9 B40 
P:bE) +ІEˆE 	 F(XF
o (@ (o *@E@InX0h (O   zBy&XBk73DB #" Fm6
DHPEBBz
 
m EC  M # F 
 ; (5m 64
mB%  -
 FBFD # aFp (bEAB+
 DO B   Ɍ  m3
E`FVE:;mpoB ȿ00 ;:   B ! F	 ; :qDCEP #DE`yV8p_E`lEpInX3hԲ
m B7Y &DwDDNvFF VF0h (? ); (70`l  " ! #!  F1F/ 1! 9F0Krmsh m  P  ZE0h ( )wNE?h& / .IN^E FJ0Fm &4OF9Y3Ih/kX9
hBI84Bӄbm F",бgh0 'N FYFY7h 
1h )bh|07` t1I  I/ 
   t  t   7o Go	HhGUp ( )!hU `3hB@ɱiU0hFBiYhB 	vF6F  E0hE̿   ( #(U 0+( (T&kckGOE1hE #V+O G F IFGmHF0GPH 0V+12hE.H	)X
hxe+sh+o	o CGo @B  
| xHe. # F aF;	  "aF FF3HKH?hW 0iEFBV # !# #G )O('X$l[;h +T/X:hBBѡiEEO .X2h	EA܋E  FG G8h1hiE
lh #(JYhH Ko CHGHBCH8h Y &$Wi #$ &$(#	 #$(#$(#YF h "#ѱ'X7h籀B*
9* +| /	/o J2o A*2 2	&m l .%O FPBFSF  Fx'FDXh9p@FU0hG  E@D5FXO 
WF   *# )A+7h /%'#hXhhBVF

,+HQE "GG +SEG (#goB.O0Go.o.HGBO1Go. &&DwDzDrvNF o BX !    F1FZFCF YF h "?@D )@YE>h "ph rmEmo C00 B)X
hX YU hG 30 BE0 $0!$ FE?h& / .0iEheY
hB7h@hu"Y$! !xO<t
U0xD`h  h'F\5F{D
3016=5&;<:,%	D`FF/ 	 /A .|  *Aq  (As_$n!X h (V>` FYFO (@B`poq4{DXFD4{D4{D4XF{DR" ! 0F" m (
F-!pFXFFx /F & #0 hX$"0 +iEA (,S:<,F!	,'F	$*Xh +OY1hBѠiEѢoE$"XhZB (fo'o0m,+@0$ / ,GE%IhXhb
B	7NY
hG( .BPEHE
HE#ZoE & &	 )@ŀ  X`NDw~D\C~h )vE"   &#\ o C BАEۀE  SEQ ! FZF 1FCF(/ !# ;F hYF "dYE@D1Ѳhpm m o ABѕH)XhPXU 	hG 2 1h ) +㹖IyDB?h /~ .БO "NDD7~D DODh (~"F"F )FEh + *۹!G
Ho GBвE`.EHE
F
<!\  &'؀ !	 (@ҀcJXh *ybI0FoX;hGO (p&L0'mBJFXxh )^UNYhU0hGF	B.FL'o'
JI	nX]B.ݐ	 9F &8U0hBE8FU0hG(I	FoXrA	F{h '>'0F	F>FF 	FF^F0OF	A	 804dlƟ   X $ 0 z r [ tD > > "    ` hU0xh ) iYh +liYhFG(F#LF(ؿF (Q)
~XhKR;B +0O 	:/h (18F (,
y9FHFmFHq/FԿ   F	 *N )N09 hXh%CD9F  FFM)X] .;.<Cx+)>
yHF#9F&\&yDHF!FFG	ѹxYOFh%  F F&F  OFOF|8kXhPElHFkXhG(Lx &O>	YPKh0.xs+ (&.$	wx"O 	YKh%	<#"O 		O 	< &	OF K *3Р/ (.й+gYh6gS'O	Xhh%wYh{'Xh0FGO (ݱFL&'F7F2 *v (=X +0\'O XrF0h HqF	2h#6*fh|010`YF " hcBCAF6YF&؀o @E/B) /'vY PfOYh
h%vYhr.XHF1hGO ('L'OFU0\ʲ *@	/>`6pjXh +  hvPF9FLy	 . LfD&YX&h Xh%)Xh ( &HFXhG(O  @'L^ /^08h .G ). *oHPEleY
h*f8.X1hE^#*iEѦoEV/ )S!7"yD	F8 O 	FGPOjXhSh%0.X3h +SHuHFY
hGO (I&O7L/'J8FF	8F8FFG	{F )2$Xh%*!S$8XhE"3yZ 'E3! ȿF 'OFO0OF/ ! +*% (F4 )Q0"m l *Կ "" *E.B /E(B)X>hh<$HFX9hG(
<!+X Zh	%U	0hp$0FX9hG(O  #L'7FRI#FhX54F &43*@s X08  "m lNBȿ1~D0B
'aBh * "8/hBqGENYh)
NYhENYhiE  *Y3*V,U08hE J
X "hC& jN><~DID8yD7Dh .q"1"`EaEh + *

4U0N4h#1" ( Ӏ1o
9EѣiE	8
8FF8
p&m l8 F		E F	
!PFIvp / 1o
 B򦄀J
X
QhnwE򚄦iE JIBFV? +rH48*XOLO	D' !hU0h(sJ  XhC	 BPFI$U0AoETHh+X 
RIhENHh+X Sh "S6E		

hE8DO"Y<hHU0hB@𑂧iE@
 nbg@!g#fIH*Xh .9 )58U0hBE+xc / *	Fxڱ OtYU	0hq!H*X0FhGO (ݱFL&'F7F#PFI(`( *@ )CЦoE@ѣiE=H*X@FGd`lhT  xI >      ( ]IhE@XX@FU0FFFMO6'<4hpkXBahB	AOh  w
Yh8+XhkX@4hOA,'"h  v #LFUvY_XX3@pP|_2  Bh4B,p0*Xh'4!p
!*XhGHFkXhG( `4G4kX'h"h #0h4H
BxH WF48)48 #0+{WF+ "076&(FF( FF )@JO fFԀ8)X
hE$xA8h(FDCE
	 )> Fx )>
"a"P Y * ـ/0 Հ+ F@!m%99Bz@xDhcE@0%#X,%h 0Xh (  U0h
Ui  8U0R, ,jX,hhAG(h 0hhS, 8pDS,, G(Q$zDhhB
  JP.P-
h˱')X  hhP,  <\(  '  hhR, 
  O|8kXP( h $'zDhh
F
:U0	;h<4  ,"	$
O	 A6 "qmUB
hqp FYF\3=
h2 
 )S0
SGmB O	 ))9hDB

D~ߨOO 	
O O	O F

 Bȿ07 Fx   Up 1Ѹ 4cl)BA8IjXhդJd`mXmhA@  U PhHP F1F F@!2Fm)`hq:hS)` F~!
m:h #0S0ѕI n@ &fU 0B% ?B ЎK{Dh  '@ !f`pJX;h[L,Y hnf  >`&hfJ !zD`>h +@@`O  F@0 ' -o BB~zlO 
 'o @`B~ &Y @ػ> &+VFO 	,F .>U!c8F 8F&9FF:F#OF]
8K
<8' "42I3h nX3h +O6+ )?WCIyDB~vE~ />ȿ (h˻O \&!	O @7 S
B~
B~ #:F />pgAW2hBjY |T`d  l6 h t X  
L|Dh6KXhKmo@  yJ-OzDxOhFD +@0$m`(W0`@mI|X%hrSBSF0hgHW  P(FFF0h) $@ (2h6 +0hQWI@FyD@F~$0h(QI(4yD2h6+MI(4yD,KHW09Xh
hA~OnEFEJXh`O1(FWO 	1F?H:XFhG<I{Xh$GD	 	 B	9< MD4(p	E<!-4)pm(Fwm "9F8Fy"F CF0F ORq P(FBFB<(F9F0F!H "xD`	   C B  dtl0 8MK}DXh  Fh ,IjXh8@8 r -OFL |D ( TKX0h BF !1`JXhF(-(%W JXhFb(FH-5`@2   " +NO
 IYN 
 8cXHYhF&X )^T T0h8BM2-LFO
 FFh  3h   (2%'YmB#ژm E (  (  XlpEP 	m(!DE!h +oI#`X`T ` 2%kJ ! X`T0h		>2-(%:h  $-Z  0B"
- yѱClh-VKXhjiB
SI(cXhEnJljBPGH!Xh'-5h*hnX3hhBhBZ(hh ->JzD D`#0
#}8M`YhY7JXh=HF 5H!Xi @F%0#
	@F +M}D(h 2h  hfh *8h  IcXh
HxDh	yK"{D`(F (О , Ё ʁ dt   F  F@e  	L	K|DXh	 o (JXh 0  t8FL|DPK)FX h	IbXhK (88@8 K{DhpG K{DhpG xB *
 +
DxJxB ,SJ *Cx00x * x 0 L|D (F5	(3 (2KXh)@0BK{Dh
!"
ɲ@JXhSFFK{Dh *

JzDh (F (!!  !F ( | ` x FCx/+ѠB*)тx**0/!m (o @ K5 {Dh/SBSS V -G%ECNFLF~DF|D	pYB"@FKJLzDpQX`hT0h# I "6 cX!`G V 0 ` dpLK ,FF{D	JX
h*I[XhG$4` ,(]\KBS p  p  dK{DhpG" JzDNh~DY` +3pODDeF<Fĕ    b8`TODDĕ   MaH
KxD
I{Dh`pXKh{D` ~ ^ U   U ~ ~ ~ d~ J-AzDxhDX` (1LM|D}D h&F/F55Ɨ  T(ĕ K{D IHyDxD
hh6 `
JX0`8 !APN~  U v~ ~  ~ ~ dpFM}D/KXhJ FX3hG(FJXh F<b ( p x\(`x_( %(ѡx4(48 (4 x (p  dl`
KJ{DX
L
hYj!hY,S0h)8 "   `F  8`-GF8MF8K}D8IU # 0lX&hF x *1IyDh F$\CD \@l*+H +H(X!   'JhFhX`  !FF!HoxD`JXi и  !F2F28 !F2F( Fy " !  FF8` 0 H 8| S `|| K"I{DyDhPCXpG { R K/"{D`޽R -GF4M$LCF}DFFĐ(Y;xD+Q8F(Q+I  %/"yD ``%aeaa #K{D`"HxDh'wCDX tDeFĕ  \  JKzDH {Dh`IY hpK{DhB	JY h## G R  XR `{ N{ { R { { { d!JLzDK|DhQCaX{D	`LY#hY!`  !	HOcxD hB"` z |Q   -OLFFK|D !KX7h HJcp  NYh .ѪHJxDzDJr	)nho CB&7 "H!X
h *)h ) 0BܖOBPF	nhF )ЖJXhG   	 &JFzD`+hoh# F FG6	!*h$W /h #Lx)чBԿ &&LB && .@ # RF;F1h )@ (@O(T)

L Bh *ڸ	O   B	PF "rFD)@𰀼  DmPc!T h( NE$0 T h)EKXhG0p		 q=KXh)<KXhGHD	 0F HF	 +@ ` . b RF  ;F ( UO(T)

LXh (ڸ	O PF "FJ@C
 +@ɀh)
B̿ ## ?w	
 FEj 86  z dlǉ 02@J !@ 
"
{( E )S E E	 # E# +eO(T)

L Bh *ڸ	O KXhc!(ENE%0 IbXh+IbXhG0p (/	 	 rKX
h*KX
hGHD	 0F HF    RF[FHYFPF "%!Fr )_J@+/
BѱE)
B V)&92F)`PF~0qJph`Xh  B "PFlIcXh 	G	 h`{eH#X
`T0 "`&(_H"XhJ1R)hx?Ѷb (B
O 	 / `B" "FLI,aXThFcLP 9h 7 p's ZJqT !#" &  XhC:IPI ( .hC `.  2T 6J +1 !H J XzD	'HJxDzDHJxDzDh  +hB ")`PF1~Z (h`Ai` ? 0dl04@t 1 ~t '1 tt K{D`pGJ -OuO 	
FDU
F;i}DD[)Xho!8tDؔ   U	0
H	h0ȉ h`/./&?&oX:hZj# 6 ! |4||{DxDyD$'xB@:h:i ,@X$X , <#x + @S
	 FoX1F:hp	BF F}F8F}4X
h<F 
F` pO B[F$+F 	H ! pxD+/aAaa-/Ч0	*I yDa

e/s/b/@#Ca p0	*+/-/ћ00;	+XFO}Da
-/IO0yDI yDaF3  0:	*H)Xh\F`	8 	 
 ( 0U0h *@H)Xh /@ 0SH'xDDhyC\  RFF}(0zF (i_ U0hZF  xp x}K{DiZi
i88F}IyDJi ;
e 	Xs XpK{Di * ) +# ;!IyD} "p{8F !F(XFv8F8FOj  Y `K{Di¹inHB /HF
0 ?HF0 7/.O3#}Ih}JoXzD9hRiT @,^@W;F@^
 '# "JF	>p (eiN~Dpi
#{a&3!x;)aN~D2iiP (!;hhBԿ "&5KBܶi .
HF>06HF06.| x;(fx?./.DHxD &4 й ;h !Yb Fo7H+Xi5L |D4 F #o G 'U0hhHD *?0F J  0jJ dI G C NI 2I H H H 8q `H `H G G  fG G F F C, E -OBjFwOFDj 6sI}X*h *UqKrHrI{DxDrMyD `@F WDmM  QFG}DF(` i (8
  G`i+`h  
G(`#^K{D   &[IyDhvBYHxDhYJ;!YMX}D h!8(8 % %s$h # #ca:0W hiF}HKIJ{DzDBDH:Xh0% .
AH;X hG$BQ ,OcXFW hGCdh*0CE ѵF } (e%,B) @E -
: ѹ  IxXh .IyDhB	lXFW hG$ ha     $:n tn 0n n D m n m 0m D Fm dlVC -OThF
P(~D #X@H@xh|D1Ʉ Y%!F8hD8h#M!	<
"X@ 
HO0/+*+
 % %3F# !#+ ڀ[# *@|  	 /@ Fx#*(7{D_hB!0"yDF} ( 8F"yD} ( t8F"yD} ( `'zDSh\/(xx*( 'XP`" +@*)@{%;S`*(@syx/)#O8q +@g,/*@b %OdXx`&XDF;hC&X`hGyDHh \ #6 {D9&Xh
 G  &
 zDQ`X	 +S F
x#) J
 -@x6
{DYhG 5 F:F1 (F ( 𪀀F
"`#($ F00"yDF}꠱$ F"yD}` F"yD} (O8O v $DD|`DuDf3X  h
hB  *?=h 8`;F(Fx#+FA0y`F"yD} 4(F"yD} dxD(F"yD} x"yD} ,<#(`(F"yD}r P(F"yD}j 4DV0h )Ѓ 'F8  Fo B #'%yDxDzDO5FF (@Jh*h(Ѹ? N8 *`YBܿT}DF}h`2 Q FL;,1X
h *C FV0hG - 0۹,2XhhhBH`!SB[ %FE`IrXh;JXhGXDP` H`O5xDCh
Q
!x{)})B} @ Gи\*(@cQx/)@^HYxDk + W,/*\*)@NBJJ;

zDh@**@>\/)@: HxDB+
/(BHxD8 +@#	 (^j_F#FsE")
ѣB'(Yx')5\)Yx33x ):\(	/%*F'=FF FJzDh+'XxF} ,\*/ѻ %F%#'F=F FL|D hFEF %J/ 'XhIHK{D1XZh	hGFK{DZh"л'+л gјHxDCh + \)@𐀐 - JzDQhHF\\*; +	gF8O 	t	 (;'+8'*5ɱIyDHh(.#,'*8H`\\*$("!<'+vJzDuHxDChQx\)	ѐx8x'*pJ3zDS`=x'(lJ3zD /0EE*
eK
P{DXh
L
 SbF F o  (-E


 UHxD6
:_FFV0h )? ?RLHxD`A`O 'F  E?7@OD{h\ )? " N k 08k 3 ޹ 
( j dpj Rj 0j lj i  & @ Pi Ji Fi @i  % h   % H ,h *h &h g g f f f ff e e |e je Ne .e d d d d d `d "d c c  "FZ-OFgLgK|DXh|V/dNY;h3cI(FbXhG0  ;h.+_M`Yh0FG (\@E  FF:h:T0FT0hG  50\ ( 5*x *LNhY0hBlB0B " )F3h `lBoT  h bEfڕ 
    T	p4HT:h F"XohF (ۈBO0`J
 g[0h 0       8`
w

J m!Xh0I`X!hd PCHF0H"Xd hXC3h 3  9` dl,T0p
FF!L|DxB+}+.+  pF
H!Xh1FH -J1FXh ( p 4 -OF<LF<KF|D{!FX h8IbXhF.# 'HF  x +VсHF)Fع7-HFx{*'	 ^9 #T h
hEF7F~ /Ѹ;HF x}(		 `IbXhhE}-HF|ah 0iPa   	 !a    )ж־ 0-OFNKF~DXh2-  рH HK !V ?{D F X FG0 F (-- IFJFhnH1X
hhB Wk FHO 	DDXFF  #O	 F20x)- F F (F	(hFPF   (PJJ!
	X hF FF@q
F  8iU[ERZO.+!+?+6є  HFE0!HFpFF l  (Jк I )	)B )HF( (HFS (љ   FJ F FG0  FN0 F5 ( )	(?{% h3     ) )	ν i   0)K-G{D(NFF`~DC(%JXF%HV h  C3 (E/ O!A (
 ,B i"Bx + (
 , (<  >]  F KF M{D}D`4F00ױBЮ#H)Xhi"0	i x (  (F0B '<   \ Ժ -CF+KF+OF{DD`HFR0  w@EFq&mB=0' .и  ,0H9X
hi +ѐij x (FF0>B &<  [ < FKFN{D~D`1#FPC-( ?EA
(BH1Xhi"4Bi x (
( (<  .[  -OɰMK}D
X #Jh
XO`1hthYHh,Xɱ`U0h:xe*!hiBЬ ""iB ""

d		hx!h1ɂ 
 HF'h
T
	7    OHD D/X;h ! FOcZ 
F` (   'O`U0Z O
 hSF h p !h:h5  ( 2B@3B@3BSBSO7 A   z PO KFD{D
 [F# /@" "  "Bb  +O3#hhO  Z HJF O@`F@ 	"h 2 h3`r`
8`  
#dh
!hhhhh|R
Ȳ`љ 
T
  +O@O EJzDD hhO	hLb^0 
JF /O3#h  #h" 3 v#/H:`)X `#JXhxe+
w h1hiBqhiB ! h2hiBishB 0Fc   	 ( 'WFI Y 0 / X W . # x 8    K "{Dh1YhBFh +FFpGX pG 0  BO0pG pG  pG  -O
FFF=h )l[HJzDi P8lh +BBHxDhX LA B  Sh2 (fk8 $d)@0B :B"	E,aEܡA;h 9BMESB:hܡ@8BB>@Dp<B; .;i $5 $F|MED}D$E
+RE9J  0 ,`h )*h*P3F(`:F  s)hK+` (	 )ф$ $ 4F FW W V <V 
KH"{Di 0Ci[jJj;Bj*	  pGl
 pGV pH%ECN $~D3iX`1iJh3iX`1iJi3iXa1iJkTaaabTbbbs3iXc@km1iJkTcg3i]kc hdp^V cL|DFK'XhNhPA	`!#Yh(F|<(F@ ,DX    8FFO `$F(x $#x + F8-A;M}DF (nF (e7KX8hBh`1%XQCh
"\!@hB&aPQB.HxDK p!c D;h"Xh` !|\:hSh`Q F9hJh`1?h " xh``{hPAPI FyD|j(~hBX2d!I FyD|^({h@X0hEX F F0F^    FFF $
3B(9F@h  \4+Y +  p $N~D5iU43hP5B0Fp@T  #JO1HzDxD``K{D`S S * pFh%M F}Dip` +? Fi I"yDF F{P0(l"U0hHhI F
"yD{P1
)H"+XhHh8!pI F"yD{H6.	JXhJh8p	H!FxDp@p ΰ   q S pFhM F}Dip` +- FI"yDF F{jH1)JXhJh4pI F"yD{ZP6.
H*X hYh4pH!FxDp@p      X'L1FFXiLJi6L1>wC](LJPlL1XlLM(i@  -GF
hFF *  h  !q	9;h 08hGb10@ , 42P -7N"F~D3F{X3F8h!F"&{R 0 $:hE.% 43.%4   B32D !	 )., 41XZ (ѹDF..43Z ).\bP F0 6.Ы%F  8h P -CF3MF3N2O= Ȁ}D<~DDDL@1@ 8E
ش (HxD'HxD1@8E@F@p8E8FEBݣA@ X9rH+Xh PhS`3iPH"PCX0, Y4/ *  CP P 
 

   !K"J{DX#hXh| )x! *2HxD#hXhx )HxD"hShx hAh|!HxDt#hXh| )	
HxDj"hSh|h	HxD@^    Vd   -CFALF0F|DF"hB=H1F#`xD)=  h8HxD8ICH"SCyDiXq  1F@F8F0O $D~px48i- ( FD	 $@FDiG@F F$,  Y$ ,j
е$ Bs  e ~ .+ y0F  4,  Cm N   2O | Z  p "F %402 +V 0F#F (!F2F{(FpX%L1FF7<!ByjC8F{<K<1  -AFh #=M0F}D``i (p1x@)6iF0F
F5HxD3 0FF (['` &ciC `a F hx<)	)J FzDh@ 
$) ( (9 I@<yD
hbEHxD(,K2
`I{Dh`kXhQhaF( ! h
F h! 8  08!hU 3hIZhyD`Ī (
 M $M 	 M ,L -O
FFF!Dni0VLlHY B(8<O 
  'hZEѺ 
'(FF< p ih F F<F ,6 (FO⺞ -CFTFhDGiWLKX B>< i YhV FSLF ,7 .(F0(FC  -AF$ *N@~D
Hh8`hR#TMm=`mR#@ K9h{DhhB3 ,2 "
 ,FD!H1Xh+JXh(FG  -4*x *H1Xh;H1X@FhiGCO24,ШE  %}` J dlK "I{DyDh	hǸ I J 4K-O{DnhB]1JCnzDhBW,ȿiDؿ0&+HxDDP#Vi S B;V|L_E>/ /t %D{XhIhB5(-  OXL!^0#j"o B{ 0  (<     J I J J JJ F
h hBɃ pGHhYhBȿX`pGFhɃ @7K-C{Dh *d4IP  #yDhiu xP;QlpOP  'nF D @=B@ DD iF$ 9FiF, !ck"lQ ;aiB	ѠiB  ;ajBѠjB$4  5P  B^  I \I p!LF|D F2#iP% h !*F 0{.!i"hUCNQ hC #`p H Fn+F %  %'i#5hhB0F@ph5 n6B8F1A F$h ,sAA8-OFF" #F0F9xU;xSM}DxBQHxD0F9a  LN!LKY{D 3`f a (GH
-XDXH
)hJh4a&bO	(F[&"{@ ([бF	6 >xe)s)Rb)7O	L@F5L


D* $_rLb$*y)+*@F5


1	-*	@F5)


@BD* x,(] xFX
x *	*HxD9Fz.F".L Ѩ  0V |  F hi``H	IxDyDNHxDH!xD@;q z x  sFhJzD-HX"hPh!2C`!hEHh!bE #hYh!Q
F#hXhCX;`!   "0| 4 pFL
 H|D#]C&X1hJh`1XYH!X
h*P  TT0hBؿH0hBhH`1"X]h1HhxDp@4HhxD5
HxDp@A     
KJ{DX#hXh )
HxD!"hShHxD@$ Z O Ks{D
F &hF 
JzDhF+F8B`hamC Mc`ee 0F|C C -OF㰡J 	FzDF7KX!{D	hL 0+Ж  # %
X5HX<+		I+		O 
R  ouh "I9JyDzD	  X  	
4KFO;7L  *л?3
jl5i.r1hh?9B

L  !Fɂ 3Xh<B 9  @ 5.r1h2@9B$#
 RF1h
B 	 "hB5
"B 5B]B 
F@] (ny>MX #}D*hL  8F7*F:h3hBqhxhBy`"# 7@F*F 3hBph B 9F@FXB'1n $^LM!`89 `b``hk!hb`0hBshBc` F9F1  n  `  jhl
`h  ` #;`c dD @ D &C B -AF h (Y*-JcizDhBR %D@ ` l
3F:FH#hxDhX L! !Kh
  caaIzBacba$4   $,     !bccA @ A -OFxFIGHyDxDhh| *8G iY ) p
Lp/Xi B
l$^a@ A daȌ c2
0L "OP|DDOX
DF#hB۽iP!< #P;WG<BOP 'DDD$`FD2lPXBѭ 0 !1ba0F 8 "%2lo'4P 0B۽O(A  @ @ ? R@ ? v? -AF$@-N
D ~DHm(`mR#OLh,`hR#p$J+hzDhhB)` "$zLF /2H ")hxD h /FD#
IrXh+H1X F
hG  ?D x (IrXh;I@FrXahGCO07DРEl`  > > dl-AF1F +:A '4ah!3oB+ݰoro	B   F!`AA`DFn7B8Bffnso
B fa`'F$h ,ѽ  JKzDpFXF(h hi``y
IhFyDzJ
 a!zD3FhF+hBzpl   IyD̿ IyDƿn IyD} FI	HyDxDI FyDH!xD@r  n  6J-CzD5Kh{D (_Q -Z1HXhB	.JzDh hz^ )F,h "NF#FOhXhGDBݳhE:E"fE(fFfF"Fh +hFDhBkhbhE'h F/` pB ` AAa,F%F$h ,ѽ(F =  < ?B = -CnKoO{DDh(FBFlHxDhiP J 3S4BS<BS,BS S$B:P; *ڔZM}D-h1B"h!hB F + F `AAc1zbhByJIyDh8HL*|D hFEJzDh )bQK.h1a,A,`Q h(`%`9I ",F*fyDhn`J(F!"(F1h f3h`i &OP	D	 6XE0lE0l~E n5BJ KzD{Dhh #Je`fXf h4j ,ъ!h`v $N FO~D5h-%fݨJ! FzD`;  < J< < 0; ; : ; @; j: ; : Gp vFL0F)F
K|DXh	!hB`hB)Fh ,p  F*8ChB hnfp #01F4181l1 <Q F)F=p%PauC`HYv`!SXhp`Ahj=>p %dQhQpQxQ|QQQL FQHxD`p 9 F#h@hqB`h1 h rb`-OF'J hhzDFD`/F5;xA)a;+9F (3Рi(NX0hQ`d &DY6O)H)FxD(Fz2FP8F~QF `	 Ch FG6(Fi*IX hZ` 9 p Hl  F#M$K}DX4h hah rBOpi3h !Or``Xhz0HxDFFH*X6 h 9hl#HxDrFHxDJ<H!xD@9H!FxD< F@ĕ R , 1   Ch<!RP8Yh)0 pG pG  J #HIzDxDyD```pG $7 7 7 
#A``"HxD`pG6 -CFF# '`i`D)H)IxD"xyD p`` *B F~QxF +;~#h`~H  /`6I FyD2Fz ! I F2FyDz頱I F2FyDzhI F2FyDz0I F2FyDzz
 (`  D7 Z7 R7  $  Ic  K{Dh K{DS1 pGJzDR! pG~6 j j 
K{DhB	TIo BO0yD
`iP# @h6 5 K-A{D`Fh%D,`z0GFI:FyDz,!F0FF0FH#FX  
h9F l FK  {D`(FB6 v I 5 K  J{DXJ`XJ`X`pG  `hd $M'}D	.if4phMhJ+hB(FeHxD@_\5 ~5 -O#QO"DF@D
F`` & FDD4	!i  1`E)TE!hhYh" ) zHhh" )j@ dz60\Ejh[hB6FEOpE-IyDh.,HxD  I#`(J2 X8`'OD0F6 Q9hB#K "{D` F!8p"'hWC !0Fz2I(yDB( hh p`h `JzDBѵ hC@0#`  5 F5 ~4  4 D4  4 B4 H$K{Di `h IyDy(hh#iba
!iHxD '`a jicjbaj H
xD b 24 I |3 3 J@zDhBi   pG  pG.3 J@zDhBi   pG  pGV3 KJ{DXh)   j F<KF{D (p?(?)A i7JXh(1?-(FȆ  !"0Fyb?-ؿP?,ܽD Fp D0
 HxD-?-(FȆ  !"0Fy0?-ؿP?,ܽD FeX@ChA hHxD1F[F Fp < 2 1  (K{DhBg*i 4H  4jc*OH4ih@HxD   @2 Љ s (@RK{DhB xA-f+-F+-LxA.g, G,w-f+F+.o, O,ьxA.n, N,xA.t, T,g-s+
S+LxA.p, P,K-b+ B+SKxA)g+ G+EI&KAH"{DikA#JAH zDi 1k8J8H!zDi 0@k/JDH!zDi0 jJ8H#zDi AHjLBK !|D {D" FyL Fg*g*
c*c*g*g*  |1 :1 (1 1 1 0 0 p? KFJ{D-AX"OH+h3q?HxDhiqIhy4Ff3 F+hBy4 v `0  (Կ    (
K{DhBi8H#XCXpGHxDpGHxDpG 
0 > > 8F0F(FG F F8  -OFhFpO(FDi`` +@ӀlH<X!hJh1 +@ʀ(x ( !h .4Nh<QX&	HhL11Jx)F=!hKh %pQHhxQJh|QKhQIh[ hBhQCh!hHhQHhhHhK#hhZh |bEDH!xDCH!xDl(F~F(x@()h9:HxD(eFF ЫE#hX=( Xh`!Qh#hXh`!U,(FOF(&H8X)Fr.N%hih!hPFIh1"hSh<Q h@hL	EZxB)F	=@F}nFOX	(x#F (# "hPhOۺ     5ODF (aF (X,F}.HxD.<A*٣a (٣0	)_+	&L;Yl$HxDX (!HxDiH!
$``LD`|D#hBHxD. F!w "hH&!i2F !yr#i hpCP(F"h!ip` hF&`(F F0F Ċ   p- \-  -OFKO	 %H{DIJxDyDzD	 @}F x=(ЗHxD`}F x` ( 倒HxD y+J ?F8  *	*,* !FZF@F]@Fy뀱I@FyDyP@Fy(zI@FyDyP   a)ټC c  pHxD.oHxDAF-1{xA+E.EXT+FD hhDXxx@(Ѹ1	`I@FyDy(@FYFFC^!8F9py|8F!D
8FSKH!"O {Dh ; 	
i "X m 
B(FO	 %6O8;H; 
H8F 7H!FxDLݹ
B(FO	%6}F x,(1`}F'IFyD xq 'Fuh ^F@ # 0O	 " F @%(F  h
`(F "! ,  , e h X J    j+ C B -OFOD (  DDD@Fxy ( ܀F%4 &0EXxpE&63x )	(	  *=(`h ( #h_ 𯀲 _ 𫀲O@𯀥5ҟ%{%]HxD8!)!)	!+ (є) =*LIxXhKKJ XhG8 d #hD C!`}Fл lh.9HxD0FZ(F}BF6(FYF (;0IyDy ho`'(F+IOXzXhZh<1LaEq\)Ѡh`;H)FxD_(F  (F}v] (2<H D Yh)ZL  ^ <^ :^  dl:] i @  Z\ -OFhLN(F~Di`` /@(F ((FI (}Р@OX8 DDDIF" Fy0x +	+=+ FQF"y0y )	)=) FYF"yh z (
	(=(&$!$!$! "8V OY'hHh`! "F0IǱ# KXh@h?:8)FV 
xm (	HxD N T a  -OF h@4 &	{D]0F
WX
"
=hkhFX Dih%4H!{DxD@P5FyD F
F ( ـ x (@ɀ"FF;S(FP F#F8 +	+=+yz(Fyv谱(Fyp蘱I(FyDyj (@O )@OFOXF}x=,	HxDO FFDF0}xF *zи }# FI FZFyDyH`F FYFFaF  &@F}FC F (
P P(<@(X 0|   (бJX    `bx Bx2 FIF F !`@
  BhBA`

` xPF (?0FFF
O FF	FF&OF&F(F @ .@ , 
 -  +@  (@:hQhpQF ( 	)	 ( 
F;hXhD<
X!R)i;h XhL!PX"y9hKhLBQp;hXhL!Q й## #p:h
PhLHAhAPhLHQhL C`PhL1X ShLCYdPhL1XaQh lShLHdRhX5<H< 		# %?hxhDEF5F4FO 	
W	p=:hi9hi8h8FWF /		EHxD  Ѽ`S c Fs  x8 (& %,FT 7 < k   ʛ D#  -GhFЁF $0FD  KF! '	X"FeHX P+hYhD!9FXh
#H1
xTbx:x* F
F Fy(
\A FF (   x (y  (u+h!Zhpn (m0FF (ee.hX"qhL<A
TC xj+hZhLa1!(hChL!U+h^hL^h0JLzDh`^hLr`XhLa6d^hLpd^hL0aXhlYhL	dYh<00<[hp!Bp# (h@h	 $	}41FX M ~   -OOKDhXF)h)(	F (   (  Fxh0 (  &%
FF@`$ F
F xH\)`x 4++!xI Fk}F(	 )	) x (ia  ,@𹀽
nkHlJxDzD
0F[!8gJFX
 #+p
hYhH4!R0FxQ#F0F|F 3FF x 0o F (O 	HFx

h   0 PF $   
hShl
h Sh4
 FHF IFFPFF v BhF*W B "PF  JF:  
ix)1FB])n%K	Xhb#IHF{XhGIFF(FRFUDxvi)pMFf0Fxj06U: F-X`PW # dIxXhPh	)hBx+|   dlK0{DhB (iH%e#BBk2BF;0  0 X H"K	L{D$|DiT08 h)̿j@i z F&LF|D
 $H!X
h
%="JH!sKCzD%iX: KJXhXiKhB	M
 cYh *%- % KXKhXBHhBؿHqW0FF	HxD  a(F y   -OFANAKF~D X,h!V0h )a* /8] -[*5K= d"{Dx)1JFĠİzD DD"h1FYFd"FW
d"%	7W  8F|F@Fx@B FQB h aT@FV@h.HhxD)8F$  $ F!hBxV#y |*  Q - k> -G 1dOHD &VK@" {DLD1FFhOQJ3FQOzDDFh" (FB#i" 3FFJHxD(F7HJ zD"iF(F-DK "{D#jF(F# "F>HxD(Fcj<J zD"jF(F#k" 3FF5HxD(Fbk3K {D"3FF(F/J3FzDFk" (FkF)JXhڹ*FBq%I&HzXxDhy  *  	kJP QH"KxD {D(FFH;Xh )`lG   ) w "o "   th     w {( -OFKh $DHiFeIFeK0yD{DFbH'FbIbKxDyD{D	
Q< + \HY B pE@qipEE|E qB
hE
3iB xFBqF( $FFF'FriB:H)FxD  hsihAE	*F  Z1iB.
*F  Nqi7i	)F  Cpi 
si	)F  6ri{qi	)Fx  )ti t "6h&h )?q0 (
IY0h (?QF
,v      ) -OPFKFDIY Yph =hRF#Fih#FF8hAh@F1   K %J{DIzDyDKJ{DzDOXL!AE@𪀖E@BF@12x*`tH !2F#FxD6*A=!#F59hKhL X))fH=!#F5xDOXD	`F=!#F5;hXh<B=  bL!ZDXx+QH"FqhxDql!NH"FxD1i!LH"FxDlI"FGHqh"FxDph0'AHxD!Fw  (l +9hJhX!L iPH"PCX4HxDm   59hJh<1B
-I2H%UCyDiZkA*)IY0h +?0#JYhӹBF@16H!FxD+  HH!xDi]kPHCX	Os	 `t  , #  y B  #;      V    D -OFhFkM F}Dix` +@ʀgH.X FPF?(cHxDO侸 D0p!]HxD1x!*XHxDOŽVHxD1hHhxRHxDOOHxD1hHhx1 +|! * )GHxDiCHxD x0Y0FAF76&D 0B
:JX
h *0F6  &  ChP!BD0IhXh +> F|U!x@)F `9FPFFXF Щ@X8
 F(H(X!FAF"0F|FXD x H+Xh * Fx` q R      x x   -OFh((xD ( L8F!(F|	|F F	(FaYFFw (4ѻiSMX hKhp!BpQ0xR0F|F	iX0FX0hUh:t	i (@IPFX0hUhtI F"yDw F"whI F"yDw|0 F
"wv (3#yS+ѡ!xL)			,=*@x0;	+ 	|i -@!yJB)X0h]hhexJhA-|xzI FyDw`i +@rMo @X hihxjh|1 FwJF (eX	 0Zh1+fHxDk1x"`F	x3xB@i *9 `FKhq (I  RNCh4!X`3h2`Bh0` `sh 	hHh	h|F<;I F>`yDwF(8F!8&<5I FyDw88F!&O 	./I FyDwF(8F!;5FF)KD)ID)J{D)HyDzDxD(x (? & &O	&F FV H)FxD&n(F5x`# uHX 
hPh o   _  0  }        /J-CzDP#FCCiX )P*NX"~D7hL1'l6@a`HF c    pl`dqh-ո *5clc`+O0!HP#=]CxDiSkch$` iE  $Ƀ bl"G7'dhl`d J ,  fKgI{DyD-AF
hhL(F(F@_JP!|X'zDoCDhi`[J 4ZK zD{D hhVK a`{Djh"dldhd)jhQ	MJ FzDQh2F	+&IN$$~DGJD zDh  , D!l cA #d <HxDhac;N~D3h + lB8IyD
hS3`6N~D0h8);ѵ  *7/K{DhW(F/5hP!0il*KD{D h # D$H%a$xDh`   c@"cc"dd0h8KO1 F{D`x z V 
 f
 l
 T
 \
 >
 F
 
 @
 d
 h 
 
 b
  p  T  -OP"kK{DkODhDiD`hM }DDDk + dI`iyD
hB@𲀠i 0B `k (1jB', ` %ec WK$ {D  h l@@P!dSOHOIo BOKxDyD{D`
``KK"k{DhB#lHJl zD8``p @\ 8`$l+hDS*iXP! #l(hB*`:IO0  yD  hB   +G\3LP!|D"i hCKCX (|.HxDh )  +K{Dh *ѽ(K{DhX#XCL!\(c!lo^!N" F~D1hJzDhOHxDh )I	2h\ +B    b \ &         j  D . >
 
  JHIzDxDyD #``h + IO2HyDxDh`Z
` 	 	 z
 	 R
 -OF7HP#!O2xD`4K`{D!n` )R (N n(ԿiD %DD79hP& nCQ {h @0h"IyD
h *L  lSH
` #`cYB 0X L1 1l(Fd57!nBJzD`
HcnxD
Jm`zDK`h{D`` 
  	 	 	  l	  P	  -OHFD9D	X@ ho0yDh\$	xDh )	xDhBo NqEF#9"  {DyD`` exM&8 !xD{D``H|D"h:hO5   `~D5`	aH|D%hjhJ`0  #!
"*!HX( #h|D}DzD~DxDh$iaP$4*hla&fl .  ( ƃ`X`8}D{D)hF@hz ( H(-hX`ű0h@<iyX 08FhG08={D hz (@ %xDD OD1hA(xX0hG- 5x z (P- vZ*F9F&'xDzD
.
 h
  *D.8F)FZQ#zPFZCh +5X B/У
)h!  
F
0$ 
al
 Fu 0 XpMD`p . 	  6. O0(='OPzDhiL47{Dhc#a6a{Db d  ##bcc$f``
)ci=rkch`0Fc  d`d48Fnh +
&xDzDhhBV6  &o E{DzD`yD`xx6xVxDt&{Dt}DzDyD

.OX  	)hL!
E@hh 
0Y) h!  Fkh$
al F! ) *mxDhBhmyD
hB+e
)l*jh X/i.r	h/ 
%/*F #%hBo AiehTE
P 
hi?h 3
S@BSDBSPB P;:*.P# B ;hhA?՗ 
 0F@aF:F:hj)*F# />*FSF8F/ 4$=hzDhByh	EME	1EBXyD R4{DhBHEx(F9F$ė zDD4`${D  zDT  }Dx4!{Dpą DhT`}D `4 #{DɅ TT}D`(ht !*`>ή8T}D+h +G0d0~DxD2hhB=$t$DxD>h thDLa?hB&@hB#X"cl  $XhyDzD`!`*E(*.-hYF#P*J#O0zDF` F &%F &5FIyDhJzDhIyD
h\ )	)Л xxK "HO1{DxD`` *? -K %IH{DyDxD`
`` , KH{DLxDh|DiJhP $h 3iFBjBXj(BјjBIkyDXhJ`hzDK`{D`:P; *ڻ LN~D6hd1hAJzDh)88 '(F)'@il8 # 0)IyDhP81 Q    $0'')(Fil#F  h!R (Fil'#F @	lZDIyDh +$L|D!h@\J"`4#hY!` ЙL|D"h813d!8 $YHBP @L|D hpJzDhHx0JzDh q!`* ,*HX @ h ""`K{DhohBHE*h<a .1{J%zD`DE#*F9`/x`7O # /*F!AiJ
dX0  h #| 
խvqf &    t  V  ~ n 2 0 2 T "   d   l: 6 v      x     T  |  6 \ 
   N   B @   x (  F   b 0     r  t N  p    P D ^  v  N   4        P  -AFFF'K{Dh80d!8 #A \#`HxDh (2K{Dh (݅B
IK  yD{D``N~DhP#"``H  ND~D # ;F"F  !V3hZ2` Bݽ R , J H     -OF#K{DhZ;(F
FF/0h2iCP!KCX (
 0X!L!  Ch0$ <!hB\
H `Y ;hY9`NFL0~D0|DODDD  )    , R N  J Kp{DFhM}D*hTB\F@hB   F+h8 $Y)` $ Fp  K-O{DF@hhOBDIKyD{Dhh`nB	:LJ)h|DkhzD!``HIxDJyDhzDH`cn`9X#hhFd  +,*ݲzOzr "HxDhBܐBxhH3#,ݴzOzt $!ұN~D1h1QB (HxDh!PCBOpXFF (TNp~D6hIF
pIFp"`Fv
 p   RF њE
I  CXF  Ap2D!
FApZEpp"  cSCH IyDhAIyDh! * ߂LI>YyD0h뱚L|D hBژN~D1hhB  HxDh"&hq!`L|D#hBHJzDhN~D2haֱ1F\hB
nAx	FLEFh +  &~HxDh *@ |L|D hx!B*	*R #ZCR|AB"FBڌ $mKp!{D`gjNkIYkN ~D`F{X1hhF`f0FxFRvh	 \(4F,\IyD` a $aXL |D"h|2(#hX$< Lt	 rE	)ILP#"|D``F( h88Ֆ 5   P^@\|Q%B
 FO F4H%F4IF4JxD4KyDzD{D	7.H9X
h"d,IyD' .VshBS0F;(I$I Y  (  Z |   x          `   v < " "   | F      -ݼHixDh1[ "<>@= (@P!#` !``JKHzD{DxD
fHJxDzD  (T	h +P	iP ;CCPiBݣIyD CX )
hL1X  3YhLO9  2
Dh  B FZE``CEؿ`h
h\Y`6
`K{DhP`
hZE +:Z 
HF(uM}D.hp#rL|D"h#iUP&oL"0|Da !hVxiJiMzD}D`  +`m.hq)`dIyD`5F=UE?Į_KP!_N${D~Dh`-`	[JzDhxaYM}D-hXIyDhhBaUJzDh hvFY  1 hB"`BCۻ 
F   1[F hYhBF   FO 
XhB
FlhnrEXF 	 0B 1B]FZ)JXh(K{D`N&LO |DDDD!hBU L
|D&`b? ?B        &        L 6 d   :  z t r 4 V 8FJFhzDhB	
K{DhBK{DhB FHxDHxD h8     -GHNIK~DIHX #`F5X)FZQ3+F %DBH2Xh (m5-  $X$0B4*,C*, _@x (\  K *H	*F?(Ti*
b*-*<:*Jc*Gr*n*A0s*u*<@ (@ %@ "@  @ @ 
0Yx!PF,!sF PFu@
 	PF	"	33x*G$ F,*x )э   PQ h -OzF:DX(h) xF( F4Z$}D(hB k*Xh ) c FzFz*yDF FuH0F4FzOFzFp FyDZFudZFyD	 F8O 	u
8O 
 Ѻ 0xH (  FYF9 $
!FxD   
0FzFzqFzF0x& x"8	xD1F= (FzZ x	xD	0F"yDF Fud F) .F@Z	sH!xDi#l (@ ,¹#pAFzx	:Xh +@v @rd	xD= kYX)pH!zDi 0lBdD>H"@yDi# cW0hqd I$	! YTFxD}Dy F4L)hB F E l0F4FzFzF F){ ( \A F! (@PH$lCxDiyDXhu8 !  -  (  @ t(zDi@ 0x=(2F\xDF;+ +	+=+@Fw0F	JF ( HFze
F@Fu>8{DilJh~D3il@
d =)xD	 z<xF') 	HF8W pzRHExDf(F%HFF ( x'+Q@FyDuL (7@FyDuD퀳x@FyDu<HR*FuFXFbFurPDS* 	 C,*O
:(xD		 7FF{D	 	 * 2BxDil	xDilB dyDi`C(C&zDil	&zDilC
dxDia &aA6{DilJ
ilAdib@FyDu ( t@FyDu@l@FyDu (@\@X6{Di
l	՗L6{DilBdF)4xDii)i !a a (F0	+uFyDuH fYhxD(FyDuh{Xh *VxD.a %(O	 
zDR) EXF1u ( ]9xD#W0 "0xDF+P)xe~D0i iaBad%zDi0i#a8кXк/<;X x	 < 0XFu m)ѺX	к
кd~Dd~Dd~DV)`F)($zDib ) i9X 2"`W0`{X`9Xh +  .0F$zDiKb * L2"| .9X`W	0`}l9Xh0F0$Xh)F... && &DW0hxd Q	NE U($zD$$zD ! FxDD@FyDu8P@4{Di
lr4HxDi
lBdN~D0ikI(FyDu0(F6i60c1i
cI@FyDuH8K{DilsHxDi
lBdN~D0iXkI(FyDu0(F6i6pc1i
PcI@FyDuH>HxDilNN~D0ilBdN~D0ikI(FyDu0(F6iW6c2icI@FyDu8I@FyDu (@>HxDilAdI(F"
	yDuh (CѾIF	h
yD	4^F+
,*F ( fPF2		d!HFurFFuB 
b*ݨHxD)FZd"HFuz ,)6] . FFIl] &
@ "HF (6*6 h].x *
	 #	h<[ A(чN~D2ih1i`N~D2ii1ia}HxD1F>6zHxDilwN #~D0icyFNF0x\ (?1iH$3`cCX0h2i $`h ( ̀eJ  zDiHab P  3  .    zh  U Z > ,    ` f   
   Ʋ  p      t b L       A `,  d n   ,      & h p b } F &   a     8a  f V F ` 0 *           N =.I.JxXzDih( bd@F(F!W0`9 %$H%J%KxD%IzD{DFyD

  T(ǻN~DV)` .IyDu (?N~D3hB %F0x& (x)hBu+  ]  t p  \ 0 -AF>HF>MxD}D4(ѽ8I"8LyD|D
`<9F"5T (2NY3hxl(
D	/K{Dh (ѽD F9F"XO ,&JXh+
1hxl+"HxD"HxD !!H"!FxD0hxl*H!FxD"HxDL|D h(HxDABH!"`xD!hK#` & B  λ f p    ѩ      -CF
# FDKDDO"{D	xD `   )v FyxF *o<H!F* #xD 0t8(Fyzp`FyF(x (Z2J !cxzDi+`//H!FxD:Ft7 xN(+IOxXDHFhzr@F !22)'D	@F !bZ(  !?H!F:FxDtJp(Fy'p`yLxF*yp`yDF+x  0`    bA E%    $   K{DhBJzDh8JzDh aEJzDhJzDh BHxD h2BHxDh )ۙBKH"QC{Di@XpGHxDpGHxDpGHxDpG
HxDpG  pG B d \      $ # x  ) F`	!  ``x0`	! (`x0x * a   8
Mi}DD)F" Ft0 F	! (8 8  8F hx0	+yqF/)?)# "0FU)h xbED x;(cx/
)?+`,` 8I F"yDt^ (  8 F0aFtX!F0( #aca(FJ"i@-(0aax	*'(F9F"t05a(F:![	!FVBa
EOD)xA (a9)i{Jx!b	(
(
(0F  -AF'NO2FF~DFp#IrXh +:ݹZ H9FxDQg0OPhF@Աm Ft% =B<
+
+-@pBF!F0F*Fz %F "@FrU9F3F|F0FF  $ F = ! !LF|D F(8F%h&iWF% 5%`` L|D hj ##` 4 -O6M $6K}DXh5HxD̙Љy2JzDK!ck
 (=`!1F (7
 
U Kh c LE ">"t hd U0hmBTU0h  !8Fv8FF4DEEHxDO* < ^ z +X -OFSNFF~D !"tPOKXhF )9ЏKOD8F8F!
"GHHJ!xD #zDEKh{DhB  uBKX	h
x *0`(Fub(F<IyDu[aiR 0@r`(FoVgx2JX hk ` (``	Dh> iF (4Ѡ`gh?x' ib'aSF)F@r.pHF(FaF t~9FBXFt>p!i' (FYF 0Zld#2F a (Ч`(F1Fu0F> ;  o o D  F h! iH ##axD@A -OFd xDE`
F  ; (F%F #HGFFxD8x+|19x.)5xx"zxzGEU OOwDxx|
{JYh3zHY   FhG  $ x (GE? Ft!FB8F;x.+@xx.(@𺀸xx )@𲀾
cIY h3bJ0FYhG  60x (ѻ { (@PFLt2-FOHY 0hANHyY 0@FhGCO2GE ,5@F9F (4x #PF3pt4p (   hGE%tx<x !PF9ptp<p#6BBP#BBHGE
}.) " 
<.+?0Ft61FB8Ft8;%GE	E0Ft(1FB8Ft*B<.+8Ft9FB@Ft8FF 7F;x +7FO 9F: ;  dl-AF)N
F~D
 '
 (#!F  "A# (FFH1X
h:lV`3h  FE(FBFOPFF)FtQpr!Ff0Fv FfF8F0F7 -OF} 'DO
X O p( '
FA 0FB!d"
07/ ,  .  "h'(F<WtR)Xp9h	Bȿ)(#)X  (+h`* /x^-C\-Ax<)у*(hXBO  ` ܶܖDD   (XFHF>8hK`hh\ )	h - +B@+`, * VX h1 '' ' "AO pFF!`6`&{D
zDW0Ft| ! ( O@Xp8h(	ݸ001FxD&<$& #$zDyDvX h +@ՂP FO qQ (@ Fxo (!F "'Ft|
 
 FEULF(IFtHFKr" Ft\ (	!x!)$gxa?/ ''p F"yDtH (FF3x!8]( 'pL%X0h'+ )J F	!\F  F
!U (@K:h*s2j	h:B
F+B)+BX F*m (P 	!0!$B"# ( 	 h	/ FEF)JEAJF(kExJF(t 8  t ( ˁ, )? O 
,RF  Fp-AS@,RF!A   /?O
!Ǳ  #1F 0"P"   f F  0 /O	O 	 /O	O	A
		 		#B!	p(@}h  'p  F@t  !8 "FXFt 	"pqL_#8x/(:FF9
)
)$) FE@

 F ( 
2@+#1  C  

 {F8
@+RFX0h'գIX h!0FsF FsD
 XF (?
1F`0t[0Fs!F;tS /?O
z	Z0

i9hR# hB09 t  (   ; h (Жt>  !
FB !' 2Fs(?O 	%F/F% ч
fHxDd%F5FF % F2,0F,=< !F/F  $
yF&F)iP*XFXF   +# #s(G&6

T	 E#4D	O 
, ( 1!,O 
Z 'H8FD 
~ 	^ i@"pWNpY1O 	N%#H1FxDtFHxDO	<`
`h(F
} 7   8   : Y 9   ޤ ݣ  -Oɰ UF5}D
XehIYhmNl "#FdyD~Dh0h\ "2`*+,U
0hx *@WU *Sиии	J<# &B4,O

|7>    $:  
&f0<hI 6h#
I $4$X 'P
	HxD )  &BHxD8$
:
l  ,hmB*"!FtY ( ha*ha!+#hLa|DYbK h{Dh   ` Ӿ*
S
EH:xD # HxD   CF&
r 'aG"Fi
B$w'z
 bG^i/

    
L

$o NtE ,ڱHxDF # 
<hmF
 $
#F #
L &
3FO 
 
fg  [h2  hm`;h̩и	!
6#G x&F
" 9hmBtBlO &IDyD$%<F3&
' $h?8Fs& &
koHxDhBmIo NyDhpEF8FiOeD8`xq
 (D	KK	F HL[Kg{D`Zx/(WH!xDZ`TJ#zD`R)RHxDhC `PK' ({Dh(KH'xDhBo B`
 /= .2:O9h7FQ) -ZF(6X6-sZ(P X?PFB(C67
F'B		
+KF{D%hE(O(ND~D8h1h'(9`3`$HxDh *GR * " HxD  .   7 <  `  s *    r b " 2 $    R b @ L Ξ и	@* I-|D'h8hN	-./Xi,$Y:hh:Bؿo D	/X;`k)	XxDko AB
 2 
 0	kxDr  #	 
gh9	{D	hO	P! -P)
X[HS	XiB1h>#1h #p,9	{D1hB	hP	 x) zDR 0H)Oa zD	0h;451m
 -.k	M  o @B
  
 0 "xp3/
0pF0h0Fh +
 9h )@ 2 .|t8pp({DyDzDUF  	(XF"s8 @4E	bEXF"s԰0 %hXFw hE
 Q:hҹ PXFIFxF	)IF
:)O 	 0
+
+ћ  (
(
(Fh)
 $:h *@ !1F
(
(1x/(?(YxZ^)3 FFEF[Л  		> (R 0	+hXFv   hE
 9h )?  0\+	1 xB\( 0	+  XF !1FE	ћ  $(1xEE1  xB/)?)	pE;h
 \|&	zDxh/XB:h *?m;h +   8`\&zDhB;h + !


 
n D,f~D7hB۸иF|D hx/xDxD"yDh\V'


G 5{Dh9BxDu|O	D8hU`P$ xcи	`xD߲h+ /U *Rbo L0hyD E|yDxyD tyDs/l0hyDsjd5{DhB
(Gܴ0hU0l0h38")X
`0h9F$uYhX jXh7 (Ozp!9%@A0hzD1hd/ O2~D?O p3hS	prF 8F?  'BFB "7Fx
pC)1))x
(
(HO 	 @|m%(XF) "EF ( vm ( YF "\tD8hXF\8` (@aD$Xh;`Z<$<XhH
`U	h  O 	# HFYFJFK  (X # hCbU Hh	`+XhQ`U0Hh +XIhhXt! hg)1xHEOi/)?) "pFC))?B@JU0h Xh  U0`h`!'`h;Fia1x"rF  (ebF;F`1x F (@?5@xpI#0FyD?sP;F /!F2FFI0F?yDs<;F 2FF/! (' ' '@#pGHxD"haHxDDU0hQH*Xh7 Ozp!' `!``'ha0Fu	h) 	``hX` 	6 `8 !Y/
8h!hi0'hY`9hH8`hoIFOFh F c'B
p0FXF  	/  !O2sc/2Ѹ ,$ии^Io ByDhB\K{DhHB
:g%gO RJSHzDxDhh)E9;h)Eؿ̩  U0`   (?Iz  ݝ     Y  Y      ^ A X X  ?     ;     8  V L,d08\ = % * * H   -OFBJFBKzD (O
O 
XOs5hF<N%FYx /(hClH"F9FJ$J,F"F9F(F%PF 0BPM -F&hOV% d#F2Frp

rh#x (f  f 
#h65hS fRr#hS 2F hP r6 F9hB۪r'v -Oo C 'F F#(F@ڀB ɀ	 P' >	"F	r (  $F ( %1FHF~ p"FB%F UI	yD
F0FrRI0FBF#FyDjбOI0F
yDbLI0FyDZPII0FRF#FyDB%F F@F( ,_4O 
DMB`B FYF"r,<= F"r"45 2и	/#FF  ^( :) FF3 )!F0FCF ( %:  DFF2#x+"xZ4  и
и
XX7HJxDzDB.(F   #  J ˏ   x+	@x[(](O(   pG  pG pG pG)C,**)<;+)B<O+ pGA(  pG pG  -AFLOp|D4DD#T,
49Fr0TAFr0
(FS ((FTr~ ((F (T (0F ֔ o   FrH (I FyDrBHxD  %p ΐ r<?  KJ{DpFXFN
hYFh
xh(h HxDr (`!h!HxDr `(3hBr:
 mp@ #Z  K{Dh9IyDr 0   ( \ K{Dh)H "`xDVpG   
(F
 J@|IzDyDhX``ETݽ@ٿ  KJ{DXh@I@|yD
hbEſpGL | 8
(
LF|D
 J@|
IzDyDhX``ETJXh8@8 ^ | 8FM}DбxñH@qxDhB
J F!zDrv U0h8@x8   '7K8J{D-CFXF,hFOS0h*H(x(ix[)B(?& &] /9'IyD@Fr<($I@FyDr6H3*%.JzDJzD3/,K{D	,K{DK{DK{D  !K"{DrR,ؿ< (F !"Frq Br	   ގ        FKH{DXnr@A l FKI{D[X !Xor@.H FKI{D[X !hr@$ FKI{D[X !Xir@
  !qKJ{DX r r@  FKH{DX rx@⾰ KFJ{DX x xpG  KFJ{DX x xpG b pFWMXK}DXnxVHxDiPxU0  ` . k
xJ8U0h `d dcl
xlx FIjXhddmxmx#AH)X
hee#mxam
x2U0h`e eak
x*U0h ck
x"ll dc`dl
x2k!ldx ald"mx3k"l`exbl"e0x
xBU0h  
x0x0IjXh00 x9 x  Hx)X `
J! zD`r
(U0`p 0  L 6 K
J{DXh(!BqB `S0hzĿOzr`pG 8KJ{DX%hB `8@Ͽ n pLK|DJhXzDhhFBTPK*h{DhBxI3hyD
hB
H!XThB 
Z
`
IyD`K(h{DhB`pB  t  l < 8F
KJ{DXhq	M]Y+hK F,`8@8 8KJ{DXh
M]Y*hLY Co@#+`8@8 z K	J{DX hHI[X     pG 0 K	J{DXkxC`k	@Q  LK|D{D"h2HXXk !!` B  8LVK|DX(h
IdX o "*` 8@a8 EK-A{DFDLhF|DF *| (z )x?H@!%X*hBвoOc+`9H"Xhh (c"`w5IT0``X 8Fb; .*h@вoв oT0h)-(h@аoа olT h+  i( 	&( @IyDhB
`  L    FF]  
K
JH{DIXX[X/h&hhj?(hB!hBн@߿ 
K
J{DXha	JzDh I[XkH"xD`  ,  	K{D	LBmmYRair`@  	K	J
I{DX[XihQ "rH@ T pLMN|D}D~DZ1h*`@h+h +M}D(hJI  zD(`D`cXThK
`X
`
JIXp
KbX{D `p    | ` Z L K
J{DzD0hh "xxB]xDxBXh023B  0   K{DhBJzDh pG  pG »  K{Dh +2J!LzD|D`"h $'x eE ]xAxBXh%hHHxDDh>`
  4U  =FB43B n  b T -OFF
F	x+8FOFF ( ɀ к7(F`f0Fq<1FB Fq<(Fy p Fhq.YMD"}D +hBFUHxD`%1)`Fp+h;+`  *5Ɏ F$ %D  BFM}D(h CIO CHyDxDh FM :xEE	4hxyxB<Ѻ7#XFQF- (
fE FYFrq (Ѡ
<E FOhh$M}D+hZ*`	9E  F5EJO9xzDh "   F{x1Fl``kp` (>6`
HxDhK`    \ P < F Ĺ  d -O]FNFK
T~D4FXh"`
 (i>H1Xh  d#x +;I F"yDq<4O6OY O 	


OF 8  B FAhFIjx  @BB F ( IhF(F3h )PF!FF`YF(FF0x#(FJF7/L3Yh *ѹ HFH)FxD 
R2h#hBq
] k  -OT
(FF(6|D$XhLT0hT0	hV"}D)`yDq6 O %F5FzD8 '{D/@&1F>F (@2U}D
O 5eX{D[ U" T	hE
)E#  @h (ѫn3hT hB
`xDqf (TxDf03@T hB<xDqR (4xD j3T hB
xDq< (xDbj3T hB
xDq( (xDbkj3ĴT hB
xDq (xDhbDXF
XFFpx*ћ  k(ћ0l+XF "lR ѹ |xDqF pxDqFP-(`XhB"TxDqP$X((`	H4 ! "{Dq !8   ,O1#xD 
xDM
T0`xDB$
X(`xD8 ( xH#Xp/ -@0F@h (@ /  *@ĳT)FqD )F@Fq>)Fq:' )Fq0F)FNq.H)F~DxDq&H)FxDq"K{DV,b)Fq)FVq)Fq6V )H"Xh+ i=HN)FxDqH)FxDqH)FxDqYh@O`!N "HO1~D xD#2FK q%0F:F0Fih )i5` +J,T R# 
 JX
hBN (2UXFPXFYF (=FF8XFqYFx (U,
A"0U<  U,A# ZB0 UKB
1 (U5U<@B7/|I0FUOyDqbYyIyDLT htHxD`FsHxD[F
(x8pM "pH}DxD)F;xK*x*kH "kIxDyD0FhIeX(`0F5eH"#X` cI eX(`3<T0hF*+ ݹ O	OP
IF "PF)h)$SM`YhAPJPHX$X
h#hF`Jh2  !7 
FF hk#`!h )(Fq %` 	L(hBq
 mn  - _ q :  L F n F G oF " GF Z F P  mI c   [    , u \ \ F & B % nW  ~ D           |  xsM}D (&x +#F xL|DN"F# !~D O10F0F!FH!FxD
JXh ( Fp@@HxDqF (T u" T T Y -OFK!KDZ  hJzDh!\M $}DOD,pD%FD 0O	 Bh8Fx@ 	Zhx9U48U5 0BI  yD`JZ0ihhZ	 Hh
Z H

hxDKJ{DzDhh	 $^B 	??hB	? 0+H4k/ * gBn
 )@^  FPBB*F:FFIFq@耻BO9M  K(ј00;	+ B*Fq"8			E FORxd0 +WBRۻBF:FIFp (FџBPqE]5;)B5=F 5B5Bڠ00;	+	<sE	 qd8"AAB@  	EW ) !HB)FFS !P OQR0 FSB ڲ*\JZ0hil
PZ	0hGDO 	
X *5(

X
!
,By " 
,ֹE  !F H"F1F3Fq
hh"BFp<, 0h
h
Bخ
1pBF0qxh
` WD	4BqFO 	+HF 0        | v d-AFpK ${D FHxDh
hBhh9F2Fp(45DEO4 F  Ԫ -OOFFKDB!FX h<! h0 OOk! h0Fp!HC0	F   	 2x#*ux0=	-؀#pk `p	Jx0*;"p	%	 % =8tIXF"yDpL (3qIXF"yDp nIzXh +mH8XEc !	aU5R!p eIXpXFhyDpXFp(_#*UT	a"-	H (WJ #cUzDhb5\PpYxph		p 6$"XFp^8JHOxDFtXF
"pP DHO
xDFfx	Fp0(`U5  (		6	x+X\+	Q	Rx* .cU5+	W0hG"X!	x+cUc5Zpp 5	83	 (HIJxDyDzD$ 0 +.  `U FGF (5F   F^.F *ї0F 0 0!v ^  X  p ou mu lt T t F+J
F+KzDxX~)"h !p"hQp&hp#h	t&p#h_!Yp"hxp#hAxp !#hq ! @x "PBFxFt. h0p0#h !Yq hp ! 0F&h1TF.#h "U
F(Ft6_ h%HxD(FY0F s QK-O{D@hD ( 𖀀 tF ( JH$(xDD} 0 "Ah { (,&(, , !!G%`565FDD 0B,4NX h,(!!p (F!jPpF F &-
 K 04,1*$H  X `W.  "Ah ', (3 3 FE6 ^E 0 +8FO?
IX hF .B  ws 
 ̧  -OF[LFVZI|D#( dXB!\\ hDUD h'<!M h&k!FFz)FYjx *oЩx )l*x5 !"F汹 р*s  
F 0
 EѓEY23B*Ykx +UШx (Rи &  L+
+ $%KdBB $  $5 , a  . FFt ,
	,
,	,<,&\,	\! ! !F5)x )YhI5"F \ 0  KJ{DsFXh)@S hM^Y5hE!F0F (FF F3h(F9| |-CFKF{Dh@IJyDzD
hh 
F(FF8N~D6hIKyD{D
hh	JFp.	 AF"Fp(0F AF"Fp H !JKxDzD{D```    ܭ ڭ Ȭ    -CFMFK2}DFFXd,	o H*Xh	 %5`CF8FIF"F&cFd,O0#(F3` Pܽ>8L|DFx-
K	HXxD	hH"XHhxD(F8l ? U7 KJ{DXh9S0h
pG $ VK{Dh 8  pG 8 FM}D(h0 a I*hyDpnIyD
h"`K  {D` F8 b D H > Fii
HOs"hxDpJ#hzD i`# F@   
L
K|DXh  &JIXyDhp2@ V 
s tK-O{DsMh}D) ۀD `6mHDxD p@1FB<F"FpB0F "  :0F1  p`K{Dh` 4FtOdppDDD[Ol  Y	  U`qhp9FFhpRInX 0h (y  hp*йh$U hp@ pU0`F )\иOR1hA9J!9K zD{Dp`Kh±5K6H{DؐxDhD
`3K9 	 {Dh , #F-LD|DD c\+)JXh[a:F FOsp !" 2`  ?C 0 /0h (ѫK"{D`	   n p D (  ( xt ~ l V V J 4 & 0  K-A{DFFh 
N@F
M~D}D7h)FB<F"Fp:2`*(F)OspJ Fn X J K ({DJXhBHpG  pG  K ({DJXhBHpG  pG l KJ{DXJhBHXhpGH FjC bhdh ,pFF +i<Ya> ,(i[(Fp@VpF5
FB  B #5"hB !`ihAi0F ((F3%S5p@KJ{DXh	i HxD;   r Qo 8L|D(KX*hiԱahcihCh cD` +hB
HxD`hA`+h "a)h#58 D o sF  Fpdc(pF  pX!FJ B(F
JzD
JzD3Fp
  pDJzDC(F!F| n n n F5FB	 F2F  )h "`
F =Fh F2Foh F)F2F* /pFhFF	h "` hah A`ch h"h`h +(F!F2Fp@-O˰((4DYp8heL9hj
nh
 ##F=h"p~
@  o B K  !(h{D Mi}D	
;`hh9h
hU;hhBܨBJB
ݡPHxDKOB3E3jB(QB#H Y 0h  8.#i
 S*fFFo (@r

O 
BEEdo LaE	#h;HY  Xha +DO
 !PFPF%h Fai&,F -
	 (2ba 񱀼 #: PFGA:h !h(#PF
:E ! "#i:0 S+FE "S+F iP+ =O E  i2@E
o B XSFYF9h$ ZEĿRD$XEĿPD *F !
PF-8hE  %B  Bȿ %
hh`
ba!a"h	+` !`]	`F ,B=h(h(ѱgx!8hhB`
иf8h #2Fj<h 
X,    32+ 9h|̬   ͮ   'H2jY 0QhiB)ȿa9hihB1jBpj u1  a;h2i :$% 8,(KO 
(Y
0ha  
  rm -CF=LF=K|D<IX8hbXh +c8 (_7MdY"hh5K{DhM`4L4M|D}D h+h,`a
 ,,((`-M}D
,M}D
,M}D+M}D+M}D*M}DE
< "h">$hE@@FP!!IyD	h )IBK{DK{D$iH*FxDPF &;hBo     "  i i i i   | fi gi _i -C !9J9K:MzD:N{D}D`)`DY:hhDO3+`F5FX   @ ,/<h 5 ( 05@%%OBYK !{DhCHxD  8h%"3B (HxDCe F;hAh	Bh%=kH   ̠ ` wh fh KJ{DXhFHLYh,HX  	HX
h
H  D (,048-OFNFFF~D (  FKXh
hSEHxD]M
		9uY(h  $D# (Op !Fi $)h%*h  5 BB 
h(XF
Fh +XF焹 )XF"F(h #5B "b`5#```h``*h`5BE `(hL`%\S5#a$5  o+h ! 0(aaaaV h1Ɍ hnO O" (YF, bo@ |    5EEE``n (ЀU[FF(h F ,iBbiahh
hJEhhBbi*ahB+E'%ahB"ы+h  "h  )h5i `*ha  +hhE~`%ay3"h
+FѦ  !F (X !"og`  )h
hE`5a - !O F a F7O  _F'IrXh+ FAF  :8F3J(   FAFE   a(hi !"`(hJ5zD`aLH1YxD $`!*y(
J X` Ft  g J 8d  pFM
FK}DXhk
N`aY-h-hB"F"p@ p N  KFJ{DXh8J	 pG   KJ{DXh#A8
F pG   Ku!J{DFXhIyD`  F@(  0L 8KJ{DX,h HXh *
 (#58)h  8 h-OPFFH4DF[ hF  0 $,T,h}DyD$`,`HO2H
`[ P ,RO(E .)h		6. # .	h,%1 4 ,̿BF ",% B@ȁE:F4$ .:F BF ,O0 o*hBFC   BLO3BF4F   $K {D-h$h# 	M  	55]a@		(u:(@ni(@g )P .$E̿O OEԿO O 9B .EO O"EԿO O BB
ݧB  @E
O 	B O iBPJNzDi [F IEЩB%  HEШB  hi HE	ШBBh +FcF +JZoIpHyDxD 1FOT BjK .{D hHxDgHxDOK5Y4&($(\N~D & EE $h ,tciBq"iB (kE F h (^ 0E_Fh	!FJiBFhBiBСBFh *h`hh```%Bha`FEaiB0 iB?$u'  @fh 0Eah  "iBchYi &B
NI[ yDU&O 	   (  &0FO8BFTB 8   X̙  ( ` 
 !` 4` ʗ _ 8FLK|DXh% %@u!T0hz
H"xDHxDh8 "` (F8@8 0  hK!-O{D"heN$o5`@bH~DbK1X{DD
h~  (QBMйBK!U )vpUJ@AV 0   XFn!cXDYF (QFn Fn (F@J@A1zD	  A+  0p3ZiBкB40#YiBйB 0C (ZiBкB P	< FF }HxD'L	d\2YH $xDk{
 ++h+{	R$ 4{BMuY)h ) ؕ & {^ ϑ  ] v] l] KJ{DpXheU-
HxDp@88 (eUpt 	] F #7KJ{DXhFU
irhh$!F "1icQ#n 48hrihBۑBB  ,bhb  %5Q ,hpG #"555%50545pG  K	J{DX#h08 h !04h pFNK~DX(h4%B ,hB-h84EV0hiBi  8 F90p@p8 KJ{DpFX
F hI[XhhBܬBKBܠB` " F)FFp@T p  KJ{DXhiH1̿ *N*K~DXh -L(ItX#h0%"4hBݽ@H*F1+F! (5'h4F@>#h"04"h)F4!h0#hH0u2X48EhiBi8a45a@f  F F "> )0@n3!- 0    KJ{DXhn1! 0   n -OF-OFDDDDH{$F (E #IF"i~X #QF(F!~Q"KX0hB(FYF" #~D2h5BI(F" #yD~8! *I(F #yD~.hhzFHh1FI(F2FyD~ @F)Fzdh ,ѽ 6 Z   Z Y Y Y pFn:LK|DX
hF@T0hB
4T hB)x
)
 2h"(Fp@+p` J  zDBFQ? +pG 8r JzDBQ? +FpG pGr K-O{DLh %H|DxDHxD 5P%   *HO6DxDDD  .Wl5WW<JBд0FW^EHFXFPF @FO6?5ҔHO&XY1hx*hxHxD1hx3HxD0h.h7x7HxD(hHO 	ONFxDHDxDHxD2(F6nlEFW&P -}J		XhIED>	zM`Yh *
 V (tHtMxD
sH}DxD(FpHxDoHxD(FmHxDlHxD(FiHxDhHxD(FfH&X2hx )aVHIFn,F0FAFn(AFF0Fn.p\JT0zD )1AF(FnAFF(FnTB
hAFn
R  Q 0 +
 	    IFn )5h )wBs:HxD0h|(FyTP+hxP3HxDn(hk1HxDg0HxDc/JXh^-HxDZ,HxDVT0hOLY  X q ,  O    "  %X "X H  W г X X W X  P  W T  W K  W I   &W W   W   W hx0
 @A-OMK}DJXhHX*X3hh 6IjXh(݋IjXhAhfD  n|&s^.݄JXh1+I $$   yD
+ 
O 	 *R(@,h * ǀ &qI FyDn(?mL|DmI FyDn(?iL|DiI FyDn0fL|DfL|DeL|D x ( 𑀸 FyBQqYF *4t
DIFnF XH)X+ hHxН,
sDYxQIOO`DyD	nKK "	{Dn
!n?8JXh		wOg  y8@JXhjXFq?=H+XXFhG8	qg?1 '9F`\8 )<(<>+ x<(U0h  "  FKF2FWD\F#x +"
1FJF60IkX`hBnF B d cV :V TV U AV `U xU U V U U dlX8LK|DX(h h(ѯIx*hl{
H!X
hhS	H!XhI!8@8  | x @  KJ{DXhh8I[Xh FhBpG,  CimmX`pGiaa
iQaHapGaCiKaAaHiapGhapGBii
ahai@iXapGpF
F x	xB"ii8 & )ii8 # -sh\ F)F 0 p  p0Fp pFP ii F@	pF  
FN~D(`б#xp(hbhB` i)h1i)h1!x9Hi2XhB)hap. F  `a "ap  -AF,MF,K}DX4h')IU0h`jX'Hh`)X
h"aU0h`aU haU h "
``a (H/X9hE;h !? 
F F0hB
  ! 
FF2hB  9hL   !
FF2hBѱ p< 
N~DFzFc  F,FS,"}+KXh!b Fp  `K{D1IJ\XX$h
hiJi R!hPiBiHXh	iPi i 8
Fx+iAJBR 8i)F $i F ,8 8i xi)
X$i F , F$i ,   pFJizDBmDR0hIPXh
HXhB
f4
iF(F1F-i$ - Fp p
FiFhbmB Fce(!^  mm*h (`pi F)F2F$i ,p-GFh
Fz~y`+Fh| qa`S+kAc  # #f*j"bhj`biladld      og(F!F99 $ FFO 	
wvƗ  		

)E		00ZiPXa(F!F
 FG>K{DXJXhBh )FpG pG6 K  J{DXhh0 )pG
 
JKIzDXRX !hhB)!h + pG  pG  4L|D8KXh
h 8     (!Fi!h #"0a #b111sa!bd c`  KJ{DXhۿ P 8F@j %kjebgkb0}Ak0Ok~ F8@m  KJ{DXBh +FpG pG   K!J{DXhh1
BFpG  K!J{DXhh1
BFpG  JKzDpXhh .)LY%hB`hB3F .p (#hh`#h`h8Fh	( h`!h`IPX"`p-h`p  
K{D(4S h h``HX` `*S0`pG`pG  
JhzDh`)(R@#` ahh`IRX`Ha 	K "F {DHXh V  0   F0  #0F@F9FF z+F8 F F,Fxq"}Pt0F!Fq#" %O0cd aY	!W F  pF  !LF|DKX(`1F"#0Fo@I*hcX`
  p (`"(hhXqA`cT001F(hD*hSi +H0!XH` XTa h	h@X` p `  L|D  KX` (JXJhA`X`  &  8!  LEK|DXF(`H"Xh00Zi2Za00(h8@߻8 4-GOMH}DK.XU7FmhR , * ; I;`hXFJ8F X 	 3h +TFJF` mY!pG  -G!vmFBD ˀ /fKX hBѾmB@o	B	qJ9F0m	 #eB#e@󃀥i	FCV-%6iHV FH?6g)Fo 9	բm|E])F " FmB7	 )o gF-<N FX` 	 += F P

 F P

 F
 oIDmB!egoB^9" FIF6 .MF-	og&og MF F)FHX  hB
LX0h8   / FĿo- F#!_" F G㺽  T-CFiFFF mY@$i ,T Fz (Ѹ  F#i +5 di Fj (` .0, ! F{bhBFaF6BF F+F 
 F$i} FE (di5< F< ( ,ѿ
 ,ah FqBF+Fpp
FAhF*xi`*(FFi  $0i()i (Fi(i (F Fp8 "
FAhFFilhchX``8  QK{DFEiJOH@XS0hhBiSiB ## +@8FFFF ii .(Fzi0˱ji+ii `Ri+i @i * +FFFF*i Fkhah S #(iBym " F iF#i +=`i (:h!x)phiai`-ih -iai	hKah Fwhx `EњiBiaiiiAaji
iai 
Fi` )(ia)iJa(FU  &0F  -OFOD0x
rhBi
KmB Pi "
FAe0F2 Oh-t` 𩀟MO10F2
yY
hB
hW0h
8O 
O 
MPDyY m.F0F0FH;X	h	 $l	O3
ho 6HF (/O1HF0FHF(BD  (QF ! m- !
D $  
H-	9`IF mPE

)F		 m

FTD	 H= !FF
F  *Mh) (L[@FW O TO1@Fi	W
0hQmxF@F[F@@F F; Ei)Fm  FS'I$	
zXh[DHD $	 
h+hj E	@FOO
BF 

 
 y \K	J{DX hP(I[Xhh 0 pG pG   #L|D H!XhiF   -C9O:JD:KXX&h .. &X4HԐ=XW	0)hhB &DF x (IiFm[ .Jѫm(FYeCDEW Chx*di , FF ! FvahB"LEe "ah F9F(Fm(FY# C0i ,F%i -ѫ l -OJLJKKJ|D,XXhFh.j)bT	0FhFmi Fhi(BH#Xh*	e*x *i  *<OBY;OhFY ;`C m7H X    `b>`(F !kh(FBFFYBmi ET0h`#J !X " 8h hH:hI#X`#`X`ddT hB`T0"`(Fq HiBOԾ d `\X-GMK}DXhBъNY;hBF ( mGE Հ@ĹH)XU0
hhw0BF9F )@@F"F#F x( F !RFBFi $FFEi 	shrhFED0F !8		6i .cJXUU00h
hhAmmm &p	 gEݼEgFBȿ .	B $
X(B0F6U	0hZhX` "@F9FO 	F> p=p: !8F ,Fi {hB#8FEȿ "!F $FxhaE	 "v8FaFF "8F &F  ?i i .		IlkXU`hFyJXhZ1hBOY ' hH4`J)X  `X`( GQ  `\XKJ{DXhž  -OFrL]qK|DFF
PX0nOFh`Y9hB */ѽj
Sh`fI(haXhFB  FFJ(F ( O	 F   !? F 
F7(F ( 𓀕. O 	 FOIT   +hB  "Z(h  B!6DI#>h`X0`=`-h P:h=I`eX(hPOQ((`:h (hhT0`(h.`   >   !
FF  0 ! 
F F8h!ttT `T0h
 TI:h`Xm hB  
S3hhBl
] # "   	K
J{DXh!hBh , F ! F 8FL|D(8@K(hXhB4T0hJH!X
h2  (F!8@8R 8BKF
F{D-hB$HXhBѣhmmeeBmmee ! F`ii(F!FhiaiN(  F !8@s8޹ -CF0N0K1H~DX3XhhBЈFKC+ItX%h oi !hii F(F- F+i +i!F}(Fai
imi 
F)i )i Fh(Fh!Fiihbhi)Fm8me Fe8F 2 C- h -A$L%K%J|DXXh1hXT0hF (0N !Y7h8F7 "#BF8F)F0hBhBx)уiYhBi +E'
H 0"Xhb ")FF`  `-GF.LF.I|D.NigXAi8`YT2`T `AhT ` !" +Fh"KX   J8h2#xX`jT Ki`XhB3hZmEdH$XM !h  !F
F#hE !  
FF2 Gy  `-AF  FNFF@K~DV  BСhh)F( F	JX F  h:F+FAb pF!MF
F}D	KXhB	 F#( F!p@p  pFM}DKJXhX	h
Bi"hBh ,h +pF!FH+XhB F  p^  8F#M}DZ8U 8@KXhh*,2ݽ8@Ƚ ,H*Xhh (FH*XhF FhB4F *BqBFh + FQ (!
F8@78 8 p
L
KI|DMXbXcYhhhE(*eT@$h+c`p X `-OF9M9K}DU `F (c5H!/X8hFF FYTh @(Fѹ*NYh"`` 
&IjX!h1F0hIE3h#`4`|U0h\IpehX hJ  Xha`}2    ! 
FF> Z   !M  F
FQ "  9hF#   
  8KJ{DXhBFl  l/(8< ,   K	J{D$XS0hh  "``MpG̳ -AFL *Fb'F|D
KXhI0fX2h T0h;F(FQhAFO  KJ{DXhF0 SxI F"yDlP	I F"yDl (     D : |: F0 FC 0  F
F #FpF@#F0F)F:F7F@ $(F1Fz F F8KJ{DXh
L %Yh`h !D$hBF ,L*P8 8   JKzD0Xhh(LXYRP+hMhQYR 	hh
hR'"'
BѫB0h +(̿   0  0L  4KJ{DhXN
hYS\>hhS I[XhB;FicEhB	hiBȿah]lBȿ\dh +h *Ա  0
LK |DX/hxhsI  x`*hcX1h@vN KJ{D-AFXFhFdjMbh[YhhhB F)F( F)F4F,  F92 D9h6ph. #s`  -CFLFFF4K|DXh  FݱIcXh  \hHT
h:a"X`hxa+imi``(F9F:F0FF W(F	J `1hX`   FLF
F|DFvKJTXXhhaT0
`hGa)ihi``(F9F:F\0F0	J
HX`1h"X`@  -OlF
FxDF< +  x ( c HxD	`7	YhBьHxD!Fh +(FkF(F&F H)F[  
60F!FйF~L1F[ 9' hW * ߀PhB7YaOpFD``0F! &``` #  FFu  )@  (dh *a  x+F Vк  /#Qh
  x F(?h`0 x *3 F  !R0 ) >$" !SF 5HxD EF F E
	(F> 6 Ѹ {.;hnZoBEȿp9hKoKEt	 f9hp;ht8hg
 $(7FFhhBړBW`+`hO4,F! Fr 6 6 5 pFG#F*F&HxD
#F$h ,=ahB>"H1FxDx5' ``ihA$ر+hnYoBȿg+h(ZoBXg"f(h$1g(h(!Bg-hg#% 
% F(F  p*O0pB"h4 4 8FXihahW7 +# 8@ۼ  -AF F4M p}D0{0|b(KXhB !` F'F# &697B H*X  h	ohB`h +k * F FtIkXhB FAFJXh+H)X
h`` FAνޫ 4-AF1NFiF~D +Xhl +T /" "l)H1XhFF h *EТB+!i
F h *<ЪB(B'h`*FShB""F(FoiBF8F2(F!F@hBֱ FJX
hBbiB &&h`& IV yD   x2 -CF!NF!KF~DXs !"'hH"1X(F
`}.iNE
AF*FF0Fm	E#h !> 
F F h ! 
FM F!hB  ! 
FF  -ONF	K~DJFXXhhItX$hh hÂBV V0h+mqmhB
ܸ 
|V    ' h -FO	JXh DIrXhH1Xh gi8FO1o PhDHEڸ m#'Je +sOc    BؿG_EF	ZYDH!FmzE)h`ihi	iB!mXE܅Bi +O 	O	_(@ћJX)h	 F hAF RF(Foi'(F9FZO(FYhE ЇOYh:x*i F9i ) gi@}JXh
8O 
 O
hx(0  IFF F    !":ppap0i +wF iih`8F m )oK0k	(FYFo@zh8F # Fcm Шm!keeGbmcemX#Goemee(F F	](F(!' Fp(!pı'J(H(LV7X'H 0Y9`2X4Yh#`q H8` ''` 	$(F!v"+JX&h'`(F !&` EF (V  X-AFFM}D(&KXAhC*HxD    0UP-hhjqob "0F!FFA˽ ~ - FKJ{DIXXX'hhmmO Y'Fh
1 k( B- F Rl>hCm0k|1H@!(< , -OMFKF}DX_>hFHxD" i !!h	
ltU0hBћHxDOYhB`U hB(HxD  H)X
hFB'hG
 FAF2F (7C pxj  xb!JX;hBO 	B F ! ii ){H	h*XhB !O	 
F F F (   a (O 	""a? h  !
FF F (   a (є "h FK!hy# F#a " "k Ft ##ac@ Fk !h>h0h  B 0hB FAF2FX (	U h1`  d FB (?K} (F  BA 0hB FAF2F0 (3 " F2F@F" ! F0;hB%H>`4h*X`$  $"IkXh(8h! "PM"0F  !F 	J Xh !
F F7  K  !Fq(  	~ , 4, , -GF-MF}Dh N)H)X
h *I(HxDG&KX%Hh)X
hB% hIFF F<h pU0hXIjXhK h8 ! ! F FV4F F| (Ѹ H;h)X
hBHxDG  * &* -CFF/L0K|D0NXFhA`YFhFhBѹ (IcXhBi1)l!   h@ 0T hBH!X
hFphT0hBi
hB	i9)l)F  h +F *H2hS3`!X"
`,BнCԠ  -GFMFK}D )F'=,FXhF *P, W', KܭIB y	ܫKB PB@m, <,[
, f
, ߀,^, ,@X, V,k, ,@J, ,@C, , ,&+, -,@3g, %W, R, ܤJ* !S,8T,@_, ρ], Ӂ^,@0b, ߀c,@	Vq,On,5j,~k,@o,Mp,@t, Ār, Vs,@w,Ax,@
0F !}aIyDjPޱ_J
 !!3FzD>ZJ#!3FzD`VI("yDjjQHxDPHxDNHxDNHNI+XjXhhB.ЛFh +sF> .nW,U0hѐh (Fbh )F]=H+Xh Fh )U?z *P6IkXh Fh )H?z *CF /HxD_0F,L,YU
P  +(F@OHF, ( IHF1F2F$h#(hPE9FY F ( 7! F
F0J JX hH+Xh ( #Y!ᵾ ' ;T  %T  "    ،  |  & IHjX+XhhB OY=hhiVhi -i - > .iEi - i , ݀8hB ـhFiBvi !C:hPih9h;h(FYiLE ! F0`iHF!F.aihi0Fai;hmmee5 F!2    9F9LIK,O	O	(JLkXU /Yhh8hBm x "iF !8h   IF:h0F   Fs:H*Xh )_8h!v"  b"FU1JXhm8
.JXhmBp .0FQAhU0`O0`  !-#L/Y:hQ9`U0hD`F ѣF#h:hX `HFQ9`й]Ѿ7JX`O3`g IF
B  Bj\  hChBpG  xGF xGF xGF xGF xGF LxGF xGF ԨxGF |xGF <xGF 0xGF ,xGF xGF DxGF xGF xGF ȫxGF TxGF `xGF ȫxGF xGF DxGF ༫xGF          Android    84P0|tdT|B  dpB  4\B  Pr,`~~A  \ hp
xA  % x8L\(L\ h,$BD4dp `@  *LX,h @p4<x(THT T@,,T0d80
,T>  t&@2R44456\66t77 8/|8h9999:;d;;=0====>X>?>>>?$??@PAjAAAB8C=  DCHCdCCC@DLDDE"E4EGGIIILJjJJJJHKK
0L
LNN<  (O<  `OOOSLTTTT`U
U<  VW,XPXXDYxYYYZZ
<[[[\8\\]]]P^_0b;  Tbfbbbbc(cccdPdxde@eeeee(f:fVfXf4ff`glhhh$i\ii:  i(j\kkktllllXmm"npDpPpLqqr	rssXu`uuv
wy$yPzl{{8|N|9  X|||~?$0	d 9  \	d$$(|ȉ
l	ԍ8̏Џ P
	4ܑhԒؒ@8  Px̔l8  d$P` ؜`Ԟ@Σ8p7  `l,dx2  L,Կh8482Tt	PDh,``	<$ ,42D	8 T,x|
$
lt 	
 p l<8	0(<l  "x"T4  '(((()*d*,-$@246t73  783  8`99x::;3   <<<???GlKKM3  N3  TNOdV3  VW?$iHj0k\loqtt yyxz${{h|}3  ~.܂$Ѓ4Ć,T$d ` t$ؘ24$xܟLl1  Ԡ@̢xT81  XX,` 0  ȮЮlȷȸ80p0  D((TTм4\Ⱦx8(</  L<l,,,/  $$P|@` t\&(d$?hvDH0 $
.  H\$!!P.  !!!"|$$&&'()*D+P-.t.//D000<256@7d9h99l::$;;;< =l==l>>?? @$@L@,  p@ -  @TA0DTDDPEE,  E
@JpJJJJKLXLM(NPNOP$Q$V0W$Z|]t_<aac?{{
@|x|,  |,  ||,  ||H}\~,dȃȄ,Ѕ0+  |lЉP+  X 4+  44`ԏ?Đl +  t xē*  0*  ܔĕ*  ̕4`"l pȣأ8̦4ȫ?,,)  4H`p`<lHT\
 d\lH,8T|t  <
,(    $X%&& '0'8'''(8((()H)l)+++$/0004GpHIIJJKLLMMTPpPpPQQ8RdRSVW``aaabcdPdLdpddd f<ffdj kk4l`lll m$mPm\mm4nxnn`o%  tolpp0qqqrr|s$ttt0uuv@vlv,wdwwxy
zl{$  t{}}(:tth(؆ XLdj0܎#  'ėD#  X8`Ԝ\$hĠء̣PФ@0#  4#  ?L(#  $,#  H4\` #  h( 8"  `@ ,@\, "  DH
<` L\$hfvt
LH@t!  !  !   !  Hd!  n!  z|\v<4\\t<(PlTp$4p`					4

P$l L  :<x,`X "  "  "####$$$$$0&&''43334t4H55?
M@PP Q<Q
QRRHT UU XYZZ  Z,[,[\\\\h]x]]]@^P^\  X^^X   _F_n_v_____$``HaXaaaaaab|btccd ff
h iliidjjjj4l\  llm<mlmmmmmnXoop<pqrrssst,t4tvTvy  yy,zXz{l{{`|||||}<  8}H}}$~*~~~XXP88|  $  .,|ȏܑ Dx8  Ēpl8@@  ̜pޠLhTĥlة   تȫ  0T  p04  d( p    dx@!$h  0,lt,pNtD  \44<DH	   

$@Hh!X"#4'<'<'?+ ,P,P,,,.t.t.h/56J77789<: <@<T<=>,???H@t@@ABDCC  D
QQQ   R   RUdU|  lUUUVVVWWWZZ8[^ aa  bPb  b  b4cdj,k  dkklqr.8 ZXx  Ѕ  0HԆ?|ddh8  Č$  ̌(  T?#ԎЎ  ̐ ܐ   ȑВ   	T  ȕ  ?t    d
 <LԬltЮd0`   L0@
0d  ,hp̺\XBdh8LX  T  64l  X 
X d T\)/135
,	
$
@44T0  4HThp$  4\   ###d$$$&",-$  -02308@888< `??C4F
HHLTLLOPPQ<R?Lzxz||$\lxLPDLpp>(,Ȓ44
 TT@̤?h  Щ\@`d$  Э`<dHdxXpdڸ |( @?"
HHl  ,Ph  t3    @*@pP"x(|
  ?0 hX>H

*X@tp!4!8#
\$d,?<&=?T@@@
  @
  `A
  AAAABC
  C
  C
  C
  C
   D
  <DDFDFhFFlGGG,H`IdII
  IJ
  0JJJKKpMd
  Nh
  U@VZZ
d]^_ aTaXb\bbb ccefxffg	  g	  0ggg:h|h?
lmnHorsPsss
Txx
zzz,{l{{@|T|}"}	  4}	  X},~~~  ,Ԅ   0Xh<xȇ ƈȉ@܊@nx<
B\ܕؖ0    lPġĢ pܣP8ltp PD
\4t                                                                                               ~                                                           /                                                                                                                     ²                                                                                                                                                                                                                                                                                                                                                                                                                                 vi: set modelines set  se  ex: E855: Autocommands caused command to abort E90: Cannot unload last buffer E93: More than one match for %s E94: No matching buffer for %s \(^\|[\/]\) E92: Buffer %ld not found %3d%c%c%c%c%c "%s" line %ld [No Name] %d %d-%d  [Modified]    [+] [Not edited]  [New file] [Read errors] [readonly] [RO] (%d) of %d) %d of %d) buf %d:  "%s%s%s%s%s%s %s 1 line --%d%%-- %ld lines --%d%%-- line %ld of %ld --%d%%-- col  file  All Bot Top %2d%% E95: Buffer with this name already exists W14: Warning: List of file names overflow E83: Cannot allocate buffer, using other one... E82: Cannot allocate any buffer, exiting... E84: No modified buffer found E85: There is no listed buffer E86: Buffer %ld does not exist E87: Cannot go beyond last buffer E88: Cannot go before first buffer E89: No write since last change for buffer %ld (add ! to override) E515: No buffers were unloaded E516: No buffers were deleted E517: No buffers were wiped out 1 buffer unloaded %d buffers unloaded 1 buffer deleted %d buffers deleted 1 buffer wiped out %d buffers wiped out 
 %03d  1i 048 ^ , else <>!*oOe0: r v i   :st
 	 f_type() f_empty() %dresize %d| function(' <SNR> E112: Option name missing: %s E113: Unknown option: %s SID> SNR> autoload/ .vim func_free() () E743: variable nested too deep for (un)lock %ld E729: using Funcref as a String E730: using List as a String E731: using Dictionary as a String get_tv_string_buf() E655: Too many symbolic links (cycle?) ./ vim_starting multi_byte_encoding syntax_items patch file dir link bdev cdev fifo other --------- E701: Invalid type for len() Unknown E741: Value is locked: %s E742: Cannot change value of %s E461: Illegal variable name: %s tv2string() [...] {...} {E724} E724: variable nested too deep for displaying ,  :  echo_string() w: t: s: l: b: changedtick Double ; in list of variables <empty> E686: Argument of %s must be a List writefile() b w b:changedtick restore_vimvar() called inputrestore() more often than inputsave() inputlist() "'+-*/%.=!?~|&$([<>,# g: E684: list index out of range: %ld reverse() reverse() argument E715: Dictionary required tv_equal()  ++bin  ++nobin  ++edit  ++ff=%s  ++enc=%s  ++bad=keep  ++bad=drop  ++bad=%c E703: Using a Funcref as a Number E745: Using a List as a Number E728: Using a Dictionary as a Number get_tv_number() [\x01- ]\+ E726: Stride is zero E727: Start past end p E712: Argument of %s must be a List or Dictionary matchaddpos() E798: ID is reserved for ":match": %ld E714: List required count() (Invalid) nvo lnum col curswant topline leftcol skipcol group pattern priority id $ # ( ) func_unref() clear_tv() dictitem_remove() E118: Too many arguments for function: %s remove() remove() argument E716: Key not present in Dictionary: %s synced seq_last save_last seq_cur time_cur save_cur entries lhs rhs noremap expr silent sid buffer nowait mode pos%d E677: Error writing temp file E795: Cannot delete variable %s E108: No such variable: "%s" free_tv() func_ref() copy_tv() get() E698: variable nested too deep for making a copy item_copy() E132: Function call depth is higher than 'maxfuncdepth' self 0 000 firstline lastline function  %s.. calling %s %s aborted %s returning #%ld %s returning %s continuing in %s %ld_ E117: Unknown function: %s E119: Not enough arguments for function: %s E120: Using <SID> not in a script context: %s E725: Calling dict function without Dictionary: %s sort() uniq() sort() argument uniq() argument n E702: Sort compare function failed E882: Uniq compare function failed E121: Undefined variable: %s E699: Too many arguments E734: Wrong variable type for %s= insert() insert() argument add() argument E695: Cannot index a Funcref E111: Missing ']' E719: Cannot use [:] with a Dictionary E713: Cannot use empty key for Dictionary E696: Missing comma in List: %s E697: Missing end of List ']': %s E720: Missing colon in Dictionary: %s E721: Duplicate key in Dictionary: "%s" E722: Missing comma in Dictionary: %s E723: Missing end of Dictionary '}': %s E110: Missing ')' E114: Missing quote: %s E115: Missing quote: %s E691: Can only compare List with List E692: Invalid operation for List E735: Can only compare Dictionary with Dictionary E736: Invalid operation for Dictionary E693: Can only compare Funcref with Funcref E694: Invalid operation for Funcrefs E109: Missing ':' after '?' E690: Missing "in" after :for \(%s\m\)\|\(%s\m\) \(%s\m\)\|\(%s\m\)\|\(%s\m\) E740: Too many arguments for function %s E116: Invalid arguments for function %s E689: Can only index a List or Dictionary E708: [:] must come last E709: [:] requires a List value E129: Function name required E718: Funcref required E128: Function name must start with a capital or "s:": %s E884: Function name cannot contain a colon: %s wbst E704: Funcref variable name must start with a capital: %s E705: Variable name conflicts with existing function: %s E700: Unknown function: %s <SID> <SNR>%ld_ E130: Unknown function: %s E131: Cannot delete function %s: It is in use E786: Range not allowed E107: Missing parentheses: %s E706: Variable type mismatch for: %s set_var() searchforward hlsearch E737: Key already exists: %s force extend() argument extend() map() map() argument filter() filter() argument E711: List value has not enough items E710: List value has more items than target E18: Unexpected characters in :let HOME VIM VIMRUNTIME E687: Less targets than List items E688: More targets than List items ,;] ] ex_let_vars() +-. v: E738: Can't list variables for %s . = E133: :return not inside a function :return  ... 
	Last set from       abort  range  dict    endfunction E123: Undefined function: %s E124: Missing '(': %s E862: Cannot use g: here E125: Illegal argument: %s E853: Duplicate argument name: %s range dict abort E717: Dictionary entry already exists E122: Function %s already exists, add ! to replace it E126: Missing :endfunction endfunction end if wh for try function E707: Function name conflicts with variable: %s E127: Cannot redefine function %s: It is in use E746: Function name does not match script file name: %s No old files g count count1 prevcount errmsg warningmsg statusmsg shell_error this_session version termresponse fname lang lc_time ctype charconvert_from charconvert_to fname_in fname_out fname_new fname_diff cmdarg foldstart foldend folddashes foldlevel progname servername dying exception throwpoint register cmdbang insertmode val key profiling fcs_reason fcs_choice beval_bufnr beval_winnr beval_lnum beval_col beval_text scrollstart swapname swapchoice swapcommand char mouse_win mouse_lnum mouse_col operator oldfiles windowid progpath add and append argc argidx arglistid argv browse browsedir bufexists buffer_exists buffer_name buffer_number buflisted bufloaded bufname bufnr bufwinnr byte2line byteidx byteidxcomp call changenr char2nr cindent clearmatches confirm copy cscope_connection cursor deepcopy delete did_filetype diff_filler diff_hlID empty escape eval eventhandler executable exepath exists expand extend feedkeys file_readable filereadable filewritable filter finddir findfile fnameescape fnamemodify foldclosed foldclosedend foldtext foldtextresult foreground garbagecollect get getbufline getbufvar getchar getcharmod getcmdline getcmdpos getcmdtype getcurpos getcwd getfontname getfperm getfsize getftime getftype getline getloclist getmatches getpid getpos getqflist getreg getregtype gettabvar gettabwinvar getwinposx getwinposy getwinvar glob globpath has has_key haslocaldir hasmapto highlightID highlight_exists histadd histdel histget histnr hlID hlexists hostname iconv indent index input inputdialog inputlist inputrestore inputsave inputsecret insert invert isdirectory islocked items join keys last_buffer_nr len libcall libcallnr line line2byte lispindent localtime map maparg mapcheck match matchadd matchaddpos matcharg matchdelete matchend matchlist matchstr max min mkdir nextnonblank nr2char or pathshorten prevnonblank printf pumvisible readfile reltime reltimestr remote_expr remote_foreground remote_peek remote_read remote_send remove rename repeat resolve reverse screenattr screenchar screencol screenrow search searchdecl searchpair searchpairpos searchpos server2client serverlist setbufvar setcmdpos setline setloclist setmatches setpos setqflist setreg settabvar settabwinvar setwinvar shellescape shiftwidth simplify sort soundfold spellbadword spellsuggest split str2nr strchars strdisplaywidth strftime stridx string strlen strpart strridx strtrans strwidth submatch substitute synID synIDattr synIDtrans synconcealed synstack system systemlist tabpagebuflist tabpagenr tabpagewinnr tagfiles taglist tempname test tolower toupper tr type undofile undotree uniq values virtcol visualmode wildmenumode winbufnr wincol winheight winline winnr winrestcmd winrestview winsaveview winwidth writefile xor unix fname_case acl autocmd builtin_terms cmdline_compl cmdline_hist comments ex_extra extra_search filterpipe fork jumplist listcmds multi_byte showcmd cmdline_info syntax terminfo tgetent user-commands user_commands visual wildignore windows writebackup keep error E143: Autocommands unexpectedly deleted new buffer %s E505: "%s" is read-only (add ! to override) > %d, Hex %04x, Octal %o > %d, Hex %08x, Octal %o NUL   <%s>   <M-%s> <%s>%s%s  %d,  Hex %02x,  Octal %03o E134: Move lines into themselves 1 line moved %ld lines moved  %s%s fish begin; %s; end (%s)  <    kb kD %*ld  E768: Swap file exists: %s (:silent! overrides) E142: File not written: Writing is disabled by 'write' option E141: No file name for buffer %ld E140: Use ! to write partial buffer filetypedetect filetypedetect BufRead :%s
 %ldG !-~,^*,^|,^",192-255 isk E144: non-numeric argument to :z E145: Shell commands not allowed in rvim [No write since last change]
 %# > %ld lines filtered E135: *Filter* Autocommands must not change current buffer 1 match 1 substitution %ld matches %ld substitutions (Interrupted)   on 1 line  on %ld lines 0123456789cegriIp|" E146: Regular expressions can't be delimited by letters /?& % \n replace with %s (y/n/a/q/l/^E/^Y)? E147: Cannot do :global recursive E148: Regular expression missing from global Pattern found in every line: %s Pattern not found: %s /\\ %_z@ \$ bar quote ?@[\]^ CTRL- CTRL-\_ CTRL-\\ help.txt E478: Don't panic! E149: Sorry, no help for %s Sorry, help file "%s" not found utf-8 latin1 ft help *local-additions* doc/*.txt help ex-cmd-index help normal-index ++t E150: Not a directory: %s /**/* .txt E151: No match: %s tags E152: Cannot open %s for writing $VIMRUNTIME/doc help-tags	%s	1
 E153: Unable to open %s for reading E670: Mix of help file encodings within a language: %s  	

 %s	%s E154: Duplicate tag "%s" in file %s/%s !_TAG_FILE_ENCODING	utf-8	//
 help-tags	 %s	/* *
 * g* [* ]* :* /* /\* "* ** cpo-* /\(\) /\%(\) ? :? ?<CR> g? g?g? g?? z? /\? /\z(\) \= :s\= [count] [quotex] [range] [pattern] \| \%$ s/\~ s/\U s/\L s/\1 s/\2 s/\3 s/\9 star gstar [star ]star :star /star /\\star quotestar starstar cpo-star /\\(\\) /\\%(\\) /\\? /\\z(\\) \\= :s\\= \[count] \[quotex] \[range] \[pattern] \\bar /\\%\$ s/\\\~ s/\\U s/\\L s/\\1 s/\\2 s/\\3 s/\\9 locale -a func here LC_ALL LC_MESSAGES LANG ont ext tep inish uit nterrupt Entering Debug mode.  Type "cont" to continue. line %ld: %s cmd: %s Breakpoint in "%s%s" line %ld E161: Breakpoint not found: %s No breakpoints defined %3d  %s %s  line %ld Warning: Entered other buffer unexpectedly (check autocommands) E162: No write since last change for buffer "%s" E163: There is only one file to edit E164: Cannot go before first file E165: Cannot go beyond last file ,Syntax shm Searching for "%s" in "%s" 	  Searching for "%s" not found in 'runtimepath': "%s" echo globpath(&rtp, 'compiler/*.vim') command -nargs=* CompilerSet set <args> g:current_compiler command -nargs=* CompilerSet setlocal <args> b:current_compiler compiler/%s.vim E666: compiler not supported: %s :delcommand CompilerSet Cannot source a directory: "%s" vimrc gvimrc exrc could not source "%s" line %ld: could not source "%s" sourcing "%s" line %ld: sourcing "%s" MYVIMRC MYGVIMRC finished sourcing %s $VIMRUNTIME/optwin.vim %3d: %s modeline --cmd argument -c argument environment variable error handler E167: :scriptencoding used outside of a sourced file E168: :finish used outside of a sourced file messages  ctype  time  messages time Current %slanguage: "%s" E197: Cannot set language to "%s" LANGUAGE E319: Sorry, the command is not available in this version E196: No digraphs in this version E184: No such user-defined command: %s No swap file lp# E188: Obtaining window position not implemented for this platform E466: :winpos requires two number arguments E465: :winsize requires two number arguments Tab page %d E173: 1 more file to edit E173: %ld more files to edit Greetings, Vim user! ON OFF (on) filetype detection:%s  plugin:%s  indent:%s plugin on detect filetype.vim ftplugin.vim indent.vim off ftplugof.vim indoff.vim ftoff.vim @*!=><&~# <a0> E187: Unknown filetype mswin selection exclusive selectmode mouse,key mousemodel popup keymodel startsel,stopsel xterm inclusive E191: Argument must be a letter or forward/backward quote g:colors_name default E185: Cannot find color scheme '%s'  	0123456789.$%'/?-+,; none  	:| cgriI |" complete nargs |"# |"
 E468: Completion argument only allowed for custom completion E467: Custom completion requires a function argument E180: Invalid complete value: %s E175: No attribute specified bang E176: Invalid number of arguments E177: Count cannot be specified twice E178: Invalid default value for count E179: argument required for -complete E181: Invalid attribute: %s E182: Invalid command name 
    Name        Args Range Complete  Definition %ldc No user-defined commands found E183: User defined commands must start with an uppercase letter Next E841: Reserved name, cannot be used for user defined command E174: Command already exists: add ! to replace it Already only one tab page E784: Cannot close last tab page E747: Cannot change directory, buffer is modified (add ! to override) - E186: No previous directory $HOME E739: Cannot create directory: %s E189: "%s" exists (add ! to override) E190: Cannot open "%s" for writing a END E192: Recursive use of :normal too deep E194: No alternate file name to substitute for '#' E495: no autocommand file name to substitute for "<afile>" E496: no autocommand buffer number to substitute for "<abuf>" E497: no autocommand match name to substitute for "<amatch>" E498: no :source file name to substitute for "<sfile>" E842: no line number to use for "<slnum>" E499: Empty file name for '%' or '#', only works with ":p:h" E500: Evaluates to an empty string %#< ! E172: Only one file name allowed + aboveleft belowright botright keepmarks keepalt keeppatterns keepjumps hide lockmarks leftabove noautocmd ei all noswapfile rightbelow sandbox tab topleft unsilent vertical verbose E464: Ambiguous use of user-defined command E492: Not an editor command E493: Backwards range given Backwards range given, OK to swap bin nobin binary edit ff fileformat enc encoding bad drop E494: Use w or w>> qQfF args> bang> count> line1> line2> lt> reg> register> '' End of sourced file End of function E169: Command too recursive E605: Exception not caught: %s tabn Entering Ex mode.  Type "visual" to go to Normal mode. E501: At end-of-file <sfile> .vimrc .exrc version 6.0 if !&cp | set cp | endif if &cp | set nocp | endif " vim: set ft=vim : abbreviate abclear amenu anoremenu args argadd argdelete argdo argedit argglobal arglocal argument ascii augroup aunmenu bNext ball badd bdelete behave bfirst blast bmodified bnext bprevious brewind break breakadd breakdel breaklist buffers bufdo bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile catch cbuffer cc cclose cd center cexpr cfile cfirst cgetfile cgetbuffer cgetexpr chdir changes checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu colder colorscheme command comclear compiler continue copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delmarks debug debuggreedy delcommand delfunction display diffupdate diffget diffoff diffpatch diffput diffsplit diffthis digraphs djump dlist doautocmd doautoall dsearch dsplit earlier echo echoerr echohl echomsg echon elseif emenu endif endfor endtry endwhile enew ex execute exit exusage files find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen global goto grep grepadd gui gvim helpfind helpgrep helptags hardcopy highlight history iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu jumps k list lNext lNfile last language laddexpr laddbuffer laddfile later lbuffer lcd lchdir lclose lcscope left let lexpr lfile lfirst lgetfile lgetbuffer lgetexpr lgrep lgrepadd lhelpgrep ll llast llist lmap lmapclear lmake lnoremap lnext lnewer lnfile loadview loadkeymap lockvar lolder lopen lprevious lpfile lrewind ltag lunmap lua luado luafile lvimgrep lvimgrepadd lwindow ls move mark make mapclear marks menu menutranslate mkexrc mksession mkspell mkvimrc mkview mzscheme mzfile next nbkey nbclose nbstart new nmap nmapclear nmenu nnoremap nnoremenu nohlsearch noreabbrev noremenu normal number nunmap nunmenu open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print pclose perl perldo pedit pop ppop preserve previous promptfind promptrepl profile profdel psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd python pydo pyfile py3 py3do python3 py3file quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right runtime ruby rubydo rubyfile rundo rviminfo sNext sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope setfiletype setglobal setlocal sfind sfirst shell simalt sign sleep slast smagic smap smapclear smenu snext sniff snomagic snoremap snoremenu source spellgood spelldump spellinfo spellrepall spellundo spellwrong sprevious srewind stop stag startinsert startgreplace startreplace stopinsert stjump stselect sunhide sunmap sunmenu suspend sview syntime syncbind t tNext tag tabclose tabdo tabedit tabfind tabfirst tabmove tablast tabnext tabnew tabonly tabprevious tabNext tabrewind tabs tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu update vglobal view vimgrep vimgrepadd viusage vmap vmapclear vmenu vnoremap vnew vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd windo winpos wnext wprevious wq wqall wsverb wundo wviminfo xit xall xmap xmapclear xmenu xnoremap xnoremenu xunmap xunmenu yank z & < @ Print X ~ color custom customlist environment event expression file_in_path locale mapping option shellcmd tag_listfiles user var 1 <cword> <cWORD> <cfile> <slnum> <afile> <abuf> <amatch> %s made pending %s resumed %s discarded :continue :break :finish Error and interrupt Error Interrupt Exception : %s Exception finished: %s Exception discarded: %s Vim( ): Vim:  (%s) Vim E608: Cannot :throw exceptions with 'Vim' prefix Exception thrown: %s Vim E E579: :if nesting too deep E585: :while/:for nesting too deep E601: :try nesting too deep %s, line %ld Vim:Interrupt E581: :else without :if E582: :elseif without :if E583: multiple :else E584: :elseif after :else E580: :endif without :if E587: :break without :while or :for E606: :finally without :try E607: multiple :finally .* E603: :catch without :try E604: :catch after :finally Exception caught: %s E732: Using :endfor with :while E733: Using :endwhile with :for E586: :continue without :while or :for E602: :endtry without :try E193: :endfunction not inside a function :=@>?/ *?[ E811: Not allowed to change buffer information now E788: Not allowed to edit another buffer now           	
*?[{`$\%#'"|!<>();&  	
*?[{`$\%#'"|!< \|"  	\. %s/%s*.vim PATH colors tagname  kind file
 \^$.*[ \^$ 'history' option is zero :=@>/? 
      #    history %c%6d   ftplugin cmd E215: Illegal character after *: %s E216: No such event: %s E216: No such group or event: %s [noeol] [Incomplete last line] --Deleted--    [dos] [dos format] [mac] [mac format] e ++ff=%s ++enc=%s fenc -stdin- "  %ldL, %ldC 1 line,  %ld lines,  1 character %ld characters %s* vXXXXXX %s%ld auto-removing autocommand: %s <buffer=%d> E367: No such group: "%s" <nomodeline> <buffer> %s Auto commands for "%s" Executing %s autocommand %s E218: autocommand nesting too deep E217: Can't execute autocommands for ALL events No matching autocommands E812: Autocommands changed buffer or buffer name E219: Missing {. E220: Missing }. <buffer <buffer=abuf> E680: <buffer=%d>: invalid buffer number  <buffer=%d> nested 
--- Auto-Commands --- [Permission Denied] [File too big] ucs-2le can't read output of 'charconvert' Conversion with 'charconvert' failed Can't find temp file for conversion ucs-2 ucs-4 utf-16 utf-16le ucs-4le Illegal file name is a directory is not a file [New File] [New DIRECTORY] E200: *ReadPre autocommands made the file unreadable E201: *ReadPre autocommands must not change current buffer Vim: Reading from stdin... ucs-bom E202: Conversion made file unreadable! [fifo/socket] [CR missing] [NOT converted] [converted] [CONVERSION ERROR in line %ld] [ILLEGAL BYTE in line %ld] [READ ERRORS] E462: Could not prepare for reloading "%s" E321: Could not reload "%s" deleted conflict changed E211: File "%s" no longer available See ":help W12" for more info. W12: Warning: File "%s" has changed and the buffer was changed in Vim as well See ":help W11" for more info. W11: Warning: File "%s" has changed since editing started See ":help W16" for more info. W16: Warning: Mode of file "%s" has changed since editing started W13: Warning: File "%s" has been created after editing started E246: FileChangedShell autocommand deleted buffer reload ask ;  E208: Error writing to "%s" E209: Error closing "%s" E210: Error reading "%s" .bak E506: Can't write to backup file (add ! to override) E507: Close error for backup file (add ! to override) E508: Can't read file for backup (add ! to override) E504:  is read-only (cannot override: "W" in 'cpoptions') E510: Can't make backup file (add ! to override) E166: Can't open linked file for writing E212: Can't open file for writing E214: Can't find temp file for writing E213: Cannot convert (add ! to write without conversion) E667: Fsync failed E512: Close failed E514: write error (file system full?) E513: write error, conversion failed (make 'fenc' empty to override) [New]  [a]  appended  [w]  written E502:  E503:  is not a file or writable device E505:  is read-only (add ! to override) E509: Cannot create backup file (add ! to override) E203: Autocommands deleted or unloaded buffer to be written E204: Autocommand changed number of lines in unexpected way E513: write error, conversion failed in line %ld (make 'fenc' empty to override)  CONVERSION ERROR  in line %ld; [Device] E205: Patchmode: can't save original file E206: patchmode: can't touch empty original file E207: Can't delete backup file 
WARNING: Original file may be lost or damaged
 don't quit the editor until the file is successfully written! WARNING: The file has been changed since reading it!!! Do you really want to write to it BufAdd BufCreate BufDelete BufEnter BufFilePost BufFilePre BufHidden BufLeave BufNew BufNewFile BufRead BufReadCmd BufReadPost BufReadPre BufUnload BufWinEnter BufWinLeave BufWipeout BufWrite BufWritePost BufWritePre BufWriteCmd CmdwinEnter CmdwinLeave ColorScheme CompleteDone CursorHold CursorHoldI CursorMoved CursorMovedI EncodingChanged FileEncoding FileAppendPost FileAppendPre FileAppendCmd FileChangedShell FileChangedShellPost FileChangedRO FileReadPost FileReadPre FileReadCmd FileType FileWritePost FileWritePre FileWriteCmd FilterReadPost FilterReadPre FilterWritePost FilterWritePre FocusGained FocusLost FuncUndefined GUIEnter GUIFailed InsertChange InsertEnter InsertLeave InsertCharPre MenuPopup QuickFixCmdPost QuickFixCmdPre QuitPre RemoteReply SessionLoadPost ShellCmdPost ShellFilterPost SourcePre SourceCmd SpellFileMissing StdinReadPost StdinReadPre SwapExists Syntax TabEnter TabLeave TermChanged TermResponse TextChanged TextChangedI User VimEnter VimLeave VimLeavePre WinEnter WinLeave VimResized $TMPDIR /tmp E222: Add to read buffer 048 " AaIiRrOo Free typebuf 1 Free typebuf 2 <unique> <nowait> <silent> <script> <expr> paste E223: recursive mapping X <Nop> <special> <nop> E226: abbreviation already exists for %s E227: mapping already exists for %s No abbreviation found No mapping found \
 <NL> abbr map! E228: makemap: Illegal mode let s:cpo_save=&cpo set cpo&vim nore  <buffer>  <nowait>  <silent>  <expr> let &cpo=s:cpo_save unlet s:cpo_save mappings hash_add() : " 
More info with: "vim -h"
 

usage:  vim [arguments]  
   or: 

Arguments: --			Only file names after this -v			Vi mode (like "vi") -e			Ex mode (like "ex") -E			Improved Ex mode -s			Silent (batch) mode (only for "ex") -y			Easy mode (like "evim", modeless) -R			Readonly mode (like "view") -Z			Restricted mode (like "rvim") -m			Modifications (writing files) not allowed -M			Modifications in text not allowed -b			Binary mode -C			Compatible with Vi: 'compatible' -N			Not fully Vi compatible: 'nocompatible' -V[N][fname]		Be verbose [level N] [log messages to fname] -D			Debugging mode -n			No swap file, use memory only -r			List swap files and exit -r (with file name)	Recover crashed session -L			Same as -r -T <terminal>	Set terminal type to <terminal> -u <vimrc>		Use <vimrc> instead of any .vimrc --noplugin		Don't load plugin scripts -p[N]		Open N tab pages (default: one for each file) -o[N]		Open N windows (default: one for each file) -O[N]		Like -o but split vertically +			Start at end of file +<lnum>		Start at line <lnum> --cmd <command>	Execute <command> before loading any vimrc file -c <command>		Execute <command> after loading the first file -S <session>		Source file <session> after loading the first file -s <scriptin>	Read Normal mode commands from file <scriptin> -w <scriptout>	Append all typed commands to file <scriptout> -W <scriptout>	Write all typed commands to file <scriptout> -h  or  --help	Print Help (this message) and exit --version		Print version information and exit Session.vim -- -nb '-nb' cannot be used: not enabled at compile time
 vim diff This Vim was not compiled with the diff feature. im literal nofork noplugin startuptime verbosefile window so %s Attempt to open script file again: " "
 Cannot open for reading: " Cannot open for script output: " Vim: Warning: Input is not from a terminal
 Vim: Warning: Output is not to a terminal
 %d files to edit
 pre-vimrc command line $VIMRUNTIME/evim.vim NONE NORC E282: Cannot read from "%s" /system/etc/vimrc VIMINIT $HOME/.vimrc ~/.vim/vimrc EXINIT $HOME/.exrc plugin/**/*.vim ta %s command line  	\"| [file ..]       edit specified file(s) -               read text from stdin -t tag          edit file where tag is defined Unknown option argument Too many edit arguments Argument missing after Garbage after option argument Too many "+command", "-c command" or "--cmd command" arguments Invalid argument for -invalid- ~/ No marks set E283: No marks matching "%s" 
mark line  col file/text  %c %6ld %4d  
 jump line  col file/text %c %2d %5ld %4d  
> 
change line  col text %c %3d %5ld %4d  2byte- 8bit- iso-8859- iso-8859-15 fencs ucs-bom,utf-8,default,latin1 +  %02x  microsoft-cp iso8859 iso-8859 latin- LC_CTYPE EUC euc- iso-8859-2 iso-8859-3 iso-8859-4 iso-8859-5 iso-8859-6 iso-8859-7 iso-8859-8 iso-8859-9 iso-8859-10 iso-8859-11 iso-8859-13 iso-8859-14 koi8-r koi8-u euc-jp sjis euc-kr euc-cn euc-tw big5 cp437 cp737 cp775 cp850 cp852 cp855 cp857 cp860 cp861 cp862 cp863 cp865 cp866 cp869 cp874 cp932 cp936 cp949 cp950 cp1250 cp1251 cp1253 cp1254 cp1255 cp1256 cp1257 cp1258 macroman dec-mcs hp-roman8 ansi iso-8859-1 latin2 latin3 latin4 cyrillic arabic greek hebrew latin5 turkish latin6 nordic thai latin7 latin8 latin9 utf8 unicode ucs2 ucs2be ucs-2be ucs2le utf16 utf16be utf-16be utf16le ucs4 ucs4be ucs-4be ucs4le utf32 utf-32 utf32be utf-32be utf32le utf-32le 932 949 936 gbk 950 eucjp unix-jis ujis shift-jis euckr 5601 euccn gb2312 euctw japan korea prc chinese taiwan mac mac-roman %s: %s E296: Seek error in swap file write E297: Write error in swap file E294: Seek error in swap file read E295: Read error in swap file E293: block was not locked fsync E300: Swap file already exists (symlink attack?) E317: pointer block id wrong 2 E317: pointer block id wrong E322: line number out of range: %ld past the end E323: line count wrong in block %ld .sw? E317: pointer block id wrong 3 E318: Updated too many blocks? E304: ml_upd_block0(): Didn't get block 0?? YES no           owned by:     dated:               dated:  (invalid)
 VIM 3.0          [from Vim version 3.0]          [does not look like a Vim swap file] 
          modified:  
         user name:     host name:  
         host name:  
        process ID:   (still running) 
         [not usable on this computer]          [cannot be read]          [cannot be opened]          file name:  E298: Didn't get block nr 0? VIM  E298: Didn't get block nr 1? E298: Didn't get block nr 2? E317: pointer block id wrong 4 E320: Cannot find line %ld E315: ml_get: invalid lnum: %ld ??? E316: ml_get: cannot find line %ld E313: Cannot preserve, there is no swap file File preserved E314: Preserve failed E773: Symlink loop for "%s" Swap files found: *.sw? .*.sw? .swp    In current directory:
    Using specified name:
    In directory  :
 .           -- none --
 .s UVWuvw E305: No swap file found for %s Enter number of swap file to use (0 to quit):  E306: Cannot open %s Unable to read block 0 from  
Maybe no changes were made or Vim did not update the swap file.  cannot be used with this version of Vim.
 Use Vim version 3.0.
 E307: %s does not look like a Vim swap file  cannot be used on this computer.
 The file was created on  ,
or the file has been damaged. E833: %s is encrypted and this version of Vim does not support encryption  has been damaged (page size is smaller than minimum value).
 Using swap file "%s" Original file "%s" E308: Warning: Original file may have been changed E309: Unable to read block 1 from %s ???MANY LINES MISSING ???LINE COUNT WRONG ???EMPTY BLOCK E310: Block 1 ID wrong (%s not a .swp file?) ???BLOCK MISSING ??? from here until ???END lines may be messed up ??? from here until ???END lines may have been inserted/deleted ???END E311: Recovery Interrupted >>>>>>>>>>>>> E312: Errors detected while recovering; look for lines starting with ??? See ":help E312" for more information. Recovery completed. You should check if everything is OK. 
(You might want to write out this file under another name
 and run diff with the original file to check for changes) Recovery completed. Buffer contents equals file contents. 
You may want to delete the .swp file now.

 ???LINES MISSING E325: ATTENTION 
Found a swap file by the name " While opening file "       NEWER than swap file!
 
(1) Another program may be editing the same file.  If this is the case,
    be careful not to end up with two different instances of the same
    file when making changes.   Quit, or continue with caution.
 (2) An edit session for this file crashed.
     If this is the case, use ":recover" or "vim -r  "
    to recover the changes (see ":help recovery").
     If you did this already, delete the swap file " "
    to avoid this message.
 E326: Too many swap files found E303: Unable to open swap file for "%s", recovery impossible E301: Oops, lost the swap file!!! E302: Could not rename swap file Error detected while processing %s: line %4ld: E354: Invalid register name: '%s' -- More --  SPACE/d/j: screen/page/line down, b/u/k: up, q: quit  [NULL] E767: Too many arguments to printf() %s line %ld <Space> Interrupt:  Press ENTER or type command to continue 
  Messages maintainer: Bram Moolenaar <Bram@vim.org> E766: Insufficient arguments for printf() =;{}"' static struct enum unsigned signed int long short namespace class do indentexpr W10: Warning: Changing a readonly file %s (y/n)?   Type number and <Enter> or click with mouse (empty cancels):  Type number and <Enter> (empty cancels):  1 more line 1 line less %ld more lines %ld fewer lines  (Interrupted) Beep! :p / vim74 doc  ,	
  	 case public protected private typedef { : }; [ } ; Vim: preserving files...
 Vim: Finished.
 ., `'{ *?[{~$ /** csh char- dos E342: Out of memory!  (allocating %lu bytes) E341: Internal error: lalloc(%ld, ) )" Calling shell to execute: "%s" "( Space Tab NL NewLine LineFeed LF CR Return Enter BS BackSpace Esc CSI xCSI Bar Bslash Del Delete kDel Up Down Left Right xUp xDown xLeft xRight F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15 F16 F17 F18 F19 F20 F21 F22 F23 F24 F25 F26 F27 F28 F29 F30 F31 F32 F33 F34 F35 F36 F37 xF1 xF2 xF3 xF4 Help Undo Insert Ins kInsert Home kHome xHome zHome End kEnd xEnd zEnd PageUp PageDown kPageUp kPageDown kPlus kMinus kDivide kMultiply kEnter kPoint k0 k1 k2 k3 k4 k5 k6 k7 k8 k9 lt Mouse LeftMouse LeftMouseNM LeftDrag LeftRelease LeftReleaseNM MiddleMouse MiddleDrag MiddleRelease RightMouse RightDrag RightRelease ScrollWheelUp ScrollWheelDown ScrollWheelRight ScrollWheelLeft MouseDown MouseUp X1Mouse X1Drag X1Release X2Mouse X2Drag X2Release Drop Nul SNR Plug            '<,'> .+ fmt 
'] x q! xXDCsSY& ,.+ E664: changelist is empty E662: At start of changelist E663: At end of changelist Warning: terminal cannot highlight E348: No string under cursor E349: No identifier under cursor %ldx%ld st Type  :quit<Enter>  to exit Vim !
 E774: 'operatorfunc' is empty block {(*/#mM })*/#mM <20> +
t.z^-b \V\<%.*s\> \V%.*s /^$\ /?^$\ \|"
[ \|"
*?[ /?.*~[^$\ /.*~[^$\ :he :help \< he!  man man -s .,.+%ld !  ts  tj  %ldta  \> %s//~/& dl dh d$ c$ cl yy :s
 %ld lines to indent...  1 line indented  %ld lines indented  /.%#:= E748: No previously used register 	

 
 1 line changed %ld lines changed block of 1 line yanked 1 line yanked block of %ld lines yanked %ld lines yanked E353: Nothing in register %s 1 line %sed 1 time 1 line %sed %d times %ld lines %sed 1 time %ld lines %sed %d times 
--- Registers --- ^J 
".    
":    
"%    
"#    
"/    
"=    cannot yank; delete anyway formatexpr %lu %lo %lX %lx E883: search pattern and expression register may not contain two or more lines %ld Cols;  Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Chars; %ld of %ld Bytes Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld Col %s of %s; Line %ld of %ld; Word %ld of %ld; Char %ld of %ld; Byte %ld of %ld (+%ld for BOM) longest full E356: get_varp ERROR light dark linux screen.linux cygwin putty COLORFGBG 
--- Terminal codes --- 
--- Global option values --- 
--- Local option values --- 
--- Options --- srr tcsh >& sh ksh mksh pdksh zsh zsh-beta bash >%s 2>&1 was_set_insecurely() set_string_option_direct() E538: No mouse support E525: Zero length string E524: Missing colon E834: Conflicts with value of 'listchars' E589: 'backupext' and 'patchmode' are equal E522: Not found in termcap E529: Cannot set 'term' to empty string E835: Conflicts with value of 'fillchars' /\*?[|<> nbsmexflrO E539: Illegal character <%s> bshl<>[],~ rmfixlnwaWtToOsAIc aAbBcCdDeEfFgHiIjJkKlLmMnoOpPqrRsStuvwWxXyZ$!%*-+<>#{|&/\.; tcroq2vlb1mMBn,awj hl %s %s%s %s %s= if &%s != '%s' ma novice inv rmfixlnw cp E593: Need at least %d lines E594: Need at least %d columns scroll bg unix,dos s ffs y E355: Unknown option: %s E521: Number required: &%s = '%s' E518: Unknown option E520: Not allowed in a modeline E846: Key code not set E521: Number required after = E519: Option not supported termcap =:!&< ?=:!&< ?!&< =:&< indent,eol indent,eol,start b, s, h,l, <,>, [,], VIM_POSIX cpo A SHELL bsk maxmemtot maxmem gb18030 TMPDIR TEMP TMP aleph al antialias anti arab arabicshape arshape allowrevins ari altkeymap akm ambiwidth ambw single autoindent ai autoprint ap autoread ar autowrite aw autowriteall awa background backspace bs backup bk backupcopy bkc yes auto backupdir bdir .,~/tmp,~/ backupext bex backupskip beautify bf bioskey biosk bomb breakat brk breakindent bri breakindentopt briopt bsdir bufhidden bh bl buftype bt casemap cmp internal,keepascii cdpath cedit charconvert ccv cin cinkeys cink 0{,0},0),:,0#,!^F,o,O,e cinoptions cino cinwords cinw if,else,while,do,for,switch clipboard cb cmdheight ch cmdwinheight cwh colorcolumn columns co com s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:- commentstring cms compatible cpt concealcursor cocu conceallevel cole completefunc cfu completeopt cot cf conskey consk copyindent ci cpoptions aAbBcCdDeEfFgHiIjJkKlLmMnoOpPqrRsStuvwWxXyZ$!%*-+<>; aABceFs cryptmethod cm cscopepathcomp cspc cscopeprg csprg cscopequickfix csqf cscoperelative csre cscopetag cst cscopetagorder csto cscopeverbose csverb cursorbind crb cursorcolumn cuc cursorline cul define def delcombine deco dictionary diffexpr dex diffopt dip digraph dg directory .,~/tmp,/var/tmp,/tmp dy eadirection ead edcompatible ed endofline eol equalalways ea equalprg ep errorbells eb errorfile ef errorformat efm esckeys ek eventignore expandtab et fileencoding fileencodings fileformats fileignorecase fic fillchars fcs vert:|,fold:- fkmap fk flash fl fex formatoptions fo vt tcq formatlistpat flp ^\s*\d\+[\]:.)}\t ]\s* formatprg fp fs gdefault gd graphic gr grepformat gfm grepprg gp guicursor gcr guifont gfn guifontset gfs guifontwide gfw guiheadroom ghr guioptions go guipty guitablabel gtl guitabtooltip gtt hardtabs ht helpfile hf $VIMRUNTIME/doc/help.txt helpheight hh helplang hlg hidden hid 8:SpecialKey,@:NonText,d:Directory,e:ErrorMsg,i:IncSearch,l:Search,m:MoreMsg,M:ModeMsg,n:LineNr,N:CursorLineNr,r:Question,s:StatusLine,S:StatusLineNC,c:VertSplit,t:Title,v:Visual,V:VisualNOS,w:WarningMsg,W:WildMenu,f:Folded,F:FoldColumn,A:DiffAdd,C:DiffChange,D:DiffDelete,T:DiffText,>:SignColumn,-:Conceal,B:SpellBad,P:SpellCap,R:SpellRare,L:SpellLocal,+:Pmenu,=:PmenuSel,x:PmenuSbar,X:PmenuThumb,*:TabLine,#:TabLineSel,_:TabLineFill,!:CursorColumn,.:CursorLine,o:ColorColumn hi hkmap hk hkmapp hkp hls icon iconstring ignorecase ic imactivatefunc imaf imactivatekey imak imcmdline imc imdisable imd iminsert imi imsearch ims imstatusfunc imsf include inc includeexpr inex incsearch is inde indentkeys indk 0{,0},:,0#,!^F,o,O,e infercase inf isfname isf @,48-57,/,.,-,_,+,,,#,$,%,~,= isident isi @,48-57,_,192-255 iskeyword @,48-57,_ isprint isp @,161-255 joinspaces js keymap kmp km keywordprg kp langmap langmenu lm laststatus lazyredraw lz linebreak lbr lines linespace lsp lisp lispwords lw listchars lcs eol:$ loadplugins lpl magic makeef mef makeprg mp matchpairs mps (:),{:},[:] matchtime mat maxcombine mco maxfuncdepth mfd maxmapdepth mmd mm maxmempattern mmp mmt menuitems mis mesg mkspellmem msm ml mls modifiable modified mod more mouse mousefocus mousef mousehide mh mousem mouseshape mouses mousetime mouset mzquantum mzq nrformats nf octal,hex nu numberwidth nuw omnifunc ofu opendevice odev operatorfunc opfunc optimize opt osfiletype oft paragraphs para IPLPPPQPP TPHPLIPpLpItpplpipbp pastetoggle pt patchexpr pex patchmode pm path pa .,/usr/include,, preserveindent pi previewheight pvh previewwindow pvw printdevice pdev printencoding penc printexpr pexpr printfont pfn printheader pheader printmbcharset pmbcs printmbfont pmbfn printoptions popt prompt pumheight ph quoteescape qe readonly ro redrawtime rdt regexpengine re relativenumber rnu remap report restorescreen rs revins ri rightleft rl rightleftcmd rlc ruler ru rulerformat ruf runtimepath rtp ~/.vim,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,~/.vim/after scr scrollbind scb scrolljump sj scrolloff so scrollopt sbo sections sect SHNHH HUnhsh secure sel slm sessionoptions ssop shellcmdflag shcf -c shellpipe sp shellquote shq shellredir shellslash ssl shelltemp stmp shelltype shellxquote sxq shellxescape sxe shiftround sr sw shortmess filnxtToO shortname sn showbreak sbr sc showfulltag sft showmatch sm showmode smd showtabline stal sidescroll ss sidescrolloff siso slowopen slow smartcase scs smartindent si smarttab sta softtabstop sts sourceany spell spellcapcheck spc spellfile spf spelllang spl sps splitbelow sb splitright spr startofline sol statusline stl suffixes su .bak,~,.o,.h,.info,.swp,.obj suffixesadd sua swapfile swf swapsync sws switchbuf swb synmaxcol smc syn tabline tal tabpagemax tpm tabstop ts tagbsearch tbs taglength tl tagrelative ./tags,tags tagstack tgst term termbidi tbidi termencoding tenc terse textauto ta textmode tx textwidth tw thesaurus tsr tildeop top timeout to timeoutlen tm title titlelen titleold titlestring ttimeout ttimeoutlen ttm ttybuiltin tbi ttyfast tf ttymouse ttym ttyscroll tsl ttytype tty undodir udir udf undolevels ul undoreload ur updatecount uc updatetime ut vbs vfile viewdir vdir viewoptions vop viminfo vi virtualedit ve visualbell vb w300 w1200 w9600 warn weirdinvert wiv whichwrap ww b,s wildchar wc wildcharm wcm wig wildignorecase wic wildmenu wmnu wildmode wim wildoptions wop winaltkeys wak wi winfixheight wfh winfixwidth wfw winminheight wmh winminwidth wmw wiw wrap wrapmargin wm wrapscan ws writeany wa wb writedelay wd t_AB t_AF t_AL t_al t_bc t_cd t_ce t_cl t_cm t_Co t_CS t_cs t_ut t_da t_db t_DL t_dl t_fs t_IE t_IS t_ke t_ks t_le t_mb t_md t_me t_mr t_ms t_nd t_op t_RI t_RV t_u7 t_Sb t_Sf t_se t_so t_sr t_ts t_te t_ti t_ue t_us t_vb t_ve t_vi t_vs t_WP t_WS t_SI t_EI t_xs t_ZH t_ZR internal keepascii breaksymlink breakhardlink uhex extends nbsp precedes trail conceal stlnc vert octal hex alpha double tagfile old startsel stopsel popup_setpos useopen usetab newtab msg beep start 
 chdir(%s) Vim: Double signal, exiting
 Vim: Caught deadly signal %s
 nxterm kterm mlterm rxvt builtin_xterm iris-ansi builtin_iris-ansi builtin_vt320 12345 hpterm sun-cmd screen dtterm fchdir() to previous dir 
Could not get security context for  
Could not set security context for  LINES COLUMNS 
Cannot fork
 /dev/null TERM dumb ROWS 
Cannot execute shell  
shell returned  
Command terminated
 
Cannot create pipes
 *?[{' *?[{`'$ 	 "&'$;<>()\| set nonomatch;  unset nonomatch;  glob > print -N > vimglob() { while [ $# -ge 1 ]; do echo "$1"; shift; done }; vimglob > echo > -G -f dlerror = "%s" E368: got SIG%s in libcall() HUP QUIT ILL TRAP ABRT FPE BUS SEGV SYS ALRM VTALRM PROF XCPU XFSZ USR1 USR2 INT WINCH TSTP PIPE Unknown! CyanogenMod tpruvot gcc -L/system/lib -o vim -lm -lselinux            gcc -c -I. -Iproto -DHAVE_CONFIG_H -g -O2         /system/usr/share/vim \ E554: Syntax error in %s{...} E874: (NFA) Could not pop the stack ! E875: (NFA regexp) (While converting from postfix to NFA), too many states left on stack E876: (NFA regexp) Not enough space to store the whole NFA  uUlLeE E878: (NFA) Could not allocate memory for branch traversal! .iIkKfFpPsSdDxXoOwWhHaAlLuU E63: invalid use of \_ E369: invalid item in %s%%[] E64: %s%c follows nothing E68: Invalid character after \z E678: Invalid character after %s%%[dxouU] E71: Invalid character after %s%% E65: Illegal back reference E59: invalid character after %s@ E60: Too many complex %s{...}s E61: Nested %s* E62: Nested %s%c E50: Too many \z( E51: Too many %s( E52: Unmatched \z( E339: Pattern too long E872: (NFA regexp) Too many '(' E879: (NFA regexp) Too many \z( E873: (NFA regexp) proper termination error INTERNAL: Unknown character class char: %ld E867: (NFA) Unknown operator '\z%c' E867: (NFA) Unknown operator '\%%%c' E868: Error building NFA with equivalence class! E870: (NFA regexp) Error reading repetition limits E871: (NFA regexp) Can't have a multi follow a multi ! E869: (NFA) Unknown operator '\@%c' Internal error: estimated max number of states insufficient: %ld \%#= E864: \%#= can only be followed by 0, 1, or 2. The automatic engine will be used  alnum:] alpha:] blank:] cntrl:] digit:] graph:] lower:] print:] punct:] space:] upper:] xdigit:] tab:] return:] backspace:] escape:] b:keymap_name <%s> %ld, recording  VISUAL  VISUAL LINE  VISUAL BLOCK  SELECT  SELECT LINE  SELECT BLOCK  REPLACE  INSERT  (insert)  (replace)  (vreplace)  (paste)  -- %-*ld  XX [Help] [+] E383: Invalid search string: %s E384: search hit TOP without match for: %s E385: search hit BOTTOM without match for: %s E386: Expected '?' or '/'  after ';' el .!? .!?)]"' )]"' E848: Too many syntax clusters Spell NoSpell toplevel notoplevel E390: Illegal argument: %s ignore ALLBUT ALL TOP CONTAINED minimal  maximal   lines before top line matchgroup /+=-#@"|'^& E397: Filename required E847: Too many syntax includes E401: Pattern delimiter not found: %s E402: Garbage after pattern: %s syntax_cmd reset runtime! syntax/syncolor.vim g:syntax_cmd cluster =NONE ; match   line breaks so  $VIMRUNTIME/syntax/%s.vim nosyntax manual enable E410: Invalid :syntax subcommand: %s b:current_syntax w:current_syntax keyword region colors/%s.vim E424: Too many different highlighting attributes in use NORMAL E391: No such syntax cluster: %s E669: Unprintable character in group name W18: Invalid character in group name E849: Too many highlight and syntax groups E405: Missing equal sign: %s E406: Empty argument: %s E407: %s not allowed here E408: %s must be first in contains list \.*^$~[ E409: Unknown group name: %s cCoOkKeEtTsSgGdDfFnN E395: contains argument not accepted here E393: group[t]here not accepted here E394: Didn't find region item for %s contains E400: No cluster specified MATCHGROUP START SKIP E398: Missing '=': %s E399: Not enough arguments: syntax region %s E789: Missing ']': %s xxx cterm ctermfg ctermbg guifg guibg guisp links to cleared contained containedin nextgroup skipnl skipwhite skipempty skip grouphere groupthere syncing on C-style comments no syncing syncing starts  
--- Syntax sync items --- 
syncing on items 
--- Syntax items --- E392: No such syntax cluster: %s CCOMMENT Comment MINLINES MAXLINES LINEBREAKS FROMSTART LINECONT E403: syntax sync: line continuations pattern specified twice MATCH REGION CLEAR E404: Illegal arguments: %s clear E411: highlight group not found: %s E412: Not enough arguments: ":highlight link %s" E413: Too many arguments: ":highlight link %s" E414: group has settings, highlight link ignored colors_name E415: unexpected equal sign: %s E416: missing equal sign: %s E417: missing argument: %s CTERM GUI E418: Illegal value: %s FONT CTERMFG CTERMBG fg E419: FG color unknown E420: BG color unknown E421: Color name or number not recognized: %s GUIFG GUIBG GUISP STOP t_ E422: terminal code too long: %s E423: Illegal argument: %s Visual cterm=NONE ctermbg=LightGrey Visual cterm=NONE ctermbg=DarkGrey Visual cterm=reverse ctermbg=NONE Search ctermfg=black g:syntax_on E679: recursive loop loading syncolor.vim syntax/syncolor.vim N I !   sync cCoOnNtTaAiInNeEdD oOnNeElLiInNeE kKeEeEpPeEnNdD eExXtTeEnNdD eExXcClLuUdDeEnNlL tTrRaAnNsSpPaArReEnNtT sSkKiIpPnNlL sSkKiIpPwWhHiItTeE sSkKiIpPeEmMpPtTyY gGrRoOuUpPhHeErReE gGrRoOuUpPtThHeErReE dDiIsSpPlLaAyY fFoOlLdD cCoOnNcCeEaAlL cCoOnNcCeEaAlLeEnNdDsS cCcChHaArR cCoOnNtTaAiInNsS cCoOnNtTaAiInNeEdDiInN nNeExXtTgGrRoOuUpP ms= me= hs= he= rs= re= lc= oneline keepend excludenl transparent ErrorMsg term=standout ctermbg=DarkRed ctermfg=White guibg=Red guifg=White IncSearch term=reverse cterm=reverse gui=reverse ModeMsg term=bold cterm=bold gui=bold NonText term=bold ctermfg=Blue gui=bold guifg=Blue StatusLine term=reverse,bold cterm=reverse,bold gui=reverse,bold StatusLineNC term=reverse cterm=reverse gui=reverse TabLineSel term=bold cterm=bold gui=bold TabLineFill term=reverse cterm=reverse gui=reverse Directory term=bold ctermfg=DarkBlue guifg=Blue LineNr term=underline ctermfg=Brown guifg=Brown CursorLineNr term=bold ctermfg=Brown gui=bold guifg=Brown MoreMsg term=bold ctermfg=DarkGreen gui=bold guifg=SeaGreen Question term=standout ctermfg=DarkGreen gui=bold guifg=SeaGreen Search term=reverse ctermbg=Yellow ctermfg=NONE guibg=Yellow guifg=NONE SpecialKey term=bold ctermfg=DarkBlue guifg=Blue Title term=bold ctermfg=DarkMagenta gui=bold guifg=Magenta WarningMsg term=standout ctermfg=DarkRed guifg=Red Visual term=reverse guibg=LightGrey TabLine term=underline cterm=underline ctermfg=black ctermbg=LightGrey gui=underline guibg=LightGrey CursorColumn term=reverse ctermbg=LightGrey guibg=Grey90 CursorLine term=underline cterm=underline guibg=Grey90 ColorColumn term=reverse ctermbg=LightRed guibg=LightRed MatchParen term=reverse ctermbg=Cyan guibg=Cyan Directory term=bold ctermfg=LightCyan guifg=Cyan LineNr term=underline ctermfg=Yellow guifg=Yellow CursorLineNr term=bold ctermfg=Yellow gui=bold guifg=Yellow MoreMsg term=bold ctermfg=LightGreen gui=bold guifg=SeaGreen Question term=standout ctermfg=LightGreen gui=bold guifg=Green Search term=reverse ctermbg=Yellow ctermfg=Black guibg=Yellow guifg=Black SpecialKey term=bold ctermfg=LightBlue guifg=Cyan Title term=bold ctermfg=LightMagenta gui=bold guifg=Magenta WarningMsg term=standout ctermfg=LightRed guifg=Red Visual term=reverse guibg=DarkGrey TabLine term=underline cterm=underline ctermfg=white ctermbg=DarkGrey gui=underline guibg=DarkGrey CursorColumn term=reverse ctermbg=DarkGrey guibg=Grey40 CursorLine term=underline cterm=underline guibg=Grey40 ColorColumn term=reverse ctermbg=DarkRed guibg=DarkRed MatchParen term=reverse ctermbg=DarkCyan guibg=DarkCyan bold standout underline undercurl italic inverse Black DarkBlue DarkGreen DarkCyan DarkRed DarkMagenta Brown DarkYellow Gray Grey LightGray LightGrey DarkGray DarkGrey Blue LightBlue Green LightGreen Cyan LightCyan Red LightRed Magenta LightMagenta Yellow LightYellow White file: ;" kind: Duplicate field name: %s 
  # TO tag         FROM line  in file/text %c%2d %2d %-15s %5ld   doc/tags  , .[~*\$ Searching tags file %s !_TAG_ !_TAG_FILE_ENCODING	 Ignoring long line in tags file %06d E433: No tags file E431: Format error in tags file "%s" Before byte %ld  or more E555: at bottom of tag stack E556: at top of tag stack E425: Cannot go before first matching tag E426: tag not found: %s   # pri kind tag file
 %2d %s  E427: There is only one matching tag E428: Cannot go beyond last matching tag File "%s" does not exist tag %d of %d%s   Using tag with different case! :ta %s
 ^%s\s\*( ^\[#a-zA-Z_]\.\*\<%s\s\*( E434: Can't find tag pattern E435: Couldn't find tag, just guessing! E429: File "%s" does not exist name filename kind FSC F C F   FS   SC   C  S  E558: Terminal entry not found in terminfo li 8bit [  9 10 48;5; 38;5; %p1%dm %dm %s%s%%p1%%dm E437: terminal capability "cm" required builtin_ E436: No "%s" entry in termcap ms xs db da Co bc up pc ' not known. Available builtin terminals are:     builtin_ defaulting to ' '
 pcterm <lt> <Leader> g:mapleader <LocalLeader> g:maplocalleader NULL 
--- Terminal keys --- ce AL DL cs mb vs me mr md se ZH ZR ue us Ce Cs RI ks ke ti te Sb Sf AB AF le nd op RV IS IE WP WS SI EI u7 ku kd kr kl #2 #4 %i *7 k; %1 &8 kI kh @7 kP kN K1 K3 K4 K5 kB [K [L [%p1%dL [M [%p1%dM [H[2J [0m [7m [%i%p1%d;%p2%dH [%p1%dC [%i%p1%d;%p2%dr [J [m [1m [4m M [?1h= [?1l> ]1;  ]2; [8;%p1%d;%p2%dt [3;%p1%d;%p2%dt [>c [6n O*A O*B O*C O*D [1;*A [1;*B [1;*C [1;*D O*P O*Q O*R O*S [11;*~ [12;*~ [13;*~ [14;*~ [15;*~ [17;*~ [18;*~ [19;*~ [20;*~ [21;*~ [23;*~ [24;*~ [Z [28;*~ [26;*~ [2;*~ [1;*H [1;*~ O*H [7;*~ [1;*F [4;*~ O*F [8;*~ [5;*~ [6;*~ O*k O*m O*o O*j O*M O*n [3;*~ [10;*~ [25;*~ [29;*~ [31;*~ [32;*~ [33;*~ [34;*~ [42;*~ [43;*~ [44;*~ [45;*~ [46;*~ [47;*~ [48;*~ [49;*~ [50;*~ [51;*~ [52;*~ [53;*~ [54;*~ [55;*~ [56;*~ [57;*~ [58;*~ [9/y[12/y [10/y[=1h[=2l [=6h [=6l [21;27m [1;7m 8 [3m [23m [24m [4%p1%dm [3%p1%dm [102;%p1%dm [101;%p1%dm P3.y  P1.y [203;%p1%d;%p2%d/y [205;%p1%d;%p2%d/y [A [B [D [C [161q [164q [158q [167q [001q [002q [003q [004q [005q [006q [007q [008q [009q [010q [011q [012q [013q [014q [015q [016q [017q [018q [019q [020q [021q [022q [023q [024q [139q [H [146q [150q [154q Vim: Error reading input, exiting...
 E439: undo list corrupt E440: undo line missing %H:%M:%S %Y/%m/%d %H:%M:%S %ld seconds ago E438: u_undo: line numbers wrong more line more lines line less fewer lines before after %ld %s; %s #%ld  %s Already at oldest change Already at newest change E881: Line count changed unexpectedly No undo possible; continue anyway E830: Undo number %ld not found undo_time() %6ld %7ld     %3ld Nothing to undo number changes  when               saved E790: undojoin is not allowed after undo seq newhead curhead save alt 
Included patches:  
Compiled  by  
Small version  without GUI.   Features included (+) or not (-):
    system vimrc file: "      user vimrc file: "  2nd user vimrc file: "       user exrc file: "   fall-back for $VIM: "  f-b for $VIMRUNTIME: " Compilation:  Linking:  Become a registered Vim user! type  :help register<Enter>   for information  menu  Help->Sponsor/Register  for information     type  :help sponsor<Enter>    for information  Sponsor Vim development! children iccf Orphans 7.4 .%d%s .%d VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Nov  1 2014 22:35:32) +acl -arabic +autocmd -balloon_eval -browse +builtin_terms -byte_offset +cindent -clientserver -clipboard +cmdline_compl +cmdline_hist +cmdline_info +comments -conceal -cryptv -cscope -cursorbind -cursorshape -dialog -diff -digraphs -dnd -ebcdic -emacs_tags +eval +ex_extra +extra_search -farsi -file_in_path -find_in_path -float -folding -footer +fork() -gettext -hangul_input -iconv -insert_expand +jumplist -keymap -langmap +libcall -linebreak -lispindent +listcmds -localmap -lua -menu -mksession -modify_fname -mouse -mouse_dec -mouse_gpm -mouse_jsbterm -mouse_netterm -mouse_sgr -mouse_sysmouse -mouse_urxvt -mouse_xterm +multi_byte -multi_lang -mzscheme -netbeans_intg -path_extra -perl -persistent_undo -printer -profile -python -python3 -quickfix -reltime -rightleft -ruby -scrollbind -signs -smartindent -sniff -startuptime -statusline -sun_workshop +syntax -tag_binary -tag_old_static -tag_any_white -tcl +terminfo -termresponse -textobjects -title -toolbar +user_commands -vertsplit -virtualedit +visual -visualextra -viminfo -vreplace +wildignore -wildmenu +windows +writebackup -X11 -xfontset -xim -xsmp -xterm_clipboard -xterm_save -xpm VIM - Vi IMproved version  by Bram Moolenaar et al. Vim is open source and freely distributable Help poor children in Uganda! type  :help iccf<Enter>       for information  type  :q<Enter>               to exit          type  :help<Enter>  or  <F1>  for on-line help type  :help version7<Enter>   for version info Running in Vi compatible mode type  :set nocp<Enter>        for Vim defaults type  :help cp-default<Enter> for info on this :// :\\ E799: Invalid ID: %ld (must be greater than or equal to 1) E801: ID already taken: %ld List or number required E802: Invalid ID: %ld (must be greater than or equal to 1) E803: ID not found: %ld win_close_othertab() E442: Can't split topleft and botright at the same time E444: Cannot close last window E813: Cannot close autocmd window E814: Cannot close window, only autocmd window would remain Already only one window E445: Other window contains changes split #                                                                  UUUUUUUUUUUUUUUUUUUUUUUUUU      llllllllllllllllllllllllll                                                                     UUUUUUUUUUUUUUUUUUUUUUU UUUUUUUllllllllllllllllllllllll llllllll                                  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~                                  !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~  @                   *   b   x                           
    *  K  N  a                  ```` 	                                                                  


   ~  ~            Z  _                                                             j  m               
     d	  e	     p	  p	     
  
     O  O     Z  [            :  =            J  O            a  h     m  n                           5  6               
                   '      (   )       *   .      /   /       0   ^      _   _       `   '     p      p               '      (  (   (   )  )     )  )     )  )      0   0      0   0     00  00     =0  =0     @0  0  @0  0  0  0   3     N                N  >  ?     0  k                     ;  @     [  e        ߦ  N    ?  N  @   N      N              &9@1&0@2*1@4*2@5*3@6*4kD*5kL*7@7X@7*9@9*0@0#1%1#2khWkh#3kI#4klUkl%a%3%b%4%c%5%d%7%e%8%f%9%g%0%h&3%ikrVkr%j&5!1&6!2&7!3&8kukdG9H:I;J<k1k2k3	k4
k5k6k7
k8k9k;F1F2F3F4F5F6F7F8F9FAFBFCFDFEFFFG FH!FI"FJ#FK$FL%FM&FN'FO(FP)FQ*FRkB6   M   T   C   S `   2 ` @ 3 ` ` 4   A                  d  y  c  < > ! g~ = gq: gU gu J gJg? r  I  A  zfzozOzczCzdzDgwg@                                                                                                        !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   $%$%!klmnopqrstuvwxyz{|}~                                           	   	   
   
               
   
                                      8   @   d   e   h   i   l   m   M   n   N   r   s   S   c   t   v   V   w   W   f   F   A   C   D   T   -   >   B   P   R   L   +   =   x   X   *   #   _   !   .   o                                                 Q   
   y         	      
                                                                
   
         	   	   
   
                                   H   T   T         R   R      +   
   =      ?   	   J   
   K      N      u  t  s  r  q  p  o  n  m  l  k  j  i  h  g  f  e  d  c  b  a  `  _  ^  ]  \  [  Z  Y  X  W  V  U  T  S  R  Q  P  O  N  M  L  K  J  I  H  G  F  E  D  C  B  A  @  ?  >  =  <  ;  :  9  8  7  6  5  4  3  2  1  0  /  .  -  ,  +  *  )  (  '  &  %  $  #  "  !                                         
      
  	                                                                                                                                                                                                                                                                                                                                                                                                                        ~   }   |   {   z   y   x   w   v   u   t   s   r   q   p   o   n   m   l   k   j   i   h   g   f   e   d   c   b   a   `   _   ^   ]   \   [   Z   Y   X   W   V   U   T   S   R   Q   P   O   N   M   L   K   J   I   H   G   F   E   D   C   B   A   @   ?   >   =   <   ;   :   9   8   7   6   5   4   3   2   1   0   /   .   -   ,   +   *   )   (   '   &   %   $   #   "   !                                                             
         
   	                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Lh
   A Ph
    Th
    [h
     ; `h
     ; gh
     qh
     vh
   ; }h
   ; h
   f h
   f h
   E h
   Ѣ h
   f h
   f h
   E h
   Ѣ h
    h
   < h
   ˢ h
   Ţ i
   u i
     	< i
   ŉ i
     i
     G `X
    -i
   %< 5i
    =f
    :i
    '< Li
   
 Si
   Y \i
   ie ci
     )< pi
   A< |i
   C< i
   ? i
   -W i
   	 i
     E< i
   U i
   U i
    i
   m i
   E i
   Yi i
   U i
   U i
   sU i
    j
   ]< 
j
   g< j
   ]U "j
   ; .j
   q< 9j
   y< #g
   < Gj
     < Pj
   < _j
     < e
   E jj
     yj
    }j
   a j
    j
    م j
     < j
     [I j
     MI j
     -I j
      j
     A j
    < j
   T j
   T j
   T j
   T k
   Ѫ k
   < k
      $k
     !I +k
   } 2k
     < <k
     Ck
    
 Nk
    Xk
    ek
     < pk
     < {k
    k
    k
    k
   R k
   s k
     < k
    k
   R k
   R k
    k
    k
   ٟ k
    k
   R k
   R k
     yH l
   V 
l
    l
    l
   {  l
   u ,l
   h 6l
     qh Cl
     =h Ml
    Yl
    `l
   q gl
   +N sl
    |l
    l
   m l
    l
     < l
   Z l
   h l
   )j l
   ͗ l
   = l
   = l
     G l
    l
    l
    l
    l
    l
   с m
    
m
   Y m
    "m
    ,m
    5m
   ˁ 9m
   Ł =m
   
 Y
    > Cm
   ] Pm
    Xm
    [m
   I gm
    tm
   U {m
     %= d
   5 m
   = m
    '= m
   )= m
   3= m
   == m
   ?= m
   G= m
   Q= m
    m
   f m
    m
   P n
   o 	n
   ~ n
   1~ n
     H )n
     H 3n
   ~ :n
   ќ En
    Pn
    ^n
   } hn
   [= vn
     c= n
   % n
   E n
    n
   ;z n
   ] n
    n
   m= n
   u n
   q n
   k n
   e n
   N n
     G o
   O o
   C o
   M o
    q (o
   o 5o
   Y{ ;o
   ō Bo
   O Ko
    [o
    do
    ko
   a ro
   M yo
    o
   9 o
   O o
   O o
   { o
   y< o
   m o
   A o
   ) o
   u= o
    o
   7 o
   1 o
    ъ p
     p
    p
     p !p
   n )p
     qG 2p
   = 7p
   
O ?p
   N Gp
   5X Jp
   ? Op
   = Xp
     Q ap
   = fp
    mp
   e up
    => p
     = p
   #z p
     MG p
   
z p
     )G p
     p
     A p
   	 p
      p
   y p
   ed p
   iy p
 p
 p
 q
 q
 i
 q
 'q
 4q
 i
 =q
 Fq
 Sq
 ^q
 cq
 l
 lq
 uq
 q
 q
 q
 q
 q
 q
 q
 q
 q
 q
 q
     q
 b
 q
 kx
 mx
 px
 sx
 vx
 yx
 |x
 x
 x
 x
 x
 x
 x
 x
 x
 x
 x
 x
 x
 x
 x
 x
 x
 x
 x
 x
 x
 x
 x
 x
 x
 x
 x
 y
 	y
 y
 y
 y
 y
 $y
 *y
 0y
 6y
 >y
 Hy
 Qy
 Zy
 by
 x
 x
 x
 x
 x
 x
 x
 ky
 py
 yy
 }y
 y
 y
 y
 y
 y
 y
 y
 y
 y
 y
 y
 y
 y
 ڇ
        
        
        vh
        -i
        !
        
        
        
        

        0
        &
        :
        K
        V
        a
        Y
        i
       m
        u
        
       ~
           
 $   G
 	   Y
    "
    
    
    (
    /
    xT
    :
 
   F
    L
    sT
 &   W
 %   
    e
    v
 
   
 )   !
 (   d
    k
    F
 '   q
    s
     z
    ؕ
    
 *   
    
         
 Vv
 Y
 )
 =f
 2
 d
 \g
 Z
 
 kx
 x
 ؇
 u
 X
 
 
 
 N
 
 
 Ę
 ˘
 ;
 3n
 Y
 l
 `
     
 
 c
 h
 
     
     
    
     
    ,
    7
 
   A
    J
    Q
    \
 	   d
    o
 	   {
 
   
    
    
    
    
    
    ɪ
    ժ
    
    
    
    
    
 B   
 C   )
 J   5
 K   B
 @   R
 @   _
    n
    |
    
    
    
    
    ˫
    ׫
    
     
 !   
 "   
 #   
 $   #
 %   1
 &   A
 '   P
 (   \
 )   f
 D   t
 *   }
 +   
 ,   
 -   
 .   
 A   
 /   Ĭ
 0   Ԭ
 1   
 2   
 E   
 3   
 N   
 O   $
 G   .
 H   8
 I   I
 4   W
 5   d
 F   o
 6   v
 M   
 L   
 7   
 8   
 P   
 Q   
 9   
 :   ȭ
 ;   ѭ
 <   ݭ
 >   
 ?   
 =           
 7
 \
 
 
 
 Ҹ
 
 /
 v
     
        
        
        
        
        
        º
        ͺ
        غ
        
        
        
        
       
        
        v
        
 T       <
 d       
       à
 $      
        ̠
        `
    
    &  
      "
    &  )
    &  0
    &  7
      <
      B
      H
      N
    R  T
    T  Z
    W  `
    Y  f
    \  l
    ]  r
    ^  x
    _  ~
    a  
    b  
    e  
    j  
      
      
      
      
      
      
      û
      ʻ
      ѻ
      ػ
      ߻
      
       
        
        
     
     
    
    
    &
    /
    6
    <
    C
    J
    R
 	   Y
 	   `
 
   e
    l
    s
 
   z
    
    
    
    
    
    
    
    
    
    
    Ƽ
    ͼ
    ռ
    ܼ
    
    
    
    
    
    
 -   
 /   
 .   
 .   
 0   
    %
    .
    3
    =
    C
    H
    N
    U
    [
    a
    g
    k
    s
    
    
    z
 9   ~
 9           4
 
 
 
     w
 	   }
 }
 
   
 
   
 
   
 
   
 
   
 
   
 
   
 
 
    
    
 
 |   
 \   
 
 
 
 
 
 
 
 
 
 
  
 
 

 
 
 
 
 
 
 
 "
 &
 *
 .
 2
 6
 :
 >
 B
 F
 J
 N
 R
 V
 Z
 ^
 b
 f
 j
 n
 r
 v
 z
 ~
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  
 *
 1
 8
 ;
 >
 A
 D
 G
 J
 M
 P
 S
 <   V
 Y
 _
 i
 u
 ~
 
 
 
 
 
 
 
 
 
 
 
 
 (
 0
 8
 ?
 I
 Q
 X
 b
 g
 k
 o
                     	        	 @    E                      	 @     Q        =     	   i     
                   9     
           @      	        Q @              
        %                            V        v                   	                
        E                                      }     !        "   e   #        $   m     %        &        '   e   (      )       *        +       ,   
    -   Q    .       /   Y     0   )     1   %     2   %     3   %     4   %     5   %     6   %     7   %     8   %     9   %     :   q     ;   
     <       =        >       ?   Y     @   m    A   M     B   -    C       D       E       F   
 
 G   a    H   q     I   M     J        K        L   q     M   q     N   ]    O        P        Q   M    R   1     S   =    T   
 
 U        W       X       Y       Z      [     \        ]      ^   )    _        `   e    a   M    b   -     c        d        e        f   
 
  g   %    h   )    i   M    j        k   Q     l   }    m   -    n   ]     o        p        q       r       s   =    t   
 
  u   e     w        x       y        z   y    {      |        }       ~                %    /     M     M     =     Q `   	   `   	   )    -    -   }    ۖ       	 ` 	 ` 	 `  	 `   `    `        `   `    `       a `                              )     m    F
 I
 L
 O
 R
 
 U
 X
 G
 
 O
 h
 o
 t
    
       
       
       
       
       
       
       
       
       
        
       
       
       
       
    
   
       
       
        
        	
     
   
     
     
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 A G P Z c k w }                 	   z
 l
 
     
  3 	 
 		 
  Z
 	 
  
  	 
 ,	 S
 	 l
 	 
 	 Հ
 	 
 a	 
 E S
   -	 O
 ,	                 )        8        G      @  T        g        ~                                                                                   "        3        J        ] a e i m q u    ( 2 n
 9 z
   " & * . 7d
 2     " % ( + ;
 >
 A
 D
 G
 J
 M
 P
 S
 . 
 

 1 4 ,s
 7 /s
 : = @ C F I L O R            ~
        F
            R
    
    
 
   -
 )                           
                            
    m
        ;
          !    "    #    '    &    +    *    ,    -    7    4    .    /    0   ]
 1   _
 2    3   
 5   
 6    8            x# O
 # # # O
 # # O
 %$ T$ $     O
 $ $ $      $ 3 @ I W b q                  
      -  ;  B  K  S  [  d  r  y                            ! 
! ! '! 6! A! Q! ^! k! w! ! ! ! ! ! ! ! ! ! ! ! !  " " " " &" -" :" F" T" \" h" x" " " " " " " " " " " " " # # # &# /# <# A# K# P# V# g# s#                 Th
 ^ 0 
 - ) 
   ڇ
 q   G
  E  Ɋ
  y ϊ
  y ي
   ފ
 E Q  
 u A  
 U   
 ͩ  
   
   
   
 >   q
  ( 
   '
  ) Y
  E /
 K E  5
 E  E  :
 4  ?
 W E G
   
 q   N
 A A  U
 5 A  [
 + E  e
 ! E  
 q   k
 K E  u
 A A  }
 K   
 5  
   
 ]  vh
 q  
 e   
 U   
 W E 
 W E 
 ` C0 ŋ
  E  ˋ
  E  ҋ
 - ) ڋ
   
  A  
  	  
    i
    
 M   
  A  
  E  
  E  
   
 !A E0 "
  	  (
    .
  E  5
    >
  A  I
  	  R
   X
 %z   `
   j
  E t
   z
  E  
   
  ) 
   
  y 
  E  
  E  
  E  
  ) 
 - ) Č
  y 5i
 ) E0 Ό
  E  Ռ
 5  
  ( 
    
 ͯ  
 R   -i
 q  
  E  

  E  
  E  
 %   !
  E  )
    0
    6
  ) =
 - ) G
  ) O
  E  \i
  A0 W
 %w  `
   f
 ͙ Q r
   }
 A   
 }@ 	 
    
    
    
    
    
    ȍ
     э
 ź  ڍ
  g   
  g  
 =  
   J
   
  g  
  g   &
 4  	
   
 	  
 Y  
   %
 Y  -
 	  R
 I   3
 I  :
  I @
 !K   oe
 =U   F
 Q   M
 S   T
 Q   ]
 4   b
 4  e
 Y  m
 A  r
 }    sT
 iO Q  z
 e   
 5  
 4  
 yL   
 A   
   
 M   
  A 
  C 
    
    Ȏ
  C e
 B  e
 a(   ю
  g  ؎
  E ݎ
  I  
  I  
   
   v
 M   
    
    
   
  '  
 	  !
 !   !
   Yl
 ^ 0 )
 - ) 1
   e
 =B  :
  g   @
  g  F
  ) K
   U
  y [
  ) d
 - ) p
  y z
 	   
  g  
  g   
  ) 
 - ) 
  ) l
  Cp 
 x   
   
 q   
 q   

 q   
 q   
 ! AP 
  E  
  E  
   Ǐ
   Џ
  	  ُ
  A  
    
   
  A  
   
   
  E  
    
 !A E0 0
 q   
   
  	  $
    *
  E  1
    :
  A  E
  	  N
  I  T
  I  ]
    g
  E  j
  E  p
   v
  ) {
   
  	  
  ) 
  E  
  E  
  E  
    
     &
 q   
    Đ
  E  ː
  E  ѐ
  E  ې
  E  
  E  
  A  
  ) 
    
     
    
  I  
  I  
  E  %
 e   (
 ) E0 -
   2
  	  l
  ) 7
   @
 u  l
 = @ F
  y K
  ) ~
    Y
 7  `
 7   j
  	  r
 7  z
 7   Y
   
    
    
   
  @  
    
   
 2  
  ) 
   
  y ő
  ) Α
  y Y
  ) :
 q   ؑ
    
 - ) 
  y K
 q   
 9 ( 
 ! AP 
  ) 
  ) 
 3    1h
 4  
  ) 
   (
  y .
 e   3
  ) <
  y F
     N
  ) U
  ) ]
 	  g
 ! AX m
    t
    y
    
   
  U  [
  	 
  U  
     
   
   
   
   
   ǒ
  g   ϒ
  Q  Ԓ
  Q  ے
  Q  
    
    
  Q  
  Q  
  Q  
    
  C0 
 %   
    $
    )
    0
    4
    :
    B
    J
 )  O
    W
   \
  _4 a
    i
    n
 )  t
   {
 e  
 }@ 	 
  A  
 F w0 
 %  
   
 !A E0 V
 q   
   
    
    Ǔ
    Г
     ֓
   o
 
m E  ߓ
   
   
  E  a
 q   
 k > 
  E 
 K E  

 E  E  
 A    
 5    
 + E  *
 ! E  1
 K E  <
 A    E
 ɵ   Q
   `
    |N
   h
   t
   ~
   
 2  
   
    
   
  @ Y
 q  
 I E 
   
 q E  
  ) 
   Ȕ
  y Δ
   Ԕ
    ڔ
 q E  
  ) 
  y 
   o
 mB g  5o
 2  
  A  
    
     
     '
  A  1
  A  <
   F
   N
 i  S
 ] Q  X
   d
   r
   
   
 ]   
 ]   
 E  E  
  ) 
  ) 
 i  
 2  g
 e   q
 E	  
   Ǖ
     Е
 ) E0 ҕ
  Q  ؕ
  Q  fw
 `	   i
 q   ܕ
 Y E 
 U   
 2  
 2  
 w    
  Q  
 w    
 w E  
 2  #
   +
 w E  7
 w E  ?
 w    I
 U   N
    R
    X
    `
  	 h
  Q  o
 1I   u
    {
    
  y 
  Q  m
 q   
  Q  
  Q  e
 -D   
    
  ) 
 a U 
 Q	   
 	   Ɩ
 - ) Ӗ
 E  E  ږ
    
    
  ) 
  ) u
 q  
 T  
  e  f
 e	  
 q H ~
 q   q
 4  
 4  
  I  
  I  
     &
  ) +
   5
  y ;
  ) D
 2  I
  y S
 2  Z
  ) a
  ) i
 k  o
 UT _A u
 )Q  z
 B  
 a   
  @  
 U   
   
 UT A 
 UT A 
 A  
 )Q > 
  @  
     
   ˗
 A  ϗ
 )Q   ԗ
  ) ٗ
   
  y 
  ) 
  y 
  ) 
  ) 
  A 
 =a EP 
  O  X
 ! AP 
 
m E 0 kx
 !/ E 
  Ap c
  !P t
  Ap 
 !/ E U
   
 ! AP 
      
 
m E 0    9        $   8       )   X                     ]           u                      Al           1           =                      		       
   ]	       
             ճ                  (              UD       *   D           ̝    P     P                        oL            H           
  
                                             xz !         z          z             o                                                   xz z z S D. - X. ` <` $- . P` ,, . - (, Pa a  b , ` ` $. Ъ a L, , p` l, `- x_ 8` L` a \`  - (- _ , ` Xb `a - d` ` p- 8, ` D,  a  H. d. l` ,` , , P[      H` PZ 0, .     ر   . a _ Գ         ,a 0a (a a . ܮ , . -  - , - l. T ` _ - ^ $ . `, 4. _ , . L  - 0-  b ` 0/ C .  b , a  a `. (/ a  / , . . . - b l- <- / \ x- - ߰ . @` b 4]        b ,   ] ٭ b  ܱ p. \, , d- - D- / b h` -  , ` @, . <, Ĭ . - - .   x X, ` a \a p, L- T. Ա ` - ` |- P, - / ,  ` . `    @-  b $, / b  , ` b -  k - ` @/ xb 8- , H, <. b , . ] b     @ - a b  pW b b «  `  a  v ^ b b , $/  a a a ( ,  . .   |` :  t  . a , ! P\ - / , La . - / .  b k  b b . , V  H- h- ha @.  ` ,. |,  =@ ! b ` . D` G  , H/ - ,  , - \- 4` - (. , ,- T- H   ʰ  - `  س ߯ < . 4- a    a - - b b b $a a P- ` X` - . L. . ` T` . x` ϲ b ` a $` ` ` ` ` 8. _ - <_ 4/ lb ,  / - ` / , a a Hb `b . db Pb Q h,  b Da ` ` a    _ _ P |   </ _ t` 0` - pa  b da  b ` t, ,  , h. 4, \. ta P. t . . D/ - , (` - ` a b        T, b b a a Y $b  b a b ` Tb a ' b a <a X- a t- 	 a 4a  b ` ` ` @a ( ,b a ` ` 8b (b 8a |a b ` xa Ha b ` a b b  b Xa tb -  a |b <b a b - b `` 8/ PY ^ 0. a     la  x, 7 . -  X - ,  ( ,/ . , . , , - hb - @b . , - $   Ta a a Y  T \b Lb a Db ԩ                 0b ` p  x |  a                                                                                                                                                                                                                                                                                                                       \                                              A   =f
                               Cf
                               Jf
                               Tf
                               [f
                                ff
                                pf
                               |f
                               f
                               [X
                               f
                               f
                               f
                               f
                               f
                               f
                               f
                               f
                               f
                               f
                               f
                               f
                               g
                               g
                               g
                               #g
                               -g
                               6g
                               Ag
                               Gg
                               Qg
                               \g
                               eg
                               mg
                               xg
                                |g
                                g
                               g
                               g
                                g
                               g
                               g
                               g
                               g
                               g
                                g
                               g
                                g
                               h
                                	h
                                h
                                h
                                (h
                               `b
                                nb
                                1h
                                :h
                               Ch
                                                                      $                     q
 
l
 2
                
       E17: "%s" is a directory E25: GUI cannot be used: Not enabled at compile time E472: Command failed E24: No such abbreviation E77: Too many file names      E170: Missing :endfor E29: No inserted text yet E73: tag stack empty E80: Error while writing E523: Not allowed here E16: Invalid range E850: Invalid register name E600: Missing :endtry E476: Invalid command $   E800: Arabic cannot be used: Not enabled at compile time
 E72: Close error on swap file --No lines in buffer--  Ņ E37: No write since last change (add ! to override)     E32: No file name E37: No write since last change   v   E682: Invalid search pattern or delimiter E170: Missing :endwhile E487: Argument must be positive E10: \ should be followed by /, ? or &        -   E46: Cannot change read-only variable "%s" E79: Cannot expand wildcards Q E34: No previous command E91: 'shell' option is empty E21: Cannot make changes, 'modifiable' is off  E486: Pattern not found: %s E15: Invalid expression: %s E363: pattern uses more memory than 'maxmempattern' E591: 'winheight' cannot be smaller than 'winminheight'   E28: No such highlight group name: %s    E41: Out of memory! search hit BOTTOM, continuing at TOP     E49: Invalid scroll size E482: Can't create file %s E36: Not enough room E30: No previous command line      E475: Invalid argument: %s E481: No range allowed E359: Screen mode setting not supported E23: No alternate file E78: Unknown mark E459: Cannot go back to previous directory      

 E76: Too many [     E44: Corrupted regexp program search hit TOP, continuing at BOTTOM E48: Not allowed in sandbox E74: Command too complex E484: Can't open file %s E477: No ! allowed Interrupted E33: No previous substitute regular expression E588: :endfor without :for E470: Command aborted P   E488: Trailing characters E45: 'readonly' option is set (add ! to override) E81: Using <SID> not in a script context E473: Internal error E31: No such mapping E474: Invalid argument E171: Missing :endif E685: Internal error: %s E485: Can't read file %s E749: empty buffer    -   E13: File exists (add ! to override) E22: Scripts nested too deep      E479: No match E14: Invalid address E471: Argument required E19: Mark has invalid line number   O
 - E483: Can't get temp file name E27: Farsi cannot be used: Not enabled at compile time
 E43: Damaged match string       E38: Null argument E139: File is loaded in another buffer    E480: No match: %s E35: No previous regular expression E75: Name too long Zero count E364: Library call failed for "%s()" E20: Mark not set E26: Hebrew cannot be used: Not enabled at compile time
 E12: Command not allowed from exrc/vimrc in current dir or tag search E794: Cannot set variable in the sandbox: "%s"      E588: :endwhile without :while                                                                                                                                          &  '  +  +  1  3  8  8  ?  B  D  D  H  K  M  M  R  S  f  g  k  k                                  Q  Q  a  a                                                        O  Q  Q                              "   $   '   0   0   2   3   5   5   ;   ;   >   >   t   t                     !  !  !  !  	!  	!  !  !  !  !  !!  "!  &!  &!  +!  +!  S!  T!  [!  ^!  `!  k!  p!  y!  !  !  !  !  !  !  !  !  !  !  !  !   "   "  "  "  "  "  "  "  "  "  "  "  "  "  "  "  "   "  #"  #"  %"  %"  '"  ,"  ."  ."  4"  7"  <"  ="  H"  H"  L"  L"  R"  R"  `"  a"  d"  g"  j"  k"  n"  o"  "  "  "  "  "  "  "  "  "  "  "  "  #  #  `$  $  $  K%  P%  s%  %  %  %  %  %  %  %  %  %  %  %  %  %  %  %  %  %  %  %  %  %  %  %  %  %  %  &  &  	&  	&  &  &  &  &  &  &  &  &  @&  @&  B&  B&  `&  a&  c&  e&  g&  j&  l&  m&  o&  o&  &  &  &  &  &  &  &  &  &  &  &  &  ='  ='  W'  W'  v'  '  U+  Y+  H2  O2             
  - 1 1 = = ? ? B B F F J N W W _ _ y y { |                  o                              K  ^  p  p                      0  J                #  %  '  )  -   	  	  <	  <	  >	  N	  Q	  U	  b	  c	  	  	  	  	  	  	  	  	  	  	  	  	  	  	  
  
  <
  <
  >
  B
  G
  H
  K
  M
  Q
  Q
  p
  q
  u
  u
  
  
  
  
  
  
  
  
  
  
  
  
      <  <  >  D  G  H  K  M  V  W  b  c                          >  D  F  H  J  M  U  V  b  c                              
  
  >
  D
  F
  H
  J
  M
  W
  W
  b
  c
  
  
  
  
  
  
  
  
  
  
  
  
  1  1  4  :  G  N                      5  5  7  7  9  9  >  ?  q                    +  >  V  Y  ^  `  b  d  g  m  q  t              _  _      2  4  R  S  r  s            
         +  0  ;              U  ^  `  |           4  D  k  s          $  7                                ,  ,  -  -  *0  /0  0  0  o  r  |  }                  #  '        Ĩ      &  -  G  S          )  6  C  C  L  M  {  {                                          &    
 
 
 
 
 
 8
 :
 ?
 ?
     e i m r {      B D    a   z                                      y     /     1  1  3  7     :  H     K  w     z  ~                                      a                                                         8                                                                   #  3     <  <  ?  @     ?*  B  G     I  O     P  P  *  Q  Q  *  R  R  *  S  S  .T  T  2V  W     3Y  Y  6[  [  5`  `  3c  c  1h  h  /i  i  -k  k  )  o  o  -q  q  )  r  r  +u  u  *}  }  )         &    &           '        %E  E  T   q  s     w  w  {  }                                                                                                     0  O     P  _     a                           %     a       y  y    }  }                                              '        0  7        @  E        Q  W        `  g        p  q     J   r  u     V   v  w     d   x  y        z  {     p   |  }     ~                                               	           	                                  	   N!  N!  p!  !     !  !  $  $     0,  ^,     a,  a,  e,  e,  f,  f,  h,  l,     s,  v,     ,  ,     ,  ,      -  %-     A  _     c  m            #  /     3  o     z  |                A  Z     ( O    A   Z                                       .        0  0  92  6        9  G        J  v        x  x  y  }                                                            O                                                                                                                                                                                                                                                                         ~"  2        :  :  +*  ;  ;     =  =  ]>  >  (*  A  A     C  C  =D  D  E   E  E  G   F  N        p  r        v  v         &          %       @          ?                                                                       ~        P     /         `                                       $        1  V     0          `                 A                        (  /     8  ?     H  M     Y  _     h  o                                                                                                         &!  &!  *!  *!  A+!  +!  2!  2!     `!  o!        !  !     $  $         ,  .,     0   `,  `,     b,  b,  	c,  c,  d,  d,  g,  k,        m,  m,  n,  n,  o,  o,  p,  p,  r,  u,        ~,  ,     ,  ,        ,  ,        @  ^        b  l                  "  .        2  n        y  {        }  }  u~                 !  :           '    (   A   Z                                               .        2  6        9  G        J  v        x  x  y  }                                                                O                                                                                                                                                                                                                                                                         ~"  2        :  :  +*  ;  ;     =  =  ]>  >  (*  A  A     C  C  =D  D  E   E  E  G   F  N        E  E  t   p  r        v  v         &          %       @          ?                                                                                                          ~        P     /         `                                       $        1  V     0          `                     A                        (  /     8  ?     H  M     Y  _     h  o                                                                                                             &!  &!  *!  *!  A+!  +!  2!  2!     `!  o!        !  !     $  $         ,  .,     0   `,  `,     b,  b,  	c,  c,  d,  d,  g,  k,        m,  m,  n,  n,  o,  o,  p,  p,  r,  u,        ~,  ,     ,  ,        ,  ,        @  ^        b  l                  "  .        2  n        y  {        }  }  u~                 !  :           '    (      _          )#  *#  .  .  .  .   /  /  /  /   0  )0  00  >0  A0  0  0  0  1  -1  11  1  1  1  1  1  1  2   2  G2  P2  2   3  M   N      Ƥ  `  |                        0  R  T  f  h  k    `           1 @ H                       *   .   j   o                    E854: path too long for completion YyDdCcxdXdAAIIrr    
     
 
 5o
 %
     
 1
 
     p
 
 z
     
l
 7
 5
     t 7
 , 
 . 
 . 
 . i
 P. 
     
 
 
 
     O
 
 
     S
 W
 i
 
 
      
 ( 
  
  
 ( 
 t_      ,
 o
 0
     F
 |g
 ;
     s
 |
     i
 [
 	
 z
     
 
     
 
     Z
 
     x
 ~
                     
 
 |                      /
 
                      
 
 |                     
 
                       
 
                       
 
 t  t`     
         
 
   7  @              
 
                       
 
   x` P              
 
   |`                 
 
   `                 "
 
 t  `     
         -
 7
  `     O
         :
 A
   `                 D
 O
  `     S
 W
     \
 f
  `     k
         v
 
   `      
         
 K
   `     O
         
 
                       
 
   7 @              
 
                      
       7 @              
 
 d                     
 
 ,                      
 
          O
         }h
 
                       
 
                      h
 
  7 @             
 
                      
 	
  `     
          
 
                      '
                            -
 9
  `     O
         i
 =
   6 @              A
 I
  7 @  N
         f
 q
  7 @  O
         v
 
  7 	@  
         
 
          O
         
 
 d  `                
 
                      
 
     O
         
 
 Bv       P           4q
 
  7 @  
         
  
                      $
 
 `  `                )
 /
                      3
 A
 $                      F
 S
 $                      X
 e
                      i
 u
                      -i
 y
                       |
 
                       
 
   07 @              
 ?
 h `     
 
     
 
                       
 
                       
 
                      
 !
                      &
 5
                       :
 D
                       H
 W
                       \
 j
                       q
 |
                       
 
 $                 
 
 $                 `
       `     O
         
 
                      
 
   `                 
 d
          O
         
     $                     
 
                     
 
          O
         
 
                       
 xT
  `     
         
 

  `     O
         
 
                       
 *
   `                 =
 9
 t `     v
         -
 7
   7 @             ;
 G
 d  `                J
 S
  ` 
P  O
         V
 a
   `                 d
 n
                      q
 }
                      
 
   `                
 D
  `     O
         
 
   7 @              (}
 b
  `                 
 
 V  <7 @  O
         
 
   `     
         .
 +
  7 @  p
         
 
  `     O
 
     
 
   `                 
 v
 0 7 @  O
         
 
  `     
         
 
                       
 

                       #
 
    7 @  O
         
 
  7 @  "
 %
     )
 7
   7 @  ;
         R
 \
  `     O
         .
 _
  `                b
 k
    a                 n
 v
                       y
 
                      
 
                      
 
                      
 
                      
 
                       
 
                      
 
           2           
 
 d                     
                          
 
 $                      
 
 $                      
 
                       
 (
  a     +
         D
 O
   a                R
 [
                       _
 f
   a                 
 
  a     j
         !
 G
   a         2       J
 P
                       S
 Z
                       nb
 ^
 l  a                 b
                           g
               O
         r
 }
   a                 
 
                      
 
           O
         
 
                       
 
                       
 
   7 @              
 
   7 @              
 
                      
 
                       
 
                       
 
   $a                 y
 
   7 @  O
         
 )
  7 @  .
         C
 M
   7 @              mg
 A
    a                 Q
 Y
  (a     ]
         {
 
  ,a     
         
 1t
  |7 @  
 
     
 
  0a     
         
 
   4a                |g
                           
 
 T         O
         a
 
  8a     O
         
 
  <a P  
         
 v
                      
 
           O
         
 %
 d  Ha                
 
   La                 
 $
 $                      (
     Bv                  .
 8
 t                      <
                           A
 K
          O
         
     $                  N
 X
  @a     \
         b
 n
   Da                r
       Pa                x
 
                      
 
                      
 
  ,7  @  
         
 
   Ta                
 
  Xa                
 
   \a     d           
 
   ha               Y
 
   da                
 
   la               O
 
   pa      (           
 

                      
                           
 
                      }
 "
   7 @             N
 %
   `a                )
 
  7 @             4
 =
   7 @              A
       ta                F
      xa     O
         L
 W
                       ^
 h
                      P
 k
   |a     i
         r
 }
                      
 
   a               
 
            d   d       
                           
 
  7 !@  
         
 
 $                 
 
 (                    
 
                      
                           
 
                       
 
  a     O
         
 
                       
 
                       
 %
   a     *
         x
      a                 I
 U
   a     O
         X
 b
                      f
 p
   a     O
         s
 x
  a "P  {
         
 
   7 #@              
 
                      
 
                      
 
                      
 
                       
 
                       
  
                       
 
                      
 '
                       -
 9
                       ?
 L
                      Q
       a                X
 b
                       e
 q
                       t
 }
  87 $@              t
                           
 
                     
 
   a                 
 
 $                 
       a                
       a                
 
                      
 
                       
 
 $                      
 
 $                      
 
   a                 
 
           O
         
 
  a     !
         

 c
                 g
 r
                       v
 
   a                
 
 l  a                 
 
                      
 
   a     
         
      a                 '
 
   a     
         ;
 
  a     O
         
 
                      
 
  a     
         
 
  a     
         
 
                      
 

  a     O
         
 
   b     t
         
 $
                       (
 2
    b                7
 ]
                       A
 M
  $b     O
         Q
 ^
   b     O
         b
 m
   a                 n
 p
   7 )@             s
 {
  a     O
 }
     
 
   7 %@              
 
 d          O
         q
 
   a                 
 
   a                 
 
   a                 
 
   a                
 
 d  b                
 
   b                 
 
 L  a                 
 

                       
 
   a                 
 )
                       ,
 5
   b                 9
 E
   7 (@              I
                           S
     $                      Y
 g
 D                      k
 u
                      y
 
                       (o
 
                      
 
   a                 
 
                       
 
   a                
 
           O
         
 
  b     
         
 
                       
 	
   7 *@             
 
   b     .
         
 $
  b     O
         (
 2
 D  7 &@            q
 6
 0 6 '@  O
         :
 B
 d          O
         F
 Q
   Xb     
           U
 ]
 D  7 ,@             `
 k
   4b                o
 y
   Lb                 |
 Gp
   \b                fw
 ؕ
  ,b +P  
         
 
   Db                
     Tf  P\     O
         
 
                       
 
 t  8b     O
         
       <b                 
 
   (b                
 
   7 .@              
 
 L  7 -@              
 
          O
         
 	
   Tb                 
 
   Hb                
 #
   Pb               &
                           ,
               U           5
                          >
               O
         J
       `b                 S
 _
   db             c
 n
   0b                r
 z
   @b                 }
 
 D          O
         
 
   hb               
 
 Tf  P\     O
         
 
                      Op
 
                       
 
   tb 0P            
 
   xb     '          
 
   lb                
 
   |b               
 
   b                 h
 
       O
         
 
                      
 
                      
 
                      !
 -
                     0
 ;
   b                 >
                           C
                           I
                           O
       b                T
 `
 t  b                 d
 n
  b     O
 q
     u
 ~
   b        	       
 
   b                 q
 
  b     O
         
 
   b                 
 
                       
 
  b     
         
 
   b     O
         
 
                       t
 
   b                 p
 e
   b                
 
                  
  
                       
 
   b                
 !
                      p
 %
                      )
     $                .
 9
   $7 1@              <
 E
   b                i
       b                H
 Q
   b                 q
 T
   b                W
 b
   b                 e
     d \     O
         j
     d \     O
         o
     d \\     O
         t
     d X\     O
         y
     d \     O
         ~
     d p\     O
         
     d T\     O
         
     d l\     O
         
     d \     O
         
     d \     O
         
     d \     O
         
     d h\     O
         
     d t\     O
         
     d x\     O
         
     d |\     O
         
     d d\     O
         
     d `\     O
         
     d ]     O
         
     d ]     O
         
     d ]     O
         
     d \     O
         
     d \     O
         
     d  ]     O
         
     d \     O
         
     d \     O
         
     d \     O
         
     d \     O
         
     d \     O
         
     d ]     O
         
     d ,]     O
         
     d \     O
          
     d  ]     O
         
     d 0]     O
         

     d \     O
         
     d \     O
         
     d \     O
         
     d \     O
         
     d \     O
         #
     d ]     O
         (
     d \     O
         -
     d \     O
         2
     d \     O
         7
     d \     O
         <
     d \     O
         A
     d \     O
         F
     d \     O
         K
     d \     O
         P
     d ]     O
         U
     d ]     O
         Z
     d $]     O
         _
     d (]     O
         d
     d \     O
         i
     d \     O
         n
     d \     O
                                                  
 b
 O
 (
 0
 
 E54: Unmatched %s( ]^-n\ E53: Unmatched %s%%( E865: (NFA) Regexp end encountered prematurely E866: (NFA regexp) Misplaced %c E877: (NFA regexp) Invalid character class: %ld E66: \z( not allowed here                                                                                            +                                                                                                               7                                                  =                  ?                          B                          E                                                                                          M   P 1P nrtebdoxuU E67: \z1 et al. not allowed here E70: Empty %s%%[] E769: Missing ] after %s[ mm  I uI E55: Unmatched %s) E69: Missing ] after %s%%[                 /                          /                  
        y      @  i
             
           
 D
 
 
 
 < x   2 j          A t   	     E	 u	 	 	 
 \
 
 
  C g   < u                         No Syntax items defined for this buffer     
    U    Y    ]    f    j    s    {        #
 	   #
 ,   (s
             {
    U    Y    ]    f    j        s                            #
 	   #
 ,   (s
                      .    /    0    1    3    2    4    8    
    ! ( / 6 = B G L Q Y a i q y                          " ' ,   O
 3 ; C K S [ c k s {                   
    U        Y    ]    f    j    s 
        !    "           %             %   ,    .    3        9 +   ? *   I '   S &   `    #
 	   #
 ,   (s
             .   m /   s 0   u 1   s 3   { 2           ۖ              # * 1 8 ? F M T [ b i p w ~        
    R
                GCC: (GNU) 4.7    	      GNU gold 1.11   A5   aeabi +   ARM v7 
A	
"vim [
 .shstrtab .interp .dynsym .dynstr .hash .rel.dyn .rel.plt .text .note.android.ident .ARM.exidx .ARM.extab .rodata .data.rel.ro.local .preinit_array .init_array .fini_array .data.rel.ro .dynamic .got .data .bss .comment .note.gnu.gold-version .ARM.attributes .gnu_debuglink                                                  4  4                             H  H  	                       
  
                    #                            )   	                         2   	      P  P  P              6                              ;         ,  ,  R	                A         
 
                   U     p   
 
  C               `         G
 G
                  k         xN
 xN
 \                 s         O ? *                          xz xj                            z j                            z j                            z j                           8 8                         H H 
                              }                           
 9E                       0       
                                
                        p        
 6                               &                                 .                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            &                                                            S                               B      We_go[                                                                                      ?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A   B   C    N             A  B  C                  "       &               KsA B C }                      }               >A B C }               Qb       }               \UA B C }               3<                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 S                               B      We_go[                                                                                      ?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A   B   C    N             A  B  C                  "       &               KsA B C }                      }               >A B C }               Qb       }               \UA B C }               3<                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 S                               B      We_go[                                                                                      ?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A   B   C    N             A  B  C                  "       &               KsA B C }                      }               >A B C }               Qb       }               \UA B C }               3<                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            