Windows Vista Forums
Vista Forums Home Join Vista Forums Donate Vista Tutorials Tags

Welcome to Vista Forums we are your forum to discuss Windows Vista x64 and x86 systems. Whether you need help or just want to post an idea you have on Vista, this is the forum for you.
Register at Vista forums...the world biggest Windows Vista resource Join Vista Forums Now

Go Back   Vista Forums > Microsoft Technical Newsgroups > PowerShell

ItemContent Variable Doesn't Evaluate Name

Update your Vista Drivers Update Your Drivers Now!!
Closed Thread
 
Thread Tools Display Modes
Old 10-11-2006   #1 (permalink)
Nick Howell
Guest


 

ItemContent Variable Doesn't Evaluate Name

When accessing an ItemContent variable, PowerShell doesn't let you do
anything fun, such as ${~/My` Documents/test.txt}; you have to write out
${C:/Documents` and` Settings/nlhowell/My` Documents/text.txt}. Also,
you can't use snapin-qualified or provider-qualified paths:

${FileSystem::C:/Documents` and` Settings/nlhowell/My` Documents/test.txt}
${Microsoft.PowerShell.Core\FileSystem::C:/Documents` and`
Settings/nlhowell/My` Documents/test.txt}

don't work.


So far, I've had pretty good success with augmenting tab-completion:
I've got PS to stop absolutizing relative paths, stopped it from quoting
paths with spaces (it escapes the spaces instead), added variable path
completion ($Home/<TAB> is the same as ~/<TAB>), and now this seems to
be working pretty well. I also added a variable expansion ($var!<TAB>
will substitute the value of $var), but I don't really use it...I think
I'm gonna take it out. Any other suggestions on how to soup it up?

Nick

My System SpecsSystem Spec
Old 10-11-2006   #2 (permalink)
Alex K. Angelopoulos [MVP]
Guest


 

Re: ItemContent Variable Doesn't Evaluate Name

I'd like to see what you have. Here's my personal shopping list, part of
which I've already implemented.

+ Alias expansion

+ Universalizing paths
I'd like to be able to force expansion of paths into universal form. For
example, if you're using Q:\netadmin and Q is actually the server share
\\DC01\Dsp I would like to be able to force
Q:\netadmin
to expand to
\\DC01\Dsp\netadmin
I'm not sure how useful this will be in general, but it's in part due to my
fetish about things like provider path mappings that may not be present
somewhere else.

+ Unexpanding paths
Like the Windows API function that tries to generalize paths using _SOME_
variables. PowerShell's Home and PsHome might be good, as well as the
environmental Temp,Windir,
CommonProgramFiles,AllusersProfile,UserName,UserDomain. Any more than these
would probably be a nuisance.



"Nick Howell" <msnews-0.5.nlhowell@spamgourmet.com> wrote in message
news:uX4k4PU7GHA.4476@TK2MSFTNGP04.phx.gbl...
> When accessing an ItemContent variable, PowerShell doesn't let you do
> anything fun, such as ${~/My` Documents/test.txt}; you have to write out
> ${C:/Documents` and` Settings/nlhowell/My` Documents/text.txt}. Also, you
> can't use snapin-qualified or provider-qualified paths:
>
> ${FileSystem::C:/Documents` and` Settings/nlhowell/My` Documents/test.txt}
> ${Microsoft.PowerShell.Core\FileSystem::C:/Documents` and`
> Settings/nlhowell/My` Documents/test.txt}
>
> don't work.
>
>
> So far, I've had pretty good success with augmenting tab-completion: I've
> got PS to stop absolutizing relative paths, stopped it from quoting paths
> with spaces (it escapes the spaces instead), added variable path
> completion ($Home/<TAB> is the same as ~/<TAB>), and now this seems to be
> working pretty well. I also added a variable expansion ($var!<TAB> will
> substitute the value of $var), but I don't really use it...I think I'm
> gonna take it out. Any other suggestions on how to soup it up?
>
> Nick



My System SpecsSystem Spec
Old 10-11-2006   #3 (permalink)
Nick Howell
Guest


 

Re: ItemContent Variable Doesn't Evaluate Name

My tabexpansion.ps1 is attached; I modified some of the cases by other
people to fix bugs (mostly with spaces) and add features; I think I've
got a basic list of the changes I made at the top of the file. Let me
know what you think.

Nick

Alex K. Angelopoulos [MVP] wrote:
> I'd like to see what you have. Here's my personal shopping list, part of
> which I've already implemented.
>
> + Alias expansion
>
> + Universalizing paths
> I'd like to be able to force expansion of paths into universal form. For
> example, if you're using Q:\netadmin and Q is actually the server share
> \\DC01\Dsp I would like to be able to force
> Q:\netadmin
> to expand to
> \\DC01\Dsp\netadmin
> I'm not sure how useful this will be in general, but it's in part due to my
> fetish about things like provider path mappings that may not be present
> somewhere else.
>
> + Unexpanding paths
> Like the Windows API function that tries to generalize paths using _SOME_
> variables. PowerShell's Home and PsHome might be good, as well as the
> environmental Temp,Windir,
> CommonProgramFiles,AllusersProfile,UserName,UserDomain. Any more than these
> would probably be a nuisance.
>
>
>
> "Nick Howell" <msnews-0.5.nlhowell@spamgourmet.com> wrote in message
> news:uX4k4PU7GHA.4476@TK2MSFTNGP04.phx.gbl...
>> When accessing an ItemContent variable, PowerShell doesn't let you do
>> anything fun, such as ${~/My` Documents/test.txt}; you have to write out
>> ${C:/Documents` and` Settings/nlhowell/My` Documents/text.txt}. Also, you
>> can't use snapin-qualified or provider-qualified paths:
>>
>> ${FileSystem::C:/Documents` and` Settings/nlhowell/My` Documents/test.txt}
>> ${Microsoft.PowerShell.Core\FileSystem::C:/Documents` and`
>> Settings/nlhowell/My` Documents/test.txt}
>>
>> don't work.
>>
>>
>> So far, I've had pretty good success with augmenting tab-completion: I've
>> got PS to stop absolutizing relative paths, stopped it from quoting paths
>> with spaces (it escapes the spaces instead), added variable path
>> completion ($Home/<TAB> is the same as ~/<TAB>), and now this seems to be
>> working pretty well. I also added a variable expansion ($var!<TAB> will
>> substitute the value of $var), but I don't really use it...I think I'm
>> gonna take it out. Any other suggestions on how to soup it up?
>>
>> Nick

>
>



