From djg25@psu.edu Wed Feb 2 23:48:44 2005 Received: with ECARTIS (v1.0.0; list encore); Wed, 02 Feb 2005 23:48:45 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id C36825CF3 for ; Wed, 2 Feb 2005 23:48:44 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id AFE6B4E13 for ; Wed, 2 Feb 2005 23:48:44 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 16461-01-82 for ; Wed, 2 Feb 2005 23:48:40 -0600 (CST) Received: from f04n01.cac.psu.edu (f04s01.cac.psu.edu [128.118.141.31]) by mx2.utdallas.edu (Postfix) with ESMTP id 5D14E3485 for ; Wed, 2 Feb 2005 23:48:38 -0600 (CST) Received: from DebbiesRoom.psu.edu (access-isdn1-41.ds.psu.edu [146.186.43.235]) by f04n01.cac.psu.edu (8.13.2/8.13.2) with ESMTP id j135mYW9045358 for ; Thu, 3 Feb 2005 00:48:35 -0500 Message-Id: <5.2.0.9.2.20050203004249.024f6968@email.psu.edu> X-Sender: djg25@email.psu.edu X-Mailer: QUALCOMM Windows Eudora Version 5.2.0.9 Date: Thu, 03 Feb 2005 00:48:35 -0500 To: encore@utdallas.edu From: Deborah Gill Subject: [encore] Re: Problems using Encore with browsers other than IE Mime-Version: 1.0 Content-Type: text/html; charset="us-ascii" X-Virus-Scanned: by amavisd-new X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-Spam-Status: No, hits=2.0 tagged_above=1.0 required=8.0 tests=FROM_ENDS_IN_NUMS, HTML_FONTCOLOR_BLUE, HTML_MESSAGE, MIME_HTML_ONLY, MY_MTPARENS X-Spam-Level: * X-archive-position: 1321 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: djg25@psu.edu Precedence: bulk Reply-to: djg25@psu.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hello all!

In mid-December I asked for help with a problem that I was having with Encore.  I want to thank Lennie Irvin for his enormous help and Daniel Jung who sent me a detailed explanation of what he believed was happening and indeed WAS the problem!!  THANK YOU, Daniel!

Below is the response to my questions that Daniel gave me. 

Best to all,

Debbie

Date: Sun, 19 Dec 2004 03:30:00 +0100
X-PH: V4.1@tr12n04
From: Daniel Jung <jung@uib.no>
User-Agent: Mozilla Thunderbird 0.8 (Windows/20040913)
X-Accept-Language: en-us, en
To: Deborah Gill <djg25@psu.edu>
Subject: Re: [encore] Re: Problems using Encore with browsers other   than
 IE
X-checked-clean: by exiscan on noralf
X-Scanner: da0e9f6c46d9426982b7a78d7d8da3aa http://tjinfo.uib.no/virus.html
X-UiB-SpamFlag: NO UIB: 1.5 hits, 11.0 required
X-UiB-SpamReport: spamassassin found;
  0.2 -- HTML included in message
  1.3 -- Uses non-standard port number for HTTP
X-Virus-Scanned: amavisd-sophos
X-PSU-Spam-Flag: NO
X-PSU-Spam-Hits: 2.075
X-PSU-Spam-Level: **
My question was here:
 > */The "blank" popup comes up for everyone in IE and then the second
"enCoreXpress" popup comes up without a problem at school (and at my home).  My students, however, tell me that sometimes they have to try three, four, five times before the "enCoreXpress" popup will come up.  They are all users who are either builders or programmers.

Daniel's response follows: 

Two different problems I guess. It might have something to do with popup-blockers... In the next release, there will be no more pop up windows.

*/I'm not sure where to look at the javascript (sorry about that!). 

No problem. I had a look at your page. It's here:


Reading the page source
=======================

     function openXpress() {
       XpressClient();
       window.location.reload('/');
     }

This above snippet is called when some link or function launches "openXpress()". This function launches another function, called "XpressClient()". This function is defined right after the first one:

     function XpressClient() {
        var height = 768;
        var width = 1024;
        newWin = window.open("", "World_of_Diversity_XpressClient", ...
     }

This function opens thus a new window (popup) with the size 768*1024. Its name is "World_of_Diversity_XpressClient".

Later on the page, you find

     <form id="logindata" action="http://diversity.ds.psu.edu:7000"
     onsubmit="openXpress()" target="World of Diversity_XpressClient"
     method="post" enctype="multipart/form-data">

meaning, when somebody has entered their name and password and click on "submit" to send the formdata, 1. the opening function (openXpress) is called, and 2. the formdata is sent to be crunched in the new window (it says target="World of Diversity_XpressClient").

1. The Script says:
"Produce a window, call it "World_of_Diversity_XpressClient"

2. The Form says
"Produce the login, grab the window "World of Diversity_XpressClient"

Look at the names carefully. Do you see the difference? No wonder the Browser is confused.


Why is it so?
=============

There are different spots in the code where the page code is produced. One spot tells what to write as attributes to the form, the other sopt tells what to write into the Javascript. Both take the variables

    mooname + _XpressClient

and concatenate them. But the script is more sophisticated and says

   "Take the blanks and convert them to underscores"

while the form doesn't give a ... and just concatenates the two components. Now, in every MOO with a one-word-name, this will work. Your MOO has spaces. That's why it doesn't work for you, while LinguaMoo etc. never experienced problems.


What to do?
===========

You must go into the program code which produces the form. That would be $xpress_login:login. I have heavily modified all of our MOOs, so I don't know the original code.

Wait a minute.

OK. I downloaded the original code and had a look. Find this line:

  loginForm = $encore_web_utils:form($list_utils:append(loginform, $encore_web_utils:p(), $encore_web_utils:input("xpress", "Log in", "", "submit")), "logindata", "", "openXpress()", tostr($network.MOO_name, "_XpressClient"));

The spot that bugs us is

     tostr($network.MOO_name, "_XpressClient")

since it says "take the MOO name and add _XpressClient". It should convert spaces to underscores as well. To achieve this, do change this to

    tostr(strsub($network.MOO_name, " ", "_"), "_XpressClient")

so that the whole line reads

  loginForm = $encore_web_utils:form($list_utils:append(loginform, $encore_web_utils:p(), $encore_web_utils:input("xpress", "Log in", "", "submit")), "logindata", "", "openXpress()", tostr(strsub($network.MOO_name, " ", "_"), "_XpressClient"));



You should be all set then.

Good luck
- Daniel

(you might want to pass this along to your support people)

Deborah Gill, Ph.D.
Assistant Professor of Spanish
Pennsylvania State University-DuBois
College Place
DuBois, PA 15801
(814) 375-4783
Email: djg25@psu.edu, msdgill@aol.com




"Each of us has an inner dream that we can unfold if
we will just have the courage to admit what it is.
And the faith to trust our own admission. The admitting is often very difficult."

- Julia Cameron -

Deborah Gill, Ph.D.
Assistant Professor of Spanish
Pennsylvania State University-DuBois
College Place
DuBois, PA 15801
(814) 375-4783
Email: djg25@psu.edu, msdgill@aol.com




"Each of us has an inner dream that we can unfold if
we will just have the courage to admit what it is.
And the faith to trust our own admission. The admitting is often very difficult."

- Julia Cameron -
From pauld@ece.ualberta.ca Thu Feb 3 18:02:24 2005 Received: with ECARTIS (v1.0.0; list encore); Thu, 03 Feb 2005 18:26:48 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 93C955BE4 for ; Thu, 3 Feb 2005 18:02:24 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 6CEBE4FCC for ; Thu, 3 Feb 2005 18:02:24 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 28001-01-45 for ; Thu, 3 Feb 2005 18:02:16 -0600 (CST) Received: from itanium.ece.ualberta.ca (itanium.ee.ualberta.ca [129.128.208.17]) by mx2.utdallas.edu (Postfix) with ESMTP id 005063F0F for ; Thu, 3 Feb 2005 18:00:31 -0600 (CST) Received: from [192.168.1.107] (boreas.ee.ualberta.ca [129.128.208.217]) by itanium.ece.ualberta.ca (Postfix) with ESMTP id 456DD17DC for ; Thu, 3 Feb 2005 17:00:25 -0700 (MST) Message-ID: <4202BD36.7090808@ece.ualberta.ca> Date: Thu, 03 Feb 2005 17:09:26 -0700 From: Paul Dumais User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: encore@utdallas.edu Subject: [encore] First post - archives? Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p9 at utdallas.edu X-archive-position: 1322 X-Approved-By: cynthiah@utdallas.edu X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: pauld@ece.ualberta.ca Precedence: bulk Reply-to: pauld@ece.ualberta.ca List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hi! Encore seems like a fantastic effort! I have installed it (not quite successfully) on windows xp with cygwin. I have two questions. 1. Where are the archives for this list? The link in the welcome message shows gives a blank page. 2. Has anyone heard of the problem I have?: After complilation, I can start the lambda moo service. However, 'connect wizard' does not work. It just does not respond. I keep getting the welcome screen if I hit the enter key a second time. What I find interesting is that if I start the service using JHCore, 'connect wizard' works just fine. Of the commands that are listed on the screen after an unsuccessful command is sent, only 'VERsion' seems to work correctly. 'connect tom' will correctly respond that that user does not exist. 'connect wizard' however just hangs. Note: I had only one problem during compilation (make): the time.h complained that _tztime (that's not quite what it was) was already set. So I recompiled after changing the my-time.h (not sure if that was the right name) with the check commented out. Thanks for your help! Paul From cynthiah@utdallas.edu Thu Feb 3 18:31:10 2005 Received: with ECARTIS (v1.0.0; list encore); Thu, 03 Feb 2005 18:31:11 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from smtp1.utdallas.edu (smtp1-pmn.utdallas.edu [192.168.1.5]) by nobel.utdallas.edu (Postfix) with ESMTP id AA8285BE4 for ; Thu, 3 Feb 2005 18:31:10 -0600 (CST) Received: from [10.0.1.2] (66.169.106.136.ts46v-02.mhe2.ftwrth.tx.charter.com [66.169.106.136]) by smtp1.utdallas.edu (Postfix) with ESMTP id DBDCD38937E; Thu, 3 Feb 2005 18:31:09 -0600 (CST) User-Agent: Microsoft-Entourage/11.1.0.040913 Date: Thu, 03 Feb 2005 18:33:55 -0600 Subject: [encore] Re: First post - archives? From: Cynthia Haynes To: , Message-ID: In-Reply-To: <4202BD36.7090808@ece.ualberta.ca> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit X-archive-position: 1323 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: cynthiah@utdallas.edu Precedence: bulk Reply-to: cynthiah@utdallas.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore The archives for the list are alive and well, but access to them is still a problem because the UTD sys admin is having trouble with the older list software that we've been using for the last 7 years. I apologize for this and was told a few days ago that it should be cleared up very soon. I will alert the list when that happens. Best, Cynthia __Cynthia Haynes, Director of Rhetoric and Writing___________________ University of Texas at Dallas cynthiah@utdallas.edu School of Arts & Humanities http://www.utdallas.edu/~cynthiah PO Box 830688-JO 31 http://lingua.utdallas.edu:7000 Richardson, TX 75083-0688 (O)972-883-6340 (F)972-883-2989 From ken@ss.pku.edu.cn Fri Feb 4 04:09:06 2005 Received: with ECARTIS (v1.0.0; list encore); Fri, 04 Feb 2005 04:09:06 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id C1FCC5C7C for ; Fri, 4 Feb 2005 04:09:05 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 3A9B322BC for ; Fri, 4 Feb 2005 04:09:05 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 19317-01-7 for ; Fri, 4 Feb 2005 04:09:03 -0600 (CST) Received: from mail.ss.pku.edu.cn (unknown [61.50.221.201]) by mx2.utdallas.edu (Postfix) with SMTP id 1224834F4 for ; Fri, 4 Feb 2005 04:08:58 -0600 (CST) Received: (qmail 16922 invoked by uid 0); 4 Feb 2005 18:08:42 +0800 Received: from unknown (HELO ?221.218.44.38?) (ken@221.218.44.38) by 61.50.221.201 with SMTP; 4 Feb 2005 18:08:42 +0800 Mime-Version: 1.0 (Apple Message framework v619.2) To: encore@utdallas.edu Message-Id: <9f4319184f8e6688067764d9f5d8a91c@ss.pku.edu.cn> Content-Type: multipart/alternative; boundary=Apple-Mail-1-355535575 From: Kenneth Fields Subject: [encore] xpress Date: Fri, 4 Feb 2005 18:09:14 +0800 X-Mailer: Apple Mail (2.619.2) X-Virus-Scanned: amavisd-new at utdallas.edu X-Spam-Status: No, hits=3.475 tagged_above=1 required=8 tests=BAYES_50, DNS_FROM_RFC_WHOIS, RCVD_BY_IP, SARE_RECV_IP_061050, UTD_UNKNOWN_CLIENT X-Spam-Level: *** X-archive-position: 1324 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: ken@ss.pku.edu.cn Precedence: bulk Reply-to: ken@ss.pku.edu.cn List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore --Apple-Mail-1-355535575 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed Hello, another naive post from a new user! I did this: 4) Move the encore directory to the root level of your web server's document directory, or to your public_html directory. I changed the moo's @configure-Base URL to mymachines.ip.number/encore/ Then I did this: 7) Point your web browser to port 7000 on your machine and log in with Xpress. Obviously, life isn't that simple. That doesn't work. I get the moo text output but not any nice login window? Any suggestions? thanks, ken --Apple-Mail-1-355535575 Content-Transfer-Encoding: 7bit Content-Type: text/enriched; charset=US-ASCII Hello, another naive post from a new user!Courier6969,6969,6969 I did this: Verdana6969,6969,69694) Move the FFFF,A5A5,0000encore directory6969,6969,6969 to the root level of your web server's document directory, or to your FFFF,A5A5,0000public_html6969,6969,6969 directory. Courier6967,6967,6967I changed the moo's @configure-Base URL to mymachines.ip.number/encore/Verdana6969,6969,6969 Then I did this: 6968,6968,69687) Point your web browser to port 7000 on your machine and log in with Xpress. Courier6968,6968,6968 Obviously, life isn't that simple. That doesn't work. I get the moo text output but not any nice login window? Any suggestions? thanks, ken Verdana6969,6969,6969 --Apple-Mail-1-355535575-- From Lirvin@accdvm.accd.edu Fri Feb 4 05:27:14 2005 Received: with ECARTIS (v1.0.0; list encore); Fri, 04 Feb 2005 05:27:14 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 079005BDB for ; Fri, 4 Feb 2005 05:27:14 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id E703F20CB for ; Fri, 4 Feb 2005 05:27:13 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 24735-01-4 for ; Fri, 4 Feb 2005 05:27:10 -0600 (CST) Received: from ACCDVM.ACCD.EDU (accdvm.accd.edu [209.184.119.1]) by mx2.utdallas.edu (Postfix) with SMTP id A69F435B0 for ; Fri, 4 Feb 2005 05:27:10 -0600 (CST) Received: from Gilgamesh.accdvm.accd.edu [10.1.11.27] by ACCDVM.ACCD.EDU (IBM VM SMTP V2R4a) via TCP with SMTP ; Fri, 04 Feb 2005 05:25:53 CST Message-Id: <6.2.0.14.0.20050204051827.01ca3d30@accdvm.accd.edu> X-Mailer: QUALCOMM Windows Eudora Version 6.2.0.14 Date: Fri, 04 Feb 2005 05:27:25 -0600 To: encore@utdallas.edu From: Lennie Irvin Subject: [encore] Re: First post - archives? In-Reply-To: <4202BD36.7090808@ece.ualberta.ca> References: <4202BD36.7090808@ece.ualberta.ca> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1325 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: Lirvin@accdvm.accd.edu Precedence: bulk Reply-to: Lirvin@accdvm.accd.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hi Paul, You may get some answers from Mark O'Neil's FAQ-O-Matic http://cobweb.dartmouth.edu/%7Emoneil/FOMServe/cache/1.html I can't quite tell what is going on with your installation. Are you doing your first connection and configuration via telnet? I'm not sure I understant either about accessing through JHCore--isn't that a completely different moo core? Perhaps you mean you are accessing through the telnet client you have used for another JHCore MOO? I can't quite make out from your description exactly what is going on. If you are able to connect as a wizard with that other client, then perhaps the problem has to do with your settings in @configure. Just a guess though. Good luck, Lennie At 06:09 PM 2/3/2005, you wrote: >Hi! Encore seems like a fantastic effort! I have installed it (not quite >successfully) on windows xp with cygwin. > >I have two questions. > >1. Where are the archives for this list? The link in the welcome message >shows gives a blank page. >2. Has anyone heard of the problem I have?: After complilation, I can >start the lambda moo service. However, 'connect wizard' does not work. It >just does not respond. I keep getting the welcome screen if I hit the >enter key a second time. What I find interesting is that if I start the >service using JHCore, 'connect wizard' works just fine. Of the commands >that are listed on the screen after an unsuccessful command is sent, only >'VERsion' seems to work correctly. 'connect tom' will correctly respond >that that user does not exist. 'connect wizard' however just hangs. Note: >I had only one problem during compilation (make): the time.h complained >that _tztime (that's not quite what it was) was already set. So I >recompiled after changing the my-time.h (not sure if that was the right >name) with the check commented out. > >Thanks for your help! > >Paul From paul@unstate.ca Fri Feb 4 11:22:52 2005 Received: with ECARTIS (v1.0.0; list encore); Fri, 04 Feb 2005 11:22:53 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id E56585BB0 for ; Fri, 4 Feb 2005 11:22:51 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id A50015101 for ; Fri, 4 Feb 2005 11:22:51 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 06839-01-50 for ; Fri, 4 Feb 2005 11:22:39 -0600 (CST) Received: from pd4mo1so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx2.utdallas.edu (Postfix) with ESMTP id 340AC35C3 for ; Fri, 4 Feb 2005 11:22:00 -0600 (CST) Received: from pd5mr7so.prod.shaw.ca (pd5mr7so-qfe3.prod.shaw.ca [10.0.141.183]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0IBE00FLBDKNYV40@l-daemon> for encore@utdallas.edu; Fri, 04 Feb 2005 10:21:59 -0700 (MST) Received: from pn2ml2so.prod.shaw.ca ([10.0.121.146]) by pd5mr7so.prod.shaw.ca (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0IBE00L51DKNQL90@pd5mr7so.prod.shaw.ca> for encore@utdallas.edu; Fri, 04 Feb 2005 10:21:59 -0700 (MST) Received: from [192.168.1.2] (S010600062589f5ea.ed.shawcable.net [68.148.6.33]) by l-daemon (iPlanet Messaging Server 5.2 HotFix 1.18 (built Jul 28 2003)) with ESMTP id <0IBE00C2WDKNUM@l-daemon> for encore@utdallas.edu; Fri, 04 Feb 2005 10:21:59 -0700 (MST) Date: Fri, 04 Feb 2005 10:22:31 -0700 From: Paul Dumais Subject: [encore] Re: Intallation Problems (was 'First Post - Archives?') In-reply-to: <6.2.0.14.0.20050204051827.01ca3d30@accdvm.accd.edu> To: encore@utdallas.edu Message-id: <4203AF57.1040107@unstate.ca> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7bit X-Accept-Language: en-us, en References: <4202BD36.7090808@ece.ualberta.ca> <6.2.0.14.0.20050204051827.01ca3d30@accdvm.accd.edu> User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1326 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: paul@unstate.ca Precedence: bulk Reply-to: paul@unstate.ca List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hi Lennie and others, Thanks for trying to decipher this. To clarify: I have just installed Lambdamoo. I have successfully started the server useing bothe enCore.db and JHCore.db. However, in enCore, 'connect wizard' gives no response. All the other commands seem to work except connect and autoconnect. When I start the server using JHCore.db everything seems to work. You can check it out for yourself at unstate.ca:7777. So I guess I find it odd that enCore.db does not work. So the difference is not the clients (I have tried telnet and several other clients with each core). Has no one else seen this problem? If not, then I will have to try to get the Lambdamoo server to compile with the my-time.h (something like that) unaltered. I had commented something out because of a complaint about _tztime (something like that) already being set. Perhaps it is because of this? I can't think of any reason why JHCore would work and enCore not - unless encore uses some special features that I need to enable first. Take care, Paul Lennie Irvin wrote: > Hi Paul, > > You may get some answers from Mark O'Neil's FAQ-O-Matic > http://cobweb.dartmouth.edu/%7Emoneil/FOMServe/cache/1.html > > I can't quite tell what is going on with your installation. Are you > doing your first connection and configuration via telnet? I'm not > sure I understant either about accessing through JHCore--isn't that a > completely different moo core? Perhaps you mean you are accessing > through the telnet client you have used for another JHCore MOO? > > I can't quite make out from your description exactly what is going > on. If you are able to connect as a wizard with that other client, > then perhaps the problem has to do with your settings in @configure. > Just a guess though. > > Good luck, > > Lennie > > At 06:09 PM 2/3/2005, you wrote: > >> Hi! Encore seems like a fantastic effort! I have installed it (not >> quite successfully) on windows xp with cygwin. >> >> I have two questions. >> >> 1. Where are the archives for this list? The link in the welcome >> message shows gives a blank page. >> 2. Has anyone heard of the problem I have?: After complilation, I can >> start the lambda moo service. However, 'connect wizard' does not >> work. It just does not respond. I keep getting the welcome screen if >> I hit the enter key a second time. What I find interesting is that if >> I start the service using JHCore, 'connect wizard' works just fine. >> Of the commands that are listed on the screen after an unsuccessful >> command is sent, only 'VERsion' seems to work correctly. 'connect >> tom' will correctly respond that that user does not exist. 'connect >> wizard' however just hangs. Note: I had only one problem during >> compilation (make): the time.h complained that _tztime (that's not >> quite what it was) was already set. So I recompiled after changing >> the my-time.h (not sure if that was the right name) with the check >> commented out. >> >> Thanks for your help! >> >> Paul > > > From lirvin@accdvm.accd.edu Mon Feb 7 12:27:43 2005 Received: with ECARTIS (v1.0.0; list encore); Mon, 07 Feb 2005 12:27:44 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 08B6B5CDA for ; Mon, 7 Feb 2005 12:27:42 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 820124C58 for ; Mon, 7 Feb 2005 12:27:42 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 03773-01-89 for ; Mon, 7 Feb 2005 12:27:38 -0600 (CST) X-Greylist: delayed 3782 seconds by postgrey-1.17 at mx2; Mon, 07 Feb 2005 12:27:38 CST Received: from ACCDVM.ACCD.EDU (accdvm.accd.edu [209.184.119.1]) by mx2.utdallas.edu (Postfix) with SMTP id 460AC2CBF for ; Mon, 7 Feb 2005 12:27:38 -0600 (CST) Received: from gh-208-300633.accdvm.accd.edu [10.11.36.41] by ACCDVM.ACCD.EDU (IBM VM SMTP V2R4a) via TCP with SMTP ; Mon, 07 Feb 2005 11:23:17 CST Message-Id: <6.2.1.2.0.20050207111234.01d0b470@accdvm.accd.edu> X-Mailer: QUALCOMM Windows Eudora Version 6.2.1.2 Date: Mon, 07 Feb 2005 11:21:21 -0600 To: encore@utdallas.edu From: Lennie Irvin Subject: [encore] New help guide addition to The Barn Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="=====================_1284031==.ALT" X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1327 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: lirvin@accdvm.accd.edu Precedence: bulk Reply-to: lirvin@accdvm.accd.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore --=====================_1284031==.ALT Content-Type: text/plain; charset="us-ascii"; format=flowed Thanks to Kevin Jepson, we now have a new addition to the various guides available for enCore housed within The Barn. These files came originally from the online help system of CPDEE MOO (which is now no longer online). Looking over these help files, it appears they will be very helpful for moo administrators and programmers who are able to get more into the guts of the moo. Thanks to Kevin for salvaging these files! Within The Barn, these new files can be found with the Guides. http://www.accd.edu/sac/english/lirvin/barn/default.htm Or you can go directly to them at http://www.accd.edu/sac/english/lirvin/barn/CDPMOOHelpFiles/index.htm Lennie --=====================_1284031==.ALT Content-Type: text/html; charset="us-ascii" Thanks to Kevin Jepson, we now have a new addition to the various guides available for enCore housed within The Barn. These files came originally from the online help system of CPDEE MOO (which is now no longer online).  Looking over these help files, it appears they will be very helpful for moo administrators and programmers who are able to get more into the guts of the moo. 

Thanks to Kevin for salvaging these files!

Within The Barn, these new files can be found with the Guides. http://www.accd.edu/sac/english/lirvin/barn/default.htm
 Or you can go directly to them at
http://www.accd.edu/sac/english/lirvin/barn/CDPMOOHelpFiles/index.htm

Lennie

--=====================_1284031==.ALT-- From djg25@psu.edu Mon Feb 7 19:13:04 2005 Received: with ECARTIS (v1.0.0; list encore); Mon, 07 Feb 2005 19:13:04 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 255065BAD for ; Mon, 7 Feb 2005 19:13:04 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id CDFA0255E for ; Mon, 7 Feb 2005 19:13:03 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 12758-01-57 for ; Mon, 7 Feb 2005 19:13:00 -0600 (CST) X-Greylist: delayed 8412 seconds by postgrey-1.17 at mx2; Mon, 07 Feb 2005 19:13:00 CST Received: from f04n01.cac.psu.edu (f04s01.cac.psu.edu [128.118.141.31]) by mx2.utdallas.edu (Postfix) with ESMTP id 453093389 for ; Mon, 7 Feb 2005 19:13:00 -0600 (CST) Received: from faclapdjg.psu.edu (edhcp19.ds.psu.edu [146.186.61.149]) by f04n01.cac.psu.edu (8.13.2/8.13.2) with ESMTP id j17MqlnA044620 for ; Mon, 7 Feb 2005 17:52:47 -0500 Message-Id: <5.1.0.14.2.20050207174910.047984a0@email.psu.edu> X-Sender: djg25@email.psu.edu X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Mon, 07 Feb 2005 17:54:29 -0500 To: encore@utdallas.edu From: Deborah Gill Subject: [encore] Problems with Encore once again Mime-Version: 1.0 Content-Type: text/html; charset="us-ascii" X-Virus-Scanned: by amavisd-new X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1328 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: djg25@psu.edu Precedence: bulk Reply-to: djg25@psu.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hello all!

Daniel and Lennie have resolved my problems with the "blank" page coming up (thank you!).  Now we are having another problem:  When I fixed the "blank" issue, the right window no longer (1) loads when one logs on without hitting "look" first and (2) when you type in "look [object #]" (i.e., look #259), that object no longer appears in the right hand window, although the text description does appear in the left hand side. 

Any suggestions on how to fix this? 

Thanks in advance for any help you can give!

Best,

Debbie

Deborah Gill, Ph.D.
Assistant Professor of Spanish
Pennsylvania State University-DuBois
College Place
DuBois, PA 15801
(814) 375-4783
Email: djg25@psu.edu, msdgill@aol.com
From rbowman@bridgewater.edu Thu Feb 10 06:53:04 2005 Received: with ECARTIS (v1.0.0; list encore); Thu, 10 Feb 2005 06:53:04 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 9DABF5BAD for ; Thu, 10 Feb 2005 06:53:04 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 4ED21164B for ; Thu, 10 Feb 2005 06:53:04 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 28211-01-10 for ; Thu, 10 Feb 2005 06:52:59 -0600 (CST) X-Greylist: delayed 1742 seconds by postgrey-1.17 at mx2; Thu, 10 Feb 2005 06:52:58 CST Received: from Isis.bridgewater.edu (Isis.bridgewater.edu [147.138.10.100]) by mx2.utdallas.edu (Postfix) with ESMTP id 56B7B2CBF for ; Thu, 10 Feb 2005 06:52:58 -0600 (CST) Received: from bowman-home.bridgewater.edu (NewDial15.bridgewater.edu [147.138.110.85]) by Isis.bridgewater.edu (8.12.9/8.12.9) with ESMTP id j1ACNq57018245 for ; Thu, 10 Feb 2005 07:23:53 -0500 (EST) Message-Id: <6.2.0.14.0.20050210071443.02980150@mail.bridgewater.edu> X-Mailer: QUALCOMM Windows Eudora Version 6.2.0.14 Date: Thu, 10 Feb 2005 07:23:26 -0500 To: encore@utdallas.edu From: Richard L Bowman Subject: [encore] Java Problem with Encore & Windows XP In-Reply-To: <5.1.0.14.2.20050207174910.047984a0@email.psu.edu> References: <5.1.0.14.2.20050207174910.047984a0@email.psu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1329 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: rbowman@Bridgewater.EDU Precedence: bulk Reply-to: rbowman@Bridgewater.EDU List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore It sticks in my mind that I may have missed a discussion of Encore not finding the Java that is installed on a Windows system. Our MOO has been very stable over the years, and we have greatly appreciated having it as a tool for our professors to use with their classes. So over Christmas break, we upgraded to version 4.0.1. It appeared to be OK with just a minor problem or two that I still need to investigate further with our IT staff. This was while I was using Windows ME on my home computer. Then at the end of January I upgraded (with a clean install) to Windows XP at home. This morning I tried the MOO for the first time since then. First I had to find out how to get through XP's "firewall" by making our web site a trusted site. But now encore says "Sorry, you need a browser that supports Java to use this system." And my MSIE v 6.0 does support Java. Does anyone know what has happened, and how to fix it? Thanks. Richard Bowman ---------------------------------------------- Dr. Richard L. Bowman Dept. of Physics Bridgewater College, VA, USA BC-MOO: http://www.bridgewater.edu:7000/ From rbowman@bridgewater.edu Thu Feb 10 09:32:25 2005 Received: with ECARTIS (v1.0.0; list encore); Thu, 10 Feb 2005 09:32:25 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 1B5D15BAD for ; Thu, 10 Feb 2005 09:32:25 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 4ABA4158D for ; Thu, 10 Feb 2005 09:32:24 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 21467-01-67 for ; Thu, 10 Feb 2005 09:32:13 -0600 (CST) Received: from Isis.bridgewater.edu (Isis.bridgewater.edu [147.138.10.100]) by mx2.utdallas.edu (Postfix) with ESMTP id 2479F3470 for ; Thu, 10 Feb 2005 09:32:00 -0600 (CST) Received: from physics3.bridgewater.edu (Physics3.bridgewater.edu [147.138.100.144]) by Isis.bridgewater.edu (8.12.9/8.12.9) with ESMTP id j1AFVx57017345 for ; Thu, 10 Feb 2005 10:31:59 -0500 (EST) Message-Id: <6.2.0.14.0.20050210102338.02c56a38@mail.bridgewater.edu> X-Mailer: QUALCOMM Windows Eudora Version 6.2.0.14 Date: Thu, 10 Feb 2005 10:31:57 -0500 To: encore@utdallas.edu From: "Richard L. Bowman" Subject: [encore] Re: Java Problem with Encore & Windows XP In-Reply-To: <6.2.0.14.0.20050210071443.02980150@mail.bridgewater.edu> References: <5.1.0.14.2.20050207174910.047984a0@email.psu.edu> <6.2.0.14.0.20050210071443.02980150@mail.bridgewater.edu> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1330 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: rbowman@Bridgewater.EDU Precedence: bulk Reply-to: rbowman@Bridgewater.EDU List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore As a couple of persons have pointed out, my problem in not getting Encore and Windows XP working was due to not having Java ship with XP. The download from the Sun site at http://www.java.com/ worked just fine. Thanks. And I must now update my tutorial for students and faculty to address this for those who wish to connect from home and use XP. There is one small, but frustrating, problem that remains. On my home system, the text window in Xpress does not scroll automatically as more text is added. Thus after entering a command, I must manually scroll the text window to see what the MOO has done with my command. Here at the College where we are using Windows 2000, everything works just fine. Any suggestions? Thanks. Richard ----------------------------- Dr. Richard L. Bowman Dir. of Academic Computing / Prof. of Physics Bridgewater College, VA, USA From Lirvin@accdvm.accd.edu Thu Feb 10 12:58:42 2005 Received: with ECARTIS (v1.0.0; list encore); Thu, 10 Feb 2005 12:58:42 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 72F645BAD for ; Thu, 10 Feb 2005 12:58:42 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 37E4E151B for ; Thu, 10 Feb 2005 12:58:42 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 27099-01-14 for ; Thu, 10 Feb 2005 12:58:36 -0600 (CST) Received: from ACCDVM.ACCD.EDU (accdvm.accd.edu [209.184.119.1]) by mx2.utdallas.edu (Postfix) with SMTP id D13F6342D for ; Thu, 10 Feb 2005 12:58:35 -0600 (CST) Received: from Gilgamesh.accdvm.accd.edu [10.1.11.39] by ACCDVM.ACCD.EDU (IBM VM SMTP V2R4a) via TCP with SMTP ; Thu, 10 Feb 2005 12:57:17 CST Message-Id: <6.2.0.14.0.20050210125713.01c87540@accdvm.accd.edu> X-Mailer: QUALCOMM Windows Eudora Version 6.2.0.14 Date: Thu, 10 Feb 2005 12:58:44 -0600 To: rbowman@Bridgewater.EDU, encore@utdallas.edu From: Lennie Irvin Subject: [encore] Re: Java Problem with Encore & Windows XP In-Reply-To: <6.2.0.14.0.20050210102338.02c56a38@mail.bridgewater.edu> References: <5.1.0.14.2.20050207174910.047984a0@email.psu.edu> <6.2.0.14.0.20050210071443.02980150@mail.bridgewater.edu> <6.2.0.14.0.20050210102338.02c56a38@mail.bridgewater.edu> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1331 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: Lirvin@accdvm.accd.edu Precedence: bulk Reply-to: Lirvin@accdvm.accd.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hi Richard, I'm glad that the java download worked. As a reminder to you and others, the enCore v4 User Guide has a login trouble help page already included http://www.accd.edu/sac/english/lirvin/4guide/login.htm Lennie At 09:31 AM 2/10/2005, Richard L. Bowman wrote: >As a couple of persons have pointed out, my problem in not getting Encore >and Windows XP working was due to not having Java ship with XP. The >download from the Sun site at http://www.java.com/ worked just fine. >Thanks. And I must now update my tutorial for students and faculty to >address this for those who wish to connect from home and use XP. > >There is one small, but frustrating, problem that remains. On my home >system, the text window in Xpress does not scroll automatically as more >text is added. Thus after entering a command, I must manually scroll the >text window to see what the MOO has done with my command. Here at the >College where we are using Windows 2000, everything works just fine. Any >suggestions? > >Thanks. > >Richard >----------------------------- >Dr. Richard L. Bowman >Dir. of Academic Computing / Prof. of Physics >Bridgewater College, VA, USA > From Lisa.Mentz@pepperdine.edu Fri Feb 11 18:29:59 2005 Received: with ECARTIS (v1.0.0; list encore); Fri, 11 Feb 2005 18:29:59 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 686655BE9 for ; Fri, 11 Feb 2005 18:29:59 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 1E5BDF57 for ; Fri, 11 Feb 2005 18:29:59 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 21582-01-96 for ; Fri, 11 Feb 2005 18:29:56 -0600 (CST) X-Greylist: delayed 16156 seconds by postgrey-1.17 at mx2; Fri, 11 Feb 2005 18:29:55 CST Received: from mercury.pepperdine.edu (mercury.pepperdine.edu [137.159.8.35]) by mx2.utdallas.edu (Postfix) with ESMTP id C1235342C for ; Fri, 11 Feb 2005 18:29:55 -0600 (CST) Received: from mal-xconn1.pepperdine.edu (mal-xconn1.pepperdine.edu [137.159.8.42]) by mercury.pepperdine.edu (Pep-6.40o) with ESMTP id LAA29088 for ; Fri, 11 Feb 2005 11:59:57 -0800 (PST) Received: by mal-xconn1.pepperdine.edu with Internet Mail Service (5.5.2657.72) id ; Fri, 11 Feb 2005 12:00:37 -0800 Message-ID: <6FFDE0E08F13D311A6260008C7916D0E011E093A@mal-xsmail4.pepperdine.edu> From: "Mentz, Lisa (student)" To: "'encore@utdallas.edu'" Subject: [encore] Still having restart script problems-Help Date: Fri, 11 Feb 2005 12:00:36 -0800 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2657.72) Content-Type: text/plain X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1332 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: Lisa.Mentz@pepperdine.edu Precedence: bulk Reply-to: Lisa.Mentz@pepperdine.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hi there, I posted not too long ago that I was having problems with my restart script. I hope someone can help me figure out how to fix this so I can stop losing my data (luckily I've learned to backup often). Here's my process: I am running my Moo on a hosted site (genesismuds) running red hat linux servers. I compiled my script after having successfully implemented my patch to support German characters. I could never get ./restart to work (I think it did nothing) so I just began using the command nohup ./moo $german2l.db $german2l.db.new $2 >>& german2l.log & I finally figured out that I didn't have executable permission on the restart file, so I enabled that and used ./restart It worked but then I now have the regular file, the .new file, and a .old file. And my database reverts to really a really old version. Luckily after the first time this happened, I started doing regular backups. I read in the programmer manual you can use ./restart or ./moo but started using the restart script because I wanted to compress my database. I would be really grateful if I could get someone's script that runs on linux or had specific answers on how to fix this bad boy. Much Thanks, Lisa Mentz From Lisa.Mentz@pepperdine.edu Fri Feb 11 19:21:03 2005 Received: with ECARTIS (v1.0.0; list encore); Fri, 11 Feb 2005 19:21:04 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id C40E35BE9 for ; Fri, 11 Feb 2005 19:21:03 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 75911F5F for ; Fri, 11 Feb 2005 19:21:03 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 01016-01-7 for ; Fri, 11 Feb 2005 19:20:58 -0600 (CST) Received: from mercury.pepperdine.edu (mercury.pepperdine.edu [137.159.8.35]) by mx2.utdallas.edu (Postfix) with ESMTP id 10C55342C for ; Fri, 11 Feb 2005 19:20:56 -0600 (CST) Received: from mal-xconn1.pepperdine.edu (mal-xconn1.pepperdine.edu [137.159.8.42]) by mercury.pepperdine.edu (Pep-6.40o) with ESMTP id RAA08600 for ; Fri, 11 Feb 2005 17:20:16 -0800 (PST) Received: by mal-xconn1.pepperdine.edu with Internet Mail Service (5.5.2657.72) id ; Fri, 11 Feb 2005 17:20:55 -0800 Received: from DRCASE ([67.170.132.173]) by mal-xconn2.pepperdine.edu with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2657.72) id DHGKB7KW; Fri, 11 Feb 2005 17:20:53 -0800 From: "Mentz, Lisa (student)" To: "Mentz, Lisa (student)" , encore@utdallas.edu Message-ID: <002b01c510a1$38cfaac0$0300a8c0@DRCASE> References: <6FFDE0E08F13D311A6260008C7916D0E011E093A@mal-xsmail4.pepperdine.edu> Subject: [encore] Re: Still having restart script problems-Help Date: Fri, 11 Feb 2005 17:21:46 -0800 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1333 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: Lisa.Mentz@pepperdine.edu Precedence: bulk Reply-to: Lisa.Mentz@pepperdine.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore If it helps, someone had me check my shell and when I ran the settings, its shell /bin/tsch -Lisa ----- Original Message ----- From: "Mentz, Lisa (student)" To: Sent: Friday, February 11, 2005 12:00 PM Subject: [encore] Still having restart script problems-Help > Hi there, > > I posted not too long ago that I was having problems with my restart > script. > I hope someone can help me figure out how to fix this so I can stop losing > my data (luckily I've learned to backup often). Here's my process: > > I am running my Moo on a hosted site (genesismuds) running red hat linux > servers. > > I compiled my script after having successfully implemented my patch to > support German characters. > > I could never get ./restart to work (I think it did nothing) so I just > began > using the command nohup ./moo $german2l.db $german2l.db.new $2 >>& > german2l.log & > > I finally figured out that I didn't have executable permission on the > restart file, so I enabled that and used ./restart > > It worked but then I now have the regular file, the .new file, and a .old > file. And my database reverts to really a really old version. Luckily > after > the first time this happened, I started doing regular backups. I read in > the > programmer manual you can use ./restart or ./moo but started using the > restart script because I wanted to compress my database. > > I would be really grateful if I could get someone's script that runs on > linux or had specific answers on how to fix this bad boy. > > Much Thanks, > Lisa Mentz > From djg25@psu.edu Sun Feb 13 19:44:58 2005 Received: with ECARTIS (v1.0.0; list encore); Sun, 13 Feb 2005 19:44:59 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id C46BB5BAD for ; Sun, 13 Feb 2005 19:44:58 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 77086CA2 for ; Sun, 13 Feb 2005 19:44:58 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 14685-01-26 for ; Sun, 13 Feb 2005 19:44:53 -0600 (CST) Received: from f04n07.cac.psu.edu (f04s07.cac.psu.edu [128.118.141.35]) by mx2.utdallas.edu (Postfix) with ESMTP id F2AFD3389 for ; Sun, 13 Feb 2005 19:44:52 -0600 (CST) Received: from DebbiesRoom.psu.edu (access-isdn1-29.ds.psu.edu [146.186.43.223]) by f04n07.cac.psu.edu (8.13.2/8.13.2) with ESMTP id j1E1in3J032372 for ; Sun, 13 Feb 2005 20:44:50 -0500 Message-Id: <5.2.0.9.2.20050213204222.00bb5d98@email.psu.edu> X-Sender: djg25@email.psu.edu X-Mailer: QUALCOMM Windows Eudora Version 5.2.0.9 Date: Sun, 13 Feb 2005 20:44:48 -0500 To: encore@utdallas.edu From: Deborah Gill Subject: [encore] New Generic Objects and Appearing in the List Mime-Version: 1.0 Content-Type: text/html; charset="us-ascii" X-Virus-Scanned: by amavisd-new X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1334 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: djg25@psu.edu Precedence: bulk Reply-to: djg25@psu.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hello all!

Everyone has been so helpful I want to thank you!

I have another question which involves two parts:

I am trying to create a new "generic room type" and then I want it to show up in the "rooms" choices.  Is it possible to do this?

Thanks!

Have a great week, everyone!

Best,

Debbie

Deborah Gill, Ph.D.
Assistant Professor of Spanish
Pennsylvania State University-DuBois
College Place
DuBois, PA 15801
(814) 375-4783
Email: djg25@psu.edu, msdgill@aol.com




"Each of us has an inner dream that we can unfold if
we will just have the courage to admit what it is.
And the faith to trust our own admission. The admitting is often very difficult."

- Julia Cameron -
From Lirvin@accdvm.accd.edu Mon Feb 14 05:56:22 2005 Received: with ECARTIS (v1.0.0; list encore); Mon, 14 Feb 2005 05:56:22 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 756C25BAD for ; Mon, 14 Feb 2005 05:56:22 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 34773C65 for ; Mon, 14 Feb 2005 05:56:22 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 29769-01-25 for ; Mon, 14 Feb 2005 05:56:16 -0600 (CST) Received: from ACCDVM.ACCD.EDU (accdvm.accd.edu [209.184.119.1]) by mx2.utdallas.edu (Postfix) with SMTP id 48A5E3429 for ; Mon, 14 Feb 2005 05:56:16 -0600 (CST) Received: from Gilgamesh.accdvm.accd.edu [10.1.11.3] by ACCDVM.ACCD.EDU (IBM VM SMTP V2R4a) via TCP with SMTP ; Mon, 14 Feb 2005 05:54:58 CST Message-Id: <6.2.0.14.0.20050214055319.01cb5b40@accdvm.accd.edu> X-Mailer: QUALCOMM Windows Eudora Version 6.2.0.14 Date: Mon, 14 Feb 2005 05:57:22 -0600 To: encore@utdallas.edu From: Lennie Irvin Subject: [encore] Re: New Generic Objects and Appearing in the List In-Reply-To: <5.2.0.9.2.20050213204222.00bb5d98@email.psu.edu> References: <5.2.0.9.2.20050213204222.00bb5d98@email.psu.edu> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="=====================_170164718==.ALT" X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1335 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: Lirvin@accdvm.accd.edu Precedence: bulk Reply-to: Lirvin@accdvm.accd.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore --=====================_170164718==.ALT Content-Type: text/plain; charset="us-ascii"; format=flowed Hi Debbie, That's easy! Create your new generic and note its object number (probably a good idea to name it "Generic new room.") Then, when you are logged in as a wizard, click the wizard menu button. Next click the "Generics" option in the Xpress MOO Adminstration window that pops up. Click the "Edit Generics" button and select the "rooms" to edit. A list of the generics room numbers will appear. Simply type in the object number of your new generic in the list and save! That easy! I don't think you need to do anything about @corifying or anything like that (right Daniel?). Lennie At 07:44 PM 2/13/2005, Deborah Gill wrote: >Hello all! > >Everyone has been so helpful I want to thank you! > >I have another question which involves two parts: > >I am trying to create a new "generic room type" and then I want it to show >up in the "rooms" choices. Is it possible to do this? > >Thanks! > >Have a great week, everyone! > >Best, > >Debbie > >Deborah Gill, Ph.D. >Assistant Professor of Spanish >Pennsylvania State University-DuBois >College Place >DuBois, PA 15801 >(814) 375-4783 >Email: djg25@psu.edu, msdgill@aol.com > > > >"Each of us has an inner dream that we can unfold if >we will just have the courage to admit what it is. >And the faith to trust our own admission. The admitting is often very >difficult." > >- Julia Cameron - --=====================_170164718==.ALT Content-Type: text/html; charset="us-ascii" Hi Debbie,

That's easy!  Create your new generic and note its object number (probably a good idea to name it "Generic new room.")

Then, when you are logged in as a wizard, click the wizard menu button.

Next click the "Generics" option in the Xpress MOO Adminstration window that pops up.

Click the "Edit Generics" button and select the "rooms" to edit.  A list of the generics room numbers will appear.  Simply type in the object number of your new generic in the list and save!

That easy!

I don't think you need to do anything about @corifying or anything like that (right Daniel?).

Lennie




At 07:44 PM 2/13/2005, Deborah Gill wrote:

Hello all!

Everyone has been so helpful I want to thank you!

I have another question which involves two parts:

I am trying to create a new "generic room type" and then I want it to show up in the "rooms" choices.  Is it possible to do this?

Thanks!

Have a great week, everyone!

Best,

Debbie

Deborah Gill, Ph.D.
Assistant Professor of Spanish
Pennsylvania State University-DuBois
College Place
DuBois, PA 15801
(814) 375-4783
Email: djg25@psu.edu, msdgill@aol.com




"Each of us has an inner dream that we can unfold if
we will just have the courage to admit what it is.
And the faith to trust our own admission. The admitting is often very difficult."

- Julia Cameron -
--=====================_170164718==.ALT-- From Lirvin@accdvm.accd.edu Tue Feb 15 06:17:20 2005 Received: with ECARTIS (v1.0.0; list encore); Tue, 15 Feb 2005 06:17:20 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 876EE5C6B for ; Tue, 15 Feb 2005 06:17:20 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 458F4130D for ; Tue, 15 Feb 2005 06:17:20 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 13129-01-13 for ; Tue, 15 Feb 2005 06:17:14 -0600 (CST) Received: from ACCDVM.ACCD.EDU (accdvm.accd.edu [209.184.119.1]) by mx2.utdallas.edu (Postfix) with SMTP id 665162CBF for ; Tue, 15 Feb 2005 06:17:13 -0600 (CST) Received: from Gilgamesh.accdvm.accd.edu [10.1.11.26] by ACCDVM.ACCD.EDU (IBM VM SMTP V2R4a) via TCP with SMTP ; Tue, 15 Feb 2005 06:15:54 CST Message-Id: <6.2.0.14.0.20050215061237.01c5c068@accdvm.accd.edu> X-Mailer: QUALCOMM Windows Eudora Version 6.2.0.14 Date: Tue, 15 Feb 2005 06:17:27 -0600 To: encore@utdallas.edu From: Lennie Irvin Subject: [encore] enCore Consortium News Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="=====================_35500000==.ALT" X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1336 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: Lirvin@accdvm.accd.edu Precedence: bulk Reply-to: Lirvin@accdvm.accd.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore --=====================_35500000==.ALT Content-Type: text/plain; charset="us-ascii"; format=flowed Hi Everyone, The Steering Committee for the new enCore Consortium recently met, and we have a number of announcements and news items to share with the general enCore community. I think you will agree with me that all of this is good news. *********************************************************************** enCore Consortium Announcements Organization: The enCore Consortium is now officially an unincorporated 501(c)(3) non-profit membership organization with a federal tax ID (EIN), a bank account with some funds, a set of By-Laws, a Steering Committee with 3 officers, members, and a domain name and website. http://encore-consortium.org Steering Committee Lennie Irvin (President), San Antonio College Barbara McManus (Treasurer) College of New Rochelle Dene Grigar (Secretary), Texas Women's University Daniel Jung, University of Bergen, Norway Cynthia Haynes, University of Texas at Dallas Rhonna Robbins-Sponaas, Norway Jeffrey Schneider, Vassar College enCore Consortium--enCore Open Source MOO Project The enCore Open Source MOO Project, initiated by Jan Holmevik and Cynthia Haynes, has begun its second decade (Wow!). In a meeting last month between Jan, Cynthia, Dene, and Lennie, the attendees affirmed that the enCore Consortium is working to support the enCore Open Source MOO Project. In essence, these two efforts are one. enCore's Lead Programmer--Daniel Jung The heart of enCore for years has been Jan Holmevik who was the lead programmer. Last year, Jan passed this job on to Daniel Jung who has been involved with enCore for the last five years and worked with Jan in Bergen. The best news we have to pass on is that Daniel has received a full-time position at his school which enables him to devote considerable time to working on enCore. The Consortium has voted to provide financial assistance to Daniel and his work. The other good news is that Daniel and his wife are expecting twins. Jan Holmevik remains very interested in enCore. He currently is starting a new position at a university in Copenhagen, Denmark, and is working on other programming projects. The Consortium also supports financial assistance to Jan and Cynthia for consulting work related to enCore. Membership in the enCore Consortium Our Steering Committee is still working on ideas about membership. I can tell you a few general things about membership at this point: 1) As an interested user of enCore, you are welcome as a member of the Consortium. There is not membership fee. 2) In fact, membership in the Consortium will help its goals of supporting the enCore Project. Demonstrating a large number of members will be very important when we begin making grant requests. 3) We are attempting to create some benefits for being a member, perhaps access to some special services or offerings. We don't, however, want these services or offerings to get in the way of the spirit of open source that underlies enCore. One benefit of being part of the Consortium is that your local site may be able to receive funds or services generated from grants received by the Consortium. Please stay tuned as we work out the details of what membership in the Consortium means. In the near future, we will be doing a more official "member sign up." enCore Symposium August 12-14, 2005 http://lingua.utdallas.edu/poster-new.jpg Mark your calendar and save your pennies to come to Dallas in August. Dene is the mastermind of this symposium, but all of us envision it as a working gathering and not an academic conference with papers. We will provide more definite details as we have them. The date at least is set. enCore v5 in the works Daniel Jung is actively working on a new version of enCore that promises to be a great upgrade. However, as with all new releases, the release date is not set at this time, and we can make no promises. Our target is to get a beta version out later this Spring. Test it through the Summer, and then hopefully release it for next Fall. The Consortium has made one of its top priorities to support this new release of enCore. Interested in getting involved? If you are interested in getting involved in the enCore Consortium, contact me (Lennie Irvin) at Lirvin@accd.edu. If you have questions about the Consortium or want to talk about its possibilities, I encourage you to post those to the encore-list for general discussion. Cheers to the Second Decade of enCore! Lennie --=====================_35500000==.ALT Content-Type: text/html; charset="us-ascii" Hi Everyone,

The Steering Committee for the new enCore Consortium recently met, and we have a number of announcements and news items to share with the general enCore community.  I think you will agree with me that all of this is good news.

***********************************************************************
enCore Consortium Announcements
 
Organization:
The enCore Consortium is now officially an unincorporated 501(c)(3) non-profit membership organization with a federal tax ID (EIN), a bank account with some funds, a set of By-Laws, a Steering Committee with 3 officers, members, and a domain name and website.
http://encore-consortium.org
 
Steering Committee
Lennie Irvin (President), San Antonio College
Barbara McManus (Treasurer) College of New Rochelle
Dene Grigar (Secretary), Texas Womens University
Daniel Jung, University of Bergen, Norway
Cynthia Haynes, University of Texas at Dallas
Rhonna Robbins-Sponaas, Norway
Jeffrey Schneider, Vassar College
 
enCore Consortium--enCore Open Source MOO Project
The enCore Open Source MOO Project, initiated by Jan Holmevik and Cynthia Haynes, has begun its second decade (Wow!).  In a meeting last month between Jan, Cynthia, Dene, and Lennie, the attendees affirmed that the enCore Consortium is working to support the enCore Open Source MOO Project.  In essence, these two efforts are one. 
 
enCores Lead Programmer--Daniel Jung
The heart of enCore for years has been Jan Holmevik who was the lead programmer.  Last year, Jan passed this job on to Daniel Jung who has been involved with enCore for the last five years and worked with Jan in Bergen. 
 
The best news we have to pass on is that Daniel has received a full-time position at his school which enables him to devote considerable time to working on enCore.  The Consortium has voted to provide financial assistance to Daniel and his work.  The other good news is that Daniel and his wife are expecting twins.
 
Jan Holmevik remains very interested in enCore.  He currently is starting a new position at a university in Copenhagen, Denmark, and is working on other programming projects.  The Consortium also supports financial assistance to Jan and Cynthia for consulting work related to enCore. 
 
Membership in the enCore Consortium
Our Steering Committee is still working on ideas about membership.  I can tell you a few general things about membership at this point:
1) As an interested user of enCore, you are welcome as a member of the Consortium.  There is not membership fee.
 
2) In fact, membership in the Consortium will help its goals of supporting the enCore Project.  Demonstrating a large number of members will be very important when we begin making grant requests.
 
3) We are attempting to create some benefits for being a member, perhaps access to some special services or offerings.  We dont, however, want these services or offerings to get in the way of the spirit of open source that underlies enCore.  One benefit of being part of the Consortium is that your local site may be able to receive funds or services generated from grants received by the Consortium.
 
Please stay tuned as we work out the details of what membership in the Consortium means.  In the near future, we will be doing a more official member sign up. 
 
enCore Symposium August 12-14, 2005 http://lingua.utdallas.edu/poster-new.jpg
Mark your calendar and save your pennies to come to Dallas in August.  Dene is the mastermind of this symposium, but all of us envision it as a working gathering and not an academic conference with papers.  We will provide more definite details as we have them.  The date at least is set. 
 
enCore v5 in the works
Daniel Jung is actively working on a new version of enCore that promises to be a great upgrade.  However, as with all new releases, the release date is not set at this time, and we can make no promises.  Our target is to get a beta version out later this Spring.  Test it through the Summer, and then hopefully release it for next Fall.  The Consortium has made one of its top priorities to support this new release of enCore. 
 
Interested in getting involved?
If you are interested in getting involved in the enCore Consortium, contact me (Lennie Irvin) at Lirvin@accd.edu.  If you have questions about the Consortium or want to talk about its possibilities, I encourage you to post those to the encore-list for general discussion.
 
Cheers to the Second Decade of enCore!
 
Lennie  
 
  --=====================_35500000==.ALT-- From ken@ss.pku.edu.cn Tue Feb 15 07:17:13 2005 Received: with ECARTIS (v1.0.0; list encore); Tue, 15 Feb 2005 07:17:13 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 1A7445C6B for ; Tue, 15 Feb 2005 07:17:13 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id C34E91366 for ; Tue, 15 Feb 2005 07:17:12 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 16228-01-26 for ; Tue, 15 Feb 2005 07:17:07 -0600 (CST) X-Greylist: delayed 406 seconds by postgrey-1.17 at mx2; Tue, 15 Feb 2005 07:17:02 CST Received: from mail.ss.pku.edu.cn (unknown [61.50.221.201]) by mx2.utdallas.edu (Postfix) with SMTP id 9A3C93392 for ; Tue, 15 Feb 2005 07:16:59 -0600 (CST) Received: (qmail 13789 invoked by uid 0); 15 Feb 2005 21:10:13 +0800 Received: from unknown (HELO ?221.216.167.174?) (ken@221.216.167.174) by 61.50.221.201 with SMTP; 15 Feb 2005 21:10:13 +0800 Mime-Version: 1.0 (Apple Message framework v619.2) In-Reply-To: <6.2.0.14.0.20050215061237.01c5c068@accdvm.accd.edu> References: <6.2.0.14.0.20050215061237.01c5c068@accdvm.accd.edu> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <3ec27e4bf4dcaf527da541efd278b61f@ss.pku.edu.cn> Content-Transfer-Encoding: 7bit From: Kenneth Fields Subject: [encore] XML Format Date: Tue, 15 Feb 2005 21:10:12 +0800 To: encore@utdallas.edu X-Mailer: Apple Mail (2.619.2) X-Virus-Scanned: amavisd-new at utdallas.edu X-Spam-Status: No, hits=1.433 tagged_above=1 required=8 tests=BAYES_40, DNS_FROM_RFC_WHOIS, RCVD_BY_IP, SARE_RECV_IP_061050, UTD_UNKNOWN_CLIENT X-Spam-Level: * X-archive-position: 1337 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: ken@ss.pku.edu.cn Precedence: bulk Reply-to: ken@ss.pku.edu.cn List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Would it be reasonable to think of making the encore database an xml project. I mean not just converting/exporting to xml format, but actually working in that format so that it can share it's dynamic knowledge base (rooms, objects) with some other kinds of interfaces - like wiki's. Are there any tools for visualizing the network structure of the Moo. thanks, ken From alexborgia@hotmail.com Tue Feb 15 20:06:07 2005 Received: with ECARTIS (v1.0.0; list encore); Tue, 15 Feb 2005 20:06:07 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 640DC5BB0 for ; Tue, 15 Feb 2005 20:06:07 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 0D6DFEFA for ; Tue, 15 Feb 2005 20:06:07 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 01944-01-81 for ; Tue, 15 Feb 2005 20:06:03 -0600 (CST) Received: from hotmail.com (bay13-dav5.bay13.hotmail.com [64.4.31.179]) by mx2.utdallas.edu (Postfix) with ESMTP id A00EC2CBF for ; Tue, 15 Feb 2005 20:06:01 -0600 (CST) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 15 Feb 2005 18:06:00 -0800 Message-ID: Received: from 66.36.145.64 by BAY13-DAV5.phx.gbl with DAV; Wed, 16 Feb 2005 02:05:55 +0000 X-Originating-IP: [66.36.145.64] X-Originating-Email: [alexborgia@hotmail.com] X-Sender: alexborgia@hotmail.com From: "Alexandre Borgia" To: Subject: [encore] Re: XML Format Date: Tue, 15 Feb 2005 21:06:04 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft Office Outlook, Build 11.0.5510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Thread-Index: AcUTYLjpH9JQjnVGRSuP8/QburYmuQAVRjMg In-Reply-To: <3ec27e4bf4dcaf527da541efd278b61f@ss.pku.edu.cn> X-OriginalArrivalTime: 16 Feb 2005 02:06:00.0658 (UTC) FILETIME=[0FA3DB20:01C513CC] X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1338 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: alexborgia@hotmail.com Precedence: bulk Reply-to: alexborgia@hotmail.com List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hi, enCore may be seen as an Object-Oriented Database. Data in MOO makes no sense by itself (like it does in a relational database, a file system, a content repository, etc.) It is by querying an object's = interface that you know what kind of information it holds and under which forms it = can be retrieved. It is the object's responsibility to keep what = information it believes necessary and find ways to reconstruct missing bits so it = always furnishes something whole and meaningful. Seen from this perspective, it is not a matter of using XML as a database format for MOOs but more of making MOO objects XML-aware - a = little like the mechanism used to serve web content in enCore. Through this philosophy, a way to achieve your example goal of making a Wiki would be to make an underlying "Wiki Class" which is implemented by all your library objects (rooms, notes, projectors, web pages, etc.) This type of object would have a mean to navigate through = all other Wiki nodes, communicate with them, find matching text, keep track = of links and finally provide a way to publish its findings (let it be plain text, HTML, XML, ...) It would then be up to you to either make an external interface to present your Wiki (for instance, fetching raw XMLs using enCore built-in = web server) or use enCore's interface directly. The important thing to = seize is how, in MOO, "the medium is the message" :) (Marshall McLuhan) This is the natural way to go with MOOs, or at least a point of view on the subject. Note that nothing prevents you from using more generic channels of communication with specialized "Wiki" clients, but it will/should always involve exploiting one of the many facets of = specialized objects - never data directly. - Alexandre Borgia PS: I remember hearing about XML parsers / XSL processors for MOOs. Is anyone aware of such projects? -----Original Message----- From: encore-bounce@utdallas.edu [mailto:encore-bounce@utdallas.edu] On Behalf Of Kenneth Fields Sent: mardi 15 f=E9vrier 2005 08:10 To: encore@utdallas.edu Subject: [encore] XML Format Would it be reasonable to think of making the encore database an xml=20 project. I mean not just converting/exporting to xml format, but actually=20 working in that format so that it can share it's dynamic knowledge base (rooms, objects) with=20 some other kinds of interfaces - like wiki's. Are there any tools for visualizing the network structure of the Moo. thanks, ken From milokp@gmail.com Tue Feb 15 21:44:03 2005 Received: with ECARTIS (v1.0.0; list encore); Tue, 15 Feb 2005 21:44:03 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 164985BB0 for ; Tue, 15 Feb 2005 21:44:03 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id C100913BB for ; Tue, 15 Feb 2005 21:44:02 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 07540-01-84 for ; Tue, 15 Feb 2005 21:43:59 -0600 (CST) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.192]) by mx2.utdallas.edu (Postfix) with ESMTP id D2691341E for ; Tue, 15 Feb 2005 21:43:58 -0600 (CST) Received: by rproxy.gmail.com with SMTP id j1so24582rnf for ; Tue, 15 Feb 2005 19:43:58 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=nBmY5NfV2cs2u6r58w90lmuHs0B8AfdfugjS/6jK912kJRCgF86v7eC0uPzh1wqoKTJBB9TFq9rTHkndiHs9goFodXO+fyXU24/4KVwcyN09IRBmNwjiCJe7gjlrJfJqR7n0+tT/7+H0vsVFhN2cBGnvVk0qsjmQTSsTyupJwBg= Received: by 10.38.126.57 with SMTP id y57mr112883rnc; Tue, 15 Feb 2005 19:43:57 -0800 (PST) Received: by 10.38.208.75 with HTTP; Tue, 15 Feb 2005 19:43:57 -0800 (PST) Message-ID: Date: Tue, 15 Feb 2005 22:43:57 -0500 From: Milo Pschigoda To: encore@utdallas.edu Subject: [encore] Re: XML Format In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable References: <3ec27e4bf4dcaf527da541efd278b61f@ss.pku.edu.cn> X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1339 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: milokp@gmail.com Precedence: bulk Reply-to: milokp@gmail.com List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore I am not really taking either side to this discussion, so long as the front end works, I do not really care how the back end works. I'd like to point out some things, however. We would not be moving from an enCore data base to an XML database. EnCore is just a starting data base for the LambdaMoo server, called a Core file in lambda terms. It would also be, I would assume, a large task to re-tool what is arguably lambdaMoo's main purpose, which is to parse it's database. On top of that, going XML would take a rewriting and reorgonising of the enCore database, which is another large task. This is not to say that I am against the project, just that if we were to go this way, we might just want to think about writing a new server. One that has an XML data file and that would provide for the features a wiki has that enCore does not, which to me is only a change log, as encore already has the "edit from within the environment" aspect. With a new server, we there might be a way to get away from the Java applet as well. As for visualising the Moo, you are looking for some "auto mapping" feature? I know some mud clients have auto map, it would not be real-time, and it would not be interactive, but it might be a stop-gap solution. Just my off the cuff thoughts, MilesP On Tue, 15 Feb 2005 21:06:04 -0500, Alexandre Borgia wrote: > Hi, >=20 > enCore may be seen as an Object-Oriented Database. Data in MOO > makes no sense by itself (like it does in a relational database, a file > system, a content repository, etc.) It is by querying an object's interf= ace > that you know what kind of information it holds and under which forms it = can > be retrieved. It is the object's responsibility to keep what information= it > believes necessary and find ways to reconstruct missing bits so it always > furnishes something whole and meaningful. > Seen from this perspective, it is not a matter of using XML as a > database format for MOOs but more of making MOO objects XML-aware - a lit= tle > like the mechanism used to serve web content in enCore. >=20 > Through this philosophy, a way to achieve your example goal of > making a Wiki would be to make an underlying "Wiki Class" which is > implemented by all your library objects (rooms, notes, projectors, web > pages, etc.) This type of object would have a mean to navigate through a= ll > other Wiki nodes, communicate with them, find matching text, keep track o= f > links and finally provide a way to publish its findings (let it be plain > text, HTML, XML, ...) >=20 > It would then be up to you to either make an external interface t= o > present your Wiki (for instance, fetching raw XMLs using enCore built-in = web > server) or use enCore's interface directly. The important thing to seize= is > how, in MOO, "the medium is the message" :) (Marshall McLuhan) >=20 > This is the natural way to go with MOOs, or at least a point of v= iew > on the subject. Note that nothing prevents you from using more generic > channels of communication with specialized "Wiki" clients, but it > will/should always involve exploiting one of the many facets of specializ= ed > objects - never data directly. >=20 >=20 > - Alexandre Borgia >=20 >=20 > PS: I remember hearing about XML parsers / XSL processors for MOOs. Is > anyone aware of such projects? >=20 >=20 > -----Original Message----- > From: encore-bounce@utdallas.edu [mailto:encore-bounce@utdallas.edu] On > Behalf Of Kenneth Fields > Sent: mardi 15 f=E9vrier 2005 08:10 > To: encore@utdallas.edu > Subject: [encore] XML Format >=20 > Would it be reasonable to think of making the encore database an xml > project. > I mean not just converting/exporting to xml format, but actually > working in that format > so that it can share it's dynamic knowledge base (rooms, objects) with > some other kinds of > interfaces - like wiki's. >=20 > Are there any tools for visualizing the network structure of the Moo. >=20 > thanks, > ken >=20 > From herve@hawaii.edu Wed Feb 16 03:32:37 2005 Received: with ECARTIS (v1.0.0; list encore); Wed, 16 Feb 2005 03:32:38 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 8B73D5BAD for ; Wed, 16 Feb 2005 03:32:37 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 50A41141C for ; Wed, 16 Feb 2005 03:32:37 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 25831-01-99 for ; Wed, 16 Feb 2005 03:32:34 -0600 (CST) X-Greylist: delayed 7262 seconds by postgrey-1.17 at mx2; Wed, 16 Feb 2005 03:32:33 CST Received: from rapidash.its.hawaii.edu (rapidash.its.hawaii.edu [128.171.94.83]) by mx2.utdallas.edu (Postfix) with ESMTP id D79A0342A for ; Wed, 16 Feb 2005 03:32:33 -0600 (CST) Received: from conversion-daemon.mail.hawaii.edu by mail.hawaii.edu (iPlanet Messaging Server 5.1 HotFix 1.14 (built Oct 8 2003)) id <0IBZ00A01TVAZJ@mail.hawaii.edu>; Tue, 15 Feb 2005 21:31:30 -1000 (HST) Received: from uhunix2 (uhunix2.its.hawaii.edu [128.171.44.7]) by mail.hawaii.edu (iPlanet Messaging Server 5.1 HotFix 1.14 (built Oct 8 2003)) with ESMTPS id <0IBZ009PEU7PAI@mail.hawaii.edu>; Tue, 15 Feb 2005 21:31:01 -1000 (HST) Date: Tue, 15 Feb 2005 21:31:01 -1000 (HST) From: "Kr@nX" Subject: [encore] Re: XML Format In-reply-to: X-X-Sender: herve@uhunix2 To: Alexandre Borgia Cc: encore@utdallas.edu Message-id: MIME-version: 1.0 Content-type: TEXT/PLAIN; charset=iso-8859-1 Content-transfer-encoding: QUOTED-PRINTABLE References: X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1340 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: herve@hawaii.edu Precedence: bulk Reply-to: herve@hawaii.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Korbeau, Yes, Aldon (Lambda) did some work with it some time ago. Lost track of how far he got though, but he mentions MOO canada, so some work must have done there as well. http://ahynes1.homeip.net:8000/moo/connectivity.htm under the XML section. Aloha, rv, =3D) > PS: I remember hearing about XML parsers / XSL processors for MOOs. Is > anyone aware of such projects? > > > -----Original Message----- > From: encore-bounce@utdallas.edu [mailto:encore-bounce@utdallas.edu] On > Behalf Of Kenneth Fields > Sent: mardi 15 f=E9vrier 2005 08:10 > To: encore@utdallas.edu > Subject: [encore] XML Format > > Would it be reasonable to think of making the encore database an xml > project. > I mean not just converting/exporting to xml format, but actually > working in that format > so that it can share it's dynamic knowledge base (rooms, objects) with > some other kinds of > interfaces - like wiki's. > > Are there any tools for visualizing the network structure of the Moo. > > thanks, > ken > > ------BEGIN GC BLOCK----- GO d? s-:-- !a C++ L++ P++ L++ E- W-- N+ o K- w--- !O M !V PS+++ !PE Y+ PGP t !5 X R* !tv b+ !DI D- G e+++ h !r y? ------END GC BLOCK------ From Lirvin@accdvm.accd.edu Wed Feb 16 06:23:37 2005 Received: with ECARTIS (v1.0.0; list encore); Wed, 16 Feb 2005 06:23:37 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 9E3835BAD for ; Wed, 16 Feb 2005 06:23:37 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 515D513FE for ; Wed, 16 Feb 2005 06:23:37 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 06253-01-56 for ; Wed, 16 Feb 2005 06:23:34 -0600 (CST) Received: from ACCDVM.ACCD.EDU (accdvm.accd.edu [209.184.119.1]) by mx2.utdallas.edu (Postfix) with SMTP id D4A293430 for ; Wed, 16 Feb 2005 06:23:33 -0600 (CST) Received: from Gilgamesh.accdvm.accd.edu [10.1.11.66] by ACCDVM.ACCD.EDU (IBM VM SMTP V2R4a) via TCP with SMTP ; Wed, 16 Feb 2005 06:22:15 CST Message-Id: <6.2.0.14.0.20050216062027.01cbddc0@accdvm.accd.edu> X-Mailer: QUALCOMM Windows Eudora Version 6.2.0.14 Date: Wed, 16 Feb 2005 06:23:55 -0600 To: encore@utdallas.edu From: Lennie Irvin Subject: [encore] Re: XML Format In-Reply-To: References: Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1"; format=flowed Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1341 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: Lirvin@accdvm.accd.edu Precedence: bulk Reply-to: Lirvin@accdvm.accd.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore You all are way above my head, but I wanted to express my interest in the=20 topic. I know there has been some similar discussion regarding php and=20 encore moo. I don't know if this is similar to your XML speculation. What= =20 exactly did Jan do related to XML for enCore 4? I know he did something,=20 but obviously it isn't what you all are talking about. I search the encore consortium development site, and found this post from=20 Alex that seems to be on a similar topic (on Dynamic Content (Inline=20 Scripting, XSL, ...) . I thought it was worth throwing back out there. http://www.encore-consortium.org/moodle/mod/forum/discuss.php?d=3D12 Lennie At 01:31 AM 2/16/2005, you wrote: >Korbeau, >Yes, Aldon (Lambda) did some work with it some time ago. Lost track of how >far he got though, but he mentions MOO canada, so some work must have >done there as well. >http://ahynes1.homeip.net:8000/moo/connectivity.htm >under the XML section. >Aloha, >rv, =3D) > > > PS: I remember hearing about XML parsers / XSL processors for MOOs. Is > > anyone aware of such projects? > > > > > > -----Original Message----- > > From: encore-bounce@utdallas.edu [mailto:encore-bounce@utdallas.edu] On > > Behalf Of Kenneth Fields > > Sent: mardi 15 f=E9vrier 2005 08:10 > > To: encore@utdallas.edu > > Subject: [encore] XML Format > > > > Would it be reasonable to think of making the encore database an xml > > project. > > I mean not just converting/exporting to xml format, but actually > > working in that format > > so that it can share it's dynamic knowledge base (rooms, objects) with > > some other kinds of > > interfaces - like wiki's. > > > > Are there any tools for visualizing the network structure of the Moo. > > > > thanks, > > ken > > > > > >------BEGIN GC BLOCK----- >GO d? s-:-- !a C++ L++ P++ L++ E- W-- N+ o K- w--- !O M !V >PS+++ !PE Y+ PGP t !5 X R* !tv b+ !DI D- G e+++ h !r y? >------END GC BLOCK------ From cynthiah@utdallas.edu Wed Feb 16 11:50:06 2005 Received: with ECARTIS (v1.0.0; list encore); Wed, 16 Feb 2005 11:50:06 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from smtp1.utdallas.edu (smtp1-pmn.utdallas.edu [192.168.1.5]) by nobel.utdallas.edu (Postfix) with ESMTP id 1DF645BAD for ; Wed, 16 Feb 2005 11:50:06 -0600 (CST) Received: from [10.0.1.2] (66.169.106.136.ts46v-02.mhe2.ftwrth.tx.charter.com [66.169.106.136]) by smtp1.utdallas.edu (Postfix) with ESMTP id 7EDCB388FB0; Wed, 16 Feb 2005 11:50:05 -0600 (CST) User-Agent: Microsoft-Entourage/11.1.0.040913 Date: Wed, 16 Feb 2005 11:52:53 -0600 Subject: [encore] Re: XML Format From: Cynthia Haynes To: , Message-ID: In-Reply-To: <6.2.0.14.0.20050216062027.01cbddc0@accdvm.accd.edu> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit X-archive-position: 1342 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: cynthiah@utdallas.edu Precedence: bulk Reply-to: cynthiah@utdallas.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore On the enCore download site, Jan explains the general modification to the code this way: " enCore version 4.0 represents a total overhaul of the Xpress client. While the interface has only received minor cosmetic improvements, all code generated by the system has been converted to XHTML 1.0 and a new set of utility verbs are now being used for tagging." Maybe this helps... Best, Cynthia __Cynthia Haynes, Director of Rhetoric and Writing___________________ University of Texas at Dallas cynthiah@utdallas.edu School of Arts & Humanities http://www.utdallas.edu/~cynthiah PO Box 830688-JO 31 http://lingua.utdallas.edu:7000 Richardson, TX 75083-0688 (O)972-883-6340 (F)972-883-2989 From wmrowland@earthlink.net Wed Feb 16 17:24:40 2005 Received: with ECARTIS (v1.0.0; list encore); Wed, 16 Feb 2005 17:24:40 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 6FFF05BBB for ; Wed, 16 Feb 2005 17:24:40 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 2601FB3B for ; Wed, 16 Feb 2005 17:24:40 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 17706-01-9 for ; Wed, 16 Feb 2005 17:24:37 -0600 (CST) Received: from smtpauth07.mail.atl.earthlink.net (smtpauth07.mail.atl.earthlink.net [209.86.89.67]) by mx2.utdallas.edu (Postfix) with ESMTP id 7EE3A2CBF for ; Wed, 16 Feb 2005 17:24:36 -0600 (CST) Received: from [69.150.179.230] (helo=wrowland) by smtpauth07.mail.atl.earthlink.net with asmtp (Exim 4.34) id 1D1YX5-0002xH-Ro for encore@utdallas.edu; Wed, 16 Feb 2005 18:24:36 -0500 DomainKey-Signature: a=rsa-sha1; q=dns; c=simple; s=test1; d=earthlink.net; h=Message-ID:From:To:Subject:Date:MIME-Version:Content-Type:X-Priority:X-MSMail-Priority:X-Mailer:X-MimeOLE; b=jVwAnsPlDWYxpIz4ISfgFQEqqebSJMlZf1UxGe3MdLAE73c1cxgj+yXOh4DgXYw8; Message-ID: <004301c5147f$8458ee70$6501a8c0@wrowland> From: "William D. Rowland" To: "Encore Mailinglist" Subject: [encore] activity Date: Wed, 16 Feb 2005 17:30:35 -0600 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0040_01C5144D.393DB5B0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-ELNK-Trace: cb001bddce8cb139419b067d67682ccd7e972de0d01da940d0a8ab6583f471937f1903b5cb745339350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 69.150.179.230 X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1343 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: wmrowland@earthlink.net Precedence: bulk Reply-to: wmrowland@earthlink.net List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore This is a multi-part message in MIME format. ------=_NextPart_000_0040_01C5144D.393DB5B0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Please excuse me for not thanking everyone for responses...the reason is = that each one solves part of the problem and I am off to another as = quick as I hear from anyone. Progress is real some days and elusive = another. But I really appreciate this list. Nothing was available when I = came into the MOO world about 1996. I had to call up Pavel Curtis once = and he was most helpful. Thereafter the folks I was working with cut me = a wide path just because I had talked with Him! I have been away from = MOO so long that long term memory has flat-lined. Anyway, my question today is related to my recollection that there was a = @log month or some such to tell me who had logged on recently. Is = something like that still operative? Thanks in advance. Bill R. ------=_NextPart_000_0040_01C5144D.393DB5B0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Please excuse me for not thanking = everyone for=20 responses...the reason is that each one solves part of the problem and I = am off=20 to another as quick as I hear from anyone. Progress is real some days = and=20 elusive another. But I really appreciate this list. Nothing was = available when I=20 came into the MOO world about 1996. I had to call up Pavel Curtis once = and he=20 was most helpful. Thereafter the folks I was working with cut me a wide = path=20 just because I had talked with Him! I have been away from MOO so = long that=20 long term memory has flat-lined.
 
Anyway, my question today is related to = my=20 recollection that there was a @log month or some such to tell me who had = logged=20 on recently. Is something like that still operative?  Thanks in=20 advance.
 
Bill R.
------=_NextPart_000_0040_01C5144D.393DB5B0-- From cynthiah@utdallas.edu Wed Feb 16 17:42:47 2005 Received: with ECARTIS (v1.0.0; list encore); Wed, 16 Feb 2005 17:42:47 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from smtp1.utdallas.edu (smtp1-pmn.utdallas.edu [192.168.1.5]) by nobel.utdallas.edu (Postfix) with ESMTP id 1D1535BBB for ; Wed, 16 Feb 2005 17:42:47 -0600 (CST) Received: from [10.0.1.2] (66.169.106.136.ts46v-02.mhe2.ftwrth.tx.charter.com [66.169.106.136]) by smtp1.utdallas.edu (Postfix) with ESMTP id 809B0388C3C; Wed, 16 Feb 2005 17:42:36 -0600 (CST) User-Agent: Microsoft-Entourage/11.1.0.040913 Date: Wed, 16 Feb 2005 17:45:23 -0600 Subject: [encore] Re: activity From: Cynthia Haynes To: , Encore Mailinglist Message-ID: In-Reply-To: <004301c5147f$8458ee70$6501a8c0@wrowland> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit X-archive-position: 1344 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: cynthiah@utdallas.edu Precedence: bulk Reply-to: cynthiah@utdallas.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Bill, I believe the command is @lastlog. Best, Cynthia __Cynthia Haynes, Director of Rhetoric and Writing___________________ University of Texas at Dallas cynthiah@utdallas.edu School of Arts & Humanities http://www.utdallas.edu/~cynthiah PO Box 830688-JO 31 http://lingua.utdallas.edu:7000 Richardson, TX 75083-0688 (O)972-883-6340 (F)972-883-2989 From kevijeps@telusplanet.net Wed Feb 16 20:35:08 2005 Received: with ECARTIS (v1.0.0; list encore); Wed, 16 Feb 2005 20:35:08 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id A6D735BBB for ; Wed, 16 Feb 2005 20:35:08 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 9465A14B6 for ; Wed, 16 Feb 2005 20:35:08 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 28242-01-98 for ; Wed, 16 Feb 2005 20:35:05 -0600 (CST) X-Greylist: delayed 11007 seconds by postgrey-1.17 at mx2; Wed, 16 Feb 2005 20:34:59 CST Received: from priv-edtnes56.telusplanet.net (outbound01.telus.net [199.185.220.220]) by mx2.utdallas.edu (Postfix) with ESMTP id F30BB2CBF for ; Wed, 16 Feb 2005 20:34:55 -0600 (CST) Received: from lilith ([137.186.225.85]) by priv-edtnes56.telusplanet.net (InterMail vM.6.01.04.00 201-2131-118-20041027) with ESMTP id <20050216233132.NRYM24580.priv-edtnes56.telusplanet.net@lilith>; Wed, 16 Feb 2005 16:31:32 -0700 From: "Kevin Jepson" To: , "'Encore Mailinglist'" Subject: [encore] Re: activity Date: Wed, 16 Feb 2005 16:31:32 -0700 Message-ID: <000201c5147f$a623e6e0$640119ac@lilith> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0003_01C51444.F9C81C20" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.6626 In-reply-to: <004301c5147f$8458ee70$6501a8c0@wrowland> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Importance: Normal X-Virus-Scanned: amavisd-new at utdallas.edu X-Spam-Status: No, hits=1.743 tagged_above=1 required=8 tests=BAYES_50, DNS_FROM_RFC_POST, HTML_40_50, HTML_MESSAGE, HTML_TEXT_AFTER_BODY, HTML_TEXT_AFTER_HTML X-Spam-Level: * X-archive-position: 1345 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: kevijeps@telusplanet.net Precedence: bulk Reply-to: kevijeps@telusplanet.net List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore This is a multi-part message in MIME format. ------=_NextPart_000_0003_01C51444.F9C81C20 Content-Type: text/plain; charset="windows-1250" Content-Transfer-Encoding: quoted-printable Bill I believe the command is @lastlog Ciao KJ -----Original Message----- From: encore-bounce@utdallas.edu [mailto:encore-bounce@utdallas.edu] On Behalf Of William D. Rowland Sent: February 16, 2005 4:31 PM To: Encore Mailinglist Subject: [encore] activity Please excuse me for not thanking everyone for responses...the reason is that each one solves part of the problem and I am off to another as = quick as I hear from anyone. Progress is real some days and elusive another. But = I really appreciate this list. Nothing was available when I came into the = MOO world about 1996. I had to call up Pavel Curtis once and he was most helpful. Thereafter the folks I was working with cut me a wide path just because I had talked with Him! I have been away from MOO so long that = long term memory has flat-lined. =20 Anyway, my question today is related to my recollection that there was a @log month or some such to tell me who had logged on recently. Is = something like that still operative? Thanks in advance. =20 Bill R. -- No virus found in this incoming message. Checked by AVG Anti-Virus. Version: 7.0.300 / Virus Database: 265.8.8 - Release Date: 14/02/2005 --=20 No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.300 / Virus Database: 265.8.8 - Release Date: 14/02/2005 =20 ------=_NextPart_000_0003_01C51444.F9C81C20 Content-Type: text/html; charset="windows-1250" Content-Transfer-Encoding: quoted-printable Message
Bill
I=20 believe the command is @lastlog
Ciao
KJ
-----Original Message-----
From:=20 encore-bounce@utdallas.edu [mailto:encore-bounce@utdallas.edu] On = Behalf Of=20 William D. Rowland
Sent: February 16, 2005 4:31 = PM
To:=20 Encore Mailinglist
Subject: [encore] = activity

Please excuse me for not thanking = everyone for=20 responses...the reason is that each one solves part of the problem and = I am=20 off to another as quick as I hear from anyone. Progress is real some = days and=20 elusive another. But I really appreciate this list. Nothing was = available when=20 I came into the MOO world about 1996. I had to call up Pavel Curtis = once and=20 he was most helpful. Thereafter the folks I was working with cut me a = wide=20 path just because I had talked with Him! I have been away = from MOO so=20 long that long term memory has flat-lined.
 
Anyway, my question today is related = to my=20 recollection that there was a @log month or some such to tell me who = had=20 logged on recently. Is something like that still operative?  = Thanks in=20 advance.
 
Bill R.

--
No virus found in this incoming = message.
Checked by=20 AVG Anti-Virus.
Version: 7.0.300 / Virus Database: 265.8.8 - = Release Date:=20 14/02/2005


--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.300 / Virus Database: 265.8.8 - Release Date: = 14/02/2005

------=_NextPart_000_0003_01C51444.F9C81C20-- From tavrmina@msu.edu Thu Feb 17 00:21:11 2005 Received: with ECARTIS (v1.0.0; list encore); Thu, 17 Feb 2005 00:21:11 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 78C375BBB for ; Thu, 17 Feb 2005 00:21:11 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 27B323D0 for ; Thu, 17 Feb 2005 00:21:11 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 11437-01-22 for ; Thu, 17 Feb 2005 00:21:08 -0600 (CST) X-Greylist: delayed 5646 seconds by postgrey-1.17 at mx2; Thu, 17 Feb 2005 00:21:08 CST Received: from sys03.mail.msu.edu (sys03.mail.msu.edu [35.9.75.103]) by mx2.utdallas.edu (Postfix) with ESMTP id ABB09342A for ; Thu, 17 Feb 2005 00:21:08 -0600 (CST) Received: from pm726-36.dialip.mich.net ([35.12.19.88] helo=MTT-X200.msu.edu) by sys03.mail.msu.edu with esmtpsa (Exim 4.43 #1) (TLSv1:RC4-SHA:128) id 1D1dZ6-00070P-FM for encore@utdallas.edu; Wed, 16 Feb 2005 23:47:01 -0500 Message-Id: <5.2.1.1.2.20050216233826.01f72e20@mail.msu.edu> X-Sender: tavrmina@mail.msu.edu X-Mailer: QUALCOMM Windows Eudora Version 5.2.1 Date: Wed, 16 Feb 2005 23:46:58 -0500 To: encore@utdallas.edu From: Tess Tavormina Subject: [encore] Looking for exit-options and player-messages in enCore 4.0 Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus: None found by Clam AV X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1346 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: tavrmina@msu.edu Precedence: bulk Reply-to: tavrmina@msu.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hi, all -- This may be a dumb question, but does anyone know where I could find the exit options (invisibility, messages, etc.) that used to be available when one edited an exit in enCore 3.x or the player-messages one could give to oneself under the Options button? I know I was able to edit such things without going into the command-line mode under 3.x, and the messages I gave myself and to various exits are all still there in enCore 4.0.1, which I'm using now, but I haven't been able to see where they can be modified using the enCore Xpress buttons. Thanks -- Tess From Lirvin@accdvm.accd.edu Thu Feb 17 09:19:54 2005 Received: with ECARTIS (v1.0.0; list encore); Thu, 17 Feb 2005 09:19:55 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id B89285BE7 for ; Thu, 17 Feb 2005 09:19:54 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 6A1F5E93 for ; Thu, 17 Feb 2005 09:19:54 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 11593-01-69 for ; Thu, 17 Feb 2005 09:19:52 -0600 (CST) Received: from ACCDVM.ACCD.EDU (accdvm.accd.edu [209.184.119.1]) by mx2.utdallas.edu (Postfix) with SMTP id 3CCE5342A for ; Thu, 17 Feb 2005 09:19:52 -0600 (CST) Received: from Gilgamesh.accdvm.accd.edu [10.1.11.42] by ACCDVM.ACCD.EDU (IBM VM SMTP V2R4a) via TCP with SMTP ; Thu, 17 Feb 2005 09:18:34 CST Message-Id: <6.2.0.14.0.20050217091454.01cafc70@accdvm.accd.edu> X-Mailer: QUALCOMM Windows Eudora Version 6.2.0.14 Date: Thu, 17 Feb 2005 09:19:48 -0600 To: encore@utdallas.edu From: Lennie Irvin Subject: [encore] Re: Looking for exit-options and player-messages in enCore 4.0 In-Reply-To: <5.2.1.1.2.20050216233826.01f72e20@mail.msu.edu> References: <5.2.1.1.2.20050216233826.01f72e20@mail.msu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1347 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: Lirvin@accdvm.accd.edu Precedence: bulk Reply-to: Lirvin@accdvm.accd.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hi Tess, You are right. They did disappear in v4. I noticed that when I was putting together the user guide. I think the way to do it is to get your player object number. Then go to the Program Menu Button and put your player number in the Xpress Program Editor. On the right you will see the Properties associated with your player object. You should see the exit message property or any other ones you wish to edit and you can change them right there in the Xpress Program Editor. I assume that Daniel will return the ability to set the messages in the upcoming enCore v5 (right Daniel?) Lennie At 10:46 PM 2/16/2005, you wrote: >Hi, all -- > >This may be a dumb question, but does anyone know where I could find the >exit options (invisibility, messages, etc.) that used to be available when >one edited an exit in enCore 3.x or the player-messages one could give to >oneself under the Options button? > >I know I was able to edit such things without going into the command-line >mode under 3.x, and the messages I gave myself and to various exits are >all still there in enCore 4.0.1, which I'm using now, but I haven't been >able to see where they can be modified using the enCore Xpress buttons. > >Thanks -- > >Tess > From tavrmina@msu.edu Thu Feb 17 20:29:28 2005 Received: with ECARTIS (v1.0.0; list encore); Thu, 17 Feb 2005 20:29:28 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 027DF5BAD for ; Thu, 17 Feb 2005 20:29:27 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 99C4617F7 for ; Thu, 17 Feb 2005 20:29:27 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 18901-01-75 for ; Thu, 17 Feb 2005 20:29:17 -0600 (CST) Received: from sys09.mail.msu.edu (sys09.mail.msu.edu [35.9.75.109]) by mx2.utdallas.edu (Postfix) with ESMTP id 3F615346E for ; Thu, 17 Feb 2005 20:29:15 -0600 (CST) Received: from pm845-26.dialip.mich.net ([35.12.24.178] helo=MTT-X200.msu.edu) by sys09.mail.msu.edu with esmtpsa (Exim 4.43 #1) (TLSv1:RC4-SHA:128) id 1D1xtI-0006Ci-4e for encore@utdallas.edu; Thu, 17 Feb 2005 21:29:15 -0500 Message-Id: <5.2.1.1.2.20050217211733.02629bd8@mail.msu.edu> X-Sender: tavrmina@mail.msu.edu X-Mailer: QUALCOMM Windows Eudora Version 5.2.1 Date: Thu, 17 Feb 2005 21:29:04 -0500 To: encore@utdallas.edu From: Tess Tavormina Subject: [encore] Re: Looking for exit-options and player-messages in enCore 4.0 In-Reply-To: <6.2.0.14.0.20050217091454.01cafc70@accdvm.accd.edu> References: <5.2.1.1.2.20050216233826.01f72e20@mail.msu.edu> <5.2.1.1.2.20050216233826.01f72e20@mail.msu.edu> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="=====================_7651342==.ALT" X-Virus: None found by Clam AV X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1348 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: tavrmina@msu.edu Precedence: bulk Reply-to: tavrmina@msu.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore --=====================_7651342==.ALT Content-Type: text/plain; charset="us-ascii"; format=flowed Thanks, Lennie -- I was able to make changes in my own player messages, though never did successfully figure out how to make exits themselves invisible (it looks like it ought to be the 'obvious' property, but when I set it to 0 after creating an exit, it didn't make the exit disappear). Oh well.... I probably won't make all my student builders into programmers just to enable them to have messages for when they enter a room. I second the hope that the ability to set messages (by builders, with an XPress editing option) will come back in Daniel's upcoming version, and also the options for exits. They helped builders feel more like they owned the space. All best, Tess At 09:19 AM 2/17/2005 -0600, Lennie Irvin wrote: >Hi Tess, > >You are right. They did disappear in v4. I noticed that when I was >putting together the user guide. I think the way to do it is to get your >player object number. Then go to the Program Menu Button and put your >player number in the Xpress Program Editor. On the right you will see the >Properties associated with your player object. You should see the exit >message property or any other ones you wish to edit and you can change >them right there in the Xpress Program Editor. > >I assume that Daniel will return the ability to set the messages in the >upcoming enCore v5 (right Daniel?) > >Lennie > >At 10:46 PM 2/16/2005, you wrote: >>Hi, all -- >> >>This may be a dumb question, but does anyone know where I could find the >>exit options (invisibility, messages, etc.) that used to be available >>when one edited an exit in enCore 3.x or the player-messages one could >>give to oneself under the Options button? >> >>I know I was able to edit such things without going into the command-line >>mode under 3.x, and the messages I gave myself and to various exits are >>all still there in enCore 4.0.1, which I'm using now, but I haven't been >>able to see where they can be modified using the enCore Xpress buttons. >> >>Thanks -- >> >>Tess > > > --=====================_7651342==.ALT Content-Type: text/html; charset="us-ascii" Thanks, Lennie --

I was able to make changes in my own player messages, though never did successfully figure out how to make exits themselves invisible (it looks like it ought to be the 'obvious' property, but when I set it to 0 after creating an exit, it didn't make the exit disappear).  Oh well....   I probably won't make all my student builders into programmers just to enable them to have messages for when they enter a room.

I second the hope that the ability to set messages (by builders, with an XPress editing option) will come back in Daniel's upcoming version, and also the options for exits.  They helped builders feel more like they owned the space.

All best,

Tess



At 09:19 AM 2/17/2005 -0600, Lennie Irvin wrote:
Hi Tess,

You are right. They did disappear in v4.  I noticed that when I was putting together the user guide.  I think the way to do it is to get your player object number.  Then go to the Program Menu Button and put your player number in the Xpress Program Editor.  On the right you will see the Properties associated with your player object.  You should see the exit message property or any other ones you wish to edit and you can change them right there in the Xpress Program Editor.

I assume that Daniel will return the ability to set the messages in the upcoming enCore v5 (right Daniel?)

Lennie

At 10:46 PM 2/16/2005, you wrote:
Hi, all --

This may be a dumb question, but does anyone know where I could find the exit options (invisibility, messages, etc.) that used to be available when one edited an exit in enCore 3.x or the player-messages one could give to oneself under the Options button?

I know I was able to edit such things without going into the command-line mode under 3.x, and the messages I gave myself and to various exits are all still there in enCore 4.0.1, which I'm using now, but I haven't been able to see where they can be modified using the enCore Xpress buttons.

Thanks --

Tess



--=====================_7651342==.ALT-- From ken@ss.pku.edu.cn Thu Feb 17 22:25:52 2005 Received: with ECARTIS (v1.0.0; list encore); Thu, 17 Feb 2005 22:25:52 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id EDABC5BAD for ; Thu, 17 Feb 2005 22:25:51 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 96F0518A7 for ; Thu, 17 Feb 2005 22:25:51 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 26722-01-64 for ; Thu, 17 Feb 2005 22:25:43 -0600 (CST) Received: from mail.ss.pku.edu.cn (unknown [61.50.221.201]) by mx2.utdallas.edu (Postfix) with SMTP id 0C2A13506 for ; Thu, 17 Feb 2005 22:25:37 -0600 (CST) Received: (qmail 11596 invoked by uid 0); 18 Feb 2005 12:25:32 +0800 Received: from unknown (HELO ?221.216.167.100?) (ken@221.216.167.100) by 61.50.221.201 with SMTP; 18 Feb 2005 12:25:32 +0800 Mime-Version: 1.0 (Apple Message framework v619.2) In-Reply-To: References: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Message-Id: Content-Transfer-Encoding: quoted-printable From: Kenneth Fields Subject: [encore] Re: XML Format Date: Fri, 18 Feb 2005 12:25:31 +0800 To: encore@utdallas.edu X-Mailer: Apple Mail (2.619.2) X-Virus-Scanned: amavisd-new at utdallas.edu X-Spam-Status: No, hits=1.41 tagged_above=1 required=8 tests=AWL, BAYES_20, DNS_FROM_RFC_WHOIS, MY_CHARPARENS, RCVD_BY_IP, SARE_RECV_IP_061050, UTD_UNKNOWN_CLIENT, WEIRD_PORT X-Spam-Level: * X-archive-position: 1349 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: ken@ss.pku.edu.cn Precedence: bulk Reply-to: ken@ss.pku.edu.cn List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore thanks for all the feedback on the xml question, I think it hints at starting from scratch rather than transforming=20 existing highly functional technologies such as encore/Lambda. re: > Data in MOO > makes no sense by itself (like it does in a relational database, a=20 file > system, a content repository, etc.) I would say that this is true unless of course your 'object' (target)=20 is the knowledge base itself - which IS my goal. I am exploring the 'lived' and immersive 'ontology' or expert domain terminology. Low cost=20 immersion is what moos were designed for - an xVrml interface (mapped knowledge domain) is perhaps a nice luxury. look at criticalartware.net . I wish that space had the benefit of a=20 Moo. the collaborative web group spaces (tiki, wiki, liki, omweb, etc) are basically on the same page, but when it comes to quasi-synchronous text environments they will move away from their knowledge base onto IRC or SMS. It just seems like there's a missing link. This will become=20= more critical when mobil-tech plays a more central role and will integrate desktech-top(n)ology. Then everyone will travel lighter. The link to ahynes1 is right on the edge of new development. Thanks for that pointer. Ken On Feb 16, 2005, at 3:31 PM, Kr@nX wrote: > > Korbeau, > Yes, Aldon (Lambda) did some work with it some time ago. Lost track of=20= > how > far he got though, but he mentions MOO canada, so some work must have > done there as well. > http://ahynes1.homeip.net:8000/moo/connectivity.htm > under the XML section. > Aloha, > rv, =3D) > >> PS: I remember hearing about XML parsers / XSL processors for MOOs. =20= >> Is >> anyone aware of such projects? >> >> >> -----Original Message----- >> From: encore-bounce@utdallas.edu [mailto:encore-bounce@utdallas.edu]=20= >> On >> Behalf Of Kenneth Fields >> Sent: mardi 15 f=E9vrier 2005 08:10 >> To: encore@utdallas.edu >> Subject: [encore] XML Format >> >> Would it be reasonable to think of making the encore database an xml >> project. >> I mean not just converting/exporting to xml format, but actually >> working in that format >> so that it can share it's dynamic knowledge base (rooms, objects) = with >> some other kinds of >> interfaces - like wiki's. >> >> Are there any tools for visualizing the network structure of the Moo. >> >> thanks, >> ken >> >> > > ------BEGIN GC BLOCK----- > GO d? s-:-- !a C++ L++ P++ L++ E- W-- N+ o K- w--- !O M !V > PS+++ !PE Y+ PGP t !5 X R* !tv b+ !DI D- G e+++ h !r y? > ------END GC BLOCK------ > > From rbowman@bridgewater.edu Fri Feb 18 07:01:37 2005 Received: with ECARTIS (v1.0.0; list encore); Fri, 18 Feb 2005 07:01:37 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id F22B25BAD for ; Fri, 18 Feb 2005 07:01:36 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id B6E2A1A8E for ; Fri, 18 Feb 2005 07:01:36 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 17245-01-44 for ; Fri, 18 Feb 2005 07:01:30 -0600 (CST) Received: from Isis.bridgewater.edu (Isis.bridgewater.edu [147.138.10.100]) by mx2.utdallas.edu (Postfix) with ESMTP id EBE72356F for ; Fri, 18 Feb 2005 06:56:39 -0600 (CST) Received: from bowman-home.bridgewater.edu (NewDial20.bridgewater.edu [147.138.110.90]) by Isis.bridgewater.edu (8.12.9/8.12.9) with ESMTP id j1ICuZ57017126 for ; Fri, 18 Feb 2005 07:56:36 -0500 (EST) Message-Id: <6.2.1.2.0.20050218074955.028ea6b0@mail.bridgewater.edu> X-Mailer: QUALCOMM Windows Eudora Version 6.2.1.2 Date: Fri, 18 Feb 2005 07:54:54 -0500 To: encore@utdallas.edu From: Richard L Bowman Subject: [encore] Windows XP, Sun Java & Xpress 4 In-Reply-To: <6.2.0.14.0.20050217091454.01cafc70@accdvm.accd.edu> References: <5.2.1.1.2.20050216233826.01f72e20@mail.msu.edu> <6.2.0.14.0.20050217091454.01cafc70@accdvm.accd.edu> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1350 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: rbowman@Bridgewater.EDU Precedence: bulk Reply-to: rbowman@Bridgewater.EDU List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore I am still having a problem with the text frame in the main Xpress window not scrolling automatically when I am using Windows XP and Sun Java 2 (version 1.5.0). Has anyone had experience with this combination or had any such problem (and a solution)? The same problem exists in MSIE 6 and Firefox 1. Everything works fine in Windows 2000. Thanks. Richard ------------------------ Dr. Richard L. Bowman Prof. of Physics / Dir. of Academic Computing Bridgewater College, VA, USA From lirvin@accdvm.accd.edu Fri Feb 18 08:58:08 2005 Received: with ECARTIS (v1.0.0; list encore); Fri, 18 Feb 2005 08:58:09 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id BBAF45BAD for ; Fri, 18 Feb 2005 08:58:08 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 6EE671A6B for ; Fri, 18 Feb 2005 08:58:08 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 25147-09-20 for ; Fri, 18 Feb 2005 08:57:59 -0600 (CST) Received: from ACCDVM.ACCD.EDU (accdvm.accd.edu [209.184.119.1]) by mx2.utdallas.edu (Postfix) with SMTP id 78EF73EF2 for ; Fri, 18 Feb 2005 08:56:49 -0600 (CST) Received: from gh-208-300633.accdvm.accd.edu [10.11.36.41] by ACCDVM.ACCD.EDU (IBM VM SMTP V2R4a) via TCP with SMTP ; Fri, 18 Feb 2005 08:55:32 CST Message-Id: <6.2.1.2.0.20050218085008.01d15618@accdvm.accd.edu> X-Mailer: QUALCOMM Windows Eudora Version 6.2.1.2 Date: Fri, 18 Feb 2005 08:53:21 -0600 To: rbowman@Bridgewater.EDU, encore@utdallas.edu From: Lennie Irvin Subject: [encore] Re: Windows XP, Sun Java & Xpress 4 In-Reply-To: <6.2.1.2.0.20050218074955.028ea6b0@mail.bridgewater.edu> References: <5.2.1.1.2.20050216233826.01f72e20@mail.msu.edu> <6.2.0.14.0.20050217091454.01cafc70@accdvm.accd.edu> <6.2.1.2.0.20050218074955.028ea6b0@mail.bridgewater.edu> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1351 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: lirvin@accdvm.accd.edu Precedence: bulk Reply-to: lirvin@accdvm.accd.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hey Richard, Bummer. I assume you are talking about the textwindow where the chat is scrolling, right? I have not experienced this problem running the same operating systems and browsers, so I don't know what it happening. I think the way the textwindow operates is thanks to mootcan. What version of mootcan do you have installed for your MOO (two versions come with the enCore release). That may be it, maybe? Perhaps Daniel can chime about the mootcan. I know that he has rewritten mootcan for the new encore v5 and he says it is much better, so perhaps this is one headache the new version will alleviate. What I have experienced in the textwindow with enCore v4 is the textwindow periodically jumping so the text suddenly jumps up to the top of the screen. Very irritating. I hope you get this figured out. Lennie At 06:54 AM 2/18/2005, Richard L Bowman wrote: >I am still having a problem with the text frame in the main Xpress window >not scrolling automatically when I am using Windows XP and Sun Java 2 >(version 1.5.0). Has anyone had experience with this combination or had >any such problem (and a solution)? The same problem exists in MSIE 6 and >Firefox 1. Everything works fine in Windows 2000. > >Thanks. > >Richard >------------------------ >Dr. Richard L. Bowman >Prof. of Physics / Dir. of Academic Computing >Bridgewater College, VA, USA From rbowman@bridgewater.edu Fri Feb 18 09:42:08 2005 Received: with ECARTIS (v1.0.0; list encore); Fri, 18 Feb 2005 09:42:08 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 85B145BAD for ; Fri, 18 Feb 2005 09:42:08 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 4C3681A75 for ; Fri, 18 Feb 2005 09:42:08 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 26324-01-52 for ; Fri, 18 Feb 2005 09:41:58 -0600 (CST) Received: from Isis.bridgewater.edu (Isis.bridgewater.edu [147.138.10.100]) by mx2.utdallas.edu (Postfix) with ESMTP id AF05C3B1C for ; Fri, 18 Feb 2005 09:12:54 -0600 (CST) Received: from physics3.bridgewater.edu (Physics3.bridgewater.edu [147.138.100.144]) by Isis.bridgewater.edu (8.12.9/8.12.9) with ESMTP id j1IFCr57005631 for ; Fri, 18 Feb 2005 10:12:53 -0500 (EST) Message-Id: <6.2.1.2.0.20050218100923.02c16970@mail.bridgewater.edu> X-Mailer: QUALCOMM Windows Eudora Version 6.2.1.2 Date: Fri, 18 Feb 2005 10:12:51 -0500 To: encore@utdallas.edu From: "Richard L. Bowman" Subject: [encore] Re: Windows XP, Sun Java & Xpress 4 In-Reply-To: <6.2.1.2.0.20050218085008.01d15618@accdvm.accd.edu> References: <5.2.1.1.2.20050216233826.01f72e20@mail.msu.edu> <6.2.0.14.0.20050217091454.01cafc70@accdvm.accd.edu> <6.2.1.2.0.20050218074955.028ea6b0@mail.bridgewater.edu> <6.2.1.2.0.20050218085008.01d15618@accdvm.accd.edu> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1352 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: rbowman@Bridgewater.EDU Precedence: bulk Reply-to: rbowman@Bridgewater.EDU List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Thanks, Lennie. Mootcan might be the problem. We upgraded to enCore 4.0.1 over Christmas break, and I am the first one to really be using since then. Under 3.? that we were running prior to this, I thought I recalled that the Mootcan verson was in the left-hand frame of the login page. However, that is not so now. So how do I find the version of Mootcan that we are running. I even tried using the telnet session (using Mootcan directly) and could not get to a version number by any means that I thought of such as the command @version, etc. Richard From tavrmina@msu.edu Fri Feb 18 12:35:37 2005 Received: with ECARTIS (v1.0.0; list encore); Fri, 18 Feb 2005 12:35:37 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id DA5475BAD for ; Fri, 18 Feb 2005 12:35:36 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id A05D41A8A for ; Fri, 18 Feb 2005 12:35:36 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 09995-01-13 for ; Fri, 18 Feb 2005 12:35:20 -0600 (CST) Received: from sys06.mail.msu.edu (sys06.mail.msu.edu [35.9.75.106]) by mx2.utdallas.edu (Postfix) with ESMTP id 29E583735 for ; Fri, 18 Feb 2005 08:36:32 -0600 (CST) Received: from pm791-15.dialip.mich.net ([35.12.20.167] helo=MTT-X200.msu.edu) by sys06.mail.msu.edu with esmtpsa (Exim 4.43 #1) (TLSv1:RC4-SHA:128) id 1D29F4-0006lw-Lm; Fri, 18 Feb 2005 09:36:32 -0500 Message-Id: <5.2.1.1.2.20050218092525.026b6de8@mail.msu.edu> X-Sender: tavrmina@mail.msu.edu X-Mailer: QUALCOMM Windows Eudora Version 5.2.1 Date: Fri, 18 Feb 2005 09:36:26 -0500 To: Deborah Gill From: Tess Tavormina Subject: [encore] Re: Looking for exit-options and player-messages in enCore 4.0 Cc: encore@utdallas.edu In-Reply-To: <5.2.0.9.2.20050217213806.027154e0@email.psu.edu> References: <5.2.1.1.2.20050217211733.02629bd8@mail.msu.edu> <6.2.0.14.0.20050217091454.01cafc70@accdvm.accd.edu> <5.2.1.1.2.20050216233826.01f72e20@mail.msu.edu> <5.2.1.1.2.20050216233826.01f72e20@mail.msu.edu> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="=====================_4102048==.ALT" X-Virus: None found by Clam AV X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1353 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: tavrmina@msu.edu Precedence: bulk Reply-to: tavrmina@msu.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore --=====================_4102048==.ALT Content-Type: text/plain; charset="us-ascii"; format=flowed Thanks, Debbie -- that should work nicely for my builders/students for putting messages on their exits. The invisibility option was a feature that allowed an exit *not* to have a clickable link in the graphic frame for a room, but to still function if someone knew the right word to type. (E.g., "trapdoor" leading to a secret room.) Not a big deal, but students seemed to like to be able to make invisible doors into mystery rooms. Tess At 09:41 PM 2/17/2005 -0500, you wrote: >Hi Tess, > >I could be way off the mark on what you were looking for, but I was able >to set the exit messages (I'm not sure what the "invisibility" is, sorry >:( ) in my MOO by typing @exits in the room, finding the room number, and >then typing @messages #____ to see what I could change. I then manually >changed them, for example, with @arrive #____ is "[message]. > >As I said, I don't know if this is what you wanted. > >Best, > >Debbie > >At 09:29 PM 2/17/2005 -0500, you wrote: >>Thanks, Lennie -- >> >>I was able to make changes in my own player messages, though never did >>successfully figure out how to make exits themselves invisible (it looks >>like it ought to be the 'obvious' property, but when I set it to 0 after >>creating an exit, it didn't make the exit disappear). Oh well.... I >>probably won't make all my student builders into programmers just to >>enable them to have messages for when they enter a room. >> >>I second the hope that the ability to set messages (by builders, with an >>XPress editing option) will come back in Daniel's upcoming version, and >>also the options for exits. They helped builders feel more like they >>owned the space. >> >>All best, >> >>Tess >> >> >> >>At 09:19 AM 2/17/2005 -0600, Lennie Irvin wrote: >>>Hi Tess, >>> >>>You are right. They did disappear in v4. I noticed that when I was >>>putting together the user guide. I think the way to do it is to get >>>your player object number. Then go to the Program Menu Button and put >>>your player number in the Xpress Program Editor. On the right you will >>>see the Properties associated with your player object. You should see >>>the exit message property or any other ones you wish to edit and you can >>>change them right there in the Xpress Program Editor. >>> >>>I assume that Daniel will return the ability to set the messages in the >>>upcoming enCore v5 (right Daniel?) >>> >>>Lennie >>> >>>At 10:46 PM 2/16/2005, you wrote: >>>>Hi, all -- >>>> >>>>This may be a dumb question, but does anyone know where I could find >>>>the exit options (invisibility, messages, etc.) that used to be >>>>available when one edited an exit in enCore 3.x or the player-messages >>>>one could give to oneself under the Options button? >>>> >>>>I know I was able to edit such things without going into the >>>>command-line mode under 3.x, and the messages I gave myself and to >>>>various exits are all still there in enCore 4.0.1, which I'm using now, >>>>but I haven't been able to see where they can be modified using the >>>>enCore Xpress buttons. >>>> >>>>Thanks -- >>>> >>>>Tess >>> >>Deborah Gill, Ph.D. >>Assistant Professor of Spanish >>Pennsylvania State University-DuBois >>College Place >>DuBois, PA 15801 >>(814) 375-4783 >>Email: djg25@psu.edu, msdgill@aol.com >> >> >> >>"Each of us has an inner dream that we can unfold if >>we will just have the courage to admit what it is. >>And the faith to trust our own admission. The admitting is often very >>difficult." >> >>- Julia Cameron - --=====================_4102048==.ALT Content-Type: text/html; charset="us-ascii" Thanks, Debbie -- that should work nicely for my builders/students for putting messages on their exits.  The invisibility option was a feature that allowed an exit *not* to have a clickable link in the graphic frame for a room, but to still function if someone knew the right word to type. (E.g., "trapdoor" leading to a secret room.)  Not a big deal, but students seemed to like to be able to make invisible doors into mystery rooms.

Tess



At 09:41 PM 2/17/2005 -0500, you wrote:
Hi Tess,

I could be way off the mark on what you were looking for, but I was able to set the exit messages (I'm not sure what the "invisibility" is, sorry :( ) in my MOO by typing @exits in the room, finding the room number, and then typing @messages #____ to see what I could change.  I then manually changed them, for example, with @arrive #____ is "[message]. 

As I said, I don't know if this is what you wanted.

Best,

Debbie

At 09:29 PM 2/17/2005 -0500, you wrote:
Thanks, Lennie --

I was able to make changes in my own player messages, though never did successfully figure out how to make exits themselves invisible (it looks like it ought to be the 'obvious' property, but when I set it to 0 after creating an exit, it didn't make the exit disappear).  Oh well....   I probably won't make all my student builders into programmers just to enable them to have messages for when they enter a room.

I second the hope that the ability to set messages (by builders, with an XPress editing option) will come back in Daniel's upcoming version, and also the options for exits.  They helped builders feel more like they owned the space.

All best,

Tess



At 09:19 AM 2/17/2005 -0600, Lennie Irvin wrote:
Hi Tess,

You are right. They did disappear in v4.  I noticed that when I was putting together the user guide.  I think the way to do it is to get your player object number.  Then go to the Program Menu Button and put your player number in the Xpress Program Editor.  On the right you will see the Properties associated with your player object.  You should see the exit message property or any other ones you wish to edit and you can change them right there in the Xpress Program Editor.

I assume that Daniel will return the ability to set the messages in the upcoming enCore v5 (right Daniel?)

Lennie

At 10:46 PM 2/16/2005, you wrote:
Hi, all --

This may be a dumb question, but does anyone know where I could find the exit options (invisibility, messages, etc.) that used to be available when one edited an exit in enCore 3.x or the player-messages one could give to oneself under the Options button?

I know I was able to edit such things without going into the command-line mode under 3.x, and the messages I gave myself and to various exits are all still there in enCore 4.0.1, which I'm using now, but I haven't been able to see where they can be modified using the enCore Xpress buttons.

Thanks --

Tess

Deborah Gill, Ph.D.
Assistant Professor of Spanish
Pennsylvania State University-DuBois
College Place
DuBois, PA 15801
(814) 375-4783
Email: djg25@psu.edu, msdgill@aol.com




"Each of us has an inner dream that we can unfold if
we will just have the courage to admit what it is.
And the faith to trust our own admission. The admitting is often very difficult."

- Julia Cameron -
--=====================_4102048==.ALT-- From djg25@psu.edu Fri Feb 18 21:12:10 2005 Received: with ECARTIS (v1.0.0; list encore); Fri, 18 Feb 2005 21:12:10 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id DB6185BAD for ; Fri, 18 Feb 2005 21:12:09 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 8DF181680 for ; Fri, 18 Feb 2005 21:12:09 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 29143-01-41 for ; Fri, 18 Feb 2005 21:12:03 -0600 (CST) Received: from f04n07.cac.psu.edu (f04s07.cac.psu.edu [128.118.141.35]) by mx2.utdallas.edu (Postfix) with ESMTP id 8594E2CBF for ; Fri, 18 Feb 2005 21:12:02 -0600 (CST) Received: from DebbiesRoom.psu.edu (access-isdn1-7.ds.psu.edu [146.186.43.201]) by f04n07.cac.psu.edu (8.13.2/8.13.2) with ESMTP id j1J3Bpj8039434; Fri, 18 Feb 2005 22:11:51 -0500 Message-Id: <5.2.0.9.2.20050218221031.00bb9a80@email.psu.edu> X-Sender: djg25@email.psu.edu X-Mailer: QUALCOMM Windows Eudora Version 5.2.0.9 Date: Fri, 18 Feb 2005 22:11:52 -0500 To: rbowman@Bridgewater.EDU From: Deborah Gill Subject: [encore] Fwd: Re: Re: Problems using Encore with browsers other than IE Cc: jung@uib.no, encore@utdallas.edu Mime-Version: 1.0 Content-Type: text/html; charset="us-ascii" X-Virus-Scanned: by amavisd-new X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1354 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: djg25@psu.edu Precedence: bulk Reply-to: djg25@psu.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hi Richard,

This is a response that Daniel Jung gave to me in December when I was having the exact problem as you are having!

Hope it helps!

Best,

Debbie

Date: Sat, 18 Dec 2004 15:42:47 +0100
X-PH: V4.1@tr10n04
From: Daniel Jung <jung@uib.no>
User-Agent: Mozilla Thunderbird 0.8 (Windows/20040913)
X-Accept-Language: en-us, en
To: djg25@psu.edu
Subject: Re: [encore] Re: Problems using Encore with browsers other  than
 IE
X-checked-clean: by exiscan on noralf
X-Scanner: 4f11699aaf171d4b3d18065325de2f2e http://tjinfo.uib.no/virus.html
X-UiB-SpamFlag: NO UIB: 0.0 hits, 11.0 required
X-Virus-Scanned: amavisd-sophos
X-PSU-Spam-Flag: NO
X-PSU-Spam-Hits: 0

Deborah Gill wrote:
        */Daniel, yes, it is MOOtcan.  How can I tell which version it is and, if it is the 0.50, how do I change that? 


Type the command:

     eval $xpress_client.java_client_archive

it should give you

     => "mootcan-012.jar"

In case it's not, change it by typing

     @set $xpress_client.java_client_archive to "mootcan-012.jar"

See if that does the trick. Before doing so, you should make sure, however, that the file mootcan-012.jar in fact is in the folder where the other applet lives.

Good luck,
- Daniel

Deborah Gill, Ph.D.
Assistant Professor of Spanish
Pennsylvania State University-DuBois
College Place
DuBois, PA 15801
(814) 375-4783
Email: djg25@psu.edu, msdgill@aol.com




"Each of us has an inner dream that we can unfold if
we will just have the courage to admit what it is.
And the faith to trust our own admission. The admitting is often very difficult."

- Julia Cameron -
From rbowman@bridgewater.edu Sat Feb 19 05:58:44 2005 Received: with ECARTIS (v1.0.0; list encore); Sat, 19 Feb 2005 05:58:44 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 0CC515BD1 for ; Sat, 19 Feb 2005 05:58:43 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 977DE423 for ; Sat, 19 Feb 2005 05:58:43 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 26840-09-5 for ; Sat, 19 Feb 2005 05:58:31 -0600 (CST) Received: from Isis.bridgewater.edu (Isis.bridgewater.edu [147.138.10.100]) by mx2.utdallas.edu (Postfix) with ESMTP id 0F8893565 for ; Sat, 19 Feb 2005 05:57:10 -0600 (CST) Received: from bowman-home.bridgewater.edu (NewDial18.bridgewater.edu [147.138.110.88]) by Isis.bridgewater.edu (8.12.9/8.12.9) with ESMTP id j1JBux57027767; Sat, 19 Feb 2005 06:57:00 -0500 (EST) Message-Id: <6.2.1.2.0.20050219065112.0298ded8@mail.bridgewater.edu> X-Mailer: QUALCOMM Windows Eudora Version 6.2.1.2 Date: Sat, 19 Feb 2005 06:56:50 -0500 To: djg25@psu.edu From: Richard L Bowman Subject: [encore] Re: Fwd: Re: Re: Problems using Encore with browsers other than IE Cc: jung@uib.no, encore@utdallas.edu In-Reply-To: <5.2.0.9.2.20050218221031.00bb9a80@email.psu.edu> References: <5.2.0.9.2.20050218221031.00bb9a80@email.psu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1355 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: rbowman@Bridgewater.EDU Precedence: bulk Reply-to: rbowman@Bridgewater.EDU List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Deborah Thanks for the suggestion. I thought, this is it1 But, alas, I have the correct pointer, and the problem still exists. I am beginning to wonder if it is a change that Sun has made to Java. It appears to be a problem with the "focus" of either java or javascript as implemented on my Windows XP and Java 2 (v. 1.50) set up. I have the latest of each of these patched and installed and the latest IE 6 and Firefox 1. I am going to try to meet with some of staff at our IT Center next week to see what we can find out together. This should be a problem that our students have or will have in the future. Richard From lirvin@accdvm.accd.edu Wed Feb 23 12:16:22 2005 Received: with ECARTIS (v1.0.0; list encore); Wed, 23 Feb 2005 12:16:22 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 659625BB0 for ; Wed, 23 Feb 2005 12:16:22 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 3BBDEA70 for ; Wed, 23 Feb 2005 12:16:22 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 26330-01-19 for ; Wed, 23 Feb 2005 12:16:19 -0600 (CST) Received: from ACCDVM.ACCD.EDU (accdvm.accd.edu [209.184.119.1]) by mx2.utdallas.edu (Postfix) with SMTP id E19F93392 for ; Wed, 23 Feb 2005 12:16:18 -0600 (CST) Received: from gh-208-300633.accdvm.accd.edu [10.11.36.41] by ACCDVM.ACCD.EDU (IBM VM SMTP V2R4a) via TCP with SMTP ; Wed, 23 Feb 2005 12:14:59 CST Message-Id: <6.2.1.2.0.20050223110816.01caff00@accdvm.accd.edu> X-Mailer: QUALCOMM Windows Eudora Version 6.2.1.2 Date: Wed, 23 Feb 2005 12:12:39 -0600 To: encore@utdallas.edu From: Lennie Irvin Subject: [encore] Help with php form Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1356 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: lirvin@accdvm.accd.edu Precedence: bulk Reply-to: lirvin@accdvm.accd.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hi Everyone, I have a job to do for someone who is able and who is looking for some way to assist enCore and the enCore Consortium's efforts to develop enCore. I need assistance creating a web-form (most likely coded as a php file) that is integrated with a database (MySQL). We plan to use this webform for members of the enCore Consortium to fill out to create a member profile, so it would be nice if the contents could be displayed as a web page. Also, since all members are in this database, the contents could be searched, sorted, and displayed in various ways. The consortium has its own web space where we can create MySQL databases and host the form. I also have Dreamweaver MX where I found instructions for making a php file/form and integrating it with a MySQL database. It looks like this is fairly easy to do, but I currently don't have the time to sweat through the beginners learning curve. So I was hoping that someone who might have experience creating this kind of form integrated with a database might help out. Please let me know if you are interested. Thanks, Lennie From djh@motown.dmu.ac.uk Mon Feb 28 06:15:23 2005 Received: with ECARTIS (v1.0.0; list encore); Mon, 28 Feb 2005 06:15:23 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 515B05BC0 for ; Mon, 28 Feb 2005 06:15:23 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 27300F02 for ; Mon, 28 Feb 2005 06:15:23 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 23968-01-10 for ; Mon, 28 Feb 2005 06:15:13 -0600 (CST) X-Greylist: delayed 422 seconds by postgrey-1.17 at mx2; Mon, 28 Feb 2005 06:15:11 CST Received: from dmu.ac.uk (motown.dmu.ac.uk [146.227.1.21]) by mx2.utdallas.edu (Postfix) with ESMTP id EFD333435 for ; Mon, 28 Feb 2005 06:15:11 -0600 (CST) Received: from vinku.hum.dmu.ac.uk (vinku.hum.dmu.ac.uk [146.227.40.53]) by dmu.ac.uk (8.13.1/8.13.1) with ESMTP id j1SCAAEE011828; Mon, 28 Feb 2005 12:10:10 GMT Received: from localhost (djh@localhost) by vinku.hum.dmu.ac.uk (8.12.10/8.12.10/Submit) with ESMTP id j1SCA4pA028897; Mon, 28 Feb 2005 12:10:04 GMT X-Authentication-Warning: vinku.hum.dmu.ac.uk: djh owned process doing -bs Date: Mon, 28 Feb 2005 12:10:04 +0000 (GMT) From: David James Houghton X-X-Sender: djh@vinku.hum.dmu.ac.uk To: encore@utdallas.edu Cc: Mark.A.ONeil@Dartmouth.EDU Subject: [encore] Dartmouth Faq-o-matic Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-DMU-MailScanner-Information: Please contact the ISP for more information X-DMU-MailScanner: Found to be clean X-MailScanner-From: djh@dmu.ac.uk X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1357 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: djh@motown.dmu.ac.uk Precedence: bulk Reply-to: djh@motown.dmu.ac.uk List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hello The search facility at http://cobweb.dartmouth.edu no longer works. regards -- Dave Houghton djh@dmu.ac.uk System Manager Faculty of Humanities Work Tel. No. 0116 207 8260 Clephan Building, Room 0.07a De Montfort University Leicester LE1 9BH From djh@motown.dmu.ac.uk Mon Feb 28 06:16:31 2005 Received: with ECARTIS (v1.0.0; list encore); Mon, 28 Feb 2005 06:16:31 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id EAD5E5BC0 for ; Mon, 28 Feb 2005 06:16:30 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id ADEA2F02 for ; Mon, 28 Feb 2005 06:16:30 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 23968-01-13 for ; Mon, 28 Feb 2005 06:16:27 -0600 (CST) Received: from dmu.ac.uk (motown.dmu.ac.uk [146.227.1.21]) by mx2.utdallas.edu (Postfix) with ESMTP id 9A17D3439 for ; Mon, 28 Feb 2005 06:16:27 -0600 (CST) Received: from vinku.hum.dmu.ac.uk (vinku.hum.dmu.ac.uk [146.227.40.53]) by dmu.ac.uk (8.13.1/8.13.1) with ESMTP id j1SCBViR011969 for ; Mon, 28 Feb 2005 12:11:31 GMT Received: from localhost (djh@localhost) by vinku.hum.dmu.ac.uk (8.12.10/8.12.10/Submit) with ESMTP id j1SCBQcF028902 for ; Mon, 28 Feb 2005 12:11:26 GMT X-Authentication-Warning: vinku.hum.dmu.ac.uk: djh owned process doing -bs Date: Mon, 28 Feb 2005 12:11:26 +0000 (GMT) From: David James Houghton X-X-Sender: djh@vinku.hum.dmu.ac.uk To: encore@utdallas.edu Subject: [encore] Logs error Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-DMU-MailScanner-Information: Please contact the ISP for more information X-DMU-MailScanner: Found to be clean X-MailScanner-From: djh@dmu.ac.uk X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1358 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: djh@motown.dmu.ac.uk Precedence: bulk Reply-to: djh@motown.dmu.ac.uk List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hello Has anybody come across this error I'm getting this message when I try to erase my log: #125:parse_multipart_form_data, line 27: Task ran out of ticks .. called from #125:parse_form, line 15 .. called from #32:get, line 32 .. called from #32:do_login_command, line 11 (End of traceback) -- Dave Houghton djh@dmu.ac.uk System Manager Faculty of Humanities Work Tel. No. 0116 207 8260 Clephan Building, Room 0.07a De Montfort University Leicester LE1 9BH From djh@motown.dmu.ac.uk Mon Feb 28 06:20:04 2005 Received: with ECARTIS (v1.0.0; list encore); Mon, 28 Feb 2005 06:20:04 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 47A7E5BC0 for ; Mon, 28 Feb 2005 06:20:04 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id EECB3F02 for ; Mon, 28 Feb 2005 06:20:03 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 24145-01-3 for ; Mon, 28 Feb 2005 06:20:02 -0600 (CST) Received: from dmu.ac.uk (motown.dmu.ac.uk [146.227.1.21]) by mx2.utdallas.edu (Postfix) with ESMTP id 71B0F3435 for ; Mon, 28 Feb 2005 06:20:01 -0600 (CST) Received: from vinku.hum.dmu.ac.uk (vinku.hum.dmu.ac.uk [146.227.40.53]) by dmu.ac.uk (8.13.1/8.13.1) with ESMTP id j1SC4BKA011077 for ; Mon, 28 Feb 2005 12:04:11 GMT Received: from localhost (djh@localhost) by vinku.hum.dmu.ac.uk (8.12.10/8.12.10/Submit) with ESMTP id j1SC45SE028885 for ; Mon, 28 Feb 2005 12:04:05 GMT X-Authentication-Warning: vinku.hum.dmu.ac.uk: djh owned process doing -bs Date: Mon, 28 Feb 2005 12:04:05 +0000 (GMT) From: David James Houghton X-X-Sender: djh@vinku.hum.dmu.ac.uk To: encore@utdallas.edu Subject: [encore] Java Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-DMU-MailScanner-Information: Please contact the ISP for more information X-DMU-MailScanner: Found to be clean X-MailScanner-From: djh@dmu.ac.uk X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1359 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: djh@motown.dmu.ac.uk Precedence: bulk Reply-to: djh@motown.dmu.ac.uk List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Hello One of users is using Internet Explorer 6.0.29 and has noticed that there is no support for Java. How do we get around this ? Use Firefox ? -- Dave Houghton djh@dmu.ac.uk System Manager Faculty of Humanities Work Tel. No. 0116 207 8260 Clephan Building, Room 0.07a De Montfort University Leicester LE1 9BH From Mark.A.ONeil@Dartmouth.EDU Mon Feb 28 11:05:59 2005 Received: with ECARTIS (v1.0.0; list encore); Mon, 28 Feb 2005 11:05:59 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 078B55BC0 for ; Mon, 28 Feb 2005 11:05:59 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id E5323BD5 for ; Mon, 28 Feb 2005 11:05:58 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 16446-01-84 for ; Mon, 28 Feb 2005 11:05:53 -0600 (CST) Received: from mailhub2.dartmouth.edu (mailhub2.dartmouth.edu [129.170.17.107]) by mx2.utdallas.edu (Postfix) with ESMTP id 413903463 for ; Mon, 28 Feb 2005 11:05:48 -0600 (CST) Received: from [129.170.90.225] (moneil.Kiewit.dartmouth.edu [129.170.90.225]) by mailhub2.dartmouth.edu (8.12.10+DND/8.12.10) with ESMTP id j1SH5ZY0013810; Mon, 28 Feb 2005 12:05:35 -0500 In-Reply-To: References: Mime-Version: 1.0 (Apple Message framework v619.2) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <01b4f8595cf0be03f6ed690672f29c7d@Dartmouth.EDU> Content-Transfer-Encoding: 7bit Cc: encore@utdallas.edu From: "Mark A. O'Neil" Subject: [encore] Re: Dartmouth Faq-o-matic Date: Mon, 28 Feb 2005 12:05:37 -0500 To: djh@motown.dmu.ac.uk X-Mailer: Apple Mail (2.619.2) X-MailScanner: Found to be clean by mailhub2.Dartmouth.EDU X-MailScanner-From: mark.a.oneil@dartmouth.edu X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1360 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: Mark.A.ONeil@Dartmouth.EDU Precedence: bulk Reply-to: Mark.A.ONeil@Dartmouth.EDU List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Thanks for the heads up. It is fixed now. -m On Feb 28, 2005, at 7:10 AM, David James Houghton wrote: > Hello > > The search facility at http://cobweb.dartmouth.edu no longer > works. > > regards > > -- > > Dave Houghton djh@dmu.ac.uk > System Manager > Faculty of Humanities Work Tel. No. 0116 207 8260 > Clephan Building, Room 0.07a > De Montfort University > Leicester LE1 9BH > > From rozemar@gvsu.edu Mon Feb 28 13:45:36 2005 Received: with ECARTIS (v1.0.0; list encore); Mon, 28 Feb 2005 13:45:37 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id 9131F5BC0 for ; Mon, 28 Feb 2005 13:45:36 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id 5AA7CB64 for ; Mon, 28 Feb 2005 13:45:36 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 05454-01-32 for ; Mon, 28 Feb 2005 13:45:33 -0600 (CST) Received: from gvsu.edu (gwise-a1.server.gvsu.edu [148.61.5.163]) by mx2.utdallas.edu (Postfix) with ESMTP id 60DC93429 for ; Mon, 28 Feb 2005 13:45:00 -0600 (CST) Received: from SMTPDOM-MTA by gvsu.edu with Novell_GroupWise; Mon, 28 Feb 2005 14:44:59 -0500 Message-Id: X-Mailer: Novell GroupWise Internet Agent 6.5.3 Date: Mon, 28 Feb 2005 14:44:33 -0500 From: "Robert Rozema" To: , Subject: [encore] enCore issue Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=__PartCCEFA0B1.1__=" X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1361 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: rozemar@gvsu.edu Precedence: bulk Reply-to: rozemar@gvsu.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore --=__PartCCEFA0B1.1__= Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline A teacher I know is trying to access the MOO at www.wmich.edu/teachenglish/encore and getting the attached screenshot. Any ideas? Robert Rozema English Dept. Grand Valley State University http://faculty.gvsu.edu/rozemar >>> David James Houghton 02/28/05 7:11 AM >>> Hello Has anybody come across this error I'm getting this message when I try to erase my log: #125:parse_multipart_form_data, line 27: Task ran out of ticks .. called from #125:parse_form, line 15 .. called from #32:get, line 32 .. called from #32:do_login_command, line 11 (End of traceback) -- Dave Houghton djh@dmu.ac.uk System Manager Faculty of Humanities Work Tel. No. 0116 207 8260 Clephan Building, Room 0.07a De Montfort University Leicester LE1 9BH --=__PartCCEFA0B1.1__= Content-Type: application/msword; name="Moo screen.doc" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="Moo screen.doc" 0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAPgADAP7/CQAGAAAAAAAAAAAAAAACAAAApgAAAAAAAAAA EAAAqAAAAAEAAAD+////AAAAAKQAAAClAAAA//////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////s pcEANUAJBAAA+BK/AAAAAAAAEAAAAAAABgAAAggAAA4AYmpias8yzzIAAAAAAAAAAAAAAAAAAAAA AAAJBBYAIhAAAK1YAACtWAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//w8AAAAA AAAAAAD//w8AAAAAAAAAAAD//w8AAAAAAAAAAAAAAAAAAAAAAIgAAAAAADIBAAAAAAAAMgEAADIB AAAAAAAAMgEAAAAAAAAyAQAAAAAAADIBAAAAAAAAMgEAABQAAAAAAAAAAAAAAEYBAAAAAAAAagEA AAAAAABqAQAAAAAAAGoBAAAAAAAAagEAAAwAAAB2AQAADAAAAEYBAAAAAAAAYwIAALYAAACOAQAA AAAAAI4BAAAAAAAAjgEAAAAAAACOAQAAAAAAAI4BAAAAAAAAjgEAAAAAAACOAQAAAAAAAI4BAAAA AAAA4gEAAAIAAADkAQAAAAAAAOQBAAAAAAAA5AEAAAAAAADkAQAAAAAAAOQBAAAAAAAA5AEAACQA AAAZAwAAUgIAAGsFAAA8AAAACAIAABUAAAAAAAAAAAAAAAAAAAAAAAAAMgEAAAAAAACOAQAAAAAA AAAAAAAAAAAAAAAAAAAAAACOAQAAAAAAAI4BAAAAAAAAjgEAAAAAAACOAQAAAAAAAAgCAAAAAAAA AAAAAAAAAAAyAQAAAAAAADIBAAAAAAAAjgEAAAAAAAAAAAAAAAAAAI4BAAAAAAAAHQIAABYAAACs AQAAAAAAAKwBAAAAAAAArAEAAAAAAACOAQAAAAAAADIBAAAAAAAAjgEAAAAAAAAyAQAAAAAAAI4B AAAAAAAA4gEAAAAAAAAAAAAAAAAAAKwBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAjgEAAAAAAADiAQAAAAAAAKwBAAASAAAArAEAAAAAAAAAAAAA AAAAAL4BAAAAAAAAMgEAAAAAAAAyAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvgEAAAAAAACOAQAAAAAAAIIBAAAMAAAAkHInz8wd xQEAAAAAAAAAAGoBAAAAAAAAjgEAAAoAAAC+AQAAAAAAAAAAAAAAAAAA4gEAAAAAAAAzAgAAMAAA AGMCAAAAAAAAvgEAAAAAAACnBQAAAAAAAJgBAAAKAAAApwUAAAAAAAC+AQAAAAAAAAAAAAAAAAAA RgEAAAAAAABGAQAAAAAAADIBAAAAAAAAMgEAAAAAAAAyAQAAAAAAADIBAAAAAAAAAAAAAAAAAAAA AAAAAAAAAKcFAAAAAAAAAAAAAAAAAAAyAQAAAAAAAL4BAAAkAAAAjgEAAAAAAACOAQAAAAAAAKwB AAAAAAAAjgEAAAAAAACOAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjgEA AAAAAACOAQAAAAAAAI4BAAAAAAAACAIAAAAAAAAIAgAAAAAAAEYBAAAAAAAARgEAACQAAABqAQAA AAAAAAAAAAAAAAAAogEAAAoAAABGAQAAAAAAAEYBAAAAAAAAagEAAAAAAAACAAEBAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAENAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAEI AAACCAAA9/MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABhZoyHXDAAAPA2oAAAAAFmioBOwAVQgBAAIABgAAAggA AP0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAGAAACCAAA /gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAQEBIAAxkGgBH7DQ LyCw4D0hsAgHIrAIByOQoAUkkKAFJbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKBQEARABkAAAA AAAAAAoAAAAAAAAAAAAAAAAA4C4oI9AC0AIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AA8ABPAwAAAAsgQK8AgAAAABBAAAAAoAACMAC/AMAAAABEEBAAAA/wEAAAgAAAAQ8AQAAAAAAACA YgAH8MYEAQAGBtIusxnCtZ7dhHf6TpmceJP/AKIEAQABAAAARAAAAAAAlgsAbh7wmgQBANIusxnC tZ7dhHf6TpmceJP/iVBORw0KGgoAAAANSUhEUgAAAyAAAAJYCAIAAAAVFBUnAAAAAXNSR0IArs4c 6QAA/8pJREFUeF7sXQVgG8fSvhOjmTHMnDTQtEmapszMr/DalOEVXuFP26TwyoxJmblNmcJp2jBz nMSxY0YxnXT/t1rnosiSLMuy49h7VRXpvLc7++3e7aeZ2Rl+8/rlHDsYAgwBhgBDgCHAEGAIMAQC ELjljvtmzpwZMyQ8CNbg4eNivp5dyBBgCDAEGAIMAYYAQ6CLITBr1qxFixbFgWBt2bCii0HDusMQ YAgwBBgCDAGGAEMgNgS+nvubRLAmT54cfSXHHXccpWVNGiwQrLHnfxj99VGW5HleKun/eOArTz81 vYUphL8HXo/SBy/3XxxYx8ETTfUeaK7pmsCvB04FSnRoY4e0TCoMKHpAJv+pANED5AuqrMWOBPXm YL2hpA7qX5B0flDCwB4MSSA0YTtySLf8X0IPYtBwhsA4xIgcMohNKAQOcus64u/5wY6Eh/3QAQ2a SaG6R6dq4MgHfw2cjVF0pIVBjDQbA4cgSKZDxyb0bdWajgQOYojbKsStFTwbm3WkxYdA0DMhuLeB 8zT0Q+DgRIz6tgrdkUMme9DcCvdACHpIRTUbA3vc7JEW5rZq8SFwsKIoZmPQOAddEfVtFbojzWo7 BLswt1XomzDo8dN0V5KVJOiRGe5pdujz4ZCHReglKcJtHbQqNO9IM2nDTI7gh3yYx/Ihcyno2Ra4 ksXSkUhPs2Y3ZIu3VYsPgcBnNB29zngMU20PIlhR6qECr5J1xp4xmRgCDAGGAEOAIcAQYAgcyQgw DZY0eof+njn09wLTYDXBxDRY/t9vzX4zt1YV11RLwC/PQzS8TIMVqMIIVMUxDZZfXdPC/GmlPpVp sIINIlFo0JgGK9SDMHAqhb5vD9EiXnJUYvT0CXa3hQsXtqr89KfnonxrW6FXxUWDxQgWI1iBRiP/ g/ugpSn4GzMRHljeCFABunxGsA7lnWGfrQf5aVjLbNMcbGKxYS3vsVjWQtgCAzluAG2h4xx4Jxzq sBBMjQ/061A/BmYipD9FggYx4EdK8H0UwXofVFEgyQyqJaznBjMRhvihHML/oQX3m6Cn3SFOMwE/ PqMjWK2yu4Fgtaq8RLBiuCouBKtlE+Gt5xlnXJMX7hU9nWQlGQIMAYYAQ4AhwBBgCHQTBFomWADi /jBHamrqaSNruglSrJsMAYYAQ4AhwBBgCHRzBIaMGI9XIAjNz9C/RkWwSEHBFOLFcV9++hbjWN18 trHuH3YETjm272GXgQnAEGAIMAS6DwISxwoiW4EIRE2w/BfxNxfhJV0/b968MeOP37Nnz8DE+ITR +uvb/1avf65x60u7lj722H/PauNQrfv1/2rWPzvrzjNoPbPuPL163TNrfnmgjdW26vLLzxm77+/H Fn52e6uuooV/eueGLX/OKFo0c8V3d99/44kx1BDhkmcfOHvFt3dt+f2BdT/e8/M711942siQhZ++ 98y/v7pj4y/3rv7+rh/mXHfhqSNCFnvyntP/+uI2VLXi2zvmvnHN+ScPD1lsxk0n/PPVbfRPn75w xd9f3rbqu/98/dpV8e1a5Nq+fvmK+R9cH8cWf3j9yvnvXXfGcQNQ5xlTBsx791q84/PpUwb8+c6/ 5756Rava+uCJ878Pdcl7j5839+XLwlV13XljLjp5SKsaQuE5D595wYmDpavOP2HQ7IeabhacfHfW We/Maus92CqRXrznxI8fP+v1+0+OfNUHj5yBV6tq7uDCr91z/Gv3TMXr1bvJK4bWH75m7LO3HBPD hewShkCXRwBxECK8OqD7Uv6bQMVVyKQ4LROsp57S8tevkaiV+FqfMTcnmu3Ege3ee++dPn36tGnT evXq1fZeVW94vl+vzGfe/D1p0O0mi2PcyLbW+dK7C8iad8IwKtsZ08iHl/0nO+w4bkI/tLV5Z3lr W9z654xeBWmvf7Skz5SZZqtz1JD81tYQuXyvglSLzTn4pP/N+3tnj7yU6y6aELJ8r/w0i8017NSn 5v+9C8X+fUG4YqjNNfKMZxb8U1SYm3LNBaFzA5x23MD6Rjsa+umta/v1SH/nqxUff78mO9349atX xbd3EWrLTDOqlPI4NldZY0FtfQvTQr5X1pK/Rn9kpBhCipeRoleGF7vR4rzo5KHRt0JLpifrRw/K ka7CZ5xpbSXxKv+/W45LS9L98lfRTU/8hjofvv7Y2TNOjbnyGf8++rV74/ybJEiYey4/6vk7pkSQ 8OZnFtzyLHnF0IvkBI1C0fLDOYaa2SUMga6NQOTMNNFb9yKjFESnwqUcbOEethdlTJ+dPXs6N3oN eU2fPRpMa8Ez5gSdCI5VUFAwevTouLCreZ/dqVYplq/d88ybf6BjY059/IRLXmjjPHj/q3+WrtyV l538/EPnP//g+fiwdGXRB193aO7FgX2y0IsV64pb1ZevX/830Fi7ufS1D5fgwhOuePWCm99pVQ0t Fj73hnemXfEait3zxPd4z84IvV32/FvePemqN1Dg3qd+8BdLCFnzhbd9cMo1s/Gn+5/5iRRLD1Hs f3edplIqdhYTp70sfwEQrJfeXzLxwlfOv+X9FgXutAVKKholZCg+Te/pRnymf23vY29ZA+jXY7dO a21D+ZkHxz0/65A5cM3D3//7YTI3OuYoyCatf/rrFtpcn/wUnUYZc9O985K1bbg8mnZ75SZq1Ypo SrIyDAGGQHwReDjMEWUr0Vj3oqwqcrFIDwiwq9mzy6dPz+av58TlfVDRmDFruNmjE+9ZY3qmr8vl wpncXB3HjYatMGQz//xw39ABefjTpu37jz7rSVrGsuOVXXurC3KT1SplaXnD+1/9/eybv/fvk4k/ gQ81r2fpt/cM6Z+L85t3lE0671laoH4ToV+bd5QX5Kb0PJpY/RZ9ddeQ/uTnOE4ed+FztNi502fv /uuxM08cgc/QA513/Wxp62jV2qeJMFan0aApq2wYfVqTeBWrn8L5LTsrCnKS+x83E5///OT2wf2y 8WHrrooTLnsZH55+4JwTjx2UlmLA5W9+svTl9xY+df/ZJ04amJZMzsz+dOnL7y+mAuRmJeHMx3NX od1fP7iZ8q1tRZWnXvU6LbB36SN7S2tzMpPAqMqrTJ//uBqkqk+PdPzpn3V7m6Pxw9vXD+xNKtm+ u/LM6+bQAjsWPOg/U4XmjjqT9Gvu7OsG9CaQ4uQ5N7zdvB7pzDP3EzNQRbUpQhn86al7z/QXM0cu 9sQ9p5NiNSGK9cxLwZ9KyhvwbrW7DDo1rISX/efjwAo/ef6yvv6+7yquufyuT+ifXnv43AG9M1Ae V0GR9sRsohL48OlLDpSsvfLez2jJv7+4paSiISstAUqgqlrLDwu2fvDdavqnb17+F3RXNrs7sLlf 3/q3XqfCGRT+aeG2D79fi8+LProB70UlddlpxtNueO/zFy7LTDW8+82qj35Yd/mZI68576gGs+O8 2z6S6tmwo+K4cb1z/dSq+fvGHZW05JsPn90rnyCwp7T+xkfm0pO/vXU1PZOZZjj/9k8DZaOf3//f edBp2RwHxb71sgnjh+UnGTU4+e28rV/+tgnFyvzjkuOndFEeV51FjMI6rfKCEwd9/cfW808cRAnN lWcO/+CHDd88fxGt5/w7v8D7wzdM7u1nPHan5+/1pbO/XoOTXz5zAd6LyxuhXbv6QULFnr5jWmFO Ej7sK2+896X5+HDdeSPHDMpJNKhx4U9Lds5duAMnn7htaqGfTu2rMD3wCgls88njZ9PmYCK8/P++ //ixJtPkR4+decWDhNmHO96fdXplrTU1SatUyOtMjsVrSn5cUvTew6fR8u8+fOo1j/yCDzOnH5Of RQaotMo8c84y+te3ZxBbJM6kJWlve5ZI+9b/nVRVZ0tJRG2yepNj6fqyX/7eg/MPXjMhL5Ngu7/a 8ti75BfaG/eeQCt5495pNz0d+ukXKPND14zPSNH9vbH8sz93XHJC/6OH5VQ32B97b+XLd05BMYdL AFdrMDtnvhvC1+LuS0flphtQrKzG+txn62i1z99KDIjltbYUo/r/3iIi3XnxiJw0ooDEyRe+2ECL PXPT0U3FEtQPvbMqUCT2mSFwRCMQZeSFoD5C1UTZVaDjVDj9UwR8mju5t9pEeO+9jumjR4+5fjqa oSbCNaPhuEGerZRdeb21ESRY/sP9YFe/Ltj0/pfL8OHv7++TCvftmfH0G7+/8t6C/Jzkqy4kj4AE g5Y8Dvzqq8Djj0/vALv65pe1H379Dz78/skhzkw791TN/X09yi/66m6wq98Xb/nom+X4sOjLu6RK fvhjfYJBg9cPfzQ9dALr7zv5oT+WbM3NSp5/qJvUruLqH+ZtREnKrv5cuu3TuSsH9c3+8xPiQnTe KaPAru5/aq7LLYwcTBjkeaeMBLt64OnvXR5hxKAmc94rsy7En8AV8E7Z1fxl2z/7YTU+/PL+TZIY PfPTXvtw8dtf/J2TmXjxGWNw3qjX4J2qrwKPr177N9jVTws2f/HT2gG9s7589ZrAv+4uqf11EVEA UHa18J+dX/2yDh++e/PacMMEH6xTpwzCX9dvLYswlPDBOmXyQFJsW6Ri8ME6eRJxP9qwLYRJFL3D n154j3Tqz792uj0CrIQLP7np/25q0rt88vzl4ExLV++ZO28TPnz8HHE5ArsaMzS/eH/9+Ategnkx 11/JW49fgAJ/Ltv5/fwtfXukzXmMrPT0KMhO/uDbVZ/9tA506syppGs43n/yInxdtrb45GsP4Zqn XPfOpMveePurlfjruScdYmIrKWtYuHI3rl21qRTv44cXSO/b91QHYvXjwm3gOhmpZAnEe3WdVfqM 8z8t2o7zL91/OtjVopV7flmyAx9evJ/QUOkoqWxcsrq4Of6vzjgD7GrFxtIL7/xc+uvxY3uBXb32 2QqP4Ovfg9glcbz7LaGG6SmtNvDZHR5qJcQ7OJDUynl+XkUPsKuhfTP3V5kvuOtL2CJBNwNFLau2 /LOBQPTYzceBXS1bXzp/xV58ePTmKTg5aVQB2NU7362DtFBK4cysGyeDXf29Yf+CVcX4MPOGSTh5 2f/NpXWCXZH3GU2asytmRGJX9JKsNANI1W9/705N1E4eTYbp6lk/0z9dM4uwq1l+drVhZ9WStaX5 mQkzp08MlL+i1rZ6axMJxvnMVP0vy3b/saIYNOvYEeR3HWVXG3fV/LV+f14GYtaQp/ONT/1JK7nx qbDsivpg0WKPvLscLOqoQVnHDM/BOz6DXUli3Pv6X5v31MEs+N/L8IQ95LjjwhFgV2t31PyzuRIf brvgEO/Gqnr7+iLyEL7Lz662Ftcv31KJD/+56JBi1Q2ODUV1QTWzrwyB7olAlNa9COBI7ApVBfpj Nb8krIkQ4a8u6NUwZk7TDQ/XK7yguMJ79WMFarUa7Eoub3q+hxSln1+DcsENs2+ZQRQM8K8KLPbM G7//31NzcSY/OzlCT4YNJPTl2ns+vH0meeLTr9Jx3X8/+s+sL/EVjA3vl9327n8e+Qof+vi/0mPD AU6wYdv+kA396z/vk0t6HLwEX2/6v8/uefxb/3miULnqrg/u+d93+NC7kHx1uwW898hLHXnq/66+ mygzpDOjTn3imnua1Bv02h17qvAOhyq8//u/n9z/NFk86FfpePWDJf977Xd8pSwk3DGoL9Fd/efR b2c8Ryxxg/z6MOm487FvH3yeLC298lPxfuODXwZ+DVknfLCoeFS1Fu6AD9YOP6sY6Fc0hjvgg7Vz r79Y70PApOWhgpIufPz1P597Z1FljRknzz5h6ON3Em+bHrlkJtz1xA//e4OoEwr9X6G7wvu/HyCj fOHtH93yCBmFfj0JsA+99PuTfm0WiFqgSO9/t/rVj4mWArSJnocyEu/3PUuW28Dj3f9dMO/96dde MBYnkxMIxZeOR16f/+y7hAs+9+4S6L2oMPR9+YaSoHqoG9b/3XAc3hevJnrHB66fgnfJAat3ARmR /81Z9OKHRLDe/gGSjiffWvzSR38H1Ymv1H436/VDnHjcghcnoay6/N6vHnmjFXGNg+rvmUf6Ulpl oq3gvbSSaDHp+cADuivSo5fJoNz+1K+PzG7SztIyL32yYvbXhN71yE3C+8ufrnzrG/9XvyoLvArv 4EA3PPbzMx/84z9Pmnv181Vvf0eUMfRrG48fluz6/I9tqAQcq3lVWX69zsufr/ng581EmEMJ4lvf bfjwlya7JL3252V7vp5PNG3gWHgH5cL7a1+v+/g30kRm1CyW+mBJ8vy9qRyKsYum9cf7P5uCf4G8 9T2RLTMZBoFDjjy/7uqj37Z/uYBo9+lX6fj49x1fLSS7jjKSiajv/rzt60XkVwH9Kh2f/rnrm8VE FccOhgBDIF4ISNQqggIsLMGqrKyEqmrNGqKvGs2NXrxsPV5Tp+6Ch3vGjO+gwQK7iqzBggUQ11p3 vooXPtCv4Q6z1RHyTzCcBZ4P+ir9iZ6v3fAcXv62Dl51740nQc+EFz5EECByzWUrnyxb+YRU85sf L4Hh7/rLjl385Z23XU2WVRgKcWb6pccs+uI/t109hTZE2dh9T86VLixe9mjxX48GSdhcKrifhxRV dSgaQV+lS+j57fNm4IUP4YrR8ufe+C7e4cAeARz86YJb3iPFclsodtFtH6IY/Nwj14a/fvP7xtOn v01dsqaM603kVBKxV35zB17S10BadrCD/pIBX1twWg/pNv7VS5f3KUyDwmzS5cTJLMKxYmOJXqt6 8MapeK+qs0JlFVSYOloN7pMJldXsL1bgHZ9xRnLAChIgSi/7kF7t387bgvrPmTZo9sNnXXRKy47t 379y2fcvX4pXyA6u2VoOK+Gd/5qAd3wOWSZKXygY6QIvp19/XLwTirHTju37/F0nnDO1P86ELNbi bGlLAdriOw+d+s6Dp/gFaJ3zOC0/+/4T37yPmAVbe7kk+XeLd5dVW/EV798tITSo+dHcsT3oTDjP d4WcCPnszRPxwgf6lR0MAYZAcwSaW/dai1Kg4ope2/wMPR/2PuzZ84M5c6aP5taAZKHcXZ9Oxosb DU/3OdWPnYMzLWqwXG5icTD0u4W+jP1vidCNffvr8dd3n70yqAyIUeCZoK/Sn+j5tOF30Vf68CYT 4bdzroct75cFm/DCh29mh92fH7nm3LH35Y69n77Q0EvvLRx4/COwG0IRRQnWy+8tGnTCo/P+2o4z t15Fzsy49WSQtj0lTVZUWn+PiQ/2OObBnsc8hFcENPb7F+yXHjo/qAzVk0lH0Neg8wOmPYbXwBPw ery1E6jDylMfLEqtYDTE+9jzXqSvcee9KJ0MxsFf8mB/PUSpE+FwhypA9VuzXm3ZgebR1+eD00wd T9wQt+w6aE6SWoQbFj7DMkhVVninVkLJAStIgJDyNJffE0rsz3/ddNFdX6zctD83M+HiKHYOnnXr J2fd9ileQfVn+3UhX/2xBVbCY0YV4v3rP7fiDLRNQSU9fp1Zi0dQMfr1uwU7/j3zx7XbKrBX9Jyp xHwcsliLlbelAG3x34/88u9Hf6WvVtVGlXDXP/HHDU/+SV+tulwqfPL4wtwMgi3eTxpXGLISwd9W 4BF0pnkBWljwkgvvfm0Zfd3zWgiFaGxis6sYAh2DAN3fF/hqj3ajt+7FpfWwBOvpj4mT0DaTYsOG 8RveVYJX0Vcgu4qswfpnDVFK//zBrV+9eX3d5hfmf3HQL6q56O9+8RcoyAmTBl5zEfkFtvqX/0NM LHzY6Lfrvf3Mvz57lTgS0a/Nj5V+f/Dv3rrhk5evKVv11K8fEU+pO6+bduzYvvBtv/6+T66//xN8 OHZsn/9ce3zQ5R++cBXOFBUf4lgjlVm1YR8+f/n6de8/9689fz36wzs34uuK7+/94Z0bqHGQHsvn 3vP9W9dLxkGcGT2UPEMlgrVmE7Erffry1e88ddn2BQ99O/u6COP36Q+rgcbk8X0uPYu4ZP350S0/ vk2o4Vb/6v7Cg+fOfvxi8rUoxGKP82u3EJTef+byNx69cMPP9332Mulg0PHtm/+e99HNOPnaLELj qKEQx+LPb1382a1S4a9fveb390mXX3n4PH+xJpQWfnLzwo/J5fT48uUrf32XSPjSg4R8U0Nh0EED NNAD7u1/vE98yWlAB6rH2rCdaFBen3nec/ef+dfnt7zzBPGz3ridcBd4YpFWXrri7ceJu9XOvaT8 I7ef9My9xJmJXh7hoJ71T959yLb/on2E+/7r7NFP3kUUG+TzWaPCVbLD3yKOx94IseueumHhryXl jdK75ICFM7tLiAfMA9OnPOLf6Le7NKxDTCD3gv0OhR++qcmPhwrw3mPnPXvPySGNg3CQioxDyL/S Vuh7yGP7XgIUPLHw/tK9pzx+6yHySJcUl5G+33bp2HuuIl6VcH7H+6v3n/zITVOocZAexeWkoVsu PuruK4gzE/3a/IiS1YWTOfDyolIy+ndfMfa2i0a/ef9JD1wdOtRIuKp27yeX/+eS0TedP+KVu4// 7xVH0ZKUeEV/HD+mAJcsWF2Cd3wOuvC6s4bgTFVD0z0iEan9NUTpdcXJA649gzgU0q/Nj70VZJfD 9WcNvua0gU/eMOGW81pWbUYvOSvJEOhsCMyaNStkKKwo5YzGuhdlVZGLRdIkbzO9OzDxmrvuusvj 8ZieuVh87SK8ozqqu4rMrlDstH+9vPifHeNH9zpl6lCXS/jd738d7nj382Xwyqqutbzw8IUINJpo 1FJGcuKlL2Lz4Hmnjjp5ypBVG4pPuuylkDWcc90bS1fsGjui50mTB4Oa/LmE/Ba/+copeP/k26aN OZ98Rz7Qk9Kxa/EjJ04atGVn+fGXhK75wpve+mvV7jHDCk84diA0RvBSx7WrN+4bNaRg/4r/1dZb sYUQZyAtzpT883htg/WV98kZuscNnua0rUtve+/vNXtGDy04fuIAqGoW/N10PmR3Pv1+9WsfLUHl j9x5OgKNwkN/o598IFjDtt2Vp08dMvXofuu37r/wFmLda35cdc/Hy9cVjxqchyhcWLAXrwixN3PT 9gq40sPJ/ehRPeGmdt5NoatCBC+jXg0n9wmjemzcXnbBrcRQ2PzYvLMSxeDkPn5k4cYd5RfdTgyF QQeQwZn/XE2cmuf/vRNgrv7uzn9fMHbTjorL7iR6rJse/mb1ptJhA7KPHdMLYv+1hpDmm2d9i5Pw xFr+1e0pSTo4quPkdf/3FbYOnDCx3zGje6Lp6TOI412E46r7vsA+wYmjevz2NqHp9Ljmga/AseCA hclW5Fc0Sj5bzatavJL8WqA8KeRB3bA2+lVZ9D0wAtbtT/yErYJTxvaCs/y2PdV3PEFc6EIeC5bv Rt9n3kxIzC2P/Vhdbx03LP/L58l9Rw9cPqBn+k+vXwE69bl/CyHpy7mEGjaYQtvZQzYkhbyilkHJ Ptg8FNasNxdv2lUFT6yvnrsQ/vVQR4WscMZrC7F5cOKI/NGDsneV1D342iIU21lc17cg5bMnzzVZ Xd8tIPfOw28sxubBo4fnjRqIYvUz3wzeyUErX72VtIJdhOGAinx+7XbygwG7CPH+zEcrt+2t7ZOf PLxfhuD1btwV+qdUuApf+GzN9uI6xH0Y1icdiqLNu5t00hv89WAXYbgLAwON3vevo7BPcGNRDQyF eMfne68gv53o8dRNxwzplYpNgk9/QswFOFZtqwLHuvaMwS9+uR7nR/VPH9wztbjC/PJXIXbqoPyb c7fs2t/YMzthUI8UCLltHyGF7GAIHEEIUCtb4Cuc8OeffXK4MA04H7nL0Vv34gIdj/YQmAs7Hsee H2JRRBvwdgfHoo1RUhXErsrK7E899dTP6w5xNKbl+cC05jw50ST0odm6D5wNyqQedH1ARnb/BS1k /D7QXFPlgV/9p6rWPoP3rNFET9ZM2EOzrh8q1yG5wwNED8oYf/AvwUA070hQb5raa8KrpY40yz9/ 8HJ/ywdhD64pEJqwHTmkW/4voQfxQDOBw3JI8zNuPuGcE4f9vnT7/z3ndzZvNohNKBysvrUdCQI6 /PxpBlmTLAfHIXhEbrxk/IWnDP950bbn3lt6AIDAiRCUXz4Ip+YdCRrboIEK7kjgfXRI1Qcqvufq YyeN6fH7sl3YXUgnc9BsDJoEASN/oOlQI3KgWJh7KMTpFjtyUJCgGzhw2IMmWeDzIXCehn4IHOxI 1LdV6I4EgRj2aRZqHhwY38CnwCFPw6Yu0jANt72wKMTTLFJHWpg/h96ELc7GoHFuNn+CHoehOhLy jg58UoR+yPsfSSFmY6hnTKjnQ8C8juZpdmhHmt1WQfdAs/nTutuqGexBD/5DFpIQAxoATbMnW6vX 1ggzgj6Kwz7NAp/ToR4SzVerFh8CB+fCJUclRhltAfqqRYsWLVy4sFXlpz89F9K0thV61TDVdtro zJkz8XXy5MmtappeFZUvZMmBA1wKL3yjH+iL3FrsYAi0hMBjr/+JQFbDB5CgAEfWsfDD68GuYPIj 7KpTHgN7pdsd7leb2FWnFJEJxRBgCDAEjmQEIqfokf4a2MWoCBYUVJGPIxk0JnvHIfDhd6sN+oPB Gjqu4Ta3VFrZ+MUvG9pcTXtVoNcqEXS0vWpn9TIEGAIMge6NwHHHHQdtVpSHBFXLJsK2oNqZTYQR 7ZHMRHhg2A+1NbXFREgV0U3/H/gnRltGUE2hbUjxNBE216JHUKr7pQs0pba7ifBQg2tQ+yHsxMxE eMhsPHwmQnKbNbOVBxqsQ98ogbdSoH0vWstaGHtdoP314PwlIgT4erTWcyOm2RhtRwIeJ8xESJ/Z od1vmIkwRI6E5tyG2gRDmghjI0KMYB3kmoEPkUOfKId6MkVzJze7PvSzK/BRevBz1/TBYgSr6QEY ejkPdJYLXtJa9MFiBOsgEQn6FM1txQgWXZoZwTqE7QaxldYyReaD1fLaCu8o7AeMkrtQH6xWlZd8 sGK4KsgHK0ohg4oxgtXyJDjw6An8qXhAhRLukcQIVgCbCMMogn9uBT3AAj0vg4fgAPyHUpaof2q3 3smdabACIA+higzUTAZ8bs4UD9CfCD+1D/4pxJIWeMM1qyMUy2IEq2V9atCTrRnsTIPVtEq0au8I I1gtr61z/nt2bMQlyqsowWptK0EarFdfbMpTHGWjgcUYwWp5EjCCdXDGtGEXIdNgHUoHg2lKRF5y kFeE3EXINFihuFUQAQuvGGYaLP/UZBqskPdR0G+CMObVAPwC7ZsHPwf9bohuNgY2FvAMCPrhcoj2 +4gyEcZAWTrsEkmDNWXKlNgaRcwIRrAYwQpWFR26w/+Qb8wHy78QNWdKh3g+BGkAQqnimmqJWvHD CFYTBWAarAMzMBJBj9G1kZkImYmwSeN7UPEbeOLgz5hIiuEgjUQQGwz2b46Nu3TAVRLBgl0yhuZg lDyEYMVQBbuEIcAQYAgwBBgCDAGGQNdDQAq+FUPXggkW6oqhFnYJQ4AhwBBgCDAEGAIMgS6DAJRP CCsaZ4LVYpj5LgMf6whDgCHAEGAIMAQYAgyBIASo8kkiWH/+9rtCrWotSiE0WLTS1lbEyjMEugkC +EHD7pFuMtasmwwBhsDhRYA+bztehiCC9f415yhOOTcrOVsul0cvDCNY0WPFSjIECAJdlWAx94Aj cX4zrn8kjhqTOXoEYiBYXsErmOo4tU5tMETfUGQN1tdPPPT41le8gnj62CtG9DzWqE22uGuLLatd Dt8xvcJmo2cEK2b82YXdFIEuTLAQxK+bDuqR2W3E5hk8fBy1YjCmFZcxZEjGBcY4VhI9wRJF0fnd i3J3hbxqs9zt9O2radD0dB93Sfq082K27kkmws+++PC2D06UK33GFGVKtlpnVCg1PC/jxqhumzbg 0nD9ZQQrjjOBVdUtEGjxETzvAEuZNuVIAqQtvpxHUj+7kKx4+jOCFd/xjHx3DxkxPkJzm9cvj68w rDbJYhANFB5zg+LNC3i1j1OpOaubK6501jkqbG7Zhf+N2bonEaxZr9/98o//0RrlyZmq1GyNUiOT yUUotC7L/7RHeu/IBCuqZM/R9JCVYQh0ZwSOuWMRXj/NJa+ZcxcNmUK+SnwrXsgcs2j8HYvG4z1e FbJ6ujYCI8YcE9TB5me6NgLx7N1skQv5imcbrK5YEBD3rOHVfjIDzZLDxbm9Hq8PsboMfYc+98Nt d75z/p/rv60x1TjdQo21clXFT3/t+SH6ZjbsXSaT8Qolr9LK5AokaRFxrdKdkZ/Ss8VKGMFqESJW gCHQAgKgU2POnvLXi1Ne9L/wYfOiKY3rOTCt+GL31xT2Qzm+iHbl2sClvv3220BG1fxMV+5/3Pt2 Pc+FfMW9IVZhaxHYvYpT8JxMxoH8OFyix+f2iW6ZytOrz/66bdX2rV9tfOi5lSc/vXbi20Vnz695 zOm2Rt/CpuJlMgWnVMtUarlM3pQFL183Ri5vmT61XCKyHJEVp9H3oTO0Ei9pu209HTMZKLwd2Vbk AT1myqJpM6e8OCW4FDgWmFa3nQys450Bgc2bNwdxrOZnOkDOON6tcayqtR2Ho0/Io7X1hCvfvGtR djbKYp3tyRkv3Hw+H1+2nhN9HHb5ebyc0+0TfB6vqBhw1M66jT7Rq1DLNAa51qDAB2i4YN3rkzou +tbrrBVQXIFg4UWyEvmj2PcyRlVDtAQLQxj4ivsK17z+5v2n06hVkymoksBr215bNCMUTb+iqSew TAdI3h5iR9nNoPFty3BH2WJbisEI2Mhx0fCoxkWLGu+4r3HKePI61KO8cdF9/hfOj29sXBQozx2L uDv8xkf6ai7qwTrvuK8tHWHXdlUEzj33XHQNuiuqvnrooYcCz0RY7KWHQLsi0/yZfCTygKDFsfm6 E9RNWr5dge0+lXurS5WeOkKwlCrOI3AuwQOCJYraEZPaYt2TAExPyCPqK41MoZSRnGg853XL+6SN iQbhaAkW6oIfn/SiX6NpIPoyQfU3vzDuLbZHL0KKHYhb9ICEK9keOAS1RQWWBr3tMnfVGqI0AoIG cXN/S3rxyaRFy7mZT3JgWgf4EEgVwEma8mQSMf9N4dbfJ3EsMKrTOe70s52wNhKD49lOP4xTJDDB 1bizT0adpFoQOHxlB0PAjwC1DIJOgVThA95xjBw5cu/evfj6yCOP0DMhXbKw9rf4NGYwByIgzubo q/khgUn/FIgt41hxmUW+0o2+jDQTl1CfMqo+dbhFZvCJotfHaUcc2xbrniTb/cfO/Nf4J/slH28U +hmdQ3p6LjjZ+L8UQ2o0wreCYAVV11zTEHdWHvQTSmoxjg0F1Rn4Vbofgj5EA2vkMuH6RW8/qbnA bgZqrULi0PznZtx/gEbfRNybpsg0H/fIPxzbPlIt1gDe0+JB9FWLFoFd0ZJJyM2exOEMPlMuBXZ1 4E/+D+uJLorqq7AbcdqUk2FtxOef5mr8xch5ci1qaPTXRj+jzhHkMzsYAhQByqLwAe9Ua9XTf+A8 1WNJqqxoEGvx9g98RqHC5k+52J7bLbYbjfDtXWbLuOX0FdQQpVPRtx7uyRklCOGWj+bDEb1Inb9k RfrYdT3vXXzs+z/m3PFD4e2brvvafsMrvuFTG5M1bbHuSR0vmXtFjy1vXJmcekPO+Ouyss/W/dlT 3N7kitUSOq0gWBEWs7iw8uY3ZDjFj6Rfaal3wX/HhdJTIHDex0X+cMI0x03ql3Q/hLwtabHAeybo XpVwaC5/4JnWohSyfOQmAjvS9qabIxZhgFoEMy7db1MlM5sZ76DEoqyo+TGiiWw1p26rmwpPafoX 1SaRSojiCuox6LEOcDhaIBDGcDOtTf1iF3d6BOBxJREpfAC1ouwKgns813iWk9eMGUJQP+hjJ5AP hbwBm996Ep9o/hAId58GPZODns9RttviOLTlXpBwwJoa8qCtI2oGXs0lCUIyENvm3CskSlE+3kOC H4hnzOtmi/AexgI2l++pldynjqErzAmbGtU/bWiY8enGmxf5rFc9w8vlbbHuSZ1CmpxEfpfO/qnG 9oba9a2SK+UMUTlgoYZWEKzISuPmFLu1oMfXjtba1kPKT6dsGxen5riFvOXoihjh507kX0LN5W+j 2K0FMLB8G5sOOdPaPsHa0qNw104bQf4SFI4BuifqMoXdhTE3ipqDONbMs6cE19ZITjSnVrRY4IRp 1c/omGVmF3Y2BMClPPfNwGu5IMwQBHwdMmQIhAS7uu++5Pu+Sl7DjX749OnNDYUhyVMg5aLPq6Az 7THN4nLjt/FewNY06UV/5wQ+oyL3OgjJCL8V2zJ5gtaOuIDWFnk67NqtZQ5jUiKS2MjlvNPucLuc Pq+wr8q8v9piWvllW6x7Uhc0Kl6rk3Eq7FIkHu4mkyEha2iUHWwFwYpcY2T6FaU0h7FYh8nf/Ldd XHodJL+k/Woj14lBtnZqusMGqFVdRlAGlL9j5iFECucO2T/ot9w111dR6164AzUnYQ2bsojSNfCt 4OClfjVYi3clXQxaKsj+3gURoOzq+sdmcmefPnr1avjzgWNVVMwCu7r++jlP+o/Ro6ej582VWM3h CLoB2+k51mK7MY8TvQtiuxfo1jH6or7NVF8V+IpZsLhcGKQI6JxPy7j0NKiSrZUupUaNvYGcKNpt NsHl9Ho8vOgb3tNYseqdtlj3pIa0GhIBi5PDv51EwPJqxisU0SYljBvBkqTp+BW9VcNGJ2KE24zK H1isxUtaJUDIwnFsIhD/2J4mbe9OzA+yaJrubBMMMRogdgRlVZPlLtBQOPc34jIF5VMSuZb6uTcd xAGLnMTx16IpL850zpu5CKosyuQCjyZ+Bn/5iFluDuMciGY0WZn2Q4Cyq9miyI0ejddoUQTH4tas wVtODqf0H6T10aF8s8OLFfcbMMqHbdvbjfleCIrOAGwimwvbb0wj1BzEsWjJtoN2WPoSZaNwZi9q wO5BGAN5r0dw2OwetwsarJ7ZiQrzJp/H1RbrniSDDvFFQbDAlShd0k2IUjwUiw/BokNLXzFPYqmG QIoTpIKGxFJb0XeyxZJxkb/FVmiBwLbCXRKNPIE4NC/f9uEIkq15E+GEjHvTQaAFTbD2aC7KoaTF wHwkjgWaJb249VzSiAM1+b2jaIAGun+Q7Pujh9/pyh+jgQRrALuSfN5xHh7utJKAGA2LDoqHapOg QPNHf2iJabWqU6xwF0Pgxx9/bKJT4FdruPLywP5dH9TZwEexpPgJutEiP8eiecpFg3DIh8xhv+Up 36LPpeavwH5F/9ikV4XsWuRKmjcXfflohqAzl6kxC1ZR4fNxChnngnnQYRfcbp/XO3Zgds2uJYgD 2hbrntRxnZYnYeJlZMQ9bk6Z3AqCxWMwWE6rzjyHmGwREGgLoY8B2MjZyuYt+o3jTpaqbZ6OUFI1 NTcOSqEZqE4LB2qb6d82CJME3D6gxCJM6+z76FccUlT3CNVG2UeWizBKoDpPsRZzEcKtCn5XYFPT /VSAsiuc+Ynjzl+/fNmKm/F1+vTReJ81a875ZzMjMhfu7sZDhtKpoANKrJi1CZ1nInVmSVpM9rxg m2VBjQZZbLKSfGX7LZvXbmusKnfZrC/eerx73hVec1F+lrxnb7UiU8UpfdAm1TmOTx3+Uotdpnma pVyEP95dYeip8ym8jQ18vXNCr2NfR+acKCuJjwarxcZYAYZAl0cA2iZ/VIWmV/P+glfRV4g/JU0B tQpkV3fM1MCrnabfwTuUZCQUFjfzxSnLQa0Cc+ZEqLbLY846GA6B9av/gmIKBGoWCT4Nr3YPHLDw 4Uf/BRPHvTZnzhp4YjF2xabQkYuA6HXnceXD+OJhnvIT0s0nDTQkamRKOd8/02utLVIpuLZY9yRY LAM+KfU9Uu59Sdl/QZ/Jb0TDrqRrGcE6cmcXkzxGl9XODxzVXQXqwKIJFt/5+8Uk7EgEPli/HBwL fldreB4vfMBXnKQyfPDO8ttuWs50V9GMSIToDNFczsq0EwLHD0m9YVLhBRN6HDs877iR+TefNeSb R8546vrJ9or1vCiqVHxbrHuSzNm9R+cPOT1v4BRjUkprO8IIVmsRY+UZAu2OAN2pFBj9AXsJYSKE kqzd22YNdCEEKMeagyi1h7KrLtTFdu9KSEcrerLd22YNtBIBlVI+cURBxoATehz/IK/NUeqgxVL5 5LL6BsW+umMNKQWtrK+txZkPVlsRZNd3HwQi+2DFFwekIJzn97tqSnl1doh80vFqEf06/2xG3eIF ZwfVw3xn4wt0R97d8ZW8q9bWog9W5I4LHk9NyUbBUcHLDYnZw6LXPwX5YE2JGE8nggxw5GIEq6tO Ttav+CPQVR/BISNQxx8+VmO8EYAfbryrZPUxBDoLAm0kWDF3I4hgLVy4MIaqaCWMYMUAHbukmyLQ VQlWNx1O1m2GAEOgEyPQSQjWq4emIIsSMCr8IQQryitZMYYAQ4AhwBBgCDAEGAJdEoHAMA3xIVjM TNAlJwrrFEOAIcAQYAgwBBgCrUJAioMVH4IFjVarmmeFGQIMAYYAQ4AhwBBgCHQxBOKvwaLRnLsY TKw7DAGGAEOAIcAQYAgwBKJEACoraYsuSFHcNFioa/bs1iX+jFJiVowhEA0CPt6NYjwnk8kUooj8 nT6E+FMoFPggl4u8zOv1uX34l1fznMrnlXEKK6kWQeVQGhGrRTknkgt5DuV5QXCjIrmCE7xOlOd8 Go4nwaxjO5hsDDc23+gc6Mz3QmyzlF3FEJAQ8Dga4kWw5DfdcG1GVl5NVdnW7UXFxcWnn04SrrOD IdCuCBAyFOrgZQpO1MhEg+BGvnqfSg0yJXh9HrAlj0fwepE1XaeQa0CnfD6nTOHmhATRq+B9ajko l6jkRBnPi0hlIJMLyAsCliaTewWPyIt6uQx1OcJlNw/MNcZkY7ix+Ubvzs58L7TrA4pV3p0R8AnO QFJ06snTYkADhAoBtA7ZRQgNVmwhH2Jonl3SnRFAZrTQBIuXgw/J5XKOEzneLXJenxd5arU+ESoo OdRR9InvI0wKSQh8vKjwrwMCCJefJMmg1vJ6RblM4RXtUH1xogoETa4kijHRh3y3vpDt0lS49GCy MdzYfOv890J3fn6yvrcrAoGZ1ONsImQEq11HjlXeEgKUANF3UCiSyknEN39KJ5eTq6+zVVU21tVY zVaPxw3llQz6LZVanpmVlFeQmpau12hBs7w85+I4DTEX+jgeZkPCvfBz3MtxfkIW48Fkiw04hhvD rSPv09jQZlcxBJoQaEeCxXyw2CzrAARUKlXoVkS3QqF2u3xgReBO0FeplDqHXSgpdpTuq929u6au xmOzcHYb1Ewe/NXl9UHFBTctuVwGNVViithvYFbf/jlDB6mTklLcbqfH45LLYTpUoLDb49dphTrc bqLiogeTjeHG5lvnvxc64DHFmuieCMTRByvYRMgIVvecUh3c60Cfp8Cmec4jl2lcHkGl5uBAZTX7 Sna7Nq0vK92HvFJgVHK9ISEpKUFv0KpUChgMvXK3z8eBkFnM9vo6S12trbHB4nQIhYWq8ZPyxk7I zszRuRxmh92qVhlknN7rc4bsaaCvCZON4cbmG71NOvO90MGPLNZc90GgHQkWMxF2n2l0GHsa3s8J zuwujUbjE+Wb11ctWbyjuMjqEzRp6ZnpmQnpmTq1VvSJDkEUfMTpiideuDKY/wSy2VCuF9zqqnJb eVnDtq1l1VVlPftoL7x05NQTBqgVvMNuVypkHH/Q1yqw+9H5YDHZgqcMw43Nt8N1nx7Gxxdrumsj 0I4mQkawuvbU6eS9g71PJvfZHd7F83YvXVDtcuqyc409+hgMCZzDf3hxIIwD+XHdtA/RH58BFkIl +bXN+zQahU6vtbnk2zeZ1i3fX1+774xzev37hvEpKQrOp6C+XLEdTDaGm1+pw+Yb15nvhdhmKbuK ISAh0I4Ei5kI2TzrAARUahnn00ILJVPAR0rmdWPboIwXXbxO2VgnLp1XvnWjIyUlbdCoZJXG6XC4 HHY4q/sZlQwl4QNP2RW2Ffq5lt+HnR70s0ohTzAmwyl+6YIdK/7Z1Hew+obbJ/TsaxStZhmf5BPd PKI2cAgF4RAFNfbku1wHdzVGkK2h1gfZtm1ypqamDxyZRGVDK2B9cAEDv6Mi8U1bGrWQxCt64UxG YnFB6wb6KFOqFLzRkBR32VqFG4JZhBxlpVzWHriFlM3lBCBKuVyPaeDlXLyCF31ykZMrfV5egWBn 2AwqwyZQGZg02arglivbZUxDy2YTfNi2Kld6vXJepkIwNY8Pc0aEMx9mnwwaUzrRRCIdDqVSbsR8 c3BLF25b8c+WgPnW2Jb5FlI2p8NLVLecHHcM2TZ74F6gW0OaG/Xa416Q6VX1Nd6/5lfgXkhOTqX3 qd3udDpwE4S4T9tjvnXAY4o10T0RiKOJkMXB6p5T6DD3GnY+eFLjUewVfC6nB7TD6bCptaqaWsev c3fu3OzKK8geMjLd4W6wWrwuBziLTMSWQB5BRLGiwGldTr7is4+8RPK16dX0lfM0mhwyudh/cE6i MX3ZwrLVq3b1HZCemaa2WtwigkF4bbzIIxCpKJKIWSQqhETRIsj2/c6dW/yyjUiTZJPJ3QJxx9eK Mg1omkcUvFiGZXq3zCxwiI6KzYwqlACN4EWVT5DDZwyy8TJf/8G5SQkZyxbESbbW4BaI2CHoie2D WyjZoHYUBOiDCCUQZXJ8FXmPCPxkao9X5iZkSwkKJoJ9kXgcMoET2mVMQ8kmU+oFNItBApkiEiAE G7ajyjmvHF8EH4KAQFpMSMxGBL8VfJyv0WTn/fMtKSF92YLy1St39R2I+aZq03wLJRsJoysqfVDG ihDDfxeQyR/qLqA3RTvcC7V1zl++24F7If/AvWCz+iLcp+0x3w7zI4w133URYHGwuu7Ydo+eOZ1O 6HVUSo0HSypZIQSNWlVZ2fDphxuLi6C7yuk7INUrNzmgYPIo4c8u+JVDBBvy+5h8gIIBVsJwTric aIN7ECpXqWQadfLmNdY/f1uanut65dUz+/RLcjvxW9+nVingHS+Xu2WcTh6wqTGcbJ99tGnvLjuV TZA1Op2cx61Qq6G4gr5FS2Kb8mZEuIZuzB9NHmoGrH9OmSjIeA3v0/E+hYwQCKdPtEM2t9unVssh 25a1tj9+XZKW43z1tbNilq0z4xZONlAWQjrl/tH0h+Twsy1wBjePYLMgrCLv8zoUCH/mkwuIiaYw x31Mw8nm4qG78kAvBYUp+DJRFBFVFTz4wM7VoqiEaD7Rw0E9CW5I/krm26Fjusg/pue0z5j6HxPY akvvhSYl1iFKXEmhy3NkvsX9Xtiz05aamttvYJqHb8C90PH3afd4UrJeHgYE4mgiDNZgXXXVVYeh Q6zJboaAQo6ACQrY0mS8XKHk5AqZ08H/+MP6zWvkKrVi4LACl9dls4E+qTi5yscpvEiMw0H3I8eP dazAXr/iykd+tYd76T1E56C1O0DDPOnZUEgoNm+wFO3cOeWkgTq9qFCovB6vWoOgpjBN+aOWHjjC yrb6oGx2v2y8XzYPx3uhB4OewyuH3RNqKtEr8wl4Ib68VvQqRfh+cZzb43B7nXKlQhAgDJHN6cK7 kJalI7KtNxft3BW7bJ0ZtzCyuRGTTKYSQWV8CLcPXYtKFA2cmAjaxfuwl0HpFXhsZPAh2qzoBSPG X+M/puFwIyZUhc+r8rhgsYRsIM3Qm0IBqYVSzeXDNguMuAYZAkhiJ3Awnw5aLI7DmELb6k7L0h4Y 06J2GFOF/15Q4l4QAB35fUKUWKCA/g+H3BH+r+1yL6g15D51Ck56L3T8fdrNHpmsux2HABLbtFck d+aD1XHD2I1bUqmxlGInoACXdp/Po9EmLV1cvvDPUlODulef9IKeOVaLS6bEzkAPMYIIiZwSgUPJ QbQaB3Bryj8YAKOk0FLIjS6XQ6MTPR4n2jEYDDBhfP35kqqS8gv+lX/9rSN5mHlENGCDz7xaZXQ4 bFI1EWTr2TutsFcuZJOrZJzcTUyB3iSYAnmZRwn3MS5B9Nmd7hLBa5d59R7RjpwzUGjJ5FqV2ihX wPLFgykoEIfigGzgDnq9HrJ99dni6tKKtsjWFtykvstlhvbALaRsXoUALSZRWfnkyBQpJ346Tq/P LhPsmBMI1q9Q6pUqo0sASD65Sq7wdZxsnLKB5zSiV4P9EyTbktfm9TmgPMVJGTI1yVTEbCl6eJ8H ajiMMccfmG8CPPI4MqYW8avPFlaXVnXAmNIcBs39nOjt0E73gjSm0r0Q/X0al/nWjR+frOvti0A7 +mCdccYZ7Ss7q50hgJjsbmh8oJ0QvIJLrlDt2F43/8+99dV6i6N20NDhID8eDl44oockt9EJUFlx MsGHYND09zoS6IBpkV/qXii3cB4f6OvAZ/g8ke2IPjdK8rwRrEet1dY32OwO9ab15YW9tNl5Cocd Jh4YpXiXxxmowook27ARHq8cSQ7BrQSicSGyCZxayad43V6Tvchk2Wx31LrdgsMFliA6nCanp8bu rrU5LSLWZlmSy6EWOCd83alsHCfJZm2rbK3BTSCKwADc4OHkA/mTtRduoWQjDmqg2DCl8tjyoHW5 bWbnHotji7WxweVpcHoa7XDnFlRyeQLoiyAo3YKrXcY0NG7Yt6DxCSpwJ7enscFU0mgpt9pqnEKd x+3x+RRyToOU5HAEhJbL69O4vZgUmG8u8HWOS7A7XGqtpr7B3j5jCsaJ8ZJ0V9T7SiY0H1D/mXYa 08HDRgheOe5Tjw9uakqfT4ukVtjhG/I+bY/5xp6jDIF2QoD5YLUTsKzaDkLAI2BnGJyToMDAv5oP 3l+xenXj/hJHQqrxqAljoDCAIUatTbXZfEoNPMRNMpmOqK+gHCBeJ2SbEg0NKh6Iu0B/rEsaLJSE xgNEhxe1KgV8ocxqtX775poVKzZ47ELfAZb3P7xKKWtEomiDVgdeoVVopJ63VjaFHHmmRbOl2One q1Qo9Oo+Gk02FhooP7AfziPY7a79NlcJWXh1fRN1/Rw+cMpDZNNoDNs2VbeHbJ0ZN5lcBZ0VKC6U U4LXZbFUCEItr7AbdYPkoM2Cy2o1Q+eXkJih1iS53NhHAHNuR42pUiMKMOzyMt7lcFV5PCZYtOWc 0mQ1iT4rwuGqFYl6baFSne6TgeW7MPGCx1Rt3La5qv3GlE5X4hd2IG+6tE3j4F1Ab4r2uRfGHn2U R7B6vIJWn261ehVqpcdr7sj51kGPKtZM90Mgjj5YbYgL1P1wZz2OFwLwv8KmMYVSplRq9uyybN5Q 63aorQ4zdBUI2A7tE6/QWm3Yma+FvgAb9HxQFcAe51PjRRxikGeQV+EF05LfOeaQF3yeeC7R7VbI RINKYYAixOfTeNw6GBxhjNIly3Ztc//y4za1XqHTIaKpTKlAhQeP6GXzr/paXkgwW/ZZHKVadd/U hNNVmgEuPtHBJdvhXaRM5OTZRuNROemTFFx2Y12901Em45tkU8rbUbbIuDUHjZ7pGNwOyAZ6ree8 CXBycrobHE6zWp6Xk3wypy7wiD2Vmv4JyQNUqiS3yyt6ZAouqSNlc3pUHswxGVRTvMONcA0ZScYh WvWQnMxRmSkjDJpcj9tcW7+iuv4vq6MMs/HAmCYcGFOdx6PFJof4zrdDxpTOeQ5qVPJOtIC8GrcD fQWOb3vgJnIGep/KlDqL1UXvU7CrcPdpe8y3eD2LWD0MgfZDgKXKaT9sWc1hEcDmO140iHw1/Gw+ fbd6647Kiiqxqq4hr6Bw+MiRxFsX7Ai+zmTTIEoiJQ5cyaEnghIDu86wW16UI3I7D1OdHb5NPhKm CBESSAhIH7b5w2DhRdpBuUdwwMUHuge3wCkVmr17Szdu3O5FbACPu0eB+pGnx+gUDvgGG8CRsEnt wBFOtoKCHsNGDEHjsAb5OBVsan4/fXgal5dVb01NHa435JNoSVDLQH3l1SKbogeOx2QPnEPmU4ou hdO5xerclpF+gscF2xPUWy7wRcSSgL2xdF/9xg1bYpYtPz9/5OhRMKoCFY8gqDRqGN/gyOTWIMiY lvcqlcBSBj82QSHXuT1YgeEoDfWQE3jCwVzJqwXieI+4VE63A7Gn1MhMBJWMD7jK+eJ9ZVvWFMcs W7gx5RUuLxkyI7zx6uu2GRIS9YYeTg+nRlJujAbv4UUoRWwuV4NGmSWDtF5f3MeUyoZQC+gm5hvM fJhvMvB7ucwpeBRKnctl9nqKk/X9PV6nW/RqtSnQCpGoDKLgcu63mncI7jqtQqXSDtOoEjXqRJdH 5uBsmJNKhWnPVmHz1vUx41bYK3/I0HEyudzltcIaiUQF8ACDSRXu7ZgzMEgS7S8CSBCDIQlvofAi XhdCinlwm2CUYUlHAYVKAdywUVfwOuB9j+0kmBhKhb5oR/WmLRtjli0vv+/wUYPhao9MVTxGTIad IaLbZUMiT5kbv1w0gugSFEoBv999vFIGMiZT4q4h2xa8cpkWWjVY0XlFIzI6qJXJbie8IeHg5kIv kHu0aFfphs07WpSNPV4ZAu2EQDv6YJ1++untJDSrliFw0Azn8QlYpmS+kr3mlX831NbbTVY4pMtg aEnLSHcLPifyEWKxEHi3mywYThcewXjJBY9MgPFNxjlddWXVOyzmDY0NFViN1eokjyDzuLGWwCUZ j33RhRgMWIB8KAmnGRJ7urSk3GZzkJjvXrfFbCrswWdm6nwwcnhdCqhIDhyeMLJhv2Nqehpsm06S Ypq4qwsCZPPV1K3WafsoFIWCAD8YrCgKrwd6BYTvqlMqDFj/XC7s6ScpehQyvdVucZGthDqP4PZ4 PR43wnCRSBUl+yptNnvMsnEKRUpqOlqHQk7wyhxOHyJcyGQGACdHDCkvGB8hhW4BXBMJg2R2eLgp VG4vHMKUTuAGRDiPQ3C4nW5EHYBsPoFzu73A0+dR7N9bZ7PHLlu4MXU5wSyxP1CG7ZwAwqhPd7tV GCrBg514SjKIIqYEVmLkOFKBFOJr3McUsmFMsZOCzDZEhW2abzKL4FPK3ZzX7vE0CKKRl+saLRXV VSsFB4zOMuQjJ8FCeL1Wkc9zOqvDUmvaZrbstZhLMN3UsiSnXe712qsry80WZ8xj6uWVqelJdrfd 51WIPrW5sd7mKLfbS22OXRbr3tranXX12yy27abGzY31252m0jrThvr6ooaGfRbTnobGTY2WrVZr scVcanebnO5qGWcQhVSHo9HttcG3rLS0wmazxSwbMEhJS8bwITIFYsNiCiO4CaZNZdVCuw2S7FZr 0wQS5wxbaEH/sE9FZncTloULXXZzTd2uBtPmmrrtojfZK8CPDVFlvS6AC3ro4Soq6iwWa4uysccp Q6CdEGA+WO0ELKu2gxAAscChVPG//LDt5x/qqupN1fUCjHqw+w0aMkRn0BGiRKJ6I+QBtkHBSwdU ADoq6Kqw3UwJHx2bfd++kvUab5VXTEpNHZqSNkCAwzsiJRA3HacC6hG3AyHaEc2IhFmXqdwuYevW bVYseNDX+GyWBut5F2XccusEBMBSq3ypRuNBghVGNk4tHzRogCHBgHUF3BD1EHrgE0zWbVlpE6Dz wElwQa2at1ktVdUbXc76RGOPzLwegk/v9+tya5VKs2W/02ZNSMyFYD70DRZPzuPxurdsKrZarTHL xmtkAwYM0CeCz5GEQegvYrESO6sMPsigpiqE7URcVY1agbiTTrvD7q6S82qEekXceTkidIEyKKEg UWFfHFRZiCiBK7yCnfeqfW71ju3FNebq2GULM6Ykd6TMDuUPMiBxXptBn0yUHloOlBdCCT7g48Yq 29BYnWRM5XyISuCJ+5jK1Hz/gQMx3zB8mG/g0BgThGfzKZQKHjHMnHWmap1mcGIyB11NVfUqp3WH 12tMMPRNTemnVKuQORw8Gxd6zHsd9v02a4lXNKWlT1QqCjxuYfu2ffWW2phxE1W6IcN6aw1KaGpN 1rKaus1yzoHwIlBTqlQ6mVwvl+mUcp1aplGIJNSIVw1NEgnwBvc1JPQEevjl4HTaXUIVYomIPk2y YURSYm8nnBC9ru3b95kabTHLJlPJ+w3sZ0w0QgOJfbEksjx2esp5a8OGOvNWjlfojPmZmccjBAuE x02o4OVgzXCHh/G+sXZTfc0aHvxVrsvKOF4h10JriEmHROzQYyEa/s4d+xrNDS3K1kGPKtZM90OA +WB1vzHvWj0GtQJ3woq2b5/LbpN5oHvB4qbRwp5QU9toI5ux1A4PhwQ22KaHlCpusucO5ZWI9ejx QrmCOFoZ4FVy5bCkpFFafSHYFZRHRKvkgbFBg02KMCjhcrsTmgmV3empqql3Ie6oFjYzFbEu8sZd O+xmm4D9gDA8BqIbTjZOpq2sM5vxSxw1u0X8A4WH1WpXqQfB5ubwOUkQBpF3+xwWexl2dSUZE0yW SpeT7G30Qeem0Dh9Ai/PRl4VlxssAtvToGDjUVVNTQN0AG2RzccR2WwuD5CDGgrKAOy2dHjs9V4F wmWKCIUJfL1ibdnuLRt/Ltrz3f69f5XsWVRdvqi2fFF5yfziol/3Fv1aXrqwsa4Iy6GcN1jtHqcg un2y0opqm8PSJtnCjCnxrRJ4mwMkVQkosF8B/zsQstIHoxgMwlBYak3mWi8UbF6Nyye0x5hivtXW mTDfsCfU7hbpfINgPiDpNmKLhcOj0Gs4e2Ojx82lZ4/Lzr9cnZhfbV63ffd3pSXr3FYzNkLCziVT 9TQaxmalHseLOV631uNzVdaaLA57m3BTyMqqEc9W5fKoPW6VXp2v1/QxqPvnZ1yanXZeTtbpGblT DamjtKlDDVlDjOmDNCm91Ul95cbeisShCRlHJWVOTEqfmplzQq/My5O14Hy6OtMOq60eobxqqt12 i7wtsolyVV292Qozqk9hx/ZOKB4RuoJXJyUcZ9SNg5q5obamumIdiSDs41yc3E7uDmLvR27Q2opt IgmekpqRPplXGN1eUoMDhm0vlM2+unqT3eGORrau9URkvemaCDAfrK45rp28VyoVnJDcdqdyzsu7 95cp6m11VrtClKsRQVGuUqalZ+qTkohNTQmHHBJlCNGklAotfp5D44IMbPCU0ag4xI+WkRjvCuQz gb858UrxebGnC/YIDwKmkwP2NxAu3mw219TUuJ34jCII0mh1mzVaTc0DswZlpsr0ankSAgUcOMLJ 5oXOQC6mpKcZE5OgHMKGQTnvsdnN+oRcyAzyRwVDEPm6mqKCrOHlFWtcHmVO3jAiHvQciAEOvyJB ZbFv0WsySQI++It5VWZLQ01thdvpd9mKXTZwU192TmZCUgI8iZDGD74sSrnSg0SLsAVCZWcurqzc ANNrQmKeVp1jTMjzOG3Q0vg3Zvpcgq3OVG5z1CucjUpVSkJyL60+x+nmkV2utqbC6TAT57ZYZQs3 phhIjV7ndsvUcq5k//qsjCyNJgfDSXa9IS4+h9brS8t2FOQNUqsTHR4r6HPcx5STYZ+FIjUtA/PN r1LV+J38ELEdOx+0ZfVb1Qp1bkba7p0bbG57RnaBxtBXq1IKLldtzdr6uq2gyYmazKSEbF9Kvtpr gPG4rmGnTp9vF2xVVY1ujx0eSDHj5gItlikzM7ITkwxAQxRsJktxQ2ORMSHfaMxPTOmtUCUiJyI9 SD4hOTgMxCc6TCSg4gRkmIJ2kkeUieqa0vTMDIujEUomXkzZV9Io+CxE/xrrmMLLC0k10zOydIlG zA0oQqFaIyRelsgJ1pqqlTZLCYYwLX1kQuZAL/IkYOesXOGyVpbt+Ucm1PNcUnr+0aqEPK/b5L9L 8QML1nav3erAjw2b1UlcxVqSrZM/4ph4Ry4CcfTBYrsIj9xpcARL7nI43W53dY25sRGe1HAbl4ty eMEigqMaTur1ZlujyQr/ajiSQ2+BaOtYOog7ENE2QUNTUVW3uap6j6mxrNFWVlaz12y3E3sSIlJi OYH/LAmuBKdo6K5I8mALdidabNBRQOuFhzjJzQIVlkbeaPLtLzM5XS6LzR4IZTjZOFiRUBsolQVG FtRP0uaBA4LROd12/FInkdrdsNDoHG7Xnv0bPJwyPXug08uZbMQtWpQTg5fTUwvlEK/QYNMVQmrZ 7MhLaIGk8BJui2wKNaKi8yaTswEBpDxgi4lejxq6CrWgsTTs2brtu937lis1GXkFJ0HtoU8bUFm3 raRq486SNbv2battcGq0/fLzp+Tln5OeNt4puPdXrofuDWbc2oZaJ4KmqpG1Jnbcwo0povhbnU6o D6GvQvdLy0pdAgxrCDYKdx5otnyVNSUGY4oC+0A9NkFArI34jynmBAaxwWLHfCPh1kQZlDFITYlI slaMc215oi7L7lKpDL0gZ9G2DbvXz63YswnIpGZO6NH/wtTs8RaB3126w+VBGkpllaUUDuQwfdWb oUokccXaghtSGqhUxoYGV0MD3PUMHjE3IXFietrJHrejomLL9u3zqio2Yw7BRAcmJyrrZVA4QvOG SQh1kB2e54m8W1FbVre55GuHaPbJkxTKdJdHW1nb4BJMvILs/4j9XoADOydvsNgaGi3gxFDQksB2 vMYuM3nVurS0SRp1Nu6JkpLldTX7oJjkZGq72Vy0/R+3s9bh0abmjlcZ8+y4YaE8htETzvmi3O7w msx2B9wt1VHdp0fw44+J3m0QCNZgLVy4sNv0nXX0sCGARUzgXGvXVs55pdTs9tVbHFii4NTkUxhg KsLPYaVabzAa1UjXB5UW2AOYEpyK8Ae5p3z/lpJ9W7C3EBG0icsRbxg67FitPg0mRfzsRVZokuYE FiU38aWCpcdisbgcWKGJ07zoRcgG+Hq7PS6Ppa7h5jsKT5iWrZbLhhRmS1iEk80rNxJVmkKuVOuM hmRIhb15CC6QmJiNnYQy8qMbegaZViVrqN+7bedCg65w8KApEEhAsjhoGBBYyctX1+wQFYaUxAK7 3e4V3DarC1YbToQFDJ23xiybR66DpxqQU6u0CFufmGAQfR7B6ywvXmf3OLSG5NzCoTp9BvQdXq9Q XrGtsXQ71GnYtwUbDkyfCYmF+T1GcnID9pl5fDV7S9c2NlhysvrCcGm1IbynkhNsMcsWbkzlSg2M j1qNEYxXIbOUlZTl5A0gZEvlkZFtjxz8uJOSUuSyNCe0f4g+4COkPN5jqqfzTaUx0Pkmg/8aGVl5 6b6NCk6Vk9O/rr4+LTNNpxHNdY2NlTsqG0qhj8zOGZGZMxDJBlzw1QfrF6DA4UvL/tGpswQBpuFG pcwFjYxHcMWMm5vTqDVGAQFPDUqNHpxDTE3OIX5XPhm83Wtqt9bXVyckFPbqOUpr1FrsJDwDdvRh iyxUR2riS26pLNtZXbk7NX9Qfs5QQFdVtVPwyF1Or0IpOhxOXoSWN+Z7QYsgKTK5Gvq/5NQE5DrE TxaEmhMUNpmoh6OVqxFh7X53w/yv0eUWjFLrcvZs+1vmrQb3y+89ITmrP9RsHjeJeg96Bgd5mOrh gwh3AbjZKRBazIs4vS3IdtgeXqzhro4A88Hq6iPc1fsHaxric3pFOLeS7XtwEMHmbSxz+EmNh7Va q4cPuQMsCJoiOX6lw7fJ78nklfGiWqfMzkrpl5aUjQUFUbSR2w/RPBFfm9gHFdB1KTyI8IlK4d+N X/Nwq0H9ai0MfyRWJF5oQqHBGkOacBLVURDY4WSDYFh66RoM/2H4e+Fap9uDhQG9IWs/dnvxHDxv 9NqeWWnjDIk5TiTNcYLV+BO/iDqLxVRRXm5MTCHKNlgEsWlK5HQGPRz3IVNbZAOYCiXyZWPZ81ZU 7d62668NW39ZvWEudBv5hYML+02UGzKs2CYAvyzHvvqSjT5qcUOEJ5/GYXNW1Oy3Ok3wHLLK692y hOys8VjI6+vL5bwqUZdGdm+2AbdwY2q3i1qdgWwcE3wN9YhEoIU/Fgla4YEayQ2fJ7U2cfOWNTV1 JhkPz25sEI3/mCpUSCWuUmngMy7HLjjMNyg3Ycq1NJRW1e9LyxvsECx7ipeuXf3Zps2rPXyCYcD4 wqEnZmb1qS5ds+Gfj8uLVkNcmIvVKjfivDtc1YjigRxK8PRTKHzwM2wLbnp1EnSj/ltB73YZ3ILa junM2y2wkutyeved1rffJIutevOOedW15QgY4sTPBx4/OLBfVVlvrV2/dXl5dWn/gUNyC/qbHHUk GhyXQKiklqT1VGsQsSH2ewH7YAEb7lNQUSeIErabglRhK4db6/LZnLxXkayFyxrCZblM7pKd64t2 /OF2ltgs9uzcEZr0HhZOcHpsavivkdAg2LyJvYYkIItWiyRDetg6o5Gtqz8jWf+6AgLMB6srjOIR 1we5UqbXqNavdr37wX4Xr4D3j9uTLSgRbcAA1gKXJh4uTlAK4EFOXJ2wG4n3YqccVlgR8ZnUiO/p dTXs3LCA95gEuWrAkJOU2nSE+YE/B3yhEN5JhDbLSwJBkX3fMNe44UNLDp8LfEeJneoOm9hYV3vJ FbkTj+UVomZA5kGaFVE27DRXQMUBsgXZQDygnKrYv65Pn1FyZRI2ScHlRi6DKdBXVlqeldULeayd DrdaCc96wWIt3rV9c2F+P21KT69A9jZCg0V2ezWJ1jbZlGpRARWCmndX792+TKOWa5J7aFP7pmbl qmVa8E3sWEREVagD6+r37CxajDjliEtO1ILEOYZ3epV5haOysodYPHDckcFI6vUgiW+DTAH3fB7c lbM72oIbIAVu2NcA3IgOEMMqAwFR6mC0tTfs272utqFEpUvuN3iyQpuqEEEFlPBH47z1xTuXm031 Q4ZPUevyXf5tBYANsf8pbhhaHIi/FLNsvEoH65bBiLigIOFGeMphpwWiYpZtm5eW1TM9dzA8/p22 qrqqTZb6UvCI1LyeWYUTQP3ctkpr+e7q/TvVhpS+Q04Vfc7S0jIwDniVwSXJYbUgFpoHMVKJb3eM 8w0/A5BBGfIAOgWHgAjOxKQ0WNLhDkd212JHHlIUeB3Fu7bYzVX9exeqs4cj+JTS66yt2l66b6s+ MbFHz6MUymwH4oS4HdBd2qxmlQJRTgRsYMVvD58n9jFFTFEFkhiplPRewJgSNSDekbwbGwd4pGvE 1kautmp/2a6/tbxF9HrdigRdWt9efYZiJsIcjt8/MOWjF/ReIDQbwUFaM6ZH3EOPCXykIBBHHyz5 TTdcG5g4msXBOlImwREtJ9zREQhzT3HDps3ws8ISDu8qrVyjJS4ZCoRiwE9/sgpDqyOTIdsuvKaQ sg7/kFhFyA8CKyBCidaU7+HICiZLzewpJy7wRInlzwaNJDwkMS9+HoOR4R1KKVwI72lELyVN+2Bp 8rns3l59fXn58EHn0g0kThU9wsmGxM3YdQ6WQgxIsImArhDZ5FbLrn3Fu3U6rQZ+8/CAhvLF5cVW f7kWLjiwa0JFJ5rMJZu3Lk9Nzc3JHgIh/BlM4LgC2cS4yEb8jJVqsuAhaaPTm5xUkJExKCOzDzZX Ii4XdkrCgER0BNiJ6WxsrNiFQJVKbA5AMCw5j42HcB1Ly+qtUCfA/QjxI0AQNTAykQVUBS0iuCdc rNuEG6mLqOig98CQEtTAGTiNR6jetm0pduz16DmmoHC0QqPxYDGG9xjIH1EtGjNTcpGruKLKnJyc 499lSAafjim8tUE12jimmF5KBLoUlFpDAuo1qIw6max45zpOre9b2L++bO+enas0BnVG3sDkjCEa XVb1/tK0tJ5IRKiQJSQYCxPTenpVSZwyUcFba2urU1KTVGoNiDPilYILkiw22MkQ63xDfzEAcFuX YUuFgmTLVGoQXB7RN5D0EEF3kY4QESVUiQlGj9tdXLyvsabMZS8r3behoqIyM2dwfs/xHkWyAxNM dKMGuQIbbN1kDhOHJ9wgbR1TYhX0jynuBXonYFRhKAdZwnnoIDFnEg0Kc32p02VSqEW7Q0DcVF7m D8pA4qXixiVZr+iY+u8FMqbkBscNG8V9ekQ/AJnwnRmBoDhYdqewdXtRa1/o4JQpU5gPVmce6C4r m8vnxqbBv5aVzpldZ/d5nC78lNULRMFBdnXBFAdHJxky6eAgKwIexPADJ1/lZLWQeeH27mjYtvov zmOBRmvoqKkqXTqcOsheKpgdOUQshVmOxNLy67Bg0HN7EbEUAaecNuJO67I7bXZTNX/J1dppJyTD sDd5aG8J63CywSZCdAlK8o4E1SCAkA1rqFJm2blrc1XFfp3OkJ5R0KvXYGjRsIksvSAJujOsZi6n df26v3LzMgoKhngFnY8nahgqG9HFCFCwtVU2MD6VQQfPfbu9dt/O9V63jUQPMxh65x2TlJIqA+2T yZxun4HwKdvGlX/6fHYoEqAMUiDcE5ZblXHAsElaXRpRwgm2hATFtk2b9ZrE5ASEpnTAl8vtssaM G8YURIHiBmMaVB3Y7OZ3dZIVFSGYuKVP78EaTSoiTPrABhEZi9O4YOWV84KTM6jhwe3etnNbfs8C ZKGRxhS4YUyxm6+NY4q9qAIHN7AUpE6GdkfhFUp3bvK66gtHnZyg1zXUWvbsWmm3V6vUhuzc/jn5 fSA7GDxQwmY9RGwC/3F7LTqNurx0j80Ka2xv8B7oLEGs3fArgmORM3bcEJNLodYrYYZTKBB8FSZd jcHIg7hjXpNte4jaDrrF6TSc2+Goq6mo3rcHMUX1Rl1ewaCEpEKYVLHBQlS4lbhjQOdFwWppAOy4 i+D/R6aeI3bZgsYUqlzcC9CPYjugSo+03G69WiUTPKV7t5bv347Ia1DWaqGbVKQOGjYWSkL8qvDC /Q/+dsi5cOBekO5TWNvx66fF+dZlH46sY4cbgSAfrNgc02fNmvXwww+zXYSHezC7ZfuEKsnkScka /G6FK5NCaQBPIcQFHAvcBfuIiKex/4W1WaVUw/ylleEHvEYDhxmFTs9rdTpwCqXSqFIb1Tr41+JP 8OFASfJB5edquBy77VEV3qGpINZGQorwQxu524jSJznFQMIZqA5xwwonG2F+yDyigv+WFgRLkg1B rYcMO3b46KOMSfpGsDaZW5/IpeXo4I6TkChPToEvvruwZ78+/Y5SqHQiktSgu+AcpGNNssmpf1gb ZIPfGqGSIpeUkjti7Mmjx59R2HOERpW8c/Pf+4vWCfbqJAOfnCSX6Tllqj5/2DASr12t1yWnCnIN 2BWoQ2JSMq/gdAou0aiprihpNNUkpSSLPHJFqrHZvy2yHRxTP24EOoyOWolw+sjo0q//0cbkVB65 trVI7A26oFMZRbUe+VZEfRJCKHm0CarcHhmC1xI4puCTJPxsm3GTwa6qgwpG0KoAh3pP8QaTq3bg iDFJCbrSmhLO6JhwwtTxx5yUmZ5eV7Nn3dp5Vab9otyanOzT6X3qRE5p5PQ6A8Jn1Tda0jNzVWod IhWoYNTDbgO1X6/ThjFV6fQktzmc/lWIhssp1NCO6TAFNTperRFhE9YYoNPikH1GZVQV9ut11PHH T5h61ogJp2TkFSLQrErlS9aLRhmnRnRZ3Fk4iCM+YAP6+HnQpvlG7wVynyq1AfepwmBQQgmtNcA/ S6yv2V9Vtl8m12kSs1Nzhrg9cqe1obJ8h9bgUegw+2RaLe58ci8E3afk7ogCt2754GSdPgwIgG/F 8KKCMh+swzBgrEmFVskLstpG97PPVLpgKnLrHD6HTJ+oJM7a8CSHk7AKNiIsB3jSkmjjCvjNwm7E w20IPAABRwWbc+Oytbxg98hkIyaMVev1CDEK8wK0WHA/x24+kooHkdKJBkug3k5+xx2rAxozNwwW Vmut4/o7jHnZnEoujChIkQYlnGzgBeBqWFQgGywuJIISkU2G1H3IPqNTc7CmcXCPUSMyOnylsYlM BxMlDJbQFUFR5HIjfgTnEtwITAXZ4Kri12ARTyy41+CFQEcxy6aRa3gtANIgPLqK+MVAR0RML2ZT 6f7iPTaLNSe/ML9vX2OaGhGHkPfGXl+3v7QMTsc6tSYzMzM1PUet0bpccH3i9hRvKd6/Ky+/Z0Zm L4RYh5u8Dz5aNkR/jxE3Yk9Va2RN1Ap0jUQMw3LvsiDGqisrP9HucgNKRJn36xyhbMFwo10nNtE5 4TsEga1Ot9OmN6QEjinRTMIrqm1jysmNOi32J4o6nQ7Wraq6/UnJ6UZjKsyTu3dtqi4v7dl3QI9+ vbwywWqqryitKC2qTk7QJyUkpRXka9KMZptXr5TXl9ZVVlf07YudcdhVCg88zuGwYdOo22mHjLHj ht8ToGtqPQzmpob6hESDGvkG5Eo57hT4sBHGhN8kxMRGWBjM5yLCfWIvKkFMBsUcHPZdSljFHTIk QiJbPWxWK9RF+LWBXXtwTfS2Yb7RMaX3AsguxpSoJQmFw65UUaNRmGprtq9dD9cxTqnqP2JYYkLy +uX/OC31Hs6b3bNXXs++CIKG1AzYBQI1Ku4F6PzofRr9mLKnKEOgnRCIow8W02C10xixaiMhgP1a bqcD2iZDIjLbQJ9CsrXAD4M43mDZwKOaKLQQyxCu29hcJEMGFQRjUuk4uCDjKvJSQ+cDe5MGWV5U Wl4NjYKOQwEUU2vxVMcLUbVQLSojm+CIioiEWSRaBYQtddr5xFTBmAQPaTCyg5meIXQ42YgPGPiU gngHYWGDA7tczSm0CI/qUepEr9yrTVTokvnKutqiXXt9XsSWcDktjrKyaqWG59WcjDj+uo0Gsh4F yub3RyJHW2SDJZJYf9A/mYAtd4Jc4NRuucaR1Ctv2ORxg0YNbWxsXLXsn23rdjjqXCkqXU5h/jFT xk87aeqEY4/u3be3Vqt12BFdad/qNYuL9+3Kyc3Pze8BD2Ssnsi1TSIctQE3MqZ+3IhrOyJ4IpC+ hlfqoJlRGhPxjy8xlSSnQSYfhGtVqrwYa60Odjvg7FHpfSip1cI3CqpKEv2fjileFLc2jqmodILE gF0JQuO+ks2GBGNCaqoIdZrOPGjE0J69h+/bU7Z80d9VxXVGfcawMcNPOnlaWnr6/vLa+joz7ING nRdUv7ZmVwEsmERRBD0pgqSSnbBQkLZxTOGNDrUtfmXAHor8QTpQOWToliPOlBqaWq1OhrsA/B3G SrUanUAmJ4QI8Rn12JcKzaNXDj8xg8wDQgv7sAobNoluieDmFw8ItmVMMZSEI0MxdmBM6b3Aqz1J iQpEltuzrYgMjVreZ0j/gt4p6kR+2LghsGKrVYbainpESNFgp4rKJI0puUlJeNlWjCl7wjIEOj8C zAer849RF5QQv5+xrdvlk815p3zewkqtNtkrUznlPHZhwYSB3VjY+E7csNW8382XsBmfEkEcFSQA A34UwPfFzK1dsEWAp7pCHH/8UG2C0uvBr2gkYIY7tgKb/AW8EB0aMRywWwmOPG7k9YBOwYxQQHar WFpcc9TR4hXXJMjd+CXunTamr4RyONlgTAKXg50GFi648UqyEbsQ+Z0C3ZoXNqu6atvyxesR5kCj cCBaamHvHsPHFrrJnkH0g3O7sGcKjvAilQ3vVDY4xrsclphlU2iUGiRTAXpwI9dBf+fTaoijv6gX NUoOhlhsIyvbX7NnT5Hb6jNoM3RJSI9NrIpQsLlcLkS6R14diJGcquvRs29KSqYNyg5kCrTbZbzP 5bA77daYZcOYAjcS4oIYRQEdcV1SKjmLxZ6SiqSThA0jYiskIb52vD9jHWIdcFBwYF8ZdgkofQ7O WmdVJRiCxhTqK7fL2RbcVAm8RpGikmsEoX7z1lUupyc9M6+goEd2zxS1ARyfa6w0799WV1eBeB7u jB7Gwt6Zael6u52zuYTEJDIbS7Y3mGqreg4fAGUbYs+CC5HEMQIc7+yYik67KWbcNDoDAQ1MiPM2 1Fb06ddTblC5EPlA43cMh684cIOvIWKEEAd2AhoOOI9DkQaS54/LihM+wQpdKaYnX1pcptcmoELk UsKvmrbg1nxMlQqR7CaEbA5u/V8b7GarqBAGj+lf2DcLWygwvloVV1Fs2rJqK/atQmc1+KhBqfkJ 0PTRMfUBt1beC13wsci61DkQYHGwOsc4MCliRQCaB+zCw+/ZPn1z4TGFoJfQW2lggINjL9nOT5RD RC+lwTsHBoOXhrx85Iwaca0QLBEJeUG8YHpCvEMfNhGqqGYLii6ND4ouv66LJ4Xh9oR0fAr8yveB AJF9cohdxCl790/WJ6A5KAAObiFEh8LJ5m8OL56EV6RtEVcS5Ip2EiceHVLwwl3Gl5GuOeesiUMH FvQpGHLCcZOHjyqUa91KLTQQKMkZDdAlQEPDw1EnjrLBNkj0OohbhZgTajjouKDS0+g5g4w3YtmT C9okru+I9EmnjR5/3ICMbBXil1tr652NZoQrxyqdnZM1eHD/k06eeswJR6fnZpKUK9CHKHm4JclF pFmGQ0/suJExPRQ3MqZAQ4/Y6TZDogAViwFKR1g4STGnTgszFvmqVcPZDkohUYvCWhlwaz6miAbQ FtmUnA4sEzwmITH76KNPHTtqpF70FG/YumHhvoY9jXK3o7BvwqhTeow/p0fvYZm2aveqBTtWLNsC 9peaCUKBgPNcaW15/uC+RMNqgMLPAx0bDLRQxsDXCQ5PbZENuIF3wIKJaVNZVVJRVYyY7QYjp9CJ hhROnwBVlkeXgHnlUmoErdEr03uUBlFnlMO3CY5zsFkDVbXaqzPw8FmUK31ujw1mUNAgDAdi9LZF Nqic/cN68F7QwC3SCK0kt2kDdgl4IfWAwf16DsjC7FESCbGzlyvokzhwSD9kRoJietvmHY0mF24K DCu9T3GTtuo+jfXZw65jCHQcAswHq+OwZi1JCChguSBaC3VFo+PVl631Vq0CZg9sztbCKoIf7jrs neIUXq1BDvMHFAmgU3B0QmQdRO/Bj3KlqPY6uEV/bJAhqLZSGH/cSEOKAilWyAZDEiMLwdM9nEfl sstsZuiVsOELuZmtiLrOueFMo6ipMItizXV3JBs1MJa45DLH6B4BPlitlI3XuOBJDIcneMf43LIN q/dnpKdkZMq9gmrv3jJezg8ZmUsiiyJrjxztk+zTHSebGqZDEi4AXml+v37yTvQc/iR2WMD9J4mX G9F1QJuF4Nrxxk1EyCQNFCcGHVLqKeEBjVWfrM1ms4DtioT4krgVZEcc/IdIBAsoX2BxBVjIfASz FtmXh4TKXpBI0cO7nJzDCsduhdMGrR8JAi56GmMeU5jToFTTwH6G+BEaDrsTEGfUYnaU7aiorWmA LrXPgLy83ikqI4cQ83Y3Zy627ti+t0//gl59EhEEd/OWvT5BP3REhs0Tf9x8qlQV/K+0ol7PV5Xt 27urSK/DltBcYzrUqEr8KiCbA/0JGjGMZPy0ZGcriZsKtyjknfJH14BjltLmc9h8O3aU1jVYhg0b 5kAiJyfiwYG8xY6bV4e9jXJjQiLiMvjt8hx+3oBybf+rvLK63CM6ew8s7D+4QK7lEL4VbmNKGIDh GumPWbJ96/7t63freINenTBwYiHIn82mxI5RJKyS8W6b2QEdtNdpbnFM2eOUIdBOCMTRB4vFwWqn MWLVRkLAHzwBTs1OuVpVVW/aXaRWahEJEw5YRLVFQkxpiJYImipe5tMbseWJhDzClkOSOQcbyJAt zg6bVzWsfnC0zc7PxAY1eFoRv1/yD6xjCnhZQQKwLRGpln14ISKR4HK4bDbBVMP3H9kwbDT84k3w klcqPdlJeknc1soG9yKwAuQkxCICAWxW06b1RSW7bbt3ldkcpvweaQkpesTaQl8QjQGrORQbHSYb liwEumg6CNECJuQFMkOIF8KIIv4QfIzhZEz4lijnlXGXDXE2SOgwwmDk0F0BKKToNhjlLuwJ4EWy 5Q7EVIY4EoTo+ZN5Ex88CEechEj+YM7thi0V7Id32ckkQAGyOwBBEHwOH291OdwxjymyAyDqmlqD TQLQlUIFRZhfYrKqoG9KVl6GwyXs3FlWVY7djmqjQWE0CAmp6tzCrIQkDazQ5kbv3qLG4SPzwWaw 8yL+uKncmCwIyoltf1lZGbl5uQo10v/VW8s9MFzW7K+v2ldfU9pQX25pqLTVlZur99XW7Kuv2lNb uae2Ynd9RVFdxa7ayt31Rbsrd+0qs9rtg4f1U2lUyH4OIusRHLBJx4wbdpeqNF4Yb5HvCDZfrUGA lXzbxorK8hKkjSrolYu9AbpE/1zDbx5QQMEHjAnFUnDJCQmIEWYxmVxue6OFQ2J3ucqFXJOgiSS/ k4CwIA7s+mhRNvaEZQi0EwJBcbBOPXlaDA0hbhaLgxUDbuySOCCAlGRyOE9xVp9ct6u8+n+PVjq9 6fCEkZMd3hqVDj/c8dTmDclYnGHXIylwSKRRJRRUJNEglFJIT9hQ64LfL3RCKZmEwRA/E2xC87MF rNFOK1HJ2CxOhxn3ixoZcB0ITm6xVu3Dj2nTjfcoC3LUCAcv92gTDfJjhh30wWqtbCAtsLmQAOOi 26AFjeIaqjw11Y0ajSYnz4iV2x8dFZu83DAbUSVNh8lG9EN+7YY/tin5jA8gUn7K5f+MfLsIw9B0 niyIcZdNaUD4LWyG08PZH1YkQzKhd7AKOcxQmNkzMnUQjYT0RkRMuLEh3CTSfyPyPYl3qoRjFth0 fb0bYSmTMmS4BLotq4lzWEgccrhfOd0NNpM35jFV6LVKeYLGoFHonFCt6YyIwUH0McgwDrMvLNYN 1b5ta2vKSmqycgyDhuYkFkC9aRVcGFHD0nk7+/TN7NlP57LDtBl/3JDOBvFPNVD0YC8IXNcRYsNv lbYigx+M3Ahhj9Q4IKHIku7XPsodPLy+XE7BibBlJEAYSRGAsSaBGnTq1PQk0FarGbxU3liPKFMO q9kWM24ydRI863BbAjGi9tOY9LqExjpOp0LeIyEhUQfztBMJ2JE9imRuFuUIHcr7oDuDJRv+eC6r 6LTAc5+zOD0Gg96LjS5O3mGTOazYPOpzOkSrBfSxhfs0Do8hVgVDIBQCzAeLzYsjGwES3EoDhyoN tg72LkwedwzCHsKqoQETwSqLXU6IZYUonlBpaTTQcBCHJxVi//j33yFApQoeOUYur6c6o1CeVqBX IAWfwgs3DnjGY+VGQHj8noaHCi9HYhyYU3TY7YSf0lhvPC61xcSNmOjo0TsJK5RKrsPqr8L1AUdr ZVNgFyEcybUIzaVyu7ji3dakFOXYielDhhkbTBZUDLcwmcKBrXAkerkMOrmOkw3hsRTYdqfy4QN5 wcEczm3E34W8CJ4kRCn9QF7tIZuPLLQkFjmGhviuAxBsq+SJQ5XXixWX5JLGuyQb9chBYAcMOni2 EvEvBMRoQEACuRrh+uVOGXbSEXc3wmwFF2LNxz6m2GdAPP1h3sWeBWg+4R7kN0ljowBc8rE7IiVT NvXUrKmnDMREWjavYvOKetGuTUswrF1WnZSc2HeIHil/dAkg9PEfU8x6n1cOyguW7CUbO0ROK7h4 lyFJTEqTZ+SqM/N0GbnatCxlaqYS78l9xPQByrwR2j7jkodMzhx1Qt64U3uMP63nuCk5A0emJqTK EbcEhkMocjFXCUVrA26Cz0YGEINEQqhgo6KBU4jZPfnUPFVWoQ4Of/hKQtMZACkU0/CAhAIaakts w1AgYaEmkU8vUKXkqHr0g5sawEeechKpARmjMaYeWH2jkO3IfgIy6bsHAswHq3uMcyfrJQKEcrIG uUzjcakEmbfKbpvzqqzOYtQlk0ieKo1Sl6TRGLwKrceYgJhYZIMS7Az+ONpkMYaiCj/O5TzJbkus gn4FDJ712JGEzwjjjqBTyFhns/jcVpXdzEFz5XC4LCbf/iK7Rme+4mYhUa/y2UQV71bL4f+l618A e0bT0WrZVMh7SByHkX4OGddWLi2vq27IyNAILl2jte64E4ckpCGqk0Op0GKjGXHDcnacbGQzvl+D RQ9Jm0WMg0TTR7aZ+fVZxP8JCMP7vx1wwwKqVWETZpJKYxAVWpcxAeFGiQhVddU5ORnESw4h3BFR zK9ZI4mQDsTNIM5ZXm7vnsrCvCyS7JnGxLJr7Caf3WaGqsPcwO3fbYp5TPUpWqhYQLF1iTqiidE6 4SgGEzViusPWDEd7kBJedOp0Gsyi4t2WHav26/RGjUHh9NiPPaEXYjlBQpfHznl0ccfNmARlGiTT 6IwKnYHTG2UaI3FD1CEBOrGgHhhUv9oPh/vAGfonqqokodZcAoba0ogY/mqblfN4LA6zvbbaWVUs xoybLhW46HRGgwobKRKQxZHQZbkKhkIoqMCbyVzCPQsx8JlIS2LSETmBJ9VQUulF6NkcSvjVWSwI eo9E1k5omQF1SZGtRdk62SONidN1EAjywVq0aNHm9ctb272v5/7GIrm3FjRWPj4IuF12pJtFxEuH CwulJ0WnPXaKSy7Uw4EJMRXgqO6ywckGqz6Sl5Ad5jQrCHLkIc4TWXwRWUkuYPMgifEDDx7kdia+ VsRdGn+EXQTeHkiGJrhVAn4vI64o9s47ZDUVCCdUP+10PjlB7rDYsYEdOQm9JASjM7BXrZYNSwh0 DCJSIsNnmhszPienUG+xIQiFadS4nsZESALJVA63He5HWG86UjaSmBFeTX4tEV5IP+h/eeE7jhf2 DcAHH7QVn0nwCyQwaRfczEAZJlT/mII/IT0K3LMRDYszIiwYZPMHPkP+PpJtEOMIokUGGqo+LwYd dEGDCPD+2ATYye/1aECjkb0Yxk2nXayuQIbg2MfUYmpEyjyQS+QWQjYaCObFN6jJ4JpF6AnxVBNl Ggt8v7Se/mM0Z5w3MCFBZbVajj0+V2MgqZngX07yi7cDbg4bfPt9eCE3M/gn7hfs1SBhNTQ+h8rr UAoOlQcvp0ZwqPEZ5kLCYPxJOJs+EKdFBA5Tqu1OGNhVmIdg1C6bz1TPO80JbcHNbceOFMDlxrzH lIZvHInuC0Mpki9iMwdUkgi3C66OTRV0avm3MmAo/VG7EISLkCs4O5L9KoiAaoO5kAw/NJq4T2ur 4IvV8pjG50nEamEItIQA2NWQEeNbKhX67ywOVmy4savahIDXKfBq5BoGLcE2MZXVYXGrfD/NNf24 0CKT65PTcpUI7GTk8MsYlAW2BjhHw5VcLvP4t7xB+wEqABdp5KxVkV1UXqL/IGoYMCkv7yYR1RX2 Rs5qJp4xePpbG4XiPdWmRucpJ/pOOjvRarIiuBDvFbRyuU4pGPXyYf36SP1prWzwjCZxJQlREOE5 pIXWATG+sBbyIryO8JMdImERJtvjOOjSiJ2m42TTekjEbzhZIY0u2UJIVUPYd0YMbFTP4V/riBMP UTwIXHvIJlcYMKYKjQLZXXQJHAm7APsRAt2TABD+ZL+QTk7UHv49jU3aNSIy+KAXWiu3Wg3vbM5h 4ogDlhXDKtrMGNPKxkbrqScqYh7TufMalaqEpNQcqNiIMiYJUolaI69R+fyhVQlFIQn9EFaTxG0j uRHBwyCwl3OShHpeUCu4ROnwMyDuuP3wu0OpS0hMz0SICuzRQzZqdQKn0iOAGSxu/kTJmMPkF4U/ dTgQlJPk4kRZRL4ThzbQWfBabK61mrGRUGY3cR4HZ6oVG2rMe4v2nn2OPmbcvvsdqr5kI/JAaXld ArHXk/sUJl0d2bVK5ht2BBN3SLJvAeLgDb8t8BfcptgkiDEFsCSgvEvtdvGWRpng4MwNgs0klO1r rKtuPP00eYuytekBxC5mCIRHoLkPFghWa5VYTIPFpthhQwABm7GZjvj/aLBHCjF7FMhhe/JpxlGj Bvm8DoupAdFB3W6YM3wIgwn1B/nxDaUGYpVjxzdJMkN2fGOrIdFkwZsImekUCqTIISsKyJVX4bAL sB/hs9sDy6BQVmK32SxjJiafcrbRS6x1aNqrkDv0euw3l+uxbAYcrZUNl0JPhp/mPs4KpzIswFhb VDoP8hpDHuJwr3CLPM4isjvZyNeRskEFiLWWLMTwZ4OeiCR/w4Gwn/5I9PCeIV7whHsRmgpo2gG3 kSMGez1OMqYujCaGFbEVkKcZn90kVCZVt8hJrCwERIMLFEkAA4oqQnmFnWVkYAwGFUbTLxthgUh7 BGft8lIHjElHTUxvy5iOGzcYOjFLI0K8EqdwTDPkaCZJlZAunLAo6FKdSpAt0AXosDScDfTF6BU0 LujffCKc4GED0yGZeHvgdtSEHqLY0NhQjRAQiGIA9yu3A9thkYOH6LGgGEKCJvLOkwj+iL2lkfOI fg9vJrIVEo5P+PXhBitEtFin6JU5obH1eRtNltrq+rKKnVNP7tEW3AC702WyNMAn3et2wMzH2a3Y 2ImbFr8k/NtWoTAleQYJtaf8HikHCbVHgmdiwkT6HpAuJfzfEEICJx1Oh9Xiqq/SmE2Oo483RiPb YXt4sYYZAlEjwHywooaKFYwfAgi1QOxS0KTgFzeiR8HIJ8A0KJgFxZ+/u9dsVHG67KR0o9YgJmg9 BmSLS4APO7aEE2sXLEfkFzLRWRGXDmJFguIKYXaQBc0jJx6yHmwxE81mzmKWmcy+yn2N1ob64SPd J5+jEJxy2Jl4jxMhlVS8oFX4jDqEQVKmJRmlzoWXTfPHb461m4hsiWkGndGbqBdADWUJ8D4BM+CR hRDO9NRGA10CFhqyXw+8S5SBI/o8MsEpc6OTTo7K1mjylu+tt5saR43xTjuDg8N3W2T7/Vc7ZJMZ cpMz9Bq9z6jFlkaVAnEpsVtAA38iEqaI+DcR3Hkv9IZE9wFNggyWUq+bd9sJd5Fwi6tsocdUngxf HBFpuKEChEqGUFHwQBLxwq/K6iDcQssmS/TRMSW4EY0aaIFf40eczsESABlRCIqC3GUj8619xrQV smFYYZsLeS+0KBuy/eC3AO4FPaJVRHsvtE42GqiL7BAlWlIy33AvgF25bN6Y74X4PY1YTQyBQxBo HgcrZg0Wi4PF5tZhQAB5WKBwQhZA8CKyocmLdLRQIEAX4M3KQ0gkZVmpwmYjaQSxbAicixfVIAPE gckfDoG4ZyN0pxvxGmQ+khUHnrzwVlFA6WW382aTzGyRmUyCuV4s3Ykt/fZJx9snTxPddrhr2chi 6HXJRJeCFxBVEr+rsczr4KN74Agrm9eRlYctbIryUhWRTabyIm0z8bMnIXyIyZFsNweBQp5dLCVg fzzxUSGyiW7EFHDKkWLFYpE1NhLZGmu8+3fxXpcwcbJ5wiSX6NF4vVACxCibx+fMzndBS7V/n8Js gYpACSdjaPqQ7oZwPIjjRXIef2ZdEtACyxvc0ZAD2Idd8YJL7nTK7A7eYuHbQ7ZwY4qMifC8Ien0 4IgNAorwogDNy4tuyNaEm8cpc7lkCEHZTriFk81LwjIRBk/8+0jkAcw2gpvXCVIFHRIH1z1EYkMm IYcDcTJlDQ3xH9NoZCO/K6Bl80IhBD0qH/JeaDRFkk0E0xFdcg5BMXytuBfC3KeBuAXLhtC/ToSR EPFDAtlHrTbeZOIiyxb5Pj0Mjy3WZPdAICgO1n/vm9Fa+yBwYnGwusdk6ZS9BBEhdgR/7FAwAHAt RI0Ex3I4TTaX1s67txZZ//hVVV6RmpRhIA4oJPGLDJGKkEIHdpkm8xYUCn4XIuRcc2PBg0nRDYdZ zmGHowlcOriKfaa8fNOZF3r69Fa4zcSLWhCdMCJCRaJViHqoe5DAT6fSaVSZ6VkSTuFls1idSJgo bNllkWSDUs2YQCInkV1U/ggIJM+P36kIxjl0ETo2l1t0OOEZBvMTka2hmshWW27NyW045Rz7wAFa r02J1NfE9zxW2Wx2k8Ojdcg8m3eaD8hmRMwkZFbR+IMnwUkc0fOJbOAJiH5PY035YJrxOV1woAZX gGxiYw0fd9nCjWmCsSkPUhNu/vgIMMsBN4wFvLI7ALew8+3AmJJc4/4wFnRMkeYFLkRIpIkw7k4X CX9K8hJaOxQ3QxjZ/Jv2QtwLEeabDHEgROiuRGSCxr2AkFtR3wth7tMwstExFaCyghXRI8O94L9P 24Rbp3ywMaG6AgJxjIPFnNy7woQ4UvtAXa6hJxA5kg4Zm4jcot1tqjcjDqmq0eldusyxZrla8CZj pzpi7ij1PAlQBNUMYlBi+5s/QzDxzoYuDGouD8KKIkI0NvB7LDXIKNwwYart2ONkCG8p2LAXH2mW G0msdUQUkosGlUyvURq1aoNOg6wjMPgFY9hMNrdbaXM11FtcftlcRLYViKuYpNUjvzIipMpJ0CZY u+BDRB2Q/bLBCgqDkssjs1t5xP6Gv7atDu4p9eOPs0I2vcLgMitkMrjEYwM9yW4Sm2wOh8wpmBsQ p1GmhGx//e1cvVxJZEvQADdwUwU4FrI3ItQTCZWO7XoSbj6nm8R4bD/Zwo+pSq2WIwsNssHQVEjw y6NRNoi7vR83yAbcrGZEnnS1B24R5psSGf30MowpZPNvFGiKAALZ8LuAyibNN2stH/cxjUG2kPdC ONlwL0C9iSSTeiSdPHAvaPCTA79jgo7W3KchcQt5L+A+jQNuR+qzj8ndeRFoR4I1e/bszttvJllX QQD50giz8ofqIQs+NBbY6O7z2j3IkoFgBiqbC7nmLNjrVldv2LlVs21XgssNWxICbeugLpJB26EA H0GIBY1AfJuIFzA2l7lgsOER9pMfOKRsyGhZRrrPYXaJAvGBR7BKt8+sFXn80EcGY42SECxkmyb0 CgkJpahCHPa1hZbN4bUgZrfXq7a5PFbEotbI6usTt29Wb9+tA6+BbHIFoj0R2ZR+2bycGpEmqGxO G8JfYfuZGxvUBw0th2xpqYLTAguiCvQKsnl5m9ortkU2N7bse5QkShTCMmnldXUJO7ZothRpPG7k 9tMqVVoo26ArgmCAjvOpyXkXbJRNslHcBgzeH3fZwo3p1p2I9YoMSGqFsgk37Abwx4Y1+GVrGlM3 7JckkY5v8LCKDpTNCI7vn29NsinkHl4Gm7QGSh/4dOMFEyEiyYuiC5kG2mNMw+NmpPMNKTvpfINs GFbIFvJeiCybRsHhXoArIb0XMPkPbDUlz5rW3qdbd4aWTboXgJv/XiBjinuB3qex3Qtd5VnI+tHp EIhjLkLm5N7pRrc7CESztRDNFT1k+IlLgiJiv5PXo7Db7YjMif1GdidSOGOXlKzBK9ZWc+Vl6vqq RJPJ6LQrEPuA7P2GkQObqjivVu1JSLCmZtrze/gysxRIFofth9i1J/ORqOFewYqsOSqlD1u/oPrS KOU6lRzxFBBRQYUcwjhIupGmI5xsWPGx8DvsLo+ALCCcw6X0y6ZoEH01VSIcsxqqkyymBLsdaZ6J bAIxxqFbgkblhmwpGTbIlpOrTlSTFMXEGCioyN513gVW4RVsBoQFaINsgkdutzmRfAa4QTaHQPZx QbbaShG41dUkWSGbDSmH/LjBWipgm5lPpxGMRktyurWgpwjZElTeuMsWfky52mq+bD/BzWw22K1I j4O4U8gOSFK+UNn0elNalgOy0THtONlELmhMYQ0kuMEpkPixIRiHJznZAdly8j2QLRlZjeM9puFw q/eJkK1ivzpwvoEVIfVUuHshpGw6BGdTyHAv6NWK1t4LrZbNjxvuBek+bfuYdofnJOvjYUGgHQnW woULD0uXWKPdCgEXqIo/PgBlM6BIOAgZgWcsgg16RIfLaXFabU7km9N6BFjPsPaSKIoeUeZwi9Bm eT3Y4i/38W7R55IpXHq93ADSBKpFbI0ion76BLXf4ITwkU7kMES4dbhU65BmR8HrNEoDFDqwUClV SiSLxvZE3UGGFVY2DxZ+F9kF6HaZHSabU3R51G7sWOQhBtzBYHZT2Jxehx20iuyXh7+XXzaPAYZA PYLQk5ja6C6VjewyVHgQLcLnsSt8IGF6FbIuxiobnKjIPgGEuCC4ma0OGLBU8BOCyoUkIYG7FVLV ORHZlcimVGg8PgcnuiGATivT67CXAH7l8ORGzC5s8oqzbOHG1MW5ABqCWEA24AZnJkTnUioQqNwh eOwIIQvQIB4ifSIwgTSm8cUtnGzY5UbmmxzTjshGx5TihjFF0iEIBr6uhMVVlHngoe+Go34H4RZS NqSjPjDfQt8LEXDTa0CwNK27F8LcpxFk83mddEzpvUACqB64T2Mb0271wGSd7UgE2tFEyAhWRw5k t22LhC4g8SUPAODf/O7P9yvHbjKX4LO7RIcHFkO7zW0GaRDsJHMJgvu4oOGisXSIww5iDJAQVjQy FlEX0YiL2DOHhVElYAcYymqQvsPHIx2zTikqtXAykeu0MA7K/SsKlki135nr4FCElw1uQTw4kt3F 2RH6SHDa3BZkG1bLtA4XTJsk+y5hDP7UPfDAknNaEsoaRMofMR0xSHFQCWVK5OfzQN+AqEVwKlPL RI3cG0fZYF0CY4HV1W0hGzMRBYOkBSZkgMQWgGxoEPQBkoBUgYIhLBg+Qzxg2A6yhR5T7F3DzgYA gdDyZOeCf78jdu5plQaEivXTZCzEmCNNw9qRsnFuFVz2iGwkbiZxW6NjqlMnQYVJla5ulwd5LqH9 hMK1fcY0NG68Rw3ZAB2Vzf/jBMHWEDeM7IRtfi+QLAih5ptar1MrZVrkuT5wLyAVYFOUkQN3Q2vv 0wiykS2iJOYZ6RTmI/1lRVSVsd4L3fbhyTre3gi0I8FiPljtPXisfiBAfTuaH9DtEIueD1u0oLfi bTC7wBgH/uJBuAb+1z8XDBo6IiEl3c8CsPAinwmN+t3E1Jr0Yf4MdtB8yH0ulYyzW+pSEhMR2RQ7 pBDsB6RKrYbPOzlIhha/+xWlPvQIJxvWBb+1kaRWgXgIykBWVhk/b/7CjJyC7ILeDujVOPheIesH yf3iJqHdfQgy5HLaV/7z97ijJyqU8LMivAbNQYUGhqZF5FReUCvkKlgt4bwVq2wk0gG6LJMRpLwi BEO2v19//TU5p0/P3n1NZhuvVDldYJ3IsgfqIMDRhgRJQN5lhB/1+lYv/yclLTW/bw/YNZGZBY7P Po/LoFFC5wYHHQ0S4in5mGXDmEIwN3zSeLnF7kCyYRsGlFArtQtxYDGyJB45UnH7EAfVarWuWfXX sVOO98gVLqAJAiMibJlNpyLmVJBoRNaADlEHrzrRY0ToT6+g08lil82LMZW7Yf/joalyQB4s+VBS 2lzITszbXYh8oXA4BZVGB1hhc1698JehU07UGdN5j6BUC43lpds2bR09dRpikQpuJyzOPrcd+1JF 4KYCg0eegJZxA9HHbIHeFD5QaALTkuSdIfsoCb0BKxGgN3Mh2Q1nh4QIgyqqLTaHXAGaBZuqnKja EOLMnxWHsGjEkRAEaNs8CL+BxFIkZyfOkaghchEzjcdGSLAybO1wmmrS0tK0WigJZXjHvUNvB8jQ 4r2AlJWw7/s1i4QJ22GaFon21C5oET+WhNbFzweOx5gjljC6QW4Hp0un05UU7y3avv2kE463WBDc 1WUwJiNEB2RTIMsigqLJSNgUpUJmVLY8puxByhBoJwTiaCJkcbDaaYxYtZEQ8D+XQx4khKPLDcdh NUiTQa/HSqpSyLG90NRY98Rjj592yonZmRkOpHFGiCRR0ClkKpmIF2iMx2EFX0FWQORsk/uciURN Jduycc23X3560rTjNNAiIa452XtIDiocCQfqT4grUTSysIU5fP7AXW4BSwlWQKRIJGHZYVd7ZMYD o0YM79+vH5z2QQWw0mqwrMItTKsS7GaZz1WyZ/vs11455aSpRr0WAYs0aplaiZhAVrUCyi1Bq8Ii 6oWjNASMWTYIg9XVQfgo+sLBb9xms818+OGBQ4cW5OVqwOB4UaNVuxxWj9uuRuBvqDvUMLM6XNYG 0KiXnnkyNyetf59ecs6rJATGqkHkT69bJfPptViUyRods2wCMgiSNHMgKIhoD12jF8s4yC6insEm LIdhVIloUlYknjEaNKtXrfjm0/fPO/dMOLAhQY3LavG6bWkJejAXlRLs1iHjPBoVAnw51CqkryHX tkU2El6f5L6B0dmNmZaQmAhGB39A9NYrwNamwV4LhCDHAEEem7Vx1eI/Bo0YruRlmF1albj495+W LJg/5bjJoseRkZKklIHZEFSVCrjugxwiMkjLuEGfAx8p6FDtiOHhn36IWKbX6xVyOAgqHA476KMB rE2JuGvkP8xaMEtICQ8qg0ZjszTotUrR48KwkRhTcgT7wGaPRiMUUwilq5F7kDzZ6zSq5OlJ2NcB baE30aBdv27NRx+8f/bZZwfeCPgMduVX1jUdYW9TGvhfcEMjirtVoVK5/bQMjvcI94BQZrC+ez2E nfM+uCxavW5Xok4J9lm6d+f+vUVDBvZ9dOb/DRvQz5Cow88NGecmUbh4nwKmfJJtgMeukxbnG3vC MgTaCYGgOFh2p4CgVq19QbYpU6awMA3tNEas2kgIBGqMAsvR5GWIRIVFZe/evV988VWjyTRy5Mgz Tj8dKc3vvufeSy67vLik9NTTz+zTpx+42KZNm+bPn5+YmHjiiSdmZ2dv3LgRCoDBgwfbLOYtmzYM GtB/5kP/V1db/fKLLw0ZOghO5Dio7sqfu7DpALvCeUmM8LJRNkaSEyP2JFl7OLGsrOySc8645LIr S8oq+w0ZNvm4qahqx44dC+bNr7c4zj/3bLCWTz76YNGC+c8+/8LSZf/AbFlUtH3cuHETjx4PqgEl B3iVQaeDGo7o12KVjWRjVMihrsCqjtVaIVPu37//5BNP+ubnH1KS0+b++MO6det79+l3wgkngDxg Ef1x7s/lleVDhg877aQT9+/dd/NNN7z+5hsavebnn36fOnVKQV4eTKfIT2Qw6EDNoGTTaHQxywbt BUk94ye1/kgcREkJV4TktNR+/QasWLO6vrHxqDHjKiqqioqKMKDrl/89aerxJeUVZ5xzXl5eHsjz wgXzd23dmpWfDUKgUitga01INICyIc2Shph5m/SRMYwpAtbiKuhgoLbEfPvoo09QHeYPzGdZ2blr 164bNWYsVEfLV6zKz883Qb1WtnfMcdP27a/5/utv09IMe3ZswabWWU89t33rJugLnXbreeedO3jQ AGjBiP84zNGKlmUT3B6onwAv5hS4PjLOQJ/02y+/2hzW3UVF06+7oa6u7r333tPqDeece25mTjYU vL/9/ufff/89YNBgKAKPGjdu6/YdhgRjj979Kisrt2/bdswxx2Cezv/jz917dvXp0+esU07BEOzd XfTrzz8lGPXnnXdOYoLhrrvuKikt++ijj/r27QuFrvQDA2hAkhbvBZgoEZsXzpL+wfU6/exKoVYt X/b3jz/+2LNPX41W16tPvwaTGbpeNOFwOFetWjl+3Lh1a1ZnZmbu3L71heeev/7668699DIMAX71 QIMLPR4oKSCD3T6ae4E9YRkC7YRAkImwLX5TAdvT20lYVi1DoBkChOmEOugyjJWpaOeus886A1qN 7LTkW2+4bteO7U67bd+eXabaao1cvOPGf+vknlVL/nzkwXvzMpN3bln3+MwHkvTKzz96Z9fW9T1y 0+sr9r3y/JOJekX5/uL+vXskJulhDdHrtVAMYPVC/VhUsKZSvhXIrtB6ONmgd4FNEWYgFNBp1VqN KsmgtzTU792ze8e2TalJxkdm3GepKa8s3f3IA/cghzQk/L97bhPsjfVVpcOH9HdZ6x+89z+bVv2d lax/dMZ/S3fvyE5NSjJo01OTIVRCQkJbZIO/PvzI0C8QNr0W6iFlRdn+7Mz0Qf163//fO3/4+ou+ hbnvvP7it5990CMz6f7bbwZK+ZnJzz328LJF83xuS3ICgnlx/73tZpelDiUTdMh9LM/OStPrNEaj MSkppS2yYUyBNlZiQI0PiQk6o179xWcfzf/t58wU46z775n90vMYso/fm71jw2q3ua549w6XtbFk 945nH3s4Pz3pzZee/e6zD/v2yv3+84/efeOlnJTE7PSURL0mOdGYYNCDW7dFNswBCIYVvaJ8/7ln n+OyWWsrK84/+6yyfXs2rln5/ltv9M7PTtGpn3/yEcTb+Gf+74sXzvc5rHffegMMvFX79iz47ZdJ EydUFu968L936OTeJL367ttvspnqM1NTUpNTjAZdNLL5BUDkV5KwHOZCzE+71XbDDTc89uij4Hz/ LFt6yUUXZKanY0Cvu/YaKBQ///iDpx9/pH+fnu+9/cazT8zKSNa99frzlfuK8lITKvfu/GD2q7mp xpeeemzZwt/7FuR++t7bS/78xVpX+eB9d+OSkn2777v7rkSDcffOXf3790eLBoOB3gWAAoek3KW3 bLh7gWY+AG5Q0mGyJSUak5MS/vjl5//ccn2Pgpw/fp57+03Ts1ISvvzkvRVL5/ctzHaZ615/8elE neKbzz6q2LerfN/uRIMyNyMl2aBKTdClJxnSkhLSko1pSYkpSckpCVHNN/ZYZQh0DAKzYj3Ir44g EXfu3NkxQrNWujMCYf2cEGZKrcZv+qrqirv/c+eYMaP2FRdjoaqsrlny17ITTz7lnnvugvFr6eJF P//4A/wF77z99tNOO634+KkXX3zxhrVrKsv252adWV9TvXbt6tzsnBT/cc75F+TmFewo2q1WaREh MtD0QIeA+ndLwxFONvg6U5MisQwiaY/ow+K0ZMmS3n36P/nMs/DL/vzLLyoryubMmdOjMPeYoyfA d+e7r76ALQYKrROOn7ZixYqBA/o9cP+96akpfy1asnj+wuGDh9Y3NmBtQ4VYyaj2LmiFi1I2sCsi mLxJ+Yf1759ly9D3b774ZtU/K7799tvc3FyX3QathhcxSb3uR2c9BOErSksW/PH7hAnjqqsr/331 NRdddNFlV15hsZqQlwZSWaxWCEP9cmBejVk2OApBP0EJBNlJ6XJBsKz0NHDRn777vrayqmef3htX r12+ZMnLL7/80IwZV11z9S233AJl0pdffbXwz9/n//nbxx9/XFBQkJpgfOaZZ26/+VYYyQj4Oj3R IeIR5tdHxoYb9kMAN71Od9ttt40fO+bRR2fV1dT+9svPuZlZP/zwU58ePRtqa4p27AJoiTpd0bZt Rx8z7qVnnx8+eMDNN97gtJkXzf8jOTXpwRkP5GVlnnLCNJPJ9MkHH65ZsdqoTyCWPnhwk8iuLciG wSJOYH424/czE0tKSjwu19tvvw390wlTjx8zZszEiRN69Cj47PNP5n77zUsvvfLcCy9ATeVwOD75 7GNTQ319bXVmerLd1LBu5fIh/fv+8v3cJfPnAauMjIx1K1b8+tvP8Mcq3b8vMyv99tv+A30Ycm0n paRdcsklQHXPnj3+fMxEy0g/ROODRSKskDTmRA1MMq/zyMZjevzRx66/6eZrr722d+/eO3YWwcWq ZG/xuDFHNdbVbli3Ojsj3dxQX15W2rNHgdnUMGjQoFNPP62+toY0Cocr/yBS50US1BX7MVrCrTs/ P1nfOxIBGE9iaO7VF5/EVUyDFQN07JK2IkCCVIU6sMCAPyH1765du955553/3n3vW3PewdoMU9HW rVvBpWBia2howNJVU1MDhc0xEydaLdgp54Y+Cl4gWNP69e2Lh3VxcQme8tVVtSjcs0dvq9UOSoRN YbgQCwlMkDjQPv2AI7A/4WTD9jG8XE6P00EugVUO1pxNGzYeNeFoGB+L9uyG7gGLPSS3252zZ7/1 yccfHjdlEnQYELX/wAEQacqUqaCPFpMJRq7kxEQ478MwQjY8ypWws7RFNhsJz4XwjU7aO5fbsWXL psEDB+DRMGnSpLSUFCty6no5ozFxw7qNJ594CqBzobDdmZSQWFFRAQeuRrMpJSmJ7BjApj4/5yPm KrIxE6QNosWOmxfu304npIKFDfZBLJ9gBhnZObVVtZ9//uXFF1+qUWpAJo45+ui8nJz62rqRo8aY zVbYXnv36Ll6xcoRw4dnZmTgcofNnpyc7N/TwAM3oOdf2hVtkQ1jDcTMZvOaNWtOOeWU+vr66toa uD6lpKSBFoMEqBXqqvIKqHyMOm1VeVl2TsHaNWvOPvM0bK+APFlZOXDoLineh0F84YWXQAqBdn5h IbqLOQDmEI1sVkQ0J1sTwOLgROcEPju3b8/PzcvMyoJUIFuw9s6YMePTTz8977zzinbt0huNQ4cO BaHBnTJ06PC6ugYkSezdsw+0X5CkX5++G9atz0hL//LzL1575VXUBip23rkXXHLxZQ/cP+PSSy9F bYC3vr4Rprra2loqIcUBB/EGCzgi3Auw/aGPGAWIjUqqq6vra2snTzqupra+odEMQo8eWczmAf37 w6ULP5Nyc3IwNVE3WN3atWvBHdEcFGAYSiiGya8L/1ZejCm2O0SDW1ufQex6hkB0COApCrbUqtfB ipHFEL9F8D5z5kz4ZNHf6OxgCLQrAhKzCfrgf9Q7oAdKSU5c8MefouCd/drrI4cOwxYkrBw//fAj OM3rr752/HFTf/np58LcPKvZ4nG577zjP7Dv/LVkaY+CQpvF2ljf0KtHbywwa1euGjl0iBuhHuAk gvDr2L3mJ1USx5I+B3Y2nGzgGXQZkgpgGTjppJM+/PBDVAs7/agRI4v37M3OzNq0YTN0LL/++MMT jz62Y9v2Af36l+4rOeWkk++/9z54NC9euKh3z15lpfuddqxNRDC8/JXHLhukInu4QP2QNhn0ze08 cepxP3z7ze033zT9mqvRqN1sGTFk6Ifvvnfi1OOfeeJJuPvs3rGzV3besoWLzznnnLfffefTjz/p k1sAjZrZajFZzFj1sdaig1jFJTIaG25gaegnhZr2ETTrr2X/FGTlnHnqadBgYWQH9h9QXrJv1T9/ Dx84sLKqBkssBvSFZ5598pHHTj3xJMiPGo4ZPwF4YrixRxK4ATHwGI+rbbiRfYyEukGGX3/5CQq2 Z595auiQQQjRPnjgoD9++x00+qbp119wzrlVZeWD+w/YtmvPkH6DvvvmW0wY6JHGjx23s2hXfmYm eDaERPmZDz2Ma1EhJio+RDmmJCauH218gOv4g/c/MP2qa9AEfArTU9PqqqoRIOSnH79/9ZWX/vzz d4gHOVH/MUdPfGv2nLnffjdy+AhctWfnrh55+UsWLPzX5Vdce82/IY+50XTbLbeuWb3yP3fcVltd g0vOO+fcc846e82q1WNHjZaGldJf+hVjFM29AB934I8fBZi5IPeQfOvmLXlZ2WgF7V5+6WV33HY7 rPy4FyAD5vno4SPeeO113L8Txo3HzYj3L774AgwMNBHsFswb04zySxyU1bV4n7brA4pV3p0RCCJF YEv0TJQHpVL0kqYrGcGKEjtWrF0RQIwAOL1azI1Y8PCYvvvOu0YMHn7O6Wc31tYU5uYcM37ctVdd OX7MaIQVEAXP5IlHn3DclKsuvwzny/YVl+7dk5ORfumFF1xwztmZqWm7tm3fuHp1kk730jPPYH3C cx8vumEwtgPxBfAKPLAaQZcANQNkfuP1V8898wxsrbr+6n+PGTbipmtvGDmw/4/ffLN0/vyjx47D lWNGjBzQp/f0q67Ccvj1l1/54zyRQxKpLbJBLvTQ30URyYjBZIYMHrhn5451q5YXFuRcfdW/jp86 Zfp1ZNH95KOPC/Lyp0+/9ugxY56Z9QgoLEquXLnc47APKCh8883XSU3Sy4fIqKiYOF/HBhquoms2 7S8AhMUQde0pKVNw/KcffoRVPyc78/bbbsHQf/npR9OmHEsa8vomHjVu6R9/7tq4qXd+/r8uvQz0 9JKLLoZzEvmjfzjjghudFXjNeXN23959Lrzwwr59e19wwXlo5MQTp40fd9S1/746KzP91Rdf2LJh 7ZgRQ1H22UceHdin57X/vrJfXv5Vl1+BSXHLNVcPHT7kmmuvHj5y2CeffETRA80l3WgNbk2FfeLF 51/w8rPPkzH1ekE0QaRAmMBBFy6Yh58fk44ed/7ZZ2Cea5WK9atXYXdTVkralZdcdtZpp0LUmurK v5YuzsvNvurKKzDol1x8oamx/pyzzxw3dsytN94wbvSoTevW4r6A399zzz0HMEkch4BJGOUogwGT q5AnyL9tFXKCNl1ywYUnHDf12quuTk1M+vj9D1w2e+/CgnPOOB2iZqWkbFqz5oWnnrrmX1fgzj16 7FHY5NHYUEei2oEs+l8UN/9N1jrcopSZFWMIRIlAOIKF89G8AgkWS5UTnZaQlYorAmHjYPk9nGDX gCFj5cqVcCIZOHAgTGw5OTmwGWGphtsvTB6wbuAHLjQZCxYsQGH8XIBHEc7AngK6M2zYMFRSWFgI p5ZVq1ahLexDxBoQuP88qDeBVsJwskkOW/59Z17Y0fBrGwbBfv364ZLS0lIskD179sQ7tFkwNo0f Px5myn379iHkD1zFoVf43//+h14MHzkCl+BaElULqXL8fv2488OJF41s5KcSDWF6IKzX9u3bAR0i D8GrEpgADeCGRmGjxNdt27aBGgIW6A9QEvu8YN/cvXs3llvYboAboAaw6EsE0NBiNLIFBiqjQtID Nl9ICBghDCxKcFeHsRJjCtDQOix0ABMGVuyMW7ZsGWbC5MmTJb5C93/SXoc7opGNpBPg+eLiYgwf 2gU+Tzz+OHye7rj7rvLy8qVLl8JdDOZpDB+KVVVVASiAs3jxYsjZo0cPzLqsrCxgDiMCfJvGjh2L kcWfKGgRxAuUDSMi4YwPgB2AoFoAQl2jUHljYyMmOe4CfIXWB55/EOmxxx57//33ITYsboAL0x6S YC8t/oQa1q1bh8+4imoQcadALTRx4kRsh4S6aPXq1cAW+yXRBNl8KkcOJTKlqW1OgjTyvRCIPB3T P3//A60/9dRTsGkee+yxmFG4AeFNr1SrYBnE+KJC9AKA40aeMGEC+t6q50qQNb9V17LCDIEoEQiK g4UbELxq8PBx2F0YTQ1fz/2NWhVxSTDBevPNN6OpgpVhCLQHAnTVxLMeSxdWC6wN+EyXVboNDY0S M4r/oJsB8Vesi3ingUOp8xCKUS9jGkcRC0yLXCGa7lBKRJxw/fXTPWhoHU1QL3U0BKnwAYLhM9Yq lEFf5s6dC8sm3nEehjyi34ADCkJK+vuFz00OztEIEaaMxITQa9QGMehKj/oBAk5CTroK4iukorYY KjYOfMWKS7VNWMaob3tkVtpaYSUJKfMA+cNKj1aolzoEoLvYgBsNCUF92HEVPU8DpkcmVa0VCU1g /yao/FX/uhJO3+AxYFqvv/46oh7Q6YQKqfc3sAJudKwpLaDTEsDiA/pCx5GCTKdxZG7anJ2gRTp1 MXa0WjqUaA6NYlBo6yiWlJQEjvXf//73l19+QUPAByfp2OES1EC3BFK/LryTfa86HQqgTurDDhpE Db50iOm9hoPuZ2wRxiB2K/UULn34aXT++ecjAAQ4IjCB8MRhkScwQjzUT5GkkEbTVovCsAIMgfgi IDgbKZ2iVGmxeeimdy+LD8FqS8iH+HaS1daFEYj8S5TSDvrox2f69Jce4vQkntRYcWmEBXqGlqEL M2VClJBJ9URY8AJ/qYeTDfVgtaDcjuyr8zeB+gOpAF3+qcy0OSoVlB81VdXDhw8nl2BLnl9+LDmU pdGlOpx40ciGa7GyUkkkrkbrlBZ72hbVT5ANfX5RpZVS+kpP0uWWkgzKMELOxmhkC3khbZeqT2jl +Erlp+hJSFJFWqv4Cm2xVbJBA4QnKTjBGWecgUAcTVH7D2g9qUhUSAkxaQJQUkJnoFRM6kKLuIFn 0HkL/iTxGzoEdJKgBno70I11dEbBqRyTCmrIwEZpW1RCCiCVR2JRVGZJawXw6fTDQZvAVaB3kswt aoykaSPNEDhUQSc6atQoOnC05sBiEqkKYmnRPO6i16hFUxsrwxAIiUBQHKxlluHr3rmEESw2W454 BKR1NHD5l57d0vImrROB5aV1OrA8XW/ihUvIZT7cSWmpa6I4JPci8v0gZTURR+qgtEC2RUgqQ2BV IasN11YgsEFixEU8qc5AGhf4mRaQtIOB3YmBWkWPJDUxIuc4SSTu/yz1l34IbJ2eoUQ2sCQtIwlP i7UWN+lyKnxQr5vfF4HFmg9f8/siEN6gawMnapTQNR+U5jdsyIFrjmqULbJiDIEOQyCIYK10jFo5 +8L4ECyWi7DDRpE1xBBgCDAEGAIMAYZAp0IgyAdrg+eopa+dF5JgDRkxHu5ZQcIH+mCxOFidamSZ MAwBhgBDgCHAEGAIdBYEkMEppChgVzhP38MdLBdhZxlFJgdDgCHAEGAIMAQYAocXgSAT4R75+F+e OztIgxXEqwL1WEyDdXiHj7XOEGAIMAQYAgwBhsARgADyXQVJ2VxrFU6PxeJgHQEDzERkCDAEGAIM AYYAQ6ADEAjywSpTTfju6bNic3KX33TDtRlZeTVVZVu3FyH+2+mnn94BHWBNMAQYAgwBhgBDgCHA EOhsCPgEZyApcqgKLpzWn56JRlRKpU49eRouYT5Y0SDGyjAEGAIMAYYAQ4Ah0PURCPLBqtEf88Xj p8emwWK7CLv+dGE9ZAgwBBgCDAGGAEMgBgQQuDeGq+glzAcrZujYhQwBhgBDgCHAEGAIdCkEgnyw avRHf/H4mdgbGH0nw+YiZIFGoweRlWQIMAQYAgwBhgBDoCsh0IxgHZNu+6u1HQyd7JnlImwtjqw8 Q4AhwBBgCDAEGAJdA4EgH6xaw7GfP3Zaq7p2yx33UYLFfLBahRsrzBBgCDAEGAIMAYZAd0FAJlei q2BLUb4CjYnMB6u7zBLWT4YAQ4AhwBBgCDAEIiMQZCI0pZz00UPHxbaLMJhgQa/F0GcIMAQYAgwB hgBDgCHQPRGgdIomvbGlnfbejGPjQ7CYD1b3nE+s1wwBhgBDgCHAEGAIBPlgNSSc8Mkjx8eHYDEN FpteDAGGAEOAIcAQYAh0WwQCNVjV+uO+fPyk2AgWc3LvtlOIdZwhwBBgCDAEGAIMgUgIiDwfM0DB PlhTpkyJuS52IUOAIcAQiBmBhx9+GMp5XN6qmH4xN8cuZAgwBBgCzRE4/+yTAzVY+7WT5j5xamwa rGCCxeBmCDAEGAIdjwANGyMRLPiWdrwMrEWGAEOAISA9i6iT+27lhF+fOSs+BGvmzJkMX4YAQ4Ah 0MEIpCVpgggW23DTwUPAmmMIMASAQJCT+27V0b8+fWZsBIv5YLEZxRBgCDAEGAIMAYYAQyAEAgoV CTQa28EIVmy4sasYAgwBhgBDgCHAEOjiCCg16ph7yAhWzNCxCxkCDAGGAEOAIcAQ6MoIiKIYc/cY wYoZOnYhQ4AhwBBgCDAEGAJdGQGP0xVz9xjBihk6diFDgCHAEGAIMAQYAl0ZAYfDEXP32otgTZ40 KmaZ2IUMAYYAQ4AhwBBgCDAEDj8Cvk5mIpw8acjuy6YzjnX4ZwaTgCHAEGAIMAQYAgyBWBHQaDSx Xsq1lwbLuX1nzDKxCxkCDAGGAEOAIcAQYAgcdgRUys4UpgHqq4onXuEVCo6LPYPPYceUCcAQYAh0 QgQWLFhw44038jx/5plnfv755yUlJSaTCV8Pu6gQDGLg/bBLErMAABOQUnhxPPfccz/++CPgra6u PuwIQxgqVeAhoQ3Jw/0pZjQO14Xoy1tvvUW7g7EA+IdLEtZu2xGIswYL7IrjZI0//alMS+E4X9vl YzUwBBgCDAGKwIMPPnj88cdPnjwZG6d/+OGHUaNG3XLLLUlJSSHxAVdoP9yaVw7B0Bx9PxIP9Kiw sPDTTz+94YYbAC+OK664orKyEvBmZmYe9h7ddddd//zzjyQGFXLq1Kn0TEFBAb4+++yz+IxigX86 7JK3SgCwK4zC9OnTaWiAN998Ewk6W1UDKxx3BBrNjTHXGU+C5WdXfOl/Z3oqq3Mf+S/HeWIWi13I EGAIMAQCEQADeOyxx3Dm4osvpuf79ev30UcfnXHGGc2Bwu/+Sy65pJ0ADFn5/Pnz0Rx9P+IOMFfA BSRBW4cPH07lz8jIuO666z777LNO0p3x48evX7+eCgPmEVK1gwIo1kkEjkEM6K6kq2bMmIHPF1xw QQz1sEviiICsDSypDZce2oPJk8htufea2xu++SXxtKm60cM4TgU/d+bqHseRZlUxBLotAlCuNO97 YmLiAw880Pz8K6+80n5Ahawc2pQjVHECOyBlrq+++mpz0EBnoS5qPzBbVTPI35w5c+glQaMA/j1t 2jSJHbaq2s5TmA4EPR599NEjdEZ1HjzjIolGfbh9sCZPGuapKNt15r8si5cbJo4pfPlR+4bNuy+6 ase0s+o++YZxrLgMM6uEIdCdEQAPoN0P/JWPrwMHDgyCBfqYwIUqvqC1a+XxFTWa2uBiBW82lASL gqEt5CWdh2BBPCjVqM4SQyz5YG3YsAFnjnR2Fc14sTIdj4BOfVh3EUJ3Zf5zYdH51zm27Ew6fVrB 8w8X33Df7otvVGak9Z/3fepl5y1esrbjQWEtMgQYAl0JAWoxwQEPFTj/wluFfoUSKzCXRSABop7C EgggE9BzoIDkQRzkkx7oKI2r8FeQD5yUuF24yoMupC0GnVy+fDmtLaRzGNqSBAvy144wiDt37qRX UZf/wJJRtr5kyRJ6FTzbwjXUo0eP5n+Smqbu8PgaofXmSNLCEeSP0Gvqa4UDHm8wFGImfP3115Lh WLowEAEUC9wbEXdRqQ8+3ptvCIjwp+ZiBAnffBa1iGQ0wyFNRchGWwRDpfgE/XqJMArd508y/vDF wZo8aaR9zbqSOx7yVNZk/feGnIduLzr/euvSlVBiFbzyFKgVY1fdZyKynjIE2g8B+FxLlcMFB77A WB7AmYJahGFFOkOdtaUlBP7aFouFWl7gCo1KsEJL5AnFAokaFiHpr1THgyNc5SGzlQXVNmHCBNoW vJ2CyBB13qee2jgkK9iOHTsi5EHDWtu/f396FeykqBb1BPZd+oy+hGt95cqVtBg8rsKNXRCFRTF0 RGoarSckJOBrYKdaRBKVRJY/wkSC753kGQZDIThB4LiERAC+ek8++SSkgpYrMlDNB71FUdHxu+++ u6qqClM0yCc9wp+COhg4V+lUpBhGg2Rrh0OaDBAb12J6jBgxArcDmsOvl3bdHdJ+z4f2q9nr9cZc edt9sHwld8/yOV0pl5yVcf3l+x94yl1aXvj6/xJOmLJ4CVHbsoMhwBBgCLQdASyrcGEOdGnH8gDO FGVkBEo+JDoluUJL5ClIwp9//rmxsRFO32gxcP9abB354IMPUNu+ffvo5YsXL5bqkZz3zzrrLHpS +vDCCy+Eaw5qG7pj8cILL8Q77U6g1Szwwgitx2BLRdMUtJNOOilQYBAXSa0Y2HpIJFslf3MQJM8w yD927NgWB+Xaa68FTUSx888/nwJFrYrRDHqLokrbKUBS77///sA6I/ypRZmjF6+1wwHSJk1F0FMM UOCZwMkZg5Bd7xJlG7zc206wOHdJmUyryXvsHiBrnveXIjXZOHn84iWbux7QrEcMAYbAYUQA6geo IiQLEZUEPCOa39zUQQcEK8rAQliJsSTTjXVt35gGNybUJjk5UW0BPQLXYHpGUiYFFguC/ffff6dn KG+QjoULFzYfoAitxzCaUtNSdySBpT8FVhsSyVbJH1JIicqAXrQ4phJKkrlz3rx5zatti6jgcFAF UYViUM0R/tQq/COLF+VwUG2fVBh3RNCZCLOuVdJ2mcJqtTrmvsSBYCnSUuRJCZIEQl0DXN39IRvY wRBgCDAE4okAVkqERMLvb8klC7WDo7Sox8IqgqtgxwEbgOtPi74mIR2PYu5JbP7XISNQUBkkVZzk aUTPh9RIRWg9QhPhOhtoVA0qE/JPIZFslfwhJSkqKpK876PfNCoxLag/m1cbm6jUXokewfQmeTXR yiP8KYa5FFm85hVGGKkYWu+2l7id7pj73naCxSeddrynotqxrQhCaAb2wfv+B570VFROnjQiZrHY hQwBhgBDIBABMAnJ4wq/v0GYAi13L774Yotw4Sqn0wlnXhhBqGUtwhGkGWqx8pgLSB5XUu+kD3fc cUeLLIc66wQerZJEIlgtKoGkaltLsEIiKVUSm/ww8EHgN954g3KscLbRVkGBwrGJCnulNIjgbYEa tQh/aq1sLYrHCFYMkEZziSjGniiirQRr8ZL1OQ/drRs5eP99T2DfTMZN/4LEcHivef8LFsk9msFj ZRgCDIEoESguLg4sCcudxLGi+bFOg5Vjuxy2+ncYf2qxa/C4oizn119/pYXpByg/pEjlESoJ6fbU YqNSAcmBKXrPmxiUXvGVH9QKBj66bVAyFNIdhdF3PIaSEaDGjMJUpMhgKsKQLdUf4U8xyND8kvgO R1xE6mqV8PKYe9QmgoUthDS+aOGr/xNq6mrf+yLp1OOTLzgNZ3xmKzZA4MPkSaNhLvS/k6CjLCZW zEPFLmQIdHMEmnuHSN5RLcZqwrJHvZ2a7+c/vKjCZIn1GPJDPGrvw1ZHuPNHllNyRIOlTJIfDCDI RNVi12A9pMZWYBuBQAS6hEdY0SVFTovttkV+7NSDVxNtAlpJOMnRz9EbClE4yJMvgsBRioqpiHGk YAbZHyP8qUWgWiwQl+FosZVuXUCOxMoxHjESLD9VGlFeZfn8+10bttYpszL7fPuO6ffFnuo67YC+ Mo068zZyA4B+/Tx/zw33/n3KZT9c85/5n363DdSLcawYx4pdxhDo3giABAT5s0vWtCuvvLI5NlBp gBnQ/YPSbkHKFVr02WoR6cDKWywcuQCW8FmzZknGMug8WvTZQtRyWudXX31FQYA8yMwYQ2YVsAG6 SD/xBKwQIQ4gFkhtpc2DEiGTPkh/ahGQ2ORHHzGawCpQAQnhKa2BobBFRaYUr0sSoO2ighNTBCAV dRiXSE+EP7XYbpQF4jIcUbbVPYs5nK6YOx4LwQJDuuWBxVPO++GBJ1Y6nZ7hg5KhrFJmpff+/A3I YZ63FGEalNmIqiKu21yzt8Q0aXzm2acU7i21vDBny/X/xf5klgQ65vFiFzIEujUCUPPAP51SCrxT 7QKsaYEb/SQ9CrIUI8DPaacRnbqk4sIZLHupqanSKtgqrU/IyqMckuZRu3AhWo8hVkKg5gmxKtAj dPbSSy8NF42dwhVSTtACujcTLAoOaoHKKtARiAd7HLydpGvRBPXdlnYC0g84GaH1oKZjkB+CQXEF rOBIF1QbDb6AAzRamh6BZaSQadR4B0LWIoWVLo9GVFBbihs1U2IgpMsj/CnKaRO5WFyGI8L0iIuQ R3QlVqs9ZvlbTbDArs648ucV62o8Hl9yomrPPstDT6958Kk1Dz299uFn1j3+0f7n8i+95hPnqZf/ MfHMn15/b+stV4+49Jw+118+4LX/kUgtazfV+ZVYo2OWmF3IEGAIdE8EYDiDmqd3795gA6AUIBbA obk1DRogSoNAoZB9mXIvqD0ox8KfsJ0QqyZVNmCtlexNgWHfAz8Hoh2y8pAXNj9JBaaH9FdqTgI9 CgrgDk4QWc0G+dE7qrxB1/A50KoYZetUGLo3E3FN4aAGmkUlAVmBYxY0PfhT0HxDQ4AdahtaEh+C RiEaJCPLH9QiKgQzpgoqONIF1g+g8CepPEJlAucgcydCgH755Ze4CjQIRDAwMGlcRH377bfr6uqA GOYS6g8ciAh/at7H5tMjGvFiGI5WTY/u+bSRei20QSPEb16/fPDwcVs2rPh67m+LFi2aOXNmi2jC 9Wre0n02u3vtxjqZjDjYB8b9GNAnwWhQ9sgzDu6fwnEgcJL90nnUKT+h8Kpfz8ZJFuG9RZxZAYZA 90EgLUlDH0ToMn0WhQzp1PUAgdIoQuQh0EFQuq7X647pkUQjIgTE7xhJWCtHEAJ4CgWSoh2yo/98 /kzp6dRiR+jj69UXn8QlrdZg+Wvnpx2bl5ykXra6+uij0h++a9jMg6/hF5/Vs0+hcfXGuo3b6gNF +fGPUnxVKWmLse97bLF7rABDgCHAEDhSEIjsng99zJHSESYnQ6BLIuDjOjZVDlU+rd9UZzJ7Hnhi 3eRzf//XbcuuuPWvy2/Ba+lRp/x8+a1/vfruttsfXL5+S60fcU9Vjem197fj0zmnImG7bPGSNV1y JFinGAIMAYZAqxCgIcVhtQyKCAWDHc63uDuyVW2xwgwBhkBrEfDxsdsIY9NgQULZbdcOmXX38BMn ZRfk6olKiudhLkTq+olHpV9yTs8XHjlq4denjhicxnHC+i11l9+yuK7BdeGZPe6+YaTfbsgOhgBD gCHAEOBonIXy8vJALOArvX//fviQwXWMYcQQYAgcRgTaEGc0Vq6D+KLocM8Co0ar+OiVYz58eeKH Lx+NFz6/+MhRd04fdMxRWdQO+PhL6268b1lGmmbOM8fccyPYlZx5Xx3GucKaZggwBDoVAk8++SQi OS1btizQyR2b3Ww2G96lNH+dSuYjQpho3MOPiI4wIY9cBGJRJiG61eRJQ+Ha/uDT6374vfTkS+fD RPiv2/7GC4bCSef8DivhedctWLis7M8lpUhE/c3bJ3zy2tSRQ9L9xkFiXmQHQ4AhwBBgCAABmlIa O/UCTYT4ipOdJ9z8kThSbckgdCT2l8ncTgjALhfz0TqC5Q/dPmzBstLvf9v707ySe24aPGJwMmx/ 23aZ6Gt7kdnh9A4dkDRtYtZxE7NPmJR7/60jcjJ1fm0WfbGDIcAQYAgwBBgCDAGGwBGAQLiILdGI 3gqChQhY9z/xz3Hn//TOZztsDmH8qPRxI9PeenbCql9PfebB0c8+NOrZB0e9+dQ4fH33hYk3XjXw QPOI4UBev8zf98zr61gY92hGhZVhCDAEGAIMAYYAQ+CwIwArXMxHqy4V5y0pt9qEqhrn+s11C5dV rFqPqKHkmHJ05uQJWZOPzho9LDWIV337y945H2+7dcayJ15ZX1JmiVlQdiFDgCHAEGAIMAQYAgyB jkQAm/dibq5VBIs/enS6Ua9EdIaFf1c9/fqWm+5fcdQpv+B19tWLLr156aU3Lb3kxqUX37j0wusX T7voD4QVPeqUH594ZdNbn+zcuLX+vNN6vvL4JOaDFfNQsQsZAgwBhgBDgCHAEOhIBHhfYCT11rXc CoIFbvTSY8cu+PrUZx866txTCxCxHXsDaWtllfZdeyy79lqKii27iy17S6wgYaBiudlaJCL8331j Fn971h3XjWTsqnWDw0ozBBgCDIF4IBC4RTEe9cW5DuRJRA5BKmTIZIJSe8h1g9j3UTaPXEOosO2J vaNsri3FYhC1I8e0I9tqC4ztca2sDb7jrSBYEB3RGRYv2TR5QuH9t4766JXjfv7oxFW/nnno66xV vza9QMXmvnvScw8ffcLkQv+FLLhoe4w+q5MhwBBgCLSAQGfOFYOgX8gViA7QfX/4gK80a3LgQakV 0g5GyCwUdMnxxx+PM/Q96Pj888871aSJIGo4OTtyTDuyrU41LhDGoFHHLFLrCBZtBoqoxUs2gmkt XrK52QsnA18otmHxknUxy8cuZAgwBBgCDIEujMArr7yCLM4nnXQS7SM+4OvDDz8sdRmZm2lG5+ip Fb0WCbCl90AAwd4uueSSTgVpOFE7lZDdU5iUhMSYOx4LwYq5MXYhQ4AhwBBgCDAEJAR27tz52GOP 4WtBAbKokYN+AJfCn+iZr776Cu8xZA2aOnUqVC94DwIclK6zDUE4UTubnN1QHp1aFXOvGcGKGTp2 IUOAIcAQYAi0CQGacjHkIf0JYVdxvPHGG21q6cDFDz74IKV07GAIRIOAog25chjBigZhVoYhwBA4 /AjATgRnW7zDxNM8+h8UHlg7cf7MM88M8rAJctGFQzHK4CRMUTA/Bf5V8okOPC95ScfWhARcNI7M tI/SATHoVdKBAqhQOkm/0iOCeIGDJ3mUNwcKxfBXoEeRxAG3pyAn8UBhMBAo0CLmEYpJaqrm0yvC n6KZiyH9sgPZFS0QsqrYRiGoxeXLl9NpJo0RdSOjjvyB7UZwIccEkNz/Q46XVI/UHGZ1NPi0OFsw 7lRavIcci+ZiR+hINCJ1zjJKmTxmwRjBihk6diFDgCHQcQhg1b/77rurqqrgAR3ooEMlwGLQv39/ WJdgEnrggQfgYYOlVBIu0EUX6xAciukihBULl+zbtw95aWhhpAWkFiWcpxqU9evX0zMxNyGJEY0j 87XXXjtjxgxJGIiB1qmDDg6YyaDLwQechKjPPvss/dqieIHjtGTJkuuuuw6YDB8+PAgoMICkpCSL xfLoo4+iwD///ANTnQQXrSQQTGRLRC7FkFVFWWzx4sXh5hCGuy3TK6RfNvoVOCvC+W7HNgpB02zC hAl0mqEj+ICJJ7mRTZ8+PfA3QDgxMByFhYUUc4wFKsF4hdxEickpNYdZ3SLHijyZ0SLEw7inpaWh aWQcDzkWzcXukr7wKqUi5nnICFbM0LELGQIMgY5DQPJKRv7j+++/P7Bh/Mqn3OXCCy/E+/jx4/EO M1DI/fk///xzY2Mj2AlIFRYtlASJASejFQb+Unc4HJ999hlYCM63sQlaeTSOzMg/eOutt9LyWCnp hyFDhtAPoDvS9jqIesEFF9DzrRJPYpN0714gUJSVSsszRTJQEvpVOkBEaMLE888/n1YFThBUBl8j FGuRCjSvrQPOxDYKgYJhmoFtgLvTk9BCBZ2JwCzpJVAlgpDhw1lnnYV3jAX1QuvTp09zBHbv3h3Y 3C+//BIBpRZnCwaR3m50huCOe/XVVzsA9s7ZhMXcGLNgjGDFDB27kCHAEOhoBLBUQxNANVVS27// /jv9HJQdeeHChc3lAxWg+ZXBsSQCIX3AL3UsbPQqsJlTTjmFfm57E6gkSkdmrGdz5syh7VK+smLF CokV7dmzB2cgZFFRkeQY3irxJEz69etHP0tAUTYJ0tM8SkLIkZYA79GjBy0wb9685iWjLBayicN1 MoZRCBSVqsqkAQKkQWda3BH566+/0gohCf0ALzRMe0lnGdgcVJKBzUWuvMXZsnLlSlq5NEOkjhyu 4TiM7bod9phbZwQrZujYhQwBhkDHIQBlEhrDQgVTSKDjET1J5ZBcQOjXkL7MEhUIEp3Wj2PNGhKx D7/yR40aJTGDuDQRPVhjx46lhb/++mu8QyEh6digCMEZmPmuvPJKqcJWiddcDAkokAAoXWCHxaIO DVmQq1AE+SWgItv1oiwWPVDtWrK1oxBfYT799NP4Vhj9bOmcasV2QqPFahUKZiJsESRWgCHAEDiS Ebj44oslvQ5WcZjPJC2LtB7QSJWBR/MeB2m5pAKgU/QzDQqAX/lSZCZ8jUsT0cMPTRJVWYH6gOrB FUbSsVEyBMo1cODA5ktmNAhEFgO6CqfTCUcf2LCoybVdD7iRhas/wp/aVSSp8taOQnylkqacpFKN V/0tTmZGsAKhTklJiRl5psGKGTp2IUOAIdChCMAOAq8pyjywBsDDOqh5cJGYBYI1hNZMIzCZzeaQ ZpG2NNEq2S699FJa/oknnjjttNPwQeKXUCyBcoVkirGJFxhiCt7NcKyePHky0A5HRlvVkciFJSNU 82IR/hRHASJXFdsoxFe84uLi+FYo1RbbbGknYTpttWqdNmbZGMGKGTp2IUOAIdDRCECRA15F99lJ 1ihJ1QG3pMDFI8iS2KKs1JEFBzYkSj5P9Ey8mmhRBqmApFED4aPKKslihT1o1KlcOmITT1KNgE7R qug+NXyAvjB6UUNKEvlySWDq9RXywCjEJkMcr2rVKMSxXVQl8ekgt7a2s6IWZ4tUIO7Ks/hC1DG1 ud3umBtiBCtm6NiFDAGGQMchAP8qurRArUL9hSUONG3aNCoHrHt0SYD18JZbbpE22UUp5bhx42hJ aHSC1CdxaSKaOFiSqBCAKpbAJqkmKZCLBPGS2MSTVCOSL7+0b5E610efJlnafSlJEhLz5sWgJqR0 WeIN1PKLk63SYLUKWyobGkI36cbJcJe3ahSinGZRFpP4NH5I0JgOmNuQVnJRj7Ke5l1rcbZMnDiR Vt6i8kzSfdJRa+1Pmii7cHiLeb3emAVgBCtm6NiFDAGGQIciAM5EF376NJfMN2AbdJGGsgdhnEDF MjMz8dfWbn2CZzddMJpnZYlLE9HEwQoE9NRTT8VXaaHFZ6rVkHQbUuFWiSet1tSDHoG+JFOg1HEE CACMqampEosNuXbiJGW01FyLUQipkYpcDGEp0IrEG77//nt8lWJVSH3E7lHpc/O4l9FjK6GHSYJu UvNrhMujH4VobobodUJAUtp4AbUihgNzG01IetbmzYWsvHnXWpwt0BNLNxRaobFnpeYCo7NScHAA TJwP0vtGA0jnL6NSsVQ5nX+UmIQMAYZA2xB4++236+rqoGVBsAasPYFmLOi0EGWKrgpgCfgc+NfA JSFc8G4qGrbmYZEIyRLa3kQ0cbACEZo0aRK+Sno1fKZkK5BySeUji0dhQehUHFu2bKGrNQ2yGthZ hJSkHAsshP6JKgsBLDBvPnqIk/Tll1+iNhBfjEhgGM/AwpGLgddSfiaFVsdXKTaBdB67R6U6YT0M Gsfm2IYbdBAUyrEw0LiK7h6IMDTRj0LzFpufoSSJHtJfw4mKOQzB6IhA2iCEo6w8ZNdanC0ogObK ysrQCgJGQBKIgTOg4wgjJ3WBSkVnF/4UqHSMfKM1n0ud9oxMEXskd37z+uWDh4/bsmHF13N/W7Ro 0cyZMzttP5lgDAGGQFdFIC1JQx9E6CB9FoWMYtVVu39k9UtaOyNH7o6y2JHVdyZtl0cAT6FAUpQ1 /LIZVw+Vnk4tdp8+vl598UlcwkyELcLFCjAEGAIMAYYAQ4Ah0B0RcLpcMXebEayYoWMXMgQYAgwB hgBDgCHQlREQBCHm7jGCFTN07EKGAEOAIcAQYAgwBBgCoRFgBIvNDIYAQ4AhwBCIFoEodwxEWSza Vlk5hsARiAAjWEfgoDGRGQIMAYbAYUKgxWREVK4oix2mTrBmGQLRIuDlDuaVj/aaA+UYwWotYqw8 Q4AhwBBgCDAEGALdAoHIW2UjQ8AIVreYIqyTDAGGAEOAIcAQYAi0FgG5kgUabS1mrDxDgCHAEGAI MAQYAgyBiAhYrdaYEWIarJihYxcyBBgCDAGGAEOAIdCVEbA5WBysrjy+rG8MAYYAQ4AhwBBgCBxh CDAN1hE2YExchgBDgCHAEGAIMAQ6BgFf7JsIOUawOmaMWCsMAYYAQ4AhwBBgCBxhCLg87pglZgQr ZujYhQwBhgBDgCHAEGAIdGUEXB5vzN1jBCtm6NiFDAGGAEOAIcAQYAh0ZQS8fOw0KfYruzKirG8M AYYAQ4AhwBBgCHR7BLzMB6vbzwEGAEOAIcAQYAgwBBgCcUZArlTEXCPTYMUMHbuQIcAQYAgwBBgC DIGujIDV7oi5e4xgxQwdu5AhwBBgCDAEGAIMga6MgNPNAo125fFlfWMIMAQYAgwBhgBD4DAgoNbq Y26VabBiho5dyBBgCDAEGAIMAYZAV0aA+WB15dFlfWMIMAQYAgwBhgBD4LAg4Is9DBaL5H5YRow1 yhBgCDAEGAIMAYZAp0dALpfHLCMzEcYMHbuQIcAQYAgwBBgCDIGujIBXEGLuHiNYMUPHLmQIMAQY Al0EgTVr1syZMwfv7dqfjmmlXbvAKu9uCIhC7DZCRrC622xh/WUIMAQYAsEIjB49GqfWcIRmtR86 HdNK+8nPau6GCAiCL+ZeM4IVM3TsQoYAQ4Ah0OUQmM5dP+d6vNq3Yx3TSvv2gdXeLRDweDwx95MR rJihYxcyBBgCDIGugwCxD0KNhbfp0DSNJjRrTfxpVse00nVGhfXkcCPACNbhHgHWPkOAIcAQ6AII wAXLz7HIf8RmyF0PlhV3x6yOaaULDAfrQidAwOthTu6dYBiYCAwBhgBD4IhGgDIr8p90TOfmrJkD bVYcaVbHtHJEDwQTvhMhELuPO4uD1YmGkYnCEGAIMAQOGwKUQh3CrqgsUGWNbqJZbReuY1ppu5ys BoZAEwI+MWYomA9WzNCxCxkCDAGGQJdFIJhp+WnWmOvHxHebYce00mUHiXWs/RHgRT7mRhjBihk6 diFDgCHAEOhCCPidruhBeQ/e6Us6D//3Odwc0KzYLYYd00oXGhbWlcOLgIxpsA7vALDWGQIMAYbA EY/AAR4VpFUazY2WmFbTn0YT5/cxY2LSZnVMK0f8YLAOdBYEZF5mIuwsY8HkYAgwBBgCRzYCYFSB HWgiVSBGJA6p30PdH9AB76BZMXe1Y1qJWTx2IUOgCQEWyZ1NBYYAQ4AhwBCICwIHNVh+UkV5FTkO sKvRa0bj2+zZs0Ux9h/3HdNKXABhlXRnBEQ3i+Tencef9Z0hwBBgCLQdgQN6qybdErXlUX0VNFZr yJ/pnxCGVFwtTp8+PZY2O6aVWCRj1zAEQiDgdbNI7mxiMAQYAgwBhkBbEPAzqiavdvqZcitiDyRu WJRdrZ69Grqr2NvpmFZil49dyRA4BAEfCzTKZgRDgCHAEGAIxA2BA4qrQ2KOTp++evVqmrA5PkfH tBIfWVkt3RQB0csiuXfToWfdZggwBBgCcUOgyS9qjpQsB2SqzTbBZtJ1TCtxA4VV1L0REF2umAFg cbBiho5dyBBgCDAEug4C1B7IBbAryoTaahM8FKGOaaXrjArryeFGQCmPnSbFfuXh7jVrnyHAEGAI MATijADxtVpDFFf4MHv67DjbBA8I2zGtxBkaVl23RECmVMTcb0awYoaOXcgQYAgwBLoUAlAvEWqF 97bsE2wJko5ppSUp2N8ZAlEhIPhiz/bMCFZUELNCDAGGAEOg6yPgj3qF6FZt2ifYIkwd00qLYrAC DIEoEPC63VGUCl2EEayYoWMXMgQYAgyBroMAeBWiW8Em2K5d6phW2rULrPLuhYBWHXN/GcGKGTp2 IUOAIcAQYAgwBBgCXRmB3MKCmLvHCFbM0LELGQIMAYYAQ4AhwBDoygjk9SyMuXuMYMUMHbuQIcAQ YAgwBBgCDIGujADPdhF25eFlfWMIMAQYAgwBhgBD4HAgoNCoYm6WabBiho5dyBBgCDAEGAIMAYZA V0aAl8tj7h4jWDFDxy5kCDAEGAIMAYYAQ6ArI8CrWKDRrjy+rG8MAYYAQ4AhwBBgCBwGBDRabcyt Mg1WzNCxCxkCDAGGAEOAIcAQ6MoI/H97dwJnVXkefnz2GWaAAdkkKiJBjWIDKUbRGHFrE5NoNClG k1objWgSm5qKVRMNoMZq1dRG/BcxsbU2mrok7mKCgksq+pcEXIMhCLiwMwwjzD7TZ/La15ez3/ee ee+de37zmQ+fy7nv+n3PveeZ55x7bk9Zr/X0CLCs6aiIAAIIIIAAAqUssGnrFuvpEWBZ01ERAQQQ QAABBEpZYOPGjdbTI8CypqMiAggggAACCJSyQFcX30VYyuvL3BBAAAEEEECgAAJVVdwHqwDsdIkA AggggAACJS1Qzn2wSnp9mRwCCCCAAAIIuBfo7u627pRrsKzpqIgAAggggAACpSxQXm4fJtnXLGVR 5oYAAggggAACmReorq61NiDAsqajIgIIIIAAAgiUskB3b7n19AiwrOmoiAACCCCAAAKlLNDZ2Wk9 PQIsazoqIoAAAggggEApC3T39lhPjwDLmo6KCCCAAAIIIFDKApWV3KahlNeXuSGAAAIIIIBAAQR6 e7lNQwHY6RIBBBBAAAEESlmgs7PdenqcIrSmoyICCCCAAAIIlLJAb3mv9fQIsKzpqIgAAu4EykN+ Tj755Ntuu23FihXmUMyy7oaYS0/r1q3zT0g18NRTT/mfuvHGG3Xz5rNSOGG3qtnk5RM2SzEESlug urraeoIEWNZ0VEQAAXcCvb29K1eu1P3Jf+Vn48aNF1544cMPPzxlypQrrrjCfNbdyKx6Gjdu3Pbt 288//3xV+/LLL5fpqMfHHXecPL777rt1w1LyoosuMmcnz95www1STAon7P/444+Xkupfz8/Pf/7z hI1QDIGsCZRXkMHK2pozXwSyJ3DAAQd4Jj169GiJML73ve/J9quvvnpgpWcaGxsvu+wyNSNPBk62 nH766Tr8am5u9ky8oaHhhBNOyGkXePLJJ6W8+tf82bRp0xlnnJFTUxRGIDsC3d3cBys7q81MEUBg d4Fp06apDTfddNPAspE8liSiZMyShFu6dKln8J/73OfUlieeeMLzlJwVnTx5ck6TVYkxf8br5ptv zqkdCiOQKYHebu6DlakFZ7IIIBAkIGHKgIPRiahHH33UM/gXX3xRbZk5c6b51JtvvnnSSSelMlM5 ryqZv1SaohEEEPAIcA0WuwQCCJSIgD6nFjEfiU4kqpDLveXqeP+1R3IyTjaqAvLzzW9+03/aUa43 l6fkXzm5Jg88fUW37x+YJKJUtCSBjnkqUBqX/NaCBQtUFfMc4m9/+9vDDjvMbCp22IFX/ZvRlSpQ IvsB00AgRYFyMlgpatIUAggMKAF9cm3GjBnRA5do6cADD5TARU6WyZVbcu2ReWm8BDHDhg1raWm5 6qqrpMDzzz8/f/58uSrcTIxJ+DVr1iy5uP7MM8+cPXu2p7vo9sPG9tWvflU9tWzZMl3mhRdekChK B1KLFi3ST911113jx4/X/00ybH0FvTkGmab+r/rQwIBadgaLgAuBcm7T4IKZPhBAoMgEJHMjMc0R Rxwh45IP1kV/pE7ujKA+Q3faaafJv+rKLfPSeBVs6XBKX9oluS49b309uFxfry9RV8/Gth+G9+d/ /ufqqXvvvVeXkfODktzS+S2J6lR+S3qRjXKBvC6ZZNhFtm4MB4EBI1BRYZ/Z5RThgFlmBooAAlpA ndKShNPvfvc7Ca3Wrl0rH7uL9tGXipvRiVRZvHixqqguG5cAS07PRTf1jW98Q9JmKhOmS8a2H9am fDpSndyUhJnqWv6dNGmSKq/zW2+88Yb8V/JVn//8582mkg+b/QcBBHIV4DYNuYpRHgEEBraAOqUl P3KDKAmtJNaJnY9OTekLklQVfZW3nDKTQE1O/0l2Si6lkk/q+dtUt6eSpiRtZt78U21U5cPajxih /sCgnBmUYpKWO/LII1V5nd9SV8E/9thjBx10kNlUkmHH4lAAAQQCBaor7fNQ9jVZDAQQQGAACegA SAdn+oGehQRqbW1tcm37008/rc4ken4kmNMXnstpOzl7qNNdSdoP4zr66KPVUyqqe+2113TIKPkt fRW8hH0jR470ZOCkfOywB9AyMVQEikqgupJThEW1IAwGAQSKWEAuYwobnVzDvu+++06fPv3cc8/1 xzGqljwl17+roEeCqjvvvNPTWkT7Yf1KX3Izd9WgjMHzIUF9llCu0PecH1QNJhl2ES8IQ0OgeAVG jxppPTgyWNZ0VEQAgYEkoG7pKT+rVq3S45ZgSJ/pk+BGXcMeezmXXP8ucZUKiSSPpVqLbT8aS0dO Mgad0FJVzIv3PecHVUyWcNgDabUYKwLFIbBH4zDrgRBgWdNREQEEBpKAvqWnfFhPfSJPzu5dcMEF +uYO+tOC6qZTgV+8I9dXqQSV5JzUbQ70PT9j24/G0h9alLjNkzyTa8LUVfD+p2RjkmHHrpNQyKzV BxL9XwudZEtsFxRAYCAKVPbah0n2NQeiFGNGAIGBKyBXIOnBm48Tzkg+badyTvJhPfn4oYRKY8aM kbNv+monfZ9S+epoeXbEiBE6eDKvZ5eYTEVg6uorff4utv3YcaqruwJPAqqr4I899lh/IwmHHdi7 vp5MKGTWqmv/10In2RI7OwogMBAF2ne1Wg+bAMuajooIIOBOQCIeuQJJ9yePI+48bj5lPpack3zb sQqzJC6Rx+bZwLlz56pgRcIO+TihBEwqRyXl5b4Muuuf/OQnW7dulbyRbJQPFZotRLcfiyXXfkkZ ncoyyx9++OHy30MOOcTfSJJhh4HI9WQqxpJQUjRU1/6vhU6yJXZ2FEBgIAp0tnZYD7v81eVLJ00+ /LUVL9z3wMIlS5bMmTPHui0qIoAAAnYCI4fVqTciqa7ei/TtqewapBYCCCBgISDvQmZQtKX+qJ9f 8wX97hTboHr7mnfTtVKFDFYsFwUQQAABBBBAIIsCzdv6rte0+yHAsnOjFgIIIIAAAgiUuEBXV5f1 DAmwrOmoiAACCCCAAAKlLFBVW2U9PQIsazoqIoAAAggggEApCwzf48MvVs91ngRYuYpRHgEEEEAA AQSyIVDOV+VkY6GZJQIIIIAAAgg4E+jp6bHuiwyWNR0VEUAAAQQQQKCUBYbwVTmlvLzMDQEEEEAA AQQKIdDQ0GDdLRksazoqIoAAAggggEApC/SWV1pPjwDLmo6KCCCAAAIIIFDKAjU1NdbTI8CypqMi AggggAACCJSyQE9Zr/X0CLCs6aiIAAIIIIAAAqUswKcIS3l1mRsCCCCAAAIIFESgs5sMVkHg6RQB BBBAAAEESleAU4Slu7bMDAEEEEAAAQQKJFBVzUXuBaKnWwQQQAABBBBAwC/ARe7sFQgggAACCCCA QIBA045maxcCLGs6KiKAAAIIIIBAKQs0NTVZT48Ay5qOiggggAACCCBQygK72lqtp0eAZU1HRQQQ QAABBBAoZYHu7m7r6RFgWdNREQEEEEAAAQRKWaCrq8t6egRY1nRURAABBBBAAIFSFiCDVcqry9wQ QAABBBBAoCACFRX2eSj7mgWZKp0igAACCCCAAAJuBKqrq607IsCypqMiAggggAACCJSyAAFWKa8u c0MAAQQQQACBgghwirAg7HSKAAIIIIAAAqUs0Nvbaz09ThFa01ERAQQcCZTv/qN61dscDSIz3Qhs QeYa229ggdhaCeeSUzs5FY4dQLqtxXZnXSDdcabbmvWkYisSYMUSUQABBAawgLzHqbc5/UDendVj +Rko79QDZQHyOaJYzzF2EcMKpDXa5O3EDjVXhORd59pyiuXTnXW6raU4zXSbIoOVrietIYCAa4EB cXxyjZJjfwU/4IUtoh5Y8axy8YwkYpFTX9DYWefUY2xrOe6//Vi8srLSunUCLGs6KiKAAAIIIIBA KQvwKcJSXl3mhgACHgH1t7K6Bst8yrwqy3+Flqe8+V9/U7rZwHY8vUdfDeYfbWD5sEYCp+mffhKT sEl56mrV2DbD3JKgeQYTuJMHDsC/jhGLpZ4K2zE823XhwL0rbGPgWuhBRu+TZo/+oSbc7XPdGcyO YqccTRGxqyTfn4v8/Y1PERb5AjE8BBBIU8BzPZZuWm+XLeZjdZDwXLBlnqSIOD/ludJLH/ITXg2W sLwenueSMv+wPQ3q/wbOMbBZ/0bT03/I9LiZ1bWzubr+9gPHrA/tERfS+RfaA6JHa07fv6uF7Rh6 e+ysA3nDphDbnYdL/1fPzj+FnAyjXyCqcb3PR7QcNuvoXcisFbs/p/m+0D9t8VU5/eNKqwggUBIC 6nigjyvmUTl6fp6DkD9u04fYsFyOJ86LLe858vmHHdhg4Mac+tIOZo+B8VPsHpEQTR+GPcf7hCsS Ucvi+p7YWXt2IU9IZLFr+cHNifunELbE1vu2ZwCBL5CwWfuX2L9q/gxWWGuxe1RhC/T09FgPgGuw rOmoiAACRSeg/2I2383zGaU6TkQfs3WWK+GhPdfy+YzfZV9m2BGLls+kAuuqpQ+Lnj07hpm2SX0k KjA1u0jYXfQU+mOc1m3Gvi4KsuNZTyeiYmdnp3WzBFjWdFREAIESF4g4ZVPiMw+fng4CwkKoAqKp g3ryDGURLuKAmEIBl9j9knV1dVl3SoBlTUdFBBAoRgH/IdbcEhgW6ARD2HwSHrMTFjMzPf4edSOx w85JP3Bsno1Jxq8PrrHputjWPBOU6YRViW0qoq6pZK5+Tjm2sKFGr1Gu3SWZpmfRYwcQvUvrHs0H YacL/cj+AUdsSb7cOe3YxVyYAKuYV4exIYBAn4A6H6EfmI/DgDyHf513Mbd7NgZGDOapEHMYut/o jI4/dAssH9aIf9hmgx4H/1M59aWigdg2zVWIiId0bOFB84AkXAJzYPow718Oc7H8O4Zn6T2Bl2c3 M3tRJcOGGrhrqfLmTpI80AmM/ALXPXBguqPAdixmYarqSXleF6pT3WPC/Vm1ptexON/sqqqqrAdG gGVNR0UEEHAkoM6bBP4kH4Gq7imvNwZGV7pHdbw0f8x2zGKB7XsaDywf1ohn2BFDUr142knYl+ng n6neoo6g5o8/xopG848nyRJ45uXfE/wTD9wxzIXwPI6YtRknaWT/DuDvMay7sJ0n4Y4UYegfauCo cp2Fp7x/ibW/ZwCePd8spp/yl0n+onZQkk8ROkCmCwQQGBgCgX+4D4yhM0oEsidQ5C/Yjo4O6zUh g2VNR0UEECgugegzRMU11oE5Gkk2KGT9U+Tph4HJ7HTU/rPYTrvf/Vyq466TdMeNRpMoUQYBBEpc wHM2rcRnW6Dp+U+lFWggdJuOQMR5yXQ6GOCt1NbWWs+ADJY1HRURQAABBBBAoJQFuNFoKa8uc0MA AQQQQACBggjkcxKcDFZBloxOEUAAAQQQQKCUBQiwSnl1mRsCCCCAAAIIWAtwkbs1HRURQGAAC+ib MIXd8VLNLfrZFOdv3VE+91pMUjdJmRQdwpqy87Go5fmoo94N9HYHk02ri4Q7eVrd0Y5HgACLXQIB BDInYB53I66TsDg821Hm01E+13kkqZukjN2sc6plMQw7VfPmpZ4bWg6sj5oSXeW0g/VHYS5y7w9V 2kQAgaIWSHi0TljMeqr6ENjfHVmP0K6iJ7KxC3TsujaTjvmoqrt26TEU8IaW1npFe7tz6xlZ7xKF qsiNRgslT78IIIBACgL5HPuT1E1SxpyGp3yu1VMQSakJHWMN3CmkJJFmM5nC7GznTu5p7jy0hQAC xSgQcQGNJ1ERdslR7CU4/oqq5YgG/c8GNhLWQiB02DijBXKdnWdInrNRYf9VA/b3ZbYWzaUTVI5V PdRhK+vfHggbJuBP7QR2FL2LRrz8AisGDiZiv/VTeIYdsdvrp8L2fHMwCUdbjG83/zem3q5u6+Hx KUJrOioigIA7AXmn1recDjwY6AN/WDFVIOISHN2FP7ZQtfzHTnUGx2wzsJHoIZmI6oDkLx+23awb fUtuz8DUfwPXT09Ki6k5mqGVf4RmgcCWC6WqFs4zJB0leFbWs13FEIHL4dmRdDE/aZKdxLP3+ve0 iAL+EfpnER2xxSJ4djO9P6ip6dF6Zhr4WoiAcvdukktP+ZykJsDKRZqyCCBQBAKet7zoQEGPNyKk 0MdRHVKoY4Yn1Egy9bDYIvBPefOoqRtPOB2zbpKp+dHMWmGPPTJmyBWoERu3OVP1rLsnZPEHkREr rtYuMOjxL1bs8dgkMqP2sO3+4EYZesKawEAndo8N7DR6t/cssTlf/ZSJ6RlDrE/smB0XqK8bZN0j AZY1HRURQGDACISlBNxMQKdAoo8uYdFJbPzkZhaBwZYZx+jgKXrAaY02oWr+3fk7UvGNuVP5t+Tf b/IW1GCKKnbxD8YMv4pttBHUw4YNS74QnpIEWNZ0VEQAgQEj4DkJMiDGnTDeyumwGtimdfQZkcwo EmE9QjPlk8rY/HtUofYxNcecdoNUBDyNJNlddSBY8NEmF6jjy56TY1ESAQQGukDCgCBhMaURdrIm oVXCvvzF1GEpcHtg12ZJf/QQ1r5qKrCu2qjHYKYZVBV1LIweoXlwDZtRQkmzmLWqnq95IPc76/YT JlTM8v7wInaCHmqTN9c9MK1AOdfdPmx/8O8AYUsQtjvF6hWqQGdnp3XXZLCs6aiIAALuBPQpGH8E oI5b5tFL/6Gst/uf9Q9dd6GPymbL5mP/wdUMUCI6DfzD3RMn6cHrwp65h/31H3jQjajrUTJn7Tle xo4wECQwBFGdeogCAykzUPNX8e8PnsjMv156i+4uesVVg2EdmXo6mIgI1Myn/P16+grcAyOm7FnK wLkHIpsTDOzU/zLxT1w14vf3aEQvmbu3khx76mxrz7HGh8UJsKzpqIgAAk4F1HkQM+zQWwK364NW xLOeCZgl1WFDb/H0risGFggbamBUZx6convxHMb8FQPXI7BN/9QScoW15gcJtDWXzCNslk9FNWw1 I9xirQKVIiZilg+cYPI9MKyXwL3UP/eI12rEbh+2iHp7WFjvaTPMzek7iFVn3Mndio1KCCCAAAII ZEAgIrVmN3udJPME/al3ZDe8FGtVV1ZZt0YGy5qOiggggAACA1Ig4oTvgJxP3KA9YVBc8UTP+2Op klStqalJxBFUiADLmo6KCCCAAAIDUiDsVOyAnEwhBl0yZwBj8fIJkvKpGzswCiCAAAIIIIAAAgNV gC97Hqgrx7gRQAABBBBAoGgFurq6rMdGBsuajooIIIAAAgggUMoC5cHf2JloygRYiZgohAACCCCA AAJZE+ju7raeMgGWNR0VEUDAqYC+R6VFr7F1w27DGN2XXa3Y8etmU2k/p0ZyKhw7EZcFUhx5ik25 FKCv/hDo7OYUYX+40iYCCBSTQD4fNY+tG1vAL9FPh+F0oysZdvKp9dOMHOxE6Y48uZiDqdFFYQVa du60HgAZLGs6KiKAQBYFzC9asZt/dDSgj+7uD/Op95hu3BOhHTtyu5HY1bLbK6hVnAKjRo2yHhgB ljUdFRFAwKlAPjeJzqeu00nSGQIIFJPAkMah1sMhwLKmoyICCBRSQF1W5c8xhG2XseqnAmupyei7 UQdmLwKf9Q8jegx6JLrHwImYuEkma5bxPI6dWtgAPNsjughE8MzU/1//HE2T2GGHNejh8q9axAKZ +0D0gAu599O3K4GWXZwidGVNPwggUHABdXTUN+PWkVDYdnPAgbfwNltQx1RVzB9jqVNR5m2s/YUD x6bH4GkhurB/5B583Zoalf/fJFMLm69/e2x3ngHHWvnLqy36lJ+OjQJXJHDkftKczLWYf60Lvucz APcC6zdvsO6UDJY1HRURQMCdgDpqesIUf/eB1+Koup4WAg/tZgCRcG5hPYblhAIjJBXVhfUYMfLY QXqu6PKP1mzcfNazPWJ4sWNQBewa9KyIGfWGjdwTnAUOLyKDFXs5V8L5Uqw0BHZykXtpLCSzQACB WIGwaCM6Csk/PogdmCdiC0yVRRzsw47rsSPXMYeOIz3RTE4jjy3suLvY8ViQShW9OoRTdsLZqVVR U2k9WTJY1nRURACBwgskjLeK9jiqz2eFUQaeGiu8exGPIJa0iMfO0IpOoK6uznpMBFjWdFREAAFH AmZuxuwyLLtjbtcRmJl6yX/csYkl1UX0ib8kc0k4VDPQzOmUouekmx5z2Mk4PS/zTFx0/KoQohv0 TFNV0XrmA/Okp6eAR9uPn2SLHzzhWidcKYoNLIEhQ4ZYD5gAy5qOiggg4E7AEyepa2hUdkcNQh2/ /dv9R+7A65DU4dw8rnuO8Z5gyBOumYU9Iwk08sRD+r/mGMLa9DdozsgzO91IxNT0gAMvePKHaxHd BUYn/jUKC8gsRqJXXO0DOv4zST1BYfQC+WM71SxhlrtXezH1VFnJKcJiWg/GggAC6QqYgZQ6jnq2 6BjLv90TDQQe2nWDZsvRvXiG4SkcVtccp3/M/mGY04ltU5v7p2y2HAioO/L4BDqboYznsWfdA5cj LLry4CQfiT8uNKejnw1kCYxW/dWjp5nu3k5rRSXQsmO79XjIYFnTUREBBBBAAAEESlmgpaXFenoE WNZ0VEQAAQQQ6F+BiBO1/dsxrSPwJ4H6uhprCQIsazoqIoAAAgj0r0D0idH+7ZvWEegLsAZZMxBg WdNREQEEEEAAAQRKWaD8w9sb5zxNAqycyaiAAAIIIIAAAlkQqAz9hoX42RNgxRtRAgEEEEAAAQSy KNDTbT1rAixrOioigAACCCCAQCkLjBjeaD09AixrOioigAACCCCAQCkLVFTYh0n2NUtZlLkhgAAC CCCAQOYFqqqqrA0IsKzpqIgAAggggAACpSzQ0dFhPT0CLGs6KiKAAAIIIIBAKQt0d3OReymvL3ND AAEEEEAAgQIIjBkzxrpXMljWdFREAAEEEEAAgVIWGDSIO7mX8voyNwQQQAABBBAogEBbW5t1r2Sw rOmoiAACCCCAAAKlLNDV1WU9PQIsazoqIoAAAggggEApC3CbhlJeXeaGAAIIIIAAAgURqKurs+6X DJY1HRURQAABBBBAoJQFenp6rKdHgGVNR0UEEEAAAQQQKGWB9vZ26+kRYFnTUREBBBBAAAEESlmg pqbGenoEWNZ0VEQAAQQQQACBUhYYNrTRenoEWNZ0VEQAAQQQQACBUhaoKC+3nh4BljUdFRFAAAEE EECglAV27dplPT0CLGs6KiKAAAIIIIBAKQu0trZaT48Ay5qOiggggAACCCBQygLlnCIs5eVlbggg gAACCCBQCIHq6mrrbslgWdNREQEEEEAAAQQQCBYgwGLPQAABBBBAAAEEAgS4yJ3dAgEEEEAAAQQQ SFlg586d1i2SwbKmoyICCCCAAAIIlLIAGaxSXl3mhgACCCCAAAIFEaiosM9D2dcsyFTpFAEEEEAA AQQQcCPAdxG6caYXBBBAAAEEEMiQQF1dnfVsyWBZ01ERAQQQQAABBEpZoLa2VqY3d+7c+x5YmOTX tCDAKuU9g7khgAACCCCAgLVAb2/vBRdeuiSXH90XAZY1OxURQAABBBBAoJQF2traFi9ePO+ma3P6 V4kQYJXynsHcEEAAAQQQQMBaoL29/bUVL0yafHhO/xJgWYNTEQEEEEAAAQRKX0Cuwco1upLyBFil v2cwQwQQQAABBBCwFmhsbMwpd6WiMQIsa3AqIoAAAggggEDpC9TX15PBKv1lZoYIIIAAAggg4FLg Fz86lwyWS3D6QgABBBBAAIFMCJDBysQyM0kEEEAAAQQQcClABsulNn0hgAACCCCAQCYEyGBlYpmZ JAIIIIAAAgi4FCCD5VKbvhBAAAEEEEAgEwJksDKxzEwSAQQQQAABBFwKkMFyqU1fCCCAAAIIIJAJ ATJYmVhmJokAAggggAACLgXIYLnUpi8EEEAAAQQQyIQAGaxMLDOTRAABBBBAAAGXAmSwXGrTFwII IIAAAghkQoAMViaWmUkigAACCCCAgEsBMlgutekLAQQQQAABBDIhQAYrE8vMJBFAAAEEEEDApQAZ LJfa9IUAAggggAACmRAgg5WJZWaSCCCAAAIIIOBSgAyWS236QgABBBBAAIFMCJDBysQyM0kEEEAA AQQQcClABsulNn0hgAACCCCAQCYEyGBlYpmZJAIIIIAAAgi4FCCD5VKbvhBAAAEEEEAgEwJksDKx zEwSAQQQQAABBFwKkMFyqU1fCCCAAAIIIJAJATJYmVhmJokAAggggAACLgXIYLnUpi8EEEAAAQQQ yIQAGaxMLDOTRAABBBBAAAGXAmSwXGrTFwIIIIAAAghkQoAMViaWmUkigAACCCCAgEsBMlgutekL AQQQQAABBDIhQAYrE8vMJBFAAAEEEEDApQAZLJfa9IUAAggggAACmRAgg5WJZWaSCCCAAAIIIOBS gAyWS236QgABBBBAAIFMCJDBysQyM0kEEEAAAQQQcClABsulNn0hgAACCCCAQCYEyGBlYpmZJAII IIAAAgi4FCCD5VKbvhBAAAEEEEAgEwJksDKxzEwSAQQQQAABBFwKkMFyqU1fCCCAAAIIIJAJATJY mVhmJokAAggggAACLgXIYLnUpi8EEEAAAQQQyIQAGaxMLDOTRAABBBBAAAGXAmSwXGrTFwIIIIAA AghkQoAMViaWmUkigAACCCCAgEsBMlgutekLAQQQQAABBDIhQAYrE8vMJBFAAAEEEEDApQAZLJfa 9IUAAggggAACmRAgg5WJZWaSCCCAAAIIIOBSgAyWS236QgABBBBAAIFMCJDBysQyM0kEEEAAAQQQ cClABsulNn0hgAACCCCAQCYEyGBlYpmZJAIIIIAAAgi4FCCD5VKbvhBAAAEEEEAgEwJksDKxzEwS AQQQQAABBFwKkMFyqU1fCCCAAAIIIJAJATJYmVhmJokAAggggAACLgXIYLnUpi8EEEAAAQQQyIQA GaxMLDOTRAABBBBAAAGXAmSwXGrTFwIIIIAAAghkQoAMViaWmUkigAACCCCAgEsBMlgutekLAQQQ QAABBDIhQAYrE8vMJBFAAAEEEEDApQAZLJfa9IUAAggggAACmRAgg5WJZWaSCCCAAAIIIOBSgAyW S236QgABBBBAAIFMCJDBysQyM0kEEEAAAQQQcClABsulNn0hgAACCCCAQCYEyGBlYpmZJAIIIIAA Agi4FCCD5VKbvhBAAAEEEEAgEwJksDKxzEwSAQQQQAABBFwKkMFyqU1fCCCAAAIIIJAJATJYmVhm JokAAggggAACLgXIYLnUpi8EEEAAAQQQyIQAGaxMLDOTRAABBBBAAAGXAmSwXGrTFwIIIIAAAghk QoAMViaWmUkigAACCCCAgEsBMlgutekLAQQQQAABBDIhQAYrE8vMJBFAAAEEEEDApQAZLJfa9IUA AggggAACmRAgg5WJZWaSCCCAAAIIIOBSgAyWS236QgABBBBAAIFMCJDBysQyM0kEEEAAAQQQcClA BsulNn0hgAACCCCAQCYEyGBlYpmZJAIIIIAAAgi4FCCD5VKbvhBAAAEEEEAgEwJksDKxzEwSAQQQ QAABBFwKkMFyqU1fCCCAAAIIIJAJATJYmVhmJokAAggggAACLgXIYLnUpi8EEEAAAQQQyIQAGaxM LDOTRAABBBBAAAGXAmSwXGrTFwIIIIAAAghkQoAMViaWmUkigAACCCCAgEsBMlgutekLAQQQQAAB BDIhQAYrE8vMJBFAAAEEEEDApQAZLJfa9IUAAggggAACmRAgg5WJZWaSCCCAAAIIIOBSgAyWS236 QgABBBBAAIFMCJDBysQyM0kEEEAAAQQQcClABsulNn0hgAACCCCAQCYEyGBlYpmZJAIIIIAAAgi4 FCCD5VKbvhBAAAEEEEAgEwJksDKxzEwSAQQQQAABBFwKkMFyqU1fCCCAAAIIIJAJATJYmVhmJokA AggggAACLgXIYLnUpi8EEEAAAQQQyIQAGaxMLDOTRAABBBBAAAGXAmSwXGrTFwIIIIAAAghkQoAM ViaWmUkigAACCCCAgEsBMlgutekLAQQQQAABBDIhQAYrE8vMJBFAAAEEEEDApQAZLJfa9IUAAggg gAACmRAgg5WJZWaSCCCAAAIIIOBSgAyWS236QgABBBBAAIFMCJDBysQyM0kEEEAAAQQQcClABsul Nn0hgAACCCCAQCYEyGBlYpmZJAIIIIAAAgi4FCCD5VKbvhBAAAEEEEAgEwJksDKxzEwSAQQQQAAB BFwKkMFyqU1fCCCAAAIIIJAJATJYmVhmJokAAggggAACLgXIYLnUpi8EEEAAAQQQyIQAGaxMLDOT RAABBBBAAAGXAmSwXGrTFwIIIIAAAghkQoAMViaWmUkigAACCCCAgEsBMlgutekLAQQQQAABBLIi IDGWTDXhvxdceKlyqcgKD/NEAAEEEEAAAQRyF5CzhAl/73tgoW6eACt3aWoggAACCCCAQJYEJH2V 5NckIcDK0g7CXBFAAAEEEEDAiQABlhNmOkEAAQQQQACBLAkQYGVptZkrAggggAACCDgRIMBywkwn CCCAAAIIIJAlAQKsLK02c0UAAQQQQACBPAQOmTLN/xvYHgFWHsxURQABBBBAAIEsCby6fKlnuv4t qgABVpb2C+aKAAIIIIAAAvkJmBFVWHRFgJWfMbURQAABBBBAIHsCKq6KiK4IsLK3UzBjBBBAAAEE EMhbIDq6IsDKG5gGEEAAAQQQQAABnwDXYLFTIIAAAggggAACKQsQYKUMSnMIIIAAAggggAABFvsA AggggAACCCAQKjB37tz7HliY5NdsggCLXQoBBBBAAAEEEAgWuODCS5fk8qNbKZfL4CdNPvy1FS9I aCYtzJkzB2MEEEDAscDIYXXqjUj6Ve9FixcvdjwGukMAAQTkXcgMigRk3k3XWrBII2SwLNyoggAC CCCAAAIIRAkQYLF/IIAAAggggAACKQsQYKUMSnMIIIAAAggggAABFvsAAggggAACCCCQsgABVsqg NIcAAggggAACCBBgsQ8ggAACCCCAAAIpCxBgpQxKcwgggAACCCCAAAEW+wACCCCAAAIIIJCyAAFW yqA0hwACCCCAAAIIEGCxDyCAAAIIIIAAAikLEGClDEpzCCCAAAIIIIAAARb7AAIIIIAAAgggkLIA AVbKoDSHAAIIIIAAAggQYLEPIIAAAggggAACKQsQYKUMSnMIIIAAAggggAABFvsAAggggAACCCCQ sgABVsqgNIcAAggggAACpSEw76ZrrSdCgGVNR0UEEEAAAQQQKGWBSZMPt/sVFAKsUt4zmBsCCCCA AAIIWAu8tuIF618CLGt2KiKAAAIIIIAAAsEC5a8uXyrpLwnQ7ntg4ZIlS+bMmQMVAggg4Fhg5LA6 9UYk/ar3osWLFzseA90hgAAC8i5kBkXHHHOMncns2bMJsOzoqIUAAmkKEGClqUlbCCBgK+AJsKwv cpcojVOEtotAPQQQQAABBBBAIESAAItdAwEEEEAAAQQQSFmAACtlUJpDAAEEEEAAAQQIsNgHEEAA AQQQQACBlAUIsFIGpTkEEEAAAQQQQIAAi30AAQQQQAABBBBIWYAAK2VQmkMAAQQQQAABBAiw2AcQ QAABBBBAAIGUBQiwUgalOQQQQAABBBBAgACLfQABBBBAAAEEEEhZgAArZVCaQwABBBBAAAEECLDY BxBAAAEEEEAAgZQFCLBSBqU5BBBAAAEEEECAAIt9AAEEEEAAAQQQSFmAACtlUJpDAAEEEEAAAQQI sNgHEEAAAQQQQACBAIFJkw+3+5W2yl9dvhRUBBBAAAEEEEAAgRQFynt7e1NsjqYQQAABBBBAAAEE yGCxDyCAAAIIIIAAAikLcA1WyqA0hwACCCCAAAIIfJDBkmu4itbi2GOPnXfTtebwinm0RctYwIGZ K8jaFXAhLLpm7SzQiqSKuXYXXHhpkYyKYSQRWLx48WsrXvCXvO+BhUmqU6awArNnz1bL92GAFbic hR2l9C7705IlS/wBVnGOtuBcRTgAzwpKgMXaFeEyBQ6JtRsoKxV4JDbfOSXAOuaYYwbudDI18r86 5bNh75PykpRnM6UxECerl6/yW+d/QyYwes+9N298twhn8vrvV61Zs+Zznz3BHFvRjrYIAQs+JM8K snYFX5HkA2DtklsVW0nP2j22cNH48ePl2DzjK18bNXwQ/xazQMQRWZb14I9NLLadjfF4BPRhjmuw 2DcQQACBTAioP6z5t8gFMrEvZmOSAQFWRXmv/I5d84vxb9x60KpbP/roxWUvPNjd1VmcIJOmTMvp tzhnkfFR3Xn3Lx967Kmw34zjFPn0WbsiXyBzeERXA0Kgv/eoXbtaX39j5Suvvt60fXtPT0/y7uQE 5SFTFnIdWHIx7zVYFWW9ozY8MXz9bypatvQOHVFRN7Lz2adef/39rd/6t+0jtjcOrmqoHFte3dZS uWp4y9F1dXXJe7IrGXsNlkRXObX8GjdWzckr78JJruORg/S11+72OQbd7YIFCxYtWjT7+xflPRAa yFmAtcuZrGgqeNZOXYOlrr018zfy0mtsbAwb9WWXXTYgIpIiz0hZG/rXJf9rsH7xwCOPPParQYMG DR06tL5+0CEHH3js9KOGDh1SURF/OkuiKzWkV5dzHVjUS11fg+U37a1uXVe5/g/lO7dXNIwo27Jh 17Zda7qHzl/4k+c3/Odrnbevrr79neE/fX3XnVu2bdM9PP7Eogu+84+HTJl2/y8fcvwOUy4X6ufy 63h4dJeDQFdzmf+3rOyeu26b+8Mbc2iHou4FWDv35rn36D/SSxsSRQX+jBgx4rTTTivV2KWY55X7 wsbXePzXa//frU9deNE1jz/x5B577DFy5Mhhw4bV1zds2rL9ud8s3b69OawJM2s1Z05fKfUv2ax4 9LIyb4BV1d1a27a2u3Fwb21FWX192baNO1o6NzSM3F7XXl+5bXv3G80jnm7bc2nTjk29vR+kFu+4 8+6LL7n8yjmX/Xrhg4sXP6djrKefee7KH16fZBBmmVxrnfrVc+989EX1+/c/vu2LX/ziSSedNGPG jCuuuOLss8+eP/+2p37zs5deuvXee+947LHbzzrrS7mOx668xJqqon4Q0U50GfPZJK3ZDVjXctBF 9AjLv71KfnUZSV8dOu341atXn3XOt/OcWsLqOa1dwjYT7gnJWyvOki7XLtcdNdfyKQoXsGvPLPxR xQcFwuNjYizr/JN1DJfivqeaemnZmpqanrP+9viduzaPGjVq4sSJ5eXlkrkcN27cRz7ykVWr165Z u669vT2wXzOokg9JSO5KfYzR3G434FzPPtn1UthavgxWR3P5mt+1Nm99b1fFhj+uff/1Nds29QVS dYN31g7tqaqXbFFPe1tX5XuHbW9qUUO//sZ/lX/32GP42D3HzPvxP3/51JPV9m9/Z9Y9996f6/Ry rbVux/oV76549p3frXz16RfvvnfTptbBgwdLtlM+e7hz586mpm1/fH3T4LKxahi1tR2e8Xje+4rn rTBXtwFd/rrrBpWft0wfnntvmXjotxt37JKdreySSy6ZOXPmCSecMGHChGJYu+gdxm7/satVJCue yto5nouA61/HXRe2u8AMlh5SWHx86KGHWscKqscbrrv6sit+KAf1n9/3yKKFD+bZ2sUX/b0sn25n yPCx0vLCRc+5jIRe+M2TMoa5s7+X51wCx5z6TvLmqi0zZ37pyiuvHD169IMPPvi1r31t33337enp HTNmzJAhQwbVN/zxj6ubm3dEB1gqZaV+5XGeAdZ9OV7bo8YW+1bpf12bL/bA6mHvBv7Csb37Ab0B 1ns7Vj/QPeO+rX8xZ/2XZ704ce66vZ7YWv2fe23Zd+/W6vqu6tqy2kFlHe3d3Rv36en+IIN12owv S7tyltBs3Z8GkGyWmolkvLZta9JeskXqqlyXRfJg/xFDdvT21LS3L37ozo6OVzo6tkp0dfDBkyZO 3F8+lrxr1/s7d1a+8lbTfvu1NTR0d1fV+wks1FJ/ASRssCS/mVterjNvHXvrzLKpy/p+Z946Vd7o n7p+x9D6Xomx5G+sqVOn+qOrhK+3hLAFLCa7nyzrANoJd3+Z269dnuY5vRYUst5n5LH+zXMYA6u6 PxpIGB/nE7sce8ynn/nNi7O++0353tuqiu7Wzop8WpO6l//gSmFf8doq1c7N/9p3/cBR06b0R6wT 1mZvZYN0esqXvpLnXALbT32nEvhnn32jublZYuWlS5e+8sorcvJq06aNkr4aPny4dLd+w8aW998P 7FdlreQpFVGpH/VYZ7OiByyZKs/7m0RXs/90YU9OP7Fvkuplrn7NwrGv98BaOY0trLA3wHp316f+ s+Py++rnTfj0nNHTbnx63GMPTPl6567hI8fUtte2VA3p7h7Utf2dIZXtY+rqalWjf/PXpx9z9NF9 Zwl/eP2atW+rjfrtTD/4wfcvlsfPPPW4ZLx+dve95oAm7DdeGgmslWSSX5y8f+vqLW1tL8t+UlPT /v77769du6arq6upqamqqlpaePPNd3e0D25o6NGprCTNBsbCuqK5fnZ/DQfWimhKPaUG4OndHJVZ TJf01PWUUcX8G5Mo5VlGoqtbb31PoqvzFpS9tHSi/C47VIKsqY0X/0GiK5W13muveomxcuqov9dO r0JYbJTr4vpnFzgF/+IWcCn7Y+2i3fRkA/fn2Pff6F0o4ZJFrItnAMkbDHsB5jkj/3w90UDyv22s Y5dbfnzjkqefO+Wkzxx97InS++y510wYN9q6NTX+d9b8/sknn5w1a1b1oOGPPnTvDT/68U8XzDv8 U8f3R6wT1ub9994tvG3vb8lzLqlksPwvB8/Sb9++fcmS5+vr67dt2/bss8/KFRcVFX1ndSSDtfcf Xz929YqxG9+WEz4SAZsV/Vdfmc8mvBJLoqu5u49GR1fWfyOZ7XkCqZwOEw4K7xZgdfdUvfnOxJrO vQ8YOWTinrWDygdX7RxbV/HJYyeP3vXW6OqXP9v+3LEdD00f+sJfVpZXNwzuC+HlZ/y++1x7zWxJ 28oJwS98ccbKNz+8gMacgLoQ/ujjTpSNt952u/nUgQdMlEbsZrt2/db6qp4ZJ+998MGnlP3pVGBV VZWcJXz11bfksew0Gzeu3769aUzDmE3NlStXv+nvJfAYGRYLBx4ILeJfs33dZnSnsbtjWHW9Xb2P +0cbOBi75ci11iWXtM6cOvXQ82ZKRXWGYpmEUguWyX9VdNXdvSWiTfdrF5FtUoxhyLI9+X7iX6Yk Wzxd57oWuZbPc+0SvpQ8O6cS9rwWksOquv7AJfZ1oaqEvcSSv6YCh2q+QnNdhZzKm9FATvGxJw54 5Y235KycDFvO/ek2Zcv/vPiy5KtkuxwORo3dT2q9+kbf4UCOC/5IQupKSaklreln9ZavnPYl1XJg X2NGNJx//vlXXH7pI48/ddqMU88+99ueFubN/w/PecMkLUvEdv7Ms6Wk9K7G79+iRiVRnfSrorrA EeYT7eW0pmrP1O88/leHbDnqyH2WLXvxT4fFdRs2dJaXT9i4cfnMM06feNV3Rj/0X/s3Dj6ndcsn /v3H61etMq/ESnISMLqMiq4kWaV/7KKrwEklVwr8UydJdfONwu6vnd0CrM6u8ne31ddUlQ0fWtbV VbZhU0/HzqaK6vuPqX3mm4f88ZQJq04bv+Fbk387qbF1v3EfHdzw4em2wYMbzjrzjOuvu1oGffO8 Bf6hqwvh/+6CmbFRQpJpm2VqOzqefuS515f/4Zbvn3jTT791zDFTx48fIbmrffcduXnz5oaGhtra 2tbW1rXvrWuo2i08z7Uj861ZH0otGkmlij5IJBlJ6uapTEEakY+Iz5jQdOiCD7JTcumV/DZfv7/8 u+nqcbJwEl1VVo5MpbucxFLpMUkjevki4jb/8hXDgrpcuySSOZWJ0A5rp1/NzXy/fh9P8tLOadZS 2Dzq5xQfm5GZxBNnnHHG888//8iD91x86RU6xpL25XLJ/77n/l8//oDEH9df90OpNX/+fNm+ef1b nkyPZLak7v333Lly5UppbfW6TWpsakY1lV1XXX2til0C+5KSXzjxuHvu/aW0r0rq9lULF5z/tzJC yXLp6C1Jy+fNPOfW2/596XOLDjhw0qInHpY2/Vukr66yvvsT/fWZX48eoXWMlXxZk0RX0toB++91 4mcOlItnJkwY88orv33ppSeOPHL6IQ/e0bxl84QTTz7kZ4/u8+vlY444uvzO29ate6ezs0sNIM8A S0VXc4zJWEdXESD+F6YKp8ztOf0BpvoKfPVZvG/sFmA176yuLOuqrSnb5yNlLW1lmzf01lS+udew tTW1NeVl2w4c8fqEPV/v7uld27T/4CGDa2pqPNM+8TN9X2iz5Jln/BzqQnjJVCXfdZKXbBk8+LHH Hj3nil/KacFrrjnyhuvP/tGNp08e1Pm1408++IjDPnrw6MbGYevWNcnFWOPGVQY2awFntpMkQE5S Rq2r+k0+/X4aid0Acqq1YcMGSVUtW9aXr5paNvXp3yyX3+OO+4Nc4T768l/K31ISXUVnsKSig7UL nFR0bJTnOiZk9PeiNKz3n4T9SrFU1i55d6mX9O82hVqy1KcW0aCOQi699NKc/rYxY4Vb598iXQwZ VP75k2fIA7m+yoyNJJY64bNflO0SY8l2NRj/ebQnFj0t27804687W/uux/3Rjf+sbx2kt8uWsL6k 5aOm/6VqvGnz22b7ukcZoTyWFpK3/LGDDpEqY/fZ//S/+sJXzzxHevFvkdZ+vfBhKVbR2xY9Quuz h8l3CX/iKvC1L9fzHHbo1EGD6kaMGDZz5ulXXjnrE584pHfZ/+xx+4ObO7s7fvAd6XHYJVePf+v3 b6xc2bzjg1s2+D8zaA5MhV9mGfNZHV3pQKc/oqtAKBVOaYckfxrp174/Na7asf5rZ7cA690tg9ra e6o7W9av3vb7Vztatva0lS87dOxbQxqq6mvl/u6VZd2Vne1VrT2jKsrLKis/CFbk3N/Nt/RlrdSl 6yqPJT9yYZaev9ooBVa8/JraqK9z9xiZtRLuZ0P+dHXe6tULv/d387773QdXrnyztra97Ff3j730 6/td8PWxS5YcNu2wjx+176bmqvKdeydsM6diOkCOWEtdJrrlJE1FtJCkepIyOU3fuvB++92xYMHM qWXLJMiSRi66a7r8lk2VK90XbLr6VNmSYgYrbJD9pJG82XyO64G9eN5frFcnuqKztdMho/V7XMTS m0ej5EtmTaqmoH6tG8mnoo6Tco2PzVhBrqlShxw5BycPHn64L9PjiaXUIGW7nEeTB/5cjtTS2+WB tGlGabp8WF/S8iUXf1fuyHPM9KMeWbjEn8HSreXU8hmnnSxnHuUTdnKu85nFj0sv/i3SssSUMmaJ L+VxxAgdZLBkGEliLFmpIUMGf3LqZLm5qFw28/bbb7/33nuSNRk+6eN7/dMtOsaq7u56++1332/Z ae5j6kos2eK/yD3sru7+6GrOn04Uyu5SqD0/4WE3nxdXYN3dAqyVb/+srvWSwd3fX778vDdfvaK5 5bkRI1/Zq6GtcUjP4Pqy8rresqrebdtry8obamqqq6o+CLAO/+RUuQ+svN5+MOefbvnxDSqPJT9y QlC9DuVf2SgxllyAJZdDqWBrR0vwZxbMWslnO2rUZCksHyF89tnHzvnGRbf9ZN2SI7581YSPz3pz /euL7hl5xsm9/zDrvZffeHn1ioTvttHFwvaSFDMHsU2pA08+I4ntwkTwFI7+b8KF+6tT+g4zd/z0 7BUrpq24vVriKvVrRlexGSz1FpNkLvmLJZxXhJvnKfOgHjYL/9SSbBkoaxdL6j4oCdyXkuxgsXPR BSJa0wGl+dJO69Wn46Rc42MzVpCYRr3o5Jpo9a8/NlIzle2nfuk0eSDn1DzRhsRGsl1HZtKmP0qT LWF93X7bLXIu72/PPO2mf5139dVXb9y6U7evurZrWa7EV+cW5VznDf/yb9Kmf4vcFUKiQ/mGCdVj 2Aitoyt9njT57mSG7GHhu8RYn5z6iZbmbRJby3XuTz311P8fOmbXnX0ncFWM1faV41b3VLS1t8uJ ILNrfaJQJavUrzyOOIGozgyaO3D/RVfmS6M/XrnRR43YNdotwDr5iKNP+exnpx9+xKknnHzS9LF/ c/L/jBi3cX3dx1u79qio7N2xs665qeG5lVMk31hbW6PvrC93wJILsGQcchOs6Uf3vfbUj5wQNBdb Yiz5rxRQD9RV7f69wVMrdgKqwN57S2rqg5tdtbVtvuuu65rWrTviy18+9Ec/en7qF66aPOqRNWsO +NWvolszd4jkfzcHltQHy7CjpllLjyq6qViKJGOO6MLNqSXPLO74addZ51RddNFFnZ2dzdef3nvL V+RfKaNyV0miK9Wg+7Xz96i3hC1EWCLav7L+FpJskXaSdxG7O8UWyHPt9FDNZH7g+P0lY8cWUcBs LXrJEpoH9hX9Ajd3nsDVz2eCEXX1UX/27L4LUuUOzAn/tjEzWFf8oO9jYRLT3HXnT+XuVnI1VUQG a799Rkksdc0P5+49/mPSu2SG1DVbnzlhujTyi3v/q6W1byT/cNE/BmawAvuS3NI5My+Q3JicYawq a5Oc0/HHH6+uSdfRiTxWLZ93/gfXvysWLRDYslybL1eDqXOLLTuapDX/locf6PsIfENdhZp1mIbc 8Uuul9du8li26N49z3qisX5a/YaG+uOP/bScjOrpamtu2vKLvQ/ccsMcOT/YOf/6kW3vr1m9+j8a xjQOHVr7f/cHUMMwA6mwu7p7Bjxn9zdk9VUr0ft8KlOOPbo5GINnIt7vIjSf3rRt67bWpq7WztSs F44AAARtSURBVC3vrK4q2/7+zo6OnlF7jBgzYb99hg8bJid0U0GJbiT2uwjVd2z1vXJeWypnCc3W amrOGjFi64QJHx07fs/fr/i9XPD+hz+s+pfr++6hwo8zgYTfZycxlhqSCqo80dW77+667rrr+EZC Z6umOirCtbM7UWhXy7G22V3+A07yXYSHHrrshBPula8B3bHjg9vOyYWPnr9t9EvPjLEkurrqytly dkyinJvnzVfXsKszhnIM8zyWeGjlqnckJyTPnnfu1/9h1qVy3ZWUkUhLrnOXjQ899JC+d4OKtnVW TCIPf1/yCUG5tn3t2rUtTeulHbnj6F+ceIqM5L/v+YWUVy1I1CVl7r777j87aD818iQtS6ZtypQp apxXXn2tzMu/RfUuNz6Qu0WolgM1JKIaNWYvuZZLlZGIavPGd+cvuF3FUp5nw67W8u+BeX4XoXy1 846Wlu1NzR2dHd3dPdvee7fusV+WbXh3a1n18saRlft/7LBPTp3y8T+T84mBOz/fRZjwPUH/yeG7 k7vRwIjG4fvvOWH82H0nfPQTH9n36L33+9SBBx50wP4TRo8aKacIE/bkrNikSdNGjDjC7K6j446t W9e8/PKK5S8s37y5Tb7eUk5QOhsPHeUksO7/fuQNXX7lf+qB+s2pKQo7FujXtUvl3FxYItkxVMLu 8o+uwjryZEpeeqnvA7zyaWuJqzY3deza9W5Y5tgTAchdEhYveVZUJabRnxBUZwxVSfOxnGU78rCP qy0SYajoSsrMuuRy2SLbzTtjqS3mOP19yVk8KaOiKykp19SrkZgZLFVGR1dSMknLkg/T41Tz8m9R LevoSsoEashMdXQlZeSxjq5knJ5n3WSwZK3lvNOwxsbx48cdsP/Egz52wCemTas/59vrzzh30+dO /egJf/npTx0hGyXRFbb/JPlcYcKdPCPFojJYxUAQm8H6wimnyx3b1VC7u7tXrZLbrqzffeRj5dsA 1Ba5X8PjD+92j9NimGNpjyFhFkTufRfrQAYrlijdAkWydmaMZZ3k77+oJV3ztMaZJIMlx/W+223M 6PswYMSPSh6HZVmKbbs/U1VsI0w+Hv+i5JnB8jcoN2WQW3PLpVdy/8iG+no5MaUykfzkI6AzWAM+ wMpHgboOBJIcpB0Mgy4sBFg7C7QiqRIYYMm1yZ6ju9yvIcnfNvfcc08+V227rGueqXTZb4p9yS5k XtZm7lGpB1hFsruW2DASnSIssTkzHQQQQCDLAv7ciVyAJdkpiZ+i/00xekiev7EraZ6dtGuh4LWy vIuW2Nw/zGDNnev5yqBimemSJUvm3XStORp5ARTtaItFrZjGYa4ga1dMKxM/FtYu3qhYS5hrJx8G 8ryLFuuoGVefABmsAb0feE8RysuvmOfjeWso8tEWs2ShxqZXkLUr1BJY98vaWdMVvKJeO3nHL/hg GEBOApI19JdnHXMyLGBhtXwfZLAKOA66RgABBBBAAAEESkwg6jYNJTZVpoMAAggggAACCLgR+F9B /NEMCnyVywAAAABJRU5ErkJgggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAPABIAAQCcAA8AAwAAAAAAAAAAAEAAAEDx /wIAQAAMAAAAAAAAAAAABgBOAG8AcgBtAGEAbAAAAAIAAAAYAENKGABfSAEEYUoYAG1ICQRzSAkE dEgJBAAAAAAAAAAAAAAAAAAAAAAAAEQAQUDy/6EARAAMAQAAAAAAAAAAFgBEAGUAZgBhAHUAbAB0 ACAAUABhAHIAYQBnAHIAYQBwAGgAIABGAG8AbgB0AAAAAABSAGlA8/+zAFIADAEAAAAAAAAAAAwA VABhAGIAbABlACAATgBvAHIAbQBhAGwAAAAcABf2AwAANNYGAAEKA2wANNYGAAEFAwAAYfYDAAAC AAsAAAAoAGtA9P/BACgAAAEAAAAAAAAAAAcATgBvACAATABpAHMAdAAAAAIAAAAAAAAAAAAAAAIA AAAFAAAQAAAAAP////8AAAAABAAAAJgAAAAAMAAAAAAAAACAAAAAgAAAAAAAAAAAAAAABgAAAggA AAUAAAAABgAAAggAAAYAAAAABgAAAggAAAcAAAAAAAAABAAAAAcAAAAAAAQAAAAHAAAAAAAEAAAA BwD//wIAAAAEAFMARgBTAEQAAAADAAAABAAAAAgAAADlAAAAAAAAAAIAAADIdcMAvEfLAKgE7AD/ QAGAAQABAAAAAQAAAGTbhQDOAc4BAQAAAAAAAAABAAAAAAAAAAIQAAAAAAAAAAIAAABQAAAQAEAA AP//AQAAAAcAVQBuAGsAbgBvAHcAbgD//wEACAAAAAAAAAAAAAAA//8BAAAAAAD//wAAAgD//wAA AAD//wAAAgD//wAAAAADAAAARxaQAQAAAgIGAwUEBQIDBId6ACAAAACACAAAAAAAAAD/AQAAAAAA AFQAaQBtAGUAcwAgAE4AZQB3ACAAUgBvAG0AYQBuAAAANRaQAQIABQUBAgEHBgIFBwAAAAAAAAAQ AAAAAAAAAAAAAACAAAAAAFMAeQBtAGIAbwBsAAAAMyaQAQAAAgsGBAICAgICBId6ACAAAACACAAA AAAAAAD/AQAAAAAAAEEAcgBpAGEAbAAAACIABAAxCIgYAPDQAgAAaAEAAAAAZOOSJmTjkiYAAAAA AQAAAAAAAAAAAAEAAAABAAEAAAAEAAMQAQAAAAAAAAABAAAAAQABAAAAAQAAAAAAAACBAgDwEAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIB6AFtAC0AIGBcjQAAAAAAAAAAAAAAAAAAAEAAAAB AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAgAAAAAAAAAAAAEzgxEA8BAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAA AAAAKfD/DwEAAT8AAOQEAAD///9/////f////3////9/////f////3////9/vEfLAP//EgAAAAAA AAABACAAAAAAAAAABABTAEYAUwBEAAQAUwBGAFMARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP7/AAAFAQIAAAAAAAAAAAAAAAAAAAAAAAEAAADghZ/y+U9o EKuRCAArJ7PZMAAAAGQBAAARAAAAAQAAAJAAAAACAAAAmAAAAAMAAACkAAAABAAAALAAAAAFAAAA wAAAAAYAAADMAAAABwAAANgAAAAIAAAA6AAAAAkAAAD4AAAAEgAAAAQBAAAKAAAAIAEAAAwAAAAs AQAADQAAADgBAAAOAAAARAEAAA8AAABMAQAAEAAAAFQBAAATAAAAXAEAAAIAAADkBAAAHgAAAAIA AAAgAHMAHgAAAAEAAAAAAHMAHgAAAAUAAABTRlNEAABmAB4AAAABAAAAAEZTRB4AAAABAAAAAEZT RB4AAAAHAAAATm9ybWFsAAAeAAAABQAAAFNGU0QAbAAAHgAAAAIAAAAxAFNEHgAAABQAAABNaWNy b3NvZnQgV29yZCAxMC4wAEAAAAAAAAAAAAAAAEAAAAAAkCG7zB3FAUAAAAAAkCG7zB3FAQMAAAAB AAAAAwAAAAAAAAADAAAAAQAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAD+/wAABQECAAAAAAAAAAAAAAAAAAAAAAABAAAAAtXN1ZwuGxCTlwgAKyz5 rjAAAADoAAAADAAAAAEAAABoAAAADwAAAHAAAAAFAAAAfAAAAAYAAACEAAAAEQAAAIwAAAAXAAAA lAAAAAsAAACcAAAAEAAAAKQAAAATAAAArAAAABYAAAC0AAAADQAAALwAAAAMAAAAygAAAAIAAADk BAAAHgAAAAIAAAAgAAAAAwAAAAEAAAADAAAAAQAAAAMAAAABAAAAAwAAAEEKCgALAAAAAAAAAAsA AAAAAAAACwAAAAAAAAALAAAAAAAAAB4QAAABAAAAAgAAACAADBAAAAIAAAAeAAAABgAAAFRpdGxl AAMAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAD+////CgAAAAsAAAAMAAAADQAA AA4AAAAPAAAAEAAAABEAAAASAAAAEwAAABQAAAAVAAAAFgAAABcAAAAYAAAAGQAAABoAAAAbAAAA HAAAAB0AAAAeAAAAHwAAACAAAAAhAAAAIgAAACMAAAAkAAAAJQAAACYAAAAnAAAAKAAAACkAAAAq AAAAKwAAACwAAAAtAAAALgAAAC8AAAAwAAAAMQAAADIAAAAzAAAANAAAADUAAAA2AAAANwAAADgA AAA5AAAAOgAAADsAAAA8AAAAPQAAAD4AAAA/AAAAQAAAAEEAAABCAAAAQwAAAEQAAABFAAAARgAA AEcAAABIAAAASQAAAEoAAABLAAAATAAAAE0AAABOAAAATwAAAFAAAABRAAAAUgAAAFMAAABUAAAA VQAAAFYAAABXAAAAWAAAAFkAAABaAAAAWwAAAFwAAABdAAAAXgAAAF8AAABgAAAAYQAAAGIAAABj AAAAZAAAAGUAAABmAAAAZwAAAGgAAABpAAAAagAAAGsAAABsAAAAbQAAAG4AAABvAAAAcAAAAHEA AAByAAAAcwAAAHQAAAB1AAAAdgAAAHcAAAB4AAAAeQAAAHoAAAB7AAAAfAAAAH0AAAB+AAAAfwAA AIAAAACBAAAAggAAAIMAAACEAAAAhQAAAIYAAACHAAAAiAAAAIkAAACKAAAAiwAAAP7///+NAAAA jgAAAI8AAACQAAAAkQAAAJIAAACTAAAA/v///5UAAACWAAAAlwAAAJgAAACZAAAAmgAAAJsAAAD+ ////nQAAAJ4AAACfAAAAoAAAAKEAAACiAAAAowAAAP7////9/////f///6cAAAD+/////v////7/ //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// /////1IAbwBvAHQAIABFAG4AdAByAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAWAAUB//////////8DAAAABgkCAAAAAADAAAAAAAAARgAAAAAAAAAAAAAAAHA7 OM/MHcUBqQAAAIAAAAAAAAAARABhAHQAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAgH///////////////8AAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAASgUBAAAAAAAxAFQAYQBiAGwAZQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgACAQEAAAAGAAAA/////wAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAEAAAAAAAAFcAbwByAGQARABv AGMAdQBtAGUAbgB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAIB AgAAAAUAAAD/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIQAAAA AAAABQBTAHUAbQBtAGEAcgB5AEkAbgBmAG8AcgBtAGEAdABpAG8AbgAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAACgAAgH///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAACUAAAAABAAAAAAAAAFAEQAbwBjAHUAbQBlAG4AdABTAHUAbQBtAGEAcgB5AEkAbgBmAG8A cgBtAGEAdABpAG8AbgAAAAAAAAAAAAAAOAACAQQAAAD//////////wAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAEAAAAAAAAAEAQwBvAG0AcABPAGIAagAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAIA////////////////AAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/ //////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAABAAAA/v////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// /wEA/v8DCgAA/////wYJAgAAAAAAwAAAAAAAAEYYAAAATWljcm9zb2Z0IFdvcmQgRG9jdW1lbnQA CgAAAE1TV29yZERvYwAQAAAAV29yZC5Eb2N1bWVudC44APQ5snEAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA --=__PartCCEFA0B1.1__=-- From cynthiah@utdallas.edu Mon Feb 28 13:54:55 2005 Received: with ECARTIS (v1.0.0; list encore); Mon, 28 Feb 2005 13:54:55 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from smtp1.utdallas.edu (smtp1-pmn.utdallas.edu [192.168.1.5]) by nobel.utdallas.edu (Postfix) with ESMTP id B66515C77 for ; Mon, 28 Feb 2005 13:54:55 -0600 (CST) Received: from [10.0.1.2] (66.169.106.136.ts46v-02.mhe2.ftwrth.tx.charter.com [66.169.106.136]) by smtp1.utdallas.edu (Postfix) with ESMTP id 66713388E1D; Mon, 28 Feb 2005 13:54:55 -0600 (CST) User-Agent: Microsoft-Entourage/11.1.0.040913 Date: Mon, 28 Feb 2005 13:57:44 -0600 Subject: [encore] Re: enCore issue From: Cynthia Haynes To: , , Message-ID: In-Reply-To: Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit X-archive-position: 1362 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: cynthiah@utdallas.edu Precedence: bulk Reply-to: cynthiah@utdallas.edu List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore Robert, I just logged in as a guest just fine, using Internet Explorer 5.2 for Mac. So, I would check to see if she's behind a firewall, and if so she will need to disable it to access the MOO. If not, then her internet provider may have been logjammed at that time or something. And she should keep trying. Best, Cynthia __Cynthia Haynes, Director of Rhetoric and Writing___________________ University of Texas at Dallas cynthiah@utdallas.edu School of Arts & Humanities http://www.utdallas.edu/~cynthiah PO Box 830688-JO 31 http://lingua.utdallas.edu:7000 Richardson, TX 75083-0688 (O)972-883-6340 (F)972-883-2989 From kevijeps@telusplanet.net Mon Feb 28 18:21:55 2005 Received: with ECARTIS (v1.0.0; list encore); Mon, 28 Feb 2005 18:21:56 -0600 (CST) Return-Path: X-Original-To: encore@nobel.utdallas.edu Delivered-To: encore@nobel.utdallas.edu Received: from iq1.utdallas.edu (iq1-pmn.utdallas.edu [192.168.1.7]) by nobel.utdallas.edu (Postfix) with ESMTP id C14D45BBB for ; Mon, 28 Feb 2005 18:21:55 -0600 (CST) Received: from localhost (mf1-pmn.utdallas.edu [192.168.1.8]) by iq1.utdallas.edu (Postfix) with ESMTP id AD772B20 for ; Mon, 28 Feb 2005 18:21:55 -0600 (CST) Received: from mx2.utdallas.edu ([129.110.10.17]) by localhost (mf1 [10.110.10.13]) (amavisd-new, port 10024) with LMTP id 02401-01-71 for ; Mon, 28 Feb 2005 18:21:48 -0600 (CST) Received: from priv-edtnes46.telusplanet.net (defout.telus.net [199.185.220.240]) by mx2.utdallas.edu (Postfix) with ESMTP id 6A1E73384 for ; Mon, 28 Feb 2005 18:21:46 -0600 (CST) Received: from lilith ([137.186.225.85]) by priv-edtnes46.telusplanet.net (InterMail vM.6.01.04.00 201-2131-118-20041027) with ESMTP id <20050301002141.IFYY14438.priv-edtnes46.telusplanet.net@lilith>; Mon, 28 Feb 2005 17:21:41 -0700 From: "Kevin Jepson" To: , , Subject: [encore] Re: enCore issue Date: Mon, 28 Feb 2005 17:21:40 -0700 Message-ID: <000c01c51df4$a3eb74f0$650119ac@lilith> MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1250" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.6626 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 In-Reply-To: Importance: Normal X-Virus-Scanned: amavisd-new at utdallas.edu X-archive-position: 1363 X-ecartis-version: Ecartis v1.0.0 Sender: encore-bounce@utdallas.edu Errors-to: encore-bounce@utdallas.edu X-original-sender: kevijeps@telusplanet.net Precedence: bulk Reply-to: kevijeps@telusplanet.net List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: X-List-ID: X-list: encore I just logged in,as guest, using Firefox 1.0 on XP SP2 behind a firewall = no problem. Ciao KJ -----Original Message----- From: encore-bounce@utdallas.edu [mailto:encore-bounce@utdallas.edu] On Behalf Of Robert Rozema Sent: February 28, 2005 12:45 PM To: djh@motown.dmu.ac.uk; encore@utdallas.edu Subject: [encore] enCore issue A teacher I know is trying to access the MOO at www.wmich.edu/teachenglish/encore and getting the attached screenshot. = Any ideas? Robert Rozema English Dept. Grand Valley State University http://faculty.gvsu.edu/rozemar >>> David James Houghton 02/28/05 7:11 AM >>> Hello Has anybody come across this error I'm getting this message when I try to erase my log: #125:parse_multipart_form_data, line 27: Task ran out of ticks .. = called from #125:parse_form, line 15 .. called from #32:get, line 32 .. called = from #32:do_login_command, line 11 (End of traceback) --=20 Dave Houghton djh@dmu.ac.uk=20 System Manager Faculty of Humanities Work Tel. No. 0116 207 8260 Clephan Building, Room 0.07a De Montfort University Leicester LE1 9BH --=20 No virus found in this incoming message. Checked by AVG Anti-Virus. Version: 7.0.300 / Virus Database: 266.5.2 - Release Date: 28/02/2005 =20 =20 --=20 No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.300 / Virus Database: 266.5.2 - Release Date: 28/02/2005 =20