ÿþf\0u\0n\0c\0t\0i\0o\0n\0 \0T\0a\0b\0E\0x\0p\0a\0n\0s\0i\0o\0n\0 \0{\0
\0
\0 \0#\0 \0T\0h\0i\0s\0 \0i\0s\0 \0t\0h\0e\0 \0d\0e\0f\0a\0u\0l\0t\0 \0f\0u\0n\0c\0t\0i\0o\0n\0 \0t\0h\0a\0t\0 \0g\0e\0t\0s\0 \0c\0a\0l\0l\0e\0d\0 \0f\0o\0r\0 \0t\0a\0b\0 \0e\0x\0p\0a\0n\0s\0i\0o\0n\0.\0
\0
\0 \0#\0 \0E\0d\0i\0t\0e\0d\0 \0b\0y\0 \0/\0\\0/\0\\0o\0\\0/\0\\0/\0 \0f\0r\0o\0m\0 \0t\0h\0e\0 \0o\0r\0i\0g\0i\0n\0a\0l\0 \0t\0o\0 \0h\0a\0n\0d\0l\0e\0 \0t\0a\0b\0 \0c\0o\0m\0p\0l\0e\0t\0i\0o\0n\0 \0o\0n\0 \0t\0y\0p\0e\0s\0.\0
\0
\0 \0#\0 \0E\0d\0i\0t\0e\0d\0 \0b\0y\0 \0D\0B\0M\0w\0S\0:\0 \0A\0d\0d\0e\0d\0 \0S\0c\0o\0p\0e\0d\0 \0v\0a\0r\0i\0a\0b\0l\0e\0 \0n\0a\0m\0e\0 \0e\0x\0p\0a\0n\0s\0i\0o\0n\0
\0
\0 \0#\0 \0E\0d\0i\0t\0e\0d\0 \0b\0y\0 \0N\0i\0c\0k\0 \0H\0o\0w\0e\0l\0l\0:\0 \0
\0
\0 \0#\0 \0M\0o\0d\0i\0f\0i\0e\0d\0 \0j\0u\0s\0t\0 \0a\0b\0o\0u\0t\0 \0e\0v\0e\0r\0y\0 \0c\0a\0s\0e\0 \0t\0o\0 \0e\0s\0c\0a\0p\0e\0 \0s\0p\0a\0c\0e\0s\0
\0
\0 \0#\0 \0A\0d\0d\0e\0d\0 \0v\0a\0r\0i\0a\0b\0l\0e\0-\0i\0n\0-\0p\0a\0t\0h\0 \0c\0o\0m\0p\0l\0e\0t\0i\0o\0n\0
\0
\0 \0#\0 \0A\0d\0d\0e\0d\0 \0r\0e\0l\0a\0t\0i\0v\0e\0 \0p\0a\0t\0h\0 \0p\0r\0e\0s\0e\0r\0v\0a\0t\0i\0o\0n\0
\0
\0 \0#\0 \0A\0d\0d\0e\0d\0 \0e\0n\0u\0m\0 \0p\0a\0r\0a\0m\0e\0t\0e\0r\0 \0c\0o\0m\0p\0l\0e\0t\0i\0o\0n\0
\0
\0 \0#\0 \0A\0d\0d\0e\0d\0 \0p\0a\0r\0a\0m\0e\0t\0e\0r\0-\0a\0l\0i\0a\0s\0i\0n\0g\0 \0c\0o\0m\0p\0l\0e\0t\0i\0o\0n\0
\0
\0 \0#\0 \0A\0d\0d\0e\0d\0 \0I\0t\0e\0m\0C\0o\0n\0t\0e\0n\0t\0 \0v\0a\0r\0i\0a\0b\0l\0e\0 \0c\0o\0m\0p\0l\0e\0t\0i\0o\0n\0
\0
\0 \0#\0 \0m\0a\0y\0b\0e\0 \0s\0o\0m\0e\0 \0m\0o\0r\0e\0;\0 \0c\0a\0n\0'\0t\0 \0r\0e\0m\0e\0m\0b\0e\0r\0
\0
\0
\0
\0 \0p\0a\0r\0a\0m\0(\0$\0l\0i\0n\0e\0,\0 \0$\0l\0a\0s\0t\0W\0o\0r\0d\0)\0
\0
\0
\0
\0 \0b\0e\0g\0i\0n\0 \0{\0
\0
\0 \0 \0$\0_\0M\0e\0t\0h\0o\0d\0 \0=\0 \0[\0M\0a\0n\0a\0g\0e\0m\0e\0n\0t\0.\0A\0u\0t\0o\0m\0a\0t\0i\0o\0n\0.\0P\0S\0M\0e\0m\0b\0e\0r\0T\0y\0p\0e\0s\0]\0 \0'\0M\0e\0t\0h\0o\0d\0,\0C\0o\0d\0e\0M\0e\0t\0h\0o\0d\0,\0S\0c\0r\0i\0p\0t\0M\0e\0t\0h\0o\0d\0,\0P\0a\0r\0a\0m\0e\0t\0e\0r\0i\0z\0e\0d\0P\0r\0o\0p\0e\0r\0t\0y\0'\0
\0
\0 \0 \0$\0_\0S\0c\0o\0p\0e\0N\0a\0m\0e\0s\0 \0=\0 \0@\0(\0"\0g\0l\0o\0b\0a\0l\0"\0,\0 \0"\0l\0o\0c\0a\0l\0"\0,\0 \0"\0s\0c\0r\0i\0p\0t\0"\0,\0 \0"\0p\0r\0i\0v\0a\0t\0e\0"\0)\0
\0
\0 \0}\0
\0
\0 \0p\0r\0o\0c\0e\0s\0s\0 \0{\0
\0
\0 \0 \0s\0w\0i\0t\0c\0h\0 \0-\0r\0e\0g\0e\0x\0 \0(\0$\0l\0a\0s\0t\0W\0o\0r\0d\0)\0
\0
\0 \0 \0{\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0H\0a\0n\0d\0l\0e\0 \0m\0e\0t\0h\0o\0d\0s\0 \0o\0f\0 \0T\0y\0p\0e\0s\0.\0.\0
\0
\0 \0 \0 \0'\0(\0\\0[\0.\0*\0\\0]\0)\0:\0:\0(\0\\0w\0*\0)\0'\0 \0{\0
\0
\0 \0 \0 \0 \0i\0n\0v\0o\0k\0e\0-\0e\0x\0p\0r\0e\0s\0s\0i\0o\0n\0 \0"\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0)\0 \0|\0 \0g\0m\0 \0-\0s\0t\0a\0t\0i\0c\0"\0 \0|\0 \0w\0h\0e\0r\0e\0 \0{\0$\0_\0.\0n\0a\0m\0e\0 \0-\0l\0i\0k\0e\0 \0"\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0)\0*\0"\0}\0 \0|\0%\0 \0{\0
\0
\0 \0 \0 \0 \0 \0i\0f\0 \0(\0$\0_\0.\0M\0e\0m\0b\0e\0r\0T\0y\0p\0e\0 \0-\0b\0a\0n\0d\0 \0$\0_\0M\0e\0t\0h\0o\0d\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0"\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0)\0:\0:\0$\0(\0$\0_\0.\0n\0a\0m\0e\0)\0"\0 \0+\0 \0'\0(\0'\0
\0
\0 \0 \0 \0 \0 \0}\0 \0E\0l\0s\0e\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0"\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0)\0:\0:\0$\0(\0$\0_\0.\0n\0a\0m\0e\0)\0"\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0b\0r\0e\0a\0k\0;\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0C\0a\0c\0h\0e\0 \0a\0n\0d\0 \0H\0a\0n\0d\0l\0e\0 \0n\0a\0m\0e\0s\0p\0a\0c\0e\0 \0a\0n\0d\0 \0T\0y\0p\0e\0N\0a\0m\0e\0s\0.\0.\0
\0
\0 \0 \0 \0'\0\\0[\0(\0.\0*\0)\0'\0 \0{\0
\0
\0 \0 \0 \0 \0$\0m\0a\0t\0c\0h\0e\0d\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0
\0
\0 \0 \0 \0 \0#\0 \0o\0n\0l\0y\0 \0t\0h\0e\0 \0f\0i\0r\0s\0t\0 \0t\0i\0m\0e\0 \0F\0i\0l\0l\0 \0a\0 \0D\0a\0t\0a\0T\0a\0b\0l\0e\0 \0w\0i\0t\0h\0 \0T\0y\0p\0e\0n\0a\0m\0e\0s\0,\0n\0a\0m\0e\0s\0p\0a\0c\0e\0s\0 \0a\0n\0d\0 \0d\0o\0t\0C\0o\0u\0n\0t\0 \0(\0l\0e\0v\0e\0l\0)\0
\0
\0 \0 \0 \0 \0i\0f\0 \0(\0!\0(\0$\0g\0l\0o\0b\0a\0l\0:\0d\0t\0A\0s\0s\0e\0m\0b\0l\0i\0e\0s\0)\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0g\0l\0o\0b\0a\0l\0:\0d\0t\0A\0s\0s\0e\0m\0b\0l\0i\0e\0s\0 \0=\0 \0n\0e\0w\0 \0d\0a\0t\0a\0.\0d\0a\0t\0a\0t\0a\0b\0l\0e\0
\0
\0 \0 \0 \0 \0 \0[\0V\0O\0I\0D\0]\0(\0$\0g\0l\0o\0b\0a\0l\0:\0d\0t\0A\0s\0s\0e\0m\0b\0l\0i\0e\0s\0.\0C\0o\0l\0u\0m\0n\0s\0.\0a\0d\0d\0(\0'\0n\0a\0m\0e\0'\0,\0[\0s\0t\0r\0i\0n\0g\0]\0)\0)\0
\0
\0 \0 \0 \0 \0 \0[\0V\0O\0I\0D\0]\0(\0$\0g\0l\0o\0b\0a\0l\0:\0d\0t\0A\0s\0s\0e\0m\0b\0l\0i\0e\0s\0.\0C\0o\0l\0u\0m\0n\0s\0.\0a\0d\0d\0(\0'\0D\0C\0'\0,\0[\0i\0n\0t\0]\0)\0)\0
\0
\0 \0 \0 \0 \0 \0[\0V\0O\0I\0D\0]\0(\0$\0g\0l\0o\0b\0a\0l\0:\0d\0t\0A\0s\0s\0e\0m\0b\0l\0i\0e\0s\0.\0C\0o\0l\0u\0m\0n\0s\0.\0a\0d\0d\0(\0'\0N\0S\0'\0,\0[\0s\0t\0r\0i\0n\0g\0]\0)\0)\0
\0
\0 \0 \0 \0 \0 \0$\0a\0s\0s\0e\0m\0b\0l\0i\0e\0s\0 \0=\0 \0[\0a\0p\0p\0d\0o\0m\0a\0i\0n\0]\0:\0:\0C\0u\0r\0r\0e\0n\0t\0D\0o\0m\0a\0i\0n\0.\0g\0e\0t\0a\0s\0s\0e\0m\0b\0l\0i\0e\0s\0(\0)\0
\0
\0 \0 \0 \0 \0 \0[\0v\0o\0i\0d\0]\0 \0(\0$\0a\0s\0s\0e\0m\0b\0l\0i\0e\0s\0 \0|\0 \0%\0 \0{\0$\0i\0 \0=\0 \00\0}\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0$\0i\0+\0+\0;\0
\0
\0 \0 \0 \0 \0 \0 \0[\0i\0n\0t\0]\0$\0a\0s\0s\0e\0m\0b\0l\0y\0P\0r\0o\0g\0r\0e\0s\0s\0 \0=\0 \0(\0$\0i\0 \0*\0 \01\00\00\0)\0 \0/\0 \0$\0a\0s\0s\0e\0m\0b\0l\0i\0e\0s\0.\0L\0e\0n\0g\0t\0h\0
\0
\0 \0 \0 \0 \0 \0 \0w\0r\0i\0t\0e\0-\0p\0r\0o\0g\0r\0e\0s\0s\0 \0C\0a\0c\0h\0i\0n\0g\0 \0"\0$\0a\0s\0s\0e\0m\0b\0l\0y\0P\0r\0o\0g\0r\0e\0s\0s\0"\0 \0-\0p\0e\0r\0c\0 \0$\0a\0s\0s\0e\0m\0b\0l\0y\0P\0r\0o\0g\0r\0e\0s\0s\0
\0
\0
\0
\0 \0 \0 \0 \0 \0 \0$\0t\0y\0p\0e\0s\0 \0=\0 \0$\0_\0.\0G\0e\0t\0T\0y\0p\0e\0s\0(\0)\0
\0
\0 \0 \0 \0 \0 \0 \0$\0t\0y\0p\0e\0s\0 \0|\0%\0 \0{\0$\0j\0 \0=\0 \00\0}\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0 \0$\0j\0+\0+\0;\0
\0
\0 \0 \0 \0 \0 \0 \0 \0i\0f\0 \0(\0(\0$\0j\0 \0%\0 \05\00\00\0)\0 \0-\0e\0q\0 \00\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0 \0 \0[\0i\0n\0t\0]\0$\0t\0y\0p\0e\0P\0r\0o\0g\0r\0e\0s\0s\0 \0=\0 \0(\0$\0j\0 \0*\0 \01\00\00\0)\0 \0/\0 \0$\0t\0y\0p\0e\0s\0.\0L\0e\0n\0g\0t\0h\0
\0
\0 \0 \0 \0 \0 \0 \0 \0 \0w\0r\0i\0t\0e\0-\0p\0r\0o\0g\0r\0e\0s\0s\0 \0"\0A\0d\0d\0i\0n\0g\0 \0t\0y\0p\0e\0s\0"\0 \0"\0$\0t\0y\0p\0e\0P\0r\0o\0g\0r\0e\0s\0s\0"\0 \0-\0p\0e\0r\0c\0 \0$\0t\0y\0p\0e\0P\0r\0o\0g\0r\0e\0s\0s\0 \0-\0i\0d\0 \01\0
\0
\0 \0 \0 \0 \0 \0 \0 \0}\0
\0
\0
\0
\0 \0 \0 \0 \0 \0 \0 \0$\0d\0c\0 \0=\0 \0$\0_\0.\0f\0u\0l\0l\0N\0a\0m\0e\0.\0s\0p\0l\0i\0t\0(\0"\0.\0"\0)\0.\0c\0o\0u\0n\0t\0 \0-\0 \01\0
\0
\0 \0 \0 \0 \0 \0 \0 \0$\0n\0s\0 \0=\0 \0$\0_\0.\0n\0a\0m\0e\0s\0p\0a\0c\0e\0
\0
\0 \0 \0 \0 \0 \0 \0 \0$\0g\0l\0o\0b\0a\0l\0:\0d\0t\0A\0s\0s\0e\0m\0b\0l\0i\0e\0s\0.\0r\0o\0w\0s\0.\0a\0d\0d\0(\0"\0$\0_\0"\0,\0$\0d\0c\0,\0$\0n\0s\0)\0
\0
\0 \0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0 \0 \0w\0r\0i\0t\0e\0-\0p\0r\0o\0g\0r\0e\0s\0s\0 \0"\0A\0d\0d\0i\0n\0g\0 \0t\0y\0p\0e\0s\0"\0 \0"\01\00\00\0"\0 \0-\0p\0e\0r\0c\0 \01\00\00\0 \0-\0i\0d\0 \01\0
\0
\0 \0 \0 \0 \0 \0}\0)\0
\0
\0 \0 \0 \0 \0}\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0a\0c\0t\0u\0a\0l\0 \0t\0a\0b\0 \0c\0o\0m\0p\0l\0e\0t\0i\0o\0n\0
\0
\0 \0 \0 \0 \0$\0d\0o\0t\0s\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0.\0s\0p\0l\0i\0t\0(\0"\0.\0"\0)\0.\0c\0o\0u\0n\0t\0 \0-\0 \01\0
\0
\0 \0 \0 \0 \0s\0w\0i\0t\0c\0h\0 \0(\0$\0d\0o\0t\0s\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \00\0 \0{\0"\0[\0S\0y\0s\0t\0e\0m\0"\0,\0"\0[\0M\0i\0c\0r\0o\0s\0o\0f\0t\0"\0}\0
\0
\0 \0 \0 \0 \0 \0D\0e\0f\0a\0u\0l\0t\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0$\0r\0e\0s\0 \0=\0 \0@\0(\0)\0
\0
\0 \0 \0 \0 \0 \0 \0$\0r\0e\0s\0 \0+\0=\0 \0$\0g\0l\0o\0b\0a\0l\0:\0d\0t\0A\0s\0s\0e\0m\0b\0l\0i\0e\0s\0.\0s\0e\0l\0e\0c\0t\0(\0"\0n\0s\0 \0l\0i\0k\0e\0 \0'\0$\0(\0$\0m\0a\0t\0c\0h\0e\0d\0)\0%\0'\0 \0a\0n\0d\0 \0d\0c\0 \0=\0 \0$\0(\0$\0d\0o\0t\0s\0 \0+\0 \01\0)\0"\0)\0 \0|\0 \0s\0e\0l\0e\0c\0t\0-\0o\0b\0j\0e\0c\0t\0 \0-\0u\0n\0i\0 \0n\0s\0 \0|\0%\0 \0{\0"\0[\0$\0(\0$\0_\0.\0n\0s\0)\0"\0}\0;\0
\0
\0 \0 \0 \0 \0 \0 \0$\0r\0e\0s\0 \0+\0=\0 \0$\0g\0l\0o\0b\0a\0l\0:\0d\0t\0A\0s\0s\0e\0m\0b\0l\0i\0e\0s\0.\0s\0e\0l\0e\0c\0t\0(\0"\0n\0a\0m\0e\0 \0l\0i\0k\0e\0 \0'\0$\0(\0$\0m\0a\0t\0c\0h\0e\0d\0)\0%\0'\0 \0a\0n\0d\0 \0d\0c\0 \0=\0 \0$\0d\0o\0t\0s\0"\0)\0 \0|\0%\0 \0{\0"\0[\0$\0(\0$\0_\0.\0n\0a\0m\0e\0)\0]\0"\0}\0
\0
\0 \0 \0 \0 \0 \0 \0$\0r\0e\0s\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0b\0r\0e\0a\0k\0;\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0H\0a\0n\0d\0l\0e\0 \0p\0r\0o\0p\0e\0r\0t\0y\0 \0a\0n\0d\0 \0m\0e\0t\0h\0o\0d\0 \0e\0x\0p\0a\0n\0s\0i\0o\0n\0
\0
\0 \0 \0 \0'\0\\0$\0(\0\\0w\0+\0)\0\\0.\0(\0\\0w\0*\0)\0'\0 \0{\0
\0
\0 \0 \0 \0 \0$\0v\0a\0r\0i\0a\0b\0l\0e\0N\0a\0m\0e\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0
\0
\0 \0 \0 \0 \0$\0v\0a\0l\0 \0=\0 \0(\0G\0e\0t\0-\0V\0a\0r\0i\0a\0b\0l\0e\0 \0-\0v\0a\0l\0u\0e\0 \0$\0v\0a\0r\0i\0a\0b\0l\0e\0N\0a\0m\0e\0)\0.\0T\0o\0S\0t\0r\0i\0n\0g\0(\0)\0
\0
\0 \0 \0 \0 \0$\0p\0a\0t\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0 \0+\0 \0'\0*\0'\0
\0
\0 \0 \0 \0 \0G\0e\0t\0-\0M\0e\0m\0b\0e\0r\0 \0-\0i\0n\0p\0u\0t\0o\0b\0j\0e\0c\0t\0 \0$\0v\0a\0l\0 \0|\0 \0w\0h\0e\0r\0e\0-\0o\0b\0j\0e\0c\0t\0 \0{\0$\0n\0 \0=\0 \0$\0_\0.\0n\0a\0m\0e\0;\0 \0$\0n\0 \0-\0l\0i\0k\0e\0 \0$\0p\0a\0t\0 \0-\0a\0n\0d\0 \0$\0n\0 \0-\0n\0o\0t\0m\0a\0t\0c\0h\0 \0'\0^\0[\0g\0e\0]\0e\0t\0_\0'\0}\0 \0|\0%\0 \0{\0
\0
\0 \0 \0 \0 \0 \0i\0f\0 \0(\0$\0_\0.\0M\0e\0m\0b\0e\0r\0T\0y\0p\0e\0 \0-\0b\0a\0n\0d\0 \0$\0_\0M\0e\0t\0h\0o\0d\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0#\0 \0R\0e\0t\0u\0r\0n\0 \0a\0 \0m\0e\0t\0h\0o\0d\0.\0.\0.\0
\0
\0 \0 \0 \0 \0 \0 \0'\0$\0'\0 \0+\0 \0$\0v\0a\0r\0i\0a\0b\0l\0e\0N\0a\0m\0e\0 \0+\0 \0'\0.\0'\0 \0+\0 \0$\0_\0.\0n\0a\0m\0e\0 \0+\0 \0'\0(\0'\0
\0
\0 \0 \0 \0 \0 \0}\0 \0e\0l\0s\0e\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0#\0 \0R\0e\0t\0u\0r\0n\0 \0a\0 \0p\0r\0o\0p\0e\0r\0t\0y\0.\0.\0.\0
\0
\0 \0 \0 \0 \0 \0 \0'\0$\0'\0 \0+\0 \0$\0v\0a\0r\0i\0a\0b\0l\0e\0N\0a\0m\0e\0 \0+\0 \0'\0.\0'\0 \0+\0 \0$\0_\0.\0n\0a\0m\0e\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0b\0r\0e\0a\0k\0;\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0H\0a\0n\0d\0l\0e\0 \0I\0t\0e\0m\0C\0o\0n\0t\0e\0n\0t\0 \0v\0a\0r\0i\0a\0b\0l\0e\0s\0,\0 \0s\0u\0c\0h\0 \0a\0s\0 \0$\0{\0C\0:\0/\0t\0e\0s\0t\0.\0t\0x\0t\0}\0 \0-\0 \0N\0i\0c\0k\0 \0H\0o\0w\0e\0l\0l\0
\0
\0 \0 \0 \0'\0^\0\\0$\0\\0{\0(\0.\0*\0)\0(\0/\0|\0\\0\\0)\0(\0.\0*\0?\0)\0(\0\\0}\0|\0)\0$\0'\0 \0{\0
\0
\0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0(\0$\0i\0t\0e\0m\0 \0i\0n\0 \0G\0e\0t\0-\0I\0t\0e\0m\0 \0-\0P\0a\0t\0h\0:\0(\0i\0n\0v\0o\0k\0e\0-\0e\0x\0p\0r\0e\0s\0s\0i\0o\0n\0 \0"\0`\0"\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0)\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0)\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\03\0]\0)\0*\0`\0"\0"\0)\0)\0
\0
\0 \0 \0 \0 \0{\0
\0
\0 \0 \0 \0 \0 \0#\0 \0i\0f\0 \0i\0t\0'\0s\0 \0a\0 \0l\0e\0a\0f\0 \0n\0o\0d\0e\0,\0 \0e\0x\0p\0a\0n\0d\0 \0i\0t\0 \0t\0o\0 \0f\0u\0l\0l\0-\0l\0e\0n\0g\0t\0h\0 \0(\0a\0s\0 \0i\0s\0 \0r\0e\0q\0u\0i\0r\0e\0d\0 \0b\0y\0 \0P\0S\0)\0
\0
\0 \0 \0 \0 \0 \0i\0f\0(\0!\0$\0i\0t\0e\0m\0.\0P\0S\0I\0s\0C\0o\0n\0t\0a\0i\0n\0e\0r\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0'\0$\0{\0'\0 \0+\0 \0$\0i\0t\0e\0m\0.\0P\0s\0P\0a\0t\0h\0.\0S\0u\0b\0s\0t\0r\0i\0n\0g\0(\0$\0i\0t\0e\0m\0.\0P\0s\0P\0a\0t\0h\0.\0I\0n\0d\0e\0x\0O\0f\0(\0'\0:\0:\0'\0)\0 \0+\0 \02\0)\0.\0R\0e\0p\0l\0a\0c\0e\0(\0"\0 \0"\0,\0 \0'\0`\0 \0'\0)\0 \0+\0 \0'\0}\0'\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0 \0#\0 \0o\0t\0h\0e\0r\0w\0i\0s\0e\0,\0 \0l\0e\0t\0 \0t\0h\0e\0m\0 \0c\0o\0n\0t\0i\0n\0u\0e\0 \0t\0y\0p\0i\0n\0g\0 \0(\0s\0i\0n\0c\0e\0 \0c\0o\0n\0t\0a\0i\0n\0e\0r\0s\0 \0c\0a\0n\0'\0t\0 \0b\0e\0 \0'\0g\0o\0t\0t\0e\0n\0'\0 \0a\0n\0y\0w\0a\0y\0s\0
\0
\0 \0 \0 \0 \0 \0e\0l\0s\0e\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0'\0$\0{\0'\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0 \0+\0 \0$\0i\0t\0e\0m\0.\0P\0s\0C\0h\0i\0l\0d\0N\0a\0m\0e\0.\0R\0e\0p\0l\0a\0c\0e\0(\0"\0 \0"\0,\0 \0'\0`\0 \0'\0)\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0b\0r\0e\0a\0k\0;\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0H\0a\0n\0d\0l\0e\0 \0e\0x\0p\0a\0n\0s\0i\0o\0n\0s\0 \0f\0o\0r\0 \0b\0o\0t\0h\0 \0"\0S\0c\0o\0p\0e\0 \0V\0a\0r\0i\0a\0b\0l\0e\0 \0N\0a\0m\0e\0"\0 \0a\0n\0d\0 \0"\0T\0y\0p\0e\0 \0V\0a\0r\0i\0a\0b\0l\0e\0 \0N\0a\0m\0e\0s\0"\0
\0
\0 \0 \0 \0'\0(\0.\0*\0^\0\\0$\0)\0(\0\\0w\0+\0)\0:\0(\0\\0w\0*\0)\0$\0'\0 \0{\0
\0
\0 \0 \0 \0 \0$\0t\0y\0p\0e\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0;\0 \0 \0 \0 \0#\0 \0f\0u\0n\0c\0t\0i\0o\0n\0,\0 \0v\0a\0r\0i\0a\0b\0l\0e\0,\0 \0e\0t\0c\0.\0.\0 \0t\0h\0a\0t\0 \0a\0r\0e\0 \0n\0o\0t\0 \0s\0c\0o\0p\0e\0s\0
\0
\0 \0 \0 \0 \0$\0p\0r\0e\0f\0i\0x\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0 \0+\0 \0$\0t\0y\0p\0e\0;\0 \0#\0 \0$\0 \0+\0 \0f\0u\0n\0c\0t\0i\0o\0n\0
\0
\0 \0 \0 \0 \0$\0t\0y\0p\0e\0N\0a\0m\0e\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\03\0]\0;\0 \0 \0 \0#\0 \0e\0.\0g\0.\0 \0i\0n\0 \0'\0$\0f\0u\0n\0c\0t\0i\0o\0n\0:\0C\0'\0,\0 \0v\0a\0l\0u\0e\0 \0w\0i\0l\0l\0 \0b\0e\0 \0'\0C\0'\0
\0
\0 \0 \0 \0
\0
\0 \0 \0 \0 \0i\0f\0 \0(\0$\0_\0S\0c\0o\0p\0e\0N\0a\0m\0e\0s\0 \0-\0c\0o\0n\0t\0a\0i\0n\0s\0 \0$\0t\0y\0p\0e\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0#\0 \0S\0c\0o\0p\0e\0 \0V\0a\0r\0i\0a\0b\0l\0e\0 \0N\0a\0m\0e\0 \0E\0x\0p\0a\0n\0s\0i\0o\0n\0
\0
\0 \0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0 \0(\0$\0s\0c\0o\0p\0e\0V\0a\0r\0i\0a\0b\0l\0e\0 \0i\0n\0
\0
\0 \0 \0 \0 \0 \0 \0(\0G\0e\0t\0-\0V\0a\0r\0i\0a\0b\0l\0e\0 \0"\0$\0(\0$\0t\0y\0p\0e\0N\0a\0m\0e\0)\0*\0"\0 \0-\0S\0c\0o\0p\0e\0 \0$\0t\0y\0p\0e\0 \0|\0 \0S\0o\0r\0t\0-\0O\0b\0j\0e\0c\0t\0 \0n\0a\0m\0e\0)\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0$\0p\0r\0e\0f\0i\0x\0 \0+\0 \0"\0:\0"\0 \0+\0 \0$\0s\0c\0o\0p\0e\0V\0a\0r\0i\0a\0b\0l\0e\0.\0N\0a\0m\0e\0.\0R\0e\0p\0l\0a\0c\0e\0(\0"\0 \0"\0,\0 \0'\0`\0 \0'\0)\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0}\0 \0e\0l\0s\0e\0 \0{\0
\0
\0 \0 \0 \0 \0 \0#\0 \0T\0y\0p\0e\0 \0n\0a\0m\0e\0 \0e\0x\0p\0a\0n\0s\0i\0o\0n\0(\0$\0f\0u\0n\0c\0t\0i\0o\0n\0:\0,\0 \0$\0v\0a\0r\0i\0a\0b\0l\0e\0,\0 \0$\0e\0n\0v\0:\0 \0,\0e\0t\0c\0)\0
\0
\0 \0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0 \0(\0$\0t\0 \0i\0n\0 \0(\0G\0e\0t\0-\0C\0h\0i\0l\0d\0I\0t\0e\0m\0 \0(\0$\0t\0y\0p\0e\0 \0+\0 \0"\0:\0"\0 \0+\0 \0$\0t\0y\0p\0e\0N\0a\0m\0e\0 \0+\0 \0'\0*\0'\0)\0 \0|\0 \0S\0o\0r\0t\0-\0O\0b\0j\0e\0c\0t\0 \0n\0a\0m\0e\0)\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0$\0p\0r\0e\0f\0i\0x\0 \0+\0 \0"\0:\0"\0 \0+\0 \0$\0t\0.\0N\0a\0m\0e\0.\0R\0e\0p\0l\0a\0c\0e\0(\0"\0 \0"\0,\0 \0'\0`\0 \0'\0)\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0b\0r\0e\0a\0k\0;\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0R\0e\0p\0l\0a\0c\0e\0 \0q\0u\0o\0t\0e\0d\0 \0s\0t\0r\0i\0n\0g\0s\0 \0w\0i\0t\0h\0 \0e\0s\0c\0a\0p\0e\0d\0 \0s\0t\0r\0i\0n\0g\0s\0 \0w\0h\0e\0n\0 \0i\0n\0 \0p\0a\0t\0h\0s\0 \0-\0 \0N\0i\0c\0k\0 \0H\0o\0w\0e\0l\0l\0
\0
\0 \0 \0 \0"\0(\0.\0*\0^\0)\0(\0'\0|\0`\0"\0)\0(\0.\0*\0)\0(\0'\0|\0`\0"\0)\0(\0/\0|\0\\0\\0)\0(\0.\0*\0)\0`\0$\0"\0 \0{\0
\0
\0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0(\0$\0f\0 \0i\0n\0 \0G\0e\0t\0-\0C\0h\0i\0l\0d\0I\0t\0e\0m\0 \0-\0P\0a\0t\0h\0:\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\03\0]\0 \0+\0 \0'\0*\0'\0)\0)\0
\0
\0 \0 \0 \0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0.\0R\0e\0p\0l\0a\0c\0e\0(\0"\0 \0"\0,\0 \0'\0`\0 \0'\0)\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0 \0+\0 \0$\0f\0.\0P\0s\0C\0h\0i\0l\0d\0N\0a\0m\0e\0.\0R\0e\0p\0l\0a\0c\0e\0(\0"\0 \0"\0,\0 \0'\0`\0 \0'\0)\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0M\0a\0k\0e\0 \0s\0u\0r\0e\0 \0p\0a\0t\0h\0s\0 \0a\0r\0e\0 \0l\0e\0f\0t\0 \0a\0s\0 \0t\0h\0e\0 \0u\0s\0e\0r\0 \0t\0y\0p\0e\0s\0 \0t\0h\0e\0m\0 \0-\0 \0N\0i\0c\0k\0 \0H\0o\0w\0e\0l\0l\0
\0
\0 \0 \0 \0'\0(\0.\0*\0^\0)\0(\0(\0(\0.\0*\0)\0(\0/\0|\0\\0\\0)\0)\0*\0)\0(\0.\0*\0)\0$\0'\0 \0{\0
\0
\0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0(\0$\0f\0 \0i\0n\0 \0G\0e\0t\0-\0C\0h\0i\0l\0d\0I\0t\0e\0m\0 \0-\0P\0a\0t\0h\0:\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\05\0]\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\06\0]\0 \0+\0 \0'\0*\0'\0)\0)\0
\0
\0 \0 \0 \0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0 \0+\0 \0$\0f\0.\0P\0s\0C\0h\0i\0l\0d\0N\0a\0m\0e\0.\0R\0e\0p\0l\0a\0c\0e\0(\0"\0 \0"\0,\0 \0'\0`\0 \0'\0)\0;\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0V\0a\0r\0i\0a\0b\0l\0e\0s\0 \0i\0n\0 \0p\0a\0t\0h\0s\0 \0-\0 \0N\0i\0c\0k\0 \0H\0o\0w\0e\0l\0l\0
\0
\0 \0 \0 \0'\0(\0.\0*\0^\0)\0\\0$\0(\0\\0w\0+\0)\0(\0.\0*\0)\0(\0/\0|\0\\0\\0)\0(\0.\0*\0)\0$\0'\0 \0{\0
\0
\0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0(\0$\0v\0 \0i\0n\0 \0G\0e\0t\0-\0C\0h\0i\0l\0d\0I\0t\0e\0m\0 \0(\0J\0o\0i\0n\0-\0P\0a\0t\0h\0 \0'\0v\0a\0r\0i\0a\0b\0l\0e\0:\0'\0 \0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0 \0+\0 \0'\0*\0'\0)\0)\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0v\0a\0l\0u\0e\0 \0=\0 \0$\0v\0.\0v\0a\0l\0u\0e\0
\0
\0 \0 \0 \0 \0 \0i\0f\0(\0$\0v\0a\0l\0u\0e\0 \0-\0i\0s\0n\0o\0t\0 \0[\0s\0t\0r\0i\0n\0g\0]\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0i\0f\0(\0$\0v\0a\0l\0u\0e\0.\0P\0s\0P\0a\0t\0h\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0 \0$\0v\0a\0l\0u\0e\0 \0=\0 \0$\0v\0a\0l\0u\0e\0.\0P\0s\0P\0a\0t\0h\0;\0
\0
\0 \0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0 \0 \0e\0l\0s\0e\0i\0f\0(\0$\0v\0a\0l\0u\0e\0.\0P\0a\0t\0h\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0 \0$\0v\0a\0l\0u\0e\0 \0=\0 \0$\0v\0a\0l\0u\0e\0.\0P\0a\0t\0h\0;\0
\0
\0 \0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0 \0 \0e\0l\0s\0e\0 \0{\0 \0$\0v\0a\0l\0u\0e\0 \0=\0 \0$\0v\0a\0l\0u\0e\0.\0T\0o\0S\0t\0r\0i\0n\0g\0(\0)\0;\0 \0}\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0(\0$\0f\0 \0i\0n\0 \0G\0e\0t\0-\0I\0t\0e\0m\0 \0(\0$\0v\0a\0l\0u\0e\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\03\0]\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\04\0]\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\05\0]\0 \0+\0 \0'\0*\0'\0)\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0 \0+\0 \0'\0$\0'\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\03\0]\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\04\0]\0 \0+\0 \0$\0f\0.\0P\0s\0C\0h\0i\0l\0d\0N\0a\0m\0e\0.\0R\0e\0p\0l\0a\0c\0e\0(\0"\0 \0"\0,\0 \0'\0`\0 \0'\0)\0;\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0b\0r\0e\0a\0k\0;\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0H\0a\0n\0d\0l\0e\0 \0v\0a\0r\0i\0a\0b\0l\0e\0 \0n\0a\0m\0e\0 \0e\0x\0p\0a\0n\0s\0i\0o\0n\0.\0.\0.\0
\0
\0 \0 \0 \0'\0(\0.\0*\0^\0\\0$\0)\0(\0\\0w\0*\0)\0(\0.\0*\0)\0$\0'\0 \0{\0
\0
\0 \0 \0 \0 \0$\0p\0r\0e\0f\0i\0x\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0
\0
\0 \0 \0 \0 \0$\0v\0a\0r\0N\0a\0m\0e\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0
\0
\0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0 \0(\0$\0v\0 \0i\0n\0 \0G\0e\0t\0-\0C\0h\0i\0l\0d\0I\0t\0e\0m\0 \0(\0J\0o\0i\0n\0-\0P\0a\0t\0h\0 \0'\0v\0a\0r\0i\0a\0b\0l\0e\0:\0'\0 \0(\0$\0v\0a\0r\0N\0a\0m\0e\0 \0+\0 \0'\0*\0'\0)\0)\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0p\0r\0e\0f\0i\0x\0 \0+\0 \0$\0v\0.\0n\0a\0m\0e\0.\0R\0e\0p\0l\0a\0c\0e\0(\0"\0 \0"\0,\0 \0'\0`\0 \0'\0)\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\03\0]\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0b\0r\0e\0a\0k\0;\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0F\0o\0r\0c\0e\0 \0i\0n\0-\0p\0l\0a\0c\0e\0 \0e\0x\0p\0a\0n\0s\0i\0o\0n\0 \0-\0 \0N\0i\0c\0k\0 \0H\0o\0w\0e\0l\0l\0
\0
\0 \0 \0 \0'\0(\0.\0*\0^\0)\0\\0$\0(\0\\0w\0+\0)\0!\0(\0.\0*\0)\0$\0'\0 \0{\0
\0
\0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0(\0$\0v\0 \0i\0n\0 \0G\0e\0t\0-\0C\0h\0i\0l\0d\0I\0t\0e\0m\0 \0(\0'\0v\0a\0r\0i\0a\0b\0l\0e\0:\0'\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0 \0+\0 \0'\0*\0'\0)\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0v\0.\0v\0a\0l\0u\0e\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\03\0]\0;\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0C\0o\0m\0p\0l\0e\0t\0e\0 \0e\0n\0u\0m\0 \0p\0a\0r\0a\0m\0e\0t\0e\0r\0s\0 \0-\0 \0N\0i\0c\0k\0 \0H\0o\0w\0e\0l\0l\0
\0
\0 \0 \0 \0'\0^\0-\0(\0[\0\\0w\00\0-\09\0]\0*\0)\0(\0:\0|\0(\0\\0s\0+\0)\0)\0(\0[\0\\0w\0]\0[\0\\0w\00\0-\09\0]\0*\0)\0?\0'\0 \0{\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0e\0x\0t\0r\0a\0c\0t\0 \0t\0h\0e\0 \0c\0o\0m\0m\0a\0n\0d\0 \0n\0a\0m\0e\0 \0f\0r\0o\0m\0 \0t\0h\0e\0 \0s\0t\0r\0i\0n\0g\0
\0
\0 \0 \0 \0 \0#\0 \0f\0i\0r\0s\0t\0 \0s\0p\0l\0i\0t\0 \0t\0h\0e\0 \0s\0t\0r\0i\0n\0g\0 \0i\0n\0t\0o\0 \0s\0t\0a\0t\0e\0m\0e\0n\0t\0s\0 \0a\0n\0d\0 \0p\0i\0p\0e\0l\0i\0n\0e\0 \0e\0l\0e\0m\0e\0n\0t\0s\0
\0
\0 \0 \0 \0 \0#\0 \0T\0h\0i\0s\0 \0d\0o\0e\0s\0n\0t\0 \0h\0a\0n\0d\0l\0e\0 \0s\0t\0r\0i\0n\0g\0s\0 \0h\0o\0w\0e\0v\0e\0r\0.\0
\0
\0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0[\0r\0e\0g\0e\0x\0]\0:\0:\0S\0p\0l\0i\0t\0(\0$\0l\0i\0n\0e\0,\0 \0'\0[\0|\0;\0]\0'\0)\0[\0-\01\0]\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0 \0E\0x\0t\0r\0a\0c\0t\0 \0t\0h\0e\0 \0t\0r\0a\0i\0l\0i\0n\0g\0 \0u\0n\0c\0l\0o\0s\0e\0d\0 \0b\0l\0o\0c\0k\0
\0
\0 \0 \0 \0 \0i\0f\0 \0(\0$\0c\0m\0d\0l\0e\0t\0 \0-\0m\0a\0t\0c\0h\0 \0'\0\\0{\0(\0[\0^\0\\0{\0\\0}\0]\0*\0)\0$\0'\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0
\0
\0 \0 \0 \0 \0}\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0E\0x\0t\0r\0a\0c\0t\0 \0t\0h\0e\0 \0l\0o\0n\0g\0e\0s\0t\0 \0u\0n\0c\0l\0o\0s\0e\0d\0 \0p\0a\0r\0e\0n\0t\0h\0e\0t\0i\0c\0a\0l\0 \0e\0x\0p\0r\0e\0s\0s\0i\0o\0n\0.\0.\0.\0
\0
\0 \0 \0 \0 \0i\0f\0 \0(\0$\0c\0m\0d\0l\0e\0t\0 \0-\0m\0a\0t\0c\0h\0 \0'\0\\0(\0(\0[\0^\0(\0)\0]\0*\0)\0$\0'\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0
\0
\0 \0 \0 \0 \0}\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0t\0a\0k\0e\0 \0t\0h\0e\0 \0f\0i\0r\0s\0t\0 \0s\0p\0a\0c\0e\0 \0s\0e\0p\0a\0r\0a\0t\0e\0d\0 \0t\0o\0k\0e\0n\0 \0o\0f\0 \0t\0h\0e\0 \0r\0e\0m\0a\0i\0n\0i\0n\0g\0 \0s\0t\0r\0i\0n\0g\0
\0
\0 \0 \0 \0 \0#\0 \0a\0s\0 \0t\0h\0e\0 \0c\0o\0m\0m\0a\0n\0d\0 \0t\0o\0 \0l\0o\0o\0k\0 \0u\0p\0.\0 \0T\0r\0i\0m\0 \0a\0n\0y\0 \0l\0e\0a\0d\0i\0n\0g\0 \0o\0r\0 \0t\0r\0a\0i\0l\0i\0n\0g\0 \0s\0p\0a\0c\0e\0s\0
\0
\0 \0 \0 \0 \0#\0 \0s\0o\0 \0y\0o\0u\0 \0d\0o\0n\0t\0 \0g\0e\0t\0 \0l\0e\0a\0d\0i\0n\0g\0 \0e\0m\0p\0t\0y\0 \0e\0l\0e\0m\0e\0n\0t\0s\0.\0
\0
\0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0$\0c\0m\0d\0l\0e\0t\0.\0T\0r\0i\0m\0(\0)\0.\0S\0p\0l\0i\0t\0(\0)\0[\00\0]\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0n\0o\0w\0 \0g\0e\0t\0 \0t\0h\0e\0 \0i\0n\0f\0o\0 \0o\0b\0j\0e\0c\0t\0 \0f\0o\0r\0 \0i\0t\0.\0.\0.\0
\0
\0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0@\0(\0G\0e\0t\0-\0C\0o\0m\0m\0a\0n\0d\0 \0-\0t\0y\0p\0e\0 \0'\0c\0m\0d\0l\0e\0t\0,\0a\0l\0i\0a\0s\0'\0 \0$\0c\0m\0d\0l\0e\0t\0)\0[\00\0]\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0l\0o\0o\0p\0 \0r\0e\0s\0o\0l\0v\0i\0n\0g\0 \0a\0l\0i\0a\0s\0e\0s\0.\0.\0.\0
\0
\0 \0 \0 \0 \0w\0h\0i\0l\0e\0 \0(\0$\0c\0m\0d\0l\0e\0t\0.\0C\0o\0m\0m\0a\0n\0d\0T\0y\0p\0e\0 \0-\0e\0q\0 \0'\0a\0l\0i\0a\0s\0'\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0@\0(\0G\0e\0t\0-\0C\0o\0m\0m\0a\0n\0d\0 \0-\0t\0y\0p\0e\0 \0'\0c\0m\0d\0l\0e\0t\0,\0a\0l\0i\0a\0s\0'\0 \0$\0c\0m\0d\0l\0e\0t\0.\0D\0e\0f\0i\0n\0i\0t\0i\0o\0n\0)\0[\00\0]\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0$\0f\0o\0u\0n\0d\0E\0n\0u\0m\0 \0=\0 \0$\0f\0a\0l\0s\0e\0;\0
\0
\0 \0 \0 \0 \0#\0 \0e\0x\0p\0a\0n\0d\0 \0t\0h\0e\0 \0p\0a\0r\0a\0m\0e\0t\0e\0r\0 \0s\0e\0t\0s\0 \0a\0n\0d\0 \0e\0m\0i\0t\0 \0t\0h\0e\0 \0m\0a\0t\0c\0h\0i\0n\0g\0 \0e\0l\0e\0m\0e\0n\0t\0s\0
\0
\0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0 \0(\0$\0n\0 \0i\0n\0 \0$\0c\0m\0d\0l\0e\0t\0.\0P\0a\0r\0a\0m\0e\0t\0e\0r\0S\0e\0t\0s\0 \0|\0 \0S\0e\0l\0e\0c\0t\0-\0O\0b\0j\0e\0c\0t\0 \0-\0e\0x\0p\0a\0n\0d\0 \0p\0a\0r\0a\0m\0e\0t\0e\0r\0s\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0a\0l\0i\0a\0s\0e\0s\0 \0=\0 \0$\0n\0.\0a\0l\0i\0a\0s\0e\0s\0 \0+\0 \0$\0n\0.\0n\0a\0m\0e\0
\0
\0 \0 \0 \0 \0 \0i\0f\0(\0$\0n\0.\0p\0a\0r\0a\0m\0e\0t\0e\0r\0t\0y\0p\0e\0.\0i\0s\0e\0n\0u\0m\0 \0-\0a\0n\0d\0 \0$\0a\0l\0i\0a\0s\0e\0s\0 \0-\0c\0o\0n\0t\0a\0i\0n\0s\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0$\0n\0.\0p\0a\0r\0a\0m\0e\0t\0e\0r\0t\0y\0p\0e\0.\0m\0e\0m\0b\0e\0r\0s\0 \0|\0?\0 \0{\0 \0$\0_\0.\0T\0o\0S\0t\0r\0i\0n\0g\0(\0)\0 \0-\0l\0i\0k\0e\0 \0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\04\0]\0 \0+\0 \0'\0*\0'\0)\0 \0}\0 \0|\0 \0%\0{\0 \0'\0-\0'\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0 \0+\0 \0$\0_\0.\0T\0o\0S\0t\0r\0i\0n\0g\0(\0)\0 \0}\0;\0
\0
\0 \0 \0 \0 \0 \0 \0$\0f\0o\0u\0n\0d\0E\0n\0u\0m\0 \0=\0 \0$\0t\0r\0u\0e\0;\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0i\0f\0(\0$\0f\0o\0u\0n\0d\0E\0n\0u\0m\0)\0 \0{\0 \0b\0r\0e\0a\0k\0;\0 \0}\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0D\0o\0 \0c\0o\0m\0p\0l\0e\0t\0i\0o\0n\0 \0o\0n\0 \0p\0a\0r\0a\0m\0e\0t\0e\0r\0s\0.\0.\0.\0
\0
\0 \0 \0 \0'\0^\0-\0(\0[\0\\0w\00\0-\09\0]\0*\0)\0$\0'\0 \0{\0
\0
\0 \0 \0 \0 \0$\0p\0a\0t\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0 \0+\0 \0'\0*\0'\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0e\0x\0t\0r\0a\0c\0t\0 \0t\0h\0e\0 \0c\0o\0m\0m\0a\0n\0d\0 \0n\0a\0m\0e\0 \0f\0r\0o\0m\0 \0t\0h\0e\0 \0s\0t\0r\0i\0n\0g\0
\0
\0 \0 \0 \0 \0#\0 \0f\0i\0r\0s\0t\0 \0s\0p\0l\0i\0t\0 \0t\0h\0e\0 \0s\0t\0r\0i\0n\0g\0 \0i\0n\0t\0o\0 \0s\0t\0a\0t\0e\0m\0e\0n\0t\0s\0 \0a\0n\0d\0 \0p\0i\0p\0e\0l\0i\0n\0e\0 \0e\0l\0e\0m\0e\0n\0t\0s\0
\0
\0 \0 \0 \0 \0#\0 \0T\0h\0i\0s\0 \0d\0o\0e\0s\0n\0t\0 \0h\0a\0n\0d\0l\0e\0 \0s\0t\0r\0i\0n\0g\0s\0 \0h\0o\0w\0e\0v\0e\0r\0.\0
\0
\0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0[\0r\0e\0g\0e\0x\0]\0:\0:\0S\0p\0l\0i\0t\0(\0$\0l\0i\0n\0e\0,\0 \0'\0[\0|\0;\0]\0'\0)\0[\0-\01\0]\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0 \0E\0x\0t\0r\0a\0c\0t\0 \0t\0h\0e\0 \0t\0r\0a\0i\0l\0i\0n\0g\0 \0u\0n\0c\0l\0o\0s\0e\0d\0 \0b\0l\0o\0c\0k\0
\0
\0 \0 \0 \0 \0i\0f\0 \0(\0$\0c\0m\0d\0l\0e\0t\0 \0-\0m\0a\0t\0c\0h\0 \0'\0\\0{\0(\0[\0^\0\\0{\0\\0}\0]\0*\0)\0$\0'\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0
\0
\0 \0 \0 \0 \0}\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0E\0x\0t\0r\0a\0c\0t\0 \0t\0h\0e\0 \0l\0o\0n\0g\0e\0s\0t\0 \0u\0n\0c\0l\0o\0s\0e\0d\0 \0p\0a\0r\0e\0n\0t\0h\0e\0t\0i\0c\0a\0l\0 \0e\0x\0p\0r\0e\0s\0s\0i\0o\0n\0.\0.\0.\0
\0
\0 \0 \0 \0 \0i\0f\0 \0(\0$\0c\0m\0d\0l\0e\0t\0 \0-\0m\0a\0t\0c\0h\0 \0'\0\\0(\0(\0[\0^\0(\0)\0]\0*\0)\0$\0'\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0
\0
\0 \0 \0 \0 \0}\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0t\0a\0k\0e\0 \0t\0h\0e\0 \0f\0i\0r\0s\0t\0 \0s\0p\0a\0c\0e\0 \0s\0e\0p\0a\0r\0a\0t\0e\0d\0 \0t\0o\0k\0e\0n\0 \0o\0f\0 \0t\0h\0e\0 \0r\0e\0m\0a\0i\0n\0i\0n\0g\0 \0s\0t\0r\0i\0n\0g\0
\0
\0 \0 \0 \0 \0#\0 \0a\0s\0 \0t\0h\0e\0 \0c\0o\0m\0m\0a\0n\0d\0 \0t\0o\0 \0l\0o\0o\0k\0 \0u\0p\0.\0 \0T\0r\0i\0m\0 \0a\0n\0y\0 \0l\0e\0a\0d\0i\0n\0g\0 \0o\0r\0 \0t\0r\0a\0i\0l\0i\0n\0g\0 \0s\0p\0a\0c\0e\0s\0
\0
\0 \0 \0 \0 \0#\0 \0s\0o\0 \0y\0o\0u\0 \0d\0o\0n\0t\0 \0g\0e\0t\0 \0l\0e\0a\0d\0i\0n\0g\0 \0e\0m\0p\0t\0y\0 \0e\0l\0e\0m\0e\0n\0t\0s\0.\0
\0
\0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0$\0c\0m\0d\0l\0e\0t\0.\0T\0r\0i\0m\0(\0)\0.\0S\0p\0l\0i\0t\0(\0)\0[\00\0]\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0n\0o\0w\0 \0g\0e\0t\0 \0t\0h\0e\0 \0i\0n\0f\0o\0 \0o\0b\0j\0e\0c\0t\0 \0f\0o\0r\0 \0i\0t\0.\0.\0.\0
\0
\0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0@\0(\0G\0e\0t\0-\0C\0o\0m\0m\0a\0n\0d\0 \0-\0t\0y\0p\0e\0 \0'\0c\0m\0d\0l\0e\0t\0,\0a\0l\0i\0a\0s\0'\0 \0$\0c\0m\0d\0l\0e\0t\0)\0[\00\0]\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0l\0o\0o\0p\0 \0r\0e\0s\0o\0l\0v\0i\0n\0g\0 \0a\0l\0i\0a\0s\0e\0s\0.\0.\0.\0
\0
\0 \0 \0 \0 \0w\0h\0i\0l\0e\0 \0(\0$\0c\0m\0d\0l\0e\0t\0.\0C\0o\0m\0m\0a\0n\0d\0T\0y\0p\0e\0 \0-\0e\0q\0 \0'\0a\0l\0i\0a\0s\0'\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0@\0(\0G\0e\0t\0-\0C\0o\0m\0m\0a\0n\0d\0 \0-\0t\0y\0p\0e\0 \0'\0c\0m\0d\0l\0e\0t\0,\0a\0l\0i\0a\0s\0'\0 \0$\0c\0m\0d\0l\0e\0t\0.\0D\0e\0f\0i\0n\0i\0t\0i\0o\0n\0)\0[\00\0]\0
\0
\0 \0 \0 \0 \0}\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0e\0x\0p\0a\0n\0d\0 \0t\0h\0e\0 \0p\0a\0r\0a\0m\0e\0t\0e\0r\0 \0s\0e\0t\0s\0 \0a\0n\0d\0 \0e\0m\0i\0t\0 \0t\0h\0e\0 \0m\0a\0t\0c\0h\0i\0n\0g\0 \0e\0l\0e\0m\0e\0n\0t\0s\0
\0
\0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0 \0(\0$\0n\0 \0i\0n\0 \0$\0c\0m\0d\0l\0e\0t\0.\0P\0a\0r\0a\0m\0e\0t\0e\0r\0S\0e\0t\0s\0 \0|\0 \0S\0e\0l\0e\0c\0t\0-\0O\0b\0j\0e\0c\0t\0 \0-\0e\0x\0p\0a\0n\0d\0 \0p\0a\0r\0a\0m\0e\0t\0e\0r\0s\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0a\0l\0i\0a\0s\0e\0s\0 \0=\0 \0$\0n\0.\0a\0l\0i\0a\0s\0e\0s\0 \0+\0 \0$\0n\0.\0n\0a\0m\0e\0
\0
\0 \0 \0 \0 \0 \0$\0a\0l\0i\0a\0s\0e\0s\0 \0|\0?\0 \0{\0 \0$\0_\0 \0-\0l\0i\0k\0e\0 \0$\0p\0a\0t\0 \0}\0 \0|\0%\0 \0{\0 \0'\0-\0'\0 \0+\0 \0$\0n\0.\0n\0a\0m\0e\0 \0}\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0b\0r\0e\0a\0k\0;\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0 \0 \0}\0 \0#\0 \0E\0O\0 \0s\0w\0i\0t\0c\0h\0
\0
\0 \0}\0 \0 \0#\0 \0E\0O\0 \0P\0r\0o\0c\0e\0s\0s\0
\0
\0}\0
My System SpecsSystem Spec
Old 10-11-2006   #4 (permalink)
Nick Howell
Guest


 

Re: ItemContent Variable Doesn't Evaluate Name

Found another bug with spaces in paths and some stuff with proper
ordering (of the cases); new version is attached.

Nick

Nick Howell wrote:
> My tabexpansion.ps1 is attached; I modified some of the cases by other
> people to fix bugs (mostly with spaces) and add features; I think I've
> got a basic list of the changes I made at the top of the file. Let me
> know what you think.
>
> Nick
>
> Alex K. Angelopoulos [MVP] wrote:
>> I'd like to see what you have. Here's my personal shopping list, part
>> of which I've already implemented.
>>
>> + Alias expansion
>>
>> + Universalizing paths
>> I'd like to be able to force expansion of paths into universal form.
>> For example, if you're using Q:\netadmin and Q is actually the server
>> share \\DC01\Dsp I would like to be able to force
>> Q:\netadmin
>> to expand to
>> \\DC01\Dsp\netadmin
>> I'm not sure how useful this will be in general, but it's in part due
>> to my fetish about things like provider path mappings that may not be
>> present somewhere else.
>>
>> + Unexpanding paths
>> Like the Windows API function that tries to generalize paths using
>> _SOME_ variables. PowerShell's Home and PsHome might be good, as well
>> as the environmental Temp,Windir,
>> CommonProgramFiles,AllusersProfile,UserName,UserDomain. Any more than
>> these would probably be a nuisance.
>>
>>
>>
>> "Nick Howell" <msnews-0.5.nlhowell@spamgourmet.com> wrote in message
>> news:uX4k4PU7GHA.4476@TK2MSFTNGP04.phx.gbl...
>>> When accessing an ItemContent variable, PowerShell doesn't let you do
>>> anything fun, such as ${~/My` Documents/test.txt}; you have to write
>>> out ${C:/Documents` and` Settings/nlhowell/My` Documents/text.txt}.
>>> Also, you can't use snapin-qualified or provider-qualified paths:
>>>
>>> ${FileSystem::C:/Documents` and` Settings/nlhowell/My`
>>> Documents/test.txt}
>>> ${Microsoft.PowerShell.Core\FileSystem::C:/Documents` and`
>>> Settings/nlhowell/My` Documents/test.txt}
>>>
>>> don't work.
>>>
>>>
>>> So far, I've had pretty good success with augmenting tab-completion:
>>> I've got PS to stop absolutizing relative paths, stopped it from
>>> quoting paths with spaces (it escapes the spaces instead), added
>>> variable path completion ($Home/<TAB> is the same as ~/<TAB>), and
>>> now this seems to be working pretty well. I also added a variable
>>> expansion ($var!<TAB> will substitute the value of $var), but I don't
>>> really use it...I think I'm gonna take it out. Any other suggestions
>>> on how to soup it up?
>>>
>>> Nick

>>
>>

>
>
> ------------------------------------------------------------------------
>
> ÿþf



ÿþf\0u\0n\0c\0t\0i\0o\0n\0 \0T\0a\0b\0E\0x\0p\0a\0n\0s\0i\0o\0n\0 \0{\0
\0
\0 \0#\0 \0T\0h\0i\0s\0 \0i\0s\0 \0t\0h\0e\0 \0d\0e\0f\0a\0u\0l\0t\0 \0f\0u\0n\0c\0t\0i\0o\0n\0 \0t\0h\0a\0t\0 \0g\0e\0t\0s\0 \0c\0a\0l\0l\0e\0d\0 \0f\0o\0r\0 \0t\0a\0b\0 \0e\0x\0p\0a\0n\0s\0i\0o\0n\0.\0
\0
\0 \0#\0 \0E\0d\0i\0t\0e\0d\0 \0b\0y\0 \0/\0\\0/\0\\0o\0\\0/\0\\0/\0 \0f\0r\0o\0m\0 \0t\0h\0e\0 \0o\0r\0i\0g\0i\0n\0a\0l\0 \0t\0o\0 \0h\0a\0n\0d\0l\0e\0 \0t\0a\0b\0 \0c\0o\0m\0p\0l\0e\0t\0i\0o\0n\0 \0o\0n\0 \0t\0y\0p\0e\0s\0.\0
\0
\0 \0#\0 \0E\0d\0i\0t\0e\0d\0 \0b\0y\0 \0D\0B\0M\0w\0S\0:\0 \0A\0d\0d\0e\0d\0 \0S\0c\0o\0p\0e\0d\0 \0v\0a\0r\0i\0a\0b\0l\0e\0 \0n\0a\0m\0e\0 \0e\0x\0p\0a\0n\0s\0i\0o\0n\0
\0
\0 \0#\0 \0E\0d\0i\0t\0e\0d\0 \0b\0y\0 \0N\0i\0c\0k\0 \0H\0o\0w\0e\0l\0l\0:\0 \0
\0
\0 \0#\0 \0M\0o\0d\0i\0f\0i\0e\0d\0 \0j\0u\0s\0t\0 \0a\0b\0o\0u\0t\0 \0e\0v\0e\0r\0y\0 \0c\0a\0s\0e\0 \0t\0o\0 \0e\0s\0c\0a\0p\0e\0 \0s\0p\0a\0c\0e\0s\0
\0
\0 \0#\0 \0A\0d\0d\0e\0d\0 \0v\0a\0r\0i\0a\0b\0l\0e\0-\0i\0n\0-\0p\0a\0t\0h\0 \0c\0o\0m\0p\0l\0e\0t\0i\0o\0n\0
\0
\0 \0#\0 \0A\0d\0d\0e\0d\0 \0r\0e\0l\0a\0t\0i\0v\0e\0 \0p\0a\0t\0h\0 \0p\0r\0e\0s\0e\0r\0v\0a\0t\0i\0o\0n\0
\0
\0 \0#\0 \0A\0d\0d\0e\0d\0 \0e\0n\0u\0m\0 \0p\0a\0r\0a\0m\0e\0t\0e\0r\0 \0c\0o\0m\0p\0l\0e\0t\0i\0o\0n\0
\0
\0 \0#\0 \0A\0d\0d\0e\0d\0 \0p\0a\0r\0a\0m\0e\0t\0e\0r\0-\0a\0l\0i\0a\0s\0i\0n\0g\0 \0c\0o\0m\0p\0l\0e\0t\0i\0o\0n\0
\0
\0 \0#\0 \0A\0d\0d\0e\0d\0 \0I\0t\0e\0m\0C\0o\0n\0t\0e\0n\0t\0 \0v\0a\0r\0i\0a\0b\0l\0e\0 \0c\0o\0m\0p\0l\0e\0t\0i\0o\0n\0
\0
\0 \0#\0 \0m\0a\0y\0b\0e\0 \0s\0o\0m\0e\0 \0m\0o\0r\0e\0;\0 \0c\0a\0n\0'\0t\0 \0r\0e\0m\0e\0m\0b\0e\0r\0
\0
\0
\0
\0 \0p\0a\0r\0a\0m\0(\0$\0l\0i\0n\0e\0,\0 \0$\0l\0a\0s\0t\0W\0o\0r\0d\0)\0
\0
\0
\0
\0 \0b\0e\0g\0i\0n\0 \0{\0
\0
\0 \0 \0$\0_\0M\0e\0t\0h\0o\0d\0 \0=\0 \0[\0M\0a\0n\0a\0g\0e\0m\0e\0n\0t\0.\0A\0u\0t\0o\0m\0a\0t\0i\0o\0n\0.\0P\0S\0M\0e\0m\0b\0e\0r\0T\0y\0p\0e\0s\0]\0 \0'\0M\0e\0t\0h\0o\0d\0,\0C\0o\0d\0e\0M\0e\0t\0h\0o\0d\0,\0S\0c\0r\0i\0p\0t\0M\0e\0t\0h\0o\0d\0,\0P\0a\0r\0a\0m\0e\0t\0e\0r\0i\0z\0e\0d\0P\0r\0o\0p\0e\0r\0t\0y\0'\0
\0
\0 \0 \0$\0_\0S\0c\0o\0p\0e\0N\0a\0m\0e\0s\0 \0=\0 \0@\0(\0"\0g\0l\0o\0b\0a\0l\0"\0,\0 \0"\0l\0o\0c\0a\0l\0"\0,\0 \0"\0s\0c\0r\0i\0p\0t\0"\0,\0 \0"\0p\0r\0i\0v\0a\0t\0e\0"\0)\0
\0
\0 \0}\0
\0
\0 \0p\0r\0o\0c\0e\0s\0s\0 \0{\0
\0
\0 \0 \0s\0w\0i\0t\0c\0h\0 \0-\0r\0e\0g\0e\0x\0 \0(\0$\0l\0a\0s\0t\0W\0o\0r\0d\0)\0
\0
\0 \0 \0{\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0H\0a\0n\0d\0l\0e\0 \0m\0e\0t\0h\0o\0d\0s\0 \0o\0f\0 \0T\0y\0p\0e\0s\0.\0.\0
\0
\0 \0 \0 \0'\0(\0\\0[\0.\0*\0\\0]\0)\0:\0:\0(\0\\0w\0*\0)\0'\0 \0{\0
\0
\0 \0 \0 \0 \0i\0n\0v\0o\0k\0e\0-\0e\0x\0p\0r\0e\0s\0s\0i\0o\0n\0 \0"\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0)\0 \0|\0 \0g\0m\0 \0-\0s\0t\0a\0t\0i\0c\0"\0 \0|\0 \0w\0h\0e\0r\0e\0-\0o\0b\0j\0e\0c\0t\0 \0{\0$\0_\0.\0n\0a\0m\0e\0 \0-\0l\0i\0k\0e\0 \0"\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0)\0*\0"\0}\0 \0|\0%\0 \0{\0
\0
\0 \0 \0 \0 \0 \0i\0f\0 \0(\0$\0_\0.\0M\0e\0m\0b\0e\0r\0T\0y\0p\0e\0 \0-\0b\0a\0n\0d\0 \0$\0_\0M\0e\0t\0h\0o\0d\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0"\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0)\0:\0:\0$\0(\0$\0_\0.\0n\0a\0m\0e\0)\0"\0 \0+\0 \0'\0(\0'\0
\0
\0 \0 \0 \0 \0 \0}\0 \0E\0l\0s\0e\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0"\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0)\0:\0:\0$\0(\0$\0_\0.\0n\0a\0m\0e\0)\0"\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0b\0r\0e\0a\0k\0;\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0C\0a\0c\0h\0e\0 \0a\0n\0d\0 \0H\0a\0n\0d\0l\0e\0 \0n\0a\0m\0e\0s\0p\0a\0c\0e\0 \0a\0n\0d\0 \0T\0y\0p\0e\0N\0a\0m\0e\0s\0.\0.\0
\0
\0 \0 \0 \0'\0\\0[\0(\0.\0*\0)\0'\0 \0{\0
\0
\0 \0 \0 \0 \0$\0m\0a\0t\0c\0h\0e\0d\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0
\0
\0 \0 \0 \0 \0#\0 \0o\0n\0l\0y\0 \0t\0h\0e\0 \0f\0i\0r\0s\0t\0 \0t\0i\0m\0e\0 \0F\0i\0l\0l\0 \0a\0 \0D\0a\0t\0a\0T\0a\0b\0l\0e\0 \0w\0i\0t\0h\0 \0T\0y\0p\0e\0n\0a\0m\0e\0s\0,\0n\0a\0m\0e\0s\0p\0a\0c\0e\0s\0 \0a\0n\0d\0 \0d\0o\0t\0C\0o\0u\0n\0t\0 \0(\0l\0e\0v\0e\0l\0)\0
\0
\0 \0 \0 \0 \0i\0f\0 \0(\0!\0(\0$\0g\0l\0o\0b\0a\0l\0:\0d\0t\0A\0s\0s\0e\0m\0b\0l\0i\0e\0s\0)\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0g\0l\0o\0b\0a\0l\0:\0d\0t\0A\0s\0s\0e\0m\0b\0l\0i\0e\0s\0 \0=\0 \0n\0e\0w\0 \0d\0a\0t\0a\0.\0d\0a\0t\0a\0t\0a\0b\0l\0e\0
\0
\0 \0 \0 \0 \0 \0[\0V\0O\0I\0D\0]\0(\0$\0g\0l\0o\0b\0a\0l\0:\0d\0t\0A\0s\0s\0e\0m\0b\0l\0i\0e\0s\0.\0C\0o\0l\0u\0m\0n\0s\0.\0a\0d\0d\0(\0'\0n\0a\0m\0e\0'\0,\0[\0s\0t\0r\0i\0n\0g\0]\0)\0)\0
\0
\0 \0 \0 \0 \0 \0[\0V\0O\0I\0D\0]\0(\0$\0g\0l\0o\0b\0a\0l\0:\0d\0t\0A\0s\0s\0e\0m\0b\0l\0i\0e\0s\0.\0C\0o\0l\0u\0m\0n\0s\0.\0a\0d\0d\0(\0'\0D\0C\0'\0,\0[\0i\0n\0t\0]\0)\0)\0
\0
\0 \0 \0 \0 \0 \0[\0V\0O\0I\0D\0]\0(\0$\0g\0l\0o\0b\0a\0l\0:\0d\0t\0A\0s\0s\0e\0m\0b\0l\0i\0e\0s\0.\0C\0o\0l\0u\0m\0n\0s\0.\0a\0d\0d\0(\0'\0N\0S\0'\0,\0[\0s\0t\0r\0i\0n\0g\0]\0)\0)\0
\0
\0 \0 \0 \0 \0 \0$\0a\0s\0s\0e\0m\0b\0l\0i\0e\0s\0 \0=\0 \0[\0a\0p\0p\0d\0o\0m\0a\0i\0n\0]\0:\0:\0C\0u\0r\0r\0e\0n\0t\0D\0o\0m\0a\0i\0n\0.\0g\0e\0t\0a\0s\0s\0e\0m\0b\0l\0i\0e\0s\0(\0)\0
\0
\0 \0 \0 \0 \0 \0[\0v\0o\0i\0d\0]\0 \0(\0$\0a\0s\0s\0e\0m\0b\0l\0i\0e\0s\0 \0|\0 \0%\0 \0{\0$\0i\0 \0=\0 \00\0}\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0$\0i\0+\0+\0;\0
\0
\0 \0 \0 \0 \0 \0 \0[\0i\0n\0t\0]\0$\0a\0s\0s\0e\0m\0b\0l\0y\0P\0r\0o\0g\0r\0e\0s\0s\0 \0=\0 \0(\0$\0i\0 \0*\0 \01\00\00\0)\0 \0/\0 \0$\0a\0s\0s\0e\0m\0b\0l\0i\0e\0s\0.\0L\0e\0n\0g\0t\0h\0
\0
\0 \0 \0 \0 \0 \0 \0w\0r\0i\0t\0e\0-\0p\0r\0o\0g\0r\0e\0s\0s\0 \0C\0a\0c\0h\0i\0n\0g\0 \0"\0$\0a\0s\0s\0e\0m\0b\0l\0y\0P\0r\0o\0g\0r\0e\0s\0s\0"\0 \0-\0p\0e\0r\0c\0 \0$\0a\0s\0s\0e\0m\0b\0l\0y\0P\0r\0o\0g\0r\0e\0s\0s\0
\0
\0
\0
\0 \0 \0 \0 \0 \0 \0$\0t\0y\0p\0e\0s\0 \0=\0 \0$\0_\0.\0G\0e\0t\0T\0y\0p\0e\0s\0(\0)\0
\0
\0 \0 \0 \0 \0 \0 \0$\0t\0y\0p\0e\0s\0 \0|\0%\0 \0{\0$\0j\0 \0=\0 \00\0}\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0 \0$\0j\0+\0+\0;\0
\0
\0 \0 \0 \0 \0 \0 \0 \0i\0f\0 \0(\0(\0$\0j\0 \0%\0 \05\00\00\0)\0 \0-\0e\0q\0 \00\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0 \0 \0[\0i\0n\0t\0]\0$\0t\0y\0p\0e\0P\0r\0o\0g\0r\0e\0s\0s\0 \0=\0 \0(\0$\0j\0 \0*\0 \01\00\00\0)\0 \0/\0 \0$\0t\0y\0p\0e\0s\0.\0L\0e\0n\0g\0t\0h\0
\0
\0 \0 \0 \0 \0 \0 \0 \0 \0w\0r\0i\0t\0e\0-\0p\0r\0o\0g\0r\0e\0s\0s\0 \0"\0A\0d\0d\0i\0n\0g\0 \0t\0y\0p\0e\0s\0"\0 \0"\0$\0t\0y\0p\0e\0P\0r\0o\0g\0r\0e\0s\0s\0"\0 \0-\0p\0e\0r\0c\0 \0$\0t\0y\0p\0e\0P\0r\0o\0g\0r\0e\0s\0s\0 \0-\0i\0d\0 \01\0
\0
\0 \0 \0 \0 \0 \0 \0 \0}\0
\0
\0
\0
\0 \0 \0 \0 \0 \0 \0 \0$\0d\0c\0 \0=\0 \0$\0_\0.\0f\0u\0l\0l\0N\0a\0m\0e\0.\0s\0p\0l\0i\0t\0(\0"\0.\0"\0)\0.\0c\0o\0u\0n\0t\0 \0-\0 \01\0
\0
\0 \0 \0 \0 \0 \0 \0 \0$\0n\0s\0 \0=\0 \0$\0_\0.\0n\0a\0m\0e\0s\0p\0a\0c\0e\0
\0
\0 \0 \0 \0 \0 \0 \0 \0$\0g\0l\0o\0b\0a\0l\0:\0d\0t\0A\0s\0s\0e\0m\0b\0l\0i\0e\0s\0.\0r\0o\0w\0s\0.\0a\0d\0d\0(\0"\0$\0_\0"\0,\0$\0d\0c\0,\0$\0n\0s\0)\0
\0
\0 \0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0 \0 \0w\0r\0i\0t\0e\0-\0p\0r\0o\0g\0r\0e\0s\0s\0 \0"\0A\0d\0d\0i\0n\0g\0 \0t\0y\0p\0e\0s\0"\0 \0"\01\00\00\0"\0 \0-\0p\0e\0r\0c\0 \01\00\00\0 \0-\0i\0d\0 \01\0
\0
\0 \0 \0 \0 \0 \0}\0)\0
\0
\0 \0 \0 \0 \0}\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0a\0c\0t\0u\0a\0l\0 \0t\0a\0b\0 \0c\0o\0m\0p\0l\0e\0t\0i\0o\0n\0
\0
\0 \0 \0 \0 \0$\0d\0o\0t\0s\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0.\0s\0p\0l\0i\0t\0(\0"\0.\0"\0)\0.\0c\0o\0u\0n\0t\0 \0-\0 \01\0
\0
\0 \0 \0 \0 \0s\0w\0i\0t\0c\0h\0 \0(\0$\0d\0o\0t\0s\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \00\0 \0{\0"\0[\0S\0y\0s\0t\0e\0m\0"\0,\0"\0[\0M\0i\0c\0r\0o\0s\0o\0f\0t\0"\0}\0
\0
\0 \0 \0 \0 \0 \0D\0e\0f\0a\0u\0l\0t\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0$\0r\0e\0s\0 \0=\0 \0@\0(\0)\0
\0
\0 \0 \0 \0 \0 \0 \0$\0r\0e\0s\0 \0+\0=\0 \0$\0g\0l\0o\0b\0a\0l\0:\0d\0t\0A\0s\0s\0e\0m\0b\0l\0i\0e\0s\0.\0s\0e\0l\0e\0c\0t\0(\0"\0n\0s\0 \0l\0i\0k\0e\0 \0'\0$\0(\0$\0m\0a\0t\0c\0h\0e\0d\0)\0%\0'\0 \0a\0n\0d\0 \0d\0c\0 \0=\0 \0$\0(\0$\0d\0o\0t\0s\0 \0+\0 \01\0)\0"\0)\0 \0|\0 \0s\0e\0l\0e\0c\0t\0-\0o\0b\0j\0e\0c\0t\0 \0-\0u\0n\0i\0 \0n\0s\0 \0|\0%\0 \0{\0"\0[\0$\0(\0$\0_\0.\0n\0s\0)\0"\0}\0;\0
\0
\0 \0 \0 \0 \0 \0 \0$\0r\0e\0s\0 \0+\0=\0 \0$\0g\0l\0o\0b\0a\0l\0:\0d\0t\0A\0s\0s\0e\0m\0b\0l\0i\0e\0s\0.\0s\0e\0l\0e\0c\0t\0(\0"\0n\0a\0m\0e\0 \0l\0i\0k\0e\0 \0'\0$\0(\0$\0m\0a\0t\0c\0h\0e\0d\0)\0%\0'\0 \0a\0n\0d\0 \0d\0c\0 \0=\0 \0$\0d\0o\0t\0s\0"\0)\0 \0|\0%\0 \0{\0"\0[\0$\0(\0$\0_\0.\0n\0a\0m\0e\0)\0]\0"\0}\0
\0
\0 \0 \0 \0 \0 \0 \0$\0r\0e\0s\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0b\0r\0e\0a\0k\0;\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0H\0a\0n\0d\0l\0e\0 \0p\0r\0o\0p\0e\0r\0t\0y\0 \0a\0n\0d\0 \0m\0e\0t\0h\0o\0d\0 \0e\0x\0p\0a\0n\0s\0i\0o\0n\0
\0
\0 \0 \0 \0'\0\\0$\0(\0\\0w\0+\0)\0\\0.\0(\0\\0w\0*\0)\0'\0 \0{\0
\0
\0 \0 \0 \0 \0$\0v\0a\0r\0i\0a\0b\0l\0e\0N\0a\0m\0e\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0
\0
\0 \0 \0 \0 \0$\0v\0a\0l\0 \0=\0 \0(\0G\0e\0t\0-\0V\0a\0r\0i\0a\0b\0l\0e\0 \0-\0v\0a\0l\0u\0e\0 \0$\0v\0a\0r\0i\0a\0b\0l\0e\0N\0a\0m\0e\0)\0.\0T\0o\0S\0t\0r\0i\0n\0g\0(\0)\0
\0
\0 \0 \0 \0 \0$\0p\0a\0t\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0 \0+\0 \0'\0*\0'\0
\0
\0 \0 \0 \0 \0G\0e\0t\0-\0M\0e\0m\0b\0e\0r\0 \0-\0i\0n\0p\0u\0t\0o\0b\0j\0e\0c\0t\0 \0$\0v\0a\0l\0 \0|\0 \0w\0h\0e\0r\0e\0-\0o\0b\0j\0e\0c\0t\0 \0{\0$\0n\0 \0=\0 \0$\0_\0.\0n\0a\0m\0e\0;\0 \0$\0n\0 \0-\0l\0i\0k\0e\0 \0$\0p\0a\0t\0 \0-\0a\0n\0d\0 \0$\0n\0 \0-\0n\0o\0t\0m\0a\0t\0c\0h\0 \0'\0^\0[\0g\0e\0]\0e\0t\0_\0'\0}\0 \0|\0%\0 \0{\0
\0
\0 \0 \0 \0 \0 \0i\0f\0 \0(\0$\0_\0.\0M\0e\0m\0b\0e\0r\0T\0y\0p\0e\0 \0-\0b\0a\0n\0d\0 \0$\0_\0M\0e\0t\0h\0o\0d\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0#\0 \0R\0e\0t\0u\0r\0n\0 \0a\0 \0m\0e\0t\0h\0o\0d\0.\0.\0.\0
\0
\0 \0 \0 \0 \0 \0 \0'\0$\0'\0 \0+\0 \0$\0v\0a\0r\0i\0a\0b\0l\0e\0N\0a\0m\0e\0 \0+\0 \0'\0.\0'\0 \0+\0 \0$\0_\0.\0n\0a\0m\0e\0 \0+\0 \0'\0(\0'\0
\0
\0 \0 \0 \0 \0 \0}\0 \0e\0l\0s\0e\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0#\0 \0R\0e\0t\0u\0r\0n\0 \0a\0 \0p\0r\0o\0p\0e\0r\0t\0y\0.\0.\0.\0
\0
\0 \0 \0 \0 \0 \0 \0'\0$\0'\0 \0+\0 \0$\0v\0a\0r\0i\0a\0b\0l\0e\0N\0a\0m\0e\0 \0+\0 \0'\0.\0'\0 \0+\0 \0$\0_\0.\0n\0a\0m\0e\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0b\0r\0e\0a\0k\0;\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0H\0a\0n\0d\0l\0e\0 \0I\0t\0e\0m\0C\0o\0n\0t\0e\0n\0t\0 \0v\0a\0r\0i\0a\0b\0l\0e\0s\0,\0 \0s\0u\0c\0h\0 \0a\0s\0 \0$\0{\0C\0:\0/\0t\0e\0s\0t\0.\0t\0x\0t\0}\0 \0-\0 \0N\0i\0c\0k\0 \0H\0o\0w\0e\0l\0l\0
\0
\0 \0 \0 \0'\0^\0\\0$\0\\0{\0(\0.\0*\0)\0(\0/\0|\0\\0\\0)\0(\0.\0*\0?\0)\0(\0\\0}\0|\0)\0$\0'\0 \0{\0
\0
\0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0(\0$\0i\0t\0e\0m\0 \0i\0n\0 \0G\0e\0t\0-\0I\0t\0e\0m\0 \0-\0P\0a\0t\0h\0:\0(\0i\0n\0v\0o\0k\0e\0-\0e\0x\0p\0r\0e\0s\0s\0i\0o\0n\0 \0"\0`\0"\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0)\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0)\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\03\0]\0)\0*\0`\0"\0"\0)\0)\0
\0
\0 \0 \0 \0 \0{\0
\0
\0 \0 \0 \0 \0 \0#\0 \0i\0f\0 \0i\0t\0'\0s\0 \0a\0 \0l\0e\0a\0f\0 \0n\0o\0d\0e\0,\0 \0e\0x\0p\0a\0n\0d\0 \0i\0t\0 \0t\0o\0 \0f\0u\0l\0l\0-\0l\0e\0n\0g\0t\0h\0 \0(\0a\0s\0 \0i\0s\0 \0r\0e\0q\0u\0i\0r\0e\0d\0 \0b\0y\0 \0P\0S\0)\0
\0
\0 \0 \0 \0 \0 \0i\0f\0(\0!\0$\0i\0t\0e\0m\0.\0P\0S\0I\0s\0C\0o\0n\0t\0a\0i\0n\0e\0r\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0'\0$\0{\0'\0 \0+\0 \0$\0i\0t\0e\0m\0.\0P\0s\0P\0a\0t\0h\0.\0S\0u\0b\0s\0t\0r\0i\0n\0g\0(\0$\0i\0t\0e\0m\0.\0P\0s\0P\0a\0t\0h\0.\0I\0n\0d\0e\0x\0O\0f\0(\0'\0:\0:\0'\0)\0 \0+\0 \02\0)\0.\0R\0e\0p\0l\0a\0c\0e\0(\0"\0 \0"\0,\0 \0'\0`\0 \0'\0)\0 \0+\0 \0'\0}\0'\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0 \0#\0 \0o\0t\0h\0e\0r\0w\0i\0s\0e\0,\0 \0l\0e\0t\0 \0t\0h\0e\0m\0 \0c\0o\0n\0t\0i\0n\0u\0e\0 \0t\0y\0p\0i\0n\0g\0 \0(\0s\0i\0n\0c\0e\0 \0c\0o\0n\0t\0a\0i\0n\0e\0r\0s\0 \0c\0a\0n\0'\0t\0 \0b\0e\0 \0'\0g\0o\0t\0t\0e\0n\0'\0 \0a\0n\0y\0w\0a\0y\0s\0
\0
\0 \0 \0 \0 \0 \0e\0l\0s\0e\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0'\0$\0{\0'\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0 \0+\0 \0$\0i\0t\0e\0m\0.\0P\0s\0C\0h\0i\0l\0d\0N\0a\0m\0e\0.\0R\0e\0p\0l\0a\0c\0e\0(\0"\0 \0"\0,\0 \0'\0`\0 \0'\0)\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0b\0r\0e\0a\0k\0;\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0H\0a\0n\0d\0l\0e\0 \0e\0x\0p\0a\0n\0s\0i\0o\0n\0s\0 \0f\0o\0r\0 \0b\0o\0t\0h\0 \0"\0S\0c\0o\0p\0e\0 \0V\0a\0r\0i\0a\0b\0l\0e\0 \0N\0a\0m\0e\0"\0 \0a\0n\0d\0 \0"\0T\0y\0p\0e\0 \0V\0a\0r\0i\0a\0b\0l\0e\0 \0N\0a\0m\0e\0s\0"\0
\0
\0 \0 \0 \0'\0(\0.\0*\0^\0\\0$\0)\0(\0\\0w\0+\0)\0:\0(\0\\0w\0*\0)\0$\0'\0 \0{\0
\0
\0 \0 \0 \0 \0$\0t\0y\0p\0e\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0;\0 \0 \0 \0 \0#\0 \0f\0u\0n\0c\0t\0i\0o\0n\0,\0 \0v\0a\0r\0i\0a\0b\0l\0e\0,\0 \0e\0t\0c\0.\0.\0 \0t\0h\0a\0t\0 \0a\0r\0e\0 \0n\0o\0t\0 \0s\0c\0o\0p\0e\0s\0
\0
\0 \0 \0 \0 \0$\0p\0r\0e\0f\0i\0x\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0 \0+\0 \0$\0t\0y\0p\0e\0;\0 \0#\0 \0$\0 \0+\0 \0f\0u\0n\0c\0t\0i\0o\0n\0
\0
\0 \0 \0 \0 \0$\0t\0y\0p\0e\0N\0a\0m\0e\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\03\0]\0;\0 \0 \0 \0#\0 \0e\0.\0g\0.\0 \0i\0n\0 \0'\0$\0f\0u\0n\0c\0t\0i\0o\0n\0:\0C\0'\0,\0 \0v\0a\0l\0u\0e\0 \0w\0i\0l\0l\0 \0b\0e\0 \0'\0C\0'\0
\0
\0 \0 \0 \0
\0
\0 \0 \0 \0 \0i\0f\0 \0(\0$\0_\0S\0c\0o\0p\0e\0N\0a\0m\0e\0s\0 \0-\0c\0o\0n\0t\0a\0i\0n\0s\0 \0$\0t\0y\0p\0e\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0#\0 \0S\0c\0o\0p\0e\0 \0V\0a\0r\0i\0a\0b\0l\0e\0 \0N\0a\0m\0e\0 \0E\0x\0p\0a\0n\0s\0i\0o\0n\0
\0
\0 \0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0 \0(\0$\0s\0c\0o\0p\0e\0V\0a\0r\0i\0a\0b\0l\0e\0 \0i\0n\0
\0
\0 \0 \0 \0 \0 \0 \0(\0G\0e\0t\0-\0V\0a\0r\0i\0a\0b\0l\0e\0 \0"\0$\0(\0$\0t\0y\0p\0e\0N\0a\0m\0e\0)\0*\0"\0 \0-\0S\0c\0o\0p\0e\0 \0$\0t\0y\0p\0e\0 \0|\0 \0S\0o\0r\0t\0-\0O\0b\0j\0e\0c\0t\0 \0n\0a\0m\0e\0)\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0$\0p\0r\0e\0f\0i\0x\0 \0+\0 \0"\0:\0"\0 \0+\0 \0$\0s\0c\0o\0p\0e\0V\0a\0r\0i\0a\0b\0l\0e\0.\0N\0a\0m\0e\0.\0R\0e\0p\0l\0a\0c\0e\0(\0"\0 \0"\0,\0 \0'\0`\0 \0'\0)\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0}\0 \0e\0l\0s\0e\0 \0{\0
\0
\0 \0 \0 \0 \0 \0#\0 \0T\0y\0p\0e\0 \0n\0a\0m\0e\0 \0e\0x\0p\0a\0n\0s\0i\0o\0n\0(\0$\0f\0u\0n\0c\0t\0i\0o\0n\0:\0,\0 \0$\0v\0a\0r\0i\0a\0b\0l\0e\0,\0 \0$\0e\0n\0v\0:\0 \0,\0e\0t\0c\0)\0
\0
\0 \0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0 \0(\0$\0t\0 \0i\0n\0 \0(\0G\0e\0t\0-\0C\0h\0i\0l\0d\0I\0t\0e\0m\0 \0(\0$\0t\0y\0p\0e\0 \0+\0 \0"\0:\0"\0 \0+\0 \0$\0t\0y\0p\0e\0N\0a\0m\0e\0 \0+\0 \0'\0*\0'\0)\0 \0|\0 \0S\0o\0r\0t\0-\0O\0b\0j\0e\0c\0t\0 \0n\0a\0m\0e\0)\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0$\0p\0r\0e\0f\0i\0x\0 \0+\0 \0"\0:\0"\0 \0+\0 \0$\0t\0.\0N\0a\0m\0e\0.\0R\0e\0p\0l\0a\0c\0e\0(\0"\0 \0"\0,\0 \0'\0`\0 \0'\0)\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0b\0r\0e\0a\0k\0;\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0R\0e\0p\0l\0a\0c\0e\0 \0q\0u\0o\0t\0e\0d\0 \0s\0t\0r\0i\0n\0g\0s\0 \0w\0i\0t\0h\0 \0e\0s\0c\0a\0p\0e\0d\0 \0s\0t\0r\0i\0n\0g\0s\0 \0w\0h\0e\0n\0 \0i\0n\0 \0p\0a\0t\0h\0s\0 \0-\0 \0N\0i\0c\0k\0 \0H\0o\0w\0e\0l\0l\0
\0
\0 \0 \0 \0"\0(\0.\0*\0^\0)\0(\0'\0|\0`\0"\0)\0(\0.\0*\0)\0(\0'\0|\0`\0"\0)\0(\0/\0|\0\\0\\0)\0(\0.\0*\0)\0`\0$\0"\0 \0{\0
\0
\0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0(\0$\0f\0 \0i\0n\0 \0G\0e\0t\0-\0C\0h\0i\0l\0d\0I\0t\0e\0m\0 \0-\0P\0a\0t\0h\0:\0(\0i\0n\0v\0o\0k\0e\0-\0e\0x\0p\0r\0e\0s\0s\0i\0o\0n\0 \0"\0`\0"\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0)\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0)\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\03\0]\0)\0*\0`\0"\0"\0)\0)\0
\0
\0 \0 \0 \0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0.\0R\0e\0p\0l\0a\0c\0e\0(\0"\0 \0"\0,\0 \0'\0`\0 \0'\0)\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0 \0+\0 \0$\0f\0.\0P\0s\0C\0h\0i\0l\0d\0N\0a\0m\0e\0.\0R\0e\0p\0l\0a\0c\0e\0(\0"\0 \0"\0,\0 \0'\0`\0 \0'\0)\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0b\0r\0e\0a\0k\0;\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0V\0a\0r\0i\0a\0b\0l\0e\0s\0 \0i\0n\0 \0p\0a\0t\0h\0s\0 \0-\0 \0N\0i\0c\0k\0 \0H\0o\0w\0e\0l\0l\0
\0
\0 \0 \0 \0'\0(\0.\0*\0^\0)\0\\0$\0(\0\\0w\0+\0)\0(\0.\0*\0)\0(\0/\0|\0\\0\\0)\0(\0.\0*\0)\0$\0'\0 \0{\0
\0
\0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0(\0$\0v\0 \0i\0n\0 \0G\0e\0t\0-\0C\0h\0i\0l\0d\0I\0t\0e\0m\0 \0(\0J\0o\0i\0n\0-\0P\0a\0t\0h\0 \0'\0v\0a\0r\0i\0a\0b\0l\0e\0:\0'\0 \0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0 \0+\0 \0'\0*\0'\0)\0)\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0v\0a\0l\0u\0e\0 \0=\0 \0$\0v\0.\0v\0a\0l\0u\0e\0
\0
\0 \0 \0 \0 \0 \0i\0f\0(\0$\0v\0a\0l\0u\0e\0 \0-\0i\0s\0n\0o\0t\0 \0[\0s\0t\0r\0i\0n\0g\0]\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0i\0f\0(\0$\0v\0a\0l\0u\0e\0.\0P\0s\0P\0a\0t\0h\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0 \0$\0v\0a\0l\0u\0e\0 \0=\0 \0$\0v\0a\0l\0u\0e\0.\0P\0s\0P\0a\0t\0h\0;\0
\0
\0 \0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0 \0 \0e\0l\0s\0e\0i\0f\0(\0$\0v\0a\0l\0u\0e\0.\0P\0a\0t\0h\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0 \0$\0v\0a\0l\0u\0e\0 \0=\0 \0$\0v\0a\0l\0u\0e\0.\0P\0a\0t\0h\0;\0
\0
\0 \0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0 \0 \0e\0l\0s\0e\0 \0{\0 \0$\0v\0a\0l\0u\0e\0 \0=\0 \0$\0v\0a\0l\0u\0e\0.\0T\0o\0S\0t\0r\0i\0n\0g\0(\0)\0;\0 \0}\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0(\0$\0f\0 \0i\0n\0 \0G\0e\0t\0-\0I\0t\0e\0m\0 \0(\0i\0n\0v\0o\0k\0e\0-\0e\0x\0p\0r\0e\0s\0s\0i\0o\0n\0 \0"\0`\0"\0$\0v\0a\0l\0u\0e\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\03\0]\0)\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\04\0]\0)\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\05\0]\0)\0*\0`\0"\0"\0)\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0 \0+\0 \0'\0$\0'\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\03\0]\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\04\0]\0 \0+\0 \0$\0f\0.\0P\0s\0C\0h\0i\0l\0d\0N\0a\0m\0e\0.\0R\0e\0p\0l\0a\0c\0e\0(\0"\0 \0"\0,\0 \0'\0`\0 \0'\0)\0;\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0b\0r\0e\0a\0k\0;\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0H\0a\0n\0d\0l\0e\0 \0v\0a\0r\0i\0a\0b\0l\0e\0 \0n\0a\0m\0e\0 \0e\0x\0p\0a\0n\0s\0i\0o\0n\0.\0.\0.\0
\0
\0 \0 \0 \0'\0(\0.\0*\0^\0\\0$\0)\0(\0\\0w\0*\0)\0(\0.\0*\0)\0$\0'\0 \0{\0
\0
\0 \0 \0 \0 \0$\0p\0r\0e\0f\0i\0x\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0
\0
\0 \0 \0 \0 \0$\0v\0a\0r\0N\0a\0m\0e\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0
\0
\0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0 \0(\0$\0v\0 \0i\0n\0 \0G\0e\0t\0-\0C\0h\0i\0l\0d\0I\0t\0e\0m\0 \0(\0J\0o\0i\0n\0-\0P\0a\0t\0h\0 \0'\0v\0a\0r\0i\0a\0b\0l\0e\0:\0'\0 \0(\0$\0v\0a\0r\0N\0a\0m\0e\0 \0+\0 \0'\0*\0'\0)\0)\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0p\0r\0e\0f\0i\0x\0 \0+\0 \0$\0v\0.\0n\0a\0m\0e\0.\0R\0e\0p\0l\0a\0c\0e\0(\0"\0 \0"\0,\0 \0'\0`\0 \0'\0)\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\03\0]\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0b\0r\0e\0a\0k\0;\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0F\0o\0r\0c\0e\0 \0i\0n\0-\0p\0l\0a\0c\0e\0 \0e\0x\0p\0a\0n\0s\0i\0o\0n\0 \0-\0 \0N\0i\0c\0k\0 \0H\0o\0w\0e\0l\0l\0
\0
\0 \0 \0 \0'\0(\0.\0*\0^\0)\0\\0$\0(\0\\0w\0+\0)\0!\0(\0.\0*\0)\0$\0'\0 \0{\0
\0
\0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0(\0$\0v\0 \0i\0n\0 \0G\0e\0t\0-\0C\0h\0i\0l\0d\0I\0t\0e\0m\0 \0(\0'\0v\0a\0r\0i\0a\0b\0l\0e\0:\0'\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0 \0+\0 \0'\0*\0'\0)\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0v\0.\0v\0a\0l\0u\0e\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\03\0]\0;\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0b\0r\0e\0a\0k\0;\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0 \0 \0 \0
\0
\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0M\0a\0k\0e\0 \0s\0u\0r\0e\0 \0p\0a\0t\0h\0s\0 \0a\0r\0e\0 \0l\0e\0f\0t\0 \0a\0s\0 \0t\0h\0e\0 \0u\0s\0e\0r\0 \0t\0y\0p\0e\0s\0 \0t\0h\0e\0m\0 \0-\0 \0N\0i\0c\0k\0 \0H\0o\0w\0e\0l\0l\0
\0
\0 \0 \0 \0'\0(\0.\0*\0^\0)\0(\0(\0(\0.\0*\0)\0(\0/\0|\0\\0\\0)\0)\0*\0)\0(\0.\0*\0)\0$\0'\0 \0{\0
\0
\0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0(\0$\0f\0 \0i\0n\0 \0G\0e\0t\0-\0C\0h\0i\0l\0d\0I\0t\0e\0m\0 \0-\0P\0a\0t\0h\0:\0(\0i\0n\0v\0o\0k\0e\0-\0e\0x\0p\0r\0e\0s\0s\0i\0o\0n\0 \0"\0`\0"\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0)\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\05\0]\0)\0$\0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\06\0]\0)\0*\0`\0"\0"\0)\0)\0
\0
\0 \0 \0 \0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0 \0+\0 \0$\0f\0.\0P\0s\0C\0h\0i\0l\0d\0N\0a\0m\0e\0.\0R\0e\0p\0l\0a\0c\0e\0(\0"\0 \0"\0,\0 \0'\0`\0 \0'\0)\0;\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0b\0r\0e\0a\0k\0;\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0C\0o\0m\0p\0l\0e\0t\0e\0 \0e\0n\0u\0m\0 \0p\0a\0r\0a\0m\0e\0t\0e\0r\0s\0 \0-\0 \0N\0i\0c\0k\0 \0H\0o\0w\0e\0l\0l\0
\0
\0 \0 \0 \0'\0^\0-\0(\0[\0\\0w\00\0-\09\0]\0*\0)\0(\0:\0|\0(\0\\0s\0+\0)\0)\0(\0[\0\\0w\0]\0[\0\\0w\00\0-\09\0]\0*\0)\0?\0'\0 \0{\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0e\0x\0t\0r\0a\0c\0t\0 \0t\0h\0e\0 \0c\0o\0m\0m\0a\0n\0d\0 \0n\0a\0m\0e\0 \0f\0r\0o\0m\0 \0t\0h\0e\0 \0s\0t\0r\0i\0n\0g\0
\0
\0 \0 \0 \0 \0#\0 \0f\0i\0r\0s\0t\0 \0s\0p\0l\0i\0t\0 \0t\0h\0e\0 \0s\0t\0r\0i\0n\0g\0 \0i\0n\0t\0o\0 \0s\0t\0a\0t\0e\0m\0e\0n\0t\0s\0 \0a\0n\0d\0 \0p\0i\0p\0e\0l\0i\0n\0e\0 \0e\0l\0e\0m\0e\0n\0t\0s\0
\0
\0 \0 \0 \0 \0#\0 \0T\0h\0i\0s\0 \0d\0o\0e\0s\0n\0t\0 \0h\0a\0n\0d\0l\0e\0 \0s\0t\0r\0i\0n\0g\0s\0 \0h\0o\0w\0e\0v\0e\0r\0.\0
\0
\0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0[\0r\0e\0g\0e\0x\0]\0:\0:\0S\0p\0l\0i\0t\0(\0$\0l\0i\0n\0e\0,\0 \0'\0[\0|\0;\0]\0'\0)\0[\0-\01\0]\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0 \0E\0x\0t\0r\0a\0c\0t\0 \0t\0h\0e\0 \0t\0r\0a\0i\0l\0i\0n\0g\0 \0u\0n\0c\0l\0o\0s\0e\0d\0 \0b\0l\0o\0c\0k\0
\0
\0 \0 \0 \0 \0i\0f\0 \0(\0$\0c\0m\0d\0l\0e\0t\0 \0-\0m\0a\0t\0c\0h\0 \0'\0\\0{\0(\0[\0^\0\\0{\0\\0}\0]\0*\0)\0$\0'\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0
\0
\0 \0 \0 \0 \0}\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0E\0x\0t\0r\0a\0c\0t\0 \0t\0h\0e\0 \0l\0o\0n\0g\0e\0s\0t\0 \0u\0n\0c\0l\0o\0s\0e\0d\0 \0p\0a\0r\0e\0n\0t\0h\0e\0t\0i\0c\0a\0l\0 \0e\0x\0p\0r\0e\0s\0s\0i\0o\0n\0.\0.\0.\0
\0
\0 \0 \0 \0 \0i\0f\0 \0(\0$\0c\0m\0d\0l\0e\0t\0 \0-\0m\0a\0t\0c\0h\0 \0'\0\\0(\0(\0[\0^\0(\0)\0]\0*\0)\0$\0'\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0
\0
\0 \0 \0 \0 \0}\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0t\0a\0k\0e\0 \0t\0h\0e\0 \0f\0i\0r\0s\0t\0 \0s\0p\0a\0c\0e\0 \0s\0e\0p\0a\0r\0a\0t\0e\0d\0 \0t\0o\0k\0e\0n\0 \0o\0f\0 \0t\0h\0e\0 \0r\0e\0m\0a\0i\0n\0i\0n\0g\0 \0s\0t\0r\0i\0n\0g\0
\0
\0 \0 \0 \0 \0#\0 \0a\0s\0 \0t\0h\0e\0 \0c\0o\0m\0m\0a\0n\0d\0 \0t\0o\0 \0l\0o\0o\0k\0 \0u\0p\0.\0 \0T\0r\0i\0m\0 \0a\0n\0y\0 \0l\0e\0a\0d\0i\0n\0g\0 \0o\0r\0 \0t\0r\0a\0i\0l\0i\0n\0g\0 \0s\0p\0a\0c\0e\0s\0
\0
\0 \0 \0 \0 \0#\0 \0s\0o\0 \0y\0o\0u\0 \0d\0o\0n\0t\0 \0g\0e\0t\0 \0l\0e\0a\0d\0i\0n\0g\0 \0e\0m\0p\0t\0y\0 \0e\0l\0e\0m\0e\0n\0t\0s\0.\0
\0
\0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0$\0c\0m\0d\0l\0e\0t\0.\0T\0r\0i\0m\0(\0)\0.\0S\0p\0l\0i\0t\0(\0)\0[\00\0]\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0n\0o\0w\0 \0g\0e\0t\0 \0t\0h\0e\0 \0i\0n\0f\0o\0 \0o\0b\0j\0e\0c\0t\0 \0f\0o\0r\0 \0i\0t\0.\0.\0.\0
\0
\0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0@\0(\0G\0e\0t\0-\0C\0o\0m\0m\0a\0n\0d\0 \0-\0t\0y\0p\0e\0 \0'\0c\0m\0d\0l\0e\0t\0,\0a\0l\0i\0a\0s\0'\0 \0$\0c\0m\0d\0l\0e\0t\0)\0[\00\0]\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0l\0o\0o\0p\0 \0r\0e\0s\0o\0l\0v\0i\0n\0g\0 \0a\0l\0i\0a\0s\0e\0s\0.\0.\0.\0
\0
\0 \0 \0 \0 \0w\0h\0i\0l\0e\0 \0(\0$\0c\0m\0d\0l\0e\0t\0.\0C\0o\0m\0m\0a\0n\0d\0T\0y\0p\0e\0 \0-\0e\0q\0 \0'\0a\0l\0i\0a\0s\0'\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0@\0(\0G\0e\0t\0-\0C\0o\0m\0m\0a\0n\0d\0 \0-\0t\0y\0p\0e\0 \0'\0c\0m\0d\0l\0e\0t\0,\0a\0l\0i\0a\0s\0'\0 \0$\0c\0m\0d\0l\0e\0t\0.\0D\0e\0f\0i\0n\0i\0t\0i\0o\0n\0)\0[\00\0]\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0$\0f\0o\0u\0n\0d\0E\0n\0u\0m\0 \0=\0 \0$\0f\0a\0l\0s\0e\0;\0
\0
\0 \0 \0 \0 \0#\0 \0e\0x\0p\0a\0n\0d\0 \0t\0h\0e\0 \0p\0a\0r\0a\0m\0e\0t\0e\0r\0 \0s\0e\0t\0s\0 \0a\0n\0d\0 \0e\0m\0i\0t\0 \0t\0h\0e\0 \0m\0a\0t\0c\0h\0i\0n\0g\0 \0e\0l\0e\0m\0e\0n\0t\0s\0
\0
\0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0 \0(\0$\0n\0 \0i\0n\0 \0$\0c\0m\0d\0l\0e\0t\0.\0P\0a\0r\0a\0m\0e\0t\0e\0r\0S\0e\0t\0s\0 \0|\0 \0S\0e\0l\0e\0c\0t\0-\0O\0b\0j\0e\0c\0t\0 \0-\0e\0x\0p\0a\0n\0d\0 \0p\0a\0r\0a\0m\0e\0t\0e\0r\0s\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0a\0l\0i\0a\0s\0e\0s\0 \0=\0 \0$\0n\0.\0a\0l\0i\0a\0s\0e\0s\0 \0+\0 \0$\0n\0.\0n\0a\0m\0e\0
\0
\0 \0 \0 \0 \0 \0i\0f\0(\0$\0n\0.\0p\0a\0r\0a\0m\0e\0t\0e\0r\0t\0y\0p\0e\0.\0i\0s\0e\0n\0u\0m\0 \0-\0a\0n\0d\0 \0$\0a\0l\0i\0a\0s\0e\0s\0 \0-\0c\0o\0n\0t\0a\0i\0n\0s\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0 \0$\0n\0.\0p\0a\0r\0a\0m\0e\0t\0e\0r\0t\0y\0p\0e\0.\0m\0e\0m\0b\0e\0r\0s\0 \0|\0?\0 \0{\0 \0$\0_\0.\0T\0o\0S\0t\0r\0i\0n\0g\0(\0)\0 \0-\0l\0i\0k\0e\0 \0(\0$\0m\0a\0t\0c\0h\0e\0s\0[\04\0]\0 \0+\0 \0'\0*\0'\0)\0 \0}\0 \0|\0 \0%\0{\0 \0'\0-\0'\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0 \0+\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\02\0]\0 \0+\0 \0$\0_\0.\0T\0o\0S\0t\0r\0i\0n\0g\0(\0)\0 \0}\0;\0
\0
\0 \0 \0 \0 \0 \0 \0$\0f\0o\0u\0n\0d\0E\0n\0u\0m\0 \0=\0 \0$\0t\0r\0u\0e\0;\0
\0
\0 \0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0i\0f\0(\0$\0f\0o\0u\0n\0d\0E\0n\0u\0m\0)\0 \0{\0 \0b\0r\0e\0a\0k\0;\0 \0}\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0 \0 \0 \0#\0{\0{\0{\0 \0D\0o\0 \0c\0o\0m\0p\0l\0e\0t\0i\0o\0n\0 \0o\0n\0 \0p\0a\0r\0a\0m\0e\0t\0e\0r\0s\0.\0.\0.\0
\0
\0 \0 \0 \0'\0^\0-\0(\0[\0\\0w\00\0-\09\0]\0*\0)\0$\0'\0 \0{\0
\0
\0 \0 \0 \0 \0$\0p\0a\0t\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0 \0+\0 \0'\0*\0'\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0e\0x\0t\0r\0a\0c\0t\0 \0t\0h\0e\0 \0c\0o\0m\0m\0a\0n\0d\0 \0n\0a\0m\0e\0 \0f\0r\0o\0m\0 \0t\0h\0e\0 \0s\0t\0r\0i\0n\0g\0
\0
\0 \0 \0 \0 \0#\0 \0f\0i\0r\0s\0t\0 \0s\0p\0l\0i\0t\0 \0t\0h\0e\0 \0s\0t\0r\0i\0n\0g\0 \0i\0n\0t\0o\0 \0s\0t\0a\0t\0e\0m\0e\0n\0t\0s\0 \0a\0n\0d\0 \0p\0i\0p\0e\0l\0i\0n\0e\0 \0e\0l\0e\0m\0e\0n\0t\0s\0
\0
\0 \0 \0 \0 \0#\0 \0T\0h\0i\0s\0 \0d\0o\0e\0s\0n\0t\0 \0h\0a\0n\0d\0l\0e\0 \0s\0t\0r\0i\0n\0g\0s\0 \0h\0o\0w\0e\0v\0e\0r\0.\0
\0
\0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0[\0r\0e\0g\0e\0x\0]\0:\0:\0S\0p\0l\0i\0t\0(\0$\0l\0i\0n\0e\0,\0 \0'\0[\0|\0;\0]\0'\0)\0[\0-\01\0]\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0 \0E\0x\0t\0r\0a\0c\0t\0 \0t\0h\0e\0 \0t\0r\0a\0i\0l\0i\0n\0g\0 \0u\0n\0c\0l\0o\0s\0e\0d\0 \0b\0l\0o\0c\0k\0
\0
\0 \0 \0 \0 \0i\0f\0 \0(\0$\0c\0m\0d\0l\0e\0t\0 \0-\0m\0a\0t\0c\0h\0 \0'\0\\0{\0(\0[\0^\0\\0{\0\\0}\0]\0*\0)\0$\0'\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0
\0
\0 \0 \0 \0 \0}\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0E\0x\0t\0r\0a\0c\0t\0 \0t\0h\0e\0 \0l\0o\0n\0g\0e\0s\0t\0 \0u\0n\0c\0l\0o\0s\0e\0d\0 \0p\0a\0r\0e\0n\0t\0h\0e\0t\0i\0c\0a\0l\0 \0e\0x\0p\0r\0e\0s\0s\0i\0o\0n\0.\0.\0.\0
\0
\0 \0 \0 \0 \0i\0f\0 \0(\0$\0c\0m\0d\0l\0e\0t\0 \0-\0m\0a\0t\0c\0h\0 \0'\0\\0(\0(\0[\0^\0(\0)\0]\0*\0)\0$\0'\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0$\0m\0a\0t\0c\0h\0e\0s\0[\01\0]\0
\0
\0 \0 \0 \0 \0}\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0t\0a\0k\0e\0 \0t\0h\0e\0 \0f\0i\0r\0s\0t\0 \0s\0p\0a\0c\0e\0 \0s\0e\0p\0a\0r\0a\0t\0e\0d\0 \0t\0o\0k\0e\0n\0 \0o\0f\0 \0t\0h\0e\0 \0r\0e\0m\0a\0i\0n\0i\0n\0g\0 \0s\0t\0r\0i\0n\0g\0
\0
\0 \0 \0 \0 \0#\0 \0a\0s\0 \0t\0h\0e\0 \0c\0o\0m\0m\0a\0n\0d\0 \0t\0o\0 \0l\0o\0o\0k\0 \0u\0p\0.\0 \0T\0r\0i\0m\0 \0a\0n\0y\0 \0l\0e\0a\0d\0i\0n\0g\0 \0o\0r\0 \0t\0r\0a\0i\0l\0i\0n\0g\0 \0s\0p\0a\0c\0e\0s\0
\0
\0 \0 \0 \0 \0#\0 \0s\0o\0 \0y\0o\0u\0 \0d\0o\0n\0t\0 \0g\0e\0t\0 \0l\0e\0a\0d\0i\0n\0g\0 \0e\0m\0p\0t\0y\0 \0e\0l\0e\0m\0e\0n\0t\0s\0.\0
\0
\0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0$\0c\0m\0d\0l\0e\0t\0.\0T\0r\0i\0m\0(\0)\0.\0S\0p\0l\0i\0t\0(\0)\0[\00\0]\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0n\0o\0w\0 \0g\0e\0t\0 \0t\0h\0e\0 \0i\0n\0f\0o\0 \0o\0b\0j\0e\0c\0t\0 \0f\0o\0r\0 \0i\0t\0.\0.\0.\0
\0
\0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0@\0(\0G\0e\0t\0-\0C\0o\0m\0m\0a\0n\0d\0 \0-\0t\0y\0p\0e\0 \0'\0c\0m\0d\0l\0e\0t\0,\0a\0l\0i\0a\0s\0'\0 \0$\0c\0m\0d\0l\0e\0t\0)\0[\00\0]\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0l\0o\0o\0p\0 \0r\0e\0s\0o\0l\0v\0i\0n\0g\0 \0a\0l\0i\0a\0s\0e\0s\0.\0.\0.\0
\0
\0 \0 \0 \0 \0w\0h\0i\0l\0e\0 \0(\0$\0c\0m\0d\0l\0e\0t\0.\0C\0o\0m\0m\0a\0n\0d\0T\0y\0p\0e\0 \0-\0e\0q\0 \0'\0a\0l\0i\0a\0s\0'\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0c\0m\0d\0l\0e\0t\0 \0=\0 \0@\0(\0G\0e\0t\0-\0C\0o\0m\0m\0a\0n\0d\0 \0-\0t\0y\0p\0e\0 \0'\0c\0m\0d\0l\0e\0t\0,\0a\0l\0i\0a\0s\0'\0 \0$\0c\0m\0d\0l\0e\0t\0.\0D\0e\0f\0i\0n\0i\0t\0i\0o\0n\0)\0[\00\0]\0
\0
\0 \0 \0 \0 \0}\0
\0
\0
\0
\0 \0 \0 \0 \0#\0 \0e\0x\0p\0a\0n\0d\0 \0t\0h\0e\0 \0p\0a\0r\0a\0m\0e\0t\0e\0r\0 \0s\0e\0t\0s\0 \0a\0n\0d\0 \0e\0m\0i\0t\0 \0t\0h\0e\0 \0m\0a\0t\0c\0h\0i\0n\0g\0 \0e\0l\0e\0m\0e\0n\0t\0s\0
\0
\0 \0 \0 \0 \0f\0o\0r\0e\0a\0c\0h\0 \0(\0$\0n\0 \0i\0n\0 \0$\0c\0m\0d\0l\0e\0t\0.\0P\0a\0r\0a\0m\0e\0t\0e\0r\0S\0e\0t\0s\0 \0|\0 \0S\0e\0l\0e\0c\0t\0-\0O\0b\0j\0e\0c\0t\0 \0-\0e\0x\0p\0a\0n\0d\0 \0p\0a\0r\0a\0m\0e\0t\0e\0r\0s\0)\0 \0{\0
\0
\0 \0 \0 \0 \0 \0$\0a\0l\0i\0a\0s\0e\0s\0 \0=\0 \0$\0n\0.\0a\0l\0i\0a\0s\0e\0s\0 \0+\0 \0$\0n\0.\0n\0a\0m\0e\0
\0
\0 \0 \0 \0 \0 \0$\0a\0l\0i\0a\0s\0e\0s\0 \0|\0?\0 \0{\0 \0$\0_\0 \0-\0l\0i\0k\0e\0 \0$\0p\0a\0t\0 \0}\0 \0|\0%\0 \0{\0 \0'\0-\0'\0 \0+\0 \0$\0n\0.\0n\0a\0m\0e\0 \0}\0
\0
\0 \0 \0 \0 \0}\0
\0
\0 \0 \0 \0 \0b\0r\0e\0a\0k\0;\0
\0
\0 \0 \0 \0}\0
\0
\0 \0 \0 \0#\0}\0}\0}\0
\0
\0 \0 \0}\0 \0#\0 \0E\0O\0 \0s\0w\0i\0t\0c\0h\0
\0
\0 \0}\0 \0 \0#\0 \0E\0O\0 \0P\0r\0o\0c\0e\0s\0s\0
\0
\0}\0
My System SpecsSystem Spec
Old 10-12-2006   #5 (permalink)
Chris Warwick
Guest


 

Re: ItemContent Variable Doesn't Evaluate Name


Comments inline:


On Wed, 11 Oct 2006 13:34:44 -0400, "Alex K. Angelopoulos [MVP]"
<aka@online.mvps.org> wrote:

>I'd like to see what you have. Here's my personal shopping list, part of
>which I've already implemented.
>
>+ Alias expansion
>
>+ Universalizing paths
>I'd like to be able to force expansion of paths into universal form. For
>example, if you're using Q:\netadmin and Q is actually the server share
>\\DC01\Dsp I would like to be able to force
> Q:\netadmin
>to expand to
> \\DC01\Dsp\netadmin
>I'm not sure how useful this will be in general, but it's in part due to my
>fetish about things like provider path mappings that may not be present
>somewhere else.


I like this idea (and have sympathy for your fetish!) [but didn't
someone post about poor performance of UNC paths?!]

ADDITIONALLY: If the server path happens to be on a Domain Dfs root
(with potentially multiple servers holding replicas) it would be
better if this expanded out fully to
\\Domain.com\DfsSharename\netadmin

Just a thought :-)



>
>+ Unexpanding paths
>Like the Windows API function that tries to generalize paths using _SOME_
>variables. PowerShell's Home and PsHome might be good, as well as the
>environmental Temp,Windir,
>CommonProgramFiles,AllusersProfile,UserName,UserDomain. Any more than these
>would probably be a nuisance.


Except you should add "My Documents".

I'm dismayed to see lots of people (everyone, it seems) making the
assumption that ~/My Documents actually points to the My Documents
folder. People who really should know better too (e.g. JIM! and
Bruce in the otherwise excellent second extract from his forthcoming
book recently published to the technet Scriptcenter).

Assumptions like this will break code! IMO the use of ~/My Documents
should be actively discouraged. I know the alternative syntax is not
as attractive, but it will work.

My Documents *may* be at ~/My Documents, but it might not be (i.e. it
could, and in many corporate/enterprise environments *will* be
redirected - usually via group policy - to a remote location; often on
a Dfs share:-)

C'mon guys - give me a shortcut :-)

Or at least acknowledge that the assumption is wrong!


tvm
Chris

>
>
>
>"Nick Howell" <msnews-0.5.nlhowell@spamgourmet.com> wrote in message
>news:uX4k4PU7GHA.4476@TK2MSFTNGP04.phx.gbl...
>> When accessing an ItemContent variable, PowerShell doesn't let you do
>> anything fun, such as ${~/My` Documents/test.txt}; you have to write out
>> ${C:/Documents` and` Settings/nlhowell/My` Documents/text.txt}. Also, you
>> can't use snapin-qualified or provider-qualified paths:
>>
>> ${FileSystem::C:/Documents` and` Settings/nlhowell/My` Documents/test.txt}
>> ${Microsoft.PowerShell.Core\FileSystem::C:/Documents` and`
>> Settings/nlhowell/My` Documents/test.txt}
>>
>> don't work.
>>
>>
>> So far, I've had pretty good success with augmenting tab-completion: I've
>> got PS to stop absolutizing relative paths, stopped it from quoting paths
>> with spaces (it escapes the spaces instead), added variable path
>> completion ($Home/<TAB> is the same as ~/<TAB>), and now this seems to be
>> working pretty well. I also added a variable expansion ($var!<TAB> will
>> substitute the value of $var), but I don't really use it...I think I'm
>> gonna take it out. Any other suggestions on how to soup it up?
>>
>> Nick

>

My System SpecsSystem Spec
Old 10-12-2006   #6 (permalink)
Alex K. Angelopoulos [MVP]
Guest


 

Re: ItemContent Variable Doesn't Evaluate Name

bottom.

"Chris Warwick" <news@remove.this.bit.nuney.com> wrote in message
news:37tri2l9tflb9a913s8g4nblb1ke8bd5c9@4ax.com...
>


> On Wed, 11 Oct 2006 13:34:44 -0400, "Alex K. Angelopoulos [MVP]"
>>... For
>>example, if you're using Q:\netadmin and Q is actually the server share
>>\\DC01\Dsp I would like to be able to force
>> Q:\netadmin
>>to expand to
>> \\DC01\Dsp\netadmin


> I like this idea (and have sympathy for your fetish!) [but didn't
> someone post about poor performance of UNC paths?!]



Marty List, 2006-09-15. The issue was FileInfo fill for remote paths, so it
isn't specific to UNC usage.

> ADDITIONALLY: If the server path happens to be on a Domain Dfs root
> (with potentially multiple servers holding replicas) it would be
> better if this expanded out fully to
> \\Domain.com\DfsSharename\netadmin


Yes.


I cut out bits of the following, but I'm leaving some critical things:

>>+ Unexpanding paths


> Except you should add "My Documents".


> I'm dismayed to see lots of people (everyone, it seems) making the
> assumption that ~/My Documents actually points to the My Documents
> folder...


> Assumptions like this will break code! IMO the use of ~/My Documents
> should be actively discouraged....


> My Documents *may* be at ~/My Documents, but it might not be (i.e. it
> could, and in many corporate/enterprise environments *will* be
> redirected - usually via group policy - to a remote location...


> C'mon guys - give me a shortcut :-)


> Or at least acknowledge that the assumption is wrong!


Ironically, I left out the personal documents folder because there is no
common shell variable for it - which also tells us something. :|


My System SpecsSystem Spec
Old 10-13-2006   #7 (permalink)
Flowering Weeds
Guest


 

Re: ItemContent Variable Doesn't Evaluate Name


"Alex K. Angelopoulos [MVP]"

>
> Ironically, I left out the personal
> documents folder because there
> is no common shell variable for it -
> which also tells us something. :|
>


I may be old and confused so
could some young one post a
vbscript and powershell example
that does not "do" the above!




My System SpecsSystem Spec
Old 10-15-2006   #8 (permalink)
Alex K. Angelopoulos [MVP]
Guest


 

Re: ItemContent Variable Doesn't Evaluate Name

"Flowering Weeds" <floweringnoweedsno@hotmail.com> wrote in message
news:efk7I5v7GHA.4996@TK2MSFTNGP04.phx.gbl...
>
> "Alex K. Angelopoulos [MVP]"
>
>>
>> Ironically, I left out the personal
>> documents folder because there
>> is no common shell variable for it -
>> which also tells us something. :|
>>

>
> I may be old and confused so
> could some young one post a
> vbscript and powershell example
> that does not "do" the above!


Does not do what above?


My System SpecsSystem Spec
Old 10-16-2006   #9 (permalink)
Flowering Weeds
Guest