̨$ NOTES026.A`P NOTES026.ABACKUP/NOASSIST/COMMENT=VAX/VMS SPKITBLD Procedure/INTER/LOG/VERIFY NNP$:[NOTES.TEMPKIT]*.* NOTD$:[NOTES.V26.ALPHA.OBJ]NOTES026.A/LABEL=(NOTES)/SAVE/BLOCK=9000/GROUP=25VAX/VMS SPKITBLD Procedure ANKAN (9lģV7.3 _IWONT:: _$1$DUA104: AXP72R001 $K*[NOTES.TEMPKIT]KITINSTAL.COM;1+,f.Z/J 4ZY,- 0123KPWOZ56ғ$2Ƣ7kģ89GJHJ $ ! HP NOTES Installation Procedure $ ! $ ! K I T I N S T A L . C O M $ ! $ ! Copyright Digital Equipment Corporation. 1985, 1993. All Rights Reserved. $ ! $ ! THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIED $ ! ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE INCLUSION $ ! OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER COPIES $ ! THEREOF MAY NOT BE PROVIDED OR OTHERWISE MADE AVAILABLE TO ANY OTHER $ ! PERSON. NO TITLE TO AND OWNERSHIP OF THE SOFTWARE IS HEREBY TRANSFERRED. $ ! $ ! THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE AND $ ! SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT CORPORATION. $ ! $ ! DIGITAL ASSUMES NO RESPONSIBILITY FOR THE USE OR RELIABILITY OF ITS $ ! SOFTWARE ON EQUIPMENT THAT IS NOT SUPPLIED BY DIGITAL. $ ! $ !*************************************************************************** $ ! $ ! $ ! $ ON CONTROL_Y THEN VMI$CALLBACK CONTROL_Y ! setup to handle ^Y $ ON WARNING THEN GOTO error_exit ! setup to handle errors $ ! $ NOTES$VERIFY = F$VERIFY (P2) ! set verify if debugging $ NOTES$ASK_CONTINUE = 0 $ NOTES$ERROR_EXIT = 0 $ ! $ ! $ ! setup values used in the installation $ ! $ NOTES$VERSION = "2.6" ! NOTES Version Number (vv.uu) $ NOTES$DATE = "14-DEC-1993" ! NOTES Release Date $ NOTES$REQ_PRIVS = "CMKRNL,WORLD,SYSPRV,OPER" $ NOTES$NUM_REQ_PRIVS = 4 $ ! $ ! make sure status codes exist $ ! $ IF F$TYPE(VMI$_FAILURE) .EQS. "" THEN VMI$_FAILURE = %X10F50000 $ IF F$TYPE(VMI$_SUCCESS) .EQS. "" THEN VMI$_SUCCESS = %X10F50001 $ IF F$TYPE(VMI$_UNSUPPORTED) .EQS. "" THEN VMI$_UNSUPPORTED = %X10F50008 $ ! $ ! dispatch based on the command passed in P1 $ ! $ IF P1 .EQS. "VMI$_INSTALL" THEN GOTO install $ IF P1 .EQS. "VMI$_IVP" THEN GOTO ivp $ IF P1 .EQS. "HELP_LIBRARY_DIR" THEN GOTO help_library_dir $ IF P1 .EQS. "HELP_CAPABILITY" THEN GOTO help_capability $ IF P1 .EQS. "HELP_SERVER_UIC" THEN GOTO help_server_uic $ IF P1 .EQS. "VMI$_REMOVE" THEN GOTO remove ! (not from VMSINSTAL) $ ! $ NOTES$STATUS = VMI$_UNSUPPORTED ! error - unknown command $ GOTO notes_exit $ ! $ !----------------------------------------------------------------------------- $ ! Install HP NOTES $ !----------------------------------------------------------------------------- $ ! $ install: $ ! $ ! Expected VMS version(s). $ ! $ NOTES$ALPHA_SYS = FALSE ! Default to OpenVMS VAX system $ IF ("''VMI$SYS_ARCHITECTURE'" .EQS. "ALPHA") THEN NOTES$ALPHA_SYS = TRUE $ IF NOTES$ALPHA_SYS $ THEN $ NOTES$VMS_REL_VER = "V1.0" ! earliest supported OpenVMS AXP version $ NOTES$UCX_VERSION = "V3.0" $ NOTES$NET_SIZE = 7000 ! Free blocks required on system disk $ NOTES$AWD_NET_SIZE= 5700 ! Free blocks required during install $ NOTES$TRG_NET_SIZE= 4500 ! Free blocks for completed install $ NOTES$GBL_PAGE = 820 ! Global pages required $ NOTES$GBL_SECT = 3 ! Global sections required $ NOTES$OPT_GBL_PAGE= 890 ! For optional images $ NOTES$OPT_GBL_SECT= 3 $ NOTES$OPT_SECF_GPG= 1600 $ ELSE $ NOTES$VMS_REL_VER = "V5.4" ! earliest supported OpenVMS VAX Version $ NOTES$UCX_VERSION = "V2.0" $ NOTES$NET_SIZE = 6000 ! Free blocks required on system disk $ NOTES$AWD_NET_SIZE= 5700 ! Free blocks required during install $ NOTES$TRG_NET_SIZE= 4500 ! Free blocks for completed install $ NOTES$GBL_PAGE = 300 ! Global pages required $ NOTES$GBL_SECT = 2 ! Global sections required $ NOTES$OPT_GBL_PAGE= 350 ! For optional images $ NOTES$OPT_GBL_SECT= 2 $ NOTES$OPT_SECF_GPG= 1530 $ ENDIF $ NOTES$MOTIF_VERSION = "V1.0" $ NOTES$MOTIF_FOUND = 0 $ NOTES$TCP_FOUND = 0 $ NOTES$UCX_FOUND = 0 $ ! $ ! Check versions for software on which Notes might depend. $ ! $ TYPE SYS$INPUT *********************************************************** hp Notes Installation Procedure Copyright 1993, 2004 Hewlett-Packard Development Company, L.P. All Rights Reserved. HP Notes T2.6 HP Notes can be installed on any system running $ IF NOTES$ALPHA_SYS $ THEN write sys$output - " OpenVMS AXP ''NOTES$VMS_REL_VER' (or later)." $ ELSE write sys$output - " OpenVMS VAX ''NOTES$VMS_REL_VER' (or later)." $ ENDIF $ TYPE SYS$INPUT This installation will fail if this system is running an older version of OpenVMS. HP Notes provides both a character-cell and a DECwindows/Motif user interface. Use of the DECwindows/Motif interface requires $ write sys$output - " that DECwindows/Motif ''NOTES$MOTIF_VERSION' (or later) be installed." $ TYPE SYS$INPUT This installation can continue and the character-cell interface can be used if the required version of DECwindows/Motif is not installed. HP Notes supports both DECnet and TCP/IP transports. Use of the TCP/IP transport requires prior installation of $ write sys$output - " ''NOTES$UCX_VERSION' (or later) of DEC TCP/IP Services for VMS." $ TYPE SYS$INPUT Installation can continue and only the DECnet transport will be used if the required version of DEC TCP/IP Services for VMS is not installed on this system. An appropriate software license is required to run HP Notes. The license should be installed before attempting to install HP Notes. If you have not yet installed a HP Notes license, you can continue with this installation, but you will be unable to run either HP Notes or the HP Notes Installation Verification Procedure until an appropriate license has been installed. *********************************************************** $ VMI$CALLBACK ASK NOTES$CONTINUE_INSTALL - "Do you want to continue with this installation" "YES" BD $ IF .NOT. NOTES$CONTINUE_INSTALL THEN GOTO error_exit $ write sys$output "" $ VMI$CALLBACK SET PURGE ASK ! ask if files should be purged $ VMI$CALLBACK SET IVP ASK ! ask if IVP should be run $ write sys$output "" $ write sys$output "" $ VMI$CALLBACK MESSAGE I CHKPRDVER "Checking installation requirements" $ TYPE SYS$INPUT All installation and product dependencies will now be checked. If problems are discovered, it may still be possible to complete this installation, depending upon the nature of the problems. $ ! $ !*********************** CHECK PRODUCT DEPENDENCIES ***************** $ ! $ ! Check VMS version $ ! $ VMI$CALLBACK MESSAGE I VMSVER "Checking OpenVMS version..." $ VMI$CALLBACK CHECK_VMS_VERSION VMS_VERSION_OK 'NOTES$VMS_REL_VER' $ ! $ ! Indicate wrong version and exit $ ! $ IF .NOT. VMS_VERSION_OK $ THEN $ IF NOTES$ALPHA_SYS $ THEN $ VMI$CALLBACK MESSAGE E VERSION - "This kit must be installed on an existing OpenVMS AXP ''NOTES$VMS_REL_VER' system." $ ELSE $ VMI$CALLBACK MESSAGE E VERSION - "This kit must be installed on an existing OpenVMS VAX ''NOTES$VMS_REL_VER' system." $ ENDIF $ NOTES$ERROR_EXIT = 1 $ VMI$CALLBACK MESSAGE I CHECK "Checking other installation requirements" $ ENDIF $ ! $ ! Check for Motif installed, and version. $ ! $ VMI$CALLBACK MESSAGE I MOTIFVER "Checking DECwindows/Motif version..." $ VMI$CALLBACK FIND_FILE NOTES$MOTIF_DWM_FILE - VMI$ROOT:[SYSLIB]DECW$DXMLIBSHR.EXE "" S $ IF $STATUS .EQ. VMI$_SUCCESS $ THEN $ NOTES$MOTIF_FOUND = 1 $ ELSE $ NOTES$MOTIF_FOUND = 0 $ ENDIF $ IF NOTES$MOTIF_FOUND $ THEN $ VMI$CALLBACK CHECK_PRODUCT_VERSION NOTES$MOTIF_VERSION_OK - NOTES$MOTIF_DWM_FILE 'NOTES$MOTIF_VERSION' - "DECwindows/Motif" $ IF .NOT. NOTES$MOTIF_VERSION_OK $ THEN $ NOTES$MOTIF_FOUND = 0 $ NOTES$ASK_CONTINUE = 1 $ ENDIF $ ENDIF $ ! $ ! Check for UCX installed, version. $ ! $ VMI$CALLBACK MESSAGE I UCXVER "Checking DEC TCP/IP Services for VMS version..." $ VMI$CALLBACK FIND_FILE NOTES$UCX_FILE - VMI$ROOT:[SYSEXE]TCPIP$UCP.EXE "" S $ IF $STATUS .EQ. VMI$_SUCCESS $ THEN $ NOTES$UCX_FOUND = 1 $ ELSE $ NOTES$UCX_FOUND = 0 $ ENDIF $ IF NOTES$UCX_FOUND $ THEN $ VMI$CALLBACK CHDiU$$ NOTES026.Af [NOTES.TEMPKIT]KITINSTAL.COM;1ZH"ECK_PRODUCT_VERSION NOTES$UCX_VERSION_OK - NOTES$UCX_FILE 'NOTES$UCX_VERSION' - "DEC UCX" $ IF .NOT. NOTES$UCX_VERSION_OK $ THEN $ NOTES$UCX_FOUND = 0 $ NOTES$ASK_CONTINUE = 1 $ ELSE $ VMI$CALLBACK CHECK_LICENSE NOTES$UCX_LICENSE UCX DEC 2.0 17-NOV-1858 $ IF .NOT. NOTES$UCX_LICENSE $ then $ VMI$CALLBACK MESSAGE W UCXNOTLICD - "DEC TCP/IP Services for VMS is not licensed on this system." - "''vmi$product' uses some of these services." $ NOTES$UCX_FOUND = 0 $ NOTES$ASK_CONTINUE = 1 $ ELSE $ NOTES$TCP_FOUND = 1 $ ENDIF $ ENDIF $ ENDIF $ ! $ !*********************** END CHECK PRODUCT DEPENDENCIES ***************** $ ! $ ! $ ! $ !*********************** CHECK INSTALLATION DEPENDENCIES ***************** $ VMI$CALLBACK MESSAGE I SYSRES "Checking system resources..." $ ! $ ! We'll be updating DCLTABLES.EXE, so make sure that both free disk space $ ! and free global pages will accommodate a new version of DCLTABLES.EXE. $ ! $ NOTES$TEMP = F$FILE_ATTRIBUTES("SYS$LIBRARY:DCLTABLES.EXE","ALQ") $ NOTES$GBL_PAGE = NOTES$GBL_PAGE + NOTES$TEMP $ NOTES$NET_SIZE = NOTES$NET_SIZE + NOTES$TEMP $ ! $ ! Make sure there are at least 'NOTES$NET_SIZE' free blocks on system disk. $ ! $ VMI$CALLBACK CHECK_NET_UTILIZATION NOTES$ - NOTES$NET_SIZE - ! Total free space required during install NOTES$TRG_NET_SIZE - ! Free space for completed install NOTES$AWD_NET_SIZE ! Free space on work device during install $ IF .NOT. NOTES$ $ THEN $ VMI$CALLBACK MESSAGE E NOSPACE - "Aborting the installation due to lack of disk space." $ WRITE SYS$OUTPUT " HP Notes requires a total of ''NOTES$NET_SIZE' free disk blocks." $ ENDIF $ IF NOTES$ THEN GOTO space_ok $ $ NOTES$ERROR_EXIT = 1 $ $ space_ok: $ ! $ ! Make sure that the minimum values required for GBLPAGES and GBLSECTIONS $ ! exist. $ ! $ VMI$CALLBACK GET_SYSTEM_PARAMETER NOTES$PAGES FREE_GBLPAGES $ IF (NOTES$PAGES .GE. NOTES$GBL_PAGE) THEN GOTO gblpages_ok $ VMI$CALLBACK MESSAGE E NOPAGES - ! error - not enough global pages "HP NOTES needs a minimum of ''NOTES$GBL_PAGE' global pages." $ VMI$CALLBACK MESSAGE I NOPAGES - "Aborting the installation due to lack of global pages." $ NOTES$ERROR_EXIT = 1 $ $ gblpages_ok: $ VMI$CALLBACK GET_SYSTEM_PARAMETER NOTES$SECTIONS FREE_GBLSECTS $ IF (NOTES$SECTIONS .GE. NOTES$GBL_SECT) THEN GOTO gblsect_ok $ VMI$CALLBACK MESSAGE E NOSECT - ! error - not enough global sections "HP NOTES needs a minimum of ''NOTES$GBL_SECT' global sections." $ VMI$CALLBACK MESSAGE I NOSECT - "Aborting the installation due to lack of global sections." $ NOTES$ERROR_EXIT = 1 $ $ gblsect_ok: $ ! $ ! Check process privileges $ ! $ NOTES$AUTH_PRIVS = F$GETJPI("","AUTHPRIV") $ NOTES$SETPRV=F$LOCATE("SETPRV",NOTES$AUTH_PRIVS) $ NOTES$PRIV_LEN = F$LENGTH(NOTES$AUTH_PRIVS) $ IF NOTES$SETPRV .LT. NOTES$PRIV_LEN THEN GOTO ALLOW_EXIT $ NOTES$REQ_COUNTER = 0 $ check_privs: $ NOTES$CUR_PRIV = F$ELEMENT(NOTES$REQ_COUNTER,",",NOTES$REQ_PRIVS) $ NOTES$TEMP = F$LOCATE(NOTES$CUR_PRIV,NOTES$AUTH_PRIVS) $ IF NOTES$TEMP .GE. NOTES$PRIV_LEN $ THEN $ VMI$CALLBACK MESSAGE E INSUFPRIV - "Insufficient privileges to run this installation" $ VMI$CALLBACK MESSAGE I REQPRIV - "Required privileges: ''NOTES$REQ_PRIVS" $ NOTES$ERROR_EXIT = 1 $ ELSE $ NOTES$REQ_COUNTER = NOTES$REQ_COUNT + 1 $ IF NOTES$REQ_COUNTER .LT. NOTES$NUM_REQ_PRIVS THEN GOTO check_privs $ ENDIF $ ! $ ! Check process quotas here (there are no requirements imposed by Notes $ ! beyond those checked by VMSINSTAL). $ ! $ ! $ ! $ !********************** END CHECK INSTALLATION DEPENDENCIES ***************** $ ! $ ! Exit or whatever, if problem detected above. $ ! $ ALLOW_EXIT: $ IF NOTES$ERROR_EXIT THEN GOTO ERROR_EXIT $ IF NOTES$ASK_CONTINUE $ THEN $ WRITE SYS$OUTPUT "" $ VMI$CALLBACK MESSAGE I OKTOCONT "Installation can continue" $ WRITE SYS$OUTPUT "" $ VMI$CALLBACK ASK NOTES$CONTINUE_INSTALL - "Do you want to continue with this installation" "Yes" BD $ IF .NOT. NOTES$CONTINUE_INSTALL THEN GOTO error_exit $ WRITE SYS$OUTPUT "" $ ENDIF $ ! $ ! Check for full-server or client-only license $ ! $ get_capability: $ NOTES$CLUSTER = F$GETSYI ("CLUSTER_MEMBER") $ IF .NOT. NOTES$CLUSTER THEN GOTO not_cluster $ TYPE SYS$INPUT NOTE for VMS cluster installations: Only one Notes installation needs to be done on a cluster even if different licenses will be loaded on different nodes. If more than one license type will be loaded on the cluster, choose the lowest number below for which you have a license. $ not_cluster: $ TYPE SYS$INPUT Please indicate the level of capability that you want to install: 1. Full capability (NOTES or NOTES-USER) 2. TeamLinks HP Notes server (NOTES-SERVER-LANLINK) 3. Full capability except no remote user access (NOTES-LOCAL) 4. Reduced capability, client-only (NOTES-CLIENT or NOTES-CLIENT-USER) $ ! $ VMI$CALLBACK ASK NOTES$CAPABILITY - "Enter the number of the level of capability to install" - "1" I "@VMI$KWD:KITINSTAL help_capability" $ ! $ IF (NOTES$CAPABILITY .LT. 1) .OR. (NOTES$CAPABILITY .GT. 4) THEN - GOTO get_capability $ ! Confirm the NOTES license $ ! $ ON ERROR THEN GOTO license_err ! don't quit if license not installed $ NOTES$PROVIDE_SERVER == TRUE ! Default to server capability $ NOTES$PROVIDE_LIB == TRUE ! provide notes$library $! $ IF (NOTES$CAPABILITY .EQ. 1) ! NOTES or NOTES-USER license $ THEN ! PROVIDE_SERVER = TRUE, PROVIDE_LIB = TRUE $ VMI$CALLBACK CONFIRM_LICENSE NOTES$LICENSE - "NOTES or NOTES-USER" DEC 'NOTES$VERSION' 'NOTES$DATE' $ ELSE IF (NOTES$CAPABILITY .EQ. 2) ! NOTES-SERVER-LANLINK license $ THEN ! PROVIDE_SERVER = TRUE, PROVIDE_LIB = TRUE $ VMI$CALLBACK SET IVP NO ! don't run IVP $ VMI$CALLBACK CONFIRM_LICENSE NOTES$LICENSE - "NOTES-SERVER-LANLINK" DEC 'NOTES$VERSION' 'NOTES$DATE' $ TYPE SYS$INPUT ! let the user know The NOTES IVP will NOT be run as part of this installation. It is recommended that NOTES be tested using a PC and Digital Equipment Corporation's TeamLinks software. $ ELSE IF (NOTES$CAPABILITY .EQ. 3) ! NOTES-LOCAL license $ THEN ! PROVIDE_SERVER = FALSE, PROVIDE_LIB = TRUE $ NOTES$PROVIDE_SERVER == FALSE ! No server capability $ VMI$CALLBACK CONFIRM_LICENSE NOTES$LICENSE - "NOTES-LOCAL" DEC 'NOTES$VERSION' 'NOTES$DATE' $ ELSE IF (NOTES$CAPABILITY .EQ. 4) ! NOTES-CLIENT or NOTES-CLIENT-USER license $ THEN ! PROVIDE_SERVER = FALSE, PROVIDE_LIB = FALSE $ NOTES$PROVIDE_SERVER == FALSE ! No server capability $ NOTES$PROVIDE_LIB == FALSE ! No notes$library $ VMI$CALLBACK CONFIRM_LICENSE NOTES$LICENSE - "NOTES-CLIENT or NOTES-CLIENT-USER" DEC 'NOTES$VERSION' 'NOTES$DATE' $ ENDIF $ ENDIF $ ENDIF $ ENDIF $ ! $ ! $ ! $ IF NOTES$LICENSE THEN GOTO license_ok ! if license is installed $ ! $ license_err: ! license registration failed $ VMI$CALLBACK SET IVP NO ! don't run IVP $ TYPE SYS$INPUT ! let the user know An authorization key for NOTES has not been registered and loaded. The NOTES IVP will NOT be run as part of this installation. It is recommended that the IVP be run after the NOTES license has been registered and loaded. $ ! $ license_ok: ! continue with installation $ ON WARNING THEN GOTO error_exit $ ! $ ! $ ! Determine what needs to be installed $ ! $ NOTES$LNM = "SYS$LOGIN:" ! default to no NOTES$LIBRARY $ NOTES$NCP == 0 ! default to no DECNET $ ! $ NOTES$SET_SERVER_PSW == 0 $ NOTES$SET_NCP_PSW == 0 $ IF .NOT. NOTES$PROVIDE_SERVER THEN GOTO create_dir $ ! $ ! Create the NOTES$SERVER account $ ! $ pwd1 = F$CVTIME(F$TIME(),,"TIME")-":"-":"-"." $ NOTES$ACC = FALSE ! assume no NOTES$SERVER acc't $ NOTES$UIC == "" ! assume no NOTES$SERVER uic $ NOTES$MAXSYSGROUP == 0 $ NOTES$ID = 0 ! assume no RIGHTSLIST id $ ! $ VMI$CALLBACK FIND_FILE RIGHTSLIST RIGHTSLIST VMI$ROOT:[SYSEXE].DAT S NOTES$RIGHTSLIST_FILE $ IF (NOTES$RIGHTSLIST_FILE .EQS. "S") THEN - NOTES$ID = F$IDENTIFIER("NOTES$SERVER","NAME_TO_NUMBER") $ ! $ ! See if the NOTES$SERVER account already exists $ ! (Following depends on AUTHORIZE creating a null file if UIC doesn't exist) $ ! $ SET NOON $ AUTHORIZE = "$AUTHORIZE" $ VMI$NO_ERROR $ DEFINE/USER SYS$OUTPUT VMI$KWD:UIC1.TMP $ IF (F$TRNLNM("SYSUAF") .EQS. "") THEN - DEFINE/USER SYSUAF 'F$PARSE("SYSUAF","SYS$SYSTEM:.DAT",,,"SYNTAX_ONLY")' $ IF (F$TRNLNM("NETPROXY") .EQS. "") THEN - DEFINE/USER NETPROXY 'F$PARSE("NETPROXY","SYS$SYSTEM:.DAT",,,"SYNTAX_ONLY")' $ A$ NOTES026.Af [NOTES.TEMPKIT]KITINSTAL.COM;1Z""UTHORIZE SHOW/BRIEF NOTES$SERVER $ SET ON $ OPEN/READ/ERROR=acc10 F1 VMI$KWD:UIC1.TMP $ READ/END=acc10 F1 LINE $ READ/END=acc10 F1 LINE $ READ/END=acc10 F1 LINE $ NOTES$UIC == F$EDIT(F$EXTRACT(37,13,LINE),"COLLAPSE") $ NOTES$ACC = TRUE ! We have NOTES$SERVER account $ ! $ acc10: $ CLOSE/NOLOG F1 $ VMI$CALLBACK DELETE_FILE VMI$KWD:UIC1.TMP $ pwd2 = F$CVTIME(F$TIME(),,"TIME")-":"-":"-"." $ NOTES$PWD = "''pwd2'" + "''F$GETJ("","CPUTIM")'"+ "''pwd1'" $ IF (NOTES$ID .NE. 0) THEN NOTES$UIC == "NOTES$SERVER" $ IF (NOTES$UIC .NES. "") THEN GOTO getuser10 $ ! $ ! Get a UIC for the server account $ ! $ getuic: $ IF NOTES$MAXSYSGROUP .EQ. 0 $ THEN $ VMI$CALLBACK GET_SYSTEM_PARAMETER NOTES$MAXSYSGROUP MAXSYSGROUP $ ENDIF $ TYPE SYS$INPUT In order to ensure that the HP Notes server runs with the proper quotas, this installation procedure will create an account for the server. This account, NOTES$SERVER, has no special privileges and is set up for only network operation. You must specify a unique UIC for this account in order to ensure proper security of your conferences. You may want to change the password on this account after the installation has completed. If you do, you must also change the password with NCP SET/DEF OBJECT NOTES commands. $ ! $ getuic2: $ VMI$CALLBACK ASK NOTES$UIC - "Enter UIC for NOTES server account (include brackets)" - "[376,377]" S "@VMI$KWD:KITINSTAL help_server_uic" $ ! $ ! (Following depends on AUTHORIZE creating a null file if UIC doesn't exist) $ ! $ NOTES$TMP = F$EXTRACT(0,1,NOTES$UIC) $ IF NOTES$TMP .NES. "[" THEN NOTES$UIC :== "[''NOTES$UIC']" $ SET NOON $ AUTHORIZE = "$AUTHORIZE" $ VMI$NO_ERROR $ DEFINE/USER SYS$OUTPUT VMI$KWD:UIC.TMP $ IF (F$TRNLNM("SYSUAF") .EQS. "") THEN - DEFINE/USER SYSUAF 'F$PARSE("SYSUAF","SYS$SYSTEM:.DAT",,,"SYNTAX_ONLY")' $ IF (F$TRNLNM("NETPROXY") .EQS. "") THEN - DEFINE/USER NETPROXY 'F$PARSE("NETPROXY","SYS$SYSTEM:.DAT",,,"SYNTAX_ONLY")' $ AUTHORIZE SHOW/BRIEF 'NOTES$UIC' $ SET ON $ OPEN/READ/ERROR=UIC10 F1 VMI$KWD:UIC.TMP $ READ/END=UIC10 F1 LINE $ TYPE SYS$INPUT The UIC you have specified is already in use. Please enter a unique UIC. $ NOTES$UIC :== "" $ ! $ uic10: $ CLOSE/NOLOG F1 $! DELETE/NOLOG VMI$KWD:UIC.TMP;* $ VMI$CALLBACK DELETE_FILE VMI$KWD:UIC.TMP $ IF (NOTES$UIC .EQS. "") THEN GOTO getuic $ NOTES$TMP1 = F$LOCATE(",",NOTES$UIC) $ NOTES$TMP2 = F$EXTRACT(1,NOTES$TMP1-1,NOTES$UIC) $ IF NOTES$TMP2 .GES. "0" .AND. NOTES$TMP2 .LES. "7" $ THEN $ NOTES$GROUPNUM = F$INTEGER(NOTES$TMP2) $ IF NOTES$GROUPNUM .GT. NOTES$MAXSYSGROUP THEN GOTO getuser10 $ ELSE $ VMI$CALLBACK MESSAGE W BADVAL "Invalid UIC" $ GOTO getuic2 $ ENDIF $ $ TYPE SYS$INPUT The UIC you have specified falls within the range of SYSTEM UIC'S. $ VMI$CALLBACK ASK NOTES$TMP - "Do you want to specify a non-SYSTEM UIC" "Y" B $ IF NOTES$TMP THEN GOTO getuic2 $ $ ! $ getuser10: $ IF NOTES$ACC THEN GOTO getuser11 $ ! $ ! Find a value of WSEXTENT that is appropriate just in case DEFAULT isn't $ ! $ VMI$CALLBACK GET_SYSTEM_PARAMETER NOTES$WSMAX WSMAX $ NOTES$WSEXTENT = (NOTES$WSMAX * 62)/100 $ IF (NOTES$WSEXTENT .LT. 512) THEN NOTES$WSEXTENT = 512 $ IF (NOTES$WSEXTENT .GT. 2048) THEN NOTES$WSEXTENT = 2048 $ NOTES$WSQUOTA = NOTES$WSEXTENT/2 $ NOTES$WSDEFAULT = "/WSQUOTA=''NOTES$WSQUOTA'/WSEXTENT=''NOTES$WSEXTENT'" $ ! $ ! Now create the NOTES$SERVER account $ ! $ VMI$CALLBACK MESSAGE I CREACC - "Creating account NOTES$SERVER for the HP Notes server" $ VMI$CALLBACK CREATE_ACCOUNT NOTES$SERVER - "/OWN=NOTES_SERVER/PASSWORD=''NOTES$PWD'/UIC=''NOTES$UIC'/ACCOUNT=DECNET" $ NOTES$SET_SERVER_PSW == 1 $ ! $ VMI$CALLBACK MESSAGE I MODACC - "Modifying account NOTES$SERVER quotas..." $ VMI$CALLBACK UPDATE_ACCOUNT NOTES$SERVER - "/LGICMD=SYS$SYSTEM:NOTES$SERVER_LOGIN/DEVICE=SYS$SYSDEVICE:/DIRECTORY=[NOTES$SERVER]" $ VMI$CALLBACK UPDATE_ACCOUNT NOTES$SERVER - "/PRIVILEGE=(NOALL,TMPMBX,NETMBX)/DEFPRIV=(NOALL,TMPMBX,NETMBX)" $ VMI$CALLBACK UPDATE_ACCOUNT NOTES$SERVER - "/FILLM=300/BIOLM=120/DIOLM=120/ASTLM=120/ENQLM=120/BYTLM=32767''NOTES$WSDEFAULT'" $ VMI$CALLBACK UPDATE_ACCOUNT NOTES$SERVER - "/FLAG=(RESTRICT,NOCAPTIVE,DISMAIL,NODISUSER)/NETWORK/NOBATCH/NOINTERACTIVE/PRCLM=0/MAXJOB=0/SHRFILLM=0" $ ! $ VMI$CALLBACK CREATE_DIRECTORY USER SYS$SYSDEVICE:[NOTES$SERVER] - "/OWNER=''NOTES$UIC'" $ GOTO create_dir $ ! $ getuser11: $ VMI$CALLBACK MESSAGE I EXISTS - "NOTES$SERVER account already exists, updating..." $ VMI$CALLBACK MESSAGE I MODACC - "Modifying account NOTES$SERVER..." $ VMI$CALLBACK UPDATE_ACCOUNT NOTES$SERVER - "/LGICMD=SYS$SYSTEM:NOTES$SERVER_LOGIN" $ VMI$CALLBACK UPDATE_ACCOUNT NOTES$SERVER - "/PRIVILEGE=(NOALL,TMPMBX,NETMBX)/DEFPRIV=(NOALL,TMPMBX,NETMBX)" $ ! $ ! $ ! Set up the NOTES$LIBRARY directory $ ! $ create_dir: $ ! $ IF (.NOT. NOTES$PROVIDE_LIB) THEN GOTO update_startup $ ! $ NOTES$DIR = "NOTES$LIBRARY" $ NOTES$LNM = F$TRNLNM(NOTES$DIR,"LNM$SYSTEM") $ IF F$LOC("::",NOTES$LNM) .LT. F$LEN(NOTES$LNM) THEN NOTES$LNM = "" $ IF (NOTES$LNM .EQS. "SYS$LOGIN:") THEN NOTES$LNM = "" $ IF (NOTES$LNM .EQS. "") THEN GOTO credir10 $ ! $ VMI$CALLBACK MESSAGE I EXISTS - "The logical NOTES$LIBRARY exists" $ NOTES$DIR_EXISTS = F$PARSE(NOTES$LNM) $ IF NOTES$DIR_EXISTS .EQS. "" $ THEN $ VMI$CALLBACK MESSAGE E NOTFOUND "The specified directory was not found" $ GOTO credir10 $ ELSE $ NOTES$TEMP_DEVICE = F$PARSE(NOTES$LNM,,,"DEVICE") $ NOTES$AVAIL = F$GETDVI("''NOTES$TEMP_DEVICE'","EXISTS") $ IF NOTES$AVAIL THEN NOTES$AVAIL = F$GETDVI("''NOTES$TEMP_DEVICE'","AVL") $ IF NOTES$AVAIL $ THEN $ NOTES$DEVICE == F$PARSE(NOTES$LNM,,,"DEVICE","SYNTAX_ONLY") ! exists $ NOTES$DIR = F$PARSE(NOTES$LNM,,,"DIRECTORY","SYNTAX_ONLY") - "[" - "]" $ VMI$CALLBACK MESSAGE I ASSUMEOK - "This installation will assume it is properly defined" $ GOTO getd20 $ ELSE $ VMI$CALLBACK MESSAGE E UNAVL "The specified device is not available" $ GOTO credir10 $ ENDIF $ ENDIF $ ! $ credir10: $ TYPE SYS$INPUT HP NOTES conference files are stored in a directory named [NOTES$LIBRARY]. You must designate the device on which this directory is to be created. Be sure that the device you specify has plenty of free blocks to permit normal conference file expansion. $ ! $ get_device: $ VMI$CALLBACK ASK NOTES$DEVICE - "Device to be used for storing conferences" "" S - "@VMI$KWD:KITINSTAL help_library_dir" $ NOTES$AVAIL = F$GETDVI("''NOTES$DEVICE'","EXISTS") $ IF NOTES$AVAIL THEN NOTES$AVAIL = F$GETDVI("''NOTES$DEVICE'","AVL") $ IF .NOT. NOTES$AVAIL $ THEN $ VMI$CALLBACK MESSAGE E UNAVL "The specified device is not available" $ GOTO get_device $ ENDIF $ IF F$PARSE(NOTES$DEVICE,"[_Z$Z_]",,"DIRECTORY") .NES. "[_Z$Z_]" THEN GOTO get_device $ NOTES$DEVICE == NOTES$DEVICE - ":" + ":" $ VMI$CALLBACK CREATE_DIRECTORY USER 'NOTES$DEVICE'['NOTES$DIR'] $ VMI$CALLBACK SECURE_FILE 'NOTES$DEVICE'[000000]'NOTES$DIR'.DIR - "[1,4]" "S=RWE,O=RWE,G=RE,W=RE" $ ! $ ! $ ! Disallow any network access except through NOTES$SERVER $ ! $ ! VMI$CALLBACK FIND_FILE SETSHOACL SETSHOACL VMI$ROOT:[SYSEXE].EXE S NOTES$SETSHOACL_IMAGE $ ! IF (NOTES$SETSHOACL_IMAGE .EQS. "") THEN GOTO getd20 $ IF (NOTES$PROVIDE_SERVER) $ THEN $ VMI$CALLBACK SET ACL DIRECTORY - "((IDENTIFIER=''NOTES$UIC',ACCESS=READ+EXECUTE), (IDENTIFIER=NETWORK,ACCESS=NONE) )" - 'NOTES$DEVICE'[000000]'NOTES$DIR'.DIR $! SET FILE/ACL=((IDENTIFIER='NOTES$UIC',ACCESS=READ+EXECUTE), (IDENTIFIER=NETWORK,ACCESS=NONE) ) - $! 'NOTES$DEVICE'[000000]'NOTES$DIR'.DIR $ ELSE $ VMI$CALLBACK SET ACL DIRECTORY - "((IDENTIFIER=NETWORK,ACCESS=NONE) )" - 'NOTES$DEVICE'[000000]'NOTES$DIR'.DIR $! SET FILE/ACL=( (IDENTIFIER=NETWORK,ACCESS=NONE) ) - $! 'NOTES$DEVICE'[000000]'NOTES$DIR'.DIR $ ENDIF $ ! $ getd20: $ NOTES$LNM = NOTES$DEVICE + "[" + NOTES$DIR + "]" $ DEFINE NOTES$LIBRARY 'NOTES$LNM' ! to insure NOTES$LIBRARY: is local logical $ ! $ IF (.NOT. NOTES$PROVIDE_SERVER) THEN GOTO update_startup $ ! $!++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ $! DEFINE_SERVER_OBJECT - determine whether the user is running DECnet $! phase iv or phase v, and dispatch to $! appropriate routine $!-------------------------------------------------------------------------- $ DEFINE_SERVER_OBJECT: $ VMI$CALLBACK FIND_FILE NETOBJECT NETOBJECT SYS$SYSTEM:.DAT S NOTES$NETOBJECT_FILE $ IF (NOTES$NETOBJECT_FILE .EQS. "") THEN GOTO update_startup $ SET NOON $ VMI$NO_ERROR $ !+ $ ! Check to see which DECnet version is running. Dispatch $ ! iM$ NOTES026.Af [NOTES.TEMPKIT]KITINSTAL.COM;1ZP"3 to appropriate object-definition subroutine. $ !- $ DECnetPhase = F$GETSYI ("DECNET_VERSION") $ DECnetPhase = F$EXTRACT (2,2, DECnetPhase) $ $ IF DECnetPhase .EQS. "04" $ THEN $ GOSUB DEFINE_SERVER_OBJECT_PHASE_IV $ ELSE $ IF DECnetPhase .EQS. "05" $ THEN $ GOSUB DEFINE_SERVER_OBJECT_PHASE_V $ ELSE $ VMI$CALLBACK MESSAGE E NODECNET - $ "Cannot find DECnet Phase IV or DECnet Phase V" $ EXIT VMI$_FAILURE $ ENDIF $ ENDIF $ ! $ ! Register with TCP/IP $ ! $ IF NOTES$UCX_FOUND $ THEN $ UCX SET SERVICE NOTES - /USER=NOTES$SERVER- /PROCESS=NOTESRVR- /PORT=3333- /FILE=SYS$SYSTEM:NOTES$SERVER.COM- /LIMIT=255- /FLAGS=(LISTEN,MULTITHREAD) $ TYPE SYS$INPUT The TCP/IP service NOTES has been defined. If you wish to view this, run SYS$SYSTEM:UCX and issue the command UCX> SHOW SERVICE/FULL NOTES $ ENDIF $! $ goto update_startup $! $!++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ $! DEFINE_SERVER_OBJECT_PHASE_IV - Define the NOTES Object in the network $!-------------------------------------------------------------------------- $ DEFINE_SERVER_OBJECT_PHASE_IV: $ ! $ ! Define the NOTES Object $ ! $ set_object: $ NCP = "$NCP" $ DEFINE/USER SYS$OUTPUT VMI$KWD:NCP.TMP $ VMI$NO_ERROR $ MCR NCP LIST OBJECT NOTES $ NOTES$SAVE_STATUS = $status $ SET ON $ IF NOTES$SAVE_STATUS then NOTES$NCP == 1 $ VMI$CALLBACK DELETE_FILE VMI$KWD:NCP.TMP $ MCR NCP DEFINE OBJECT NOTES NUMBER 33 - FILE NOTES$SERVER.EXE USER NOTES$SERVER PROXY OUTGOING $ IF (NOTES$NCP .EQ. 0) $ THEN $ MCR NCP DEFINE OBJECT NOTES PASSWORD 'NOTES$PWD' $ NOTES$SET_NCP_PSW == 1 $ ENDIF $ TYPE SYS$INPUT The DECnet object NOTES has been defined. If you wish to view this, run SYS$SYSTEM:NCP and issue the command NCP> LIST OBJECT NOTES CHAR $ ! $ ! $ ! See if DECNET is running $ ! $ NOTES$NCP == 0 $ IF .NOT. F$GETDVI("NET0","EXISTS") THEN GOTO update_startup $ IF .NOT. F$GETDVI("NET0","MNT") THEN GOTO update_startup $ NOTES$NCP == 1 $ SET NOON $ VMI$NO_ERROR $ VMI$NO_OUTPUT $ MCR NCP CLEAR OBJECT NOTES ALL $ SET ON $ RETURN $!++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ $! DEFINE_SERVER_OBJECT_PHASE_V - Define the NOTES$SERVER Object in the $! network database. $! Parameters for SYS$MANAGER:NET$CONFIGURE are: $! p1 "APPLICATION_ADD" $! p2 the application name $! p3 the username for the application (null if not used) and $! the UIC for that Username. (Seperated by the '|') $! p4 the parameters for the application (see below) $! p5 (optional) Boolean value - NCL invocation after script $! creation $! p4 breakdown - each item should be separated by the '|' $! character, a placeholder of a null for unused $! parameters. $! $! x0 destination address (name = "NAME" or number = 10) $! x1 client $! x2 image name $! x3 incoming alias (boolean) $! x4 incoming proxy (boolean) $! x5 outgoing alias (boolean) $! x6 outgoing proxy (boolean) $! x7 required synonym (boolean) $! x8 tsap $! x9 X25 filter $! x10 X25 type $! example: $! parameters = "Number=10||SYS$SYSTEM:TEST.EXE|||||TRUE|||" $!-------------------------------------------------------------------------- $ DEFINE_SERVER_OBJECT_PHASE_V: $ !+ $ ! determine whether the server object is already there $ !- $ NCL = "$NCL" $ NOTES$SET_NCP_PSW == NOTES$SET_SERVER_PSW $ VMI$NO_OUTPUT $ VMI$NO_ERROR $ NCL SHOW SESSION CONTROL APPLICATION NOTES $ !+ $ ! if it's not there, declare the object $ !- $ IF .NOT. $STATUS $ THEN $ !+ $ ! add the server object $ !- $ VMI$NO_OUTPUT $ VMI$NO_ERROR $ @VMI$ROOT:[SYSMGR]NET$CONFIGURE "APPLICATION_ADD" - "NOTES" - "NOTES$SERVER|''NOTES$UIC'" - "{NAME=NOTES,NUMB=33}||SYS$SYSTEM:NOTES$SERVER.EXE|true|false|true|true|true||NET$EXAMINE%NET$DECLAREOBJECT%NET$DECNETACCESS" - 1 $ ENDIF $ $ RETURN $ $ ! $ ! $ ! Update NOTES$STARTUP.COM $ ! $ update_startup: $ NOTES$PASSWORD_ERROR == 0 $ IF NOTES$PROVIDE_SERVER $ THEN $ IF NOTES$SET_SERVER_PSW .NE. NOTES$SET_NCP_PSW $ THEN $ VMI$CALLBACK MESSAGE W PSWD "Probable HP Notes server password mis-match" $ TYPE SYS$INPUT The password defined via AUTHORIZE for your NOTES$SERVER account and the password defined via NCP for your DECnet NOTES object must be identical to allow the HP Notes server to function correctly. At this point, they may be different. $ VMI$CALLBACK ASK NOTES$SET_PASSWORD - "Would you like the two passwords set equivalent now" "Y" BS $ IF NOTES$SET_PASSWORD $ THEN $ IF .NOT. NOTES$SET_SERVER_PSW $ THEN $ VMI$CALLBACK MESSAGE I MODACC "Modifying account NOTES$SERVER..." $ VMI$CALLBACK UPDATE_ACCOUNT NOTES$SERVER "/PASS=''NOTES$PWD'" $ NOTES$SET_SERVER_PSW == 1 $ ELSE $ VMI$CALLBACK MESSAGE I MODACC "Modifying DECnet NOTES object..." $ MCR NCP DEFINE OBJECT NOTES PASSWORD 'NOTES$PWD' $ NOTES$SET_NCP_PSW == 1 $ ENDIF $ ELSE $ VMI$CALLBACK SET IVP NO $ NOTES$PASSWORD_ERROR == 1 $ ENDIF $ ENDIF $ ENDIF $ TYPE SYS$INPUT No further questions will be asked during this installation. Completion of the installation should take another 5-10 minutes. $ OPEN/WRITE F1 VMI$KWD:NOTESLIB.TMP $ IF .NOT. NOTES$PROVIDE_SERVER $ THEN $ WRITE F1 "$ IF F$TRNLNM (""NOTES$LIBRARY"",""LNM$SYSTEM"") .EQS. """" THEN -" $ ENDIF $ WRITE F1 "$ DEFINE/NOLOG/SYSTEM/EXEC NOTES$LIBRARY ''NOTES$LNM'" $ WRITE F1 "$ EXIT NOTES$EXIT_STATUS" $ CLOSE/NOLOG F1 $ SET NOON $ VMI$NO_ERROR $ VMI$NO_OUTPUT $ APPEND VMI$KWD:NOTESLIB.TMP VMI$KWD:NOTES$STARTUP_END.COM $ VMI$CALLBACK DELETE_FILE VMI$KWD:NOTESLIB.TMP $ OPEN/APPEND F1 VMI$KWD:NOTES$STARTUP.COM $ WRITE F1 "$ NOTES$GBL_PAGE = ''NOTES$OPT_GBL_PAGE'" $ WRITE F1 "$ NOTES$GBL_SECT = ''NOTES$OPT_GBL_SECT'" $ WRITE F1 "$ NOTES$SECT_FILE_GBLPAG = ''NOTES$OPT_SECF_GPG'" $ CLOSE/NOLOG F1 $ VMI$NO_ERROR $ VMI$NO_OUTPUT $ APPEND VMI$KWD:NOTES$STARTUP_END.COM VMI$KWD:NOTES$STARTUP.COM $ SET ON $ ! $ ! $ ! Put the correct IVPs into the test directory $ ! $ IF NOTES$PROVIDE_SERVER $ THEN $ VMI$CALLBACK PROVIDE_FILE NOTES$IVP NOTES$IVP.COM VMI$ROOT:[SYSTEST] $ VMI$CALLBACK SECURE_FILE NOTES$IVP "" "W" $ ENDIF $ VMI$CALLBACK PROVIDE_FILE NOTES$IVP_CLIENT NOTES$IVP_CLIENT.COM VMI$ROOT:[SYSTEST] $ VMI$CALLBACK SECURE_FILE NOTES$IVP_CLIENT "" "W" $ ! $ VMI$CALLBACK PROVIDE_FILE NOTES$IVP_LOCAL NOTES$IVP_LOCAL.COM VMI$ROOT:[SYSTEST] $ VMI$CALLBACK SECURE_FILE NOTES$IVP_LOCAL "" "W" $ ! $ ! $ ! Move the files $ ! $ TYPE SYS$INPUT This installation will add the following files: [SYSLIB]NOTES$SHARE.EXE [SYSLIB]NOTES$SECTION.TPU$SECTION [SYSEXE]NOTES$MAIN.EXE $ ! $ IF .NOT. NOTES$PROVIDE_SERVER THEN GOTO no_server $ ! $ TYPE SYS$INPUT [SYSEXE]NOTES$SERVER.EXE [SYSEXE]NOTES$SERVER_LOGIN.COM SYS$SYSROOT:[SYSTEST]NOTES$IVP.COM $ no_server: $ TYPE SYS$INPUT [SYSMGR]NOTES$REMOVE.COM $ IF .NOT. NOTES$PROVIDE_LIB THEN GOTO no_lib $ TYPE SYS$INPUT [SYSMGR]NOTES$MOVE_CONFERENCE.COM NOTES$LIBRARY:NOTES$SAMPLE.NOTE $ ! $ no_lib: $ TYPE SYS$INPUT SYS$SYSROOT:[SYSTEST]NOTES$IVP_CLIENT.COM SYS$SYSROOT:[SYSTEST]NOTES$IVP_LOCAL.COM [SYSHLP]NOTES$025.RELEASE_NOTES [SYSHLP]NOTES_SHORTGUIDE.MEM [SYSHLP]NOTES$HELP.HLB [SYSHLP]NOTES$DWHELP.HLB [SYSLIB]NOTES$DWSHARE.EXE [SYSLIB]NOTES$DWNOTES.UID [SYSLIB]NOTES$DEFAULTS.DAT [SYS$STARTUP]NOTES$STARTUP.COM $ IF F$TRNLNM("DECW$SYSTEM_DEFAULTS") .NES. "" $ THEN $ TYPE SYS$INPUT [DECW$DEFAULTS.SYSTEM]LWK_REG_NOTESNOTE.UID $ ENDIF $ ! $ IF .NOT. NOTES$PROVIDE_SERVER THEN GOTO common_files $ ! $ VMI$CALLBACK PROVIDE_IMAGE NOTES$SERVER NOTES$SERVER.EXE - VMI$ROOT:[SYSEXE] $ VMI$CALLBACK SET ACL FILE - "((IDENTIFIER=''NOTES$UIC',ACCESS=READ+EXECUTE), (IDENTIFIER=*,ACCESS=NONE))" - NOTES$SERVER $ VMI$CALLBACK PROVIDE_FILE NOTES$SERVER_LOGIN NOTES$SERVER_LOGIN.COM - VMI$ROOT:[SYSEXE] $ VMI$CALLBACK SECURE_FILE NOTES$SERVER_LOGIN "" "S=RWED,O=RWE,G=RE,W=RE" $ ! $ common_files: $ VMI$CALLBACK PROVIDE_FILE NOTES$REMOVE - NOTES$REMOVE.COM VMI$ROOT:[SYSMGR] $ VMI$CALLBACK SECURE_FILE NOTES$REMOVE "" "W" $ IF (.NOT. NOTES$PROVIDE_LIB) THEN GOTO no_common_lib $ VMI$CALLBACK PROVIDE_FILE NOTES$MOVE_CONFERENCE - NOTES$MOVE_CONFERENCE.COM VMI$ROOT:[SYSMGR] $ VMI$CALLBACK SECURE_FILE NO@1x$ NOTES026.Af [NOTES.TEMPKIT]KITINSTAL.COM;1ZD DTES$MOVE_CONFERENCE "" "W" $ VMI$CALLBACK PROVIDE_FILE NOTES$SAMPLE_NOTE NOTES$SAMPLE.NOTE - 'NOTES$LNM' $ VMI$CALLBACK SECURE_FILE NOTES$SAMPLE_NOTE "" "W=RWE" $ ! $ no_common_lib: $ VMI$CALLBACK PROVIDE_FILE NOTES$STARTUP_FILE NOTES$STARTUP.COM - VMI$ROOT:[SYS$STARTUP] $ VMI$CALLBACK SECURE_FILE NOTES$STARTUP_FILE "" "W" $ VMI$CALLBACK PROVIDE_IMAGE NOTES$ NOTES$SHARE.EXE VMI$ROOT:[SYSLIB] $ VMI$CALLBACK PROVIDE_IMAGE NOTES$ NOTES$MAIN.EXE VMI$ROOT:[SYSEXE] $ VMI$CALLBACK PROVIDE_FILE NOTES$ NOTES$SECTION.TPU$SECTION VMI$ROOT:[SYSLIB] $ VMI$CALLBACK PROVIDE_FILE NOTES$ NOTES$HELP.HLB VMI$ROOT:[SYSHLP] $ VMI$CALLBACK PROVIDE_FILE NOTES$ NOTES_SHORTGUIDE.MEM VMI$ROOT:[SYSHLP] $ ! $ VMI$CALLBACK PROVIDE_FILE NOTES$ NOTES$DWHELP.HLB VMI$ROOT:[SYSHLP] $ VMI$CALLBACK PROVIDE_IMAGE NOTES$ NOTES$DWSHARE.EXE VMI$ROOT:[SYSLIB] $ VMI$CALLBACK PROVIDE_FILE NOTES$ NOTES$DWNOTES.UID VMI$ROOT:[SYSLIB] $!ankan - remove IF F$TRNLNM("DECW$SYSTEM_DEFAULTS") .NES. "" THEN - $! VMI$CALLBACK PROVIDE_FILE NOTES$ LWK_REG_NOTESNOTE.UID VMI$ROOT:[DECW$DEFAULTS.SYSTEM] $ VMI$CALLBACK PROVIDE_FILE NOTES$ NOTES$DEFAULTS.DAT VMI$ROOT:[SYSLIB] $ ! $ VMI$CALLBACK PROVIDE_DCL_HELP NOTESDCL.HLP $ VMI$CALLBACK PROVIDE_DCL_COMMAND NOTESDCL.CLD $ VMI$CALLBACK SET STARTUP VMI$ROOT:[SYS$STARTUP]NOTES$STARTUP.COM $ ! $ TYPE SYS$INPUT *********************************************************** REMINDERS: 1. SYSTEM STARTUP -------------- After the installation has completed, you should execute SYS$STARTUP:NOTES$STARTUP.COM on each system on which this copy of HP Notes will be run. You should also edit your system startup procedure to run SYS$STARTUP:NOTES$STARTUP.COM on each system on which this copy of HP Notes will be run. ** IMPORTANT NOTE: Installation instructions for previous versions of VAX Notes suggested that NOTES$STARTUP.COM be run prior to network startup during the system startup process. It is now recommended that NOTES$STARTUP run AFTER network startup has COMPLETED, particularly if TCP/IP will be used as the network transport for HP Notes connections. 2. HP NOTES SHUTDOWN OR DEINSTALLATION ------------------------------------ A new utility, SYS$MANAGER:NOTES$REMOVE.COM, can be used to deinstall HP Notes or to prevent new servers from executing. Type: $ @SYS$MANAGER:NOTES$REMOVE for further details. $ NOTES$ITEM_COUNT = 2 $ IF NOTES$PROVIDE_SERVER $ THEN $ NOTES$ITEM_COUNT = NOTES$ITEM_COUNT + 1 I WRITE SYS$OUTPUT "" WRITE SYS$OUTPUT " ''NOTES$ITEM_COUNT'. VMSCLUSTER ENVIRONMENTS" TYPE SYS$INPUT ! let the user know ----------------------- If HP Notes is run in a VMScluster environment with multiple copies of SYS$SYSTEM:NETOBJECT.DAT in use, NCP must be used to define the NOTES DECnet object in each copy of NETOBJECT.DAT. The password used when defining the NOTES object must always match the password for account NOTES$SERVER in the system authorization file. If HP Notes is run in a VMScluster environment with multiple copies of SYS$SYSTEM:UCX$SERVICE.DAT in use, it is similarly required that UCX be used to define the NOTES service in each copy of UCX$SERVICE.DAT. This can normally be accomplished by running NOTES$STARTUP.COM on each system. NOTES$STARTUP.COM will attempt to properly define and enable the NOTES service each time it is executed. $ IF NOTES$PASSWORD_ERROR $ THEN $ NOTES$ITEM_COUNT = NOTES$ITEM_COUNT + 1 $ WRITE SYS$OUTPUT "" $ WRITE SYS$OUTPUT " ''NOTES$ITEM_COUNT'. DEC NOTES IVP" $ TYPE SYS$INPUT ! let the user know ------------- The NOTES IVP will NOT be run as part of this installation: it would fail due to a probable non-match between the passwords defined for the NOTES$SERVER account and the NOTES DECnet object. It is recommended that the IVP be run after you manually set the passwords for the NOTES$SERVER account (via AUTHORIZE) and for the DECnet NOTES object (via NCP) to the same value. *********************************************************** $ ENDIF ! password_error $ ENDIF ! provide_server $ ! $ ! $ ! cleanup and done $ ! $ IF NOTES$NCP THEN NCP SET OBJECT NOTES ALL $ IF F$TRNLNM("NETOBJECT","LNM$PROCESS") .NES. "" THEN DEASSIGN NETOBJECT $ IF F$TRNLNM("NOTES$LIBRARY","LNM$PROCESS") .NES. "" THEN DEASSIGN NOTES$LIBRARY $ IF F$TRNLNM("RIGHTSLIST","LNM$PROCESS") .NES. "" THEN DEASSIGN RIGHTSLIST $ ! IF F$TRNLNM("SETSHOACL","LNM$PROCESS") .NES. "" THEN DEASSIGN SETSHOACL $ ! $ GOTO success_exit ! installation successful $ ! $ ! $ ! $ ! End of DEC NOTES installation $ ! $ ! $ success_exit: ! installation was successful $ NOTES$STATUS = VMI$_SUCCESS ! set success status $ GOTO notes_exit $ ! $ ! $ error_exit: ! installation error occurred $ NOTES$STATUS = VMI$_FAILURE ! set error status $ GOTO notes_exit $ ! $ ! $ notes_exit: ! installation done $ NOTES$VERIFY = F$VERIFY (NOTES$VERIFY) ! restore verify state $ EXIT NOTES$STATUS ! exit with status $ ! $ ! End of DEC NOTES installation $ ! $ !----------------------------------------------------------------------------- $ ! Help $ !----------------------------------------------------------------------------- $ ! $ ! $ help_library_dir: $ TYPE SYS$INPUT Enter the device to be used for storing the conference notefiles. This device should have sufficient free disk space to allow for growth in the size and numbers of conference files. The following are the presently available disk devices on your system: $ ! $ SHOW DEVICE/BRIEF/MOUNTED D $ WRITE SYS$OUTPUT " " $ EXIT VMI$_SUCCESS $ ! $ ! $ help_capability: $ TYPE SYS$INPUT Full capability means that all HP Notes capability is available to Notes users, including creating and accessing local conferences. Full capability is provided by the NOTES and NOTES-USER licenses. Reduced capability means that Notes users may access only remote conferences; they cannot create or access local conferences. Reduced capability is provided by the NOTES-CLIENT or NOTES-CLIENT-USER licenses. Access to HP Notes from personal computers using the TeamLinks environment is provided by a NOTES-SERVER-LANLINK license $ EXIT VMI$_SUCCESS $ ! $ ! $ help_server_uic: $ TYPE SYS$INPUT The UIC is the user identification code for the NOTES$SERVER account. The UIC value, specified in octal, is a group and member number separated by a comma and enclosed in brackets. The group number must be in the range 1-37776 (octal), the member number in the range 0-1777776 (octal). DIGITAL recommends you use the default UIC of [376,377]. If you do not use the default, you must ensure that you use a unique UIC. You should NOT specify a group number in the system range (normally 1-10 octal). The following UICs are presently in use on your system: $ SET NOON $ AUTHORIZE = "$AUTHORIZE" $ IF (F$TRNLNM("NETPROXY") .EQS. "") THEN - DEFINE/USER NETPROXY 'F$PARSE("NETPROXY","SYS$SYSTEM:.DAT",,,"SYNTAX_ONLY")' $ IF (F$TRNLNM("SYSUAF") .EQS. "") THEN - DEFINE/USER SYSUAF 'F$PARSE("SYSUAF","SYS$SYSTEM:.DAT",,,"SYNTAX_ONLY")' $ AUTHORIZE SHOW/BRIEF [*,*] $ WRITE SYS$OUTPUT " " $ SET ON $ EXIT VMI$_SUCCESS $ ! $ !----------------------------------------------------------------------------- $ ! DEC NOTES IVP $ !----------------------------------------------------------------------------- $ ! $ ! $ ivp: $ ON CONTROL_Y THEN GOTO ivp_exit ! setup to handle ^Y $ ON WARNING THEN GOTO ivp_exit ! setup to handle errors $ ivp_status = 0 $ ! $ IF NOTES$PROVIDE_SERVER $ THEN $ @VMI$ROOT:[SYSTEST]NOTES$IVP $ ELSE IF (NOTES$PROVIDE_LIB) $ THEN $ @VMI$ROOT:[SYSTEST]NOTES$IVP_LOCAL $ ELSE $ @VMI$ROOT:[SYSTEST]NOTES$IVP_CLIENT $ ENDIF $ ENDIF $ ivp_status = $STATUS ! save status $ ! $ ivp_exit: $ NOTES$VERIFY = F$VERIFY (NOTES$VERIFY) ! restore verify state $ EXIT ivp_status ! exit with IVP status $ ! $ !----------------------------------------------------------------------------- $ ! Remove VAX NOTES from system $ !----------------------------------------------------------------------------- $ ! $ ! Remove any traces of DEC Notes from the system $ ! $ ! Be sure to kill the notes server process (looks something like $ ! NOTES$001A_0*) if neccesary, for example $ ! $ STOP/ID=000000A2 $ ! $ remove: $ IF (F$TYPE(VMI$PRODUCT) .NES. "") THEN GOTO CLEAR_FILES $ ! $ ON CONTROL_Y THEN GOTO remove_done ! setup to handle ^Y $ O$ NOTES026.Af [NOTES.TEMPKIT]KITINSTAL.COM;1Zi UN ERROR THEN GOTO remove_done ! setup to handle errors $ !------------------------- $ VMI$PRODUCT = "NOTES025" $ !------------------------- $ ! $ ! Remove any traces of VAX Notes V1.n from the system $ ! $ VMI$F_SIGNAL = "FALSE" $ VMI$VERSION = F$GETSYI("VERSION") $ VMI$SAVED_DIR = F$ENVIRONMENT("DEFAULT") $ DELETE = "DELETE/CONFIRM/NOLOG" $ PURGE = "PURGE/NOCONFIRM/NOLOG" $ SAY = "WRITE SYS$OUTPUT" $ VMI$SAY = "WRITE SYS$OUTPUT" ! OpenVMS AXP $ VMI$SAVED_MSG = F$ENVIRONMENT("MESSAGE") $ SET MESSAGE/FACILITY/SEVERITY/IDENTIFICATION/TEXT $ VMI$SAVED_PRIVS = F$SETPRV("ALL,NOBYPASS") $ VMI$SAVED_UIC = F$USER() $ VMI$SAVED_PROT = F$ENVIRONMENT("PROTECTION") $ DEFINE = "DEFINE/NOLOG" $ DEASSIGN = "DEASSIGN" $ FALSE = 0 $ TRUE = 1 $ VMI$CALLBACK = "@SYS$UPDATE:VMSINSTAL" $ VMI$_FAILURE = %X10F50000 $ !VMI$FIND = VMI$CALLBACK + " FIND_FILE" $ VMI$INSTALLING = TRUE $ VMI$MSG = VMI$CALLBACK + " MESSAGE VMSINSTAL" $ VMI$NO_ERROR = "DEFINE/USER/NOLOG SYS$ERROR _NL:" $ VMI$NO_OUTPUT = "DEFINE/USER/NOLOG SYS$OUTPUT _NL:" $ VMI$QA = FALSE $ VMI$QA_FAIL == FALSE $ VMI$_SUCCESS = %X10F50001 $ VMI$INSTALLATION_STATUS = VMI$_SUCCESS $ VMI$TAILOR = "@SYS$UPDATE:VMSTAILOR" $ VMI$_UNSUPPORTED = %X10f50008 $ VMI$PID = F$GETJPI("","PID") $ VMIMARKER = "VMIMARKER" + VMI$PID + ".DAT" $ VMI$UPDATE_MARKER = "OPEN/READ/WRITE VMI$MARKER_FILE SYS$UPDATE:''VMIMARKER'" $ $ VMI$ALTERNATE_ROOT = FALSE $ VMI$ROOT = F$TRNLNM("SYS$SPECIFIC") $ VMI$SPECIFIC = VMI$ROOT $ ! Requires F$SEARCH because VMSINSTAL environment isn't ready yet $ VMI$COMMON_ROOT = F$SEARCH("''VMI$ROOT'[000000]SYSCOMMON.DIR") .NES. "" $ IF VMI$COMMON_ROOT THEN VMI$ROOT = VMI$ROOT - "]" + "SYSCOMMON.]" $ VMI$ROOT_FLAG == "0" $ DEFINE/TRANSLATION=(TERMINAL,CONCEALED) VMI$ROOT 'VMI$ROOT' $ DEFINE/TRANSLATION=(TERMINAL,CONCEALED) VMI$SPECIFIC 'VMI$SPECIFIC' $ DEFINE VMI$KWD VMI$ROOT:[SYSUPD] $ VMI$BOOTING = FALSE $ VMI$CONTINUE == TRUE $ VMI$DEBUG = FALSE $ VMI$IVP == FALSE $ VMI$PURGE == TRUE $ VMI$REBOOT == FALSE $ VMI$SAFETY == FALSE $ VMI$TAILORING = FALSE $ VMI$STARTUP == "!" $ VMI$CALLBACK MESSAGE I NEWREMOVE "Use SYS$MANAGER:NOTES$REMOVE.COM to deinstall HP Notes" $ EXIT VMI$_SUCCESS $ !----------------------------------------------------------------------------- (*[NOTES.TEMPKIT]NOTES$026.RELEASE_NOTES;1+,#f./J 4(- 0123KPWO566C0Ƣ7kģ89GJHJ hp Notes Release Notes T2.6 #*[NOTES.TEMPKIT]NOTES$DEFAULTS.DAT;1+,f./J 4f ^- 0123KPWO 56nY7Rkģ89GJHJ! ! NOTES$DEFAULTS.DAT - DECwindows DEC Notes 2.5 defaults ! ! Copyright Digital Equipment Corporation. 1989, 1993. All Rights Reserved. ! ! ! Users with 100-dpi monitors will probably want to change the width ! defaults in this file (which are now set for 75-dpi monitors) for ! a wider viewing area. There are four width defaults as follows: ! ! o NOTES$DEFAULTS*MAIN_WINDOW.width ! o NOTES$DEFAULTS*CONF_WINDOW.width ! o NOTES$DEFAULTS*READ_WINDOW.width ! o NOTES$DEFAULTS*EDIT_WINDOW.width ! ! For each default, a new suggested value is given in a preceeding comment line. ! NOTES$DEFAULTS*DXmliveScrolling: 0 NOTES$DEFAULTS*DXmfontListLevel0: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 NOTES$DEFAULTS*DXmfontListLevel1: -Adobe-Courier-Medium-R-Normal--*-120-*-*-M-*-ISO8859-1 NOTES$DEFAULTS*DwtText.DXmfontListDefault: -Adobe-Helvetica-Medium-R-Normal--*-120-*-*-P-*ISO8859-1 ! ! Notes Main window ! NOTES$DEFAULTS*MAIN_SHELL.x: 100 NOTES$DEFAULTS*MAIN_SHELL.y: 100 ! ! Change the following false value to true to start up iconified (no trailing blanks!) ! NOTES$DEFAULTS*MAIN_SHELL.iconic: false ! ! Increase the following .width value for 100 dpi monitors (676 suggested) ! NOTES$DEFAULTS*MAIN_WINDOW.width: 650 NOTES$DEFAULTS*MAIN_WINDOW.height: 390 NOTES$DEFAULTS*MAIN_FILE_DIRECTORY_DB.width: 450 NOTES$DEFAULTS*MAIN_FILE_DIRECTORY_DB.height: 450 NOTES$DEFAULTS*MAIN_OBJECT_DISPLY_DB.width: 450 NOTES$DEFAULTS*MAIN_OBJECT_DISPLY_DB.height: 300 ! ! Notes Conference window ! NOTES$DEFAULTS*CONF_SHELL.x: 130 NOTES$DEFAULTS*CONF_SHELL.y: 130 ! ! Increase the following .width value for 100 dpi monitors (786 suggested) ! NOTES$DEFAULTS*CONF_WINDOW.width: 650 NOTES$DEFAULTS*CONF_WINDOW.height: 390 NOTES$DEFAULTS*CONF_KEYWORD_DISPLY_DB.width: 450 NOTES$DEFAULTS*CONF_KEYWORD_DISPLY_DB.height: 450 NOTES$DEFAULTS*CONF_MARKER_DISPLY_DB.width: 450 NOTES$DEFAULTS*CONF_MARKER_DISPLY_DB.height: 450 NOTES$DEFAULTS*CONF_MEMBER_DISPLY_DB.width: 450 NOTES$DEFAULTS*CONF_MEMBER_DISPLY_DB.height: 450 ! ! Notes Read Note window ! NOTES$DEFAULTS*READ_SHELL.x: 160 NOTES$DEFAULTS*READ_SHELL.y: 160 ! NOTES$DEFAULTS.displayPostScript: off NOTES$DEFAULTS.allowReadAhead: false NOTES$DEFAULTS.inhibitReadPopToTop: false ! ! Increase the following .width value for 100 dpi monitors (846 suggested) ! NOTES$DEFAULTS*READ_WINDOW.width: 606 NOTES$DEFAULTS*READ_WINDOW.height: 507 NOTES$DEFAULTS*READ_WORK_NOTEID_L.marginTop: 56 NOTES$DEFAULTS*READ_WORK_NOTEID_L.fontList: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 ! NOTES$DEFAULTS*READ_WORK_TITLE_T.fontList: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 ! NOTES$DEFAULTS*READ_WORK_NOFN_L.marginTop: 56 NOTES$DEFAULTS*READ_WORK_NOFN_L.fontList: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 NOTES$DEFAULTS*READ_WORK_AUTHOR_T.fontList: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 ! NOTES$DEFAULTS*READ_WORK_DATE_L.marginTop: 56 NOTES$DEFAULTS*READ_WORK_DATE_L.fontList: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 ! NOTES$DEFAULTS*READ_WORK_ATTRIB_T.rows: 2 NOTES$DEFAULTS*READ_WORK_TEXT.fontList: -Adobe-Courier-Bold-R-Normal--*-120-*-*-M-*-ISO8859-1 ! ! Notes Create Note window ! NOTES$DEFAULTS*EDIT_SHELL.x: 190 NOTES$DEFAULTS*EDIT_SHELL.y: 190 ! ! Increase the following .width value for 100 dpi monitors (846 suggested) ! NOTES$DEFAULTS*EDIT_WINDOW.width: 606 NOTES$DEFAULTS*EDIT_WINDOW.height: 507 NOTES$DEFAULTS*EDIT_WORK_AUTHOR_T.fontList: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 ! NOTES$DEFAULTS*EDIT_WORK_DATE_L.marginTop: 56 NOTES$DEFAULTS*EDIT_WORK_DATE_L.fontList: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 ! NOTES$DEFAULTS*EDIT_WORK_TITLE_L.marginTop: 56 NOTES$DEFAULTS*EDIT_WORK_TITLE_L.fontList: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 NOTES$DEFAULTS*EDIT_WORK_TITLE_T.fontList: -Adobe-Helvetica-Medium-R-Normal--*-120-*-*-P-*-ISO8859-1 ! NOTES$DEFAULTS*EDIT_WORK_KEYWORD_L.marginTop: 56 NOTES$DEFAULTS*EDIT_WORK_KEYWORD_L.fontList: -Adobe-Helvetica-Bold-R-Normal--*-120-*-*-P-*-ISO8859-1 NOTES$DEFAULTS*EDIT_WORK_KEYWORD_T.fontList: -Adobe-Helvetica-Medium-R-Normal--*-120-*-*-P-*-ISO8859-1 ! NOTES$DEFAULTS*EDIT_WORK_TEXT.fontList: -Adobe-Courier-Medium-R-Normal--*-120-*-*-M-*-ISO8859-1 NOTES$DEFAULTS*EDIT_WORK_TEXT.wordWrap: on NOTES$DEFAULTS*EDIT_WORK_TEXT.scrollVertical: on NOTES$DEFAULTS*EDIT_WORK_TEXT.scrollHorizontal: off ! ! ! End of NOTES$DEFAULTS.DAT A K$ NOTES026.Af ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1!*[NOTES.TEMPKIT]NOTES$DWHELP.HLB;1+,f./J 4- 0123 KPWO56\7Tlģ89GJHJ % Librarian T09-20^ >6 J5 $about cancel_pbclasses conferencesh$ conf_menu_bar conf_popupc` conf_window edit_menu_bar edit_popup edit_window> entry_namesf(keywords8main_caution_box main_menu_barax main_popup main_window( main_work_boxg`markersgNmembersObjectsROK_pb overview read_menu_bar read_popup read_windowerepliesp scroll_barsdtopics > 1 overview* Welcome to DECwindows DEC Notes V2.5-1.? DEC Notes is a computer conferencing system. Through a Notes? conference, many people in various locations can communicate= easily and conveniently. Usually a conference has a single> subject, theme, or issue. For example, a private meeting to> discuss marketing strategy, an electronic bulletin board to@ announce course offerings, or a public forum on environmental' issues can all be Notes conferenc es.? A conference is organized into any number of topics, each ofC which can have any number of replies. A topic and its associatedA replies are called a discussion. Topics are identified as n.0,C where n is a number assigned sequentially by the system. RepliesD to a topic note are also sequentially numbered, starting with .1.C If topic 4 has 3 replies, the replies are numbered 4.1, 4.2, andA 4.3. Topics and replies are referred to collectively as notes.C The first time you invoke DEC Notes, a Notebook is automatically< created for you. In your Notebook, you store the names of! conferences that interest you. 2 using_help@ To get help on screen objects such as menu names, menu items,D dialog boxes, and buttons, press the HELP key while you press andD hold MB1 on the screen object. Alternatively, move the pointer to8 the screen object, click MB1, and press the HELP key.+ For example, to get help on a menu item:" 1. Press and hold the HELP key.( 2. Press and hold MB1 on a menu name.@ 3. Drag the pointer to the menu item for which you want help. 4. Release MB1. 5. Release the HELP key.@ Additional topics, if any, are listed. You can get help on an1 additional topic by double clicking MB1 on it. 2 decw_basicsA Basic information about using DECwindows such as how to manageB windows, how to use dialog boxes, and how to use scroll bars is@ available from Session Manager help, which also explains many DECwindows terms.@ To get Session Manager help, double click (press mouse buttonB 1 (MB1) twice quickly) on the Session Manager icon. The Session. Manager window is displayed on your screen.B Press and hold MB1 to pull down the Help menu. Move the pointerD to the Overview menu item and release MB1. The Overview menu item+ provides details about using DECwindows. 2 glossary7 Class: A group of entries (conferences) related5  in some way that you keep together for+ convenience in your Notebook. Conference: An online meeting that improves5 communication by computer among people8 separated geographically or in other ways6 Discussion: A topic note (numbered n.0) and all the4 replies (numbered n.1... n.n) to that topic note5 Entry: A conference in your Notebook; you add9 conferences of interest as entries in yHu:$ NOTES026.Af ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1" our5 Notebook in order to track them easily6 Keyword: A word or phrase used to group together5 notes on a particular subject; usually2 created by the conference moderator1 Marker: A word or phrase that you use as a9 placeholder in an entry in order to return6 quickly to a note of interest; unlike a8 keyword, a marker is for the individual's7 use only and is associated with only one note3 Moderator: The person(s) managing a conference,0 possessing certain privileges and5 responsible for generating interest in9 the conference and keeping the discussions on track. Note: An individual contribution to a8 conference, either a topic (numbered n.0)/ or a reply (numbered n.1... n.n)9 Notebook: A file containing your individual profile,7  your collection of entries (conferences)5 categorized by class, and your markers6 Profile: That part of your Notebook that tailors1 your individual DEC Notes sessions9 Reply: A note (numbered n.1... n.n) that responds2 to a topic or to another reply in a conference2 Topic: A note (numbered n.0) that begins a) discussion in a conference 2 invoking_notes2 You can invoke DEC Notes in the following ways:D o Enter the NOTES (or NOTES/INTERFACE=DECWINDOWS) command at theD DCL prompt ($), then press RETURN. This invokes the DECwindows interface.A o Enter the NOTES/INTERFACE=CHARACTER_CELL command at the DCLD prompt ($), then press RETURN. This invokes the character-cellC interface to DEC Notes within the terminal emulator (DECterm)@ window. You can then enter Notes commands, parameters, and qualifiers. 2 exiting_notes8 To exit from DEC Notes when you are in the DECwindows environment, choose in order:' o The File menu in the Notes window o The Exit menu item? Alternatively, choose Exit from the pop-up window within the Notes window.@ When you exit from the Notes window, any other open DEC Notes) windows are also automatically closed.= Within the character-cell interface, type the EXIT command= or press CTRL/Z (repeatedly if necessary) to close an open+ conference and then exit from DEC Notes. 2 entering_commandsB With the DECwindows interface you access DEC Notes functions by@ choosing menu items and clicking on screen objects instead of typing commands.B With the character-cell interface, you enter commands by typing them or pressing keypad keys. 2 rel_notesC You can print the release notes for this version of DEC Notes by6 typing the following command at the DCL prompt ($):8 $ PRINT SYS$HELP:NOTES$025.RELEASE_NOTES wwޘ1 about( DEC Notes; Copyright Digital Equipment Corporation. 1993.. All Rights Reserved.> Software Version: DECwindows DEC Notes Version V2.5-1 ww~1 main_work_box= The Work-in-Progress box gives information about a task in? progress. It appears when there is a delay in completing theC task. The information should be self-explanatory. No user action is required. ww1 main_caution_boxB The Info box supplies an informational message, which should be4 self-explanatory. Click on OK to dismiss the box. ww,1 main_window? The Notes window is the main window for DEC Notes. It is the2 starting point for user interaction with Notes.; The Notes window displays your classes, which categorize= the conferences you have entered in your Notebook, and the@ conferences themselves, listed by entry name. The conferences) in your Notebook are called "entries."? When the Notes window appears, all the classes are displayedC but only the entries under your default class (usually MAIN) areC displayed. You can expand any other class to display its entries by double clicking MB1 on it. ww^1 scroll_bars> Scroll bars indicate whether there is more text than can beB displayed in the current window, and if so, allow you to scroll' over the additional text to read it. ww^1 OK_pb> Click on the OK push button to cause DEC Notes to apply the; information in the dialog box and to make the dialog box disappear from the screen. ww9 1 cancel_pb@ Click on the Cancel push button to remove the dialog box fromC the screen, without any action being taken or any settings being changed. ww 1 classes? A class consists of one or more entries (conferences in your= Notebook) that are related in some way. A class works like> a tabbed divider to keep the set of conferences together. A, conference can be in more than one class.? You can create as many classes as you want in your Notebook. ww>G1 entry_namesD Conferences in your Notebook are called entries. An entry name is4 either a name you specify or the conference name. ww>G1 conferences= A conference is an online meeting in which many people canC communicate with each other at their convenience on a particular@ subject. Their communications, called notes, are recorded and organized for easy reference.D A conference is organized into topics, each of which can have anyB number of replies. A note is either a topic or a reply. A topic+ and its replies are called a discussion. ww  1 ObjectsD In DEC Notes, an "object" is a conference that has an object name4 in a VAX Distributed Name Service (DNS) database.@ If DNS is installed on your system, and if someone with write= privilege on the DNS database has added a conference as an@ object, the conference's file specification can be kept up toC date in the database. Users who have added or modified the entryC as an object do not have to change the file specification if theC conference moves; DEC Notes checks the DNS database for the file specification. ww~T"1 main_menu_barB You use menus to perform DEC Notes operations, such as creating> and opening conferences, modifying your profile, and so on.D The menu names appear in the menu bar of a window. To use a menu,B position the pointer on the menu name, such as File, then pressC and hold MB1. The pull-down menu appears. Hold MB1 down and moveC the pointer to the menu item you want, and release MB1 to select that item.C The Notes w indow contains the following menus: File, Edit, View, Options, Entries, and Help. 2 main_file_pde1 Use the File menu to perform these operations:> o Open a conference that you selected by clicking MB1 on a conference name- o Open another conference in a new window? o Open a conference from a dialog box, with certain options= o Get marker information and access notes through markers o Create a new conference( o Display a directory of con!ferences o Use mailD o Display, add, delete, or modify a VAX Distributed Name Service (DNS) object o Exit from DEC Notes 3 main_file_open1_pb< Choose the Open menu item to open the conference you have selected. 3 main_file_open3_pb@ Choose the Open in New Window menu item to open an additionalC conference (a conference you have selected) in a new window. Any( current windows remain on the screen. 3 main_file_open2_pb@ Choose th"e Open... menu item to display a dialog box in whichC you can specify the entry you want to open, the class, and otherB information to apply to the entry you open. You can also open a4 conference that is not an entry in your Notebook. 4 main_file_open_dbD You can use the Open dialog box to specify the entry to be opened* and to specify how it should be opened. 5 file_open_entry_l@ In the Entry field, type the entry name of the conference you> want to open. If it i  Click on the Directory of Notes button if you want to see a@ directory instead of the first unseen note, and if the button is not already on.= When one button goes on, the other automatically goes off. 5 file_open_show_rb? Click on &the First UNSEEN Note button if you want to see theC first unseen note immediately after you open the conference, and# if the button is not already on.> Click on the Directory of Notes button if you want to see aA directory instead of reading the first unseen note, and if the button is not already on.B When one button goes on, the other automatically goes off. Turn> both buttons off if you want a blank window when you open a conference. 5 file_open_unseen_tb?' Click on the First UNSEEN Note button if you want to see theC first unseen note immediately after you open the conference, and# if the button is not already on.> Click on the Directory of Notes button if you want to see aA directory instead of reading the first unseen note, and if the button is not already on.= When one button goes on, the other automatically goes off. 5 file_open_directory_tb? Click on the First UNSEEN Note button if you want to see theC ( first unseen note immediately after you open the conference, and# if the button is not already on.> Click on the Directory of Notes button if you want to see aA directory instead of reading the first unseen note, and if the button is not already on.= When one button goes on, the other automatically goes off. 5 file_open_in_new_tbD Click on the Open in New Window toggle button if you already have@ a conference open in one window and you want to open a secondB ()or third, and so forth) conference in a new window, instead of2 replacing the current conference in its window. 3 main_file_create_pbC When you choose the Create Conference... menu item, a dialog boxD appears in which you specify information about the conference you are creating. 4 main_file_create_dbB In the Create Conference dialog box you can specify the name of9 the conference you are creating and other information. 5 file_create_notefile_lD In the *Conference Filename field, type the name of the conference you are creating.@ If the conference is to be on a remote node, include the node@ name. The default device, directory (NOTES$LIBRARY), and file type (.NOTE) are assumed.D If the conference is to be in your private directory, include the device and directory name.@ The file name you type becomes the default entry name for any+ user who does not specify an entry name.B Do not press RETURN after typing a fi+le name. Instead, click on; the Title toggle button so that you can continue typing. 5 file_create_title_tbB Click on the Title toggle button. Then type a descriptive title' for the conference you are creating. 5 file_create_notice_tb= If you want a notice to appear, click on the Notice toggle button. Then type the notice. 5 file_create_attribute_lC Specify the attributes for the new conference by clicking on the appropriate toggle buttons. 5 , file_create_write_all_tb? By default, notes can be written to a conference, and so theC Allow Writes toggle button is already on. Click on it to turn itB off if you want to restrict the writing privilege to moderators and selected members. 5 file_create_restr_mem_tbD If you want to restrict access to the conference to members only,= click on the Restrict Members toggle button to turn it on. 5 file_create_restr_key_tbD By default, only moderators and selecte -d members with the create-B keywords privilege can create new keywords, and so the Restrict< Keyword Creation toggle button is already on. If you wantA anyone to be able to create keywords, click on it to turn this restriction off. 5 file_create_reply_only_tbA If you want to restrict topic creation so that only moderators= and privileged members can write topic notes, click on the@ Restrict Topic Creation toggle button. The writing of replies remains unrestricted.. 3 main_file_directory_pb@ Choose the Directory of Conferences... menu item to display a@ dialog box in which you can get a directory of conferences on$ your node or on a specified node. 4 main_file_directory_db? You can use the Directory of Conferences dialog box to get a= directory of conferences on your node or a specified node. 5 file_directory_location_l? To specify a location, type the node, device, and directory.D If you use a logical name ins/tead of the device and directory, be! sure to type a colon after it. 5 file_directory_conf_l: A directory of conferences appears below the Conference6 Information heading for the location you specified. 5 file_directory_conf_udA A directory of conferences appears in the Conference Directory field.> Double click MB1 on the conference name icon to display the> information associated with that conference (title, notice,* moderator, date created, and location0).B Double click MB1 on the conference name to open the conference. 5 file_directory_apply_pbD Click on the Apply push button to cause the indicated settings in the dialog box to be applied.A The Apply push button does not remove the dialog box from your screen. 5 file_directory_add_pb? Click on the Add... push button to display a dialog box that0 enables you to add an entry to your Notebook. 3 main_file_mail_pbB The Mail... menu item displays a 1dialog box that enables you to@ send a mail message or forward a note by mail from within DEC Notes. 4 main_file_mail_dbC This dialog box enables you to send a mail message or to forward a note from within DEC Notes. 5 note_mail_operation_lB The two possible mail operations are to send a mail message and to forward a note. 5 note_mail_operation_rbB The two possible mail operations are to send a mail message and to forward a note. 5 note_2mail_send_tb; Click on this button if you want to send a mail message. 5 note_mail_forward_tb= Click on this button if you want to forward a note you are reading by mail. 5 note_mail_to_l@ Your choices are to mail the message or note to the specified: addressee, to all conference members, to all conference, moderators, or to the author of the note. 5 note_mail_to_rb@ Your choices are to mail the message or note to the specified: addressee, to all c3onference members, to all conference, moderators, or to the author of the note. 5 note_mail_username_tbD Click on the button and type the user name(s) of the person(s) toD whom you are sending mail. Include the node if the user is not on your node. 5 note_mail_members_tb: Click on this button to send mail to all members of the conference.: Note that only those members for whom the moderator has? specifically given a mail address (using the MAIL field, or, D$ NOTES026.Af ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1k"3 4> in the character-cell interface, the ADD or SET MEMBER/MAILB command) can receive mail sent to all members from within NotesC with the Conference Moderators button (or, in the character-cell; interface, the SEND/MEMBERS or FORWARD/MEMBERS command). 5 note_mail_moderators_tbA Click on this button to send mail to all the moderators of theB conference. Note that only those members for whom the moderator? has specifically given a mail address (using the MAIL field,B o5r, in the character-cell interface, the ADD or SET MEMBER/MAIL= command) can receive mail sent to all members in this way. 5 note_mail_author_tb? Click on this button to send mail to the author of the note. 5 note_mail_subject_tbA Click on the button and type a subject if you want to supply a; mail subject for the mail message or the forwarded note. 3 main_file_object_pbB Choose the Objects... menu item to bring up the Display ObjectsB dialog box if you w 6ant to display, add, delete, or modify a VAXD Distributed Name Service (DNS) object. In DEC Notes, an object is? a conference, and its attribute is a notefile specification.; To add, delete, or modify an object, you must have writeC privilege on the DNS database, and DNS must be installed on your system. 4 main_object_disply_dbA In this dialog box, you can display the notefile specification> associated with a VAX Distributed Name Service (DNS) object; (conference7), or (if you have write privilege on the DNS. database) add, delete, or modify an object. 5 object_disply_object_lC The object name is the VAX Distributed Name Service (DNS) objectB name associated with a conference. Type the object name here in full. 5 object_disply_info_lC Information about a VAX Distributed Name Service (DNS) object or% objects is displayed in the field. 5 object_disply_info_udC Information about a VAX Distributed Name Service (D8NS) object orC objects is displayed in the field. Double click MB1 on an objectA name to display the notefile specification (if any) associated' with the object in the DNS database. 5 object_disply_apply_pb? Click on Apply to display information about the object name. 5 file_object_add_pbD Click on the Add... push button to bring up the Add Object dialog> box, in which you can add an object (conference) to the VAXC Distributed Name Service (DNS) database, pr9ovided you have write privilege on the database. 6 file_object_add_dbD In this dialog box, you can add an object (conference) to the VAXC Distributed Name Service (DNS) database, provided you have write privilege on the database. 7 object_add_object_l? Type the DNS object name in the field. Do not abbreviate it. 7 object_add_file_l= Type the notefile specification of the conference that youA are adding as a DNS object if you want to associate a not:efile! specification with the object. 7 object_add_apply_pb8 Click on Apply to add the object to the DNS database. 5 file_object_delete_pbA Choose the Delete... push button to bring up the Delete ObjectC dialog box if you want to delete an object (conference) from theC VAX Distributed Name Service (DNS) database. You must have write& privilege on the database to do so. 6 file_object_delete_dbD You can use this dialog box to delete an object (conference;) fromA the VAX Distributed Name Service (DNS) database. You must have, write privilege on the database to do so. 7 object_delete_object_l$ Type the DNS object name in full. 7 object_delete_apply_pb= Click on Apply to delete the object from the DNS database. 5 file_object_modify_pb: Choose the Modify... push button to bring up the Modify= Object dialog box if you want to modify the attribute of a? VAX Distributed Name Service (DNS) object. In DEC Notes<, the= attribute is a notefile specification, and the object is a conference.A You must have write privilege to the DNS database to modify an object. 6 file_object_modify_db@ Use the Modify Object dialog box to modify the attribute of a? VAX Distributed Name Service (DNS) object. In DEC Notes, the= attribute is a notefile specification, and the object is a conference.A You must have write privilege to the DNS database to modify an object. 7 o=bject_modify_object_l$ Type the DNS object name in full. 7 object_modify_file_l9 Type the new notefile specification of the conference. 7 object_modify_apply_pb; Click on Apply to modify the object in the DNS database. 7 object_modify_show_pbB Click on Show to display the current notefile specification, if any, of the object. 3 main_file_exit_pbA Choose the Exit menu item to exit from DEC Notes and return to# DCL level in the DECterm window.>D However many windows you have open in DEC Notes at the time, thisA action closes them all. It is not necessary to close the other windows individually. 2 main_edit_pde1 Use the Edit menu to perform these operations:7 o Copy text that you selected by clicking MB1 on it. o Select the entire contents of the window 3 main_edit_copy_pbC The Copy menu item copies the selected text without deleting it.D The text is copied to the "clipboard," which is a ? buffer (storageB area) for the most recently copied or cut text. The text can beC "pasted" from the clipboard to (for example) the text area of anA Edit window; in the Edit window, you can choose the Paste menuA item from the Edit menu, and the contents of the clipboard are( copied to the location of the cursor.B Pasting does not delete the text from the clipboard; it remainsD there and can be pasted again and again, as you choose, until you1 replace it with some newly cu@t or copied text. 3 main_edit_select_pb> The Select All menu item selects the entire contents of the window. 2 main_view_pde@ Use the View menu to display classes and entries in a tree orA textual-outline structure, or to expand or collapse classes in the Notes window.@ The default display is in a textual-outline form, and you canB change it to a tree structure by choosing Display Tree from the View pull-down menu.D An expanded class is a class withA its conferences displayed underD it. Select a class to expand by clicking MB1 on it. Choose Expand= from the View pull-down menu to expand the selected class.) Choose Expand All to expand all items.6 Collapse and Collapse All are similar in operation. 3 main_outline_pbC By default, the Notes window shows your classes and entries in aB textual-outline form. You can choose the Display Tree menu item@ to have them displayed in a tree structure. If you do so, theC D Bisplay Tree menu item changes to the Display Textual menu item.A When the Notes window is showing your classes and entries in aB tree-structure display, you can choose the Display Textual menu9 item to have them displayed in a textual-outline form.C Similarly, the Conference window shows the directory of notes inA a textual-outline form, by default. You can choose the DisplayB Tree menu item to have them displayed in a tree structure. WhenC they are being displayed in a treCe structure, you can choose theA Display Textual menu item to have them displayed in a textual- outline form. 3 main_expand_pbA The Expand menu item expands the selected item: a class in theD Notes window, or a topic in the Conference window. "Expand" meansB to display the entries (conferences) under a selected class, or+ the replies under a selected topic note.? Before choosing Expand, you must select an item to expand by clicking on it. 3 main_expand D_all_pb= The Expand All menu item expands all items, displaying the> entries (conferences) under each class in the Notes window,? or displaying all replies under each topic in the Conference window. 3 main_collapse_pbA The Collapse menu item collapses the selected item: a class inC the Notes window, or a topic in the Conference window. It causes> the entries (conferences) displayed under the class, or the@ replies listed under the topic, to disappear from the scr |$ NOTES026.Af ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1~"DEeen. 3 main_collapse_all_pbC The Collapse All menu item collapses all your expanded items. InB the Notes window, it causes the entries (conferences) displayedC under each class to disappear from the screen. In the Conference< window, it causes the replies listed under topic notes to disappear from the screen. 2 main_customize_pde@ Use the Options menu to modify your profile or to modify your print options. 3 main_customize_profile_pb> The Show/Mo Fdify Profile... menu item causes a dialog box toA appear, in which you can see your current profile settings and@ enter information to change your profile. You can specify the following:B o Your default class, which is the class that is expanded when you invoke DEC NotesB o Your personal name, which appears on notes that you enter or! mail messages that you sendB o Whether a conference you open immediately displays the first3 unseen note, a directory oGf notes, or neither; You can also specify that the changed settings should be@ temporary, applying only to the current DEC Notes session, if2 you do not want them to be applied permanently. 4 main_customize_profile_dbB This dialog box displays your current profile settings. You can@ enter information to change your profile. You can specify the following:B o Your default class, which is the class that is expanded when you invoke DEC NotesB o Your persoHnal name, which appears on notes that you enter or! mail messages that you sendB o Whether a conference you open immediately displays the first3 unseen note, a directory of notes, or neither; You can also specify that the changed settings should be@ temporary, applying only to the current DEC Notes session, if2 you do not want them to be applied permanently. 5 customize_profile_temp_tbB Click on this button to turn it on if you want the settings you7 speciIfy to apply only to your current Notes session.D If you have already set up temporary settings, those settings are+ displayed when you click on this button. 5 customize_profile_class_lD To change your default class, type the name of the class that youB want as your default class, that is, the class that is expanded= when you invoke DEC Notes. By default, this class is MAIN. 5 customize_profile_pen_lB A "personal name" is a string that appears along with your nodeJC and user name in the heading of notes that you enter, as well as mail messages you send.B A personal name must begin with a letter. Its maximum length is 63 characters.C The personal name is optional, and you do not have one until you set it. 5 customize_profile_auto_l? Click on the First UNSEEN Note button if you want to see the> first unseen note immediately when you open the conference,A and if the button is not already on. Click on the Directory ofKA Notes button if you want to see a directory instead of reading> the first unseen note, and if the button is not already on.= When one button goes on, the other automatically goes off.A Turn both buttons off if you want a blank window when you open a conference. 5 customize_profile_show_rb@ You can specify whether, when you open a conference, you will1 o See the first note you have not seen before0 o See a directory of notes in the conference o See neLither of the aboveA By default, the first UNSEEN note is displayed, so that buttonC is probably turned on. Click on it to turn it off if you want to change this setting.? Click on the Directory of Notes button to turn it on, if youA want; or turn both buttons off if you want a blank window when you open a conference. 5 customize_profile_uns_tbA By default, the first UNSEEN note is displayed when you open aC conference, so that button is probably turned on.M Click on it to2 turn it off if you want to change this setting. 5 customize_profile_dir_tbC Click on the Directory of Notes button to turn it on if you want: to see a directory of notes when you open a conference. 3 main_customize_print_pbA The Show/Modify Print Options... menu item causes a dialog boxB to appear, in which you can see the current defaults applied to6 printing jobs, and change the defaults, as follows: o Number of copies o Page rangeN o Print format o Printer o Orientation$ o Delay, if any, before printing 2 main_entry_pde, Use the Entries menu to do the following:# o Add an entry to your Notebook& o Modify an entry in your Notebook6 o Update a selected entry or class, or all entriesC o Delete a class, or delete an entry from your Notebook or from a class 3 main_entry_add_pbB The Add... menu item causes the Add Entry dialog box to appear,B in Owhich you can type information about an entry you are adding to your Notebook, as follows:% o The file name of the conference# o The entry name of your choice o The object name2 o The class to which the entry should be added 4 main_entry_add_dbB In this dialog box, you can type information about an entry you+ are adding to your Notebook, as follows:% o The file name of the conference# o The entry name of your choice2 o The class to whiPch the entry should be added 5 entry_add_filespec_lA Type the file specification of the conference you want to add;* for example, BOSTON::LOCAL_RESTAURANTS.B If the conference is on your node, or if it is already an entry= in a different class, you do not need to specify the node. 5 entry_add_entry_tb@ If you want to give the conference you are adding a different= entry name from the conference name (perhaps one easier to? remember or to type), click on this Q button and type the name of your choice. 5 entry_add_object_tbC If the conference is an object in a VAX Distributed Name ServiceC (DNS) database, you can add the object name to the entry in your: Notebook. Click on the button and type the object name.> If an entry has a DNS object name, DEC Notes looks first atA the DNS database whenever accessing the conference. A notefile> specification can be associated with the conference in thatA database. If the conferenceR moves, that notefile specification; can be changed, and you will still be able to access the conference. 5 entry_add_class_tb: Your default class appears here. If you want to add theB conference to a different class or classes, click on the button and type the class name(s).B If you type a class name that does not already exist, the class is created. 3 main_entry_modify_pbC The Show/Modify... menu item causes the Show/Modify Entry dialogC box to apSpear, in which you can specify a new entry name, class,A conference file name, and/or object name. You can also display$ the current values for the entry. 4 main_entry_modify_db? In this dialog box, you can specify a new entry name, class,A conference file name, and/or object name. You can also display$ the current values for the entry. 5 entry_modify_entry_l? Type the current entry name of the entry you want to modify.? If you want to see the current infoTrmation about that entry,! click on the Show push button.D If you already selected an entry (by clicking on it) in the Notes@ window, the current information for that entry appears in the box. 5 entry_modify_name_tbA If you want to change the entry name, click on this button and type the new name.D If you already selected an entry (by clicking on it) in the Notes@ window, the current information for that entry appears in the box. 5 entry_modify_Uclass_tb? If you want to change the class or classes to which an entryD belongs, type the new class name(s). If there is a list, separate the names with a comma.D If you already selected an entry (by clicking on it) in the Notes7 window, that entry's class or classes are displayed. 5 entry_modify_filespec_tbC Type the new file specification of the conference if you need to change it.D If the conference is on your node, you need to type only the file name. $ NOTES026.Af ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1"U V 5 entry_modify_object_tbC If the conference is an object in a VAX Distributed Name ServiceC (DNS) database, you can add the object name to the entry in yourB Notebook. Click on the button and type the object name. You can8 also change or delete the object name for your entry.> If an entry has a DNS object name, DEC Notes looks first atA the DNS database whenever accessing the conference. A notefile> specification can be associated with the conference in thatA datWabase. If the conference moves, that notefile specification; can be changed, and you will still be able to access the conference. 5 entry_modify_apply_pb@ When you are satisfied with the informtion you have supplied,2 click on Apply to modify the entry accordingly.A The Apply push button does not remove the dialog box from your screen. 5 entry_modify_show_pb@ To see the current information about an entry, type the entry2 name in the Entry field and then Xclick on Show. 3 main_entry_update1_pb@ You can update an entry to determine whether it has notes you have not yet seen.B The Update menu item updates the selected entry, or the entriesC in a selected class. First select the class or entry by clicking. on it and then choose the Update menu item. 3 main_entry_update2_pb@ You can update an entry to determine whether it has notes you have not yet seen.@ The Update... menu item causes the Update Entry dialoYg box toA appear, in which you can type the entry name and its class, orD choose all entries in your Notebook or all entries in a class for updating.< If you first select an entry name in the Notes window (byA clicking on it), that entry name is already filled in when the dialog box appears. 4 main_entry_update_db@ You can update an entry to determine whether it has notes you have not yet seen.D In this dialog box, you can type the entry name and its classZ, or# choose all entries for updating.< If you first select an entry name in the Notes window (byA clicking on it), that entry name is already filled in when the dialog box appears. 5 entry_update_entry_tbB Type the entry name of your choice to update a single entry. If@ you already selected an entry in the Notes window, that entry name is already filled in.< If you want to update all the entries in a class, fill inA that class name if necessary in the Class[ field, and leave the( asterisk wildcard in the Entry field. 5 entry_update_class_tbB Type a class name if you want to specify the class in which one% or more entries should be updated.= If you already selected an entry in the Notes window, that& entry's class is already filled in.A If you want to update all the entries in a class, fill in thatB class name in the Class field, and leave the Entry field blank. 5 entry_update_all_tb@ Click this button on if\ you want to update all the entries in your Notebook. 3 main_entry_delete1_pbB The Delete menu item deletes the selected class or the selected@ entry (the entry you clicked on in the Notes window) from the" class under which it is listed.A If the entry is in more than one class, it is not deleted from the other class(es). 3 main_entry_delete2_pb@ The Delete... menu item causes the Delete Entry dialog box toB appear, in which you can specify the name of th]e entry you want? to delete and the class(es) from which it should be deleted. 4 main_entry_delete_db< In this dialog box, you can specify the name of the entry? you want to delete and the class(es) from which it should be deleted. 5 entry_delete_entry_l7 Type the entry name of the entry you want to delete.B If you selected an entry by clicking on it in the Notes window,( that entry name is already filled in. 5 entry_delete_class_tbC Click on th^e button to turn it on and type the name of the class+ from which you want to delete the entry.B If you selected an entry by clicking on it in the Notes window,( that class name is already filled in. 2 main_help_pde@ To get help on screen objects such as menu names, menu items,D dialog boxes, and buttons, press the HELP key while you press and! hold MB1 on the screen object.+ For example, to get help on a menu item:" 1. Press and hold the HELP key.( 2. Pr_ess and hold MB1 on a menu name.9 3. Drag the pointer to the menu item you want help on. 4. Release MB1. 5. Release the HELP key.@ Additional topics, if any, are listed. You can get help on an1 additional topic by double clicking MB1 on it. 3 main_help_overview_pb* Welcome to DECwindows DEC Notes V2.5-1.> DEC Notes is a computer conferencing system. It allows manyB people to communicate at their convenience, usually on a single? subject or issue. In DE `C Notes, a private meeting to discuss? marketing strategy, an electronic bulletin board to announceB course offerings, or a public forum on environmental issues are all examples of conferences.? A conference is organized into any number of topics, each ofC which can have any number of replies. A topic and its associatedA replies are called a discussion. Topics are identified as n.0,C where n is a number assigned sequentially by the system. RepliesD to a topic note area also sequentially numbered, starting with .1.C If topic 4 has 3 replies, the replies are numbered 4.1, 4.2, andA 4.3. Topics and replies are referred to collectively as notes.C The first time you invoke DEC Notes, a Notebook is automatically< created for you. In your Notebook, you store the names of% conferences you are interested in. 3 main_help_about_pb( DEC Notes; Copyright Digital Equipment Corporation. 1993.. b All Rights Reserved.> Software Version: DECwindows DEC Notes Version V2.5-1 ww` 1 main_popupC You invoke the pop-up menu by pressing and holding down MB3. The) pointer can be anywhere in the window.D From the pop-up menu, you can quickly open or update the selected& conference, or exit from DEC Notes. 2 main_popup_open_pb7 Release MB3 on Open to open the selected conference. 2 main_popup_open_in_new_pb@ Relcease MB3 on Open in New Window if you want to open another= conference (which you selected by clicking on it) in a new< window, with the currently open conference or conferences remaining in their windows. 2 main_popup_update_pbA Release MB3 on Update to update the selected entry or entries.B You can also select a class and then update all entries in that class.C By updating an entry, you can determine whether it has notes you have not yet seen. 2 maidn_popup_exit_pb; If you want to exit from DEC Notes, release MB3 on Exit. ww^c1 conf_window< The Conference window appears on the screen if you open aB conference and you do not go directly to the first UNSEEN note.D The Conference window either contains a directory of notes in theA conference or is blank. (It is blank if you specified that you> want to see neither a directory nor the first UNSEEN note.)A More than one Conference window can be one your screen at once. 2 conf_svn_window< The Conference window appears on the screen if you open aB conference and you do not go directly to the first UNSEEN note.D The Conference window either contains a directory of notes in theA conference or is blank. (It is blank if you specified that you> want to see neither a directory nor the first UNSEEN note.)A More than one Conference window can be on your screen at once. wwf 1 topicsC A topic f is the first note in a discussion. It is numbered n.0 (nA is a number assigned by the system, sequentially). Its replies@ are numbered sequentially, starting with n.1. Both topics and replies are "notes." ww>h 1 repliesC A reply is any note in a discussion except the first note, whichA is a topic. A topic is numbered n.0 (n is a number assigned byD the system, sequentially). Its replies are numbered sequentially,: starting with n.1. Both topics an J$ NOTES026.Af ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;15g"fgd replies are "notes." ww~k 1 keywords; A keyword is a word or phrase that groups notes that areB concerned with a particular subject but that may not have other> attributes (for example, title, author, or date) in common.C By default, the creation of new keywords is restricted; a memberD can create keywords only if authorized to do so by the moderator.B (The moderator can also remove the restriction, allowing anyone to create new keywords.)D h You do not need a special privilege to add an existing keyword to a note. wwm 1 markersA A marker enables you to find a note of interest again quickly.B Unlike keywords, markers are for the individual's use only, and8 do not appear in other conference members' Notebooks. wwn 1 membersD The members of a conference are the users specified as members by the moderator.@ If access to a conference is restricted, only membeirs can use it. ww^&p1 conf_menu_barB You use menus to perform DEC Notes operations, such as creating# notes, reading notes, and so on.D The menu names appear in the menu bar of a window. To use a menu,B position the pointer on the menu name, such as File, then pressC and hold MB1. The pull-down menu appears. Hold MB1 down and moveC the pointer to the menu item you want, and release MB1 to select that item.B The Conference window contains jthe following menus: File, Edit,% View, Conference, Notes, and Help. 2 conf_file_pde1 Use the File menu to perform these operations: o Use mail% o Extract notes to an output file o Print notes o Close the conference 3 conf_file_close_pb8 The Close Conference menu item closes the conference. 2 conf_edit_pde1 Use the Edit menu to perform these operations:7 o Copy text that you selected by clicking MB1 on it. o Select the ekntire contents of the window 2 conf_view_pdeC Use the View menu to expand or collapse topics in the directory.B An expanded topic is a topic note with its replies listed under it.B First select a topic by clicking on it. Then choose Expand from the View pull-down menu.= You can expand all the topic notes by choosing Expand All.6 Collapse and Collapse All are similar in operation. 2 conf_conf_pde% You can use the Conference menu to; o Display a ldirectory of notes in the Conference window# o Search for a character string< o Perform operations with keywords, markers, and members> o Modify the conference attributes (a moderator privilege) o Set notes as "seen"A o Enable your moderator privilege, if you are a moderator, or+ disable it if it is enabled currently 3 conf_conf_directory_pb= This menu item causes the Directory of Notes dialog box to? appear. In it you can specify selection crimteria to apply to@ the directory: note-range, author, dates, and other criteria. 4 conf_conf_directory_dbD Use this dialog box to specify selection criteria to apply to the< directory: note-range, author, dates, and other criteria. 5 dir_note_selection_lC The selection criteria that you specify from the list below willB be used to limit the directory of notes to those of interest to you. 5 dir_note_noterange_tbD By default, all topic notes are includend in a directory of notes.? Therefore, LAST-1 appears in the field. You can substitute a% range of your choice in the field. 5 dir_note_author_tb? If you want to see a directory of notes written by a certain? author, click on the button and type the author's user name.B If you include a node name with the user name, the directory is( limited to that specific combination. 5 dir_note_before_tb? If you want to limit the directory to notes entered before aA o certain date-time, click on the button and type the date-time.D Use a valid VMS date-time specification; for example, 12-NOV-1988B or YESTERDAY+16:15. (The second example specifies notes written! before yesterday at 4:15 P.M.) 5 dir_note_since_tb> If you want to limit the directory to notes entered since aA certain date-time, click on the button and type the date-time.D Use a valid VMS date-time specification; for example, 12-NOV-1988D or TODAY+10:00. (The second epxample specifies notes written since 10:00 this morning.) 5 dir_note_keyword_tb? If you want the directory of notes associated with a certain5 keyword, click on the button and type the keyword. 5 dir_note_title_tbA If you want a directory of notes that have a certain characterD string included in their titles, click on the button and type the string. 5 dir_note_search_tbB If you want to search through the notes for a certain character= string, cliqck on the button and type the string. The notes5 containing the string are listed in the directory. 5 dir_note_unseen_note_tb? If you want to limit the directory to notes you have not yet seen, click on the button. 5 dir_note_options_lD You can opt to include replies in the directory (by default, only topics are displayed). 5 dir_note_all_replies_tbD Click on this button if you want replies listed in the directory.- (By default, only topic notes arer listed.) 5 dir_note_apply_pbB The Apply push button applies the criteria in the dialog box to the directory.A The Apply push button does not remove the dialog box from your screen. 3 read_note_search_pb@ The Search... menu item displays the Search Notes dialog box,> in which you can type a search string and a note range. The@ first note in the range containing the string is displayed inD a Read window. You can go on to display subsequent notes with the s string. 4 read_note_search_db> In this dialog box, you can type a search string and a note> range. The first note in the range containing the string isB displayed in a Read window. You can go on to display subsequent notes with the string. 5 note_search_string_l0 Type the character string to be searched for. 5 note_search_note_tbC By default, all notes in the conference are searched. In a largeA conference, this operation can take a long time. You catn limit@ the note range to be searched by typing a range, for example, 150-180. 5 note_search_in_new_tbA Click on this button if you want the note to be displayed in a new Read window. 5 note_search_find_pbB Click on the Find push button to start the search for the first, note containing the string you specified. 5 note_search_findnext_pb< Click on the Find Next push button to continue to search.@ The next note (if any) containing the string you spuecified is displayed. 3 conf_conf_keyword_pbA The Keywords... menu item displays the Display Keywords dialogC box. A listing of the conference keywords appears. You can add a keyword to a note.C If you have create-keywords privilege, or if keyword creation isC unrestricted, you can create a new keyword, modify a keyword, or delete a keyword.; You can see a listing of all the notes associated with a? specified keyword by double clicking MB1 on the keywovrd; and@ you can read one of those notes by double clicking MB1 on the note-ID. 4 conf_keyword_disply_db> In this dialog box, you can see a listing of the conference1 keywords, and you can add a keyword to a note.C If you have create-keywords privilege, or if keyword creation isC unrestricted, you can create a new keyword, modify a keyword, or delete a keyword.; You can see a listing of all the notes associated with a? specified keyword by double clickinwg MB1 on the keyword; and@ you can read one of those notes by double clicking MB1 on the note-ID. 5 keyword_disply_keyword_lA You can type a string (including wildcards if you wish) in theA Keyword field and then click on the Apply push button to see a2 listing of the keywords that match that string.= For example, you might type *RA* in the Keyword field. AllA keywords that match are listed, for example CRANBERRY, ORANGE, and RABBIT. 5 keyword_disply_@$ NOTES026.Af ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1"wxinfo_l; Information on keywords, either all the keywords for the3 conference or a specified keyword, is displayed. 5 keyword_disply_info_udC All the keywords for the conference or the keywords that match a& string that you specify are listed.> If you double click MB1 on a keyword in the list, the notes? associated with that keyword are listed. You can then doubleB click MB1 on one of the note-IDs and the note will be displayed in a Read window. 5 keyword y_disply_apply_pbA You can type a string (including wildcards if you wish) in theA Keyword field and then click on the Apply push button to see a2 listing of the keywords that match that string.= For example, you might type *RA* in the Keyword field. AllA keywords that match are listed, for example CRANBERRY, ORANGE, and RABBIT. 5 conf_keyword_add_pbA The Add... push button displays the Add Keyword dialog box, in@ which you can specify a keyword and the note-ID nzumber of the0 note you want to associate with that keyword. 6 conf_keyword_add_db@ In this dialog box, you can specify a keyword and the note-ID> number of the note you want to associate with that keyword. 7 keyword_add_keyword_l2 Type the keyword here. (It must already exist.)B The keyword is already filled in if you selected it from a list& in the Display Keywords dialog box. 7 keyword_add_noteid_lA Type the note-ID number here to identify the note to {which you want to add a keyword. 7 keyword_add_apply_pbC Click on the Apply push button to add the keyword to the note-ID you have specified.A The Apply push button does not remove the dialog box from your screen. 5 conf_keyword_create_pbD The Create... push button displays the Create Keyword dialog box.B If you are a moderator or have create-keywords privilege, or ifD keyword creation is unrestricted, you can create new keywords for the confere|nce. 6 conf_keyword_create_db= In this dialog box, if you are a moderator or have create-B keywords privilege, or if keyword creation is unrestricted, you. can create new keywords for the conference. 7 keyword_create_keyword_l* Type the keyword you are creating here.@ If keyword creation is restricted, you must be a moderator or+ have create-keywords privilege to create a keyword. 7 keyword_create_apply_pb( Click on Apply to create the keyword.}A The Apply push button does not remove the dialog box from your screen. 5 conf_keyword_delete_pbD The Delete... push button displays the Delete Keyword dialog box,; in which you can delete a keyword from a specified note.B If you are a moderator, you can delete a keyword from all notes? in the conference that it references, and delete the keyword itself. 6 conf_keyword_delete_db@ In this dialog box, you can delete a keyword from a specified note.~B If you are a moderator, you can delete a keyword from all notes? in the conference that it references, and delete the keyword itself. 7 keyword_delete_keyword_l, Type the keyword you want to delete here. 7 keyword_delete_noteid_l? Type the note-ID number (for example, 12.8) of the note from( which you want to delete the keyword. 7 keyword_delete_all_tbA If you are a moderator, you can click on this button to deleteB a keyword from all the notes with which it is associated in the- conference, and delete the keyword itself. 7 keyword_delete_apply_pb, Click on Apply to do the actual deletion.A The Apply push button does not remove the dialog box from your screen. 5 conf_keyword_modify_pb? The Modify... push button displays the Modify Keyword dialogB box, which you can use to change the name of a keyword. The newB keyword automatically replaces the old keyword for all notes to( which the old keyword had been added./ You must be a moderator to modify a keyword. 6 conf_keyword_modify_dbA In this dialog box, you can modify a keyword name if you are a moderator. 7 keyword_modify_keyword_l9 Type the current keyword that you want to modify here./ You must be a moderator to modify a keyword. 7 keyword_modify_newkey_l Type the new keyword here./ You must be a moderator to modify a keyword. 7 keyword_modify_apply_pb4 Click on Apply to change the name of the keyword.A The Apply push button does not remove the dialog box from your screen. 3 conf_conf_marker_pbD The Markers... menu item displays the Display Markers dialog box,B in which you can see a list of your markers for the conference, and add or delete a marker. 4 conf_marker_disply_dbA In this dialog box, you can see a list of your markers for the* conference, and add or delete a marker. 5 marker_disply_marker_lA You can type a string (including wildcards if you wish) in the@ Marker field and then click on the Apply push button to see a1 listing of the markers that match that string.< For example, you might type *RA* in the Marker field. All@ markers that match are listed, for example CRANBERRY, ORANGE, and RABBIT. 5 marker_disply_info_lD Information on markers, either all the markers for the conference' or a specified marker, is displayed. 5 marker_disply_info_udD Informa tion on markers, either all the markers for the conference' or a specified marker, is displayed.@ All the markers for the conference are displayed if you clickA on the Apply push button while the asterisk wildcard is in the Marker field.; If you double click MB1 on a marker icon, that marker isD expanded; that is, the note-ID to which the marker has been added appears.C If you double click on the marker name or the note-ID associatedB with the marker, the note itself is displayed in a Read window. 5 marker_disply_apply_pbA You can type a string (including wildcards if you wish) in the@ Marker field and then click on the Apply push button to see a1 listing of the markers that match that string.D For example, you might type *RA* in the Marker field. All markersD that match are listed, for example CRANBERRY, ORANGE, and RABBIT.A The Apply push button does not remove the dialog box from your screen. 5 conf_marker_add_pbC Click on the Add... push button to display the Add Marker dialog0 box, in which you can add a marker to a note. 6 conf_marker_add_db6 In this dialog box, you can add a marker to a note. 7 marker_add_marker_l/ Type the name of the marker you want to add. 7 marker_add_noteid_l8 Type the note-ID number of the note you want to mark. 7 marker_add_apply_pbB Click on the Apply push button to add the marker to the note-ID= you have specified. The dialog box remains on your screen. 5 conf_marker_delete_pbB Click on the Delete... push button to display the Delete Marker< dialog box, in which you can delete a marker from a note. 6 conf_marker_delete_db; In this dialog box, you can delete a marker from a note. 7 marker_delete_marker_l2 Type the name of the marker you want to delete. 7 marker_delete_apply_pb1 Click on Apply to delete the specified marker.) The dialog box remains on your screen. 3 conf_conf_member_pbD The Members... menu item displays the Display Members dialog box,B in which you can see a list of conference members or moderators" and get information about them. 4 conf_member_disply_dbB In this dialog box, you can see a list of conference members or- moderators and get information about them. 5 member_disply_member_lA You can type a string (including wildcards if you wish) in the@ Member field and then click on the Apply push button to see a6 listing of the member names that match that string. 5 disply_options_rbA Your options are to see a display of all conference members or" just the conference moderators. 5 disply_all_members_tbD Click on this button and then click on Apply to see a list of all the conference members. 5 disply_only_moderators_tbD Click on this button and then click on Apply to see a list of all the conference moderators. 5 member_disply_info_lCS?$ NOTES026.Af ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1 " Information on members, either all the members of the conference' or a specified member, is displayed. 5 member_disply_info_udC All the members of the conference or the member names that match( a string that you specify are listed.B Double click MB1 on any member name listed to see that member's5 access or node list, mail address, and privileges. 5 member_disply_apply_pbA You can type a string (including wildcards if you wish) in the@ Member field and then click on the Apply push button to see a6 listing of the member names that match that string.A The Apply push button does not remove the dialog box from your screen. 5 conf_member_add_pbD If you are a moderator and have enabled your moderator privilege,D you can click on the Add... push button to display the Add Member dialog box. 6 conf_member_add_dbA A moderator can use the Add Member dialog box to add a member,? to delete a member, and to set member access information and privileges. 7 member_add_member_lD Type the name of the user you want to add as a conference member.? Either type the VMS user name (usually the last name; do notB type the node) or the person's whole name, which will establishB a unique member name (in case another member with the same last0 name is already a member in this conference).: The maximum length of the member name is 64 characters. 7 member_add_mail_tbC Click on the butt on and type the mail address of the new member.D Use the node the member prefers to receive mail on, if the member is on more than one node.B If you click on the button to turn it on but do not type a mail@ address in the field, this member will receive mail sent from? within DEC Notes only if he or she happens to be on the same) system as the person sending the mail. 7 member_add_authoriz_tbA Click on the button and type the node and user-name pair(s) of the new member; for example:& ABC::SMITH, DEF::SMITH, GHI::SHERYL 7 member_add_nodes_tbA Leave the Authorization Nodes field blank if you filled in the Authorization field above.1 Otherwise, type the node(s) of the new member. 7 member_add_grant_lA You can assign privileges to the new member by clicking on the appropriate toggle buttons. 7 add_act_moderator_tbB Click on this button to make the member a conference moderator.5 Moderator privilege includes the other privileges. 7 add_create_keyword_tbD If the creation of new keywords is restricted in this conference,> you may want to click on this button to give the member the$ privilege to create new keywords.D No privilege is needed for any member to add existing keywords to notes. 7 add_writebypass_tbB If the conference is write-restricted, you may want to click on5 this button to give the member writing privileges.C The write-regardless privilege allows a member to write notes toC a conference in which writing notes is generally prohibited, andB also to write notes (including topics) to a conference in which3 writing is generally restricted to replies only. 7 member_add_apply_pbD Click on Apply to add the new user as a member of the conference.A The Apply push button does not remove the dialog box from your screen. 5 conf_member_delete_pbD If you are a moderator and have enabled your moderator privilege,C you can click on the Delete... push button to display the Delete Member dialog box. 6 conf_member_delete_db? As a moderator, you can delete a member from the conference, using this dialog box. 7 member_delete_member_l: Type the name of the member you want to delete from the conference. 7 member_delete_apply_pb' Click on Apply to delete the member.A The Apply push button does not remove the dialog box from your screen. 5 conf_member_modify_pbD Click on Modify... to display the Modify Member dialog box, whichC you (as a moderator with moderator privilege enabled) can use to8 modify access information and privileges of a member. 6 conf_member_modify_dbD In this dialog box, a moderator can modify access information and$ privileges of an existing member. 7 member_modify_member_l Type the current member name. 7 member_modify_newname_tbA If you want to change the member name, click on the button and type the new member name. 7 member_modify_mail_tb@ If you want to change the member's mail address, click on the/ toggle button and type the new mail address.B If you click on the button to turn it on but do not type a mail@ address in the field, this member will receive mail sent from? within DEC Notes only if he or she happens to be on the same) system as the person sending the mail. 7 member_modify_authoriz_tbA To modify the member's access information, click on the button8 and type the node and user-name pair(s); for example: ABC::SMITH, DEF::SMITH 7 member_modify_nodes_tbA Leave the Authorization Nodes field blank if you filled in the Authorization field above.# Otherwise, type the new node(s). 7 member_modify_grant_lC Assign the privileges you want the member to have by clicking on" the appropriate toggle buttons. 7 modify_act_moderator_tbB Click on this button to make the member a conference moderator.> Moderator privilege includes the create-keywords and write- regardless privileges. 7 modify_create_keyword_tbA If the creation of new keywords is restricted, you may want toD click on this button to give the member the privilege of creating new keywords.D No privilege is needed for any member to add existing keywords to notes. 7 modify_writebypass_tbB If the conference is write-restricted, you may want to click on5 this button to give the member writing privileges.C The write-regardless privilege allows a member to write notes toC a conference in which writing notes is generally prohibited, andB also to write notes (including topics) to a conference in which3 writing is generally restricted to replies only. 7 member_modify_apply_pbD Click on Apply to apply the membership information and privileges you have specified.A The Apply push button does not remove the dialog box from your screen. 7 member_modify_show_pb; Click on Show to display the current information for the specified member. 3 conf_conf_modify_pbC The Show/Modify... menu item displays the Show/Modify Conference< dialog box, which shows the conference title, notice, and9 attributes. You can use the dialog box to change them. 4 conf_conf_modify_dbC In this dialog box, you can change the conference title, notice, or attributes. 5 conf_modify_title_tbC The title of the current conference is filled in. If you want to9 change it, click on the button and type the new title. 5 conf_modify_notice_tbD The notice of the current conference is filled in. If you want to: change it, click on the button and type the new notice. 5 conf_modify_conf_attrib_lC Select the attributes you want the conference to have, and click% on the appropriate toggle buttons. 5 conf_modify_write_all_tb= Click on this button to turn it on if you want to make the< writing of notes unrestricted. Turn it off if you want to= restrict writing to moderators and members with the write- regardless privilege. 5 conf_modify_restr_mem_tbD Click on this button to turn it on if you want to restrict accessC to the conference to members only. Turn it off if the conference is to be public. 5 conf_modify_restr_key_tbA Click on this button to turn it on if you want the creation ofC new keywords to be restricted to moderators and members with the create-keywords privilege.D Any member can add an existing keyword to a note, without special< privilege, whether or not keyword creation is restricted. 5 conf_modify_reply_only_tb@ If you want to restrict the writing of notes to replies only, click on this button. 5 conf_modify_apply_pbD Click on Apply to apply the information you have specified to the conference.A The Apply push buttIe4$ NOTES026.Af ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1"on does not remove the dialog box from your screen. 3 read_note_setseen_pbD The Set Seen... menu item displays the Set Seen dialog box, which- you can use to set unread notes as "seen." 4 read_note_setseen_db= You can use the Set Seen dialog box to set unread notes asA "seen," either all notes in the conference or the notes before" or since a specified date-time. 5 note_setseen_rbD Your options are to set notes as seen before or since a specified*  date-time, or to set all notes as seen. 5 note_setseen_before_tb= If you want to set all notes before a certain date-time as6 "seen," click on the button and type the date-time.B Use a valid VMS date-time specification, such as 10-NOV-1988 or5 YESTERDAY+16:00 (which means yesterday at 4 P.M.). 5 note_setseen_since_tbD If you want to set all notes since a certain date-time as "seen,". click on the button and type the date-time.B Use a valid VMS date-time specification, such as 10-NOV-1988 or5 YESTERDAY+16:00 (which means yesterday at 4 P.M.). 5 note_setseen_all_tbB If you want all the conference notes to be set as "seen," click on this button. 3 conf_conf_moderate_pbA Choose the Enable Moderator menu item to enable your moderatorA privilege in the conference. You must enable this privilege in/ order to perform privileged moderator tasks.@ After you have enabled the moderator privilege, the menu itemA changes to Disable Moderator, which allows you to disable yourB moderator privilege when you have finished performing moderator tasks. 2 conf_note_pde2 Use the Notes menu to perform these operations: o Create a new note o Modify a note's attributes: o Read a note in an existing window or in a new window: o Delete a note (if you are the author or a moderator) ww" 1 conf_popupC You invoke the pop-up menu by pressing and holding down MB3. The) pointer can be anywhere in the window.@ From the pop-up menu, you can quickly display the next unseenC note, display a note of your choice, write a note, print a note, or close the conference. 2 conf_popup_next_unseen_pb@ Choose the Next Unseen menu item to display the next note you" have not seen in a Read window. 2 conf_popup_read_in_new_pbC Choose the Read in New Window menu item to display an additional? note, which you selected by clicking on it in the Conference@ window, in a new Read window. The note or notes already being% displayed remain in their windows. 2 conf_popup_note_pb= Choose the Note-ID... menu item to bring up the Read Note-? ID dialog box, in which you can type the note-ID number (for0 example, 112.2) of the note you want to read.@ You can also specify that the note be displayed in a new ReadC window, allowing any currently displayed note or notes to remain in their windows. 2 conf_popup_crea_topic_pbC Choose the Create Topic menu item to bring up an Edit window, inC which you can write a new topic note to enter in the conference. 2 conf_popup_print_pbB Choose the Print menu item to print a note that you selected by+ clicking on it in the Conference window. 2 conf_popup_close_conf_pbD Choose the Close Conference menu item to close the conference and its associated windows. ww1 read_windowA The R ead window is the window in which a note is displayed for= reading. In this window, you can choose from various menus> to read other notes, to write a note, to perform conference) operations, and to take other actions.; More than one Read window can be on your screen at once,: displaying notes in the same conference or in different conferences. 2 read_work_db? The body of a note is the note's text, displayed in the ReadD window. In this window, you can choose from various menus to readB other notes, to write a note, to perform conference operations, and to take other actions.; More than one Read window can be on your screen at once. 3 read_work_noteid_lD The note-ID identifies the note you are reading. If it is a topicA note, the note-ID number is n.0, a number with a decimal pointA followed by 0. A topic note is the first note in a discussion.< Its replies are numbered sequentially, starting with n.1. 3 read_work_title_lD The title of the topic note appears. (If you are reading a topic,B its title appears. If you are reading a reply, the title of the& topic note for this reply appears.) 3 read_work_nofn_lD If this is a topic note, the number of replies it has appears. IfC it is a reply note, its sequence and the total number of replies appears; for example, 1 of 3. 3 read_work_author_l& The author's node and name appears. 3 read_work_date_l2 The date and time the note was entered appears. 3 read_work_attrib_l? The number of lines in the note and the keywords attached toC the note, if any, are displayed. If you are reading a reply, its title appears also. 3 read_work_textA The Read window is the window in which a note is displayed for= reading. In this window, you can choose from various menus> to read other notes, to write a note, to perform conference) operations, and to take other actions. 3 read_work_create_reply_pbD Click on this button if you want to write a reply. An Edit window will appear. 3 read_work_back_topic_pbA Click on the arrow to the left of the Topic push button to see9 the preceding topic note displayed in the Read window. 3 read_work_topic_pbB Click on the Topic push button to see the associated topic noteB (the note numbered n.0) when you are currently reading a reply. 3 read_work_next_topic_pbB Click on the arrow to the right of the Topic push button to seeC the next topic note (numbered n.0) displayed in the Read window. 3 read_work_back_reply_pb= Click on the arrow to the left of the Reply push button toA see the preceding note in the discussion displayed in the Read window.B If you are currently reading the first reply in the discussion, the topic will be displayed. 3 read_work_reply_pbD If you are reading a topic, click on the Reply push button to seeC the first reply displayed in the Read window. If you are already@ reading a reply, click on the arrow to the right of the Reply% push button to see the next reply. 3 read_work_next_reply_pbB Click on the arrow to the right of the Reply push button to see/ the next reply displayed in the Read window. 3 read_work_back_page_pbD Click on the arrow to the left of the Page push button to see theC preceding page in a multipage note, or (if there is no precedingD page in the note) the preceding note (either a topic or reply) in the conference. 3 read_work_page_pbD Click on the Page push button to see the next page of a multipage note. 3 read_work_next_page_pbA Click on the arrow to the right of the Page push button to seeC the next page of a multipage note. If there are no more pages inA the note, you will see the next note in the discussion, or (ifD you are at the end of the discussion) the next unseen note in the conference. 3 read_work_unseen_pbC Click on the Next Unseen push button to see the next unseen note in the conference. wwݷ1 read_menu_barA You use menus to perform DEC Notes operations, such as reading( notes, creating new notes, and so on.D The menu names appear in the menu bar of a window. To use a menu,@ position the pointer on a menu name, such as File, then pressD and hold MB1. The pull-down menu appears. Still holding MB1 down,C move the pointer to the menu item you want, and then release MB1 to select that item.B The Read window contains the following menus: File, Edit, Link, Conference, Notes, and Help. 2 read_file_pde1 Use the File menu to perform these operations:3 o Send a mail message or forward a note by mail o Extract notes to a file o Print notes o Close the Read window o Close the conference 3 read_file_extract_pbC The Extract... menu item brings up the Extrp$ NOTES026.Af ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1mT"act Notes dialog box,4 in which you can extract notes to an output file. 4 read_file_extract_db? In this dialog box, you can extract notes to an output file. 5 note_extract_filespec_l? Type the file specification of the file to which you want to extract a note or notes. 5 note_extract_selection_lD Specify the criteria of the notes you want to extract by clicking< on the appropriate toggle buttons and typing information. 5 note_extract_range_tb2 If you are reading a note, its note-ID appears.= If you want to extract a different note or range of notes,= substitute the note-ID or a note range of your choice; for example, 212.0 or 500-LAST. 5 note_extract_author_tbB If you want to extract notes written by a certain author, click1 on the button and type the author's user name. 5 note_extract_before_tbC If you want to limit the notes extracted to those entered beforeC a certain date-time, click on the button and type the date-time.A You must use a valid VMS date-time specification; for example,C 16-NOV-1987 or 10-FEB or YESTERDAY+13:00 (meaning yesterday at 1 P.M.). 5 note_extract_since_tbD If you want to limit the notes extracted to those entered since aA certain date-time, click on the button and type the date-time.A You must use a valid VMS date-time specification; for example,C 16-NOV-1987 or 10-FEB or YESTERDAY+13:00 (meaning yesterday at 1 P.M.). 5 note_extract_keyword_tb= If you want to extract the notes associated with a certain5 keyword, click on the button and type the keyword. 5 note_extract_title_tbB If you want to extract the notes whose titles include a certain= character string, click on the button and type the string. 5 note_extract_unseen_tbD If you want to extract only notes you have not yet seen, click on the button. 5 note_extract_options_l< Your selection options are to mark the extracted notes as? "seen," to include replies along with topics, to include the= note headers, and to append the notes to an existing file. 5 note_extract_mark_seen_tb= Click on this button if you want to mark the notes you are* extracting as "seen" in the conference. 5 note_extract_incl_repl_tbC Click on this button if you want to include replies in the notes9 extracted. By default, only topic notes are extracted. 5 note_extract_incl_head_tbD Click on this button to turn it off if you do not want to includeC the note header in the extracted file. By default, the header is$ included and so the button is on. 5 note_extract_append_tbC If you want to append the note(s) to an existing file, type that@ file specification in the Output Filename field at the top ofD this dialog box, and click on Append to File. The extracted notes, will be appended to the end of that file. 5 read_file_extract_ddif_db= If any note in the range of notes you are extracting is inB DIGITAL Document Interchange Format (DDIF), it can be extractedA to a separate output file but not to the same file as the non- DDIF notes.A This dialog box informs you of the note-ID and the output file7 name of the DDIF file. You can change the file name.= If you click on OK, the note is extracted. If you click on% Cancel, the note is not extracted. 6 note_extract_ddif_note_nbr_t= If any note in the range of notes you are extracting is inB DIGITAL Document Interchange Format (DDIF), it can be extractedA to a separate output file but not to the same file as the non- DDIF notes.) The note-ID of the DDIF note is given. 6 note_extract_ddif_file_l= If any note in the range of notes you are extracting is inB DIGITAL Document Interchange Format (DDIF), it can be extractedA to a separate output file but not to the same file as the non- DDIF notes.B The default output file name of the file to which the DDIF note: is to be written appears. You can change the file name. 3 read_file_print1_pbD Choose the Print menu item to print the selected note or the note you are reading. 3 read_file_print2_pbB Choose the Print... menu item to display the Print Notes dialog box.@ You can use this dialog box to specify criteria for selecting< notes for printing, such as note range, author, and date. 4 read_file_print_db@ You can use this dialog box to specify criteria for selecting< notes for printing, such as note range, author, and date. 5 note_print_selection_l= You can specify your criteria for selection of notes to beC printed by clicking on the appropriate toggle buttons and typing information. 5 note_print_range_tb: If you are reading a note, its note-ID appears. You canD substitute the note-ID or note range of your choice; for example, 8.4 or 250-LAST. 5  note_print_author_tbD If you want to print only notes by a certain author, click on the* button and type the author's user name. 5 note_print_before_tbC If you want to limit the notes printed to those entered before aA certain date-time, click on the button and type the date-time.A You must use a valid VMS date-time specification; for example,C 16-NOV-1987 or 10-FEB or YESTERDAY+13:00 (meaning yesterday at 1 P.M.). 5 note_print_since_tbB If you want to limit the notes printed to those entered since aA certain date-time, click on the button and type the date-time.A You must use a valid VMS date-time specification; for example,C 16-NOV-1987 or 10-FEB or YESTERDAY+13:00 (meaning yesterday at 1 P.M.). 5 note_print_keyword_tbD If you want to print the notes associated with a certain keyword,, click on the button and type the keyword. 5 note_print_title_tb@ If you want to print the notes whose titles include a certain= character string, click on the button and type the string. 5 note_print_unseen_tbB If you want to print only notes you have not yet seen, click on the button. 5 note_print_options_lB Your selection options are to mark the printed notes as "seen,"@ to include replies along with topics, and to include the note headers. 5 note_print_mark_seen_tb= Click on this button if you want to mark the notes you are( printing as "seen" in the conference. 5 note_print_incl_reply_tbC Click on this button if you want to include replies in the notes5 printed. By default, only topic notes are printed. 5 note_print_incl_header_tbD Click on this button to turn it off if you do not want to includeB the note header in the printout. By default, it is included and so the button is on. 5 note_print_invok_widgt_pbC Click on Options... to bring up the Printing Options dialog box.< You can use it to specify the following printing options: o Number of copies o Page range8 o Print format (line printer, terminal, ANSI2, ANSI,8 PostScript(R), ReGIS, Tektronix, DDIF, or DITROFF) o Printer o Print-after time? You can also click on Options... within the Printing OptionsC dialog box to bring up another dialog box, called Print Options,; in which you can specify a number of additional options. 5 read_file_ddif_print_dbC If any note in the range of notes you are printing is in DIGITAL= Document Interchange Format (DDIF), it can be printed as a? separate print job on a postscript printer, but not together with the non-DDIF notes.C If you click on OK, the note is printed. If you click on Cancel, the note is not printed. 6 note_ddif_print_nbr_lC If any note in the range of notes you are printing is in DIGITAL= Document Interchange Format (DDIF), it can be printed as a@ separate print job, but not together with the non-DDIF notes. 6 note_ddif_print_widgt_pbD Click on the Options... push button to display a dialog box which0 you can use to select other printing options. 3 read_file_dismiss_pb5 The Close Window menu item closes the Read window. 2 read_edit_pdeB Use the Edit menu to copy selected text or to select the entire contents of a window. 2 Link_menuA Use the Link menu to create, follow, and display links between+ information in one or more applZpS$ NOTES026.Af ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1ɾ"ications.@ Use context-sensitive help to get help on any Link menu item,B a tutorial on using the Link menu, or conceptual and historical background information.? One way to get context-sensitive help on the Link menu is as follows:? 1. Pull down the Link menu, keep MB1 depressed, and move the2 pointer to any selectable (non-dimmed) item. 2. Press the Help key. 3. Release MB1.B 4. When the help window appears, choose Link Menu from the list of additional topics. 2 read_conf_pde% You can use the Conference menu to; o Display a directory of notes in the Conference window# o Search for a character string< o Perform operations with keywords, markers, and members> o Modify the conference attributes (a moderator privilege) o Set notes as "seen"A o Enable your moderator privilege, if you are a moderator, or+ disable it if it is enabled currently 2 read_note_pde2 Use the Notes menu to perform these operations: o Create a new note o Modify a note's attributes: o Read a note in an existing window or in a new window: o Delete a note (if you are the author or a moderator) 3 read_note_create_pbA The Create New Note... menu item brings up the Create New NoteC dialog box. You can use this dialog box to specify the note typeA (topic or reply) and to set the note's attributes, as follows:+ o Allow or prohibit replies to the note o Hide the note@ o Make the note a pointer to a conference, to publicize that conference* o Use the last text in the edit buffer 4 read_note_create_dbA You can use this dialog box to specify the note type (topic or7 reply) and to set the note's attributes, as follows:+ o Allow or prohibit replies to the note o Hide the note@ o Make the note a pointer to a conference, to publicize that conference* o Use the last text in the edit buffer 5 note_create_operation_l> The two types of notes are topics and replies. A topic noteD begins a discussion and is numbered n.0. Its replies are numbered? n.1, n.2, and so forth. For example, 8.0 is the note-ID of a4 topic, and 8.1 and 8.2 are replies to that topic. 5 note_create_operation_rb> The two types of notes are topics and replies. A topic noteD begins a discussion and is numbered n.0. Its replies are numbered? n.1, n.2, and so forth. For example, 8.0 is the note-ID of a4 topic, and 8.1 and 8.2 are replies to that topic. 5 note_create_reply_tbB Click on this button to turn it on if you want the note to be a reply rather than a topic.B If you are reading a note, its note-ID appears in the field. IfC you want your note to be a reply to a different note, substitute that note-ID. 5 note_create_topic_tbD If the Topic button is on, your note will be a topic, not a reply? to another note. By default, the button is turned on. If you. click on Reply, the Topic button turns off. 5 note_create_noteid_tB If you are reading a note, its note-ID appears in the field. IfC you want your note to be a reply to a different note, substitute that note-ID. 5 note_create_attrib_l< Click on the appropriate toggle buttons to set the note's attributes, as follows:+ o Allow or prohibit replies to the note o Hide the note@ o Make the note a pointer to a conference, to publicize that conference* o Use the last text in the edit buffer 5 note_create_replies_tbC By default, this button is on. Click on it to turn it off if you) want to prohibit replies to your note. 5 note_create_hidden_tb: Click on this button if you want the note to be hidden.A A hidden note can be viewed only by the author or a moderator.B Other users who try to read it get a message indicating that it% is hidden and cannot be displayed. 5 note_create_conference_tbD Click on this button and type a conference notefile specification= (for example, MAR::ASTRONOMY) if you want to associate the@ conference with this note. This publicizes that conference to readers of the note. 5 note_create_last_tbB Click on this button if you want to use the last text (the text$ in the edit buffer) in your note. 3 read_note_modify_pb> The Show/Modify... menu item brings up the Show/Modify NoteD dialog box, which shows the note's current attributes. If you areA a moderator or the author of the note, you can use this dialog3 box to change the note's attributes, as follows: o Allow or prohibit replies& o Make the note hidden or unhidden o Change the title, o Create a pointer to another conference+ o Move the note by changing its note-ID o Add keywords to the note6 You can also display the note's current attributes. 4 read_note_modify_db@ If you are a moderator or the author of the note, you can use? this dialog box to change the note's attributes, as follows: o Allow or prohibit replies& o Make the note hidden or unhidden o Change the title, o Create a pointer to another conference+ o Move the note by changing its note-ID o Add keywords to the note6 You can also display the note's current attributes. 5 note_modify_noteid_l? If you are reading a note, its note-ID appears. You can type another note-ID. 5 note_modify_attrib_l? You can make the following changes in the note's attributes: o Allow or prohibit replies& o Make the note hidden or unhidden o Change the title, o Create a pointer to another conference+ o Move the note by changing its note-ID o Add keywords to the note 5 note_modify_replies_tbA Turn this toggle button on or off to allow or prohibit further replies to the note. 5  note_modify_hidden_tb@ Click on this button to turn it on if you want the note to be hidden.A A hidden note can be viewed only by the author or a moderator.B Other users who try to read it get a message indicating that it is hidden. 5 note_modify_title_tbB If you are reading a note, its title appears. You can change it> by substituting a new title, after you click on the button. 5 note_modify_conference_tbD If you want the note to be a pointer to another conference, clickB on the button and type the notefile specification (for example,? MAR::ASTRONOMY) of the conference to which you want the noteB to point. This will publicize that conference to readers of the note. 5 note_modify_new_noteid_tbB You can change the note-ID of the note, thus effectively moving6 the note to a different location in the conference.B Click on the button. Then be sure to type a new note-ID that isB not already in use in the conference. Two notes cannot have the same note-ID.B You can relocate a range of notes by typing a note range in theB Note-ID field above. (For example, type 4.0-4.4 to move topic 4A and its four replies.) Then in the New Note-ID field, type the? new note-ID of the first of these notes (for example, 15.0);C the others will follow in sequence (becoming, for example, 15.1- 15.4). 5 note_modify_keywords_tb= To add a keyword to the note, click on the button and type@ the keyword. You must use an existing keyword unless you have* moderator or create-keywords privilege. 5 note_modify_show_pbB Click on Show to display the current attributes of the note you, specified. The dialog box is not removed. 3 read_note_read_pde? Press and hold MB1 and move the pointer right to display theA submenu. You can then display another submenu or a dialog box,? depending on what you want to read. Your options are to read o The next unseen note*  o The next page, note, reply, or topic6 o The preceding (back) page, note, reply, or topic o The last read noteC o A note that you specify by its note-ID, either in an existing& Read window or a new Read window 4 read_note_read_unseen_pbD Choose Unseen to display the next note that you have not yet seen in the conference. 4 read_note_read_next_pdeC Press and hold MB1 and move the pointer right to display anotherC submenu, in which you can cho7A$ NOTES026.Af ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1T'"ose to read the next page, the next+ note, the next reply, or the next topic. 5 read_note_read_next_p_pbA Choose Next Page to display the next page of a multipage note,< or (if you are at the end of a note) the next note in the? discussion, or (if you are at the end of the discussion) the& next unseen note in the conference. 5 read_note_read_next_n_pbB Choose Next Note to display the next note after the one you are reading. 5 read_note_read_next_r_pbA Choose Next Reply to display the next reply after the note you are reading. 5 read_note_read_next_t_pbA Choose Next Topic to display the next topic after the note you are reading. 4 read_note_read_back_pde? Press and hold MB1 and move the pointer right to display the@ submenu, in which you can choose to read the back (preceding) page, note, reply, or topic. 5 read_note_read_back_p_pb@ Choose Back Page to display the preceding page of a multipageA note, or (if you are at the beginning of a note) the preceding note in the conference. 5 read_note_read_back_n_pb? Choose Back Note to read the preceding note (whether it is a topic or reply). 5 read_note_read_back_r_pbD Choose Back Reply to display the reply preceding the note you are reading.? If you are reading the first reply in a discussion, the note7 displayed will be a topic (n.0) rather than a reply. 5 read_note_read_back_t_pbD Choose Back Topic to display the topic preceding the note you are reading. 4 read_note_read_last_note_pb@ Choose Last Read Note to display again the last note you read before the current one. 4 read_note_read_noteid_pb? Choose the Note-ID... menu item to bring up the Read Note-IDD dialog box. You can use this dialog box to specify the note-ID ofC the note you want to display, and to specify whether you want it displayed in a new window. 5 read_note_read_note_dbA You can use this dialog box to specify the note-ID of the noteD you want to display, and to specify whether you want it displayed in a new window. 6 read_note_read_note_id_l? If you are reading a note, its note-ID is displayed. You can substitute another note-ID. 6 read_note_read_in_new_tb= Click on this button if you want to read the note in a new> window, with the current note remaining in its Read window.7 (Otherwise, the new note replaces the current note.) 3 read_note_readnew_note_pbA Choose Read in New Window to display the note in a new window,* leaving the current note in its window. 3 read_note_delete1_pbB If you are a moderator or the author of the note, you can clickB on the Delete menu item to delete the selected note or the note you are reading. 3 read_note_delete2_pbC The Delete... menu item brings up the Delete Note dialog box. IfB you are a moderator or the author of the note, you can use this. dialog box to specify a note and delete it. 4 read_note_delete_db@ If you are a moderator or the author of the note, you can use3 this dialog box to specify a note and delete it. 5 note_delete_noteid_lC If you are reading a note, its note-ID appears in this field. If? you want to delete a different note, substitute its note-ID.@ You must be a moderator or the author of a note to delete it. ww 1 read_popupC You invoke the pop-up menu by pressing and holding down MB3. The) pointer can be anywhere in the window.C From the pop-up menu, you can quickly perform any of a number of operations: o Reading another note o Writing a note o Printing a note% o Closing the current Read window o Closing the conference 2 read_popup_next_unseen_pb? Choose Next Unseen to display the next note you have not yet seen. 2 read_popup_next_pde? Press MB3 and drag the pointer right to display a submenu inD which you can choose to display the next page, the next note, the! next reply, or the next topic. 3 read_popup_next_page_pbA Choose Next Page to display the next page of a multipage note,< or (if you are at the end of a note) the next note in the? discussion, or (if you are at the end of the discussion) the& next unseen note in the conference. 3 read_popup_next_note_pb? Choose Next Note to display the next note (either a topic or reply). 3 read_popup_next_reply_pbA Choose Next Reply to display the next reply in the discussion. 3 read_popup_next_topic_pb4 Choose Next Topic to display the next topic note. 2 read_popup_back_pde? Press MB3 and drag the pointer right to display a submenu inD which you can choose to display the preceding page, the preceding5 note, the preceding reply, or the preceding topic. 3 read_popup_back_page_pb@ Choose Back Page to display the preceding page of a multipageC note, or (if you are at the beginning of the note) the preceding note in the conference. 3 read_popup_back_note_pbA Choose Back Note to read the preceding note (either a topic or reply). 3 read_popup_back_reply_pb4 Choose Back Reply to display the preceding reply.D If you are currently reading the first reply in a discussion, the& topic note (n.0) will be displayed. 3 read_popup_back_topic_pbB Choose Back Topic to display the preceding topic note (numbered n.0). 2 read_popup_last_note_pb@ Choose Last Read Note to display again the last note you read before the current one. 2 read_popup_note_pb@ Choose Note-ID... to bring up the Read Note-ID dialog box, inA which you can specify the note-ID of the note you want to read= and specify whether it is to be displayed in a new window. 2 read_popup_crea_reply_pbA Choose the Create Reply menu item if you want to write a replyD to the note you are reading. An Edit window appears, in which you can write your reply. 2 read_popup_crea_topic_pb< Choose Create Topic if you want to write a topic note. An@ Edit window appears in which you can write the note, which is. identified as a new topic in the title bar. 2 read_popup_print_pb> Choose Print if you want to print the note you are reading. 2 read_popup_dismiss_pbA Choose Close Window to remove the current Read window from the screen. 2 read_popup_close_conf_pb: Choose Close Conference to close the conference and its associated windows. wwR1 edit_window; The Edit window is the window in which you write a note.D Your node, user name, and the date-time are already filled in. At@ the top, the note is identified as a new topic or as a reply.@ Type a meaningful title for your note in the Title field, and? type any keywords you want to associate with the note in the? Keywords field. (They must be keywords that already exist in? the conference, unless you have moderator or create-keywords> privilege or unless keyword creation is unrestricted in theB conference.) Type the text of your note, and when you are readyB to enter it, choose Enter Note from the File pull-down menu; or5 you can cancel the entry by choosing Cancel Enter. 2 edit_work_db; The Edit window is the window in which you write a note .D Your node, user name, and the date-time are already filled in. At@ the top, the note is identified as a new topic or as a reply.@ Type a meaningful title for your note in the Title field, and? type any keywords you want to associate with the note in the? Keywords field. (They must be keywords that already exist in? the conference, unless you have moderator or create-keywords> privilege or unless keyword creation is unrestricted in theB conference.) Type the text of your note, and when you are readyB to enter it, choose Enter Note from the File pull-down menu; or5 you can cancel the entry by choosing Cancel Enter. 3 edit_work_author_l5 Your node and user name are already in this field. 3 edit_work_date_l7 The current date and time are already in this field. 3 edit_work_title_l9 Type a title for your note in this field. It should beA meaningful, as it will appear in directories of notes and when others are readin vP$ NOTES026.Af ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1+"g your note. 3 edit_work_keyword_l= You can associate any of the conference keywords with your? note by typing them in this field. Keywords act as a kind of convenient index to notes.D The keywords you use must already exist in the conference, unlessD you have moderator or create-keywords privilege or unless keyword. creation is unrestricted in the conference. 3 edit_work_text# Type the text of your note here. 2 edit_finish_create_dbC This dialog box is a safeguard against inadvertently losing text@ you have written in an Edit window. The dialog box appears ifB you are currently in the process of creating a note in the EditA window and, without having entered the note in the conference,B you try to close the conference, exit from DEC Notes, or create another new note.C The dialog box reminds you that you are currently creating a newC note, and lets you cancel this note, enter it in the conference,A or save the note text in a file. Alternatively, you can cancelB the operation you just initiated (to close the conference, exitA from DEC Notes, or create another new note) by clicking on theB Cancel Operation push button. Then the Edit window remains open4 and you can work further on the note in progress. 3 finish_create_lA You are reminded that you are in the process of creating a newB note, so that you do not inadvertently cancel the note and lose your work. 3 finish_options_l@ Your options are to cancel the note in progress, to enter the> note in the conference, or to save the note text in a file. 3 finish_note_cancl_tbB Click on this button if you want to cancel the note you started0 to write without saving the text of the note. 3 finish_note_enter_tbD This button is on by default. It causes the note to be entered in the conference.@ The button goes off if you click on one of the other buttons. 3 finish_note_save_tbC Click on this button if you want to save the text of the note in. a file. Then type a file name for the file.@ If you do not supply a file type, the file type by default is .TXT. wwz1 edit_menu_bar@ You use menus to perform DEC Notes operations. The menu namesB appear in the menu bar of a window. To use a menu, position theC pointer on the menu name, such as File, then press and hold MB1.D The pull-down menu appears. Hold MB1 down and move the pointer to? the menu item you want, and release MB1 to select that item.@ The Edit window contains the following menus: File, Edit, and Help. 2 edit_file_pde1 Use the File menu to perform these operations:7 o Enter a note you have written into the conference o Set the note's attributes o Save the note in a file! o Include a file in your note' o Use an existing file in your noteA o Cancel the note so that it is not entered in the conference 3 edit_file_enter_pbD When you are satisfied with the note you have written in the EditD window, choose Enter Note from the File menu to enter the note in the conference. 3 edit_file_attribute_pbC Choose Note Attributes... to bring up the Note Attributes dialog5 box. In this dialog box, you can do the following:, o Allow or prohibit replies to your note' o Make your note hidden or unhidden4 o Make your note a pointer to another conference 4 edit_file_attribute_db0 In this dialog box, you can do the following:, o Allow or prohibit replies to your note' o Make your note hidden or unhidden4 o Make your note a pointer to another conference 5 edit_attrib_replies_tbD By default, this button is already on. Click on it to turn it off0 if you want to prohibit replies to your note. 5 edit_attrib_hidden_tbA Click on this button to turn it on if you want your note to be hidden.?  A hidden note can be read only by its author or a moderator.@ Other users who try to read it get a message that the note is hidden. 5 edit_attrib_conference_tbD Click on this button and type a conference notefile specification= (for example, MAR::ASTRONOMY) if you want to associate the@ conference with this note. This publicizes that conference to readers of the note. 3 edit_file_saveas_pb@ The Save As... menu item brings up the Save Draft File dialog@ box, which you can use to save the note you have written in a file. 4 edit_file_saveas_dbB You can use the Save Draft File dialog box to save the note you have written in a file. 5 edit_saveas_filename_lC Type the name of the file you are creating for the note you have written.C If you do not include the file type, the file type by default is TXT. 3 edit_file_incl_pbB The Include File... menu item brings up the Include File dialog@ box. In thi s dialog box, you can see a directory of files (inA your default directory) whose file name or file type match the? string in the File Filter field. You can select one of theseB files by clicking on it; or you can specify a different file inD the Selection field. You can substitute a different string in theC File Filter field to get a different directory listing of files.; When you have selected a file, click on OK, and the text> contained in that file appears in the note yo u are writing. 4 edit_file_incl_db@ In this dialog box, you can see a directory of files (in yourC default directory) whose file name or file type match the string> in the File Filter field. You can select one of these files@ by clicking on it; or you can specify a different file in theC Selection field; or you can substitute a different string in theC File Filter field to get a different directory listing of files.; When you have selected a file, click on OK, and the text> contained in that file appears in the note you are writing. 3 edit_file_usef_pb@ Choose the Use Existing File... menu item to bring up the Use= Existing File dialog box if you want to use the text of anA existing file as the entire text of a note. When you specify aB file name in this dialog box and click on OK, the Edit window's? text area informs you that the files's text will be entered.C The text itself does not appear in the Edit window. By contrast,> when you choose the Include File... menu item and include aC specified file, the text of the file appears in the Edit window, and you can edit it. 4 edit_file_usef_dbC Use this dialog box when you want to use the text of an existing= file without change as the entire text of a note. When you> specify a file name in this dialog box and click on OK, the@ Edit window's text area informs you that the file's text will be entered.C The text itself does not appear in the Edit window. By contrast,> when you choose the Include File... menu item and include aC specified file, the text of the file appears in the Edit window, and you can edit it.B In the dialog box, you can specify a string as a file "filter,"C and then click on the Filter push button, causing the file names@ containing that string to be displayed. You can select one ofD them by clicking on it. Alternatively, you can type the file name in the Selection field. 3 edit_file_cancl_pbB Choose Cancel Enter if you decide not to enter your note in the conference. 2 edit_edit_pde= The Edit menu can be used to perform the following editing operations on text: o Undo a clearing operation o Cut o Copy o Paste o Clear' o Select all the text in the window 3 edit_edit_undo_pbC You can restore the text you just cleared by choosing Undo Clear from the Edit menu. 3 edit_edit_cut_pb? First select the text you want to delete by holding down MB1C and dragging the pointer across it; or select the entire text by* choosing Select All from the Edit menu.A Then choose the Cut menu item from the Edit menu. The selected text is cut from the note.@ The cut text is put into a paste buffer, and it can be pastedD wherever you want. To paste, position the cursor and choose Paste8 from the Edit menu. The text reappears at the cursor.@ The text remains in the c$ NOTES026.Af ![NOTES.TEMPKIT]NOTES$DWHELP.HLB;1 paste buffer until you cut some other8 text, which then replaces the contents of the buffer. 3 edit_edit_copy_pb? If you want to copy some text elsewhere in your note withoutA deleting it from where it is, first select the text by holdingB down MB1 and dragging the pointer over it (or choose Select All? from the Edit menu to select all the text in the note). ThenC choose Copy instead of Cut. (Copy and Cut both put the text into@ the paste buffer, but Cut deletes it from the window, whereas Copy does not.)D Position the cursor and then choose Paste from the menu. The text$ is copied to the cursor position. 3 edit_edit_paste_pb@ If you have cut some text from your note, this text is in theB paste buffer. You can reinsert it into the note at the position> of the cursor by choosing the Paste menu item from the Edit menu. 3 edit_edit_clear_pbD If you want to delete some text from your note without putting itC into the paste buffer, first select the text by holding down MB1C and dragging the pointer across it (or select the entire text byA choosing Select All from the Edit menu). Then choose the Clear menu item from the Edit menu.A The text disappears. The contents (if any) of the paste buffer are unchanged. 3 edit_edit_select_pbA Choose the Select All menu item to select all the text in your note. ww>6 1 edit_popupC You invoke the pop-up menu by pressing and holding down MB3. The) pointer can be anywhere in the window.A From the pop-up menu, you can quickly enter your note into the> conference, cut, copy, or paste text, or cancel your entry. 2 edit_popup_enter_pb@ When you are satisfied with the note you have written, choose4 Enter Note to enter the note into the conference. 2 edit_popup_cut_pb? First select the text you want to delete by holding down MB1C and dragging the pointer across it; or select the entire text by* choosing Select All from the Edit menu.C Then choose the Cut menu item from the pop-up menu. The selected text is cut from the note.@ The cut text is put into a paste buffer, and it can be pastedD wherever you want. To paste, position the cursor and choose Paste; from the popu-up menu. The text reappears at the cursor.@ The text remains in the paste buffer until you cut some other3 text, which replaces the contents of the buffer. 2 edit_ popup_copy_pb? If you want to copy some text elsewhere in your note withoutA deleting it from where it is, first select the text by holdingB down MB1 and dragging the pointer over it (or choose Select All? from the Edit menu to select all the text in the note). ThenC choose Copy instead of Cut. (Copy and Cut both put the text into@ the paste buffer, but Cut deletes it from the window, whereas Copy does not.)D Position the cursor and then choose Paste from the menu. The text$ is copied to the cursor position. 2 edit_popup_paste_pb@ If you have cut some text from your note, this text is in theB paste buffer. You can reinsert it into the note at the position@ of the cursor by choosing the Paste menu item from the pop-up menu. 2 edit_popup_cancl_pbB Choose Cancel Enter if you decide not to enter your note in the conference.wwFP  ANKAN overviewabout main_work_boxmain_caution_box main_window scroll_barsOK_pb cancel_pbclasses entry_names conferencesObjects main_menu_bar main_popup conf_windowtopicsreplieskeywordsmarkersmembers conf_menu_bar conf_popup read_window read_menu_bar read_popup edit_window edit_menu_bar edit_popup"*[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1+,f./J 4- 0123KPWO56'yOģ7E4lģ89GJHJro|URM 1.2.AMotif Uil CompilerUIL;5156V2.0-00013-DEC-2004 17:19:04.28DWNOTES_UIV1.0gjUqqof   l @  l4 L 0t D 0 T $  H X8EDIT_POPUPEDIT_FINISH_CREATE_DBEDIT_FILE_ATTRIBUTE_DBEDIT_FILE_USEF_DBEDIT_FILE_INCL_DBEDIT_FILE_SAVEAS_DBEDIT_WINDOWREAD_POPUPREAD_NOTE_READ_NOTE_DBREAD_NOTE_SETSEEN_DBREAD_NOTE_SEARCH_DBREAD_FILE_DDIF_PRINT_DBREAD_FILE_PRINT_DBREAD_NOTE_MODIFY_DBREAD_FILE_EXTRACT_DDIF_DBREAD_FILE_EXTRACT_DBREAD_NOTE_DELETE_DBREAD_NOTE_CREATE_DBREAD_WINDOWCONF_POPUPCONF_MEMBER_MODIFY_DBCONF_MEMBER_DISPLY_DBCONF_MEMBER_DELETE_DBCONF_MEMBER_ADD_DBCONF_MARKER_DISPLY_DBCONF_MARKER_DELETE_DBCONF_MARKER_ADD_DBCONF_KEYWORD_MODIFY_DBCONF_KEYWORD_DISPLY_DBCONF_KEYWORD_DELETE_DBCONF_KEYWORD_CREATE_DBCONF_KEYWORD_ADD_DBCONF_CONF_MODIFY_DBCONF_CONF_DIRECTORY_DBCONF_WINDOWMAIN_DUMMY_WIDGETMAIN_POPUPMAIN_ENTRY_DELETE_DBMAIN_ENTRY_MODIFY_DBMAIN_ENTRY_UPDATE_DBMAIN_ENTRY_ADD_DBMAIN_CUSTOMIZE_PROFILE_DBFILE_OBJECT_MODIFY_DBFILE_OBJECT_DELETE_DBFILE_OBJECT_ADD_DBMAIN_OBJECT_DISPLY_DBMAIN_FILE_MAIL_DBFILE_DIRECTORY_ACCESS_TBMAIN_FILE_DIRECTORY_DBMAIN_FILE_CREATE_DBMAIN_FILE_OPEN_DBMAIN_WINDOWDUMMY_WINDOWMAIN_HELP_BOXMAIN_WORK_BOXMAIN_CAUTION_BOXH '߀# ISO8859-1Cancel OperationH #$߀ ISO8859-1 AcknowledgedH &`߀" ISO8859-1Display TextualH #߀ ISO8859-1 Display TreeH '߀# ISO8859-1Enable ModeratorH (߀$ ISO8859-1Disable ModeratorH DI p4MAIN_CAUTION_BOXT_FhfCRX FILE_NOTES$DRM_WIDGET_CREATE ;F 1I,,  V d] Z hf READ_NOTES$DRM_HELPEOThfD _NOTE_DBNOTES$DRM_PUSHBUTTON_ACTIVATEhf E_DDIDBNOTES$DRM_PUSHBUTTON_ACTIVATEE_E_H  WIDGETIDH l ߀ ISO8859-1 Yes H  ߀ ISO8859-1 Cancel H ' ߀# ISO8859-1main_caution_boxH  I l0MAIN_WORK_BOXOXhffT FNOTES$DRM_WIDGET_CREATE ;F 1  tI, +V 0Z hf_ NOTELPENOTES$DRM_HELPT hfET NOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATE 'MAIN_WORK_BOX$CANCELLABELTTONH 3( ߀/ ISO8859-1Notes:Work Work-in-ProgressH $ ߀  ISO8859-1 main_work_boxH D@ ID l0MAIN_HELP_BOXsshffT FNOTES$DRM_WIDGET_CREATE 4 $   Z hft NOTES$DRM_HELP_TTE  f H x MH O//A$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1>H" ro|fx J J  _ J R$ W@ $dX HH h Jx $x $l [ H J, N 'l *  *$ , Q@ XT ' h Jx ' * )l ) ) )0 ) ( )0 $ dD *` (@ | (8 ( ( ( ) *d|x cd  dl\ c @ dd (0 (pD ( `D ` %d bt 'd| fex e4 ed ffg\Tfl8fh fLpf8Peheee4ee dLg\$fd H L K L L, MM M 8K< LK `NpJ0 ' LTLT M(K$J K Lt4Lt H'`dN|NN\K K MPNXt*(@ (8((( )0*L(`(pt(%d'\ H LHK LL, pM,M M K< 4K NJ0 ' LTLT XM(K$J KLtLt '`NNN\pK \K DMPNX' lNOTE_PRINT_TITLE_TENOTE_PRINT_TITLE_TBNOTE_PRINT_KEYWORD_TNCLNOTE_PRINT_KEYWORD_TBENOTE_PRINT_SINCE_TNOTE_PRINT_SINCE_TBNOTE_PRINT_BEFORE_TNOTE_PRINT_BEFORE_TBEMBNOTE_PRINT_AUTHOR_TNOTE_PRINT_AUTHOR_TBBTNOTE_PRINT_SELECTION_LBNOTE_PRINT_RANGE_TBNOTE_PRINT_RANGE_LBNOTE_PRINT_RANGE_TBREAD_FILE_PRINT_DBNOTE_MODIFY_OK_PBL_NOTE_MODIFY_CANCL_PBO_UNOTE_MODIFY_HELP_PBNOTE_MODIFY_SHOW_PBNOTE_MODIFY_KEYWORDS_TLNOTE_MODIFY_KEYWORDS_TBNOTE_MODIFY_NEW_NOTEID_T_CANOTE_MODIFY_NEW_NOTEID_TB_PNOTE_MODIFY_CONFERENCE_TBLNOTE_MODIFY_CONFERENCE_TB_DNOTE_MODIFY_TITLE_TNOTE_MODIFY_TITLE_TBARKNOTE_MODIFY_HIDDEN_TB_ANOTE_MODIFY_REPLIES_TBHNOTE_MODIFY_ATTRIB_LPLYNOTE_MODIFY_NOTEID_T_TNOTE_MODIFY_NOTEID_LARKREAD_NOTE_MODIFY_DBREAD_FILE_EXTRACT_DDIF_DBDEREAD_FILE_EXTRACT_DB_DEREAD_NOTE_DELETE_DBREAD_NOTE_CREATE_DBREAD_WORK_TEXTNREAD_WORK_TEXT_SBOTREAD_WORREAD_POPUP_NOTE_PBDREAD_POPUP_CLOSE_CONF_PB_DBREAD_POPUP_DISMISS_PBEPREAD_POPUP_PRINT_PBREAD_POPUP_CREATE_TOPIC_PB_READ_POPUP_CREATE_REPLY_PBREAD_POPUP_LAST_NOTE_PBREAD_POPUP_BACK_TOPIC_PBWORREAD_POPUP_BACK_REPLY_PB_BAREAD_POPUP_BACK_NOTE_PBREAD_POPUP_BACK_PAGE_PBREAD_POPUP_BACK_PDMREAD_POPUP_BACK_PDEREAD_POPUP_NEXT_TOPIC_PB_REREAD_POPUP_NEXT_REPLY_PBWORREAD_POPUP_NEXT_NOTE_PBREAD_POPUP_NEXT_PAGE_PBREAD_POPUP_NEXT_PDMREAD_POPUP_NEXT_PDEREAD_POPUP_NEXT_UNSEEN_PBADREAD_POPUPRREAD_NOTE_READ_NOTE_OK_PBOTREAD_NOTE_READ_NOTE_CL_PBADREAD_NOTE_READ_NOTE_HELP_PBREAD_NOTE_READ_IN_NEW_TBEADREAD_NOTE_READ_NOTE_ID_TREREAD_NOTE_READ_NOTE_ID_LBERREAD_NOTE_READ_NOTE_DBAREAD_NOTE_SETSEEN_DBPBREAD_NOTE_SEARCH_DBREAD_FILE_DDIF_PRINT_DBREAD_CONF_PDEERREAD_EDIT_PDEAIREAD_FILE_DISMISS_PBMAIREAD_FILE_EXTRACT_DBRATREAD_FILE_EXTRACT_DDIF_DBN_READ_FILE_EXTRACT_PBHEREAD_FILE_PDEECREAD_FILE_PDMSUREAD_FILE_PRINT1_PBREAD_FILE_PRINT2_PBREAD_FILE_PRINT_DBAREAD_MENU_BARAIREAD_MENU_PANE_READ_NOTE_CREATE_DBREAD_NOTE_CREATE_PBREAD_NOTE_DELETE1_PBONFREAD_NOTE_DELETE2_PBFY_READ_NOTE_DELETE_DBREAD_NOTE_MODIFY_DBREAD_NOTE_MODIFY_PBREAD_NOTE_PDEYWREAD_NOTE_PDMODREAD_NOTE_READNEW_NOTE_PBY_READ_NOTE_READ_BACK_N_PBFY_READ_NOTE_READ_BACK_PDEREAD_NOTE_READ_BACK_PDMREAD_NOTE_READ_BACK_P_PBFY_READ_NOTE_READ_BACK_R_PBES_READ_NOTE_READ_BACK_T_PBOTEREAD_NOTE_READ_LAST_NOTE_PBREAD_NOTE_READ_NEXT_N_PBTHOREAD_NOTE_READ_NEXT_PDEREAD_NOTE_READ_NEXT_PDMREAD_NOTE_READ_NEXT_P_PBOTEREAD_NOTE_READ_NEXT_R_PBPRIREAD_NOTE_READ_NEXT_T_PBT_RREAD_NOTE_READ_NOTEID_PBT_READ_NOTE_READ_PDEREAD_NOTE_READ_PDMNREAD_NOTE_READ_UNSEEN_PBOTEREAD_NOTE_SEARCH_PBREAD_NOTE_SETSEEN_PBPRIREAD_WINDOWREAD_WORK_ATTRIB_TREAD_WORK_AUTHOR_LREAD_WORK_AUTHOR_TEREAD_WORK_BACK_PAGE_PBEREAD_WORK_BACK_REPLY_PBREAD_WORK_BACK_TOPIC_PBREAD_WORK_CREATE_REPLY_PBTEREAD_WORK_DATE_LLY_READ_WORK_DATE_T_CAREAD_WORK_DBT_DREAD_WORK_HEADERBJEREAD_WORK_KP7_SELECT_PBREAD_WORK_NEXT_PAGE_PBEREAD_WORK_NEXT_REPLY_PBREAD_WORK_NEXT_TOPIC_PBREAD_WORK_NOFN_LBJEREAD_WORK_NOTEID_LTREAD_WORK_NOTEID_TLREAD_WORK_PAGE_PBINREAD_WORK_REPLY_PBLREAD_WORK_SELECT_CONF_PB_OBREAD_WORK_SEPARATOR_SPPREAD_WORK_TEXTMREAD_WORK_TEXT_SBJEREAD_WORK_TITLE_LXTREAD_WORK_TITLE_T_TREAD_WORK_TOPIC_PBEREAD_WORK_UNSEEN_PBro|HH  ߀ ISO8859-1 DEC NotesH #߀ ISO8859-1 NOTES$DWHELPH 4߀ ISO8859-1OverviewH l߀ ISO8859-1GlossaryH ߀ ISO8859-1OverviewH $߀  ISO8859-1 main_help_boxH  hIh 0DUMMY_WINDOWss;F X%TEREH  @I ,MAIN_WINDOW;F %Z \hf NOTES$DRM_HELP fMAIN_SVN_WINDOWMAIN_MENU_BARH  I 0MAIN_MENU_BAR;F -' Z lhf NOTELPNOTES$DRM_HELP MAIN_HELP_PDEINWE_p`P<,MAIN_HELP_PDEMAIN_CUSTOMIZE_PDEUMAIN_ENTRY_PDEUMAIN_VIEW_PDEATMAIN_EDIT_PDEMAMAIN_FILE_PDENCH TIT 0MAIN_FILE_PDE@ 8;F ( *  W Z hf HELPNOTES$DRM_HELPAhf WNOTES$DRM_MENU_PULLINGPDMAIN_FILE_PDMMAINH dI 0\MAIN_FILE_PDM;F L ZfpT\D0WMAIN_FILE_EXIT_PBMAIN_SEPARATOR_SPMAIN_FILE_OBJECT_PBCONF_CONF_MARKER_PBMAIN_FILE_DIRECTORY_PBPMAIN_FILE_CREATE_PBMAIN_SEPARATOR_SPINMAIN_FILE_OPEN2_PBMAIN_FILE_OPEN3_PBMAIN_FILE_OPEN1_PBMAIN_SEPARATOR_SPMAIN_FILE_MAIL_PBBH HIH p4MAIN_FILE_MAIL_PBhfX LNOTES$DRM_WIDGET_CREATE* 8 (U Z hf \DNOTES$DRM_HELPhfIN_FIPBNOTES$DRM_PUSHBUTTON_ACTIVATEOBONINH ߀ ISO8859-1Mail...H j$ ߀f ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_mail_pbH HT IH p4MAIN_FILE_OPEN1_PBhffiX I maNOTES$DRM_WIDGET_CREATE 8* (U Z hf \DNOTES$DRM_HELPhfIN_FIPBNOTES$DRM_PUSHBUTTON_ACTIVATEOBONINH  ߀ ISO8859-1OpenH k, ߀g ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open1_pbH H\ IH p4MAIN_FILE_OPEN3_PBhffiX I maNOTES$DRM_WIDGET_CREATE 8* (U Z hf \DNOTES$DRM_HELPhfIN_FIPBNOTES$DRM_PUSHBUTTON_ACTIVATEOBONINH ) ߀% ISO8859-1Open in New WindowH 8 NH kt ߀g ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open3_pbH H IH p4MAIN_FILE_OPEN2_PBhffiX I maNOTES$DRM_WIDGET_CREATE 8* (U Z hf \DNOTES$DRM_HELPhfIN_FIPBNOTES$DRM_PUSHBUTTON_ACTIVATEOBONINH ߀ ISO8859-1Open...H dpro|\ ,  t 8 d0h$\Hl  d 4  ,L||  d P  T d|h         (T     L  d 0 T d     `  x 4 L  ( D  X   D L @ $    X 4   x  \\$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1   p 4 T  x   H    \  T |D P \ 0 |HTh D  Xp< p  T  , T  p  p < d\ P  4|H\D  0(8  ` 0 ,  D  t     l8 T| l   Pp<X$!<!\ ,  h   P t 8 !!!!!|!D ! ! ! !!#0#""`" """ " "X ###p #@##<##( # # # +* $\ $, $$$$$ $ $ $ $\ $ $ $L$%%h''%%%D %$ %%%l %8 %$ %| %H '%X'('''$*| *L ' ' ' ' '@'' '<*p*@*,((\(,))(h (8 ( ( ((\(,)))*0*))) )X )( ))***p*\**L*8***T* *t * * * .4 . +| +H +8 ,+,,h,,h,8, ,8 , ,x-----d--d -4 - .8..`.$...P. . . . . 10</ //P/ / /, /T/00X000p0,000 0P 0l0<2<211P1`1 1 1 21P2222332 2 2 3333335D5 3 3 440444 4d 4 4\ 44T557755x5 5< 5 6566h6<66676778 8 77p7 7 7 888888 8 ::9899$999 9 99::;<;:|:L:` :< : :0:;;<t << ;@;; ; ;| <;<<`< <L <h <8 ? ? ==== =L = >=>>>H>>p >4 > > ?>??t??X?l ?8 ?T ? @H @ @0@@@@@@@ @ DDBLBBB B B B8 B CBCCdC(CCCCC|DDG G DDD DDEExE@EE E E FEtFF FFFF FL FH F GGGGGGpG GX H H HGH HHHHHHHH0 H H N` J JJJJJJJJxJ Jl MJ$JKKKtKKtKK4 K K KKL4LMM< M M M M M` M M` MMM4MMTNDNNPL P O4OOOOOOOO O O\ O$ POPPhPPdP,P P P P Q Q| Q@QQQPQQH Q WUhR RRRP R RSLSSSS8SSS S S TxTTTdTTTH T Tl UTUhU0UUUDUU Ux UP U U8UXWWWWW Wt W@ W`W,Z Zd XXXX X` X X YX YYdYYY@Y Y| YH YZZZ ZZZL Z Z4 Z _ _ [[T[8[ [x [H[\t\\\L\\\ \ \ ]x]]]L]]p] ] ] ] _]P_h_,____p_ _X `p `4 `_L``,```` ` b ba` aa aada a a\ a( b4bbbc c bb0 b b bX b b cpcclc8cT c d dl c(c ddhd,dLdd< d gde4eeteTe\eede e eef`ffhfff fff f f f f f gfgggglix h4hg g g g\ g g h4hh\h$hhth4hhLi ih h hhhh4hiiiTro|4H k߀g ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pbH HIH p4MAIN_FILE_CREATE_PBhffiX I maNOTES$DRM_WIDGET_CREATE* 8 (U Z hf \DNOTES$DRM_HELP hfIN_FIPBNOTES$DRM_PUSHBUTTON_ACTIVATEOB ON INH CH +߀' ISO8859-1Create Conference...H l߀h ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_create_pbH L0IL t8MAIN_FILE_DIRECTORY_PBihf_p\ISO88ain_fNOTES$DRM_WIDGET_CREATE* < ,U Z hf NOTENOTES$DRM_HELP fhf INOTENOTES$DRM_PUSHBUTTON_ACTIVATE ILH DH 2߀. ISO8859-1Directory of Conferences...H o$߀k ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_directory_pbH HhIH p4CONF_CONF_MARKER_PBhffiX I maNOTES$DRM_WIDGET_CREATE* 8 (U Z hff NOTES$DRM_HELPEhffwINOTES$DRM_PUSHBUTTON_ACTIVATEATH rH !H߀ ISO8859-1 Markers...H l\߀h ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pbH HIH p4MAIN_FILE_OBJECT_PBhfcoX I coNOTES$DRM_WIDGET_CREATE* 8 (U Z hff NOTES$DRM_ %HELPEhffINOTES$DRM_PUSHBUTTON_ACTIVATEATH bH !l߀ ISO8859-1 Objects...H l߀h ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_object_pbH HIH 4MAIN_SEPARATOR_SP-H |4 I| p4MAIN_FILE_EXIT_PBhfX I maNOTES$DRM_WIDGET_CREATE* l \ L <U Z hf TES$DENOTES$DRM_HELPhfTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATEILPTEATH  EH  ߀ ISO8859-1ExitH 4 ߀ ISO8859-1Ctrl/ZH  d Ctrlz:H j ߀f ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_exit_pbH  FH 0 ߀ ISO8859-1FileH ED ߀A ISO8859-1 main_menu_bar ISO8859-1 main_file_pdeH Tt IT 0MAIN_EDIT_PDE59@ 8;F ( *  W Z hf <ZNOTES$DRM_HELPDhfE DRM_HNOTES$DRM_MENU_PULLINGUPUATMAIN_EDIT_PDMH  I 0\MAIN_EDIT_PDM59;F L|MAIN_EDIT_SELECT_PBMAIN_EDIT_COPY_PBro|dXH |I| p4MAIN_EDIT_COPY_PBhfXD LNOTES$DRM_WIDGET_CREATE* l \ L <U Z hf DENOTES$DRM_HELPDRhf_P/UNOTES$DRM_PUSHBUTTON_ACTIVATET_PTE ATH oH ߀ ISO8859-1CopyH ߀ ISO8859-1Ctrl+InsH Ctrl0xFF63:H j߀f ISO8859-1 main_menu_bar ISO8859-1 main_edit_pde ISO8859-1 main_edit_copy_pbH H,IH p4MAIN_EDIT_SELECT_PBhfedXE I maNOTES$DRM_WIDGET_CREATE* 8 (U Z hf hf NOTES$DRM_HELPE!HEhf0DRhf/NOTES$DRM_PUSHBUTTON_ACTIVATEPU" (7$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1Q"+AT#H SH !߀ ISO8859-1 Select AllH l߀h ISO8859-1 main_menu_bar ISO8859-1 main_edit_pde ISO8859-1 main_edit_select_pbH L߀ ISO8859-1EditH E߀A ISO8859-1 main_menu_bar ISO8859-1 main_edit_pdeH TIT 0MAIN_VIEW_PDE59@ 8;F ( *  W Z hf NOTES$DRM_HELP$DRhfE!HNOTES$DRM_MENU_PULLING%BU&PUATMAIN_VIEW_PDMH @TI@ 0\MAIN_VIEW_PDM59;F L0Z fTMAIN_COLLAPSE_ALL_PBfMAIN_COLLAPSE_PBHMAIN_SEPARATOR_SPDRMAIN_EXPAND_ALL_PBMAIN_EXPAND_PBMAIN_SEPARATOR_SPMAIN_OUTLINE_PBH XIX l0MAIN_OUTLINE_PBhfTJF NOTES$DRM_WIDGET_CREATE* H $U Z hf TN_COLNOTES$DRM_HELP'PBhfIN1_SPDPAND_NOTES$DRM_PUSHBUTTON_ACTIVATEEP#MAIN_OUTLINE_PB$LABELIN_VH h߀d ISO8859-1 main_menu_bar ISO8859-1 main_view_pde ISO8859-1 main_outline_pbH D| ID l0MAIN_EXPAND_PB9hfaiTK59-1NOTES$DRM_WIDGET_CREATE* 4 $U Z hf TN_COLNOTES$DRM_HELP(PBhfIN2_SPDPAND_NOTES$DRM_PUSHBUTTON_ACTIVATEEP)_O*LH  xH P ߀ ISO8859-1ExpandH gd ߀c ISO8859-1 main_menu_bar ISO8859-1 main_view_pde ISO8859-1 main_expand_pbH 0 I0 p4MAIN_EXPAND_ALL_PBhfviXL I maNOTES$DRM_WIDGET_CREATE U Z hff TNNOTES$DRM_HELPE+hff32_PNOTES$DRM_PUSHBUTTON_ACTIVATEAT,H ! ߀ ISO8859-1 Expand AllH kT ߀g ISO8859-1 main_menu_bar ISO8859-1 main_view_pde ISO8859-1 main_expand_all_pbH H IH p4MAIN_COLLAPSE_PB1hfviXM I maNOTES$DRM_WIDGET_CREATE* 8 (U Z hf ES$DRNOTES$DRM_HELP-fhf34ES$DRNOTES$DRM_PUSHBUTTON_ACTIVATE. _VH ߀ ISO8859-1Collapsero| H i߀e ISO8859-1 main_menu_bar ISO8859-1 main_view_pde ISO8859-1 main_collapse_pbH 4I4 t8MAIN_COLLAPSE_ALL_PBmaihf_p\NISO88ain_cNOTES$DRM_WIDGET_CREATE $U Z hff ENOTES$DRM_HELPE/hff54ENOTES$DRM_PUSHBUTTON_ACTIVATEAT0H #|߀ ISO8859-1 Collapse AllH m߀i ISO8859-1 main_menu_bar ISO8859-1 main_view_pde ISO8859-1 main_collapse_all_pbH VH |߀ ISO8859-1ViewH E߀A ISO8859-1 main_menu_bar ISO8859-1 main_view_pdeH TIT 0MAIN_ENTRY_PDE9@ 8;F ( *  W Z hf hf NOTES$DRM_HELP1HEhfhf5NOTES$DRM_MENU_PULLINGE2ON3MAIN_ENTRY_PDMH xIx 0\MAIN_ENTRY_PDM9;F LdLZ8f TMAIN_ENTRY_DELETE2_PBMAIN_ENTRY_DELETE1_PBTEMAIN_SEPARATOR_SPEMAIN_ENTRY_UPDATE2_PBMAIN_ENTRY_UPDATE1_PBMAIN_SEPARATOR_SPRYMAIN_ENTRY_MODIFY_PBMAIN_ENTRY_ADD_PBH HIH p4MAIN_ENTRY_ADD_PBhfX LNOTES$DRM_WIDGET_CREATE* 8 (U Z hf NOTES$DRM_HELPT4NThfET;IN_SESPENOTES$DRM_PUSHBUTTON_ACTIVATENT56_SH  AH h߀ ISO8859-1Add...H k|߀g ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_add_pbH LIL t8MAIN_ENTRY_MODIFY_PBmaihfy_\ ISO8main_NOTES$DRM_WIDGET_CREATE* < ,U Z hf NOTENOTES$DRM_HELP7fhf BEENOTENOTES$DRM_PUSHBUTTON_ACTIVATE8#RYH %,߀! ISO8859-1Show/Modify...H n ߀j ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pbH 4 I4 t8MAIN_ENTRY_UPDATE1_PBaihfy_\ ISO8main_NOTES$DRM_WIDGET_CREATE $U Z Zhf NOTES$DRM_HELPR9hff> BNOTES$DRM_PUSHBUTTON_ACTIVATECT:H D ߀ ISO8859-1UpdateH o ߀k ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_update1_pbH L IL t8MAIN_ENTRY_UPDATE2_PBaihfy_\ ISO8main_NOTES$DRM_WIDGET_CREATE* < ,U Z hf ES$DRNOTES$DRM_HELP;fhf> ?ES$DRNOTES$DRM_PUSHBUTTON_ACTIVATE<=RYH @ UH  ߀ ISO8859-1 Update...H o ߀k ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_update2_pbH 4 I4 t8MAIN_ENTRY_DELETE1_PBaihfy_\ ISO8main_NOTES$DRM_WIDGET_CREATE $U Z Zhf NOTES$DRM_HELPR>hffG ?NOTES$DRM_PUSHBUTTON_ACTIVATECT?H l߀ ISO8859-1Deletero|LpH o߀k ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_delete1_pbH LIL t8MAIN_ENTRY_DELETE2_PBaihfy_\ ISO8main_NOTES$DRM_WIDGET_CREATE* < ,U Z hf ES$DRNOTES$DRM_HELP@fhfG HES$DRNOTES$DRM_PUSHBUTTON_ACTIVATEARYH  ߀ ISO8859-1 Delete...H o߀k ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_delete2_pbH nH ߀ ISO8859-1EntriesH F߀B ISO8859-1 main_menu_bar ISO8859-1 main_entry_pdeH \I\ 4MAIN_CUSTOMIZE_PDE@ <;F , *  W Z hf NOTES$DRM_HELPBDRhf@f NOTES$DRM_MENU_PULLINGRCBU MAIN_CUSTOMIZE_PDMDIFH 8I 4`MAIN_CUSTOMIZE_PDM;F PMAIN_CUSTOMIZE_PRINT_PBMAIN_CUSTOMIZE_PROFILE_PBTEH PIP x<MAIN_CUSTOMIZE_PROFILE_PBhf`NOTES$DRM_WIDGL$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"<ET_CREATE* @ 0U Z hf_P HELPNOTES$DRM_HELPDhf 6MENU_RNOTES$DRM_PUSHBUTTON_ACTIVATEEFTOH pPH -߀) ISO8859-1Show/Modify Profile...H w߀s ISO8859-1 main_menu_bar ISO8859-1 main_customize_pde ISO8859-1 main_customize_profile_pbH L(IL t8MAIN_CUSTOMIZE_PRINT_PBhfom\ 1 mNOTES$DRM_WIDGET_CREATE* < ,U Z hff HNOTES$DRM_HELPEGhff :6MRNOTES$DRM_PUSHBUTTON_ACTIVATEATH3H +߀' ISO8859-1Show/Modify Print...H u ߀q ISO8859-1 main_menu_bar ISO8859-1 main_customize_pde ISO8859-1 main_customize_print_pbH T ߀ ISO8859-1OptionsH J ߀F ISO8859-1 main_menu_bar ISO8859-1 main_customize_pdeH T IT 0MAIN_HELP_PDE59@ 8;F ( *  W Z hf Z fNOTES$DRM_HELPITEhfHEfNOTES$DRM_MENU_PULLINGJPUKATMAIN_HELP_PDMMIZEH h I 0\MAIN_HELP_PDM59;F LZfMAIN_HELP_ABOUT_PBRMAIN_HELP_GLOSSARY_PBTEMAIN_HELP_OVERVIEW_PBMAIN_SEPARATOR_SPDRMAIN_HELP_CONTEXT_PBH  I 8MAIN_HELP_CONTEXT_PB*  U `hf NOTES$DRM_HELPLINMR SAH ! ߀ ISO8859-1 On ContextH  ߀ ISO8859-1H I 8MAIN_HELP_OVERVIEW_PB*  U `hf NOTES$DRM_HELPNINORPSAH ,WH  ߀ ISO8859-1 On WindowH ߀ ISO8859-1Overviewro| d0H I 8MAIN_HELP_GLOSSARY_PB*  U `hf NOTES$DRM_HELPQINRRSSAH H TH ߀ ISO8859-1On Terms H (߀$ ISO8859-1Overview GlossaryH  I 4MAIN_HELP_ABOUT_PBP*  U \`hff NOTES$DRM_HELPETU&H !\߀ ISO8859-1 On VersionH 0߀ ISO8859-1AboutH dHH ߀ ISO8859-1HelpH E߀A ISO8859-1 main_menu_bar ISO8859-1 main_help_pdeH $߀  ISO8859-1 main_menu_barS$H 0I l0MAIN_SVN_WINDOWhfaiTUNOTES$DRM_WIDGET_CREATE;F  xlTD, M N Q HS P R O PhfDMtMAIADD_PNOTES$DW_SVN_ENTRY_SELECTEDhfOPEN3N_FILNOTES$DW_SVN_HELPEPhf_SILE_MNOTES$DW_SVN_SEL_CONFIRMEDhfRE,LETE_NOTES$DW_SVN_SEL_CONFIRMEDhfRElNOTES$DW_SVN_GET_ENTRYhfBER_MNOTES$DW_SVN_DETACHEDLYhf_MEMBE_DBNOTES$DW_SVN_ATTACHEDADtreeStyleexpectHighlightingItreeArcWidthtreePerpendicularLinestreeIndexAllF_MtreeCenteredComponentstreeStyleWOforceSeqGetEntryuseScrollButtonsSPLexpectHighlightingKdisplayModeCO_PH "h߀ ISO8859-1 main_windowH DLID p4MAIN_FILE_OPEN_DBfhfTXxNOTENOTES$DRM_WIDGET_CREATE ;F |H  \ < ,IZ hf  MNOTES$DRM_HELPVWFILE_OPEN_OK_PBDMt FILE_OPEN_CANCL_PB$DWEC D0ODEMV|RhRXLD0FILE_OPEN_HELP_PBRMFILE_OPEN_CANCL_PBFILE_OPEN_OK_PBFILE_OPEN_IN_NEW_TBFILE_OPEN_SHOW_RBFILE_OPEN_AUTOMATIC_LFILE_OPEN_FILESPEC_TLYFILE_OPEN_FILESPEC_LMBFILE_OPEN_IN_NOTEBOOK_TBATTFILE_OPEN_CLASS_TFILE_OPEN_CLASS_TBIFILE_OPEN_ENTRY_TeeFILE_OPEN_ENTRY_LH  I 4FILE_OPEN_ENTRY_Lf A!A Z xhf HNOTES$DRM_HELPX<Y H  ߀ ISO8859-1EntryH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pb ISO8859-1 main_file_open_db ISO8859-1 file_open_entry_lNOH  I p4FILE_OPEN_ENTRY_T-1hfn_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C |$ \` Z hf  NOTES$DRM_HELPEZhfD!NOTES$DRM_VALUE_CHANGEDFILE_OPEN_ENTRY_L$DWFILE_OPEN_ENTRY_L H  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pb ISO8859-1 main_file_open_db ISO8859-1 file_open_entry_lUSHBUTTON_ACTIVATEOBONINH ߀ ISO8859-1Open...H dpro| dH xIx p4FILE_OPEN_CLASS_TB1hfn_X-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf  hf NOTES$DRM_HELP[HEhf0"hf!NOTES$DRM_VALUE_CHANGED\ANFILE_OPEN_ENTRY_TY_L_FH ߀ ISO8859-1ClassH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pb ISO8859-1 main_file_open_db ISO8859-1 file_open_class_tbH XIX p4FILE_OPEN_CLASS_T-1hfn_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C 8$ Z hf  RM_HENOTES$DRM_HELP]0 FILE_OPEN_CLASS_TB$DR FILE_OPEN_CLASS_TBANH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pb ISO8859-1 main_file_open_db ISO8859-1 file_open_class_tbH I x<FILE_OPEN_IN_NOTEBOOK_TBin_hfde`O8859n_filNOTES$DRM_WIDGET_CREATE <A!"C l \<` Z hf ES$DRNOTES$DRM_HELP^hf_OD#TB$DFINOTES$DRM_VALUE_CHANGED_N_FILE_OPEN_CLASS_TLE_OH H (߀$ ISO8859-1Entry in NotebookH `߀ ISO8859-1 main_menu_bar ISO8859-1 main_file_pde ISO8859-1 main_file_open2_pb ISO8859-1 main_file_open_db ISO8859-1 file_open_in_notebook_tbH  I 8FILE_OPEN_FILESPEC_L m A!C  7$ NOTES026.A0? wkcs}B;1%W=^I=MDJ*~F98$%MSm/<pT|u15HP>f =KsakauP6_CCV>R?7gxcKv~<5sqZZoN@(p@6.a[)Wu#  S_S!(U5q$pA*;d/&qC7~O"Kp]kT"~ dGx:wI%wni 8/R/fnZ3!N[4J&[fhl_a[LH+OK :Op'/CX{#n*ZB^:9?zL#&cm}aټv%LdggSc<t_rq"uoB hJOdfpiJ ZHMmlOVk sWR3cawF?_k-8/lnm#[#H* V1C[>S!*?,@ 25y6kTg3/*P1 n%1US+2%C% 023| |$pvZ%DD\cnoG3jC9G`w/*N;Ȟ bq8 r+LI_4@,gfMB:[$z50jg &:iy_o] !Ta2Fp aH_[9:1FNo3a2 v r-IIi6.9c2(mf7W1LLOQpZvg%[ m z,k;kKX9>"{p-?1 nԅDvRvR-oeWhR.Ym*v-9xp&"`VEZfE3 0D+k-EP9myo0JUC>TBFG ~‰v4v^1C7 c@,Zotn ry&y1c ib#nrf #?4O=ki=&_1 P\3t'Hv 9_axxxr+XX^P@r&PmL(n}qaX=Lmp '- _V:vTEY>!pA44&'\)*7rTwEZ U7n'} /WW4[e~4\M"(Vb7|{ 832. _j.! v(7,.,n\@}7lfkU`Ӿ]8Vx{I&kK,1{AG d,A.IS>%NSv;"; G]0JDE9h +nkye3@IWҌFJvxo&bO(3 kLn9qO,>=A{SH-ZXa96Z/)SNU4v}e\,8X,[2T$\{97 2Lq*p#K U+ Ksx x@j@P$iTk߭f}BiiD>jdU(~%3cc>PCVHc }_.o9},/hijgVc95wI;aM0rPJ 6 OyWf; |f.DY+^"W2l/TK,i[} -#51M7]Ki\xD\g-+VQgnZ5l+4gjz $>I.WO4#zC# xnz0Km,aLcPtjX24)3|W)K$li|A#de"T//F1NtKk=Qs #"0gWD#y% frCP4~7q#HG<1XW}xAp!UUx6(QhbU("jMe$2C9^X&k&EJ8qlNdi*b\Es*BK/u _Rx 4M~2.N^AoAĮ$\O14E@jDF_7n,K',f|e4_ h^ cXOJ?Xy!j6n<7[ 3%'-t*mO QK1)R  N?PfN1 9.&XWRF"-0!#LgFlqP'eDxM`a-egK" H'us<\55QzvGo $WQRL:;QK]2s_+`>$$/zB:sB6gJT1~N  .Ja'%&V S!s ~Rcg]T)(=T Fh{-2 v&:_s; 3`0*9gRma 9 Ƹ0h% h q.-gR'bd,=L8Mv4zQ32z%-ewct)VFVGbL]lr<s"2& F/!BvAM jteL31Y< YX29[LW\f]erR% /w q-b`.wGHiScKKX#V6`:@_&i\m<|6+o1 :{+>4H)W47Sume&ޚoL{5r+ELGL}ZUS@c!Wm(b a%5D礅BMw#vo͏Eoy\~?n]h=cv_zJ< T41J|:It>Pl((}w~l9j9.ES(ei0w#7hG/ zkhH(EP}4;Np2wvL -jB%TeOv[%)e Xbz9c Pe]4_|?k)o[KMstbn[((ib{0xb*M k s]/,j,X%+d?R5Qyy%T,~kvz .$K&U-% /z/u-v&>aEc5,orE'x,IuaB<u07w3gD6 S(s7.T T}VKyB5ed\@$.P$deH"2 _uk-;gFUm$)3D7*"v*mc) p2Na~Nx5AAO AhE )t4Vi.\vJ"k&.Q rQxu&^8P%Q'%PbKqE$eqt&9iKP6#AM:=cCV.A[4 ?l!gT'"r^~ϾFS70;E)>b@2UEWY~c>~H\sjS?grK(-]B ~O--Hc}wT &-Z[ >e*!#}0A+lM9%*zZCV&O1]D|u LqaxYtrhax9Ah6*f> 8J;cMtwW2U/5XKs]VWOOwgF+ V\B01t-@ͽ& /Y1cDsSb;1X+%H>9*JQSQa>58>'j9 9:Ws'Uog}Cn0P=,7^(Dk0he;-H&MoӴ䇬wX$QSa64 {>QK !Hp`Dp&W {>FNe'WlndKPNd\@p!']XE_ARE |DH6'fc__xy=IK6>6<^&< 4]yY#C m'`3}z^estsprJf}v۷X.HK%m}%aGH^Y#u0돇P:miwnk]B0?~]HO/w+Kv(g=vXl#:Pz{DFN.J[; ]3("m<%mVyF \uT\E&_gX|Fq_ ek$#Y '!oEIn8D7YT ;RQhSRuS7QYJN0}--FNm[CXw3LfEC8n/ZrN jnQ'P@vasv5@3sRAƼ>K5 ]q%gzJb|M#M2="A1&nE{azXp!,HHeaj8elR(4vzdT-$c;X_A1]ef3s$, N;|RW;Y} (# /;U vxOq`y">9`BhﱻJYQ1$MmG3W\+O_m[<.; ;?;\ |\$D%2Ù"^FuM#N%2 -lV v< STzJ4c}4 6z,BHucGpHS[Y(}+ 5FL:FPv&r"q:_ fI-M+,@k(-qyVUjpv Uc..gTC T -T3 >#r|<#u!Q& *`B7G3WNU*=_.I17D/o@"e*.7 b L'lIP_]]*9F1l9 aP_[eX N?,#V^1^OI  q`!t4Ji)DDwYP5g}9_+R4ZykSd}X?9+ghk 'ADcFCG#i>h'^eB xD@|q;DBo1'wk6"\U608jW~oD)Qe)_ !|KEr2 $6b4Mwsfw8i.NN) v-#&pHBtoZp$]^s*<.[H>77T0sc0Z) 6E:l $O5sp.bD KqjgUG^ W&SuKPcONT|C[\=RB`_DXHI|=!{MB)y*Mr3iʿ]iD3*ܵS&qG%ro[W(nZ?[%" Z*aF 9l Tz@}-$GI."$  \U=FX31THb|wOv=T)Um}\tZ4p+cgcRVdM\YJe:B\ sYަX0eT, &,%lyq/s,s#Olm o> jF"-M3[0{3{m7O7k+[Bz0*xto+VZXwR`)%F4!Z%$=̤&%,=GKHXqReoYu> oj~I;<)5Z"mX+-9V9{ h5Y*U l?4Ά hٗ.HޱIB0BuG__Z* zEmg)+|L{IHFfnvv7-Dm/X [j##(5. 8Nb'&S1!c Y" qC+S!/|pBT}b Kts= KuzL1NI^/I$j Y Wsh,1kP}lN^sn?E'l.H6io55s^I-+i0J7@G9 Qqiv78iY'Alv8m_ouI1'&Wev"]rҸ]S!WdIY*bT8H 5:DNu/@@A+4Ű:%ZL{qUy:Dy2VGPitthhoմhDђ)RVe?whtOZK!{cNk]ʗO#[5099 7qL5#^nވ^-]Ⱦ5Ma}2؊O%<#g]ÏiXh#JRFR<{8lvKg|4wpPFRE9˙St^+-!A|> P#ZR]0RPihL:a}c{y5[U  -BGS]ly~0,+h {W~?֝KG9(KkF"c'rz WFj,]?~l1E.k_gSj g/v}JavgELm[ibvkj0cyG9x^S ٟn,CgK-~MzMuiB4WpT7m? %N@)lbTu@oosK"H*bwVͲR.AVwHOy$nJ P" :8"vXdb:!+&ͅ#X]?{2cvTh{}ؤnzYUc:d D7YP2 'P2V-MJUBVGH~(diU[%NuNsZ ~1=a5jSVd\[C?o?v{aCa>E EUwu!4GLt8+AN [K QR/ M6*>W-mB8gKl'ci[JdVjzxTnTQ G/Mej ;,+cv'K67^${6,sUJ\^lJw|Wo)4hVRN/_^ E5GL^¡3oq"-m>99S*QwL "5q|нz5^%KF!Gv6.W t6 wxhTFrZ TY |n.PC E8d/o:'bN"GZ/p]UClW./ !N:=$lWJE?`S~O Ho:kp :hT=vbWa;h_/L8T*~ &VxROO=@`d^Q;+v>Ɋ2v yk`Pj<8"=y#zjfEZ /<{X &Fj5m/D<5o[!;ul>b[@6E1J%Q>j:Ox޸'!gM%'UF+`6d( AXeqh d=B%YC #yAYt!lc2&(:u.)jPS6 26+ 8pF odT*}45u!; a3dQ>#B[m SgS,A^v:A~=< ye+_FwYOT* fBb0c 7 cQ`HO6%0ZUҸSJGBPW=j2 &l~_yrwb0D]WfpC7zo1O MM:^4Nc Bjchpf;MU,OTV[={X8(? 7kvh F}HUct!t}Y!1LaD,N dGI&)IQ?΢uy3`G>9# } @xHE bQ f;HgtaIRxMEV]qsSR#{dkpQ\O,>1 2-ol-wdo:R G[=VTFC%W|j`f2Q=qNm gv9$c'!iv6[JBiL?yK-3Rq D8WK'+Ag9"YV >;4B< (1$MZ:9A$g՛$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1P"9-1NOTES$DRM_WIDGET_CREATE 6AB!" 3C 8$ Z hf RM_HENOTES$DRM_HELP0 ENTRY_ADD_CLASS_TB$DR ENTRY_ADD_CLASS_TB_TSAH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_add_pb ISO8859-1 main_entry_add_db ISO8859-1 entry_add_class_tbSH  I 4ENTRY_ADD_HELP_PB-1!" $  U xhfma dd_dbISO88NOTES$DRM_HELPd8l ENTRY_ADD_CANCL_PBOKH x Ix p4ENTRY_ADD_CANCL_PB1hfXC"NOTES$DRM_WIDGET_CREATE!" $ X HU Z hf E_CANCNOTES$DRM_HELPRHEhf(=0 NTRY_NOTES$DRM_PUSHBUTTON_ACTIVATEY__TENTRY_ADD_OK_PB_TBECAH  ߀ ISO8859-1 Cancel ECTH  T߀ ISO8859-1 Cancel_pbJECT_DISPLY_APPLY_PBSOBJECT_DISPLY_CANCL_PBSOBJECT_DISPLY_HELP_PBINOBJECT_DISPLY_INFO_LEDIOBJECT_DISPLY_INFO_UD OBJECT_DISPLY_OBJECT_LNOBJECT_DISPLY_OBJECT_TTOBJECT_MODIFY_APPLY_PBTOBJECT_MODIFY_FILE_LENTOBJECT_MODIFY_FILE_TENTOBJECT_MODIFY_OBJECT_LOBJECT_MODIFY_OBJECT_TOBJECT_MODIFY_SHOW_PB ro|P$H hIh l0ENTRY_ADD_OK_PBhffTBC"NOTES$DRM_WIDGET_CREATE !" !#" XU Z hfE NCNOTELPRNOTES$DRM_HELPE=hf8<Y_NOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATE_TY_S$H ߀ ISO8859-1 OK H |߀ ISO8859-1OK_pbhH  ߀ ISO8859-1 Add EntryH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_add_pb ISO8859-1 main_entry_add_dbH I t8MAIN_ENTRY_UPDATE_DB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE ;F H  ` @ 0IZ hfR HELPNOTES$DRM_HELPDR ENTRY_UPDATE_OK_PB#ENTRY_UPDATE_CANCL_PBY_D_ElT@,ENTRY_UPDATE_HELP_PBENTRY_UPDATE_CANCL_PBENTRY_UPDATE_OK_PBZENTRY_UPDATE_ALL_TBENTRY_UPDATE_CLASS_T_ADENTRY_UPDATE_CLASS_TBOBENTRY_UPDATE_ENTRY_TECTENTRY_UPDATE_ENTRY_TBILISH \I\ t8ENTRY_UPDATE_ENTRY_TB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE<A!"A L` Z hf ZhfNOTES$DRM_HELPEhfDR40NOTES$DRM_VALUE_CHANGEDPB H ߀ ISO8859-1EntryH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_update2_pb ISO8859-1 main_entry_update_db ISO8859-1 entry_update_entry_tbH d Id t8ENTRY_UPDATE_ENTRY_T mhftr\ IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hf hfRM_HENOTES$DRM_HELP4#ENTRY_UPDATE_ENTRY_TBM_VA#ENTRY_UPDATE_ENTRY_TB#MPH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_update2_pb ISO8859-1 main_entry_update_db ISO8859-1 entry_update_entry_tbH l I t8ENTRY_UPDATE_CLASS_TB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf hfNOTES$DRM_HELPEhf41EATE_ENOTES$DRM_VALUE_CHANGEDRY"ENTRY_UPDATE_ENTRY_TL_PB H @ ߀ ISO8859-1ClassusH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_update2_pb ISO8859-1 main_entry_update_db ISO8859-1 entry_update_class_tbH d Id t8ENTRY_UPDATE_CLASS_T mhftr\ IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hf hfRM_HENOTES$DRM_HELP4#ENTRY_UPDATE_CLASS_TBM_VA#ENTRY_UPDATE_CLASS_TBH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_update2_pb ISO8859-1 main_entry_update_db ISO8859-1 entry_update_class_tb Z hfOM E_TEM NOTES$DRM_HELP'CUSTOMIZE_PROFILE_CLASS_LNOTE'CUSTOMIZE_PROFILE_CLASS_L߀ ISO8859-1Add...ro|0H I p4ENTRY_UPDATE_ALL_TBhfn_X9-1NOTES$DRM_WIDGET_CREATE <A!"C d T<` Z hff  RNOTES$DRM_HELPEhf<2Y_UPDS_TBNOTES$DRM_VALUE_CHANGED"ENTRY_UPDATE_CLASS_TNOH "߀ ISO8859-1 All EntriesH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_update2_pb ISO8859-1 main_entry_update_db ISO8859-1 entry_update_all_tbstH I 8ENTRY_UPDATE_HELP_PB m!" $  U |hfma pdate ISNOTES$DRM_HELP_l#ENTRY_UPDATE_CANCL_PBH |I| t8ENTRY_UPDATE_CANCL_PB mhf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf EATE_CNOTES$DRM_HELPR Ehf,AfY_NOTES$DRM_PUSHBUTTON_ACTIVATEE_! ENTRY_UPDATE_OK_PBE_C_pH ߀ ISO8859-1 Cancel n_lH  <߀ ISO8859-1 Cancel_pbH lpIl p4ENTRY_UPDATE_OK_PBPhffX"NOTES$DRM_WIDGET_CREATE !" !#" \U Z hfE _CNOTELPRNOTES$DRM_HELPE"Ahf<@Y_NOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATE#Y_eH ߀ ISO8859-1 OK  H $߀ ISO8859-1OK_pbSOH #X߀ ISO8859-1 Update EntryH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_update2_pb ISO8859-1 main_entry_update_dbH I t8MAIN_ENTRY_MODIFY_DB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE ;F H  t T DIKL/Z DRhfE$ 4"A<NOTES$DRM_HELP$DR%CT ENTRY_MODIFY_OK_PBE_O#ENTRY_MODIFY_CANCL_PBD_lT< TTTTL|UdENTRY_MODIFY_HELP_PBCLAENTRY_MODIFY_CANCL_PBNTENTRY_MODIFY_SHOW_PBENTENTRY_MODIFY_APPLY_PBY_ENTRY_MODIFY_OK_PBPENTRY_MODIFY_OBJECT_TSPENTRY_MODIFY_OBJECT_TB_ENTRY_MODIFY_FILESPEC_TENTRY_MODIFY_FILESPEC_TB_TEENTRY_MODIFY_CLASS_TPPLENTRY_MODIFY_CLASS_TBCTENTRY_%? $ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1H"MODIFY_NAME_TENTRY_MODIFY_NAME_TBerpENTRY_MODIFY_ENTRY_TndeENTRY_MODIFY_ENTRY_LompS$H  lI 8ENTRY_MODIFY_ENTRY_L m A!A Z |hf HNOTES$DRM_HELP&T'izH H ߀ ISO8859-1Entry_pH , ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_entry_l H \ I t8ENTRY_MODIFY_ENTRY_T mhftr\ IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf ZRhfNOTES$DRM_HELP(<hfDRH3RNOTES$DRM_VALUE_CHANGED"ENTRY_MODIFY_ENTRY_LNTRY_"ENTRY_MODIFY_ENTRY_Lro| LH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_entry_l H I t8ENTRY_MODIFY_NAME_TB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf$ hf NOTES$DRM_HELPR)HEhf44<hf3NOTES$DRM_VALUE_CHANGED*AN"ENTRY_MODIFY_ENTRY_TY_LNH %߀! ISO8859-1New Entry NameH h߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_name_tbEH `I` p4ENTRY_MODIFY_NAME_Thfn_X9-1NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z $hf ES$DRNOTES$DRM_HELP+"ENTRY_MODIFY_NAME_TBES$DR"ENTRY_MODIFY_NAME_TBN"H t߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_name_tbH I t8ENTRY_MODIFY_CLASS_TB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf$  NOTES$DRM_HELPR,hf45ENTRYNAME_NOTES$DRM_VALUE_CHANGED-N"ENTRY_MODIFY_NAME_TBY_LNASH ߀ ISO8859-1ClassENH P߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_class_tbH dId t8ENTRY_MODIFY_CLASS_T mhftr\ IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hf RM_HENOTES$DRM_HELP.4#ENTRY_MODIFY_CLASS_TBM_VA#ENTRY_MODIFY_CLASS_TB_fH T߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_class_tbH  I x<ENTRY_MODIFY_FILESPEC_TBin_hfpd`SO885in_enNOTES$DRM_WIDGET_CREATE<A!"C ` P` Z hf  NOTES$DRM_HELPR/hf486ENTRYCLASSNOTES$DRM_VALUE_CHANGED0B#ENTRY_MODIFY_CLASS_TBTRY_H * ߀& ISO8859-1Conference FilenameH 8 ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_filespec_tbH lt Il t8ENTRY_MODIFY_FILESPEC_Thftr\ IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C D$ Z hf ES$DRNOTES$DRM_HELP14&ENTRY_MODIFY_FILESPEC_TBRM_VA&ENTRY_MODIFY_FILESPEC_TBENSOH L ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_filespec_tbSO8859-1 main_object_disply_db ISO8859-1 object_disply_info_lro|!<H I t8ENTRY_MODIFY_OBJECT_TBmhftr\ IS maiNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf NOTES$DRM_HELPE2hf47EIFY_FNOTES$DRM_VALUE_CHANGED3_F&ENTRY_MODIFY_FILESPEC_TBTRY_inH "߀ ISO8859-1 Object NameH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_object_tbH dId t8ENTRY_MODIFY_OBJECT_T mhftr\ IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hf RM_HENOTES$DRM_HELP44$ENTRY_MODIFY_OBJECT_TB_VA$ENTRY_MODIFY_OBJECT_TBSOH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_object_tbH |I| t8ENTRY_MODIFY_APPLY_PB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE!" $ \ LU Z $hf hf NOTES$DRM_HELPR5HEhf,F4$NTRY_NOTES$DRM_PUSHBUTTON_ACTIVATEEN6EC ENTRY_MODIFY_OK_PBEC_59H ߀ ISO8859-1 Apply H |߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_apply_pbCH I t8ENTRY_MODIFY_SHOW_PB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE!" $ \ LU Z $hf hf NOTES$DRM_HELPR7HEhf,E4$NTRY_NOTES$DRM_PUSHBUTTON_ACTIVATEEN8EC#ENTRY_MODIFY_APPLY_PBTBenH ߀ ISO8859-1 Show H  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_db ISO8859-1 entry_modify_show_pbH D I 8ENTRY_MODIFY_HELP_PB m!" $  U |hfai dify_ ISONOTES$DRM_HELPm$l#ENTRY_MODIFY_CANCL_PBM_HE59H  I t8ENTRY_MODIFY_CANCL_PB mhf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf EIFY_CNOTES$DRM_HELPR9HEhf,D4$NTRY_NOTES$DRM_PUSHBUTTON_ACTIVATEEN:EC"ENTRY_MODIFY_SHOW_PBTBTRH  ߀ ISO8859-1 Cancel  H  ߀ ISO8859-1 Cancel_pbH l Il p4ENTRY_MODIFY_OK_PBPhffX"NOTES$DRM_WIDGET_CREATE !" !#" \U&{ܟ$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1i" Z hfE _CNOTELPRNOTES$DRM_HELPE;Dhf<CY_NOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATEEC<Y_߀H  ߀ ISO8859-1 OK BSH ߀ ISO8859-1OK_pbINH (߀$ ISO8859-1Show/Modify EntryPLH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_modify_pb ISO8859-1 main_entry_modify_dbSHOW_PB ro|" ,H hIh th8MAIN_ENTRY_DELETE_DB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE ;F XH  4 $IZ hf_C ELPRM_HENOTES$DRM_HELP=<>#ENTRY_DELETE_CANCL_PBIVATY__P8 DENTRY_DELETE_HELP_PBENTRY_DELETE_CANCL_PBENTRY_DELETE_OK_PBENTRY_DELETE_CLASS_TTENTRY_DELETE_CLASS_TBTENTRY_DELETE_ENTRY_TLENTRY_DELETE_ENTRY_LNTR-1H  I 8ENTRY_DELETE_ENTRY_L m A!A Z |hf HNOTES$DRM_HELP?$@H |߀ ISO8859-1EntryH `߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_delete2_pb ISO8859-1 main_entry_delete_db ISO8859-1 entry_delete_entry_lH I t8ENTRY_DELETE_ENTRY_T mhftr\ IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf_C ELPRM_HENOTES$DRM_HELPA<hfH8_DELENOTES$DRM_VALUE_CHANGED"ENTRY_DELETE_ENTRY_L"ENTRY_DELETE_ENTRY_LH d߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_delete2_pb ISO8859-1 main_entry_delete_db ISO8859-1 entry_delete_entry_l H  I t8ENTRY_DELETE_CLASS_TB mhftr\ IS maiNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf$ hf NOTES$DRM_HELPRBHEhf49<hf8NOTES$DRM_VALUE_CHANGEDCAN"ENTRY_DELETE_ENTRY_TY_LH ߀ ISO8859-1ClassH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_delete2_pb ISO8859-1 main_entry_delete_db ISO8859-1 entry_delete_class_tbH dId t8ENTRY_DELETE_CLASS_T mhftr\ IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hf  RM_HENOTES$DRM_HELPD4#ENTRY_DELETE_CLASS_TBM_VA#ENTRY_DELETE_CLASS_TBH  ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_delete2_pb ISO8859-1 main_entry_delete_db ISO8859-1 entry_delete_class_tbH l Il p4ENTRY_DELETE_OK_PB1hfn_X9-1NOTES$DRM_WIDGET_CREATE !" !#" \U Z hff  RNOTES$DRM_HELPEEhf<IY_DELS_TBNOTES$DRM_PUSHBUTTON_ACTIVATESSFY__CH  ߀ ISO8859-1 OK H X ߀ ISO8859-1OK_pb H  I 8ENTRY_DELETE_HELP_PBf!" $  U |hf" NOTES$DRM_HELP=Ul#ENTRY_DELETE_CANCL_PBtry_update2_pb ISO8859-1 main_entry_update_db ISO8859-1 entry_update_class_tb Z hfOM E_TEM NOTES$DRM_HELP'CUSTOMIZE_PROFILE_CLASS_LNOTE'CUSTOMIZE_PROFILE_CLASS_L߀ ISO8859-1Add...ro|#T dH |I| t8ENTRY_DELETE_CANCL_PBfhf\"NOTES$DRM_WIDGET_CREATE!"  l$ LU Z hf EETE_CNOTES$DRM_HELPRGEhf,JfY_NOTES$DRM_PUSHBUTTON_ACTIVATEBU ENTRY_DELETE_OK_PBY_HYLAH ߀ ISO8859-1 Cancel  AlH  ߀ ISO8859-1 Cancel_pb H #߀ ISO8859-1 Delete Entry IH ߀ ISO8859-1 main_menu_bar ISO8859-1 main_entry_pde ISO8859-1 main_entry_delete2_pb ISO8859-1 main_entry_delete_db_H  0I h,MAIN_POPUPIhf-1Ptry_p ISONOTES$DRM_WIDGET_CREATE;F ( Z hf LUZNOTES$DRM_HELPIE"MAIN_POPUP_UPDATE_PB,fD|OhBTMAIN_POPUP_EXIT_PBBMAIN_SEPARATOR_SPYMAIN_POPUP_UPDATE_PBRY_MAIN_POPUP_OPEN_IN_NEW_PBMAIN_POPUP_OPEN_PBLPH HIH p4MAIN_POPUP_OPEN_PB1hfXES$DRNOTES$DRM_WIDGET_CREATE* 8 (U Z hf ES$DRNOTES$DRM_HELPJhf_PME_PBNOTES$DRM_PUSHBUTTON_ACTIVATEKNOH ߀ ISO8859-1Open H G߀C ISO8859-1 main_popup ISO8859-1 main_popup_open_pbH P@IP x<MAIN_POPUP_OPEN_IN_NEW_PBuphfpb`ES$DRNOTES$DRM_WIDGET_CREATE* @ 0U Z hf ES$DRNOTES$DRM_HELPL_PhfMNES$DRNOTES$DRM_PUSHBUTTON_ACTIVATEMSOH )߀% ISO8859-1Open in New WindoweH N߀J ISO8859-1 main_popup ISO8859-1 main_popup_open_in_new_pbH H<IH p4MAIN_POPUP_EXIT_PBahfupXew_pbNOTES$DRM_WIDGET_CREATE* 8 (U Z hf NOTES$DRM_HELPRNhf_PPNNOTES$DRM_PUSHBUTTON_ACTIVATECTO鮈H ߀ ISO8859-1ExitH G ߀C ISO8859-1 main_popup ISO8859-1 main_popup_exit_pbH L( IL t8MAIN_POPUP_UPDATE_PBn_phfxi\bNOTENOTES$DRM_WIDGET_CREATE* < ,U Z hf NOTENOTES$DRM_HELPPfhf ONNOTENOTES$DRM_PUSHBUTTON_ACTIVATEQ=SSH  ߀ ISO8859-1UpdateeH I ߀E ISO8859-1 main_popup ISO8859-1 main_popup_update_pbH ! ߀ ISO8859-1 main_popupH  p I p4MAIN_DUMMY_WIDGETmahfupXbNOTES$DRM_WIDGET_CREATE;F ZEnH   I ,CONF_WINDOW;F %EZ hEThfE NOTES$DRM_HELPRTHCONF_SVN_WINDOWCONF_MENU_BARNENTRY_MODIFY_ENTRY_T mhftr\ IS maiNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf ZRhfNOTES$DRM_HELP(<hfDRH3RNOTES$DRM_VALUE_CHANGED"ENTRY_MODIFY_ENTRY_LNTRY_"ENTRY_MODIFY_ENTRY_L'$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1;"ro|$LLH  I 0CONF_MENU_BAR;F -' Z lfhf NOTENOTES$DRM_HELPSMAIN_HELP_PDENFI|El\TLP<C,MAIN_HELP_PDECONF_NOTE_PDECONF_CONF_PDEOPCONF_VIEW_PDEINCONF_EDIT_PDEYCONF_FILE_PDEATH TIT 0CONF_FILE_PDE@ 8;F ( *  W Z hfTE HELPNOTES$DRM_HELPAThfNF|NOTES$DRM_MENU_PULLINGUPPDCONF_FILE_PDM_CONH HIH 0\CONF_FILE_PDM;F L4 ZfTCONF_FILE_CLOSE_PBMAIN_SEPARATOR_SPNFREAD_FILE_PRINT2_PBREAD_FILE_PRINT1_PBREAD_FILE_EXTRACT_PBMAIN_SEPARATOR_SPMAIN_FILE_MAIL_PB_FaiH LIL t8READ_FILE_EXTRACT_PBhf\NOTES$DRM_WIDGET_CREATE* < ,U Z hf CONLOSE_NOTES$DRM_HELPTVILhfT2 ILE_PREADNOTES$DRM_PUSHBUTTON_ACTIVATEATWIL*E_hH !d߀ ISO8859-1 Extract...H m߀i ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pbEH 0I0 p4READ_FILE_PRINT1_PBhffiX I reNOTES$DRM_WIDGET_CREATE U Z hf CONNOTES$DRM_HELPEXhfT2 LE_PNOTES$DRM_PUSHBUTTON_ACTIVATEONYDIH x߀ ISO8859-1Print mH l߀h ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print1_pbhH HIH p4READ_FILE_PRINT2_PBhffiX I reNOTES$DRM_WIDGET_CREATE* 8 (U Z hf ES$DRNOTES$DRM_HELPZhfES$DRNOTES$DRM_PUSHBUTTON_ACTIVATE[FH l߀ ISO8859-1Print...9-1H l ߀h ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb H | I| p4CONF_FILE_CLOSE_PBhffiX  I reNOTES$DRM_WIDGET_CREATE* l \ L <U Z hf TES$DNOTES$DRM_HELP\hfQTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATE]E_^OP_IN`YH | fH ' ߀# ISO8859-1Close ConferenceNTRH  ߀ ISO8859-1Ctrl/ZH  \ Ctrlz:PBH k ߀g ISO8859-1 conf_menu_bar ISO8859-1 conf_file_pde ISO8859-1 conf_file_close_pblH  ߀ ISO8859-1FileY_OH E, ߀A ISO8859-1 conf_menu_bar ISO8859-1 conf_file_pdeH T\ IT 0CONF_EDIT_PDE59@ 8;F ( *  W Z hf <ZNOTES$DRM_HELPaDhfDRM_HNOTES$DRM_MENU_PULLINGbUPUATMAIN_EDIT_PDM IH  ߀ ISO8859-1EditH E߀A ISO8859-1 conf_menu_bar ISO8859-1 conf_edit_pde1 main_entry_modify_pb ISO8859-1 main_entry_modify_dbSHOW_PB ro|%X`H TIT 0CONF_VIEW_PDE59@ 8;F ( *  W Z hf <ZNOTES$DRM_HELPcDhfDRM_HNOTES$DRM_MENU_PULLINGdU&PUATMAIN_VIEW_PDMIVH ߀ ISO8859-1View8H Eh߀A ISO8859-1 conf_menu_bar ISO8859-1 conf_view_pdeNH TIT 0CONF_CONF_PDE59@ 8;F ( *  W Z hf <ZNOTES$DRM_HELPeDhfDRM_HNOTES$DRM_MENU_PULLINGfU PUATCONF_CONF_PDMH I 0\CONF_CONF_PDM59;F L Zf|hTT@,DCONF_CONF_MODERATE_PB_PMAIN_SEPARATOR_SPREAD_NOTE_SETSEEN_PBCONF_CONF_MODIFY_PBMAIN_SEPARATOR_SPCONF_CONF_MEMBER_PBCONF_CONF_MARKER_PBCONF_CONF_KEYWORD_PBRY_MAIN_SEPARATOR_SP_NREAD_NOTE_SEARCH_PBCONF_CONF_DIRECTORY_PBL`H LXIL t8CONF_CONF_DIRECTORY_PBhf\ NOTES$DRM_WIDGET_CREATE* < ,U Z hf NOTES$DRM_HELPghfON S_PB_PARATNOTES$DRM_PUSHBUTTON_ACTIVATEhFYATpbH ,@߀( ISO8859-1Directory of Notes...trH o߀k ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pbiNOH dId p4READ_NOTE_SEARCH_PBhfcoX I coNOTES$DRM_WIDGET_CREATE* T D 4U Z hf ES$DRNOTES$DRM_HELPiONhfSES$DRNOTES$DRM_PUSHBUTTON_ACTIVATEjklER59H deH  ߀ ISO8859-1 Search... mH  0xFF68:8H l$ ߀h ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_search_pbY_H LD IL t8CONF_CONF_KEYWORD_PBconhf_p\ISO88ead_nNOTES$DRM_WIDGET_CREATE* < ,U Z hf NOTES$DRM_HELPRmhfON hNOTES$DRM_PUSHBUTTON_ACTIVATECTnoSOH  KH "$ ߀ ISO8859-1 Keywords...H m8 ߀i ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pbH Hl IH p4CONF_CONF_MEMBER_PBhfcoX= I coNOTES$DRM_WIDGET_CREATE* 8 (U Z hff NOTES$DRM_HELPEphffhNOTES$DRM_PUSHBUTTON_ACTIVATEATqH ! ߀ ISO8859-1 Members...1H lH ߀h ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb_HH H| IH p4CONF_CONF_MODIFY_PBhfcoX I coNOTES$DRM_WIDGET_CREATE* 8 (U Z hff NOTES$DRM_HELPErhffWhNOTES$DRM_PUSHBUTTON_ACTIVATEATs# H % ߀! ISO8859-1Show/Modify...ROFILE_CLASS_LNOTE'CUSTOMIZE_PROFILE_CLASS_L߀ ISO8859-1Add...ro|&z .4 . ,l ,0 ,<D ,X .$ l .$ - - +T + + . . -8 ( - < +T , h ,| | -h - -x B B Bl @ tndnm n`mT `n\miihx i< h hihl mlt g` $ h g 4l L h g gPl4` g m<8 hHn( g<o( ppp(pp\l llxtlHl ghi ,k@kTi |i kkl k kpk(  4  H \ (X$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1Ż"*p `     8  # " 0 "H "|` "dx " " ! ! T H 04 L L h!  t !!! !4 L@ d| HH 04 L L h!  t !!! !4 L@ d| HCONF_CONCONF_POPUP_READ_IN_NEW_PBDICONF_POPUP_NEXT_UNSEEN_PBAPCONF_POPUPDCONF_MEMBER_MODIFY_DBNFCONF_MEMBER_MODIFY_PBCLCONF_MEMBER_DELETE_PBJECONF_MEMBER_ADD_PBFDISPLY_ONLY_MODERATORS_TBINDISPLY_ALL_MEMBERS_TBDEDISPLY_OPTIONS_RBTRCONF_MEMBER_DISPLY_DBTRCONF_MEMBER_DELETE_DBDEADD_WRITEBYPASS_TBRADD_CREATE_KEYWORD_TBTRADD_ACT_MODERATOR_TBNTRCONF_MEMBER_ADD_DBCONF_MARKER_DELETE_PBJECONF_MARKER_ADD_PBECONF_MARKER_DISPLY_DB_ACONF_MARKER_DELETE_DB_FCONF_MARKER_ADD_DBBCONF_KEYWORD_MODIFY_DBPCONF_KEYWORD_MODIFY_PB_CONF_KEYWORD_DELETE_PB_CONF_KEYWORD_CREATE_PBECONF_KEYWORD_ADD_PBCONF_KEYWORD_DISPLY_DBYCONF_KEYEDIT_POPUP_PASTE_PBEDIT_POPUP_CANCL_PBEDIT_POPUP_COPY_PBEDIT_POPUP_CUT_PBPBEDIT_POPUP_ENTER_PBEDIT_POPUPFEDIT_FINISH_CREATE_DBODEDIT_ATTRIB_OK_PBTEEDIT_ATTRIB_CANCL_PB_TBEDIT_ATTRIB_HELP_PBEDIT_ATTRIB_CONFERENCE_TRITEDIT_ATTRIB_CONFERENCE_TBNFEDIT_ATTRIB_HIDDEN_TBY_EDIT_ATTRIB_REPLIES_TB_EDIT_FILE_ATTRIBUTE_DB_EDIT_FILE_USEF_DBY_EDIT_FILE_INCL_DBONEDIT_SAVEAS_OK_PBTEEDIT_SAVEAS_CANCL_PBL_PEDIT_SAVEAS_HELP_PBEDIT_SAVEAS_FILENAME_TDEDIT_SAVEAS_FILENAME_LEDIT_FILE_SAVEAS_DBEDIT_WORK_TEXT_EDIT_WORK_KEYWORD_TEDIT_WORK_KEYWORD_LEDIT_WORK_TITLE_TITEDIT_WORK_TITLE_LITEDIT_WORK_AUTHOR_TYEDIT_WORK_DATE_LKEYEDIT_WORK_DATE_TSINEDIT_WORK_AUTHOR_LNEDIT_WORK_DBOTEEDIT_EDIT_SELECT_PBEDIT_EDIT_CLEAR_PBEEDIT_EDIT_PASTE_PBEEDIT_EDIT_COPY_PBTEEDIT_EDIT_CUT_PBIR_EDIT_EDIT_UNDO_PBTEDIT_EDIT_PDMANEDIT_EDIT_PDETEEDIT_FILE_CANCL_PBFEDIT_FILE_USEF_PBLEDIT_FILE_INCL_PBNFEDIT_FILE_SAVEAS_PBEDIT_FILE_ATTRIBUTE_PBNEDIT_FILE_ENTER_PBNEDIT_FILE_PDMNFEDIT_FILE_PDEY_EDIT_MENU_BARKEEDIT_WINDOWDIR_NOTE_ALL_REPLIES_TBDIR_NOTE_APPLY_PB_TDIR_NOTE_AUTHOR_TS_DIR_NOTE_AUTHOR_TBTDIR_NOTE_BEFORE_TDIDIR_NOTE_BEFORE_TBNDIR_NOTE_CANCL_PBNFDIR_NOTE_HELP_PBONFDIR_NOTE_KEYWORD_TFDIR_NOTE_KEYWORD_TBDIR_NOTE_NOTERANGE_LONFDIR_NOTE_NOTERANGE_TCONDIR_NOTE_NOTERANGE_TBBDIR_NOTE_OK_PBDDIR_NOTE_OPTIONS_LFDIR_NOTE_SEARCH_TNADIR_NOTE_SEARCH_TBBDIR_NOTE_SELECTION_LBDIR_NOTE_SINCE_TONFDIR_NOTE_SINCE_TBEYDIR_NOTE_TITLE_TKEYDIR_NOTE_TITLE_TBEYDIR_NOTE_UNSEEN_NOTE_TBDISPLY_ALL_MEMBERS_TBEYDISPLY_ONLY_MODERATORS_TBRDDISPLY_OPTIONS_RBEYDUMMY_WINDOWBLDWNOTES_UIDENTRY_ADD_CANCL_PBYENTRY_ADD_CLASS_TNFENTRY_ADD_CLASS_TBFENTRY_ADD_ENTRY_TNFENTRY_ADD_ENTRY_TBEENTRY_ADD_FILESPEC_LJEENTRY_ADD_FILESPEC_TJEENTRY_ADD_HELP_PBEENTRY_ADD_OBJECT_T_ENTRY_ADD_OBJECT_TBENTRY_ADD_OK_PBENTRY_DELETE_CANCL_PBR_ENTRY_DELETE_CLASS_TER_ENTRY_DELETE_CLASS_TBR_ENTRY_DELETE_ENTRY_L_BAENTRY_DELETE_ENTRY_T_PBENTRY_DELETE_HELP_PB_PBENTRY_DELETE_OK_PBFENTRY_MODIFY_APPLY_PBY_ENTRY_MODIFY_CANCL_PBTIENTRY_MODIFY_CLASS_TOTIENTRY_MODIFY_CLASS_TBPLENTRY_MODIFY_ENTRY_LFY_ENTRY_MODIFY_ENTRY_TMODENTRY_MODIFY_FILESPEC_TENTRY_MODIFY_FILESPEC_TBFY_ENTRY_MODIFY_HELP_PBFY_ENTRY_MODIFY_NAME_TENTRY_MODIFY_NAME_TBPBENTRY_MODIFY_OBJECT_T_PENTRY_MODIFY_OBJECT_TBNENTRY_MODIFY_OK_PBNENTRY_MODIFY_SHOW_PBONFENTRY_UPDATE_ALL_TBENTRY_UPDATE_CANCL_PBIZENTRY_UPDATE_CLASS_TUSTENTRY_UPDATE_CLASS_TBT_ENTRY_UPDATE_ENTRY_TSS_ENTRY_UPDATE_ENTRY_TBDIENTRY_UPDATE_HELP_PBFILENTRY_UPDATE_OK_PBZFILE_CREATE_ATTRIBUTE_LFILE_CREATE_CANCL_PBMIZro|'<\H l߀h ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pbhH LIL t8READ_NOTE_SETSEEN_PBconhf_p\ISO88onf_cNOTES$DRM_WIDGET_CREATE* < ,U Z hf NOTENOTES$DRM_HELPtfhf NOTENOTES$DRM_PUSHBUTTON_ACTIVATEuvEH tH "߀ ISO8859-1 Set Seen...H m߀i ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_setseen_pb$H h(Ih t8CONF_CONF_MODERATE_PBonhf_p\)ISO88ead_nNOTES$DRM_WIDGET_CREATE* X ,U Z hf NOTENOTES$DRM_HELPwfhf RNOTENOTES$DRM_PUSHBUTTON_ACTIVATE,CONF_ENABLE_MODERATOR_PB$LABELBREH n߀j ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_moderate_pbH !$߀ ISO8859-1 Conference$H E߀A ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pdeOH TIT 0CONF_NOTE_PDE59@ 8;F ( *  W Z hf Z NOTES$DRM_HELPxTEhfHENOTES$DRM_MENU_PULLINGyPUATCOREAD_NOTE_PDMABEL H 0I 0\READ_NOTE_PDM59;F L ZfdP<T  HREAD_NOTE_DELETE2_PBOTEREAD_NOTE_DELETE1_PBMAIN_SEPARATOR_SPREAD_NOTE_READNEW_NOTE_PBREAD_NOTE_READ_PDEMAIN_SEPARATOR_SPREAD_WORK_SELECT_CONF_PBONFREAD_WORK_KP7_SELECT_PBREAD_NOTE_MODIFY_PBREAD_NOTE_CREATE_PBhH HIH p4READ_NOTE_CREATE_PBhfX LNOTES$DRM_WIDGET_CREATE* 8 (U Z hf  NOTES$DRM_HELPzOThfTEAD_NOE1_PBNOTES$DRM_PUSHBUTTON_ACTIVATEOT{_P REH )l߀% ISO8859-1Create New Note...H l ߀h ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pbH H IH p4READ_NOTE_MODIFY_PBhfnoX I reNOTES$DRM_WIDGET_CREATE* 8 (U Z hf  NOTES$DRM_HELP|OThfTEAD_NOE1_PBNOTES$DRM_PUSHBUTTON_ACTIVATEOT}_P#REH % ߀! ISO8859-1Show/Modify...H l ߀h ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pbH 4 I4 t8READ_WORK_KP7_SELECT_PBhf_p\ISO88ead_nNOTES$DRM_WIDGET_CREATE* $   U hf;NOTELPNOTES$DRM_PUSHBUTTON_ACTIVATE~EPUATlH  ߀ ISO8859-1 Select...FH  ߀ ISO8859-1KP7H  0xFFB7:H @I <READ_WORK_SELECT_CONF_PBf  U dDRhfET;NOTES$DRM_PUSHBUTTON_ACTIVATELT88H  `0xFF60:߀A ISO8859-1 conf_menu_bar ISO8859-1 conf_edit_pde1 main_entry_modify_pb ISO8859-1 main_entry_modify_dbSHOW_PB ro|(dH \I\ 4READ_NOTE_READ_PDEN@ <;F , *  W Z hfPU CTIVANOTES$DRM_HELPEhfTEBUTTOTENOTES$DRM_MENU_PULLING READ_NOTE_READ_PDMRAT$H (I( 4`READ_NOTE_READ_PDMN;F P ZfREAD_NOTE_READ_NOTEID_PBPREAD_NOTE_READ_LAST_NOTE_PBREAD_NOTE_READ_BACK_PDEREAD_NOTE_READ_NEXT_PDEREAD_NOTE_READ_UNSEEN_PBH lpIl x<READ_NOTE_READ_UNSEEN_PBhf`NOTES$DRM_WIDGET_CREATE* \ L <U Z _NhfPB OTE_R_NOTENOTES$DRM_HELPEADhfREEREAEAD_UNOTES$DRM_PUSHBUTTON_A)Z$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1X"";CTIVATE_NAT=ORGEH ߀ ISO8859-1UnseenBH ,߀ ISO8859-1 KP,CTH \߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_unseen_pbOH hIh 8READ_NOTE_READ_NEXT_PDE@ @;F 0 *  W Z hf _NNOTES$DRM_HELP_hfTEEADNOTES$DRM_MENU_PULLINGTE*ON%READ_NOTE_READ_NEXT_PDMUPH  8I  8dREAD_NOTE_READ_NEXT_PDM;F T ZfREAD_NOTE_READ_NEXT_T_PBOTEREAD_NOTE_READ_NEXT_R_PB_READ_NOTE_READ_NEXT_N_PBREAD_NOTE_READ_NEXT_P_PBLLIILH PIP x<READ_NOTE_READ_NEXT_P_PBhf` TNOTES$DRM_WIDGET_CREATE* @ 0U Z hfT_ AD_NONEXT_NOTES$DRM_HELPTPBhfAD_NEXTINGNOTES$DRM_PUSHBUTTON_ACTIVATEONF_NH ߀ ISO8859-1Page_TEH 8 ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_next_pde ISO8859-1 read_note_read_next_p_pb_TH Ph IP x<READ_NOTE_READ_NEXT_N_PBad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE* @ 0U Z hfno xt_p_NEXT_NOTES$DRM_HELPTPBhfAD_NEXTINGNOTES$DRM_PUSHBUTTON_ACTIVATEON_NN_H @ ߀ ISO8859-1NoteILEH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_next_pde ISO8859-1 read_note_read_next_n_pbY_H l Il x<READ_NOTE_READ_NEXT_R_PBad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE* \ L <U Z _rhfxt NEXTRM_HENOTES$DRM_HELPhf_NINGRM_PUNOTES$DRM_PUSHBUTTON_ACTIVATEEXORINH  ߀ ISO8859-1ReplyPDH ,߀ ISO8859-1 KP3NTH \߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_next_pde ISO8859-1 read_note_read_next_r_pbNTRY_UPDATE2_PBUPMAIN_ENTRY_UPDATE_DB_UPMAIN_EXPAND_ALL_PBRMAIN_EXPAND_PBBMAIN_FILE_CREATE_DBMAIN_FILE_CREATE_PBMAIN_FILE_DIRECTORY_DBCro|)$H lIl x<READ_NOTE_READ_NEXT_T_PBad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE* \ L <U Z _rhfxt NEXTRM_HENOTES$DRM_HELPhf_NINGRM_PUNOTES$DRM_PUSHBUTTON_ACTIVATEEXSORH ߀ ISO8859-1TopicH ߀ ISO8859-1 KP2 cH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_next_pde ISO8859-1 read_note_read_next_t_pbM_H ߀ ISO8859-1NextH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_next_pdeF_H hIh 8READ_NOTE_READ_BACK_PDE@ @;F 0 *  W Z hf 59-1ote_rNOTES$DRM_HELPRhfTENOTES$DRM_MENU_PULLINGTEON%READ_NOTE_READ_BACK_PDMPH  I  8dREAD_NOTE_READ_BACK_PDM;F T ZfREAD_NOTE_READ_BACK_T_PBOTEREAD_NOTE_READ_BACK_R_PBRREAD_NOTE_READ_BACK_N_PBREAD_NOTE_READ_BACK_P_PBLLIH PIP x<READ_NOTE_READ_BACK_P_PBhf` TNOTES$DRM_WIDGET_CREATE* @ 0U Z hfK_ AD_NOBACK_NOTES$DRM_HELPTPBhfAD_BACKINGNOTES$DRM_PUSHBUTTON_ACTIVATEONF_NH 0߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_back_pde ISO8859-1 read_note_read_back_p_pbH PIP x<READ_NOTE_READ_BACK_N_PBad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE* @ 0U Z hfno ck_p_BACK_NOTES$DRM_HELPTPBhfAD_BACKINGNOTES$DRM_PUSHBUTTON_ACTIVATEON_NH l߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_back_pde ISO8859-1 read_note_read_back_n_pbM_H l Il x<READ_NOTE_READ_BACK_R_PBad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE* \ L <U Z _rhfck BACKRM_HENOTES$DRM_HELPhf_BINGRM_PUNOTES$DRM_PUSHBUTTON_ACTIVATEACORF_H  ߀ ISO8859-1 KP1NOH ( ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_back_pde ISO8859-1 read_note_read_back_r_pbH lX Il x<READ_NOTE_READ_BACK_T_PBad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE* \ L <U Z _rhfck BACKRM_HENOTES$DRM_HELPhf_BINGRM_PUNOTES$DRM_PUSHBUTTON_ACTIVATEACSORhH 0 ߀ ISO8859-1 KP5LPH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_back_pde ISO8859-1 read_note_read_back_t_pbPRH k ISO8859-1Add...ro|* H ߀ ISO8859-1BackXH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_back_pdeH l0Il x<READ_NOTE_READ_LAST_NOTE_PBhfde`O8859d_notNOTES$DRM_WIDGET_CREATE* \ L <U Z _rhfck BACKRM_HENOTES$DRM_HELPhf_BINGRM_PUNOTES$DRM_PUSHBUTTON_ACTIVATEACOR H LH %\߀! ISO8859-1Last Read Note H p߀ ISO8859-1 KP-H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_last_note_pbY_H lIl x<READ_NOTE_READ_NOTEID_PBad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE \* L <U Z _rhfck BACKRM_HENOTES$DRM_HELPhf_BINGRM_PUNOTES$DRM_PUSHBUTTON_ACTIVATEACORMOH ߀ ISO8859-1Ctrl/NOH iH !8߀ ISO8859-1 Note-id...OH L߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_n*B X$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"Lote_read_pde ISO8859-1 read_note_read_noteid_pbYH RH ,߀ ISO8859-1Read_UPH k@߀g ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde_TH PpIP x<READ_NOTE_READNEW_NOTE_PBnohf`859-1note_NOTES$DRM_WIDGET_CREATE @* 0U Z hf ckBACKNOTES$DRM_HELPEhf_BINGNOTES$DRM_PUSHBUTTON_ACTIVATEONILH )߀% ISO8859-1Read in New WindowIH rT߀n ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_readnew_note_pbH LIL t8READ_NOTE_DELETE1_PBreahf_p\ISO88ead_nNOTES$DRM_WIDGET_CREATE* < ,U Z hff cBNOTES$DRM_HELPEhff _INOTES$DRM_PUSHBUTTON_ACTIVATEATLH  ߀ ISO8859-1DeleteBH mt ߀i ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_delete1_pbLH L IL t8READ_NOTE_DELETE2_PBreahf_p\ISO88ead_nNOTES$DRM_WIDGET_CREATE* < ,U Z hff cBNOTES$DRM_HELPEhff _INOTES$DRM_PUSHBUTTON_ACTIVATEATKH $ lH  ߀ ISO8859-1 Delete...TRH m ߀i ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_delete2_pbRH  ߀ ISO8859-1NotesTRH EL ߀A ISO8859-1 conf_menu_bar ISO8859-1 conf_note_pdeH $| ߀  ISO8859-1 conf_menu_barMODIFY_ENTRY_LBJEENTRY_MODIFY_ENTRY_TBJEENTRY_MODIFY_FILESPEC_TENTRY_MODIFY_FILESPEC_TBT_DENTRY_MODIFY_HELP_PBSPLENTRY_MODIFY_NAME_TENTRY_MODIFY_NAME_TBT_DENTRY_MODIFY_OBJECT_T_DENTRY_MODIFY_OBJECT_TBDENTRY_MODIFY_OK_PBEENTRY_MODIFY_SHOW_PBBJEENTRY_UPDATE_ALL_TBENTRY_UPDATE_CANCL_PBTENTRY_UPDATE_CLASS_TENTENTRY_UPDATE_CLASS_TBNTENTRY_UPDATE_ENTRY_TLENTRY_UPDATE_ENTRY_TBENTRY_UPDATE_HELP_PB ENTRY_UPDATE_OK_PBFILE_CREATE_ATTRIBUTE_LFILE_CREATE_CANCL_PB_CRro|+ $H I l0CONF_SVN_WINDOWhfonT59-1NOTES$DRM_WIDGET_CREATE;F  xlTD, M N Q HS P R O PhftELECTNOTES$DW_SVN_ENTRY_SELECTEDhfBMODIFD_NOTNOTES$DW_SVN_HELPDIhfY_ENTE_CANNOTES$DW_SVN_SEL_CONFIRMEDhfDE,_TTELETENOTES$DW_SVN_SEL_CONFIRMEDThfLlTE_ENRY_MONOTES$DW_SVN_GET_ENTRYOhfANTRY_MOW_PBNOTES$DW_SVN_DETACHED_PhfTRK_PBODIFYNOTES$DW_SVN_ATTACHEDFYtreeStyle_expectHighlightingEtreeArcWidthIFYtreePerpendicularLinesOtreeIndexAllPPLtreeCenteredComponentsTtreeStyleFYforceSeqGetEntryIFYuseScrollButtons_MOexpectHighlightingRdisplayModenM_H "߀ ISO8859-1 conf_windowH I t8CONF_CONF_DIRECTORY_DBnhf\fES$DRNOTES$DRM_WIDGET_CREATE ;F |H  \ @ 0IZ hf  NOTES$DRM_HELPDIR_NOTE_OK_PBtDIR_NOTE_CANCL_PBS$DWECDBpMX@D(DTAVRD_tD`OLf8  TEfDIR_NOTE_HELP_PBCHEDIR_NOTE_CANCL_PBDIR_NOTE_APPLY_PBFYDIR_NOTE_OK_PBTDIR_NOTE_ALL_REPLIES_TBDIR_NOTE_OPTIONS_LeDIR_NOTE_UNSEEN_NOTE_TBDIR_NOTE_SEARCH_TdeDIR_NOTE_SEARCH_TBdDIR_NOTE_TITLE_TtylDIR_NOTE_TITLE_TBryDIR_NOTE_KEYWORD_TsDIR_NOTE_KEYWORD_TBDIR_NOTE_SINCE_TDIR_NOTE_SINCE_TBylDIR_NOTE_BEFORE_TryDIR_NOTE_BEFORE_TBsDIR_NOTE_AUTHOR_TtiDIR_NOTE_AUTHOR_TBDIR_NOTE_SELECTION_LTORDIR_NOTE_NOTERANGE_TNDODIR_NOTE_NOTERANGE_LMADIR_NOTE_NOTERANGE_TBNOH I t8DIR_NOTE_NOTERANGE_TBnhf\ES$DRNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf ZhfNOTES$DRM_HELP hfDR4:NOTES$DRM_VALUE_CHANGEDt"DIR_NOTE_SELECTION_LWH !߀ ISO8859-1 Note-range_H H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_noterange_tbEXH  | I 8DIR_NOTE_NOTERANGE_L c A!A Z |hfco recto NOTES$DRM_HELP__tf85H T ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_noterange_tb85H d8 Id t8DIR_NOTE_NOTERANGE_T chfnf\ ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hf hfRM_HENOTES$DRM_HELP4"DIR_NOTE_NOTERANGE_LRM_VA"DIR_NOTE_NOTERANGE_L3H   I 8DIR_NOTE_SELECTION_L c A!C  Z |hf BNOTES$DRM_HELP@"DIR_NOTE_NOTERANGE_TINH *߀& ISO8859-1Selection Criteria:E_CREATE_PBMAIN_FILE_DIRECTORY_DBCro|,xLH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_selection_lH |I| p4DIR_NOTE_AUTHOR_TB1hff_X -1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf DIR_NRANGENOTES$DRM_HELPEhf0;OTE_NNOTES$DRM_VALUE_CHANGEDER"DIR_NOTE_SELECTION_LN_LWO8H ߀ ISO8859-1Author1H h߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_author_tb H XIX p4DIR_NOTE_AUTHOR_T-1hff_X -1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C 8$ Z hfDI RANGRM_HENOTES$DRM_HELP0 DIR_NOTE_AUTHOR_TB$DR DIR_NOTE_AUTHOR_TBERH l߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_author_tbH xIx p4DIR_NOTE_BEFORE_TB1hff_X -1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf DIRANGNOTES$DRM_HELPEhf0<DAUTHONOTES$DRM_VALUE_CHANGEDERDIR_NOTE_AUTHOR_T_LNH ߀ ISO8859-1BeforeAH 8߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb +*$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1aQ"]ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_before_tbH XhIX p4DIR_NOTE_BEFORE_T-1hff_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C 8$ Z hfDI RANGRM_HENOTES$DRM_HELP0 DIR_NOTE_BEFORE_TB$DR DIR_NOTE_BEFORE_TBERIVH <߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_before_tbH x Ix p4DIR_NOTE_SINCE_TB-1hff_X-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf DIRANGNOTES$DRM_HELPEhf0=DBEFORNOTES$DRM_VALUE_CHANGEDERDIR_NOTE_BEFORE_T_LNH | ߀ ISO8859-1SinceH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_since_tb88H X8 IX p4DIR_NOTE_SINCE_T9-1hff_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C 8$ Z hfDI RANGRM_HENOTES$DRM_HELP0DIR_NOTE_SINCE_TBS$DRDIR_NOTE_SINCE_TBERIVH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_since_tbread_note_read_pde ISO8859-1 read_note_read_back_pde ISO8859-1 read_note_read_back_t_pbPRH k ISO8859-1Add...ro|-x$H xIx p4DIR_NOTE_KEYWORD_TBhff_X-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf DIRANGNOTES$DRM_HELPEhf0>DSINCENOTES$DRM_VALUE_CHANGEDERDIR_NOTE_SINCE_T_LNH ߀ ISO8859-1KeywordH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_keyword_tbH `I` p4DIR_NOTE_KEYWORD_T1hff_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z hfDI RANGRM_HENOTES$DRM_HELP0!DIR_NOTE_KEYWORD_TBDRM_VA!DIR_NOTE_KEYWORD_TBH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_keyword_tbH xIx p4DIR_NOTE_TITLE_TB-1hff_X-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf DIRANGNOTES$DRM_HELPEhf0?DKEYWONOTES$DRM_VALUE_CHANGED_T DIR_NOTE_KEYWORD_TLNINH ߀ ISO8859-1TitleCAH d߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_title_tb_BH XIX p4DIR_NOTE_TITLE_T9-1hff_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C 8$ Z hfDI RANGRM_HENOTES$DRM_HELP0DIR_NOTE_TITLE_TBS$DRDIR_NOTE_TITLE_TB_TPDH h߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_title_tbOPH xIx p4DIR_NOTE_SEARCH_TB1hff_X-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf DIRANGNOTES$DRM_HELPEhf0@DTITLENOTES$DRM_VALUE_CHANGED_TDIR_NOTE_TITLE_TTLNELH  ߀ ISO8859-1TextMEH 4 ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_search_tbRH Xd IX p4DIR_NOTE_SEARCH_T-1hff_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C 8$ Z hfDI RANGRM_HENOTES$DRM_HELP0 DIR_NOTE_SEARCH_TB$DR DIR_NOTE_SEARCH_TB_TJEH 8 ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_search_tbEH @ I@ t8DIR_NOTE_UNSEEN_NOTE_TBhfnf\ ISO confNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf  NOTES$DRM_HELPRDIR_NOTE_SEARCH_TIFY_OBJECT_TOBJECT_MODIFY_SHOW_PB ro|.4 H #߀ ISO8859-1 Unseen NotesH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_unseen_note_tbH  8I 4DIR_NOTE_OPTIONS_L1 A!C B Z cohff_ db8859-NOTES$DRM_HELPs %DIR_NOTE_UNSEEN_NOTE_TBHELPRIVH )߀% ISO8859-1Selection Options: H $߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_options_lH @`I@ t8DIR_NOTE_ALL_REPLIES_TBhfnf\ ISO confNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf DUNSEENOTES$DRM_HELPR DIR_NOTE_OPTIONS_LH &4߀" ISO8859-1Include RepliesH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_all_replies_tbH tIt p4DIR_NOTE_APPLY_PB-1hff_X-1 NOTES$DRM_WIDGET_CREATE!" $ X HU Z eshf DNOTES$DRM_HELPEhf(VNOTES$DRM_PUSHBUTTON_ACTIVATENO_TDIR_NOTE_OK_PBTTH ߀ ISO8859-1 Apply H  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db ISO8859-1 dir_note_apply_pbTTH PI 4DIR_NOTE_HELP_PB9-1!" $  U xhf1 f_dirbNOTES$DRM_HELP _plDIR_NOTE_CANCL_PBS$DRLH x$Ix p4DIR_NOTE_CANCL_PB-1hfX"NOTES$DRM_WIDGET_CREATE!" $ X HU Z ,J-$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1]"nhf DCANCLNOTES$DRM_HELPEhf(UNOTES$DRM_PUSHBUTTON_ACTIVATENO_TDIR_NOTE_APPLY_PBLNH $ ߀ ISO8859-1 Cancel O88H  ߀ ISO8859-1 Cancel_pbdeH h Ih l0DIR_NOTE_OK_PBPhffT"NOTES$DRM_WIDGET_CREATE !" !#" XU Z hfD CLNOTELPENOTES$DRM_HELPUhf8TNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATE_TNOH  ߀ ISO8859-1 OK ..H  ߀ ISO8859-1OK_pb_mH ) ߀% ISO8859-1Directory of Notes H  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_directory_pb ISO8859-1 conf_conf_directory_db$| ߀  ISO8859-1 conf_menu_barMODIFY_ENTRY_LBJEENTRY_MODIFY_ENTRY_TBJEENTRY_MODIFY_FILESPEC_TENTRY_MODIFY_FILESPEC_TBT_DENTRY_MODIFY_HELP_PBSPLENTRY_MODIFY_NAME_TENTRY_MODIFY_NAME_TBT_DENTRY_MODIFY_OBJECT_T_DENTRY_MODIFY_OBJECT_TBDENTRY_MODIFY_OK_PBEENTRY_MODIFY_SHOW_PBBJEENTRY_UPDATE_ALL_TBENTRY_UPDATE_CANCL_PBTENTRY_UPDATE_CLASS_TENTENTRY_UPDATE_CLASS_TBNTENTRY_UPDATE_ENTRY_TLENTRY_UPDATE_ENTRY_TBENTRY_UPDATE_HELP_PB ENTRY_UPDATE_OK_PBFILE_CREATE_ATTRIBUTE_LFILE_CREATE_CANCL_PB_CRro|/T(H XIX p4CONF_CONF_MODIFY_DBhff_Xg-1 NOTES$DRM_WIDGET_CREATE ;F H  ` < ,IZ ThfE  DRM_HNOTES$DRM_HELPTTE"CONF_MODIFY_APPLY_PB"CONF_MODIFY_CANCL_PB B@,pX@,CONF_MODIFY_HELP_PBCONF_MODIFY_CANCL_PBCONF_MODIFY_APPLY_PBTCONF_MODIFY_REPLY_ONLY_TBCONF_MODIFY_RESTR_KEY_TBCONF_MODIFY_RESTR_MEM_TBOTECONF_MODIFY_WRITE_ALL_TBY_PCONF_MODIFY_CONF_ATTRIB_LTECONF_MODIFY_NOTICE_TOTECONF_MODIFY_NOTICE_TBNSCONF_MODIFY_TITLE_TCONF_MODIFY_TITLE_TBSEACeH \I\ t8CONF_MODIFY_TITLE_TBfhfX\ NOTENOTES$DRM_WIDGET_CREATE<A!"A L` Z hfI  ENOTES$DRM_HELPTEhfHE4XNOTES$DRM_VALUE_CHANGEDH l߀ ISO8859-1TitleZH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_title_tbH ` I` p4CONF_MODIFY_TITLE_Thff_X -1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z Ihf ES$DRNOTES$DRM_HELPHE"CONF_MODIFY_TITLE_TBES$DR"CONF_MODIFY_TITLE_TBNOH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_title_tbBH PI t8CONF_MODIFY_NOTICE_TB chfnf\! ISO confNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hfI  NOTES$DRM_HELPRhfHE4YCONF_ITLE_NOTES$DRM_VALUE_CHANGED!CONF_MODIFY_TITLE_TL_PBhH  ߀ ISO8859-1NoticeH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_notice_tbH d Id t8CONF_MODIFY_NOTICE_T chfnf\" ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hf RM_HENOTES$DRM_HELP4#CONF_MODIFY_NOTICE_TBM_VA#CONF_MODIFY_NOTICE_TBH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_notice_tbH  , I <CONF_MODIFY_CONF_ATTRIB_Lf_ A!BC  Z odhf 859-1modifNOTES$DRM_HELP"CONF_MODIFY_NOTICE_TES$DRH - ߀) ISO8859-1Conference Attributes:TH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_conf_attrib_lBNOTES$DRM_HELP@"DIR_NOTE_NOTERANGE_TINH *߀& ISO8859-1Selection Criteria:E_CREATE_PBMAIN_FILE_DIRECTORY_DBCro|0<|tH DID x<CONF_MODIFY_WRITE_ALL_TBnf_hfde`#O8859f_conNOTES$DRM_WIDGET_CREATE<A!"C  Z hf CONOTES$DRM_HELPE4'CONF_MODIFY_CONF_ATTRIB_L#ATH #߀ ISO8859-1 Allow Writes H X߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_write_all_tbLH LIL x<CONF_MODIFY_RESTR_MEM_TBnf_hfde`%O8859f_conNOTES$DRM_WIDGET_CREATE<A!"C $ <Z hf ES$DRNOTES$DRM_HELP&CONF_MODIFY_WRITE_ALL_TBCOH 'd߀# ISO8859-1Restrict MembersH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_restr_mem_tbH DID x<CONF_MODIFY_RESTR_KEY_TBnf_hfde`&O8859f_conNOTES$DRM_WIDGET_CREATE<A!"C  Z Zhf NOTES$DRM_HELPR&CONF_MODIFY_RESTR_MEM_TB_ALL_ATH 0߀, ISO8859-1Restrict Keyword CreationHH ,߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_restr_key_tbH LpIL x<CONF_MODIFY_REPLY_ONLY_TBf_hfde`$O8859f_conNOTES$DRM_WIDGET_CREATE<A!"C $ <Z hf ES$DRNOTES$DRM_HELP&CONF_MODIFY_RESTR_KEY_TBCO1H .D߀* ISO8859-1Restrict Topic CreationH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_reply_only_tbH I 4CONF_MODIFY_HELP_PB!" $  U xhf c odify ISNOTES$DRM_HELPmlyl "CONF_MODIFY_CANCL_PBECEH  I t8CONF_MODIFY_CANCL_PBhf\( $NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf CONF_ANCL_NOTES$DRM_HELPEhf,[-:hC$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1*"NOTES$DRM_PUSHBUTTON_ACTIVATECOCE"CONF_MODIFY_APPLY_PB_PBH  ߀ ISO8859-1 Cancel conH  P ߀ ISO8859-1 Cancel_pbpbH p Ip t8CONF_MODIFY_APPLY_PBhf\' $NOTES$DRM_WIDGET_CREATE !" !#" `U Z COhf TES$DENOTES$DRM_HELPhf@ZTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATEIF鮈H  ߀ ISO8859-1 Apply H <߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_apply_pboH -l߀) ISO8859-1Show/Modify Conferenceead_back_pde ISO8859-1 read_note_read_back_t_pbPRH k ISO8859-1Add...ro|1PpH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_dbH I p4CONF_KEYWORD_ADD_DBhff_X]-1 NOTES$DRM_WIDGET_CREATE ;F H  \ < ,IZ hfD  NOTELPNOTES$DRM_HELPZUKEYWORD_ADD_OK_PBIVAT"KEYWORD_ADD_CANCL_PB_PBhP<$ KEYWORD_ADD_HELP_PBKEYWORD_ADD_CANCL_PBKEYWORD_ADD_APPLY_PBELPKEYWORD_ADD_OK_PBNCKEYWORD_ADD_NOTEID_TPPLKEYWORD_ADD_NOTEID_LEPLKEYWORD_ADD_KEYWORD_TY_KEYWORD_ADD_KEYWORD_LODZH  I 8KEYWORD_ADD_KEYWORD_Lf A!A Z |hfF NOTES$DRM_HELPonH l߀ ISO8859-1KeywordH P߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_add_pb ISO8859-1 conf_keyword_add_db ISO8859-1 keyword_add_keyword_l H I t8KEYWORD_ADD_KEYWORD_T chfnf\y ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf 9-1_add_NOTES$DRM_HELPRhfZHAKENOTES$DRM_VALUE_CHANGED#KEYWORD_ADD_KEYWORD_L#KEYWORD_ADD_KEYWORD_LleH ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_add_pb ISO8859-1 conf_keyword_add_db ISO8859-1 keyword_add_keyword_lH  `I 8KEYWORD_ADD_NOTEID_L c A!C  Z |hfnf isply ISNOTES$DRM_HELPk#KEYWORD_ADD_KEYWORD_T859-85H ߀ ISO8859-1Note-idH  ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_add_pb ISO8859-1 conf_keyword_add_db ISO8859-1 keyword_add_noteid_lH  I t8KEYWORD_ADD_NOTEID_T chfnf\z ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf 9-1_add_NOTES$DRM_HELPRhfZHBKENOTES$DRM_VALUE_CHANGED"KEYWORD_ADD_NOTEID_L"KEYWORD_ADD_NOTEID_LH  ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_add_pb ISO8859-1 conf_keyword_add_db ISO8859-1 keyword_add_noteid_lH | I| t8KEYWORD_ADD_APPLY_PB chfnf\| ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf59 keywobNOTES$DRM_HELP tehfE,^ZNOTES$DRM_PUSHBUTTON_ACTIVATETEANKEYWORD_ADD_OK_PBTEIDH  ߀ ISO8859-1 Apply DRM_HELPRDIR_NOTE_SEARCH_TIFY_OBJECT_TOBJECT_MODIFY_SHOW_PB ro|2 H ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_add_pb ISO8859-1 conf_keyword_add_db ISO8859-1 keyword_add_apply_pbES$H I 4KEYWORD_ADD_HELP_PB!" $  U xhf rd_diNOTES$DRM_HELPo_pl59"KEYWORD_ADD_CANCL_PB ISO8H $I t8KEYWORD_ADD_CANCL_PBhf\} $NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf59 KEYWOANCL_NOTES$DRM_HELP plhfE,_ZNOTES$DRM_PUSHBUTTON_ACTIVATETEAN"KEYWORD_ADD_APPLY_PBD_LH (߀ ISO8859-1 Cancel EATH  ߀ ISO8859-1 Cancel_pbAH lIl p4KEYWORD_ADD_OK_PBPBhffX{}NOTES$DRM_WIDGET_CREATE !" !#" \U Z hfO L_NOTELP NOTES$DRM_HELPl_hf<]ZNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATEANORcoH $߀ ISO8859-1 OK _tbH ߀ ISO8859-1OK_pbH "߀ ISO8859-1 Add KeywordH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_add_pb ISO8859-1 conf_keyword_add_dbONFH <I t8CONF_KEYWORD_CREATE_DBchfnf\^ ISO confNOTES$DRM_WIDGET_CREATE ;F H  d @ 0IZ ThfE DRM_HNOTES$DRM_HELPTTE"KEYWORD_CREATE_OK_PB%KEYWORD_CREATE_CANCL_PBNOIDhL4KEYWORD_CREATE_HELP_PB_KEYWORD_CREATE_CANCL_PBKEYWORD_CREATE_APPLY_PBKEYWORD_CREATE_OK_PBK_PKEYWORD_CREATE_KEYWORD_TPPLKEYWORD_CREATE_KEYWORD_LEYW IH  8I <KEYWORD_CREATE_KEYWORD_Lf A!A Z hfF NOTES$DRM_HELPH H  ߀ ISO8859-1KeywordH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_create_pb ISO8859-1 conf_keyword_create_db ISO8859-1 keyword_create_keyword_lFH  I x<KEYWORD_CREATE_KEYWORD_Tnf_hfde`O8859f_conNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ d` (Z hf 859-1rd_crNOTES$DRM_HELPhfTLCTKENOTES$DRM_VALUE_CHANGED&KEYWORD_CREATE_KEYWORD_L&KEYWORD_CREATE_KEYWORD_LH  ߀.C>$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1." ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_create_pb ISO8859-1 conf_keyword_create_db ISO8859-1 keyword_create_keyword_l-1 conf_modify_conf_attrib_lBNOTES$DRM_HELP@"DIR_NOTE_NOTERANGE_TINH *߀& ISO8859-1Selection Criteria:E_CREATE_PBMAIN_FILE_DIRECTORY_DBCro|3 4H I t8KEYWORD_CREATE_APPLY_PBhfnf\ ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z hfO8 nf_keeate_NOTES$DRM_HELP5crhfey,bhfNOTES$DRM_PUSHBUTTON_ACTIVATEKEE_"KEYWORD_CREATE_OK_PBE_KEYH H ߀ ISO8859-1 Apply H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_create_pb ISO8859-1 conf_keyword_create_db ISO8859-1 keyword_create_apply_pbH I 8KEYWORD_CREATE_HELP_PBc!" $  U |hfnf isply ISNOTES$DRM_HELPkpbl9-%KEYWORD_CREATE_CANCL_PBISO885H I t8KEYWORD_CREATE_CANCL_PBhf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf KREATENOTES$DRM_HELP5crhfpp,chfNOTES$DRM_PUSHBUTTON_ACTIVATEKEE_%KEYWORD_CREATE_APPLY_PBEYWORD H ߀ ISO8859-1 Cancel H  ߀ ISO8859-1 Cancel_pbH pIp t8KEYWORD_CREATE_OK_PBPBhf\"NOTES$DRM_WIDGET_CREATE !" !#" `U Z hf TES$D5NOTES$DRM_HELPhf@aTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATECRIFH ߀ ISO8859-1 OK f_cH ߀ ISO8859-1OK_pbH %߀! ISO8859-1Create KeywordH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_create_pb ISO8859-1 conf_keyword_create_dbH I tl8CONF_KEYWORD_DELETE_DBchfnf\_ ISO confNOTES$DRM_WIDGET_CREATE ;F \H  4 $,IZ hfe_ ES$DRNOTES$DRM_HELPD%KEYWORD_DELETE_CANCL_PBCTIVAT CRPRpOXE@(KEYWORD_DELETE_HELP_PBAKEYWORD_DELETE_CANCL_PBKEYWORD_DELETE_APPLY_PBKEYWORD_DELETE_OK_PBREAKEYWORD_DELETE_ALL_TBEAKEYWORD_DELETE_NOTEID_TKEYWORD_DELETE_NOTEID_LKEYWORD_DELETE_KEYWORD_TDD_KEYWORD_DELETE_KEYWORD_L_TBH   I <KEYWORD_DELETE_KEYWORD_Lf A!A Z hfF NOTES$DRM_HELP H  ߀ ISO8859-1KeywordH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_db ISO8859-1 keyword_delete_keyword_lIF鮈H  ߀ ISO8859-1 Apply H <߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_modify_pb ISO8859-1 conf_conf_modify_db ISO8859-1 conf_modify_apply_pboH -l߀) ISO8859-1Show/Modify Conferenceead_back_pde ISO8859-1 read_note_read_back_t_pbPRH k ISO8859-1Add...ro|4@H I x<KEYWORD_DELETE_KEYWORD_Tnf_hfde`O8859f_conNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ d` (Z hf 859-1rd_deNOTES$DRM_HELPhfLDKELETENOTES$DRM_VALUE_CHANGED&KEYWORD_DELETE_KEYWORD_L&KEYWORD_DELETE_KEYWORD_LNOH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_db ISO8859-1 keyword_delete_keyword_lEH  I 8KEYWORD_DELETE_NOTEID_L A!C  Z |hfnf isply ISNOTES$DRM_HELPkpb9-&KEYWORD_DELETE_KEYWORD_TSO885H ߀ ISO8859-1Note-idH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_db ISO8859-1 keyword_delete_noteid_l88H l0Il t8KEYWORD_DELETE_NOTEID_Thfnf\ ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C D$ Z nfhfrd 59-1NOTES$DRM_HELPe%KEYWORD_DELETE_NOTEID_LK%KEYWORD_DELETE_NOTEID_LhH \߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_db ISO8859-1 keyword_delete_noteid_ldbH HIH t8KEYWORD_DELETE_ALL_TB chfnf\ ISO confNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf rd_deNOTES$DRM_HELPeot %KEYWORD_DELETE_NOTEID_T%H 8߀4 ISO8859-1!Delete keyword and all references-1H d ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_db ISO8859-1 keyword_delete_all_tbH p Ip t8KEYWORD_DELETE_OK_PB chfnf\ ISO confNOTES$DRM_WIDGET_CREATE !" !#" `U Z nfhfrd 59-1NOTES$DRM_HELPe hf@eORD_DTEID_NOTES$DRM_PUSHBUTTON_ACTIVATEOT KEH  ߀ ISO8859-1 OK OTEH \ ߀ ISO8859-1OK_pb59H  I t8KEYWORD_DELETE_APPLY_PBhfnf\ ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z Uhf nfhf NOTES$DRM_HELP5 HEhf,fhfeNOTES$DRM_PUSHBUTTON_ACTIVATEPU AT"KEYWORD_DELETE_OK_PBE_KEYH  ߀ ISO8859-1 Apply H T߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_db ISO8859-1 keyword_delete_apply_pbDIR_NOTE_SEARCH_TIFY_OBJECT_TOBJECT_MODIFY_SHOW_PB /Ϩ$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"ro|5H I 8KEYWORD_DELETE_HELP_PBc!" $  U |hfnf isply ISNOTES$DRM_HELPkpbl9-%KEYWORD_DELETE_CANCL_PBISO885keH I t8KEYWORD_DELETE_CANCL_PBhf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf KELETENOTES$DRM_HELP5dehfpp,ghfeNOTES$DRM_PUSHBUTTON_ACTIVATEPUAT%KEYWORD_DELETE_APPLY_PBEYWORDDGH  ߀ ISO8859-1 Cancel H  ߀ ISO8859-1 Cancel_pb H %߀! ISO8859-1Delete KeywordH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_dbH 8DI8 t8CONF_KEYWORD_DISPLY_DBchfnf\` ISO confNOTES$DRM_WIDGET_CREATE ;F H  h @ 0IZ hfHE ppNOTES$DRM_HELPTEON%KEYWORD_DISPLY_APPLY_PBKE%KEYWORD_DISPLY_CANCL_PB&DE TERDPDtC\DDL,KEYWORD_DISPLY_INFO_UDWKEYWORD_DISPLY_HELP_PBWKEYWORD_DISPLY_CANCL_PBCONF_KEYWORD_MODIFY_PBWCONF_KEYWORD_DELETE_PB_CONF_KEYWORD_CREATE_PBLCONF_KEYWORD_ADD_PBKEYWORD_DISPLY_APPLY_PBKEYWORD_DISPLY_INFO_LNFKEYWORD_DISPLY_KEYWORD_TMODKEYWORD_DISPLY_KEYWORD_LFY_H  DI <KEYWORD_DISPLY_KEYWORD_Lf A!A Z hfF NOTES$DRM_HELPH ߀ ISO8859-1KeywordH x߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 keyword_disply_keyword_lEH pIp x<KEYWORD_DISPLY_KEYWORD_Tnf_hfde`O8859f_conNOTES$DRM_WIDGET_CREATE 6AB!" 3C H$ Z hf fHNOTES$DRM_HELPp&KEYWORD_DISPLY_KEYWORD_L&KEYWORD_DISPLY_KEYWORD_LH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 keyword_disply_keyword_lcH    I  8KEYWORD_DISPLY_INFO_L c A!C B"  Z hf 859-1rd_diNOTES$DRM_HELP&KEYWORD_DISPLY_KEYWORD_TRM_HE H + ߀' ISO8859-1Keyword Information:ELPH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 keyword_disply_info_lH < I p4CONF_KEYWORD_ADD_PBhff_Xx-1 NOTES$DRM_WIDGET_CREATE!" $ X HU Z lhf NOTES$DRM_HELPRRDhfHE(\NOTES$DRM_PUSHBUTTON_ACTIVATEOR%KEYWORD_DISPLY_APPLY_PBDISPLY߀H ߀ ISO8859-1Add...E_PBMAIN_FILE_DIRECTORY_DBCro|6H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_add_pbH I t8CONF_KEYWORD_CREATE_PBchfnf\~ ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z fhf NOTENOTES$DRM_HELPfhf(,`NOTENOTES$DRM_PUSHBUTTON_ACTIVATE!CONF_KEYWORD_ADD_PBDISPLYplH  ߀ ISO8859-1 Create...H h߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_create_pbH I t8CONF_KEYWORD_DELETE_PBchfnf\ ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NOTENOTES$DRM_HELPfhf(,dNOTENOTES$DRM_PUSHBUTTON_ACTIVATE$CONF_KEYWORD_CREATE_PBPLYH  t߀ ISO8859-1 Delete...NOH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pbpH <I t8CONF_KEYWORD_MODIFY_PBchfnf\ ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NOTENOTES$DRM_HELPfhf(,kNOTENOTES$DRM_PUSHBUTTON_ACTIVATE$CONF_KEYWORD_DELETE_PBPLY H  ߀ ISO8859-1 Modify...OKH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_modify_pbf_kH I 8KEYWORD_DISPLY_HELP_PBc!" $  U |hfnf isply ISNOTES$DRM_HELPkpbl%KEYWORD_DISPLY_CANCL_PBHELPHH 8I8 t8KEYWORD_DISPLY_INFO_UDchf\"NOTES$DRM_WIDGET_CREATE;F ( A!" 34 C ` 8M N Q S DP R O hfDE TNOTES$DW_SVN_ENTRY_SELECTEDhfNOTES$DW_SVN_HELPhfC(DNOTES$DW_SVN_SEL_CONFIRMEDWhfD_hP_PB_DISPNOTES$DW_SVN_SEL_CONFIRMEDDhfWRD_DE_CONFNOTES$DW_SVN_GET_ENTRYFhfRDYWORDAPPLYNOTES$DW_SVN_DETACHEDO_hfYW _KEYWDKEYWNOTES$DW_SVN_ATTACHEDY_%KEYWORD_DISPLY_APPLY_PBH_TBd#KEYWORD_DISPLY_INFO_LLE_TtreeArcWidthKEYtreePerpendicularLinesDtreeIndexAllSINtreeCenteredComponentsTtreeStyleTEforceSeqGetEntryOTEuseScrollButtonsOTEexpectHighlightingEdisplayModeTI H  I t8KEYWORD_DISPLY_CANCL_PBhf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NOTES$DRM_HELPhf ,j4NOTES$DRM_PUSHBUTTON_ACTIVATE $CONF_KEYWORD_MODIFY_PBd_H  ߀ ISO8859-1 Cancel  ISO8859-1Add...ro|7 @H  ߀ ISO8859-1 Cancel_pbKEH pIp t8KEYWORD_DISPLY_APPLY_PBhf\"NOTES$DRM_WIDGET_CREATE !" !#" `U Z hf TES$DNOTES$DRM_HELP!hf@iTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATE"WO_KH 4߀ ISO8859-1 Apply H 0lq$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1n"߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 keyword_disply_apply_pbetH '߀# ISO8859-1Display KeywordsH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_dbOH I t8CONF_KEYWORD_MODIFY_DBchfnf\a ISO confNOTES$DRM_WIDGET_CREATE ;F H  d @ 0IZ TEhf TES$DNOTES$DRM_HELP#TE$ON"KEYWORD_MODIFY_OK_PB%KEYWORD_MODIFY_CANCL_PBDETN|DdL4VKEYWORD_MODIFY_HELP_PBKEYWORD_MODIFY_CANCL_PBKEYWORD_MODIFY_APPLY_PBKEYWORD_MODIFY_OK_PB_KEYWORD_MODIFY_NEWKEY_TKEYWORD_MODIFY_NEWKEY_LKEYWORD_MODIFY_KEYWORD_T$DWKEYWORD_MODIFY_KEYWORD_LH  I <KEYWORD_MODIFY_KEYWORD_Lf A!A Z hfF NOTES$DRM_HELP%&coH ߀ ISO8859-1KeywordH p߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_modify_pb ISO8859-1 conf_keyword_modify_db ISO8859-1 keyword_modify_keyword_lH I x<KEYWORD_MODIFY_KEYWORD_Tnf_hfde`O8859f_conNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ d` (Z hf 859-1rd_moNOTES$DRM_HELP'hfTELE$OKENOTES$DRM_VALUE_CHANGED&KEYWORD_MODIFY_KEYWORD_L&KEYWORD_MODIFY_KEYWORD_LT1H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_modify_pb ISO8859-1 conf_keyword_modify_db ISO8859-1 keyword_modify_keyword_lH   I 8KEYWORD_MODIFY_NEWKEY_L A!C  Z |hfnf isply ISNOTES$DRM_HELPk(pb)9-&KEYWORD_MODIFY_KEYWORD_TSO885H " ߀ ISO8859-1 New KeywordH + ߀% ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_modify_pb ISO8859-1 conf_keyword_modify_db ISO8859-1  ISO8859-1keyword_modify_newkey_lRD_DELETE_OK_PBE_KEYH  ߀ ISO8859-1 Apply H T߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_db ISO8859-1 keyword_delete_apply_pbDIR_NOTE_SEARCH_TIFY_OBJECT_TOBJECT_MODIFY_SHOW_PB ro|8H I t8KEYWORD_MODIFY_NEWKEY_Thfnf\ ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hfy_ ISO88NOTES$DRM_HELPy*wkhfHFENOTES$DRM_VALUE_CHANGED%KEYWORD_MODIFY_NEWKEY_LRD_L%KEYWORD_MODIFY_NEWKEY_LRD_LH +߀% ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_modify_pb ISO8859-1 conf_keyword_modify_db ISO8859-1  ISO8859-1keyword_modify_newkey_lcelH I t8KEYWORD_MODIFY_APPLY_PBhfnf\ ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z hfO8 nf_kedify_NOTES$DRM_HELP5+IShf1,modifylNOTES$DRM_PUSHBUTTON_ACTIVATETE,AN"KEYWORD_MODIFY_OK_PBWKEY_H ߀ ISO8859-1 Apply H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_modify_pb ISO8859-1 conf_keyword_modify_db ISO8859-1 keyword_modify_apply_pbH I 8KEYWORD_MODIFY_HELP_PBc!" $  U |hfnf isply ISNOTES$DRM_HELPk#pbl9-%KEYWORD_MODIFY_CANCL_PBISO885_KH I t8KEYWORD_MODIFY_CANCL_PBhf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf KODIFYNOTES$DRM_HELP5-mohfpp,nodifylNOTES$DRM_PUSHBUTTON_ACTIVATETE.AN%KEYWORD_MODIFY_APPLY_PBY_LRD88H ߀ ISO8859-1 Cancel 859H  ߀ ISO8859-1 Cancel_pbH pIp t8KEYWORD_MODIFY_OK_PBPBhf\"NOTES$DRM_WIDGET_CREATE !" !# " `U Z hf TES$D5NOTES$DRM_HELP/odhf@lTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATE0MOH  ߀ ISO8859-1 OK 鮈H  ߀ ISO8859-1OK_pbYWH % ߀! ISO8859-1Modify KeywordH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_modify_pb ISO8859-1 conf_keyword_modify_dbFH  I p4CONF_MARKER_ADD_DB1hff_XZ-1 NOTES$DRM_WIDGET_CREATE ;F H  \ < ,IZ y_hfD  NOTELPNOTES$DRM_HELPd1l2UMARKER_ADD_OK_PBTIVAT!MARKER_ADD_CANCL_PB_PBY_KEMYpT\NHD4  MARKER_ADD_HELP_PB_MARKER_ADD_CANCL_PBMARKER_ADD_APPLY_PBMARKER_ADD_OK_PBPLYMARKER_ADD_NOTEID_TMARKER_ADD_NOTEID_LMARKER_ADD_MARKER_TMARKER_ADD_MARKER_LH   I 4MARKER_ADD_MARKER_L A!A Z xhf HNOTES$DRM_HELP3<4H ߀ ISO8859-1MarkerN_FILE_DIRECTORY_DBCro|9H  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_add_pb ISO8859-1 conf_marker_add_db ISO8859-1 marker_add_marker_lH I p4MARKER_ADD_MARKER_Thff_X#-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C $ \` Z hf 9-1add_mNOTES$DRM_HELPE5hfDGNOTES$DRM_VALUE_CHANGED!MARKER_ADD_MARKER_L_PBY_!MARKER_ADD_MARKER_L߀H  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_add_pb ISO8859-1 conf_marker_add_db ISO8859-1 marker_add_marker_l10S6r$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1r"H  I 4MARKER_ADD_NOTEID_L A!C  Z xhf c _disp NOTES$DRM_HELPf671!MARKER_ADD_MARKER_TO8859-H ߀ ISO8859-1Note-idH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_add_pb ISO8859-1 conf_marker_add_db ISO8859-1 marker_add_noteid_lH $I p4MARKER_ADD_NOTEID_Thff_X$-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C $ \` Z hf 9-1add_nNOTES$DRM_HELPE8hfDHNOTES$DRM_VALUE_CHANGED!MARKER_ADD_NOTEID_L_PBY_!MARKER_ADD_NOTEID_LH  @߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_add_pb ISO8859-1 conf_marker_add_db ISO8859-1 marker_add_noteid_lH xIx p4MARKER_ADD_APPLY_PBhff_X&-1 NOTES$DRM_WIDGET_CREATE!" $ X HU Z hf85 _markbNOTES$DRM_HELP 9eihfHE(qNOTES$DRM_PUSHBUTTON_ACTIVATETE:ANMARKER_ADD_OK_PBTEID_H  ߀ ISO8859-1 Apply H   ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_add_pb ISO8859-1 conf_marker_add_db ISO8859-1 marker_add_apply_pbH  I 4MARKER_ADD_HELP_PB1!" $  U xhf c _disp NOTES$DRM_HELPf1l1!MARKER_ADD_CANCL_PBO8859--1H | I| p4MARKER_ADD_CANCL_PBhfX'"NOTES$DRM_WIDGET_CREATE!" $ X HU Z hf MD_CANNOTES$DRM_HELP ;lyhfHE(rNOTES$DRM_PUSHBUTTON_ACTIVATETE<AN!MARKER_ADD_APPLY_PBD_L_PlyH  ߀ ISO8859-1 Cancel menH  ߀ ISO8859-1 Cancel_pb859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_db ISO8859-1 keyword_delete_apply_pbDIR_NOTE_SEARCH_TIFY_OBJECT_TOBJECT_MODIFY_SHOW_PB ro|:0XH lIl p4MARKER_ADD_OK_PBPBhfX%"NOTES$DRM_WIDGET_CREATE !" !#" \U Z hf TES$D NOTES$DRM_HELP=hf<pTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATE>DD H ߀ ISO8859-1 OK 8H ߀ ISO8859-1OK_pbH !߀ ISO8859-1 Add MarkerH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_add_pb ISO8859-1 conf_marker_add_db"H DID th8CONF_MARKER_DELETE_DB chfnf\[ ISO confNOTES$DRM_WIDGET_CREATE ;F XH  4 $IZ hfTE  RM_HENOTES$DRM_HELP?<@$MARKER_DELETE_CANCL_PBVATDD_,YMOMARKER_DELETE_HELP_PBMARKER_DELETE_CANCL_PBMARKER_DELETE_APPLY_PBAMARKER_DELETE_OK_PBMARKER_DELETE_MARKER_TAMARKER_DELETE_MARKER_LBMOH  I 8MARKER_DELETE_MARKER_Lc A!A Z |hf HNOTES$DRM_HELPA$B_HH h߀ ISO8859-1MarkerNH L߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_delete_pb ISO8859-1 conf_marker_delete_db ISO8859-1 marker_delete_marker_lRD_H |I t8MARKER_DELETE_MARKER_Tchfnf\) ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf 859-1r_delNOTES$DRM_HELPC<hfHIR_DELNOTES$DRM_VALUE_CHANGED$MARKER_DELETE_MARKER_L$MARKER_DELETE_MARKER_LD_H ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_delete_pb ISO8859-1 conf_marker_delete_db ISO8859-1 marker_delete_marker_lTE_H l` Il p4MARKER_DELETE_OK_PBhff_X*-1 NOTES$DRM_WIDGET_CREATE !" !#" \U Z onhfer 59-1NOTES$DRM_HELP_Dhf<tHNOTES$DRM_PUSHBUTTON_ACTIVATEANEMABJH  ߀ ISO8859-1 OK _AUH  ߀ ISO8859-1OK_pbS_H < I t8MARKER_DELETE_APPLY_PBhfX\+ NOTENOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf feNOTES$DRM_HELPF_hf,ufNOTES$DRM_PUSHBUTTON_ACTIVATEBUGAN!MARKER_DELETE_OK_PBRKER_L_PH l ߀ ISO8859-1 Apply H ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_delete_pb ISO8859-1 conf_marker_delete_db ISO8859-1 marker_delete_apply_pb1_PBUPMAIN_ENTRY_UPDATE2_PBUPMAIN_ENTRY_UPDATE_DB_UPMAIN_EXPAND_ALL_PBRMAIN_EXPAND_PBBMAIN_FILE_CREATE_DBMAIN_FILE_CREATE_PBMAIN_FILE_DIRECTORY_DBCro|;LH I 8MARKER_DELETE_HELP_PB c!" $  U |hff_ ply_d ISO8NOTES$DRM_HELPr?l$MARKER_DELETE_CANCL_PB885O8H I t8MARKER_DELETE_CANCL_PBchf\,"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf MLETE_NOTES$DRM_HELPHe_hfpb,vfNOTES$DRM_PUSHBUTTON_ACTIVATEBUIAN$MARKER_DELETE_APPLY_PBR_LH ߀ ISO8859-1 Cancel 59-H  ߀ ISO8859-1 Cancel_pbelH $߀  ISO8859-1 Delete MarkerORH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_delete_pb ISO8859-1 conf_marker_delete_dbH <I t8CONF_MARKER_DISPLY_DB chfnf\\ ISO confNOTES$DRM_WIDGET_CREATE ;F H  d @ 0IZ TEhfHE pbNOTES$DRM_HELPJTEKON$MARKER_DISPLY_APPLY_PB$MARKER_DISPLY_CANCL_PBEL E__2_ͧy$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"RHRlCTR<A$R MARKER_DISPLY_INFO_UDMAMARKER_DISPLY_HELP_PBMAMARKER_DISPLY_CANCL_PBNCONF_MARKER_DELETE_PBEICONF_MARKER_ADD_PBEMARKER_DISPLY_APPLY_PBMARKER_DISPLY_INFO_L$DWMARKER_DISPLY_MARKER_TLMARKER_DISPLY_MARKER_LAH  8I 8MARKER_DISPLY_MARKER_Lc A!A Z |hf HNOTES$DRM_HELPL@MH ,߀ ISO8859-1MarkerOH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 marker_disply_marker_lH d@Id t8MARKER_DISPLY_MARKER_Tchfnf\- ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z Ihf TEhf NOTES$DRM_HELPNHE$MARKER_DISPLY_MARKER_LON$MARKER_DISPLY_MARKER_LH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 marker_disply_marker_lOH   I 8MARKER_DISPLY_INFO_L c A!C B"  Z hf 9-1displNOTES$DRM_HELPOP$MARKER_DISPLY_MARKER_T_HEH *` ߀& ISO8859-1Marker Information:H | ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 marker_disply_info_lTIVH | I| p4CONF_MARKER_ADD_PB1hff_X"-1 NOTES$DRM_WIDGET_CREATE!" $ X HU Z Ehf PNOTES$DRM_HELPRQ_Thf(oNHMANOTES$DRM_PUSHBUTTON_ACTIVATERY_$MARKER_DISPLY_APPLY_PBLY_ H  ߀ ISO8859-1Add...Z xhf HNOTES$DRM_HELP3<4H ߀ ISO8859-1MarkerN_FILE_DIRECTORY_DBCro|<t H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_add_pbH |I| t8CONF_MARKER_DELETE_PB chfnf\( ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z fhf NOTENOTES$DRM_HELPSfhf(,sHANOTENOTES$DRM_PUSHBUTTON_ACTIVATET CONF_MARKER_ADD_PBLY_H  ߀ ISO8859-1 Delete...H `߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 conf_marker_delete_pbonH I 8MARKER_DISPLY_HELP_PB c!" $  U |hff_ ply_d ISO8NOTES$DRM_HELPrJl$MARKER_DISPLY_CANCL_PB_HEH 4hI4 t8MARKER_DISPLY_INFO_UD chf\ "NOTES$DRM_WIDGET_CREATE;F $ A!" 34 C \ 8M N Q S DP R O hf_NOTES$DW_SVN_ENTRY_SELECTEDhfRCNOTES$DW_SVN_HELPRhf(PLY_IAMARKNOTES$DW_SVN_SEL_CONFIRMEDDhfCAhNF_MAETE_PNOTES$DW_SVN_SEL_CONFIRMEDKhfPLMARLY_INNOTES$DW_SVN_GET_ENTRYAhfLPLY_MAPPLYNOTES$DW_SVN_DETACHEDO_hfYW _KEYWDKEYWNOTES$DW_SVN_ATTACHEDY_$MARKER_DISPLY_APPLY_PBH_"MARKER_DISPLY_INFO_LFO_LtreeArcWidthdthtreePerpendicularLinesntreeIndexAllAlltreeCenteredComponentsntreeStyleylforceSeqGetEntrytryuseScrollButtonsonsexpectHighlightingidisplayMode_mH pI t8MARKER_DISPLY_CANCL_PBchf\/"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NOTES$DRM_HELPUhf ,y4NOTES$DRM_PUSHBUTTON_ACTIVATEV#CONF_MARKER_DELETE_PBH ߀ ISO8859-1 Cancel NH  L ߀ ISO8859-1 Cancel_pb߀H p Ip t8MARKER_DISPLY_APPLY_PBchf\."NOTES$DRM_WIDGET_CREATE !" !#" `U Z hf TES$DNOTES$DRM_HELPWhf@xTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATEXKEH  ߀ ISO8859-1 Apply H 8 ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_db ISO8859-1 marker_disply_apply_pbH &h ߀" ISO8859-1Display MarkersH < ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_marker_pb ISO8859-1 conf_marker_disply_dbNOTES$DRM_PUSHBUTTON_ACTIVATETE<AN!MARKER_ADD_APPLY_PBD_L_PlyH  ߀ ISO8859-1 Cancel menH  ߀ ISO8859-1 Cancel_pb859-1 conf_conf_keyword_pb ISO8859-1 conf_keyword_disply_db ISO8859-1 conf_keyword_delete_pb ISO8859-1 conf_keyword_delete_db ISO8859-1 keyword_delete_apply_pbDIR_NOTE_SEARCH_TIFY_OBJECT_TOBJECT_MODIFY_SHOW_PB ro|= H I p4CONF_MEMBER_ADD_DB1hff_Xb-1 NOTES$DRM_WIDGET_CREATE ;F H  \ < ,IZ hfD  NOTELPNOTES$DRM_HELPYxZUMEMBER_ADD_OK_PBTIVAT!MEMBER_ADD_CANCL_PBBfTlNXD@(VfTElhXMEMBER_ADD_HELP_PBEMEMBER_ADD_CANCL_PBMEMBER_ADD_APPLY_PBMEMBER_ADD_OK_PB_INADD_WRITEBYPASS_TBTADD_CREATE_KEYWORD_TBPLADD_ACT_MODERATOR_TB$DWMEMBER_ADD_GRANT_LMEMBER_ADD_NODES_TMEMBER_ADD_NODES_TBMEMBER_ADD_AUTHORIZ_TMEMBER_ADD_AUTHORIZ_TBBMEMBER_ADD_MAIL_TERMEMBER_ADD_MAIL_TBMEMBER_ADD_MEMBER_TMEMBER_ADD_MEMBER_LH  I 4MEMBER_ADD_MEMBER_L A!A Z xhf HNOTES$DRM_HELP[<\,H ߀ ISO8859-1MemberH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_member_lH I p4MEMBER_ADD_MEMBER_Thff_X+-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C $ \` Z hf 9-1add_mNOTES$DRM_HELPE]hfDKNOTES$DRM_VALUE_CHANGED!MEMBER_ADD_MEMBER_LB!MEMBER_ADD_MEMBER_LH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_co3-$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1K"nf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_member_lH |I| p4MEMBER_ADD_MAIL_TB1hff_X,-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hfco add_d ISO8NOTES$DRM_HELPa^HEhf0{hfKNOTES$DRM_VALUE_CHANGED_AN!MEMBER_ADD_MEMBER_TR_LBrkH #߀ ISO8859-1 Mail AddresslH  L ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_mail_tbPH X IX p4MEMBER_ADD_MAIL_T-1hff_X--1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C 8$ Z _mhfad  ISO membNOTES$DRM_HELP`0 MEMBER_ADD_MAIL_TB$DR MEMBER_ADD_MAIL_TBAN H   ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_mail_tbAH | I| t8MEMBER_ADD_AUTHORIZ_TBchfnf\. ISO confNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf_m db8859-NOTES$DRM_HELPmahf04|MEMBEIL_TBNOTES$DRM_VALUE_CHANGEDbMEMBER_ADD_MAIL_TLBILH $(߀  ISO8859-1 AuthorizationCro|> H  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_authoriz_tbH dId t8MEMBER_ADD_AUTHORIZ_T chfnf\/ ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z behfdb O8859ber_aNOTES$DRM_HELPc4$MEMBER_ADD_AUTHORIZ_TB_VA$MEMBER_ADD_AUTHORIZ_TBRH   ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_authoriz_tbpH |I| p4MEMBER_ADD_NODES_TBhff_X0-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hfco add_d ISO8NOTES$DRM_HELPadhf0}R_ADDNOTES$DRM_VALUE_CHANGEDeUT#MEMBER_ADD_AUTHORIZ_TLBH *߀& ISO8859-1Authorization NodesH  H߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_nodes_tbH `I` p4MEMBER_ADD_NODES_T1hff_X1-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z _mhfad  ISO membNOTES$DRM_HELPf0!MEMBER_ADD_NODES_TBDRM_VA!MEMBER_ADD_NODES_TBH H  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_nodes_tbH  I 4MEMBER_ADD_GRANT_L1 A!C  Z xhf c _disp NOTES$DRM_HELPfgh1!MEMBER_ADD_NODES_TBO8859-H )0 ߀% ISO8859-1Member Privileges:H  4 ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_grant_lH @p I@ t8ADD_ACT_MODERATOR_TB chfnf\2 ISO confNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf_m db8859-NOTES$DRM_HELPgij MEMBER_ADD_GRANT_L H ' ߀# ISO8859-1Act as Moderator885H   ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 add_act_moderator_tbXH D ID t8ADD_CREATE_KEYWORD_TB chfnf\3 ISO confNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf_m db8859-NOTES$DRM_HELPekl"ADD_ACT_MODERATOR_TBH *<߀& ISO8859-1Create New KeywordsMarkerN_FILE_DIRECTORY_DBCro|?H  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 add_create_keyword_tbH @I@ p4ADD_WRITEBYPASS_TB1hff_X4-1 NOTES$DRM_WIDGET_CREATE<A!"C  <Z hfco add_d ISO8NOTES$DRM_HELPamn#ADD_CREATE_KEYWORD_TBTB߀H ' ߀# ISO8859-1Write RegardlessH  t߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 add_writebypass_tbH xIx p4MEMBER_ADD_APPLY_PBhff_X6-1 NOTES$DRM_WIDGET_CREATE!" $ X HU Z hf85 _membbNOTES$DRM_HELP os_hf(nADNOTES$DRM_PUSHBUTTON_ACTIVATEMEp_TMEMBER_ADD_OK_PBIZ_TH ߀ ISO8859-1 Apply H  X߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_apply_pbH I 4MEMBER_ADD_HELP_PB1!" $  U xhf c _disp NOTES$DRM_HELPfYl1!MEMBER_ADD_CANCL_PBO8859-S$H |I| p4MEMBER_ADD_CANCL_PBhfX7"NOTES$DRM_WIDGET_CREATE!" $ X HU Z hf MD_CANNOTES$DRM_HELP qlyhf(nADNOTES$DRM_PUSHBUTTON_ACTIVATEMEr_T!MEMBER_ADD_APPLY_PBTLB_CH ߀ ISO8859-1 Cancel \H  8 ߀ ISO8859-1 Cancel_pbH ll Il p4MEMBER_ADD_OK_PBPBhf4HB $ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1f" Ӣm1>F~ ?Qu`(XBoPAy@P\0Gea,DNMtWqGZRUn!SvҤ"> 쒬^?w?۳!~ HP ރ~f/ߴbBi?%snn}{qݴ&s9%|s夳n]poN=Ng+=+}U\f:4hb3 4{6Gsq.u,]6,NEwAuaVeWYV(qK;@;!|B d8Ml6$&U(1M-E p ZM F 6YBj^VPqwyo]1_XeTR5e4<-Ɯm[^5W/4$ NA@?$:o*N;yS.PxNV4^nGdfit2@@O0!ejz&oAQښH]"UsRhCm(t -&g_8 (> w9:[^(P_y@9grRC3B/b;go zP GY:_BCn+Om2:@Cf&c*bU;RyH~6cp#ozE7xlRKID@|M~ٓ[h~4^KMۯd) ODL}$ZֳWJg/:u|8k OS6;ۚ_4-?`!Hp5BI#fwi@O!>^t5=-Z;1\JjWF~ogD*sw2ZI pձE:bw6j,'f0i~tt 0Kf,# nRlguEQ4 P#EU%A+81}s HQSO+4CrSZza~ɠ1(V E6%dh~sBh&ryZ.I {JPkgagI1usl 861zdWpK{G_Chg(MLl$$GSp? FdS1'\yzyXg%b~[}̭rl:"!~wD= gMT0aM!Sx$0kh R'Dx5{EA1O'=<ǩ.sjU@K2eЭS r# ތ6lD|V^!pKwG\1t昣6%h/zB,@FC4en`) ol"x3dԩo\3ig{Rp'/k k.j2 IQ󭎬 |J1xxKr\q$gy[i@_4B hQ\8\/mھd}{LtjnRxEo}3'DN4\E"-F~}ș0M/*Wn6"t0 <|? ffD79o%;d(Yњrb3َtۇ\ )췢 m~K(j')"{ i#0q[}Ta =tnt^0[Б nXNp V_Fk3qmubK+Y"TȄk)':-L#u(s)ӲVY Y|~r\g.-Fw1g1躀Sz R.8TP.:U`*Ok_(XSc 'We݂>#kUD_rcͿZZexC꽎jXn499}7eÕi8I×J;?xe9`EeР(31V70}  e dGT|]t'è>w-zl05d)r*{._!sC[%bX6k5`Z <y%Ot 8?{ܨu)P@j{ XoV6',+A6տ{C(Wi9V(tvׄTl=[] =;tm;Q}s2:736֐:RJ!a$1`/XE+wUX?*[̀@-cnQYW~V66bF$C6{cE61#X ]y3 nm 85.S+qPP{x 蝑olv!B YZzI(2' Wԋ gdY,Ȩ@iyӁB?fxqsɑc3bBZri`$(!oxq-'F=k=6r1Rfo͙dkB4&®@ Eg_})dk?P3 -zU7-65hll، ~uғneE\+ r#~$'|1;՗gJQT:@]RcjRȊZvJ|ÊZ0!.aV7= S@-@X2?5T:S$ tX'.<=yuxÉ%;5 Px-'G; T]f?ԽYrOxuRa^6ʼnl9rհLy9;sz2S[R%盘4޸>os"z] %%&K&U4 rz'fVP1:89cO qfZ۞> Nq6gD Xn!ax@BB=7mbcc.kW=;>[/ q+HgXHS~9 xt%&0i&G|#b wYЁR7 ?_kgrDa]^:v aYY0ȫUX%R' H:`e}M 0|0VBL~ m;@e.MdC=wd4?[IRfPZSTK#U nmO %lJ/`E V :|?04d@^hk4uFr~{.^ 9 ׌&%YlL)L8F['RȄIqriiWx F[>Ø/W-rBa@vHW3GW$R W$4#G}Csp@n<XݦZg>ށBB;#x\S-!. {6Y{/0*<2φ {{ 1 Ma.YRF.͑U}-Byo][Oү2 Ey"Y!nq:2=_ Hw<)- W]x~4v|{& fǻs0,g5L&rc (cA|RN#9n'#i$-uw{>00O3k$&Qo44Mi++rj^hNS ?y/n-9ۿ+i D)½I~Holn R).9l|D[nIt$ gfcΔç}o $w 6QUfTo;,T{'eIю(+lsDyc bTvp>RhE" "}*չ3_dEỦ"h4"],Pʕ} L9'$Id;)!~7Lyg$aJbE9+Z$a͖3Ū ײo2mOr H&]H3Rl<\@[sLړ V2#VVF`Im6C~4tnYe-_"dg|^غ nOaیĂY@cy ܋ {go}Ϋ)1ljbPwtغ'yXl[= MW@Las H6nd7=>?w q^1)*srq9Nu)n"fzBl}DcJarvR5<2)bo~ I& M.si䖭 (@j W\v7V~ID.Mx?<K{t(Xp3o.?^p-:]k D`D\#a=DD>[sJZ6OjkΫ@n|WJT;?PB_|(e< _:R 桝ʍdz@qu꿽/©D5R͚`]Q ~ LU+avy5YV-O}s5唎ky@Qo},*jkycMlbcf8Ӫà)pz{>ʠ!H[تXaC-u貟[MbA[hT AM={20Jʼ Gw=q!utөrtuw&G5H¾*3a%RT_v'!*5yp{Ȑ97?_mzָǞ'!:[jm/Y+8)bDjo&xP517}M㾪ZKSeaiy`hO;Vxy9vR(h$ p9'EIY '(P<--OM#"E P.n67xhѠWYT$-l7L<̥it "7r"\<4 {Ͽ;0QLfܙj z)0al"?;Tؗ iŗNe] N&v` K{ 螞ŧG٭=ZS83 蛻|Q7ȑ]n\caO{1`A!W`E-GT]YYdhI$םAp|<<(=Qreƈ0zChnPK2)4? S5RipEu dV ;3~Or C\|rhI`{~-sNpGs<6Sv6SGX>jVTZVVQ`[PQI !L(ɞHE,0uG[Rѯ=B%;z?43JO ;YI◪0*f@%"]=[pg&L 2&،q&1\6gU~1Bv-/!^z/hag|I|=ӬL.XIa㞄( #,[g ]27-i[6pzk1Q=w5A7hV=Z!DR] WF]3nGXOhY|Rdc1Y%kԺ#ʅVy4ms|l>JzLaa {h=.AO KFȧ :2+p+ZY4=O/?{IiD6vùcf6)G(_5( IZ%CV_"ޘH`3Y\AIJfEmMAIacFjKB9(4NՊZ Ϝ-7nIvi%ճ%DdhatBY1D0*Oc0 K1/oE?:ڲ#T쁦> ax.Re"Lpҟk;vιM/8 To 垘kY~:V4픖;"!0ejn6%ZP֟#xy(zH)c΃ar2u $FB]8H5{[kw{7eGE!MxX^AKжHZS3x~'O,ENy}=#*eA½xUdnU71MZ;y5Ra[+Nl]; 8d9g>{oy9pQnzo586!(oHXGeM[><ުצ/?yNG(@TNБ*N16^1-& 1xb>"|qe0:,Rr%j\_ӍHݻoW+-o;r 7-O+֢'\Ed}h0xٳْ9;2YgDve=>گRn/F_L'R sRy-֗$rX4^]Im8#7j't ^BzE=`׫c2`FLCiFλ6Y=%xЕԩ_}yLhrp%Z-jQ)9{cYqO_ LESF-N\TDNZ<2E /@mѫiG[+S!|;A'ZgXYw ;&[b3p"@>(z:INU6LYw7`1LM5m$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"X5"NOTES$DRM_WIDGET_CREATE !" !#" \U Z hf TES$D NOTES$DRM_HELPshf<~TES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATEtDDH  ߀ ISO8859-1 OK  H  ߀ ISO8859-1OK_pb H !T ߀ ISO8859-1 Add MemberH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db1H D ID th8CONF_MEMBER_DELETE_DB chfnf\c ISO confNOTES$DRM_WIDGET_CREATE ;F XH  4 $IZ hfTE  RM_HENOTES$DRM_HELPu<v$MEMBER_DELETE_CANCL_PBVATDD_,MEMEMBER_DELETE_HELP_PBMEMBER_DELETE_CANCL_PBMEMBER_DELETE_APPLY_PBMEMBER_DELETE_OK_PBMEMBER_DELETE_MEMBER_TMEMBER_DELETE_MEMBER_LH   I 8MEMBER_DELETE_MEMBER_Lc A!A Z |hf HNOTES$DRM_HELPw$x_PB ro|@H D H ߀ ISO8859-1MemberH ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_delete_pb ISO8859-1 conf_member_delete_db ISO8859-1 member_delete_member_lH 0I t8MEMBER_DELETE_MEMBER_Tchfnf\9 ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf 859-1r_delNOTES$DRM_HELPy<hfHLR_DELNOTES$DRM_VALUE_CHANGED$MEMBER_DELETE_MEMBER_L$MEMBER_DELETE_MEMBER_LMEH X߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_delete_pb ISO8859-1 conf_member_delete_db ISO8859-1 member_delete_member_lH lIl p4MEMBER_DELETE_OK_PBhff_X:-1 NOTES$DRM_WIDGET_CREATE !" !#" \U Z onhfer 59-1NOTES$DRM_HELP_zhf<HNOTES$DRM_PUSHBUTTON_ACTIVATEAN{MEd_H <߀ ISO8859-1 OK H ߀ ISO8859-1OK_pbERH I t8MEMBER_DELETE_APPLY_PBhfX\; NOTENOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf feNOTES$DRM_HELP|_hf,fNOTES$DRM_PUSHBUTTON_ACTIVATEBU}AN!MEMBER_DELETE_OK_PBMBER_L߀H  ߀ ISO8859-1 Apply H ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_delete_pb ISO8859-1 conf_member_delete_db ISO8859-1 member_delete_apply_pb_H I 8MEMBER_DELETE_HELP_PB c!" $  U |hff_ ply_d ISO8NOTES$DRM_HELPmul$MEMBER_DELETE_CANCL_PB885GEH  I t8MEMBER_DELETE_CANCL_PBchf\<"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf MLETE_NOTES$DRM_HELP~e_hfpb,fNOTES$DRM_PUSHBUTTON_ACTIVATEBUAN$MEMBER_DELETE_APPLY_PBR_LH  ߀ ISO8859-1 Cancel ADDH  ߀ ISO8859-1 Cancel_pbS$H $ ߀  ISO8859-1 Delete MemberH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_delete_pb ISO8859-1 conf_member_delete_db ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pb ISO8859-1 conf_member_add_db ISO8859-1 member_add_mail_tbAH | I| t8MEMBER_ADD_AUTHORIZ_TBchfnf\. ISO confNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf_m db8859-NOTES$DRM_HELPmahf04|MEMBEIL_TBNOTES$DRM_VALUE_CHANGEDbMEMBER_ADD_MAIL_TLBILH $(߀  ISO8859-1 AuthorizationCro|AXD ?\ @Xt @< D C C B C B8 B 0 GH E0 d E8 G F G E E D D ( E@ D \ F(t E G G F0 F F  O  P8 4 P|P Pl P4 O0 P Ol P0 N O O $ O< O`8`,` _,`D`XT Q l Q Q, Q Q U S S$ S S U <W WtW XW W\$W $R <R$ U ( UTU@pTTLUU TxRR R@S8TPS hT T8T xDXEpEDD ED F(E G\GF0FF O P8 P|8PP4TO0POlP0 NOlO OOXQ pQQ,QQSS$dS |S R R$ lU@TTLUTx(RR @R@S4TLS T T8T xD'' l'`NOTE_EXTRACT_INCL_REPL_TBMBNOTE_EXTRACT_MARK_SEEN_TB_CNOTE_EXTRACT_OPTIONS_L_NOTE_EXTRACT_UNSEEN_TBNOTE_EXTRACT_TITLE_TEMBNOTE_EXTRACT_TITLE_TB_ANOTE_EXTRACT_KEYWORD_TANOTE_EXTRACT_KEYWORD_TBNOTE_EXTRACT_SINCE_TD_MNOTE_EXTRACT_SINCE_TBL_NOTE_EXTRACT_BEFORE_TTNOTE_EXTRACT_BEFORE_TBKNOTE_EXTRACT_AUTHOR_TRKNOTE_EXTRACT_AUTHOR_TBKNOTE_EXTRACT_SELECTION_LR_DNOTE_EXTRACT_FILESPEC_TNOTE_EXTRACT_FILESPEC_LNOTE_EXTRACT_RANGE_TR_DNOTE_EXTRACT_RANGE_LR_DNOTE_EXTRACT_RANGE_TB_DNOTE_DELETE_CANCL_PBR_DNOTE_DELETE_HELP_PBNOTE_DELETE_OK_PBRKNOTE_DELETE_NOTEID_TARKNOTE_DELETE_NOTEID_LARKNOTE_CREATE_OK_PBRKNOTE_CREATE_CANCL_PBR_ANOTE_CREATE_HELP_PBNOTE_CREATE_LAST_TBNOTE_CREATE_CONFERENCE_TTEINOTE_CREATE_CONFERENCE_TBRKNOTE_CREATE_HIDDEN_TBOTNOTE_CREATE_REPLIES_TBTNOTE_CREATE_ATTRIB_LNOTNOTE_CREATE_NOTEID_TEADNOTE_CREATE_TOPIC_TBMAINOTE_CREATE_REPLY_TBOTENOTE_CREATE_OPERATION_RB_PBNOTE_CREATE_OPERATION_LMEMBER_MODIFY_OK_PBMEMBER_MODIFY_CANCL_PBTMEMBER_MODIFY_HELP_PBADMEMBER_MODIFY_SHOW_PBADMEMBER_MODIFY_APPLY_PBDMODINOTE_DDIF_PRINT_OK_PBDINOTE_DDIF_PRINT_CANCL_PBODINOTE_DDIF_PRINT_HELP_PBNOTE_DDIF_PRINT_WIDGT_PBR_MNOTE_DDIF_PRINT_LMBNOTE_DDIF_PRINT_NBR_LMBNOTE_EXTRACT_DDIF_OK_PBNOTE_EXTRACT_DDIF_CANL_PB_NOTE_EXTRACT_DDIF_HELP_PBMBNOTE_EXTRACT_DDIF_FILE_TR_MNOTE_EXTRACT_DDIF_FILE_LDIFNOTE_EXTRACT_DDIF_NOTE_NBR_T_MENOTE_EXTRACT_OK_PBFNOTE_EXTRACT_CANCL_PBPLNOTE_EXTRACT_HELP_PBSPLNOTE_EXTRACT_APPEND_TBLNOTE_EXTRACT_INCL_HEAD_TBHEMEMBER_DELETE_MEMBER_LNMEMBER_DELETE_MEMBER_TLMEMBER_DELETE_OK_PBMEMBER_DISPLY_APPLY_PBPMEMBER_DISPLY_CANCL_PB_MEMBER_DISPLY_HELP_PBPMEMBER_DISPLY_INFO_LAINMEMBER_DISPLY_INFO_UDPDMEMBER_DISPLY_MEMBER_LEMEMBER_DISPLY_MEMBER_TLMEMBER_MODIFY_APPLY_PBLMEMBER_MODIFY_AUTHORIZ_T_OVMEMBER_MODIFY_AUTHORIZ_TBR_MEMBER_MODIFY_CANCL_PBNMEMBER_MODIFY_GRANT_LSPMEMBER_MODIFY_HELP_PBBMEMBER_MODIFY_MAIL_T_TMEMBER_MODIFY_MAIL_TB_EMEMBER_MODIFY_MEMBER_L_MEMBER_MODIFY_MEMBER_TOMEMBER_MODIFY_NEWNAME_TMEMBER_MODIFY_NEWNAME_TBSPMEMBER_MODIFY_NODES_TOPMEMBER_MODIFY_NODES_TBEMEMBER_MODIFY_OK_PBMEMBER_MODIFY_SHOW_PBORMODIFY_ACT_MODERATOR_TBMODIFY_CREATE_KEYWORD_TB$OKMODI6$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"FY_WRITEBYPASS_TBLYNOTE_CREATE_ATTRIB_LPBNOTE_CREATE_CANCL_PBARKNOTE_CREATE_CONFERENCE_TD_MNOTE_CREATE_CONFERENCE_TBLNOTE_CREATE_HELP_PBNOTE_CREATE_HIDDEN_TBRKNOTE_CREATE_LAST_TBNOTE_CREATE_NOTEID_TBLNOTE_CREATE_OK_PB_PNOTE_CREATE_OPERATION_LNOTE_CREATE_OPERATION_RBTFNOTE_CREATE_REPLIES_TBKNOTE_CREATE_REPLY_TBARKNOTE_CREATE_TOPIC_TBARKNOTE_DELETE_CANCL_PBARKNOTE_DELETE_HELP_PBNOTE_DELETE_NOTEID_L_TNOTE_DELETE_NOTEID_TLENOTE_DELETE_OK_PBERNOTE_EXTRACT_AUTHOR_TBNOTE_EXTRACT_AUTHOR_TBYNOTE_EXTRACT_BEFORE_TMNOTE_EXTRACT_BEFORE_TBBNOTE_EXTRACT_FILESPEC_LNOTE_EXTRACT_FILESPEC_TNOTE_EXTRACT_INCL_REPL_TBFNOTE_EXTRACT_KEYWORD_TBNOTE_EXTRACT_KEYWORD_TBNOTE_EXTRACT_MARK_SEEN_TBESNOTE_EXTRACT_OPTIONS_LPNOTE_EXTRACT_RANGE_LBPNOTE_EXTRACT_RANGE_TBPNOTE_EXTRACT_RANGE_TBUPNOTE_EXTRACT_SELECTION_LTTRNOTE_EXTRACT_SINCE_TANCNOTE_EXTRACT_SINCE_TBTNOTE_EXTRACT_TITLE_TW_RNOTE_EXTRACT_TITLE_TBTENOTE_EXTRACT_UNSEEN_TBNOTE_MAIL_AUTHOR_TBNOTE_MAIL_CANCL_PBNOTE_MAIL_FORWARD_TBl ro|B4H $I$ t8CONF_MEMBER_DISPLY_DB chfnf\d ISO confNOTES$DRM_WIDGET_CREATE ;F H  d @ 0IZ TEhfHE pbNOTES$DRM_HELPTEON$MEMBER_DISPLY_APPLY_PB$MEMBER_DISPLY_CANCL_PBEL E__ MHMCMAlMTO<_$MEMBER_DISPLY_INFO_UDMEMEMBER_DISPLY_HELP_PBMEMBER_DISPLY_CANCL_PBECONF_MEMBER_MODIFY_PBMBCONF_MEMBER_DELETE_PB_ACONF_MEMBER_ADD_PBTMEMBER_DISPLY_APPLY_PBKMEMBER_DISPLY_INFO_LODEDISPLY_OPTIONS_RB_AMEMBER_DISPLY_MEMBER_TNMEMBER_DISPLY_MEMBER_LSSOH  I 8MEMBER_DISPLY_MEMBER_Lc A!A Z |hf HNOTES$DRM_HELP@H 8߀ ISO8859-1MemberTH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 member_disply_member_lVH dLId t8MEMBER_DISPLY_MEMBER_Tchfnf\> ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z Ihf TEhf NOTES$DRM_HELPHE$MEMBER_DISPLY_MEMBER_LON$MEMBER_DISPLY_MEMBER_LddH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 member_disply_member_lH dId 4DISPLY_OPTIONS_RB-1 ;F  A!"C /Z hfO8 mber_emberNOTES$DRM_HELPf$MEMBER_DISPLY_MEMBER_TOTEHLM0DISPLY_ONLY_MODERATORS_TBMEDISPLY_ALL_MEMBERS_TBNOH lI t8DISPLY_ALL_MEMBERS_TBhf\? ANOTES$DRM_WIDGET_CREATE< Z fhf _rNOTENOTES$DRM_HELPIShH "߀ ISO8859-1 All MembersH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 disply_all_members_tbNOH  I x<DISPLY_ONLY_MODERATORS_TBf_hfde`@O8859f_conNOTES$DRM_WIDGET_CREATE< <Z hf_a _tbRM_HENOTES$DRM_HELP_TH & ߀" ISO8859-1Only ModeratorsH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 disply_only_moderators_tbISH 8 ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 disply_options_rbH   I 8MEMBER_DISPLY_INFO_L c A!C B"  Z hf 9-1optioNOTES$DRM_HELPDRDISPLY_OPTIONS_RBELH * ߀& ISO8859-1Member Information:MEMBER_DELETE_MEMBER_Lc A!A Z |hf HNOTES$DRM_HELPw$x_PB ro|C H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 member_disply_info_ll H |I| p4CONF_MEMBER_ADD_PB1hff_X*-1 NOTES$DRM_WIDGET_CREATE!" $ X HU Z Ehf DRNOTES$DRM_HELPYhf(zHMNOTES$DRM_PUSHBUTTON_ACTIVATE_T_M$MEMBER_DISPLY_APPLY_PBLY_ H ߀ ISO8859-1Add...H d߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_add_pbH |I| t8CONF_MEMBER_DELETE_PB chfnf\8 ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z fhf NOTENOTES$DRM_HELPfhf(,HNOTENOTES$DRM_PUSHBUTTON_ACTIVATE CONF_MEMBER_ADD_PBLY_RKH  d߀ ISO8859-1 Delete..._DH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_delete_pbP_H (I t8CONF_MEMBER_MODIFY_PB chfnf\C ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z fhf NOTENOTES$DRM_HELPfhf(,HNOTENOTES$DRM_PUSHBUTTON_ACTIVATE#CONF_MEMBER_DELETE_PBCANCOTH  ߀ ISO8859-1 Modify...ADH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pbSEH I 8MEMBER_DISPLY_HELP_PB c!" $  U |hff_ ply_d ISO8NOTES$DRM_HELPml$MEMBER_DISPLY_CANCL_PB_HEAIH 4I4 t8MEMBER_DISPLY_INFO_UD chf\!"NOTES$DRM_WIDGET_CREATE;F $ A!" 34 C \ 8M N Q S DP R O hf_NOTES$DW_SVN_ENTRY_SELECTEDhfMCNOTES$DW_SVN_HELPMhf(_MEMBNOTES$DW_SVN_SEL_CONFIRMEDDhfHEhMBER_ANCL_NOTES$DW_SVN_SEL_CONFIRMEDBhfEM_PB_MBER_NOTES$DW_SVN_GET_ENTRYPhfKPLY_IEDISPNOTES$DW_SVN_DETACHED_DhfME MBER_EMBERNOTES$DW_SVN_ATTACHEDHO$MEMBER_DISPLY_APPLY_PBEMB"MEMBER_DISPLY_INFO_L_TBtreeArcWidthMBEtreePerpendicularLinestreeIndexAllAlltreeCenteredComponentsntreeStyleylforceSeqGetEntrytryuseScrollButtonsonsexpectHighlightingidisplayModeK_H 7m$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;19b" I t8MEMBER_DISPLY_CANCL_PBchf\B"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NOTES$DRM_HELPhf ,4NOTES$DRM_PUSHBUTTON_ACTIVATE#CONF_MEMBER_MODIFY_PBOTH  ߀ ISO8859-1 Cancel _SEH  |߀ ISO8859-1 Cancel_pbCT_CONF_PBi ro|DH pIp t8MEMBER_DISPLY_APPLY_PBchf\A"NOTES$DRM_WIDGET_CREATE !" !#" `U Z hf TES$DNOTES$DRM_HELPhf@TES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATEBEH ߀ ISO8859-1 Apply H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 member_disply_apply_pbH &߀" ISO8859-1Display MembersH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_dbeH XIX t8CONF_MEMBER_MODIFY_DB chfnf\e ISO confNOTES$DRM_WIDGET_CREATE ;F H  d @ 0KIZ TEhf TES$DNOTES$DRM_HELPTEON!MEMBER_MODIFY_OK_PB$MEMBER_MODIFY_CANCL_PB_@(V EMCDMt(\_DM,VRHMDOMEMBER_MODIFY_HELP_PB_MEMBER_MODIFY_CANCL_PBNMEMBER_MODIFY_SHOW_PBMEMBER_MODIFY_APPLY_PBPMEMBER_MODIFY_OK_PBMODIFY_WRITEBYPASS_TBMBMODIFY_CREATE_KEYWORD_TBSVNMODIFY_ACT_MODERATOR_TBMEMBER_MODIFY_GRANT_LMBMEMBER_MODIFY_NODES_TY_MEMBER_MODIFY_NODES_TBhMEMBER_MODIFY_AUTHORIZ_TsMEMBER_MODIFY_AUTHORIZ_TBedMEMBER_MODIFY_MAIL_TylMEMBER_MODIFY_MAIL_TBeSMEMBER_MODIFY_NEWNAME_TMEMBER_MODIFY_NEWNAME_TBMEMBER_MODIFY_MEMBER_TRMEMBER_MODIFY_MEMBER_LO-1H  lI 8MEMBER_MODIFY_MEMBER_Lc A!A Z |hf HNOTES$DRM_HELP@ IH ߀ ISO8859-1Member-H ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_member_l5GEH I t8MEMBER_MODIFY_MEMBER_Tchfnf\D ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf 859-1r_modNOTES$DRM_HELPEhfHNNOTES$DRM_VALUE_CHANGED$MEMBER_MODIFY_MEMBER_L_PB$MEMBER_MODIFY_MEMBER_L CH  ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_member_l ISH  I x<MEMBER_MODIFY_NEWNAME_TBnf_hfde`EO8859f_conNOTES$DRM_WIDGET_CREATE<A!"C ` P` Z hfme y_dbSO885NOTES$DRM_HELPdEhf8fNOTES$DRM_VALUE_CHANGEDD$MEMBER_MODIFY_MEMBER_T_PBH & ߀" ISO8859-1New Member NameH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_newname_tbCro|Et@H lIl t8MEMBER_MODIFY_NEWNAME_Thfnf\F ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C D$ Z mehfod  I meNOTES$DRM_HELPn&MEMBER_MODIFY_NEWNAME_TBRM_VA&MEMBER_MODIFY_NEWNAME_TBMEH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_newname_tbEH I t8MEMBER_MODIFY_MAIL_TB chfnf\G ISO confNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hfon odify ISNOTES$DRM_HELPre_hf4MDIFY_NOTES$DRM_VALUE_CHANGEDY_%MEMBER_MODIFY_NEWNAME_T_T_PB-1H #߀ ISO8859-1 Mail AddressonfH @߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_mail_tbH dxId t8MEMBER_MODIFY_MAIL_T chfnf\H ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z mehfod  I meNOTES$DRM_HELPl4#MEMBER_MODIFY_MAIL_TBM_VA#MEMBER_MODIFY_MAIL_TB_pH ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_mail_tbH I x<MEMBER_MODIFY_AUTHORIZ_TBf_hfde`IO8859f_conNOTES$DRM_WIDGET_CREATE<A!"C ` P` Z hfme y_dbSO885NOTES$DRM_HELPdhf48MEMBE_MAILNOTES$DRM_VALUE_CHANGEDB"MEMBER_MODIFY_MAIL_TT_PBH $8߀  ISO8859-1 Authorization88H  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_authoriz_tbH p Ip x<MEMBER_MODIFY_AUTHORIZ_Tnf_hfde`JO8859f_conNOTES$DRM_WIDGET_CREATE 6AB!" 3C H$ Z erhfy_ ISO88emberNOTES$DRM_HELPz8'MEMBER_MODIFY_AUTHORIZ_TBLUE_'MEMBER_MODIFY_AUTHORIZ_TBMBER_pH 0 ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_authoriz_tbH  I t8MEMBER_MODIFY_NODES_TBchfnf\K ISO confNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hfon odify ISNOTES$DRM_HELPrizhf4R_MODNOTES$DRM_VALUE_CHANGEDOD&MEMBER_MODIFY_AUTHORIZ_TT_PBH * ߀& ISO8859-1Authorization NodesNOTES$DRM_HELPw$x_PB 8_$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1")ro|FH lH ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_nodes_tbH dId t8MEMBER_MODIFY_NODES_T chfnf\L ISO confNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z mehfod  I meNOTES$DRM_HELPe4$MEMBER_MODIFY_NODES_TB_VA$MEMBER_MODIFY_NODES_TBH (߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_nodes_tbH  I 8MEMBER_MODIFY_GRANT_L c A!C  Z |hff_ ply_d ISO8NOTES$DRM_HELPm#MEMBER_MODIFY_NODES_TO885H )߀% ISO8859-1Member Privileges:H ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_grant_lH D ID t8MODIFY_ACT_MODERATOR_TBhfnf\M ISO confNOTES$DRM_WIDGET_CREATE<A!"C  <Z hfon odify ISNOTES$DRM_HELPrl#MEMBER_MODIFY_GRANT_L$_PH '0߀# ISO8859-1Act as ModeratorADH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 modify_act_moderator_tb!H LIL x<MODIFY_CREATE_KEYWORD_TBnf_hfde`NO8859f_conNOTES$DRM_WIDGET_CREATE<A!"C $ <Z hfme y_dbSO885NOTES$DRM_HELPt%MODIFY_ACT_MODERATOR_TBMEH *߀& ISO8859-1Create New KeywordsH L ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 modify_create_keyword_tbHH H IH t8MODIFY_WRITEBYPASS_TB chfnf\O ISO confNOTES$DRM_WIDGET_CREATE<A!"C  <Z hfon odify ISNOTES$DRM_HELPyd_&MODIFY_CREATE_KEYWORD_TBTBEH ' ߀# ISO8859-1Write RegardlessePeH  ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 modify_writebypass_tbE!" $ \ LU Z hf NOTES$DRM_HELPhf ,4NOTES$DRM_PUSHBUTTON_ACTIVATE#CONF_MEMBER_MODIFY_PBOTH  ߀ ISO8859-1 Cancel _SEH  |߀ ISO8859-1 Cancel_pbCT_CONF_PBi ro|GH I t8MEMBER_MODIFY_APPLY_PBchfnf\Q ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf59 membe_dbNOTES$DRM_HELPbyhfb,MONOTES$DRM_PUSHBUTTON_ACTIVATEMEDE!MEMBER_MODIFY_OK_PBIZ_TT H ߀ ISO8859-1 Apply H ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_apply_pb H I t8MEMBER_MODIFY_SHOW_PB chfnf\R ISO confNOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf59 membe_dbNOTES$DRM_HELPy_hfpb,MONOTES$DRM_PUSHBUTTON_ACTIVATEMEDE$MEMBER_MODIFY_APPLY_PBTTD_H ߀ ISO8859-1 Show _H ߀  ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_db ISO8859-1 member_modify_show_pbH I 8MEMBER_MODIFY_HELP_PB c!" $  U |hff_ ply_d ISO8NOTES$DRM_HELPml$MEMBER_MODIFY_CANCL_PB885TTH I t8MEMBER_MODIFY_CANCL_PBchf\S"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf MDIFY_NOTES$DRM_HELPy_hfb,MONOTES$DRM_PUSHBUTTON_ACTIVATEMEDE#MEMBER_MODIFY_SHOW_PBTTILH ߀ ISO8859-1 Cancel BEFH  p߀ ISO8859-1 Cancel_pbR_H lIl p4MEMBER_MODIFY_OK_PBhffXPS"NOTES$DRM_WIDGET_CREATE !" !#" \U Z hfM Y_NOTELPNOTES$DRM_HELP_hf<MONOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATEDEERPBH ߀ ISO8859-1 OK FILH X ߀ ISO8859-1OK_pbINH $ ߀  ISO8859-1 Modify Member_PH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 conf_conf_member_pb ISO8859-1 conf_member_disply_db ISO8859-1 conf_member_modify_pb ISO8859-1 conf_member_modify_dbZH  4 I4 h ,CONF_POPUPIhf-1Pnf_pd ISO8NOTES$DRM_WIDGET_CREATE;F ( Z hfO8 nf_meify_pNOTES$DRM_HELP9er CONF_POPUP_NOTE_PBOTE<TBPCEtCONF_POPUP_CLOSE_CONF_PBMEMAIN_SEPARATOR_SP_LCONF_POPUP_PRINT_PBCONF_POPUP_CREA_TOPIC_PBMMAIN_SEPARATOR_SPCONF_POPUP_NOTE_PBCONF_POPUP_READ_IN_NEW_PBCONF_POPUP_NEXT_UNSEEN_PBVTRH l Il x<CONF_POPUP_NEXT_UNSEEN_PBhfd`UO8NOTIDGETNOTES$DRM_WIDGET_CREATE* \ L <U Z hf_p HELPNOTES$DRM_HELPOPBhfNOTES$DRM_PUSHBUTTON_ACTIVATEB=ETEH "8߀ ISO8859-1 Next Unseen_CRro|HH @H  0xFFAC:H N߀J ISO8859-1 conf_popup ISO8859-1 conf_popup_next_unseen_pbH P IP x<CONF_POPUP_READ_IN_NEW_PBuphfun`VO8NOTIDGETNOTES$DRM_WIDGET_CREATE* @ 0U Z hf _pELPNOTES$DRM_HELPEhfNOTES$DRM_PUSHBUTTON_ACTIVATEON85H 9$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1{":)߀% ISO8859-1Read in New WindowsH N߀J ISO8859-1 conf_popup ISO8859-1 conf_popup_read_in_new_pbH P IP x<CONF_POPUP_CREA_TOPIC_PBpuphfin`XO8NOTIDGETNOTES$DRM_WIDGET_CREATE* @ 0U Z hf _pELPNOTES$DRM_HELPEhfNOTES$DRM_PUSHBUTTON_ACTIVATEONSH #߀ ISO8859-1 Create Topic鮈H M߀I ISO8859-1 conf_popup ISO8859-1 conf_popup_crea_topic_pb H HIH p4CONF_POPUP_PRINT_PBhfupXYc_pbNOTES$DRM_WIDGET_CREATE* 8 (U Z hf NOTES$DRM_HELPRhfNOTES$DRM_PUSHBUTTON_ACTIVATECTFODH |߀ ISO8859-1PrintcoH H߀D ISO8859-1 conf_popup ISO8859-1 conf_popup_print_pbH PIP x<CONF_POPUP_CLOSE_CONF_PBpuphf_p`ZES$DRNOTES$DRM_WIDGET_CREATE* @ 0U Z hf ES$DRNOTES$DRM_HELPhfES$DRNOTES$DRM_PUSHBUTTON_ACTIVATE`85H 'd߀# ISO8859-1Close Conferencer_mH M߀I ISO8859-1 conf_popup ISO8859-1 conf_popup_close_conf_pbH dId p4CONF_POPUP_NOTE_PBohfupXWf_pbNOTES$DRM_WIDGET_CREATE* T D 4U Z fhf RNOTENOTES$DRM_HELPfhfRNOTENOTES$DRM_PUSHBUTTON_ACTIVATEH !d߀ ISO8859-1 Note-id...H  Ctrln: H G ߀C ISO8859-1 conf_popup ISO8859-1 conf_popup_note_pbH !0 ߀ ISO8859-1 conf_popupH   I ,READ_WINDOW;F %Z \hfWI E TNOTES$DRM_HELPfREAD_MENU_PANEREAD_MENU_BARf6H  p Ip 0READ_MENU_BAR;F -' Z lhf TNOTELPNOTES$DRM_HELPfMAIN_HELP_PDEPAE`fP@0T MAIN_HELP_PDEATREAD_NOTE_PDEREAD_CONF_PDEREAD_EDIT_PDEREAD_FILE_PDEonH T IT 0READ_FILE_PDE@ 8;F ( *  W Z hf HELPNOTES$DRM_HELPAhf`NOTES$DRM_MENU_PULLINGTELOTREAD_FILE_PDMREADZ hfon odify ISNOTES$DRM_HELPrizhf4R_MODNOTES$DRM_VALUE_CHANGEDOD&MEMBER_MODIFY_AUTHORIZ_TT_PBH * ߀& ISO8859-1Authorization NodesNOTES$DRM_HELPw$x_PB ro|IM J q$ q > >< ?  + %@ % 4 % H '` /t % % %X D $  $| $ $, 1@ 5T 28l 6 3 6t 5D 7 6 8  ; $ :< <T ;8l = C ? Cd B Dl C $ 0 4 0 L / h 0 | / /  0D 0 0d//l,0H'0XG H Hdx HdG84 Hdd H|H+%#T t H8d T|pt ,d.$ x.$4-H- +T +  +T. .-8 - +\, p,| -h --x BB 8Bl @   4  H \ p `     8  # " 0 "H "|` "dx " " ! ! T H 04 L L h!  t !!! !4 L@ d| HCONF_CONCONF_POPUP_READ_IN_NEW_PBDICONF_POPUP_NEXT_UNSEEN_PBAPCONF_POPUPDCONF_MEMBER_MODIFY_DBNFCONF_MEMBER_MODIFY_PBCLCONF_MEMBER_DELETE_PBJECONF_MEMBER_ADD_PBFDISPLY_ONLY_MODERATORS_TBINDISPLY_ALL_MEMBERS_TBDEDISPLY_OPTIONS_RBTRCONF_MEMBER_DISPLY_DBTRCONF_MEMBER_DELETE_DBDEADD_WRITEBYPASS_TBRADD_CREATE_KEYWORD_TBTRADD_ACT_MODERATOR_TBNTRCONF_MEMBER_ADD_DBCONF_MARKER_DELETE_PBJECONF_MARKER_ADD_PBECONF_MARKER_DISPLY_DB_ACONF_MARKER_DELETE_DB_FCONF_MARKER_ADD_DBBCONF_KEYWORD_MODIFY_DBPCONF_KEYWORD_MODIFY_PB_CONF_KEYWORD_DELETE_PB_CONF_KEYWORD_CREATE_PBECONF_KEYWORD_ADD_PBCONF_KEYWORD_DISPLY_DBYCONF_KEYWORD_DELETE_DBYCONF_KEYWORD_CREATE_DBYCONF_KEYWORD_ADD_DBCONF_MODIFY_APPLY_PBIFYCONF_MODIFY_CANCL_PBIFYCONF_MODIFY_HELP_PBCONF_MODIFY_REPLY_ONLY_TBTECONF_MODIFY_RESTR_KEY_TBL_PCONF_MODIFY_RESTR_MEM_TBP_PCONF_MODIFY_WRITE_ALL_TB_UPCONF_MODIFY_CONF_ATTRIB_LTECONF_MODIFY_NOTICE_TATECONF_MODIFY_NOTICE_TBTECONF_MODIFY_TITLE_TCONF_MODIFY_TITLE_TB_ADCONF_CONF_MODIFY_DBDIR_NOTE_OK_PBDDIR_NOTE_CANCL_PBADDIR_NOTE_HELP_PB_ADDIR_NOTE_APPLY_PBADDIR_NOTE_ALL_REPLIES_TBDIR_NOTE_OPTIONS_LNDIR_NOTE_UNSEEN_NOTE_TBDIR_NOTE_SEARCH_TSPDIR_NOTE_SEARCH_TBIDIR_NOTE_TITLE_TENTDIR_NOTE_TITLE_TBIZDIR_NOTE_KEYWORD_TTDIR_NOTE_KEYWORD_TBDIR_NOTE_SINCE_TFILDIR_NOTE_SINCE_TBIZDIR_NOTE_BEFORE_TTODIR_NOTE_BEFORE_TBNDIR_NOTE_AUTHOR_TPRDIR_NOTE_AUTHOR_TBTDIR_NOTE_SELECTION_LK_PDIR_NOTE_NOTERANGE_T_TDIR_NOTE_NOTERANGE_L>ClassTable>ResourceTable_CONF_POPUP_NOTE_PB_CONF_POPUP_CLOSE_CONF_PBNOTCONF_POPUP_PRINT_PBCONF_POPUP_CREA_TOPIC_PBIFYADD_ACT_MODERATOR_TBAINADD_CREATE_KEYWORD_TBBADD_WRITEBYPASS_TBECONF_CONF_DIRECTORY_DBECONF_CONF_DIRECTORY_PBECONF_CONF_KEYWORD_PBMAICONF_CONF_MARKER_PBCONF_CONF_MEMBER_PBCONF_CONF_MODERATE_PBTOCONF_CONF_MODIFY_DBCONF_CONF_MODIFY_PBCONF_CONF_PDEJECONF_CONF_PDMBCONF_DISABLE_MODERATOR_PB$LABELCONF_EDIT_PDE_ACONF_ENABLE_MODERATOR_PB$LABELJCONF_FILE_CLOSE_PBCONF_FILE_PDEECCONF_FILE_PDM_OCONF_KEYWORD_ADD_DBCONF_KEYWORD_ADD_PBCONF_KEYWORD_CREATE_DBDCONF_KEYWORD_CREATE_PBDCONF_KEYWORD_DELETE_DBDCONF_KEYWORD_DELETE_PBDCONF_KEYWORD_DISPLY_DBLCONF_KEYWORD_MODIFY_DBLCONF_KEYWORD_MODIFY_PBLCONF_MARKER_ADD_DBDCONF_MARKER_ADD_PBECONF_MARKER_DELETE_DBJECONF_MARKER_DELETE_PBJECONF_MARKER_DISPLY_DBJECONF_MEMBER_ADD_DBECONF_MEMBER_ADD_PB_CONF_MEMBER_DELETE_DB_LCONF_MEMBER_DELETE_PB_TCONF_MEMBER_DISPLY_DB_PCONF_MEMBER_MODIFY_DBCTCONF_MEMBER_MODIFY_PBCTCONF_MENU_BARIFCONF_MODIFY_APPLY_PB_SHCONF_MODIFY_CANCL_PBRACCONF_MODIFY_CONF_ATTRIB_LBCONF_MODIFY_HELP_PBCONF_MODIFY_NOTICE_TEADCONF_MODIFY_NOTICE_TBADCONF_MODIFY_REPLY_ONLY_TBOTCONF_MODIFY_RESTR_KEY_TB_UCONF_MODIFY_RESTR_MEM_TBICONF_MODIFY_TITLE_TCONF_MODIFY_TITLE_TBD_BCONF_MODIFY_WRITE_ALL_TBCK_CONF_NOTE_PDERECONF_POPUPBCONF_POPUP_NEXT_UNSEEN_PBPBCONF_POPUP_READ_IN_NEW_PBPBCONF_SVN_WINDOWCONF_VIEW_PDEBCONF_WINDOWCUSTOMIZE_PROFILE_AUTO_L_RECUSTOMIZE_PROFILE_CANL_PB_NCUSTOMIZE_PROFILE_CLASS_LT_CUSTOMIZE_PROFILE_CLASS_TT_CUSTOMIZE_PROFILE_DIR_TBXT_CUSTOMIZE_PROFILE_HELP_PBEICUSTOMIZE_PROFILE_OK_PBCUSTOMIZE_PROFILE_PEN_LCUSTOMIZE_PROFILE_PEN_TCUSTOMIZE_PROFILE_SHOW_RBADCUSTOMIZE_PROFILE_TEMP_TBORro|J$PH lIl 0\READ_FILE_PDM;F LXDZ,fTCONF_FILE_CLOSE_PBREAD_FILE_DISMISS_PBMAIN_SEPARATOR_SPLIREAD_FILE_PRINT2_PBREAD_FILE_PRINT1_PBREAD_FILE_EXTRACT_PBREMAIN_SEPARATOR_SPDIMAIN_FILE_MAIL_PBPD_MH LIL t8READ_FILE_DISMISS_PBhf\\NOTES$DRM_WIDGET_CREATE* < ,U Z hf CONFNOTES$DRM_HELPIShf ATOR_D_FILNOTES$DRM_PUSHBUTTON_ACTIVATEBACPEPapH #߀ ISO8859-1 Close WindowH m߀i ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_dismiss_pbH ߀ ISO8859-1FileH E߀A ISO8859-1 re:0$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;11"Kad_menu_bar ISO8859-1 read_file_pdeH TIT 0READ_EDIT_PDE59@ 8;F ( *  W Z hf Z NOTES$DRM_HELPTEhfHENOTES$DRM_MENU_PULLINGDPUATMAIN_EDIT_PDMOR_S IH  ߀ ISO8859-1Edit59-H E߀A ISO8859-1 read_menu_bar ISO8859-1 read_edit_pdeDH TIT 0READ_CONF_PDE59@ 8;F ( *  W Z hf Z NOTES$DRM_HELPTEhfHENOTES$DRM_MENU_PULLINGDPU ATCONF_CONF_PDMOR_SH !߀ ISO8859-1 ConferenceH Ex߀A ISO8859-1 read_menu_bar ISO8859-1 read_conf_pdeH TIT 0READ_NOTE_PDE59@ 8;F ( *  W Z hf Z NOTES$DRM_HELPTEhfHENOTES$DRM_MENU_PULLINGDPUATREAD_NOTE_PDMOR_SH ߀ ISO8859-1NotesH El ߀A ISO8859-1 read_menu_bar ISO8859-1 read_note_pdeH $ ߀  ISO8859-1 read_menu_barS$H   I 0READ_MENU_PANE9;F Z X hf|  NOTES$DRM_HELPZTEHREAD_WORK_DBREAD_WORK_HEADERH l, Il 4$READ_WORK_HEADER ;F 1E H1Z hf READNOTES$DRM_HELPD$READ_WORK_NEXT_PAGE_PB ATXD_0_IPNSMAREAD_WORK_ATTRIB_TREAD_WORK_AUTHOR_TIREAD_WORK_DATE_LRATREAD_WORK_DATE_TP_NREAD_WORK_AUTHOR_LRREAD_WORK_TITLE_TNFREAD_WORK_TITLE_L_PREAD_WORK_NOFN_LREAD_WORK_NOTEID_TREAD_WORK_NOTEID_LUPH  (0 I( p4READ_WORK_NOTEID_LhfX^F NOTES$DRM_WIDGET_CREATE A!!"AB Z TEhfHE NOTES$DRM_HELPTATH # ߀ ISO8859-1 Note 1234.99NOH h߀d ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_noteid_l=ETEH "8߀ ISO8859-1 Next Unseen_CRro|KDH I p4READ_WORK_NOTEID_TrhfrkX_ ISO8read_NOTES$DRM_WIDGET_CREATE;6E!$ t"AC TB=Z hf4 DANOTES$DRM_HELP_ READ_WORK_NOTEID_L READ_WORK_NOTEID_LH h߀d ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_noteid_lpH  <I< p4READ_WORK_NOFN_L rhfrkXa ISO8read_NOTES$DRM_WIDGET_CREATE AC B34 Z hf CNOTES$DRM_HELP4 READ_WORK_NOTEID_L$DRD_H !$߀ ISO8859-1 No RepliesDH ft߀b ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_nofn_lH  @I@ 4READ_WORK_TITLE_L r A!AC B!$ " Z 4hf Z NOTES$DRM_HELPTE READ_WORK_NOTEID_T READ_WORK_NOTEID_L_HE_H  ߀ ISO8859-1Topic:EH gt߀c ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_title_lFY_H TIT p4READ_WORK_TITLE_T rhfrkX` ISO8read_NOTES$DRM_WIDGET_CREATE;6E!$ 4"AC B35 4=Y \ Z @hfd t_ EAD_WNOTES$DRM_HELP_WhfTE`AREADNOTES$DRM_LOST_FOCUSWORhfOR`ORK_DTREADNOTES$DRM_FOCUSREAD_WORK_NOFN_LRK_TI READ_WORK_NOTEID_LEAD READ_WORK_NOTEID_LEIDR_H g ߀c ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_title_l_TH  I 4READ_WORK_AUTHOR_Lr A!C  Z xhf NOTES$DRM_HELP READ_WORK_NOTEID_T _PH  ߀ ISO8859-1Author:H h ߀d ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_author_lTEH 4 I p4READ_WORK_DATE_T rhfrkXd ISO8read_NOTES$DRM_WIDGET_CREATE;6EAC B34D=Y \ pZ ,hfP `hf tNOTES$DRM_HELPEHEhfd_Whf`NOTES$DRM_LOST_FOCUSOTEhfLOdORhf`NOTES$DRM_FOCUS READ_WORK_NOTEID_TRE_PH f ߀b ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_date_lH  < I< p4READ_WORK_DATE_L rhfrkXc ISO8read_NOTES$DRM_WIDGET_CREATE AC B34d Z hf 3NOTES$DRM_HELPREAD_WORK_TITLE_T `FYH .< ߀* ISO8859-131-DEC-1992 23:59:59.99H f߀b ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_date_lSS_TUSTENTRY_UPDATE_CLASS_TBT_ENTRY_UPDATE_ENTRY_TSS_ENTRY_UPDATE_ENTRY_TBDIENTRY_UPDATE_HELP_PBFILENTRY_UPDATE_OK_PBZFILE_CREATE_ATTRIBUTE_LFILE_CREATE_CANCL_PBMIZro|L t 0H  I  p4READ_WORK_AUTHOR_TrhfrkXb ISO8read_NOTES$DRM_WIDGET_CREATE;6E!AC B35 4=Y \ pZ ,hfTLP `hf tNOTES$DRM_HELPEHEhfb_Whf`NOTES$DRM_LOST_FOCUSOTEhfLObORhf`NOTES$DRM_FOCUSREAD_WORK_DATE_LTREREAD_WORK_TITLE_TREH h߀d ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_author_l"H 4I p4READ_WORK_ATTRIB_TrhfrkXe ISO8read_NOTES$DRM_WIDGET_CREATE;E!"AC 34D02JY \ Z @hfd tTES$DENOTES$DRM_HELP_WhfeTES$DFOCUSNOTES$DRM_LOST_FOCUSORhfeTES$DNOTES$DRM_FOCUS READ_WORK_AUTHOR_TRK_NFH h߀d ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_attrib_lODH  I  t8READ_WORK_NEXT_PAGE_PB_hfb\q8859-_workNOTES$DRM_WIDGET_CREATE!";zut$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"\ AC B$ "  EU XZ hf8 H ZNOTES$DRM_HELPDhfE|DRM_HNOTES$DRM_PUSHBUTTON_ACTIVATED'READ_WORK_CREATE_REPLY_PBhfREAD_WORK_PAGE_PB'READ_WORK_CREATE_REPLY_PBAUTH_PH TI p4READ_WORK_PAGE_PBE_hffXpq8_NOTES$DRM_WIDGET_CREATE !" $ " pI7EU ,Z hf  UZNOTES$DRM_HELPhfPDRM_HNOTES$DRM_PUSHBUTTON_ACTIVATEHTE$READ_WORK_BACK_PAGE_PBANH tI t8READ_WORK_BACK_PAGE_PBhfX\o8_NOTENOTES$DRM_WIDGET_CREATE!" AC B$ "  EU XZ DRhf8 HPNOTES$DRM_HELPDRhfBU|ATEHNOTES$DRM_PUSHBUTTON_ACTIVATEAG'READ_WORK_CREATE_REPLY_PBhf%READ_WORK_NEXT_REPLY_PB'READ_WORK_CREATE_REPLY_PBRK_BH  , I  t8READ_WORK_NEXT_REPLY_PBhfX\n8_NOTENOTES$DRM_WIDGET_CREATE!" AC B$ "  EU XZ DRhf8 HPNOTES$DRM_HELPDRhfBU|ATEHNOTES$DRM_PUSHBUTTON_ACTIVATEAG'READ_WORK_CREATE_REPLY_PBhf READ_WORK_REPLY_PBY_P'READ_WORK_CREATE_REPLY_PBEPLYY_H T I p4READ_WORK_REPLY_PBYhffXmn8_NOTES$DRM_WIDGET_CREATE !" $ " pI7EU ,Z hf  UZNOTES$DRM_HELPhfPDRM_HNOTES$DRM_PUSHBUTTON_ACTIVATEHTE%READ_WORK_BACK_REPLY_PBRECLASS_TT_CUSTOMIZE_PROFILE_DIR_TBXT_CUSTOMIZE_PROFILE_HELP_PBEICUSTOMIZE_PROFILE_OK_PBCUSTOMIZE_PROFILE_PEN_LCUSTOMIZE_PROFILE_PEN_TCUSTOMIZE_PROFILE_SHOW_RBADCUSTOMIZE_PROFILE_TEMP_TBORro|M H I t8READ_WORK_BACK_REPLY_PBhfX\l8_NOTENOTES$DRM_WIDGET_CREATE!" AC B$ "  EU XZ DRhf8 HPNOTES$DRM_HELPDRhfBU|ATEHNOTES$DRM_PUSHBUTTON_ACTIVATEEP'READ_WORK_CREATE_REPLY_PBhf%READ_WORK_NEXT_TOPIC_PB'READ_WORK_CREATE_REPLY_PBRK_H I t8READ_WORK_NEXT_TOPIC_PBhfX\k8_NOTENOTES$DRM_WIDGET_CREATE!" AC B$ "  EU `Z hfH@ PES$DRNOTES$DRM_HELPBUhfES$DRNOTES$DRM_PUSHBUTTON_ACTIVATE'READ_WORK_CREATE_REPLY_PB READ_WORK_TOPIC_PB'READ_WORK_CREATE_REPLY_PBRK_H (I p4READ_WORK_TOPIC_PBChffXjk8_NOTES$DRM_WIDGET_CREATE !" $ " pI7EU ,Z hf  EUNOTES$DRM_HELPPhfPDRNOTELPNOTES$DRM_PUSHBUTTON_ACTIVATEE%READ_WORK_BACK_TOPIC_PB'H H PI t8READ_WORK_BACK_TOPIC_PBhfX\i8_NOTENOTES$DRM_WIDGET_CREATE!" AC B$ "  EU XZ DRhf8 HPPNOTES$DRM_HELPDRhfBU|ATENOTES$DRM_PUSHBUTTON_ACTIVATEOP'READ_WORK_CREATE_REPLY_PBEPLY'READ_WORK_CREATE_REPLY_PB'READ_WORK_CREATE_REPLY_PBRK_upH m ߀i ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_back_topic_pbH 4߀ ISO8859-1TopicATH h߀d ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_topic_pbH m߀i ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_next_topic_pb H m` ߀i ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_back_reply_pbpH  ߀ ISO8859-1ReplyH H h` ߀d ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_reply_pbH m ߀i ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_next_reply_pbH l ߀h ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_back_page_pbH  ߀ ISO8859-1Page H g ߀c ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_page_pbH < I x<READ_WORK_CREATE_REPLY_PBrkhf`h-1 k_pagNOTES$DRM_WIDGET_CREATE !" !" xIsEU 4Z hf $ XDRNOTES$DRM_HELPhfTEXDRNOTES$DRM_PUSHBUTTON_ACTIVATEPUM_H # ߀ ISO8859-1 Create ReplyH oT߀k ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_create_reply_pbH l߀h ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_next_page_pb IH B߀> ISO8859-1 read_window ISO8859-1 read_work_dbx_PB ro|N H DID l\0READ_WORK_DB9-1hfd_TT 1 rNOTES$DRM_WIDGET_CREATE ;F L1EH (1Z hf XNOTES$DRM_HELPE$READ_WORK_NEXT_PAGE_PBTEDRB(ABAKLt_\_H0RE READ_WORK_TEXTREAD_WORK_TEXT_SB_LREAD_WORK_SEPARATOR_SP_READ_WORK_UNSEEN_PBREAD_WORK_NEXT_PAGE_PBREAD_WORK_PAGE_PBMBREAD_WORK_BACK_PAGE_PBBREAD_WORK_NEXT_REPLY_PBREAD_WORK_REPLY_PBREAD_WORK_BACK_REPLY_PBREAD_WORK_NEXT_TOPIC_PBREAD_WORK_TOPIC_PBBREAD_WORK_BACK_TOPIC_PBREAD_WORK_CREATE_REPLY_PBB88H I p4READ_WORK_UNSEEN_PBhfTXr rNOTENOTES$DRM_WIDGET_CREATE !" $ " pIsEU ,Z fhf  NOTENOTES$DRM_HELPhfREPXT_PANOTES$DRM_PUSHBUTTON_ACTIVATE$READ_WORK_NEXT_PAGE_PBH "X߀ ISO8859-1 Next UnseenH i߀e ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_unseen_pbH DI 8READ_WORK_SEPARATOR_SP_ -E!"34 Z hf psNOTES$DRM_HELPf'READ_WORK_CREATE_REPLY_PBNOTEH d߀` ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_textH lIl p4READ_WORK_TEXT_SB rhfrkXg ISO8read_NOTES$DRM_WIDGET_CREATEE<γX$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1z"mAB34 H-.)&d>dZ hfB( 8HELPNOTES$DRM_HELP$READ_WORK_SEPARATOR_SPVATH p\Ip l0READ_WORK_TEXTShffTfg rNOTES$DRM_WIDGET_CREATE6;DE!"AB35 P4 ,D02J87Y \ Z xhf READ_T_PAGNOTES$DRM_HELPLhff__NOTES$DRM_LOST_FOCUSRhffREAEXTNOTES$DRM_FOCUS$READ_WORK_SEPARATOR_SPWORREAD_WORK_TEXT_SBAGE_H "߀ ISO8859-1 read_windowH H` IH p4READ_NOTE_CREATE_DBhfTXi rNOTENOTES$DRM_WIDGET_CREATE ;F H  \ < , IZ hf  NOTES$DRM_HELPNOTE_CREATE_OK_PBY"NOTE_CREATE_CANCL_PB_ A0HffT_|fhfT<T(NOTE_CREATE_HELP_PBNOTE_CREATE_CANCL_PBNOTE_CREATE_OK_PBXTNOTE_CREATE_LAST_TBNOTE_CREATE_CONFERENCE_TK_PNOTE_CREATE_CONFERENCE_TBLYNOTE_CREATE_HIDDEN_TBNOTE_CREATE_REPLIES_TBNOTE_CREATE_ATTRIB_LPBNOTE_CREATE_NOTEID_TEADNOTE_CREATE_OPERATION_RBWORNOTE_CREATE_OPERATION_LH H   I 8NOTE_CREATE_OPERATION_L A!A Z |hfF NOTES$DRM_HELP  ISO8859-1 Next Unseen_CRro|O0H !߀ ISO8859-1 Note Type:EH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_operation_l H l4Il <NOTE_CREATE_OPERATION_RBad_ ;F  A!"C /Z 85hfno operaNOTES$DRM_HELP%NOTE_CREATE_OPERATION_LT<NOTE_CREATE_TOPIC_TB_OKNOTE_CREATE_REPLY_TBE_CH I t8NOTE_CREATE_REPLY_TB_RBhf\F NOTES$DRM_WIDGET_CREATE< Z hff oNOTES$DRM_HELPENO3H ߀ ISO8859-1ReplyH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_reply_tbH I t8NOTE_CREATE_TOPIC_TB rhfte\ ISO readNOTES$DRM_WIDGET_CREATE< <Z hf_c y_tbES$DRNOTES$DRM_HELPATAGH ߀ ISO8859-1TopicS$H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_topic_tbH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_operation_rbPH lIl t8NOTE_CREATE_NOTEID_T rhfte\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C D$ Z hf TE_OPNOTES$DRM_HELP&NOTE_CREATE_OPERATION_RBE_CRE&NOTE_CREATE_OPERATION_RBBE_C_AH l߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_noteid_tH  I 8NOTE_CREATE_ATTRIB_L r A!C  Z |hfd_ e_dbSO885NOTES$DRM_HELPtD&NOTE_CREATE_OPERATION_RBTSHH ' ߀# ISO8859-1Note Attributes:%H  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_attrib_lCH < I< t8NOTE_CREATE_REPLIES_TBrhfte\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C  Z hf NTE_OPNOTES$DRM_HELPTHE"NOTE_CREATE_ATTRIB_LTION__PH $ ߀  ISO8859-1 Allow RepliesORH $ ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_replies_tbH D\ ID t8NOTE_CREATE_HIDDEN_TB rhfte\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf ES$DRNOTES$DRM_HELP$NOTE_CREATE_REPLIES_TBCREBH %0߀! ISO8859-1Hide This NoteZE_PROFILE_SHOW_RBADCUSTOMIZE_PROFILE_TEMP_TBORro|PL H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_hidden_tbH I x<NOTE_CREATE_CONFERENCE_TBd_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE<A!"C ` P` Z hf RNOTENOTES$DRM_HELPhf8ONTE_RENOTES$DRM_VALUE_CHANGEDAT#NOTE_CREATE_HIDDEN_TBXTH ,߀( ISO8859-1Pointer to Conference_CH h߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_conference_tbH pIp x<NOTE_CREATE_CONFERENCE_Tad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE 6AB!" 3C H$ Z hf RNOTRM_HENOTES$DRM_HELP8'NOTE_CREATE_CONFERENCE_TBLUE_'NOTE_CREATE_CONFERENCE_TBTE_CH |߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_conference_tbH DID p4NOTE_CREATE_LAST_TBhfd_X-1 NOTES$DRM_WIDGET_CREATE<A!"C  <Z hf hf NOTES$DRM_HELPRHE'NOTE_CREATE_CONFERENCE_TB_TB H $߀  ISO8859-1 Use Last TextLPH ,߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_db ISO8859-1 note_create_last_tbupH dI 4NOTE_CREATE_HELP_PB!" $  U xhf r reate ISNOTES$DRM_HELPclf"NOTE_CREATE_CANCL_PBNOTEH |4I| t8NOTE_CREATE_CANCL_PBhf\ $NOTES$DRM_WIDGET_CREATE!" $ \=gG$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"~ LU Z hff NOTE_ANCL_NOTES$DRM_HELPEhf,'OTE_CNOTES$DRM_PUSHBUTTON_ACTIVATE ATNOTE_CREATE_OK_PBDDENH 8 ߀ ISO8859-1 Cancel _woH  ߀ ISO8859-1 Cancel_pb-1H l Il p4NOTE_CREATE_OK_PBPBhffXNOTES$DRM_WIDGET_CREATE !" !#" \U Z hf_ L_NOTELPENOTES$DRM_HELP hf<_CNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATEAT _Ce_H 0 ߀ ISO8859-1 OK H  ߀ ISO8859-1OK_pbH & ߀" ISO8859-1Create New NoteH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_create_pb ISO8859-1 read_note_create_dbhfTEXDRNOTES$DRM_PUSHBUTTON_ACTIVATEPUM_H # ߀ ISO8859-1 Create ReplyH oT߀k ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_create_reply_pbH l߀h ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_next_page_pb IH B߀> ISO8859-1 read_window ISO8859-1 read_work_dbx_PB ro|Q X H I pd4READ_NOTE_DELETE_DBhfd_Xj-1 NOTES$DRM_WIDGET_CREATE ;F TH  0 IZ hf ES$DRNOTES$DRM_HELP  T"NOTE_DELETE_CANCL_PBN_ACTAENOTE_DELETE_HELP_PBNOTE_DELETE_CANCL_PBNOTE_DELETE_OK_PBNOTE_DELETE_NOTEID_TNOTE_DELETE_NOTEID_LXTH  I 8NOTE_DELETE_NOTEID_Lf A!A Z |hfF NOTES$DRM_HELPREH ,߀ ISO8859-1Note-idH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_delete2_pb ISO8859-1 read_note_delete_db ISO8859-1 note_delete_noteid_lH @I t8NOTE_DELETE_NOTEID_T rhfte\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf RNOTENOTES$DRM_HELPhfHPNTE_CANOTES$DRM_VALUE_CHANGED"NOTE_DELETE_NOTEID_L"NOTE_DELETE_NOTEID_LH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_delete2_pb ISO8859-1 read_note_delete_db ISO8859-1 note_delete_noteid_lH lIl p4NOTE_DELETE_OK_PB-1hfd_X-1 NOTES$DRM_WIDGET_CREATE !" !#" \U Z $hf NOTES$DRM_HELPEhf<HNNOTES$DRM_PUSHBUTTON_ACTIVATEANNOH ߀ ISO8859-1 OK H ߀ ISO8859-1OK_pb H PI 4NOTE_DELETE_HELP_PB!" $  U xhf NOTES$DRM_HELP \l"NOTE_DELETE_CANCL_PBH |I| t8NOTE_DELETE_CANCL_PBhf\ $NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NOTE_ANCL_NOTES$DRM_HELPEhf,fNOTES$DRM_PUSHBUTTON_ACTIVATEBUANNOTE_DELETE_OK_PBTEIDM_H  ߀ ISO8859-1 Cancel H   ߀ ISO8859-1 Cancel_pb IH "H ߀ ISO8859-1 Delete NoteH | ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_delete2_pb ISO8859-1 read_note_delete_db < , IZ hf  NOTES$DRM_HELPNOTE_CREATE_OK_PBY"NOTE_CREATE_CANCL_PB_ A0HffT_|fhfT<T(NOTE_CREATE_HELP_PBNOTE_CREATE_CANCL_PBNOTE_CREATE_OK_PBXTNOTE_CREATE_LAST_TBNOTE_CREATE_CONFERENCE_TK_PNOTE_CREATE_CONFERENCE_TBLYNOTE_CREATE_HIDDEN_TBNOTE_CREATE_REPLIES_TBNOTE_CREATE_ATTRIB_LPBNOTE_CREATE_NOTEID_TEADNOTE_CREATE_OPERATION_RBWORNOTE_CREATE_OPERATION_LH H   I 8NOTE_CREATE_OPERATION_L A!A Z |hfF NOTES$DRM_HELP  ISO8859-1 Next Unseen_CRro|R 4H ,I, t8READ_FILE_EXTRACT_DB rhfte\k ISO readNOTES$DRM_WIDGET_CREATE ;F H  ` @ 0TIZ TEhfHE NOTES$DRM_HELPTEON NOTE_EXTRACT_OK_PB#NOTE_EXTRACT_CANCL_PB_DETITLEPEEhPE8 RBEETxS\R@E$T NLENOTE_EXTRACT_HELP_PBES_NOTE_EXTRACT_CANCL_PB_LNOTE_EXTRACT_OK_PBENOTE_EXTRACT_APPEND_TBRNOTE_EXTRACT_INCL_HEAD_TBERNOTE_EXTRACT_INCL_REPL_TBMBNOTE_EXTRACT_MARK_SEEN_TBMBNOTE_EXTRACT_OPTIONS_LBNOTE_EXTRACT_UNSEEN_TBNOTE_EXTRACT_TITLE_TZ_TNOTE_EXTRACT_TITLE_TB_TNOTE_EXTRACT_KEYWORD_TTNOTE_EXTRACT_KEYWORD_TBNOTE_EXTRACT_SINCE_TNAMNOTE_EXTRACT_SINCE_TBMENOTE_EXTRACT_BEFORE_TMENOTE_EXTRACT_BEFORE_TBNNOTE_EXTRACT_AUTHOR_TANNOTE_EXTRACT_AUTHOR_TBPNOTE_EXTRACT_SELECTION_LN_ENOTE_EXTRACT_FILESPEC_TNOTE_EXTRACT_FILESPEC_LNOTE_EXTRACT_RANGE_TUPDNOTE_EXTRACT_RANGE_LN_ENOTE_EXTRACT_RANGE_TBH I t8NOTE_EXTRACT_RANGE_TB rhfte\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hfT ZEhfNOTES$DRM_HELPhfDR4RENOTES$DRM_VALUE_CHANGEDPB&NOTE_EXTRACT_SELECTION_LSOH !@߀ ISO8859-1 Note-range_H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_range_tbS$H   I 8NOTE_EXTRACT_RANGE_L r A!A Z |hfad act_d ISO8NOTES$DRM_HELPtf&H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_range_tb H dId t8NOTE_EXTRACT_RANGE_T rhfle\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hf EhfRM_HENOTES$DRM_HELP4"NOTE_EXTRACT_RANGE_LRM_VA"NOTE_EXTRACT_RANGE_LH   I 8NOTE_EXTRACT_FILESPEC_L A!C  Z |hf BNOTES$DRM_HELP@> B\$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1Cw""NOTE_EXTRACT_RANGE_TIEH & ߀" ISO8859-1Output FilenameH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_filespec_lH P I t8NOTE_EXTRACT_FILESPEC_Thfle\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf_R ES$DRNOTES$DRM_HELPhf_EHQGE_LNOTES$DRM_VALUE_CHANGED%NOTE_EXTRACT_FILESPEC_L%NOTE_EXTRACT_FILESPEC_LTCH $ ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_filespec_lZE_PROFILE_SHOW_RBADCUSTOMIZE_PROFILE_TEMP_TBORro|S hH  I <NOTE_EXTRACT_SELECTION_Lad_ A!C  Z hfil db8859-NOTES$DRM_HELPt$$%NOTE_EXTRACT_FILESPEC_TCOH *߀& ISO8859-1Selection Criteria:H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_selection_lRM_H LI t8NOTE_EXTRACT_AUTHOR_TBrhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf$ NOTE_FILESNOTES$DRM_HELPEHEhf4ShfQNOTES$DRM_VALUE_CHANGED AN&NOTE_EXTRACT_SELECTION_L_LCOH $߀ ISO8859-1AuthornH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_author_tbEH dId t8NOTE_EXTRACT_AUTHOR_T rhfle\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hfNO FILERM_HENOTES$DRM_HELP!4$NOTE_EXTRACT_AUTHOR_TB_VA$NOTE_EXTRACT_AUTHOR_TBH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_author_tbH 8I t8NOTE_EXTRACT_BEFORE_TBrhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf NOFILENOTES$DRM_HELPE"hf4TNACT_ANOTES$DRM_VALUE_CHANGED#HO#NOTE_EXTRACT_AUTHOR_T_L_H  ߀ ISO8859-1BeforeH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_before_tbH dId t8NOTE_EXTRACT_BEFORE_T rhfle\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hfNO FILERM_HENOTES$DRM_HELP$4$NOTE_EXTRACT_BEFORE_TB_VA$NOTE_EXTRACT_BEFORE_TB88H  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_before_tbH  I t8NOTE_EXTRACT_SINCE_TB rhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf NOFILENOTES$DRM_HELPE%hf4UNACT_BNOTES$DRM_VALUE_CHANGED&OR#NOTE_EXTRACT_BEFORE_T_L_H  ߀ ISO8859-1Since1H  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_since_tbH oT߀k ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_create_reply_pbH l߀h ISO8859-1 read_window ISO8859-1 read_work_db ISO8859-1 read_work_next_page_pb IH B߀> ISO8859-1 read_window ISO8859-1 read_work_dbx_PB ro|T4H dId t8NOTE_EXTRACT_SINCE_T rhfle\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hfNO FILERM_HENOTES$DRM_HELP'4#NOTE_EXTRACT_SINCE_TBM_VA#NOTE_EXTRACT_SINCE_TBH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_since_tb H xI t8NOTE_EXTRACT_KEYWORD_TBhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf NOFILENOTES$DRM_HELPE(hf4VNACT_SNOTES$DRM_VALUE_CHANGED)CE"NOTE_EXTRACT_SINCE_T_L_leH L߀ ISO8859-1KeywordH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_keyword_tbH lIl t8NOTE_EXTRACT_KEYWORD_Trhfle\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C D$ Z hfNO FILERM_HENOTES$DRM_HELP*4%NOTE_EXTRACT_KEYWORD_TBVALUE_%NOTE_EXTRACT_KEYWORD_TBNOTE_E_nH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_keyword_tbH dI t8NOTE_EXTRACT_TITLE_TB rhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf NOFILENOTES$DRM_HELPE+hf4WNACT_KNOTES$DRM_VALUE_CHANGED,_K$NOTE_EXTRACT_KEYWORD_TL_H 8߀ ISO8859-1Title H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_title_tbhH dId t8NOTE_EXTRACT_TITLE_T rhfle\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hfNO FILERM_HENOTES$DRM_HELP-4#NOTE_EXTRACT_TITLE_TBM_VA#NOTE_EXTRACT_TITLE_TBH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_title_tbreH <H I< t8NOTE_EXTRACT_UNSEEN_TBrhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C  Z $hf hf NOTES$DRM_HELPR.HE/"NOTE_EXTRACT_TITLE_TE_TBH # ߀ ISO8859-1 Unseen NotesH l ߀ ISO8859-1 read_menu_bar ISO8859-1 rea?#~$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"d_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_unseen_tbCH   I 8NOTE_EXTRACT_OPTIONS_Lr A!C  Z |hfad act_d ISO8NOTES$DRM_HELPt01$NOTE_EXTRACT_UNSEEN_TB_HEhH )x߀% ISO8859-1Selection Options:  ISO8859-1 Next Unseen_CRro|UhPH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_options_l H HIH x<NOTE_EXTRACT_MARK_SEEN_TBd_hfde`O8859d_filNOTES$DRM_WIDGET_CREATE<A!"C $ <Z hf RACT_B_HENOTES$DRM_HELP23NO$NOTE_EXTRACT_OPTIONS_LH #߀ ISO8859-1 Mark as Seen'H 0߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_mark_seen_tb*H LhIL x<NOTE_EXTRACT_INCL_REPL_TBd_hfde`O8859d_filNOTES$DRM_WIDGET_CREATE<A!"C $ <Z hf RACT_B_HENOTES$DRM_HELP45NO'NOTE_EXTRACT_MARK_SEEN_TBNOAPH &@߀" ISO8859-1Include RepliesH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_incl_repl_tbRKH DID x<NOTE_EXTRACT_INCL_HEAD_TBd_hfde`O8859d_filNOTES$DRM_WIDGET_CREATE<A!"C  Z Zhf NOTES$DRM_HELPR67'NOTE_EXTRACT_INCL_REPL_TBSEENORH *߀& ISO8859-1Include Note HeaderH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_incl_head_tbORH HDIH t8NOTE_EXTRACT_APPEND_TBrhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf NOTENOTES$DRM_HELP89'NOTE_EXTRACT_INCL_HEAD_TB_TBERH %߀! ISO8859-1Append to FileIH x ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 note_extract_append_tbAH  I 8NOTE_EXTRACT_HELP_PB r!" $  U |hfad act_d ISO8NOTES$DRM_HELPtlf#NOTE_EXTRACT_CANCL_PBNOTEETH | I| t8NOTE_EXTRACT_CANCL_PB rhf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NACT_CNOTES$DRM_HELPR:hf,9NONOTES$DRM_PUSHBUTTON_ACTIVATENO;LE NOTE_EXTRACT_OK_PBD_TEXH  ߀ ISO8859-1 Cancel PBH   ߀ ISO8859-1 Cancel_pbOTH lP Il p4NOTE_EXTRACT_OK_PBPhffX"NOTES$DRM_WIDGET_CREATE !" !#" \U Z hfN _CNOTELPRNOTES$DRM_HELP<hf<NONOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATELE=_EREH  ߀ ISO8859-1 OK NOTH ߀ ISO8859-1OK_pbOTH $8߀  ISO8859-1 Extract NotesCH_PBREAD_NOTE_SETSEEN_PBFILREAD_WORK_KP7_SELECT_PBREAD_WORK_SELECT_CONF_PBi ro|VG0 0  D X l      d  \ x   , D ,\ h l  |  t   # # # # # 4 4 H hX p T   ( $ ` 9 9  9  80 9D 9X 9@l : :l ; ; :h : : < $<<<hT;` l<p;,; ?> =(? >0 ?4= H=\=p=>>? @ @ @ ? @X @<D C 4 CL B  C | B8d B tG E0 <E8,GFDGXEpEDD ED F(E G\GF0FF O P8 P|8PP4TO0POlP0 NOlO OOXQ pQQ,QQSS$dS |S R R$ lU@TTLUTx(RR @R@S4TLS T T8T xD'' l'`NOTE_EXTRACT_INCL_REPL_TBMBNOTE_EXTRACT_MARK_SEEN_TB_CNOTE_EXTRACT_OPTIONS_L_NOTE_EXTRACT_UNSEEN_TBNOTE_EXTRACT_TITLE_TEMBNOTE_EXTRACT_TITLE_TB_ANOTE_EXTRACT_KEYWORD_TANOTE_EXTRACT_KEYWORD_TBNOTE_EXTRACT_SINCE_TD_MNOTE_EXTRACT_SINCE_TBL_NOTE_EXTRACT_BEFORE_TTNOTE_EXTRACT_BEFORE_TBKNOTE_EXTRACT_AUTHOR_TRKNOTE_EXTRACT_AUTHOR_TBKNOTE_EXTRACT_SELECTION_LR_DNOTE_EXTRACT_FILESPEC_TNOTE_EXTRACT_FILESPEC_LNOTE_EXTRACT_RANGE_TR_DNOTE_EXTRACT_RANGE_LR_DNOTE_EXTRACT_RANGE_TB_DNOTE_DELETE_CANCL_PBR_DNOTE_DELETE_HELP_PBNOTE_DELETE_OK_PBRKNOTE_DELETE_NOTEID_TARKNOTE_DELETE_NOTEID_LARKNOTE_CREATE_OK_PBRKNOTE_CREATE_CANCL_PBR_ANOTE_CREATE_HELP_PBNOTE_CREATE_LAST_TBNOTE_CREATE_CONFERENCE_TTEINOTE_CREATE_CONFERENCE_TBRKNOTE_CREATE_HIDDEN_TBOTNOTE_CREATE_REPLIES_TBTNOTE_CREATE_ATTRIB_LNOTNOTE_CREATE_NOTEID_TEADNOTE_CREATE_TOPIC_TBMAINOTE_CREATE_REPLY_TBOTENOTE_CREATE_OPERATION_RB_PBNOTE_CREATE_OPERATION_LMEMBER_MODIFY_OK_PBMEMBER_MODIFY_CANCL_PBTMEMBER_MODIFY_HELP_PBADMEMBER_MODIFY_SHOW_PBADMEMBER_MODIFY_APPLY_PBDMODIFY_WRITEBYPASS_TBAIMODIFY_CREATE_KEYWORD_TB_OPMODIFY_ACT_MODERATOR_TBMEMBER_MODIFY_GRANT_LT_MEMBER_MODIFY_NODES_T_NMEMBER_MODIFY_NODES_TBNMEMBER_MODIFY_AUTHORIZ_TSEEMEMBER_MODIFY_AUTHORIZ_TB_MEMBER_MODIFY_MAIL_TEADMEMBER_MODIFY_MAIL_TBF_MEMBER_MODIFY_NEWNAME_TMEMBER_MODIFY_NEWNAME_TBNOTMEMBER_MODIFY_MEMBER_TDMEMBER_MODIFY_MEMBER_LBMEMBER_DISPLY_APPLY_PBMEMBER_DISPLY_CANCL_PBDMEMBER_DISPLY_INFO_UDILMEMBER_DISPLY_HELP_PBOPMEMBER_DISPLY_INFO_LPOPMEMBER_DISPLY_MEMBER_TOMEMBER_DISPLY_MEMBER_LPMEMBER_DELETE_CANCL_PBEMEMBER_DELETE_HELP_PBJEMEMBER_DELETE_APPLY_PBEMEMBER_DELETE_OK_PBMEMBER_DELETE_MEMBER_TNMAIN_FILE_EXIT_PBLEMAIN_FILE_MAIL_DBTEMAIN_FILE_EXIT_PBESMAIN_FILE_MAIL_DB_PMAIN_FILE_MAIL_PBR_MAIN_FILE_OBJECT_PBMAIN_FILE_OPEN1_PB_MAIN_FILE_OPEN2_PB_MAIN_FILE_OPEN3_PBPMAIN_FILE_OPEN_DBPBMAIN_FILE_PDEEYMAIN_FILE_PDMTEMAIN_HELP_ABOUT_PBEMAIN_HELP_BOXNFMAIN_HELP_CONTEXT_PBCONMAIN_HELP_GLOSSARY_PBBMAIN_HELP_OVERVIEW_PBTEMAIN_HELP_PDER_MAIN_HELP_PDMNAMAIN_MENU_BARH_MAIN_OBJECT_DISPLY_DB_LMAIN_OUTLINE_PBMAIN_OUTLINE_PB$LABEL_TMAIN_POPUPEMAIN_POPUP_EXIT_PBEMAIN_POPUP_OPEN_IN_NEW_PBN_MAIN_POPUP_OPEN_PBMMAIN_POPUP_UPDATE_PBLY_MAIN_SEPARATOR_SPSPMAIN_SVN_WINDOWMAIN_TOP_TREE_PB$LABEL_MAIN_VIEW_PDECAMAIN_VIEW_PDMADMAIN_WINDOWMAIN_WORK_BOXS_MAIN_WORK_BOX$CANCELLABELTRMAIN_WORK_BOX$OKLABELADMARKER_ADD_APPLY_PBMARKER_ADD_CANCL_PBMARKER_ADD_HELP_PBEMARKER_ADD_MARKER_LMARKER_ADD_MARKER_TMARKER_ADD_NOTEID_LMARKER_ADD_NOTEID_TMARKER_ADD_OK_PBS_TMARKER_DELETE_APPLY_PBTMARKER_DELETE_CANCL_PBLMARKER_DELETE_HELP_PB_TMARKER_DELETE_MARKER_LBMARKER_DELETE_MARKER_TFMARKER_DELETE_OK_PBMARKER_DISPLY_APPLY_PBPMARKER_DISPLY_CANCL_PBTMARKER_DISPLY_HELP_PB_TMARKER_DISPLY_INFO_LY_LMARKER_DISPLY_INFO_UD_TMARKER_DISPLY_MARKER_LEMARKER_DISPLY_MARKER_TEMEMBER_ADD_APPLY_PBMEMBER_ADD_AUTHORIZ_TFYMEMBER_ADD_AUTHORIZ_TBMMEMBER_ADD_CANCL_PBMEMBER_ADD_GRANT_LOMEMBER_ADD_HELP_PBRMEMBER_ADD_MAIL_TTRMEMBER_ADD_MAIL_TBFMEMBER_ADD_MEMBER_LMEMBER_ADD_MEMBER_TMEMBER_ADD_NODES_TAMEMBER_ADD_NODES_TBMEMBER_ADD_OK_PB_UPMEMBER_DELETE_APPLY_PBPMEMBER_DELETE_CANCL_PBP@Ie$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"ro|W$H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_dbH I x<READ_FILE_EXTRACT_DDIF_DBd_hfde`lO8859d_filNOTES$DRM_WIDGET_CREATE ;F H  l D 4IZ hfR $HELPNOTES$DRM_HELP>?DR%NOTE_EXTRACT_DDIF_OK_PB=_E'NOTE_EXTRACT_DDIF_CANL_PBNOESC_|`D,NOTE_EXTRACT_DDIF_HELP_PBNOTE_EXTRACT_DDIF_CANL_PBNOTE_EXTRACT_DDIF_OK_PBNOTE_EXTRACT_DDIF_FILE_TENOTE_EXTRACT_DDIF_FILE_LNOTE_EXTRACT_DDIF_NOTE_NBR_TThH 8I8 |@NOTE_EXTRACT_DDIF_NOTE_NBR_Tfhf`d9lNOTENOTES$DRM_WIDGET_CREATE 6;DA!" 3=Z fhf (NOTENOTES$DRM_HELP@noH \߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 read_file_extract_ddif_db ISO8859-1 note_extract_ddif_note_nbr_tH   I  <NOTE_EXTRACT_DDIF_FILE_Lad_ A!C B Z exhfdb O8859d_filNOTES$DRM_HELPdA59Bac*NOTE_EXTRACT_DDIF_NOTE_NBR_T_fH &߀" ISO8859-1Output FilenameH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 read_file_extract_ddif_db ISO8859-1 note_extract_ddif_file_lILH pIp x<NOTE_EXTRACT_DDIF_FILE_Tad_hfde`O8859d_filNOTES$DRM_WIDGET_CREATE 6AB!" 3C H$ Z exhfdd XTR_NOTENOTES$DRM_HELPCDR&NOTE_EXTRACT_DDIF_FILE_LR%&NOTE_EXTRACT_DDIF_FILE_LE'_eH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 read_file_extract_ddif_db ISO8859-1 note_extract_ddif_file_lH  I <NOTE_EXTRACT_DDIF_HELP_PBd_!" $  U hfil db8859-NOTES$DRM_HELPx>l'NOTE_EXTRACT_DDIF_CANL_PB_ISH  I x<NOTE_EXTRACT_DDIF_CANL_PBd_hf`"NOTES$DRM_WIDGET_CREATE!" $ ` PU Z hf NACT_DNOTES$DRM_HELP_DHEhf0DR&OTE_ENOTES$DRM_PUSHBUTTON_ACTIVATEE_D%NOTE_EXTRACT_DDIF_OK_PB_DDIF_M_H  ߀ ISO8859-1 Cancel ACTH  @ ߀ ISO8859-1 Cancel_pb-1H pt Ip t8NOTE_EXTRACT_DDIF_OK_PBhff\"NOTES$DRM_WIDGET_CREATE !" !#" `U Z hfN _DNOTELP_NOTES$DRM_HELPEFhf@_ENOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATE_DG_E IH  ߀ ISO8859-1 OK k_dH ,߀ ISO8859-1OK_pb IH (`߀$ ISO8859-1Extract DDIF NoteSO8859-1 read_work_dbx_PB ro|X XH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_extract_pb ISO8859-1 read_file_extract_db ISO8859-1 read_file_extract_ddif_db H I p4READ_NOTE_MODIFY_DBhfd_Xm-1 NOTES$DRM_WIDGET_CREATE ;F H  \ < ,7IZ hfT  _NOTELPENOTES$DRM_HELPHIUNOTE_MODIFY_OK_PBIVAT"NOTE_MODIFY_CANCL_PB_OK_PBNOClX<X HTDCBCx_dNOTE_MODIFY_HELP_PBNOTE_MODIFY_CANCL_PB_NONOTE_MODIFY_SHOW_PBNOTE_MODIFY_OK_PBNOTE_MODIFY_KEYWORDS_TTNOTE_MODIFY_KEYWORDS_TBNOTE_MODIFY_NEW_NOTEID_TACTNOTE_MODIFY_NEW_NOTEID_TBD_NOTE_MODIFY_CONFERENCE_TD_TNOTE_MODIFY_CONFERENCE_TB_TNOTE_MODIFY_TITLE_TNOTE_MODIFY_TITLE_TBACTNOTE_MODIFY_HIDDEN_TBCTNOTE_MODIFY_REPLIES_TBTNOTE_MODIFY_ATTRIB_LACTNOTE_MODIFY_NOTEID_TACTNOTE_MODIFY_NOTEID_LACTXTH  I 8NOTE_MODIFY_NOTEID_Lf A!A Z |hfF NOTES$DRM_HELPJK7TEH ߀ ISO8859-1Note-idH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_noteid_lIH I t8NOTE_MODIFY_NOTEID_T rhfte\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf    NOTES$DRM_HELPRLhfHZINONOTES$DRM_VALUE_CHANGED"NOTE_MODIFY_NOTEID_LP"NOTE_MODIFY_NOTEID_LCF_H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_noteid_lLH  I 8NOTE_MODIFY_ATTRIB_L r A!C  Z |hfd_ y_dbSO885NOTES$DRM_HELPfMN"NOTE_MODIFY_NOTEID_T ILH 'X ߀# ISO8859-1Note Attributes:FILH ` ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_attrib_l_H < I< t8NOTE_MODIFY_REPLIES_TBrhfte\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C  Z hf NFY_NONOTES$DRM_HELPOTEP"NOTE_MODIFY_ATTRIB_LICAH $l ߀  ISO8859-1 Allow RepliesBH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_replies_tb_TH D ID t8NOTE_MODIFY_HIDDEN_TB rhfte\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf ES$DRNOTES$DRM_HELPQR$NOTE_MODIFY_REPLIES_TBOH % ߀! ISO8859-1Hide This Note_TBFMEMBER_ADD_MEMBER_LMEMBER_ADD_MEMBER_TMEMBER_ADD_NODES_TAMEMBER_ADD_NODES_TBMEMBER_ADD_OK_PB_UPMEMBER_DELETE_APPLY_PBPMEMBER_DELETE_CANCL_PBPro|YHH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_hidden_tbH I t8NOTE_MODIFY_TITLE_TB rhfte\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf ES$DRNOTES$DRM_HELPSAr$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1:"hf4[MODIFNOTES$DRM_VALUE_CHANGEDTAN#NOTE_MODIFY_HIDDEN_TB_LPH ߀ ISO8859-1TitleadH d߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_title_tbH `I` p4NOTE_MODIFY_TITLE_Thfd_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z hf ES$DRNOTES$DRM_HELPU"NOTE_MODIFY_TITLE_TBES$DR"NOTE_MODIFY_TITLE_TBN#H d߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_title_tblH I x<NOTE_MODIFY_CONFERENCE_TBd_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE<A!"C ` P` Z hff ENOTES$DRM_HELPEVhf8\_MODI_TBENOTES$DRM_VALUE_CHANGEDW!NOTE_MODIFY_TITLE_TPdeH ,߀( ISO8859-1Pointer to ConferenceH @߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_conference_tbH pIp x<NOTE_MODIFY_CONFERENCE_Tad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE 6AB!" 3C H$ Z hf RM_HENOTES$DRM_HELPX8'NOTE_MODIFY_CONFERENCE_TBLUE_'NOTE_MODIFY_CONFERENCE_TBTE_M H T߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_conference_tbH  I x<NOTE_MODIFY_NEW_NOTEID_TBd_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE<A!"C ` P` Z hf NOTES$DRM_HELPEYhf8]NFY_CONOTES$DRM_VALUE_CHANGEDZCO&NOTE_MODIFY_CONFERENCE_T" H " ߀ ISO8859-1 New Note-idH H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_new_noteid_tbH p| Ip x<NOTE_MODIFY_NEW_NOTEID_Tad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE 6AB!" 3C H$ Z hf RM_HENOTES$DRM_HELP[8'NOTE_MODIFY_NEW_NOTEID_TBLUE_'NOTE_MODIFY_NEW_NOTEID_TBTE_MNOH P ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_new_noteid_tb_NOTE_SETSEEN_PBFILREAD_WORK_KP7_SELECT_PBREAD_WORK_SELECT_CONF_PBi ro|Z H H I t8NOTE_MODIFY_KEYWORDS_TBhfte\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf fNOTES$DRM_HELPE\hf4^MODIFNOTES$DRM_VALUE_CHANGED]IF&NOTE_MODIFY_NEW_NOTEID_TE_TH ߀ ISO8859-1KeywordsTH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_keywords_tbH lIl t8NOTE_MODIFY_KEYWORDS_Trhfte\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C D$ Z hff RM_HENOTES$DRM_HELP^4%NOTE_MODIFY_KEYWORDS_TBVALUE_%NOTE_MODIFY_KEYWORDS_TBNOTE_MTEH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_keywords_tbPEH x Ix p4NOTE_MODIFY_SHOW_PBhfd_X-1 NOTES$DRM_WIDGET_CREATE!" $ X HU Z hf NOTES$DRM_HELP_DRhf(^4NONOTES$DRM_PUSHBUTTON_ACTIVATE`IFNOTE_MODIFY_OK_PBW_NOS_H ߀ ISO8859-1 Show TH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db ISO8859-1 note_modify_show_pbIFH I 4NOTE_MODIFY_HELP_PB!" $  U xhf r odify ISNOTES$DRM_HELPmHl"NOTE_MODIFY_CANCL_PBRM_HEDIH I t8NOTE_MODIFY_CANCL_PBhf\ $NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NOTE_ANCL_NOTES$DRM_HELPafhf(,4ONOTENOTES$DRM_PUSHBUTTON_ACTIVATEb!NOTE_MODIFY_SHOW_PBID_TEEH ߀ ISO8859-1 Cancel EMBH   ߀ ISO8859-1 Cancel_pbR_H lL Il p4NOTE_MODIFY_OK_PBPBhffXNOTES$DRM_WIDGET_CREATE !" !#" \U Z hf_ L_NOTELPNOTES$DRM_HELPchf<TENOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATEd_M_TH  ߀ ISO8859-1 OK ARKH  ߀ ISO8859-1OK_pbENH '4 ߀# ISO8859-1Show/Modify NoteCREH d ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_modify_pb ISO8859-1 read_note_modify_db_TOPIC_TBARKNOTE_DELETE_CANCL_PBARKNOTE_DELETE_HELP_PBNOTE_DELETE_NOTEID_L_TNOTE_DELETE_NOTEID_TLENOTE_DELETE_OK_PBERNOTE_EXTRACT_AUTHOR_TBNOTE_EXTRACT_AUTHOR_TBYNOTE_EXTRACT_BEFORE_TMNOTE_EXTRACT_BEFORE_TBBNOTE_EXTRACT_FILESPEC_LNOTE_EXTRACT_FILESPEC_TNOTE_EXTRACT_INCL_REPL_TBFNOTE_EXTRACT_KEYWORD_TBNOTE_EXTRACT_KEYWORD_TBNOTE_EXTRACT_MARK_SEEN_TBESNOTE_EXTRACT_OPTIONS_LPNOTE_EXTRACT_RANGE_LBPNOTE_EXTRACT_RANGE_TBPNOTE_EXTRACT_RANGE_TBUPNOTE_EXTRACT_SELECTION_LTTRNOTE_EXTRACT_SINCE_TANCNOTE_EXTRACT_SINCE_TBTNOTE_EXTRACT_TITLE_TW_RNOTE_EXTRACT_TITLE_TBTENOTE_EXTRACT_UNSEEN_TBNOTE_MAIL_AUTHOR_TBNOTE_MAIL_CANCL_PBNOTE_MAIL_FORWARD_TBl ro|[ HH I p4READ_FILE_PRINT_DB1hfd_Xn-1 NOTES$DRM_WIDGET_CREATE ;F H  \ < ,IZ L_hf  TES$DNOTES$DRM_HELPeTEfBUNOTE_PRINT_OK_PBTE!NOTE_PRINT_CANCL_PBID_TENO_MNCt\D0XHTDCBlCT_<T LOPOBNOTE_PRINT_HELP_PBDNOTE_PRINT_CANCL_PBNOTE_PRINT_INVOK_WIDGT_PBODNOTE_PRINT_OK_PBACTNOTE_PRINT_INCL_HEADER_TBD_NOTE_PRINT_INCL_REPLY_TBD_TNOTE_PRINT_MARK_SEEN_TBNOTE_PRINT_OPTIONS_L_TNOTE_PRINT_UNSEEN_TBACTNOTE_PRINT_TITLE_TTNOTE_PRINT_TITLE_TBNOTE_PRINT_KEYWORD_TTTRNOTE_PRINT_KEYWORD_TBTENOB5$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"TE_PRINT_SINCE_T_NOTE_PRINT_SINCE_TBNOTE_PRINT_BEFORE_TNOTE_PRINT_BEFORE_TBSINNOTE_PRINT_AUTHOR_TNOTE_PRINT_AUTHOR_TBACTNOTE_PRINT_SELECTION_LTNOTE_PRINT_RANGE_TTNOTE_PRINT_RANGE_LENOTE_PRINT_RANGE_TBH |I| p4NOTE_PRINT_RANGE_TBhfd_X-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf Z_hfNOTES$DRM_HELPEghfDR0_ENOTES$DRM_VALUE_CHANGEDhT$NOTE_PRINT_SELECTION_LIDH !߀ ISO8859-1 Note-rangeH T߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_range_tb_fiH  I 4NOTE_PRINT_RANGE_L1 A!A Z xhf r rint_ ISONOTES$DRM_HELPrihfH X߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_range_tb H X8IX p4NOTE_PRINT_RANGE_T1hfd_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C 8$ Z hf _hfRM_HENOTES$DRM_HELPi0 NOTE_PRINT_RANGE_L$DR NOTE_PRINT_RANGE_LT-1H   I 8NOTE_PRINT_SELECTION_L A!C  Z |hfA NOTES$DRM_HELPj$k NOTE_PRINT_RANGE_TlH *t ߀& ISO8859-1Selection Criteria:H x ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_selection_lH  I t8NOTE_PRINT_AUTHOR_TB rhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf _PRINTNOTES$DRM_HELPRlhf04`NOTE_NGE_LNOTES$DRM_VALUE_CHANGEDm$NOTE_PRINT_SELECTION_LTENOH  ߀ ISO8859-1AuthorH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_author_tbE_DG_E IH  ߀ ISO8859-1 OK k_dH ,߀ ISO8859-1OK_pb IH (`߀$ ISO8859-1Extract DDIF NoteSO8859-1 read_work_dbx_PB ro|\ pH `I` p4NOTE_PRINT_AUTHOR_Thfd_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z hf ES$DRNOTES$DRM_HELPn0"NOTE_PRINT_AUTHOR_TBES$DR"NOTE_PRINT_AUTHOR_TB$H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_author_tbIVH tI t8NOTE_PRINT_BEFORE_TB rhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf  NOTES$DRM_HELPRohf04aNOTE_THOR_NOTES$DRM_VALUE_CHANGEDp!NOTE_PRINT_AUTHOR_T_LTE_MH D߀ ISO8859-1BeforeH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_before_tbIFH `I` p4NOTE_PRINT_BEFORE_Thfd_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z hf ES$DRNOTES$DRM_HELPq0"NOTE_PRINT_BEFORE_TBES$DR"NOTE_PRINT_BEFORE_TB!noH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_before_tbH |LI| p4NOTE_PRINT_SINCE_TBhfd_X-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf NOTES$DRM_HELPErhf0bNT_BEFNOTES$DRM_VALUE_CHANGEDsE_!NOTE_PRINT_BEFORE_TR_T_L59H ߀ ISO8859-1Since_pH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_since_tb H `I` p4NOTE_PRINT_SINCE_T1hfd_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z hf RM_HENOTES$DRM_HELPt0!NOTE_PRINT_SINCE_TBDRM_VA!NOTE_PRINT_SINCE_TBH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_since_tbEATH | I| t8NOTE_PRINT_KEYWORD_TB rhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C \ L` Z hf  NOTES$DRM_HELPRuhf04cNOTE_NCE_TNOTES$DRM_VALUE_CHANGEDv NOTE_PRINT_SINCE_T_L59H  ߀ ISO8859-1KeywordH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_keyword_tb  <Z hf ES$DRNOTES$DRM_HELPQR$NOTE_MODIFY_REPLIES_TBOH % ߀! ISO8859-1Hide This Note_TBFMEMBER_ADD_MEMBER_LMEMBER_ADD_MEMBER_TMEMBER_ADD_NODES_TAMEMBER_ADD_NODES_TBMEMBER_ADD_OK_PB_UPMEMBER_DELETE_APPLY_PBPMEMBER_DELETE_CANCL_PBPro|]PhH dId t8NOTE_PRINT_KEYWORD_T rhfle\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C @$ Z hf RM_HENOTES$DRM_HELPw4#NOTE_PRINT_KEYWORD_TBM_VA#NOTE_PRINT_KEYWORD_TBH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_keyword_tbH |xI| p4NOTE_PRINT_TITLE_TBhfd_X-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf fNOTES$DRM_HELPExhf0dPRINTNOTES$DRM_VALUE_CHANGEDyEY"NOTE_PRINT_KEYWORD_TT_LM_H H߀ ISO8859-1TitleH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_title_tbH `I` p4NOTE_PRINT_TITLE_T1hfd_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z hff RM_HENOTES$DRM_HELPCg?$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1+I"z0!NOTE_PRINT_TITLE_TBDRM_VA!NOTE_PRINT_TITLE_TBH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_title_tb!H @LI@ t8NOTE_PRINT_UNSEEN_TB rhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf  NOTES$DRM_HELPR{| NOTE_PRINT_TITLE_TH #߀ ISO8859-1 Unseen NotesH p߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_unseen_tbH  I 8NOTE_PRINT_OPTIONS_L r A!C  Z |hfd_ _dbO8859NOTES$DRM_HELP_}~f"NOTE_PRINT_UNSEEN_TBNOTEH )x ߀% ISO8859-1Selection Options:H  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_options_lH D ID t8NOTE_PRINT_MARK_SEEN_TBhfle\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf _PRIN_TBNOTES$DRM_HELPR"NOTE_PRINT_OPTIONS_L1H # ߀ ISO8859-1 Mark as SeendifH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_mark_seen_tbH L IL x<NOTE_PRINT_INCL_REPLY_TBad_hfde`O8859d_filNOTES$DRM_WIDGET_CREATE<A!"C $ <Z hf NNOTENOTES$DRM_HELP%NOTE_PRINT_MARK_SEEN_TBNOTE_P_pH & ߀" ISO8859-1Include Replies1 note_modify_new_noteid_tb_NOTE_SETSEEN_PBFILREAD_WORK_KP7_SELECT_PBREAD_WORK_SELECT_CONF_PBi ro|^c4 H \    D 4  L $ \ $ l H  XX Z YT Y Z X 0 ZH Z` YP | Y X X Z Xl Z Yd Y4 \H [ ` \t \D__ _8 ] _< ] \ T ] _l ]x [X [ [ [t  \ $ \8 ]L ]H ]a4<a bh(a0 Ta4laa\`(ab\ cbHc`c4cbDxcDb ` t   p   H 0HX `x   x 4 Ld@|\ )0<) X)0 t*(@ (8((( )0*L(`(pt(%d'\ H LHK LL, pM,M M K< 4K NJ0 ' LTLT XM(K$J KLtLt '`NNN\pK \K DMPNX' lNOTE_PRINT_TITLE_TENOTE_PRINT_TITLE_TBNOTE_PRINT_KEYWORD_TNCLNOTE_PRINT_KEYWORD_TBENOTE_PRINT_SINCE_TNOTE_PRINT_SINCE_TBNOTE_PRINT_BEFORE_TNOTE_PRINT_BEFORE_TBEMBNOTE_PRINT_AUTHOR_TNOTE_PRINT_AUTHOR_TBBTNOTE_PRINT_SELECTION_LBNOTE_PRINT_RANGE_TBNOTE_PRINT_RANGE_LBNOTE_PRINT_RANGE_TBREAD_FILE_PRINT_DBNOTE_MODIFY_OK_PBL_NOTE_MODIFY_CANCL_PBO_UNOTE_MODIFY_HELP_PBNOTE_MODIFY_SHOW_PBNOTE_MODIFY_KEYWORDS_TLNOTE_MODIFY_KEYWORDS_TBNOTE_MODIFY_NEW_NOTEID_T_CANOTE_MODIFY_NEW_NOTEID_TB_PNOTE_MODIFY_CONFERENCE_TBLNOTE_MODIFY_CONFERENCE_TB_DNOTE_MODIFY_TITLE_TNOTE_MODIFY_TITLE_TBARKNOTE_MODIFY_HIDDEN_TB_ANOTE_MODIFY_REPLIES_TBHNOTE_MODIFY_ATTRIB_LPLYNOTE_MODIFY_NOTEID_T_TNOTE_MODIFY_NOTEID_LARKREAD_NOTE_MODIFY_DBREAD_FILE_EXTRACT_DDIF_DBDEREAD_FILE_EXTRACT_DB_DEREAD_NOTE_DELETE_DBREAD_NOTE_CREATE_DBREAD_WORK_TEXTNREAD_WORK_TEXT_SBOTREAD_WORK_SEPARATOR_SPDREAD_WORK_UNSEEN_PBREAD_WORK_DB_REREAD_WORK_CREATE_REPLY_PBREREAD_WORNOTE_SETSEEN_OK_PBDNOTE_SETSEEN_CANCL_PBORNOTE_SETSEEN_HELP_PBWORNOTE_SETSEEN_SINCE_TWORNOTE_SETSEEN_BEFORE_TNENOTE_SETSEEN_ALL_TBNOTE_SETSEEN_SINCE_TBORNOTE_SETSEEN_BEFORE_TBENOTE_SETSEEN_RBNOTE_SEARCH_FIND_PBNOTE_SEARCH_CANCL_PBWORNOTE_SEARCH_HELP_PBNOTE_SEARCH_FINDNEXT_PBNOTE_SEARCH_IN_NEW_TBE_NOTE_SEARCH_NOTE_T_NOTE_SEARCH_NOTE_TBNOTE_SEARCH_STRING_TTONOTE_SEARCH_STRING_LEADNOTE_PRINT_OK_PBEADNOTE_PRINT_CANCL_PBNOTE_PRINT_HELP_PBDNOTE_PRINT_INVOK_WIDGT_PBILNOTE_PRINT_INCL_HEADER_TBPDNOTE_PRINT_INCL_REPLY_TBMENNOTE_PRINT_MARK_SEEN_TBNOTE_PRINT_OPTIONS_LOTENOTE_PRINT_UNSEEN_TBOTENOTE_MAIL_MEMBERS_TBLNNOTE_MAIL_MODERATORS_TBNOTE_MAIL_OK_PBNOTE_MAIL_OPERATION_LY_NOTE_MAIL_OPERATION_RB_NOTE_MAIL_SEND_TBHENOTE_MAIL_SUBJECT_TNOTE_MAIL_SUBJECT_TBSPLNOTE_MAIL_TO_LBNOTE_MAIL_TO_RBNOTE_MAIL_USERNAME_TBERNOTE_MAIL_USERNAME_TBY_NOTE_MODIFY_ATTRIB_LHORNOTE_MODIFY_CANCL_PB_AUNOTE_MODIFY_CONFERENCE_T_CANOTE_MODIFY_CONFERENCE_TBT_NOTE_MODIFY_HELP_PBNOTE_MODIFY_HIDDEN_TBMANOTE_MODIFY_KEYWORDS_TANOTE_MODIFY_KEYWORDS_TBNOTE_MODIFY_NEW_NOTEID_TBERNOTE_MODIFY_NEW_NOTEID_TBTNOTE_MODIFY_NOTEID_L_TBNOTE_MODIFY_NOTEID_TES_NOTE_MODIFY_OK_PBNONOTE_MODIFY_REPLIES_TBKNOTE_MODIFY_SHOW_PBNOTE_MODIFY_TITLE_TNOTE_MODIFY_TITLE_TBEATNOTE_PRINT_AUTHOR_TNOTE_PRINT_AUTHOR_TBOTENOTE_PRINT_BEFORE_TNOTE_PRINT_BEFORE_TBARKNOTE_PRINT_KEYWORD_TE_TNOTE_PRINT_KEYWORD_TBENNOTE_PRINT_RANGE_L_NOTE_PRINT_RANGE_T_NOTE_PRINT_RANGE_TBNOTE_PRINT_SELECTION_L_NOTE_PRINT_SINCE_TENOTE_PRINT_SINCE_TBNOTE_PRINT_TITLE_TENOTE_PRINT_TITLE_TBOBJECT_ADD_APPLY_PBOBJECT_ADD_CANCL_PBOBJECT_ADD_FILE_LREOBJECT_ADD_FILE_TTEOBJECT_ADD_HELP_PBKOBJECT_ADD_OBJECT_LOBJECT_ADD_OBJECT_TOBJECT_ADD_OK_PBOTEOBJECT_DELETE_APPLY_PBPOBJECT_DELETE_CANCL_PB_OBJECT_DELETE_HELP_PBR_OBJECT_DELETE_OBJECT_L_OBJECT_DELETE_OBJECT_T_OBJECT_DELETE_OK_PBOBJECT_DISPLY_APPLY_PBLOBJECT_DISPLY_CANCL_PBCOBJECT_DISPLY_HELP_PBCTOBJECT_DISPLY_INFO_LACTOBJECT_DISPLY_INFO_UDCTOBJECT_DISPLY_OBJECT_LTOBJECT_DISPLY_OBJECT_TTOBJECT_MODIFY_APPLY_PBTOBJECT_MODIFY_CANCL_PBTOBJECT_MODIFY_FILE_LEXTOBJECT_MODIFY_FILE_TOTEOBJECT_MODIFY_HELP_PBTEOBJECT_MODIFY_OBJECT_LEOBJECT_MODIFY_OBJECT_TEOBJECT_MODIFY_OK_PBro|_LXH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_incl_reply_tbH DID x<NOTE_PRINT_INCL_HEADER_TBd_hfde`O8859d_filNOTES$DRM_WIDGET_CREATE<A!"C  Z Zhf NOTES$DRM_HELPR&NOTE_PRINT_INCL_REPLY_TBEEN_TH *߀& ISO8859-1Include Note HeaderH ,߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_incl_header_tbTH hI x<NOTE_PRINT_INVOK_WIDGT_PBd_hfde`O8859d_filNOTES$DRM_WIDGET_CREATE!" $ ` PU Z Zhf NOTES$DRM_HELPRhf0PRINTNOTES$DRM_PUSHBUTTON_ACTIVATENTNOTE_PRINT_OK_PBLTEH !<߀ ISO8859-1 Options...NH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 note_print_invok_widgt_pbH I 4NOTE_PRINT_HELP_PB1!" $  U xhf r rint_ ISONOTES$DRM_HELPret_lf!NOTE_PRINT_CANCL_PBNOTE_pH I p4NOTE_PRINT_CANCL_PBhfX"NOTES$DRM_WIDGET_CREATE!" $ X HU Z hf NT_CANNOTES$DRM_HELPRDD,$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1E"hf(0NOTES$DRM_PUSHBUTTON_ACTIVATECT'NOTE_PRINT_INVOK_WIDGT_PBTEH ߀ ISO8859-1 Cancel  reH  p߀ ISO8859-1 Cancel_pbntH lIl p4NOTE_PRINT_OK_PBPBhfX"NOTES$DRM_WIDGET_CREATE !" !# " \U Z hf TES$DRNOTES$DRM_HELP0hf<TES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATENT鮈H ߀ ISO8859-1 OK H X ߀ ISO8859-1OK_pb_LH " ߀ ISO8859-1 Print NotesH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db88H  I t8READ_FILE_DDIF_PRINT_DBhfle\o ISO readNOTES$DRM_WIDGET_CREATE ;F H  d @ 0IZ DhfR DRM_HNOTES$DRM_HELPDTE#NOTE_DDIF_PRINT_OK_PB&NOTE_DDIF_PRINT_CANCL_PBNChT< NOTE_DDIF_PRINT_HELP_PBNOTE_DDIF_PRINT_CANCL_PBDNOTE_DDIF_PRINT_WIDGT_PBNOTE_DDIF_PRINT_OK_PBNOTE_DDIF_PRINT_LTNOTE_DDIF_PRINT_NBR_LO߀H    I  t8NOTE_DDIF_PRINT_NBR_LBhfle\ ISO readNOTES$DRM_WIDGET_CREATE A!A Z hf@ NOTES$DRM_HELP 88H :,߀6 ISO8859-1#DDIF notes converted to PostScript.(`߀$ ISO8859-1Extract DDIF NoteSO8859-1 read_work_dbx_PB ro|` DH ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 read_file_ddif_print_db ISO8859-1 note_ddif_print_nbr_lH  I 4NOTE_DDIF_PRINT_L-1 A!C  Z xhf r rint_ ISONOTES$DRM_HELPidb9-#NOTE_DDIF_PRINT_NBR_LSOH C߀? ISO8859-1,Select a PostScript printer using Options...|H I x<NOTE_DDIF_PRINT_WIDGT_PBionhf`! NOTES$DRM_WIDGET_CREATE!" $ h XU Z hfNO INT_NNOTES$DRM_HELPTEhfHE8NOTES$DRM_PUSHBUTTON_ACTIVATEIN#NOTE_DDIF_PRINT_OK_PB88H !X߀ ISO8859-1 Options...9H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 read_file_ddif_print_db ISO8859-1 note_ddif_print_widgt_pbH ,I 8NOTE_DDIF_PRINT_HELP_PB!" $  U |hfd_ _dbO8859NOTES$DRM_HELPdl &NOTE_DDIF_PRINT_CANCL_PBNOTERIH ,I x<NOTE_DDIF_PRINT_CANCL_PBhf` $NOTES$DRM_WIDGET_CREATE!" $ h XU Z hf F_PRI_PBNOTES$DRM_HELPTEhfHE8NOTES$DRM_PUSHBUTTON_ACTIVATEIN&NOTE_DDIF_PRINT_WIDGT_PBH 8߀ ISO8859-1 Cancel  H  ߀ ISO8859-1 Cancel_pbH xIx t8NOTE_DDIF_PRINT_OK_PBPBhff\NOTES$DRM_WIDGET_CREATE !" !#" hU $Z hfI NOTELPNOTES$DRM_HELPEhfHNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATE_DH D߀ ISO8859-1 OK |H  ߀ ISO8859-1OK_pbM_H ' ߀# ISO8859-1Print DDIF NotesT_UH 4 ߀ ISO8859-1 read_menu_bar ISO8859-1 read_file_pde ISO8859-1 read_file_print2_pb ISO8859-1 read_file_print_db ISO8859-1 read_file_ddif_print_dbISOH p I p4READ_NOTE_SEARCH_DBhfd_Xp-1 NOTES$DRM_WIDGET_CREATE ;F H  ` < ,IZ Ihf  ES$DRNOTES$DRM_HELPT!NOTE_SEARCH_FIND_PBON_ACT"NOTE_SEARCH_CANCL_PBNT_WI x`L4DLNOTE_SEARCH_HELP_PBNOTE_SEARCH_CANCL_PBIDGNOTE_SEARCH_FINDNEXT_PBNOTE_SEARCH_FIND_PBNOTE_SEARCH_IN_NEW_TBT_NOTE_SEARCH_NOTE_TNOTE_SEARCH_NOTE_TBNOTE_SEARCH_STRING_TT_HNOTE_SEARCH_STRING_LNCL_PH  D I 8NOTE_SEARCH_STRING_Lf A!A Z |hfF NOTES$DRM_HELPH $(߀  ISO8859-1 Search StringEN_TBNOTE_P_pH & ߀" ISO8859-1Include Replies1 note_modify_new_noteid_tb_NOTE_SETSEEN_PBFILREAD_WORK_KP7_SELECT_PBREAD_WORK_SELECT_CONF_PBi ro|a4$H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_search_pb ISO8859-1 read_note_search_db ISO8859-1 note_search_string_lH I t8NOTE_SEARCH_STRING_T chfnf\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hfI   NOTES$DRM_HELPRhfHeTNONOTES$DRM_VALUE_CHANGED"NOTE_SEARCH_STRING_LNT_WI"NOTE_SEARCH_STRING_L59H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_search_pb ISO8859-1 read_note_search_db ISO8859-1 note_search_string_lH |I| p4NOTE_SEARCH_NOTE_TBhff_X-1 NOTES$DRM_WIDGET_CREATE<A!"C X H` Z hf NOTES$DRM_HELPDRhfR0HNOTES$DRM_VALUE_CHANGEDE_"NOTE_SEARCH_STRING_TTRING IH !\߀ ISO8859-1 Note-rangeH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_search_pb ISO8859-1 read_note_search_db ISO8859-1 note_search_note_tbH ` I` p4NOTE_SEARCH_NOTE_T1hff_X-1 NOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z hf RM_HENOTES$DRM_HELP0!NOTE_SEARCH_NOTE_TBDRM_VA!NOTE_SEARCH_NOTE_TBH ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_search_pb ISO8859-1 read_note_search_db ISO8859-1 note_search_note_tbEH @dI@ t8NOTE_SEARCH_IN_NEW_TB chfnf\ ISO readNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf  NOTES$DRM_HELPR NOTE_SEARCH_NOTE_TH )4߀% ISO8859-1Read in New WindowH  ߀ ISO8859-1 confEV\^$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1`"_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_search_pb ISO8859-1 read_note_search_db ISO8859-1 note_search_in_new_tbH  I t8NOTE_SEARCH_FINDNEXT_PBhfnf\ ISO readNOTES$DRM_WIDGET_CREATE!" $ \ LU Z Zhf NOTES$DRM_HELPRhf,NONOTES$DRM_PUSHBUTTON_ACTIVATE_S!NOTE_SEARCH_FIND_PBNG_LN;H  ߀ ISO8859-1 Find NextH ( ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_search_pb ISO8859-1 read_note_search_db ISO8859-1 note_search_findnext_pbPBH \ I 4NOTE_SEARCH_HELP_PB!" $  U xhf r earch ISNOTES$DRM_HELPs_pl"NOTE_SEARCH_CANCL_PBES$DRH 0 I t8NOTE_SEARCH_CANCL_PBhf\ $NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NOTE_ANCL_NOTES$DRM_HELPRhf,NONOTES$DRM_PUSHBUTTON_ACTIVATE_S%NOTE_SEARCH_FINDNEXT_PBNT_WISO8859-1 read_work_dbx_PB ro|b|tH ߀ ISO8859-1 Cancel  BH  ߀ ISO8859-1 Cancel_pb H l4Il p4NOTE_SEARCH_FIND_PBhffXNOTES$DRM_WIDGET_CREATE !" !#" \U Z hf_ L_NOTELPRNOTES$DRM_HELPhf<NONOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATE_SPH h߀ ISO8859-1 Find H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_search_pb ISO8859-1 read_note_search_db ISO8859-1 note_search_find_pb H #߀ ISO8859-1 Search Notes @H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_search_pb ISO8859-1 read_note_search_dbTH h Ih t8READ_NOTE_SETSEEN_DB chfnf\q ISO readNOTES$DRM_WIDGET_CREATE ;F H  ` @ 0IZ ThfE DRM_HNOTES$DRM_HELPTTE NOTE_SETSEEN_OK_PB#NOTE_SETSEEN_CANCL_PBT_WI_SRCNX@(NOTE_SETSEEN_HELP_PBNOTE_SETSEEN_CANCL_PBH_NOTE_SETSEEN_OK_PB_NOTE_SETSEEN_SINCE_TCH_NOTE_SETSEEN_BEFORE_TH_NOTE_SETSEEN_RBE_H `I` 0NOTE_SETSEEN_RB ;F A!"A? /Z hf  @NOTES$DRM_HELPfE H0TNOTE_SETSEEN_ALL_TBNOTE_SETSEEN_SINCE_TBNOTE_SETSEEN_BEFORE_TBT_H 4DI4 t8NOTE_SETSEEN_BEFORE_TBhf\ NOTES$DRM_WIDGET_CREATE< $` Z hf ES$DRNOTES$DRM_HELPhff  NOTES$DRM_VALUE_CHANGEDTEXTH ߀ ISO8859-1BeforeTH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_setseen_pb ISO8859-1 read_note_setseen_db ISO8859-1 note_setseen_before_tbBH @0 I@ t8NOTE_SETSEEN_SINCE_TB chfnf\ ISO readNOTES$DRM_WIDGET_CREATE< 0<` Z ethfef ES$DRM_HENOTES$DRM_HELP hf RM_VANOTES$DRM_VALUE_CHANGEDINTBH  ߀ ISO8859-1SinceS_H X ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_setseen_pb ISO8859-1 read_note_setseen_db ISO8859-1 note_setseen_since_tbE_H < I< p4NOTE_SETSEEN_ALL_TBhff_X-1 NOTES$DRM_WIDGET_CREATE< ,<` Z tehfen RNOTES$DRM_HELPEhffRNOTES$DRM_VALUE_CHANGED_TH  \ ߀ ISO8859-1 All NotesTEH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_setseen_pb ISO8859-1 read_note_setseen_db ISO8859-1 note_setseen_all_tbH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_setseen_pb ISO8859-1 read_note_setseen_db ISO8859-1 note_setseen_rbW_RNOTE_EXTRACT_TITLE_TBTENOTE_EXTRACT_UNSEEN_TBNOTE_MAIL_AUTHOR_TBNOTE_MAIL_CANCL_PBNOTE_MAIL_FORWARD_TBl ro|c(,H \I\ t8NOTE_SETSEEN_BEFORE_T chfnf\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3C <$ Z DRhfE NOTES$DRM_HELPDRNOTE_SETSEEN_RBNOTE_SETSEEN_RBEFORE_H ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_setseen_pb ISO8859-1 read_note_setseen_db ISO8859-1 note_setseen_before_tbsH tpIt t8NOTE_SETSEEN_SINCE_T chfnf\ ISO readNOTES$DRM_WIDGET_CREATE 6AB!" 3AC PB $ 0Z hf TES$DNOTES$DRM_HELPSENOTE_SETSEEN_RB_SETSE#NOTE_SETSEEN_BEFORE_TETSEH D߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_setseen_pb ISO8859-1 read_note_setseen_db ISO8859-1 note_setseen_since_tbe_H I 8NOTE_SETSEEN_HELP_PB c!" $  U |hfad een_d ISO8NOTES$DRM_HELPtl#NOTE_SETSEEN_CANCL_PBH |I| t8NOTE_SETSEEN_CANCL_PB chf\"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf NEEN_CNOTES$DRM_HELPhf,HELPNOTES$DRM_PUSHBUTTON_ACTIVATE_SNO NOTE_SETSEEN_OK_PBNCLH ߀ ISO8859-1 Cancel H  8߀ ISO8859-1 Cancel_pbEH llIl p4NOTE_SETSEEN_OK_PBPhffX"NOTES$DRM_WIDGET_CREATE !" !#" \U Z hfN _CNOTELPNOTES$DRM_HELPhf<NOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATENO_ShH ߀ ISO8859-1 OK H  ߀ ISO8859-1OK_pbH T ߀ ISO8859-1Set SeenTIVH  ߀ ISO8859-1 conf_menu_bar ISO8859-1 conf_conf_pde ISO8859-1 read_note_setseen_pb ISO8859-1 read_note_setseen_dbDIFH  I t8READ_NOTE_READ_NOTE_DBchfnf\r ISO readNOTES$DRM_WIDGET_CREATE ;F H  h @ 0IZ ThfE DRM_HNOTES$DRM_HELPTTE'READ_NOTE_READ_NOTE_OK_PB'READ_NOTF2 $ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;16"E_READ_NOTE_CL_PBN|`D( TREAD_NOTE_READ_NOTE_HELP_PBREAD_NOTE_READ_NOTE_CL_PB_READ_NOTE_READ_NOTE_OK_PBTEREAD_NOTE_READ_IN_NEW_TBSETREAD_NOTE_READ_NOTE_ID_TOTEREAD_NOTE_READ_NOTE_ID_LCH_H  d I <READ_NOTE_READ_NOTE_ID_Lf A!A Z hfF NOTES$DRM_HELPNOH  ߀ ISO8859-1Note-idH  ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_noteid_pb ISO8859-1 read_note_read_note_db ISO8859-1 read_note_read_note_id_lO8859-1 Search StringEN_TBNOTE_P_pH & ߀" ISO8859-1Include Replies1 note_modify_new_noteid_tb_NOTE_SETSEEN_PBFILREAD_WORK_KP7_SELECT_PBREAD_WORK_SELECT_CONF_PBi ro|dL$H I x<READ_NOTE_READ_NOTE_ID_Tad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ d` (Z hf_l  NOTES$DRM_HELPRhfTLfTRENOTES$DRM_VALUE_CHANGED&READ_NOTE_READ_NOTE_ID_LL_PB&READ_NOTE_READ_NOTE_ID_L|H ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_noteid_pb ISO8859-1 read_note_read_note_db ISO8859-1 read_note_read_note_id_lISOH LIL x<READ_NOTE_READ_IN_NEW_TBad_hfde`O8859d_notNOTES$DRM_WIDGET_CREATE<A!"C $ <Z hfad _note NOTES$DRM_HELPHE&READ_NOTE_READ_NOTE_ID_TREH )߀% ISO8859-1Read in New WindowPH ,߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_noteid_pb ISO8859-1 read_note_read_note_db ISO8859-1 read_note_read_in_new_tbconH hI <READ_NOTE_READ_NOTE_HELP_PB!" $  U hfe_ d_pbSO885NOTES$DRM_HELP_l 'READ_NOTE_READ_NOTE_CL_PBS$DR6H lI x<READ_NOTE_READ_NOTE_CL_PBBhf`"NOTES$DRM_WIDGET_CREATE!" $ ` PU Z hf R_READNOTES$DRM_HELPRhfHE0RENOTES$DRM_PUSHBUTTON_ACTIVATETEAN'READ_NOTE_READ_NOTE_OK_PB_LL9-H |߀ ISO8859-1 Cancel @H  ߀ ISO8859-1 Cancel_pbhH tLIt x<READ_NOTE_READ_NOTE_OK_PBBhf`"NOTES$DRM_WIDGET_CREATE !" !#" dU Z hf TES$DRNOTES$DRM_HELPhfDTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATEE_59H ߀ ISO8859-1 OK earH  ߀ ISO8859-1OK_pbH #< ߀ ISO8859-1 Read Note-idH l ߀ ISO8859-1 read_menu_bar ISO8859-1 read_note_pde ISO8859-1 read_note_read_pde ISO8859-1 read_note_read_noteid_pb ISO8859-1 read_note_read_note_dbH   I h ,READ_POPUPIhf-1Pte_pd ISO8NOTES$DRM_WIDGET_CREATE;F ( Z hfIS read_d_notNOTES$DRM_HELP READ_POPUP_NOTE_PBRHE fx`TLB8AAB_READ_POPUP_CLOSE_CONF_PBREAD_POPUP_DISMISS_PBMAIN_SEPARATOR_SPREAD_POPUP_PRINT_PBREAD_POPUP_CREATE_TOPIC_PBNREAD_POPUP_CREATE_REPLY_PBNMAIN_SEPARATOR_SPOTREAD_POPUP_NOTE_PBTREAD_POPUP_LAST_NOTE_PBREAD_POPUP_BACK_PDEREAD_POPUP_NEXT_PDEREAD_POPUP_NEXT_UNSEEN_PBTEH l| Il x<READ_POPUP_NEXT_UNSEEN_PBhfd`sO8NOTIDGETNOTES$DRM_WIDGET_CREATE* \ L <U Z hfot HELPNOTES$DRM_HELPEPBhfHE NOTES$DRM_PUSHBUTTON_ACTIVATE=SO8859-1 read_work_dbx_PB ro|eTH "߀ ISO8859-1 Next UnseenH N߀J ISO8859-1 read_popup ISO8859-1 read_popup_next_unseen_pbH 4I 4READ_POPUP_NEXT_PDE@ ;F *  Z hf <NOTES$DRM_HELPHE*EPB!READ_POPUP_NEXT_PDMSHH I 4`READ_POPUP_NEXT_PDM;F PREAD_POPUP_NEXT_TOPIC_PB_HEREAD_POPUP_NEXT_REPLY_PBREAD_POPUP_NEXT_NOTE_PBREAD_POPUP_NEXT_PAGE_PBeaH hIh t8READ_POPUP_NEXT_PAGE_PBhf\u PNOTES$DRM_WIDGET_CREATE* X H 8U Z PBhfAD T_REPREADNOTES$DRM_HELPE_NhfGE_POPUDMNOTES$DRM_PUSHBUTTON_ACTIVATEATFH  0xFF56:H sT߀o ISO8859-1 read_popup ISO8859-1 read_popup_next_pde ISO8859-1 read_popup_next_page_pbH LtIL t8READ_POPUP_NEXT_NOTE_PBhfex\t IS reaNOTES$DRM_WIDGET_CREATE* < ,U Z hf AD_REPNOTES$DRM_HELPEhf GEPOPUNOTES$DRM_PUSHBUTTON_ACTIVATEON`H s߀o ISO8859-1 read_popup ISO8859-1 read_popup_next_pde ISO8859-1 read_popup_next_note_pbH l\Il x<READ_POPUP_NEXT_REPLY_PBpuphfpd`vSO885ad_poNOTES$DRM_WIDGET_CREATE* \ L <U Z hf PNOTELPENOTES$DRM_HELPhfUNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATEH  0xFFB3:H td߀p ISO8859-1 read_popup ISO8859-1 read_popup_next_pde ISO8859-1 read_popup_next_reply_pbH lIl x<READ_POPUP_NEXT_TOPIC_PBpuphfpd`wSO885ad_poNOTES$DRM_WIDGET_CREATE* \ L <U Z hf PNOTELPENOTES$DRM_HELPhfUNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATESH  0xFFB2:H t ߀p ISO8859-1 read_popup ISO8859-1 read_popup_next_pde ISO8859-1 read_popup_next_topic_pbS$H  I 4READ_POPUP_BACK_PDE@ ;F *  Z hf <NOTES$DRM_HELPPE!READ_POPUP_BACK_PDMUSHBUH 4 I 4`READ_POPUP_BACK_PDM;F PREAD_POPUP_BACK_TOPIC_PB_HEREAD_POPUP_BACK_REPLY_PBREAD_POPUP_BACK_NOTE_PBREAD_POPUP_BACK_PAGE_PBH hd Ih t8READ_POPUP_BACK_PAGE_PBhf\y PNOTES$DRM_Gc*$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1Y"(WIDGET_CREATE* X H 8U Z PBhfAD K_REPREADNOTES$DRM_HELPE_BhfGE_POPUDMUNOTES$DRM_PUSHBUTTON_ACTIVATEATF59H  x 0xFF55:5H s߀o ISO8859-1 read_popup ISO8859-1 read_popup_back_pde ISO8859-1 read_popup_back_page_pbOTE_EXTRACT_UNSEEN_TBNOTE_MAIL_AUTHOR_TBNOTE_MAIL_CANCL_PBNOTE_MAIL_FORWARD_TBl ro|f H LIL t8READ_POPUP_BACK_NOTE_PBhfac\x IS reaNOTES$DRM_WIDGET_CREATE* < ,U Z hf AD_REPNOTES$DRM_HELPEhf GEPOPUNOTES$DRM_PUSHBUTTON_ACTIVATEONaH s߀o ISO8859-1 read_popup ISO8859-1 read_popup_back_pde ISO8859-1 read_popup_back_note_pbHH l`Il x<READ_POPUP_BACK_REPLY_PBpuphfpd`zSO885ad_poNOTES$DRM_WIDGET_CREATE* \ L <U Z hf PNOTELPENOTES$DRM_HELPhfUNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATElH  0xFFB1:TH th߀p ISO8859-1 read_popup ISO8859-1 read_popup_back_pde ISO8859-1 read_popup_back_reply_pbTBH lIl x<READ_POPUP_BACK_TOPIC_PBpuphfpd`{SO885ad_poNOTES$DRM_WIDGET_CREATE* \ L <U Z hf PNOTELPENOTES$DRM_HELPhfUNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATESNFH  0xFFB5:H t߀p ISO8859-1 read_popup ISO8859-1 read_popup_back_pde ISO8859-1 read_popup_back_topic_pbTEH hIh t8READ_POPUP_LAST_NOTE_PBhfac\| IS reaNOTES$DRM_WIDGET_CREATE* X H 8U Z hff PENOTES$DRM_HELPEhffUUNOTES$DRM_PUSHBUTTON_ACTIVATEATENH %8߀! ISO8859-1Last Read NoteEH  0xFFAD:DH L߀H ISO8859-1 read_popup ISO8859-1 read_popup_last_note_pbE_H P IP x<READ_POPUP_CREATE_REPLY_PBphfno`~SaNOTENOTES$DRM_WIDGET_CREATE* @ 0U Z hf NOTES$DRM_HELPRhfNOTES$DRM_PUSHBUTTON_ACTIVATECTTEH #l߀ ISO8859-1 Create ReplyON_H M ߀I ISO8859-1 read_popup ISO8859-1 read_popup_crea_reply_pbOH P IP x<READ_POPUP_CREATE_TOPIC_PBphfre`SaNOTENOTES$DRM_WIDGET_CREATE* @ 0U Z hf NOTES$DRM_HELPRhfNOTES$DRM_PUSHBUTTON_ACTIVATECTSTEH #h ߀ ISO8859-1 Create TopicHOWH M ߀I ISO8859-1 read_popup ISO8859-1 read_popup_crea_topic_pbEH H IH p4READ_POPUP_PRINT_PBhfupXc_pbNOTES$DRM_WIDGET_CREATE* 8 (U Z hf NOTES$DRM_HELPRhfNOTES$DRM_PUSHBUTTON_ACTIVATECTFP_H d ߀ ISO8859-1PrintJEH H ߀D ISO8859-1 read_popup ISO8859-1 read_popup_print_pbJEH L IL t8READ_POPUP_DISMISS_PB_phfri\NOTENOTES$DRM_WIDGET_CREATE* < ,U Z hf NOTENOTES$DRM_HELPfhf NOTENOTES$DRM_PUSHBUTTON_ACTIVATEPTEH #L߀ ISO8859-1 Close WindowT_MODIFY_OK_PBro|gH J߀F ISO8859-1 read_popup ISO8859-1 read_popup_dismiss_pbH PIP x<READ_POPUP_CLOSE_CONF_PBpuphfss`ENOTENOTES$DRM_WIDGET_CREATE* @ 0U Z hf ENOTENOTES$DRM_HELPfhf ENOTENOTES$DRM_PUSHBUTTON_ACTIVATE`coH '\߀# ISO8859-1Close Conference885H M߀I ISO8859-1 read_popup ISO8859-1 read_popup_close_conf_pbH dId p4READ_POPUP_NOTE_PBehfupX}f_pbNOTES$DRM_WIDGET_CREATE* T D 4U Z fhf ENOTENOTES$DRM_HELPfhfENOTENOTES$DRM_PUSHBUTTON_ACTIVATEH !\߀ ISO8859-1 Note-id...H G߀C ISO8859-1 read_popup ISO8859-1 read_popup_note_pbd_nH !߀ ISO8859-1 read_popupeH  dI ,EDIT_WINDOW;F %Z \hfWI E TNOTES$DRM_HELPfEDIT_WORK_DBPEDIT_MENU_BARfANH  8I8 0EDIT_MENU_BAR;F -' Z lhf TNOTELPNOTES$DRM_HELPfMAIN_HELP_PDEDBE(fMAIN_HELP_PDETEEDIT_EDIT_PDEONEDIT_FILE_PDENOH TIT 0EDIT_FILE_PDE@ 8;F ( *  W Z hf HELPNOTES$DRM_HELPAhf(NOTES$DRM_MENU_PULLINGTEONEDIT_FILE_PDMH hIh 0\EDIT_FILE_PDM;F LT<Z(fTEDIT_FILE_CANCL_PBMAIN_SEPARATOR_SPEDIT_FILE_USEF_PB_PEDIT_FILE_INCL_PBEDIT_FILE_SAVEAS_PBMAIN_SEPARATOR_SPEDIT_FILE_ATTRIBUTE_PBEDIT_FILE_ENTER_PB߀H |PI| p4EDIT_FILE_ENTER_PBhfXy LNOTES$DRM_WIDGET_CREATE* l \ L <U Z hf IT_FI_PBNOTES$DRM_HELPSUShf_PINCL_T_FILNOTES$DRM_PUSHBUTTON_ACTIVATEIBIL3 H ! ߀ ISO8859-1 Enter Note_H \ ߀ ISO8859-1Ctrl/ZH  Ctrlz:'H k ߀g ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_enter_pbH L IL t8EDIT_FILE_ATTRIBUTE_PBihf_p\zISO88dit_fNOTES$DRM_WIDGET_CREATE* < ,U Z hfZ fITNOTES$DRM_HELPShf f_INNOTES$DRM_PUSHBUTTON_ACTIVATEBU6IBH )` ߀% ISO8859-1Note Attributes... H o ߀k ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_attribute_pbeH H IH p4EDIT_FILE_SAVEAS_PBhffiX I edNOTES$DRM_WIDGET_CREATE* 8 (U Z hff fNOTES$DRM_HELPEhfffNOTES$DRM_PUSHBUTTON_ACTIVATEAT#ORK_SELECT_CONF_PBi HGf$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1h/"9ro|h H !߀ ISO8859-1 Save As...H l߀h ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_saveas_pb H H4IH p4EDIT_FILE_INCL_PBhffiX I edNOTES$DRM_WIDGET_CREATE* 8 (U Z hff fNOTES$DRM_HELPEhfffNOTES$DRM_PUSHBUTTON_ACTIVATEATH IH &߀" ISO8859-1Include File...H j$߀f ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_incl_pbH H\IH p4EDIT_FILE_USEF_PBhffiX I edNOTES$DRM_WIDGET_CREATE* 8 (U Z hff fNOTES$DRM_HELPEhfffNOTES$DRM_PUSHBUTTON_ACTIVATEAT=H +߀' ISO8859-1Use Existing File...:H j4߀f ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_usef_pbH HtIH p4EDIT_FILE_CANCL_PBhffiX I edNOTES$DRM_WIDGET_CREATE* 8 (U Z hff fNOTES$DRM_HELPEhfffNOTES$DRM_PUSHBUTTON_ACTIVATEAT H #߀ ISO8859-1 Cancel Enter reH kL߀g ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_cancl_pb H ߀ ISO8859-1FilephH E߀A ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pdeH T4IT 0EDIT_EDIT_PDE59@ 8;F ( *  W Z hf NOTES$DRM_HELPDRhfE NOTES$DRM_MENU_PULLINGBUATEDIT_EDIT_PDMd_H dId 0\EDIT_EDIT_PDM59;F LP<Z(fTEDIT_EDIT_SELECT_PBMAIN_SEPARATOR_SPEDIT_EDIT_CLEAR_PBPEDIT_EDIT_PASTE_PBEDIT_EDIT_COPY_PBATEDIT_EDIT_CUT_PBMAIN_SEPARATOR_SPMEDIT_EDIT_UNDO_PBH HIH p4EDIT_EDIT_UNDO_PBhfXI LNOTES$DRM_WIDGET_CREATE* 8 (U Z hf NOTES$DRM_HELPTAThfCLEART_EDINOTES$DRM_PUSHBUTTON_ACTIVATEATPB=ATH !l ߀ ISO8859-1 Undo ClearPH j ߀f ISO8859-1 edit_menu_bar ISO8859-1 edit_edit_pde ISO8859-1 edit_edit_undo_pbH | I| p4EDIT_EDIT_CUT_PB1hfedXF I edNOTES$DRM_WIDGET_CREATE* l \ L <U Z hf TES$DTNOTES$DRM_HELPCLhfTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATE_SUNv*H x ߀ ISO8859-1CutH  ߀ ISO8859-1 Shift+RemM_H 4Shift0x1000FF00:H ih߀e ISO8859-1 edit_menu_bar ISO8859-1 edit_edit_pde ISO8859-1 edit_edit_cut_pb0xFF55:5H s߀o ISO8859-1 read_popup ISO8859-1 read_popup_back_pde ISO8859-1 read_popup_back_page_pbOTE_EXTRACT_UNSEEN_TBNOTE_MAIL_AUTHOR_TBNOTE_MAIL_CANCL_PBNOTE_MAIL_FORWARD_TBl ro|ixH |I| p4EDIT_EDIT_COPY_PBhfedXD I edNOTES$DRM_WIDGET_CREATE* l \ L <U Z hf TES$DTNOTES$DRM_HELPCLhfTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATE_SUN upH ߀ ISO8859-1Copy IH j߀f ISO8859-1 edit_menu_bar ISO8859-1 edit_edit_pde ISO8859-1 edit_edit_copy_pbH |I| p4EDIT_EDIT_PASTE_PBhfedXG I edNOTES$DRM_WIDGET_CREATE* l \ L <U Z hf TES$DTNOTES$DRM_HELPCLhfTES$DUTTONNOTES$DRM_PUSHBUTTON_ACTIVATEj_SjUNjF H <߀ ISO8859-1PastepuH  ߀ ISO8859-1 Shift+Ins H Shift0xFF63:H k0߀g ISO8859-1 edit_menu_bar ISO8859-1 edit_edit_pde ISO8859-1 edit_edit_paste_pbH HTIH p4EDIT_EDIT_CLEAR_PBhfedXH I edNOTES$DRM_WIDGET_CREATE* 8 (U Z hf hf NOTES$DRM_HELPTjHEhfCLhfNOTES$DRM_PUSHBUTTON_ACTIVATEPUjAT jicH ߀ ISO8859-1ClearH k0߀g ISO8859-1 edit_menu_bar ISO8859-1 edit_edit_pde ISO8859-1 edit_edit_clear_pb H H`IH p4EDIT_EDIT_SELECT_PBhfedXE I edNOTES$DRM_WIDGET_CREATE* 8 (U Z hf hf NOTES$DRM_HELPTjHEhfCLhfNOTES$DRM_PUSHBUTTON_ACTIVATEPUjAT#jupH !߀ ISO8859-1 Select All H l<߀h ISO8859-1 edit_menu_bar ISO8859-1 edit_edit_pde ISO8859-1 edit_edit_select_pb_CH p߀ ISO8859-1EditH E߀A ISO8859-1 edit_menu_bar ISO8859-1 edit_edit_pdeH $ ߀  ISO8859-1 edit_menu_barH Hx IH l$0EDIT_WORK_DB859hfdiTx59-1NOTES$DRM_WIDGET_CREATE ;F 1EHZ HEhf HEhfNOTES$DRM_HELPjPUAT PU4 j BEDIT_WORK_TEXTDEDIT_WORK_KEYWORD_TEDIT_WORK_KEYWORD_LEDIT_WORK_TITLE_TATEDIT_WORK_TITLE_L_PEDIT_WORK_AUTHOR_TCEDIT_WORK_DATE_LEADEDIT_WORK_DATE_TLY_EDIT_WORK_AUTHOR_LSH   I 4EDIT_WORK_AUTHOR_L A!A Z xhfF NOTES$DRM_HELPjj H  ߀ ISO8859-1Author:H h ߀d ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_author_lIVH  I p4EDIT_WORK_DATE_T ehfrkX ISO8edit_NOTES$DRM_WIDGET_CREATE;6EAB34D=Y \ \Z hf< LNOTES$DRM_HELPj hfNOTES$DRM_LOST_FOCUShfORIT_WORD_TNOTES$DRM_FOCUSSHH f ߀b ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_date_lro|ji0iii`i0ipi<ki i ixkhk(kkk|k4k k k kl l llpl4l l l l mmdm4mll`l0mmmdm0mmmnxn@m| mD m m mmTnn(nnno o n n n n o@o ooooool o0 oT o p pp\ptpHpXp(pHpp0 p IYXt$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"Jro|kH  I p4EDIT_WORK_DATE_L ehfrkX ISO8edit_NOTES$DRM_WIDGET_CREATE AB34d Z Bhf 4NOTES$DRM_HELPj j H .߀* ISO8859-131-DEC-1992 23:59:59.99H f(߀b ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_date_lH hI p4EDIT_WORK_AUTHOR_TehfrkX ISO8edit_NOTES$DRM_WIDGET_CREATE;6E!"AB35 4D=Y \ pZ ,hfP `TES$DNOTES$DRM_HELPj hfTES$DFOCUSNOTES$DRM_LOST_FOCUSIThfTES$DD_LNOTES$DRM_FOCUSEDIT_WORK_DATE_LT_WOR88H h߀d ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_author_lH  I 4EDIT_WORK_TITLE_L e A!"dC  Z hf ;NOTES$DRM_HELPjj EDIT_WORK_AUTHOR_TEDH p߀ ISO8859-1Title:H g|߀c ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_title_l H I p4EDIT_WORK_TITLE_T ehfrkX ISO8edit_NOTES$DRM_WIDGET_CREATE6AB!" 3E$ "C 4Y \ HZ hf( 8\ NOTES$DRM_HELPjhflHELPjNOTES$DRM_LOST_FOCUSTEhfTES$DFOCUSNOTES$DRM_FOCUSEDIT_WORK_TITLE_LS$DREDIT_WORK_TITLE_LDATEH g(߀c ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_title_lH  4I 4EDIT_WORK_KEYWORD_L A!"dC  Z Ahf ! NOTES$DRM_HELPjj EDIT_WORK_TITLE_T H_FH  ߀ ISO8859-1 Keywords:pH i ߀e ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_keyword_lH  I p4EDIT_WORK_KEYWORD_ThfrkX ISO8edit_NOTES$DRM_WIDGET_CREATE6AB!" 3E$ "C 4Y \ HZ hf( 8\ NOTES$DRM_HELPjhflHELPjNOTES$DRM_LOST_FOCUSTEhfTES$DFOCUSNOTES$DRM_FOCUS!EDIT_WORK_KEYWORD_LDR!EDIT_WORK_KEYWORD_LT_WOR H il ߀e ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_keyword_lH  I l0EDIT_WORK_TEXT1hft_T 1 eNOTES$DRM_WIDGET_CREATEE!"AC B34D02Y \ dZ hf D THELPjNOTES$DRM_HELPjhfjLOST_EhfNOTES$DRM_LOST_FOCUShfUSFOCUSEDNOTES$DRM_FOCUS!EDIT_WORK_KEYWORD_TYWORD_H d ߀` ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_textH B߀> ISO8859-1 edit_window ISO8859-1 edit_work_db#ORK_SELECT_CONF_PBi ro|l$H "߀ ISO8859-1 edit_windowH DID p4EDIT_FILE_SAVEAS_DBhfrkXs ISO8edit_NOTES$DRM_WIDGET_CREATE ;F H  \ < ,IZ hf  \NOTES$DRM_HELPjDjEDIT_SAVEAS_OK_PB"EDIT_SAVEAS_CANCL_PBDRLOU,UFDEDIT_SAVEAS_HELP_PBEDIT_SAVEAS_CANCL_PBWOREDIT_SAVEAS_OK_PBOREDIT_SAVEAS_FILENAME_TAEDIT_SAVEAS_FILENAME_LRu_H  4I 8EDIT_SAVEAS_FILENAME_L A!A Z |hfF NOTES$DRM_HELPjjH ߀ ISO8859-1FilenameH p߀ ISO8859-1 edit_menu_bar ISO8859-1 ediJp7$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1Q\"[t_file_pde ISO8859-1 edit_file_saveas_pb ISO8859-1 edit_file_saveas_db ISO8859-1 edit_saveas_filename_lH H I t8EDIT_SAVEAS_FILENAME_Tehfle\ ISO editNOTES$DRM_WIDGET_CREATE 6AB!" 3C $ `` $Z hf   NOTES$DRM_HELPRjhfDHhjEDNOTES$DRM_VALUE_CHANGED$EDIT_SAVEAS_FILENAME_L$EDIT_SAVEAS_FILENAME_LUH x߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_saveas_pb ISO8859-1 edit_file_saveas_db ISO8859-1 edit_saveas_filename_lH H 4I 4EDIT_SAVEAS_HELP_PB!" $  U xhf e aveas ISNOTES$DRM_HELPsj_ll"EDIT_SAVEAS_CANCL_PB H |I| t8EDIT_SAVEAS_CANCL_PBhf\ $NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf EDIT_ANCL_NOTES$DRM_HELPjTEhfHE,jDNOTES$DRM_PUSHBUTTON_ACTIVATETEjANEDIT_SAVEAS_OK_PBLENAH  ߀ ISO8859-1 Cancel T_EH  ߀ ISO8859-1 Cancel_pbPBH l Il p4EDIT_SAVEAS_OK_PBPBhffXNOTES$DRM_WIDGET_CREATE !" !#" \U Z hf_ L_NOTELPNOTES$DRM_HELPEjhfj<DNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATEANj_S_EH  ߀ ISO8859-1 OK BH  ߀ ISO8859-1OK_pb88H & ߀" ISO8859-1Save Draft FileH  ߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_saveas_pb ISO8859-1 edit_file_saveas_dbH T IT p4EDIT_FILE_INCL_DB-1hft_Xt-1 NOTES$DRM_WIDGET_CREATE;F D1 4 $9 ,   IkV ] \Z hfj< LDNOTUSHBUNOTES$DRM_HELPUjANhfEAS_OAME_LNOTES$DRM_PUSHBUTTON_ACTIVATENAhfUFNOTES$DRM_PUSHBUTTON_ACTIVATELPjS_j ITj!ORj"LEj#AVj$ROP IH  ߀ ISO8859-1*.TXTopH #0߀ ISO8859-1 Include FilebH  `߀ ISO8859-1 SelectionAIL_CANCL_PBNOTE_MAIL_FORWARD_TBl ro|mpH ߀ ISO8859-1 OK EDH ߀ ISO8859-1FilterH 4߀ ISO8859-1 Cancel H d߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_incl_pb ISO8859-1 edit_file_incl_dbHH @I@ p4EDIT_FILE_USEF_DB-1hft_Xu-1 NOTES$DRM_WIDGET_CREATE;F 01  9 ,   ] V HZ hf\( 8hf LNOTES$DRM_HELPUj%HEhflANhfNOTES$DRM_PUSHBUTTON_ACTIVATEPUhfONNAhfNOTES$DRM_PUSHBUTTON_ACTIVATEPUj&ATj'jj(jj)jj*jj+jjH <߀ ISO8859-1*.TXTH (߀$ ISO8859-1Use Existing FilepuH  ߀ ISO8859-1 Selection H ߀ ISO8859-1 OK kH 0߀ ISO8859-1Filter8H d߀ ISO8859-1 Cancel _paH ߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_usef_pb ISO8859-1 edit_file_usef_dbH I t8EDIT_FILE_ATTRIBUTE_DBehfle\v ISO editNOTES$DRM_WIDGET_CREATE ;F H  ` @ 0IZ hf  (NOTES$DRM_HELPj,DRj-EDIT_ATTRIB_OK_PBhf"EDIT_ATTRIB_CANCL_PBN_ACTONNhDLO0PjEDIT_ATTRIB_HELP_PBEDIT_ATTRIB_CANCL_PBjEDIT_ATTRIB_OK_PBjEDIT_ATTRIB_CONFERENCE_TEDIT_ATTRIB_CONFERENCE_TBOPEDIT_ATTRIB_HIDDEN_TBOPEDIT_ATTRIB_REPLIES_TBNEH lI t8EDIT_ATTRIB_REPLIES_TBehfle\{ ISO editNOTES$DRM_WIDGET_CREATE<A!"A Z hf I NOTES$DRM_HELPj.j/DR-1H $߀  ISO8859-1 Allow RepliesH H D ߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_attribute_pb ISO8859-1 edit_file_attribute_db ISO8859-1 edit_attrib_replies_tbH D| ID t8EDIT_ATTRIB_HIDDEN_TB ehfle\| ISO editNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf ES$DRNOTES$DRM_HELPj0j1$EDIT_ATTRIB_REPLIES_TB_WH %T ߀! ISO8859-1Hide This NoteDH  ߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_attribute_pb ISO8859-1 edit_file_attribute_db ISO8859-1 edit_attrib_hidden_tbNOH  I x<EDIT_ATTRIB_CONFERENCE_TBt_hfde`}O8859t_filNOTES$DRM_WIDGET_CREATE<A!"C ` P` Z hf RNOTENOTES$DRM_HELPj2hfj8iEIB_RENOTES$DRM_VALUE_CHANGEDj3f#EDIT_ATTRIB_HIDDEN_TB_ACTH , ߀( ISO8859-1Pointer to ConferenceH T߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_attribute_pb ISO8859-1 edit_file_attribute_db ISO8859-1 edit_attrib_conference_tbM_FOCUSSHH f ߀b ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_date_lro|nT\H pIp x<EDIT_ATTRIB_CONFERENCE_Tit_hfde`~O8859t_filNOTES$DRM_WIDGET_CREATE 6AB!" 3C H$ Z hf RNOTRM_HENOTES$DRM_HELPj48'EDIT_ATTRIB_CONFERENCE_TBLUE_'EDIT_ATTRIB_CONFERENCE_TBIT_A IH ߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_attribute_pb ISO8859-1 edit_file_attribute_db ISO8859-1 edit_attrib_conference_tbATH I 4EDIT_ATTRIB_HELP_PB!" $  U xhf1 e_attbNOTES$DRM_HELP j,nfl "EDIT_ATTRIB_CANCL_PBRhH |`I| t8EDIT_ATTRIB_CANCL_PBhf\ $NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf EDIT_ANCL_NOTES$DRM_HELPj5DRhf,j48EDNOTES$DRM_PUSHBUTTON_ACTIVATEj6RIEDIT_ATTRIB_OK_PBDDENH d߀ ISO8859-1 Cancel H  ߀ ISO8859-1 Cancel_pb H l(Il p4EDIT_ATTRIB_OK_PBPBhffXNOTES$DRM_WIDGET_CREATE !K"T^#$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1"l" !#" \U Z hf_ L_NOTELPNOTES$DRM_HELPRj7hf8<EDNOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATERIj8_A"H \߀ ISO8859-1 OK H ߀ ISO8859-1OK_pbhH &߀" ISO8859-1Note AttributesH @߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_attribute_pb ISO8859-1 edit_file_attribute_db_TIH xI t8EDIT_FINISH_CREATE_DB ehfle\w ISO editNOTES$DRM_WIDGET_CREATE ;F H  d @ 0,IZ ThfE DRM_HNOTES$DRM_HELPj9Tj:TE!FINISH_CREATE_OK_PB$FINISH_CREATE_CANCL_PBt`L8$ FINISH_CREATE_HELP_PBTTFINISH_CREATE_CANCL_PBTFINISH_CREATE_OK_PBFINISH_NOTE_SAVE_TFINISH_OPTIONS_RBENFINISH_OPTIONS_LIB_FINISH_CREATE_LH  (I 0FINISH_CREATE_L A!AB Z hfF NOTES$DRM_HELPj;j<,NOH = ߀9 ISO8859-1&You are currently creating a new note.TH n ߀j ISO8859-1 edit_window ISO8859-1 edit_finish_create_db ISO8859-1 finish_create_lH   I 4FINISH_OPTIONS_L e A!C B Z fhf NOTENOTES$DRM_HELPj=j>IFINISH_CREATE_LEEH :x ߀6 ISO8859-1#Options for the note in-progress...H o ߀k ISO8859-1 edit_window ISO8859-1 edit_finish_create_db ISO8859-1 finish_options_lNOH , I, 4FINISH_OPTIONS_RB e;F A!"C /FINISH_OPTIONS_LENOTEjFINISH_NOTE_SAVE_TBFINISH_NOTE_ENTER_TBOTEFINISH_NOTE_CANCL_TBj߀> ISO8859-1 edit_window ISO8859-1 edit_work_db#ORK_SELECT_CONF_PBi ro|o( 4H I t8FINISH_NOTE_CANCL_TBhf\O ANOTES$DRM_WIDGET_CREATE< <Z hfTE NOTES$DRM_HELPj?j@VE,H "߀ ISO8859-1 Cancel noteH s ߀o ISO8859-1 edit_window ISO8859-1 edit_finish_create_db ISO8859-1 finish_note_cancl_tbH @I t8FINISH_NOTE_ENTER_TBit_hf_c\P-1 NOTES$DRM_WIDGET_CREATE< Z Zhf NOTES$DRM_HELPRjAjBFIH !߀ ISO8859-1 Enter noteH s߀o ISO8859-1 edit_window ISO8859-1 edit_finish_create_db ISO8859-1 finish_note_enter_tbH <I< p4FINISH_NOTE_SAVE_TBhfniXQdb8859-NOTES$DRM_WIDGET_CREATE< ,<` Z hf NOTELPRNOTES$DRM_HELPjChfVE_NOTEBOTENOTES$DRM_VALUE_CHANGEDjDjISH -߀) ISO8859-1Save note text in fileH r߀n ISO8859-1 edit_window ISO8859-1 edit_finish_create_db ISO8859-1 finish_note_save_tbH `I` p4FINISH_NOTE_SAVE_TehfniXRdb8859-NOTES$DRM_WIDGET_CREATE 6AB!" 3C @B$ Z hf hfNOTES$DRM_HELPBjEVAFINISH_OPTIONS_RB:TEFINISH_OPTIONS_RBBH r߀n ISO8859-1 edit_window ISO8859-1 edit_finish_create_db ISO8859-1 finish_note_save_tbH I 8FINISH_CREATE_HELP_PBt_!" $  U |hfA NOTES$DRM_HELPj9Bl $FINISH_CREATE_CANCL_PBf!H I t8FINISH_CREATE_CANCL_PB_hf\T"NOTES$DRM_WIDGET_CREATE!" $ \ LU Z hf FEATE_NOTES$DRM_HELPjFDRhfB,jEVFINOTES$DRM_PUSHBUTTON_ACTIVATEFIjGB!FINISH_CREATE_OK_PBE_CANCH '߀# ISO8859-1Cancel OperationH  0 ߀ ISO8859-1 Cancel_pb H ll Il p4FINISH_CREATE_OK_PBhffXST"NOTES$DRM_WIDGET_CREATE !" !#" \U Z hfF E_NOTELPNOTES$DRM_HELPRjHhfV<FINOTUSHBUNOTES$DRM_PUSHBUTTON_ACTIVATEBjISHH  ߀ ISO8859-1 OK _baH  ߀ ISO8859-1OK_pb85H 0T ߀, ISO8859-1Note Creation In ProgressH K ߀G ISO8859-1 edit_window ISO8859-1 edit_finish_create_dbH   I h,EDIT_POPUP8hf eP_creaNOTES$DRM_WIDGET_CREATE;F ( Z hf " \NOTES$DRM_HELPjJF!EDIT_POPUP_PASTE_PBTES$DRjfTBAlEDIT_POPUP_CANCL_PBMAIN_SEPARATOR_SPEDIT_POPUP_PASTE_PBEDIT_POPUP_COPY_PBEDIT_POPUP_CUT_PBMAIN_SEPARATOR_SPEDIT_POPUP_ENTER_PBH  ߀ ISO8859-1*.TXTopH #0߀ ISO8859-1 Include FilebH  `߀ ISO8859-1 SelectionAIL_CANCL_PBNOTE_MAIL_FORWARD_TBl ro|p 0H HIH p4EDIT_POPUP_ENTER_PBhfXES$DRNOTES$DRM_WIDGET_CREATE* 8 (U Z hf ES$DRNOTES$DRM_HELPjKhf_P_PBTNOTES$DRM_PUSHBUTTON_ACTIVATEjL3 H !߀ ISO8859-1 Enter NoteH H\߀D ISO8859-1 edit_popup ISO8859-1 edit_popup_enter_pbH HIH p4EDIT_POPUP_CUT_PBedhfupXES$DRNOTES$DRM_WIDGET_CREATE* 8 (U Z hf ES$DRNOTES$DRM_HELPjMhf_P_PBTNOTES$DRM_PUSHBUTTON_ACTIVATEjNvH ߀ ISO8859-1CutH FH߀B ISO8859-1 edit_popup ISO8859-1 edit_popup_cut_pbH HtIH p4EDIT_POPUP_COPY_PBdhfupXES$DRNOTES$DRM_WIDGET_CREATE* 8 (U Z hf ES$DRNOTES$DRM_HELPjOhf_P_PBTNOTES$DRM_PUSHBUTTON_ACTIVATEjP ISH ߀ ISO8859-1Copy eH G(߀C ISO8859-1 edit_popup ISO8859-1 edit_popup_copy_pb_DBH HXIH p4EDIT_POPUP_CANCL_PBhfupXES$DRNOTES$DRM_WIDGET_CREATE* 8 (U Z hf ES$DRNOTES$DRM_HELPjQhf_P_PBTNOTES$DRM_PUSHBUTTON_ACTIVATEjR H #߀ ISO8859-1 Cancel Enter0H H߀D ISO8859-1 edit_popup ISO8859-1 edit_popup_cancl_pbRIH HHIH p4EDIT_POPUP_PASTE_PBhfL;$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWNOTES.UID;1}upXES$DRNOTES$DRM_WIDGET_CREATE 8* (U Z hf ES$DRNOTES$DRM_HELPjShf_P_PBTNOTES$DRM_PUSHBUTTON_ACTIVATEFjTH ߀ ISO8859-1Paste.H H ߀D ISO8859-1 edit_popup ISO8859-1 edit_popup_paste_pbH !0 ߀ ISO8859-1 edit_popup9-1 edit_file_pde ISO8859-1 edit_file_attribute_pb ISO8859-1 edit_file_attribute_db ISO8859-1 edit_attrib_replies_tbH D| ID t8EDIT_ATTRIB_HIDDEN_TB ehfle\| ISO editNOTES$DRM_WIDGET_CREATE<A!"C  <Z hf ES$DRNOTES$DRM_HELPj0j1$EDIT_ATTRIB_REPLIES_TB_WH %T ߀! ISO8859-1Hide This NoteDH  ߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_attribute_pb ISO8859-1 edit_file_attribute_db ISO8859-1 edit_attrib_hidden_tbNOH  I x<EDIT_ATTRIB_CONFERENCE_TBt_hfde`}O8859t_filNOTES$DRM_WIDGET_CREATE<A!"C ` P` Z hf RNOTENOTES$DRM_HELPj2hfj8iEIB_RENOTES$DRM_VALUE_CHANGEDj3f#EDIT_ATTRIB_HIDDEN_TB_ACTH , ߀( ISO8859-1Pointer to ConferenceH T߀ ISO8859-1 edit_menu_bar ISO8859-1 edit_file_pde ISO8859-1 edit_file_attribute_pb ISO8859-1 edit_file_attribute_db ISO8859-1 edit_attrib_conference_tbM_FOCUSSHH f ߀b ISO8859-1 edit_window ISO8859-1 edit_work_db ISO8859-1 edit_work_date_lro|q H Za"/;LYfs ",;FS^u}+7<M\q!#%?[t)7DVjuDXmapplicationNameDXmfirstTopicDXmglossaryTopicDXmlibrarySpecDXmoverviewTopicacceleratoracceleratorTextalignmentapplyLabelStringarrowDirectionautoUnmanageborderWidthbottomAttachmentbottomOffsetbottomWidgetcancelButtoncancelLabelStringcolumnscursorPositionVisibledefaultButtondefaultPositiondialogStyledialogTitledirMaskeditModeeditableheighthorizontalSpacingincrementlabelStringlabelTypeleftAttachmentleftOffsetleftPositionleftWidgetmainWindowMarginHeightmaximummenuHelpWidgetmenuHistoryminimummnemonicnoResizeokLabelStringorientationpageIncrementradioAlwaysOneresizeHeightresizePolicyresizeWidthrightAttachmentrightOffsetrightWidgetrowsscrollHorizontalscrollVerticalselectionLabelStringselectionPolicysensitivesetshadowThicknesssliderSizespacingsubMenuIdtopAttachmenttopOffsettopWidgettraversalOnunitTypeuserDatavalueverticalSpacingwidthwordWrapxyDXmattachToSourceCallbackDXmdetachFromSourceCallbackDXmentrySelectedCallbackDXmextendConfirmCallbackDXmgetEntryCallbackDXmhelpRequestedCallbackDXmselectAndConfirmCallbackcreateCallbackactivateCallbackcancelCallbackcascadingCallbackdecrementCallbackfocusCallbackhelpCallbackincrementCallbacklosingFocusCallbackokCallbackpageDecrementCallbackpageIncrementCallbackvalueChangedCallbackH <Zj~ .BTi "DXmCreateHelpDialogDXmCreateSvnXmCreateArrowButtonGadgetXmCreateCascadeButtonXmCreateFileSelectionDialogXmCreateFormXmCreateFormDialogXmCreateLabelGadgetXmCreateMainWindowXmCreateMenuBarXmCreatePanedWindowXmCreatePopupMenuXmCreatePulldownMenuXmCreatePushButtonGadgetXmCreateRadioBoxXmCreateScrollBarXmCreateScrolledTextXmCreateSeparatorXmCreateSeparatorGadgetXmCreateTextXmCreateToggleButtonGadgetXmCreateWarningDialogXmCreateWorkingDialogD_CANCL_PB_PRKEYWORD_ADD_HELP_PBKEYWORD_ADD_APPLY_PBKEYWORD_ADD_NOTEID_TP_TKEYWORD_ADD_NOTEID_LOFIKEYWORD_ADD_KEYWORD_TERKEYWORD_ADD_KEYWORD_LATFILE_CREATE_NOTEFILE_LNFILE_CREATE_NOTEFILE_TLFILE_CREATE_NOTICE_TONFFILE_CREATE_NOTICE_TBPDFILE_CREATE_OK_PBODFILE_CREATE_REPLY_ONLY_TBPDFILE_CREATE_RESTR_KEY_TB_PBFILE_CREATE_RESTR_MEM_TBBLFILE_CREATE_TITLE_TFILE_CREATE_TITLE_TB_BAFILE_CREATE_WRITE_ALL_TBWINFILE_DIRECTORY_ACCESS_TBO_LFILE_DIRECTORY_ADD_PBCAFILE_DIRECTORY_APPLY_PBFILE_DIRECTORY_CANCL_PBFILE_DIRECTORY_CONF_LIZFILE_DIRECTORY_CONF_UDTFILE_DIRECTORY_HELP_PBNFILE_DIRECTORY_LOCATION_LSTFILE_DIRECTORY_LOCATION_TIZFILE_OBJECT_ADD_DBTFILE_OBJECT_ADD_PBRFILE_OBJECT_DELETE_DBTEFILE_OBJECT_DELETE_PBILFILE_OBJECT_MODIFY_DBOWFILE_OBJECT_MODIFY_PBADFILE_OPEN_AUTOMATIC_LCLFILE_OPEN_CANCL_PBLFILE_OPEN_CLASS_TENFILE_OPEN_CLASS_TBNFILE_OPEN_DIRECTORY_TBPFILE_OPEN_ENTRY_LFIFILE_OPEN_ENTRY_TADFILE_OPEN_FILESPEC_L_OBFILE_OPEN_FILESPEC_TECTFILE_OPEN_HELP_PBBFILE_OPEN_IN_NEW_TBFILE_OPEN_IN_NOTEBOOK_TBBFILE_OPEN_OK_PBFILE_OPEN_SHOW_RBTEFILE_OPEN_UNSEEN_TBMAIN_CAUTION_BOXNTRMAIN_COLLAPSE_ALL_PBNTRMAIN_COLLAPSE_PBNTRMAIN_CUSTOMIZE_PDECMAIN_CUSTOMIZE_PDMPMAIN_CUSTOMIZE_PRINT_PBMAIN_CUSTOMIZE_PROFILE_DBJEMAIN_CUSTOMIZE_PROFILE_PBTRMAIN_DUMMY_WIDGETJEMAIN_EDIT_COPY_PBPEMAIN_EDIT_PDEFYMAIN_EDIT_PDM_DMAIN_EDIT_SELECT_PBMAIN_ENTRY_ADD_DBAMMAIN_ENTRY_ADD_PBAMMAIN_ENTRY_DELETE1_PBBJMAIN_ENTRY_DELETE2_PBBJMAIN_ENTRY_DELETE_DBOK_MAIN_ENTRY_MODIFY_DB_PBMAIN_ENTRY_MODIFY_PBTBMAIN_ENTRY_PDENMAIN_ENTRY_PDMPMAIN_ENTRY_UPDATE1_PBUPMAIN_ENTRY_UPDATE2_PBUPMAIN_ENTRY_UPDATE_DB_UPMAIN_EXPAND_ALL_PBRMAIN_EXPAND_PBBMAIN_FILE_CREATE_DBMAIN_FILE_CREATE_PBMAIN_FILE_DIRECTORY_DBC"*[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1+,f./J 4- 0123 KPWO56}Mģ7lģ89GJHJ(h { (0ŚLģ NOTES$DWSHARE DWNOTES V2.5A13-02@$| $  C$(H$r\$ $B $ $ J8 NOTES$SHARE_0014" LIBOTS_0014 LIBRTL_001< DECW$MAILSHR12_001< DDIF$VIEWSHR12_001@ DECW$MRMLIBSHR12_001< eDECW$DWTLIBSHR_001@F DECW$DXMLIBSHR12_001< DECW$XMLIBSHR12_001< DECW$XTLIBSHRR5_0018 XNL$SHR12_001< IMG$SHRLIB12_001@ DECW$TERMINALSHR12_0018 CMA$TIS_SHR_001<eDECW$XLIBSHR_0018:  DECC$SHR_001< kSYS$BASE_IMAGE_001@&kSYS$PUBLIC_VECTORS_001M$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1S"P 0!` 0p p8 0p    < l `o o pԽh#T pL 0@`` 7 T pMh0 8  P \ 08H P t l d |       0 $  ` 4 q 08 P   s     <     0  d h l 0    X  0Pp  x ( @  4 8 ` 0H$`  045  0: 0 B@ P00! 0 l.0 0 !@ @0 D%@ 0 .@ 6 0 000`    `@ 002P 0d-  @0(4P 0@7` < 0`T9  0xA, P0p0D 0hxE 0 \I@ 0 I@ 0 tJ0 0@J` pe@d0h M 0 N@ #0XlPp 0,Q  0dQ   0Q0 0 Q0 08DRP  0S  0 T 04T 030(){P(0b X[_ !0o @! 04x0 0X\xp =0@{` 6 6 ` Ph p0 o(j z0}  pJp00P `0 `0(\@ 00P RZ 0p@0D  0Pԏp  pX )P*xd@*0$7 0pL 7 8bWpP $`l*0  @D8 0x 00Pp d0HԮ` )p 0(P 08P 6 ,2 r0Xtp pp 0|@$< P 0(x@ 0(@ 00P `!< 0@` ' 040HT6` 0(d}@NLr$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1eLV"*OVU ^ q:cq"zߜ~&'A]92KWsb0XX}}ZF}< Aӑn4 subM"wӴ6z"]?QfKWsUxzD\Y sH3z&Foއ0sV*"XDƺIMPBB+a-DwlUV|R;l%JPO'$Q2Aw Rz۟g\B8]Uf³0)n Աgbr)Ёœ]p ><@hRWvr]4ˤ2 R-\NX r,e'n)8 TX}^S 8ۻ+}|J&bYL[w^BXu:$-a EKHމrSi;H@:+z/l?\*(U]`NFb6fXcJ"alNA=7?|cjD4ZpF-%z#B K#d.ֈ MU{h*2pZ?(NV[|+j̦ W(AdNOF[eJ]Q3g:g"t'b[mmؐ{gU8?B)~ ?I:t# ]N?ZT^VLB3WT[?̜;qF <jzKAFc2Z#.'=*p^u9has F=boxvk XƖ9wiP_ƹn2H1OfZBx or,aeݭyaiTg,488lvD;tabsl@v]E m vW4o\okeG-C YDh]X+]EC9@l𺓜i.P^U}P*>Ɇ ^c*zVc`u)cuEklqyECC"}5H 8T3SB=K{M쑵TY,0˰ƤSL`gB&m<'DjC};$6m)W(cNÒ jP5jEP{xosO1(P"~}WBc޼)ӡU?UF%Ma~{{@.ӷp%mM9 f*xՔ-S@D5M$sS^>^l&{.IU(F)4 @KxZW =7?6AEBxvϟcQ84(5+0U 'jO>@J+.PtXU8TBf7#~W R~qˌ"8٠ ({>/[R#19梿[_ůmikX?`|(1drDbSz̍?dgƁpqo$'LZjt5R J`,kc~x+?Á/{%Sg_G1'&_ajtBa. @ٱhTp>OEL~&XiA&ڌ DB4J`nv78AGpZ14m)1N"9'VcszhmtnDLq+CpdQOz"|Ef4 ++MWꎧ" =>.( Un pJ!bwmtQ1ߠY1#3sy’m~}{vGoC֞;w2-YSm؂_a&RjX`b~g2\7_K,R 9D;~KB=]SK["EK+a:KM @vӠ}79o0FCs^E/ gT* kdPMMO C.MT [e5^v%s&H+2ֱGC0%1(dh`=T6M$gÉ@i'lc A ^+]Fnz+5Mb$%e~&rGr2A@.ad\i7@${]]rzYiv2EU-Q:'-XH_QQ1pN_3N ERUўE8 VAEͮ2Qf:i0N7 -i#-m2!M_KnH`Ym>fHY~қv'S@P1u3?uf'sո3a9H 2A-"9Ns"cj+3o)*'9ah\Uq]3z7JY_w7 6$`='RSU%Z53ȓ"Ixge(eH4}vcp ˻VYaMxlN;`&BUzti4iĚHvharrV *!Wha^XӑyrP&eT+w#X|Y[J}W-?ӻQ(`+f`H]_+6+8@zyR?f%q>}CZ@<և˕ R]FHR(S:Z: ύ+As n}Vid.)daMҕrkTuhpnܟDf~X Y9pp6*6u+QNtWQp(>u(+P! \ڞ]F҆k%gT P蚀# *5Ĥ>=1eo3II'?@{W,.C_F;e |,w[)>YnMβ)SSXqfjb6 )"j4u0h/CQw:fmA"~C!Қ?=jg3SHjd԰DO)"ZRF&y{WJA l(Bhը;e0KQ1PJ30e9,1yG;ND|y0妦Od*RjĀj8a4f^Z$P[1!2Qߵza 'z$Rf@J4^ԕ`Vu h+u[7fX+̞fm_w)K\jb< _TsK ,07u5V5_!Ekha@=<gF'z<**o3ʃ5ܡ,-:JRχ,0P]eIvrG&rC [r7wθhȍvZ1h/@o\8v)B@ 9+o#I\n/,?w|?h6s'hM!,$Ҥpecj̰#e~$++"a]?C 4w,nwzR=Q``|4GMI>-A2k J0zXb{p E߸ܚ5#bFeͧ[jv oI~VwGX7 71 f7j<x<$ X8Xw`]f ^F(T0l)Ώ<8S\^U3~c½#,(XLi%YAwGVy600"AEg=wKm`#``fxPP߷g)vzwq]5U[u`\]ȉ2?Uԋ{P3D 5WZi[~$jR򋢬|;t'3:-dBIn w`|o%uL'A&Kbf[A&NCW:fyԉ>J-8t”A]+4Q:iOvaQ_`46;Ejs0a_0"!tk}1f }#~N6>I8[1u3,!2ıfa/QwꌍXz *jiLI%D?]TGlJtpTH4i*v,$RY8uc lvTA(nP?5Fiu-*ToS $>HJT848R}1ZO|Фmp[&͖)jVyun[ q@-8KRy"i]#z ).FR TIrNׯ Sa 5W|_/}68L>:'zpz8C'sh8s_I2h9=^10fj^<,Vp68rJ?Xפ UAm8q2mZMvDvcy:I3hWs,3^/v^}3ӰF+xFjyAͨ agX8: FgY dsy@6ZaEo@7c`E^UFDc f϶o{g|U2{4[N|Eo CKu,bsZwz<2kۻlm*[z.Do e/JiC}Z(9 ["]t(.9iMB'SSf&%t͟7zBՑӦ ]Wr8&\K"={68 6khX:_8eJiuș vkq:nd WZe/Y*R*y1@[ˠGD ț.A/nn7`: zuK$KJ戍ֈS)W+SF w?F>2jRc2mYr@g[ z1 0 ]OkQajB"MzE_''ГGi0@_!&e%2")l@Y 57O'B#L^df-COXfyf?3W <_fgDf?&3X7 cP.g cԻW)^h׋AO;<*wamċgK㳨CaSl#x{~bu_-OZ]1Փh*G_镌>+b wQf]/\OY~D޷wq9nn9Ġ.F90aUo*1VN\mrV |Q^*g"ze~ qQK`ϯ~)%]'ʙ84aZd r:Nl%l,wA:I=^tABeğQg sh]9M!*: ޭ,Z |Ugfv"'j/dCS3k6!p%47|M ui$&^g2x},0 4$|?[fn8,_dirGuݥ]1t-okf;v8cj;G),E6!JrQ2of| 35g8\Rf۬,p(qN|Iy`W(+Z^(3eAh߯|Xo^٨A(.Eh"迠yc6A/󏘕e͜ٳ/R$mDX'K@@1L%`p!)ɣNTh)7۩Z [yU dQOz)g,#wqYcB`1u8!&\S؍|&r> lyWO 7{sɓ@(wSJ/`no˅y$DJzxfrhbAcfG3f_LvFHY3=WIʭ<}[6*ci]<>,mTIT){"f}W2gBz_^Y2 ^WΞ'Y skTU[h|2!j5@R@ $=3hp``txTQ'\Q?=!*6Ql0|Qe6ykPngX[zzhhPW r({U>ii([SJut&aZPI0`fTim0ʸT4I@{^=}p:5_*k$it:~A$zNTh L`d֌lΛlq0ތGٿ6OX|@%n$/Jm6aƯeٜ{yoe,JU8k%d@D2}Nfd3k~rwU[iK /2GF_=[geb@dpNRYGN?{ߤS3dxs^uJ=;Pp(.H$dD[+%X".Hc/'uL*, ^zH O(u")ƴ;7>TLLm2'1a̷lavSE?꽗v֒ ՆPTLp43 {!Y+h w{!<-wNө[㚉w+<2)aձr(@I²a? Z$}"ҝ˷Sⶕ8ҍS:<",bI~+SEiW8#r t;e ް(׿)I.döB8%}+T EH1%>N:PI ^?|-`\*ROƥv$J )Q2_53YdT䋐$Tt'ofAN{W:kG (CJ4[Vƺjda#aTj{$FٕYK/Y )*->~mFlNց0hU[/5eHYf@~ Owo$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1 " 0h   @ p"`.0H` P.< 0`pԏP  0HԽ` D7 L T  R v,Q0h 0pL  m0Ptp P**@*@e p <Ĝ $P 0< L0ؔ\DRh  dP0(0 ! 11 < 0`   t  + ` {P pe0=  0   $ AL P\QT p@ xd6 \_Vȯ ` )T c03P 0  d-P0* 0pJ(j z p080P  o0T8bW%08 P  \ t +$D# pr|K6 ,DX04% :dVDiI[0p30  ) rd}!B* 0s& r0P  45P0 b@ "0Hc` 0xf U HaI0xi TR GNF+ - <1 + $/ q- +  0Xl<    d \, + 0@` = \x>0@ā` 0 hp 00 0xD 00 RU0 , ` xdȯ 8   0`Ы  dPL0T <@ P*)@ex0Q03PP L 0p =  ({P1 0h,    10peP  < p@*cp0d-Px *)0(0 p` D0 0d h 08P *%,"0 ' 6 ؔ\D# prȜL(  0pP 0 D 0 6 8bWR0  0 Mt0 L0 4 S` 08( ,0M06 t00= d7 U0PGp ` xd< d[ dK(> <L0p  @?1 pe  ' 0@]    dP({P0 T @ ȯ H h`  `DRh`@eP*0)| L pP >0i  P>P 0@d@*}* (0p c0D`A))` *0p,w P 03 0`| 0  1Ы0D% 0Ą 0tP 6 $/ qL0$L0+ P* + =+ @e)@ 0P 1(L P 03* (0( - +  <1  H2 dP + +  Ap>  0H  @ '   , - l  + + $@kxjT Pjkؔ\*0{P1pe3$f)p @* >\*$`l| c]0 A8 0Pd7p HU09 U08AP 0PCp 0PRp V0T P Pu0$Z 0P`p p=c =@e0`\_ ` 0`0 0a 0b  0pT !p$7 08b  7  @ h"S9HU|O |pNHQ0h U H-Sd}! X8T|HSR0  [  < ! ' 0r0   < DRhNFp pT6!P7 ( 0`( 0 ? = c\x@e> 0d 0x 0\0X 0Xؔp 0@T` 0 |@ \7 084P 8 e0x  .  0pL @ ^ T  0Xp H^   ^d%0P0 p0ܧ0 0H0 0Xp _@0 _T0\X_0` pc @ 6 0P̺p pe0P(@d(0)lP`(@ 0pX 0> p0\ `P08<P 084P 08$P 0H` 0@ `  (@ec0Xp  Pj)0(0XLp 00 Xc 0 0H,` >0(" P "0@ @'0"0 &0"   "' 0 x 0("P  <<0<0("`P 0("@8P 0 X  0"`@ 00#dP &PQX;$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1`"8#0 `0 p0 @$< #0   0" $P(| ""F0 0 P*0#40 *0"@ ) 0"0 0(00 "DP  0 0 P)0 0 *0 0 @*0 x0 `-0 P$< 0 ` "(0#< '"Pm0#0 *0 @ 0 0 0"0 (0 P$< 0 p0 0 P 0 0 0$0 0 d0 0 0 0   @ 0 0 @`=))=0" $@  "0 0 000 P  0"0" $< """F@l0@"0Tp  00` P %@l 0{ 0 08 P @0`  n 0 0L  88 $'p ``o0 0l  pq0( 8< l 0{P p0 8< o0p  d0 0 0@< ` @  0h  0  0  0 0 $ 0 0X p  0(  0X4 p  0(,2 @ Hr0X1 p 0PD# ` 0h& <| n {m `{3 08 ) P 08* P 0P\, 8| 0@- P 0`.  0H/ ` 0h  00"4  0"$Q 0@"08Q P "Ptn0"t7  0""$A #< """`0" P  ""0H"< $< 08"G p$< 0"O @  0"K   0"hN @ 0 ": P$< 0"hM @  0 R   x0P XZ  " (@ 0# X 0  #LP]P0 " TW P  ""0@ Y ` 0000 S p(| 0,! 000 XTR P @7  0"@\  0"X_  0 D_  0 \  0"\  0"_ 0"^  0"a 0 0"_ 0 0"a 0 0("Lb `$< 0"a 0 0"` 0 0("c `$< 00"\d `$< `z0"H` 0 00"f `$< z0("8i P  0p" (j  """&l @ 0m P_0 n / ""3 P$$vtextvtextvtextvtextvtextvtextvtextvtextvtextvtextvtextvtextvtextvtextvtextvtext DECw$Cursor%s: invalid context block detected at %x %s: invalid context block detected at %x %s: scrolled text window not specified %s: scrollbar not specified %s: source procedure not specified %s: verify procedure not specified %s: invalid context block detected at %x %s: invalid context block detected at %x %s: invalid context block detected at %x %s: invalid context block detected at %x %s: invalid context block detected at %x %s: invalid context block detected at %x %s: invalid context block detected at %x %s: invalid context block detected at %x %s: invalid context block detected at %x %s: invalid context block detected at %x DNS$RTLNOTES$ConferenceNOTES$Filenamedns$remve_first_set_valueZJVRU*VKZUjUUիVUDEC_WM_HINTS**UUTGUUQMŪUT*+*UT*EuUQ]EUWuQUꨪ]TUUUUꪪUUUUWUUU}UUUU૪UUժUU_uUUUEUUUEUU*UUQUUTTTUUuQEUEU]E*UQUWEUUTUQU*ꪨUuUTU*uU]UUjU]EUU꫺U[uQUUꨪU]TUUڪUeUUUUUVUUU*UWUUUUUYUUUUUUUUUUUUUUVUUUUUmUUUUU}UUjUUUUUUUU[zUUUU_^UUUUEUEUUUUUUQUUU*UUUUTUUTU?UUUUUUEUUUEUUUUQUTU*UUUTUuQUT*UUUU]EUQUUEUUWUE*UUQUUUTꪪ*UUTUuUUTU**UUU]UUUUEUUWUEUUUQUUUQUUꪪUTUuUUTUU**UU]UUUUuUUWUEUUUjUU]UQUUUꫪU[UuUTUUU*U]UUUUUڪUeUUGUUUUUVUUUUUU*UWUUUUUUUUYUUUUUUUUUUUUUUUUUUUUUUUVUUUUUUUUmUUUUUUUU}UUUUUjUUUUUUUUꫪUUUU[UUUUUUUU_UUUUڪUUUUeUUUUUUUVUUu*UUUUWUU]UUUUUYUUWUUUUUUUʪK2 Pp(0( XaA`@?`x@z^ P@@ Pz^@>xx@z^ P@@ Pz^@>xx@z^ P@@ Pz^@>xWIDGETIDBCSESVNCREATENOTES$DRM_FOCUSNOTES$DRM_HELPNOTES$DRM_LOST_FOCUSNOTES$DRM_MENU_PULLINGNOTES$DRM_PUSHBUTTON_ACTIVATENOTES$DRM_SCROLL_ACTR.v$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1>"IIVATENOTES$DRM_VALUE_CHANGEDNOTES$DRM_WIDGET_CREATENOTES$DW_SVN_ATTACHEDNOTES$DW_SVN_DETACHEDNOTES$DW_SVN_ENTRY_SELECTEDNOTES$DW_SVN_GENERALNOTES$DW_SVN_GET_ENTRYNOTES$DW_SVN_HELPNOTES$DW_SVN_SEL_CONFIRMEDNOTES$DWNOTESSYS$LIBRARY:.UIDNotesNOTES$DEFAULTSNOTES$DEFAULTS.displayPostScriptNOTES$DEFAULTS.DisplayPostScriptNOTES$DEFAULTS.inhibitReadPopToTopNOTES$DEFAULTS.InhibitReadPopToTopNOTES$DEFAULTS.allowReadAheadNOTES$DEFAULTS.AllowReadAheadNOTES$DEFAULTS.ringPagingBellNOTES$DEFAULTS.RingPagingBellNOTES$DEFAULTS.expandUnseenOnlyNOTES$DEFAULTS.ExpandUnseenOnlyNOTES$DEFAULTS.displayTopicOnlyNOTES$DEFAULTS.DisplayTopicOnlyNOTES$DEFAULTS.kpEnterIsOneKeyNOTES$DEFAULTS.KpEnterIsOneKeyNOTES$DEFAULTS.inhibitProtocolWarningNOTES$DEFAULTS.InhibitProtocolWarningNOTES$DEFAULTS.allowSmoothScrollNOTES$DEFAULTS.allowSmoothScroll ,.*0 00:00:01.00 cda$convertNOTES$LIBRARY:.NOTENOTES$NOTEBOOKSYS$LOGIN:.NOTESYS$DISK:[].TXTSYS$SCRATCH:.LISSYS$SCRATCH:.TMPSYS$SCRATCH:.PSNOTES$FilenameMAINNOTES_EVESAMPLE_CONFERENCENOTES$SAMPLE::2Rb*Ȣ<<< !AS >>>-< !AS >-!80*-!80*=!AS!#* !AS!#* !AS!AS!#* !AS-< !AS >-SYS$SCRATCH:NOTES_!XW_PRINT_!4ZW.PSDDIFPS%!SYS$SCRATCH:NOTES_!XW_!AS_!4ZW!ASPRINT.LISSYS$SCRATCH:NOTES_!XW_!AS_!4ZW!ASPRINT.TMPCDA$ACCESSdefaultPositionDECW$CURSORuserDatacancelLabelStringMAIN_WORK_BOX$CANCELLABELuserDataMAIN_WORK_BOXiconNameDEC Notes:WorkmessageStringISO8859-1NOTESNOTEStitleDEC Notesmain_caution_boxISO8859-1resizePolicyMAIN_MESSAGE_BOXDEC Notes:InfotitleiconNameDEC Notes:InfouserDatauserDatawidthresizePolicywidthdialogType!#* !ASuserDataMAIN_CAUTION_BOXmessageStringISO8859-1 Do [YES] caution box stuff Do [NO] caution box stuff valueI don't really handle these yet!userDataxyuserDatauserDatalabelStringMAIN_TOP_TREE_PB$LABELMAIN_OUTLINE_PB$LABELlabelStringCONF_DISABLE_MODERATOR_PB$LABELCONF_ENABLE_MODERATOR_PB$LABELuserDatauserDataMAIN_HELP_BOXDXmfirstTopic::DXmdisplayModeCancel button...columnswordWrapDD-MONTH-YYYY4 HH:MM:SS.CC2DD-MONTH-YYYY4:HH:MM:SS.CC2!AS::!AS@transientFortransientFor.-trueonyesuserDatatitleiconNamedeleteResponsetransientallowShellResizeminWidthminHeighticonicxywidthheightxywidthwidthDEC Notes: Digital Equipment Corporation. 1986, 1993. All Rights Reserved.DEC NotesMAIN_SHELLMAIN_WINDOWDUMMY_SHELLDUMMY_WINDOWMAIN_POPUP: NOTES$DRM_MB3_PRESS(MAIN)NOTES$DRM_MB3_PRESSMAIN_DUMMY_WIDGETDXmdisplayModeDEC Notes:ConfDEC Notes:ConfCONF_SHELLCONF_WINDOWCONF_POPUP: NOTES$DRM_MB3_PRESS(CONF)NOTES$DRM_MB3_PRESSDXmdisplayModeDEC Notes:ReadDEC Notes:ReadREAD_SHELLREAD_WINDOWrightAttachmentrightAttachmentrightAttachmentrightAttachmentrightAttachmentREAD_POPUP: NOTES$DRM_MB3_PRESS(READ)NOTES$DRM_MB3_PRESSDEC Notes:EditDEC Notes:EditEDIT_SHELLEDIT_WINDOWEDIT_POPUP: NOTES$DRM_MB3_PRESS(EDIT) ~Shift0xff09: NOTES$DW_HANDLE_TABS(0)NOTES$DRM_MB3_PRESSNOTES$DW_HANDLE_TABSNOTES$LIBRARY:.NOTESYS$SCRATCH:.TMPLAST-1!AS*userDataMAIN_FILE_OPEN_DBDEC Notes:ConftitleDEC Notes:ReadtitleuserDataMAIN_FILE_CREATE_DBDEC Notes:ConftitleNOTES$LIBRARY:_Z$Z_:[_Z$Z_]userDataMAIN_FILE_DIRECTORY_DBrightAttachmentrightAttachmentrightAttachment::_Z$Z_:[_Z$Z_]::userDataMAIN_ENTRY_ADD_DBuserDataMAIN_ENTRY_DELETE_DBuserDataMAIN_ENTRY_MODIFY_DBuserDataMAIN_ENTRY_UPDATE_DBuserDataDXmdisplayModeuserDatauserDataDDIFASCIIuserDataMAIN_FILE_MAIL_DBSYS$SCRATCH:NOTES_!XW_!AS_!4ZW!ASFORWARD.TMPDEC Notes:SendoverviewISO8859-1aboutISO8859-1userDataMAIN_CUSTOMIZE_PROFILE_DBDECW$SYSTEM_DEFAULTS:NOTES$DEFAULTS.DATDECW$USER_DEFAULTS:NOTES$DEFAULTS.DATuserDataFILE_OBJECT_ADD_DBuserDataFILE_OBJECT_DELETE_DBuserDataMAIN_OBJECT_DISPLY_DBrightAttachmentrightAttachmentrightAttachmentrightAttachmentrightAttachmentuserDataFILE_OBJECT_MODIFY_DB1-LASTLAST-1*!AS*userDatauserDataCONF_CONF_DIRECTORY_DB!UL.*userDataCONF_CONF_MODIFY_DB12-AUG-2044userDataREAD_NOTE_SETSEEN_DBuserDataCONF_KEYWORD_ADD_DBuserDataCONF_KEYWORD_CREATE_DBuserDataCONF_KEYWORD_DELETE_DBuserDataCONF_KEYWORD_DISPLY_DBrightAttachmentrightAttachmentrightAttachmentrightAttachmentrightAttachmentrightAttachmentuserDataCONF_KEYWORD_MODIFY_DBuserDataCONF_MARKER_ADD_DBuserDataCONF_MARKER_DELETE_DBuserDataCONF_MARKER_DISPLY_DBrightAttachmentrightAttachmentrightAttachmentrightAttachmentuserDataCONF_MEMBER_ADD_DBuserDataCONF_MEMBER_DELETE_DBuserDataCONF_MEMBER_DISPLY_DBrightAttachmentrightAttachmentrightAttachmentrightAttachmentrightAttachmentuserDataCONF_MEMBER_MODIFY_DBSYS$DISK:[].TXTSYS$SCRATCH:NOTES_!XW_*_%%%%.TMP;*userDatauserDataEDIT_FILE_INCL_DB!/!#* !AS!/!/userDataEDIT_FILE_USEF_DBuserDataEDIT_FILE_SAVEAS_DBuserDataEDIT_FILE_ATTRIBUTE_DB.TXTEDIT_FINISH_CREATE_DBSYS$SCRATCH:.PSSYS$SCRATCH:.TMPSYS$SCRATCH:.LIS*.*1-LAST*!AS*userDataREAD_NOTE_READ_NOTE_DB!UL.0!UL.LAST!UL.LAST!UL.!ULDEC Notes:ReadtitlerowslabelStringISO8859-1labelStringISO8859-1labelStringISO8859-1%!SYS$SCRATCH:NOTES_!XW_!AS_!4ZW!ASDDIF.TMPuserDatabottomWidgetunitTypetopAttachmenttopOffsetbottomAttachmentbottomOffsetleftAttachmentleftOffsetrightAttachmentrightOffsetDVRscrollHorizontalDVRscrollVerticalREAD_DDIF_VIEWERPSDDIFuserDataREAD_NOTE_MODIFY_DBuserDataREAD_NOTE_CREATE_DBEDIT_FILE_ATTRIBUTE_DBDEC Notes:EditDEC Notes:EdittitlelabelStringISO8859-1userDataREAD_FILE_EXTRACT_DB!UL.*NOTE_!4ZW_!4ZW.DDIFREAD_FILE_EXTRACT_DDIF_DBSYS$SCRATCH:NOTES_!XW_PRINT_!4ZW.LISuserDataREAD_FILE_PRINT_DB!UL.*ISO8859-1SYS$SCRATCH:NOTES_!XW_PRINT_!4ZW.PSuserDataREAD_FILE_DDIF_PRINT_DBlabelStringISO8859-1ISO8859-1userDataokCallbackcancelCallbackuserDataDXmdeleteFilePrintWgttitlePrint Notes OptionsuserDataREAD_NOTE_SEARCH_DBdefaultButtondefaultButtondefaultButtonuserDataREAD_NOTE_DELETE_DBaA`@?`x@z^ P@@ Pz^@>xx@z^ P@@ Pz^@>xx@z^ P@@ Pz^@>x.0!5UL!5UL!4ULuserDatauserDatauserData1-LASTError opening as inputuserData1-LASTuserDatauserDatauserDatauserDatauserDataaA`@?`x@z^ P@@ Pz^@>xx@z^ P@@ Pz^@>xx@z^ P@@ Pz^@>x.0NOTES$Filename!5UL!5UL!4ULuserDatauserDatauserDatauserDatauserDatauserDatauserDatauserDatauserDatauserDatauserDatauserDatauserData!AS (!UL)!ASuserDatauserDatauserData [W] [K] [KW] [M] [MW] [MK] [MKW]userDatauserDatauserDatauserDataaA`@?`x@z^ P@@ Pz^@>xx@z^ P@@ Pz^@>xx@z^ P@@ Pz^@>xuserDatauserDatauserDatauserDatamain_windowconf_windowmain_menu_bar main_file_pde main_file_directory_pb main_file_directory_db file_directory_conf_udmain_menu_bar main_file_pde main_file_object_pb main_object_disply_db object_disply_info_udconf_menu_bar conf_conf_pde conf_conf_keyword_pb conf_keyword_disply_db keyword_disply_info_udconf_menu_bar conf_conf_pde conf_conf_marker_pb conf_marker_disply_db marker_disply_info_udconf_menu_bar conf_conf_pde conf_conf_member_pb conf_member_disply_db member_disply_info_udscroll_barsclassesentry_namestopicsreplieskeywSGi$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1"ZordsconferencesobjectsmembersmarkersISO8859-1userDatauserDataDXmfontListLevel1DXmfontListLevel0DXmfontListDefaultDXmindentMarginforegroundbackgroundDEC NOTESSTRINGSTRING!AS!32 !6 !17 !6 !AS!9 !20 !11 !4 !AS!9 !20 !11 !AS!AS !AS!ASuserDatauserDataISO8859-1userDatauserDatauserDataLNM$SYSTEM_TABLE LNM$FILE_DEVSYS$CLUSTER_NODESYS$NODE UCX$INET_HOST 14-DEC-1993,::BG:NOTES NOTES-USER NOTES-CLIENTNOTES-CLIENT-USERNOTES-SERVER-LANLINK NOTES-LOCALNOTES-LOCAL-USER NOTES$SERVERDECNOTES$SERVER_FLAGSNOTES$USER_FLAGS |!DB-!MAAU-!Y4:!H04:!M0:!S0.!C2|!UW.!UW!UL0000@ p#~p^x^cGGc"! =c0 GGnb#ƃA@ @0"C@"TGGnb#ۃA88 &:"G8]tG@BHbnZk0"! ! 00?"H=0bs"CH"TGG`ob#CA88@?"P=0bs"CP"TGGob#~A&:"G8]tG@BHbvnZk~0"!! 00"1"C4GPBXb/YZk0XX=! 0"BR"CC``"CGG`"GBbVZkX=0h0"14GpBxb1^Zkh=GBbKZkGBbqZk C"A"C4GG`BhbtZk8883"1"CGTGBbmuZk888&GG b#/l@04GG"b#n@888GGb#@8884G4GtGG0b#/B@GBb+cZkGcGp]x]#k#~@^H^PGG(  =t!=  C88Pv@JP8GJaS HF88=8]AB8]8=8}`B8} "C88 v H 8}4G3!JtSJ4F388=8]AB8]8=8}`B8}G0b@888 "4GPb@ (4GGLb#m)A4GG@]H]P`#k`#~^^GG  =t!=8 CxxPv@JPx4GJaS HFxx=x]ABx]x= bsvJs`JFx=4GJ`SHFx= x}xBxx= BR1v Hr@J2D1xGJsS`JFx= " 1!x]xBxx0bs0v Hs`J3D0x=4GJrS@JFx=0x}xBxx=x]@Bx] =&@8}"C CtG8B@bGZk =&@"1"CB R"CtGHBPb'IZk8 Cxx "1pv`Jq JqFpx4GJuSJFx "98x]x}aCx}x= Av@JpJPFAx}GӢJtSJFӲx  x=x]ACx]x}0"!;v Ja H!F;x]4GJsS`JFxݢ0xx=!Cx=x]vJx=GqaJ{S`K{FqxxxݢBxݲxG8v H`H D8xTGPAJzS@KZFPx}`b{#CsxxBxxx@x C8=#CB R"CtG8B@b/FZkxx/ =&BBR"Cb s"CtGHBPbHZkx5("!" "81"C!(BRr" @"C(`¦"CղG4Ghb@(("!! 4G4GXb@( H"C("1Q" bPs"CqG4GXbv@4GG]]#k#~8^@^HGG`  =t!=H C4G(B0b/miZk@ C4G(B0b/eiZk8 C4G(B0b/]iZkP C4G(B0b/UiZkh C4G(B0b/MiZkp C4G(B0b/EiZkX C4G(B0b/=iZk` C4G(B0b/5iZk 4/ =&@X"1"CXB R"CtGBbGZk ]44GG8]@]HP#k#~8^@^HG#G=v H=G= J`QH F=TG]AJ`qH@F]"1=  "!=`BR ] =t1= =GTGb"@]R"@H}"C}GvKvJG=$_#9!HzS@K:D9P"1"C0]AB]GvJuJF ? XAKaS HAGX}X"C=@}ӢvJtJFӲ? 7!KaS H!G7]}="C;@}BH"CGGGGGGhBpb~Zk C= C]"CtGBb'XZkx=?Dx="Cx="CTGGxnb#/Ax'xFx="Cp]"Cx}"CtGGhpb#/sAx=0JJ0@"1q Dp Du6JTJFWBv/KXKP Cy=KG?]:FKFKG]=GG(BZkBi~Zk @=}]=(BZkB]~Zk8@=ݢ 6B "ٲ"C4G(B0b!hZk+"!H"C"1BR"CQbs"C ¦"Cղ#C"9BZ#CYb{x C*ø"!"C"1BR"CQbs"C ¦"Cղx#C"9BZ#CYb{#C`= C==GvJr@JFTGKvSJG=BZZZYb{{`=!@==GvJr@JFtGKvSJG=BZ ZY}aC}Gpv`Jq JqFpGJuSJF"9998]=!@=Gpv`Jq JqFpGJuSJF"998]AC]}G[v@JpJPF[}GӢJtSJFӲ=@]GZv@JpJPFZ}4GJsS`JFݢ"998@GPv@Kq JQGP}GsaKtSJtGsݢ"998@= B=8]#C]tv`KtݢG?'9#G6!HxSK8D6=]AB]]B }jC8"C=#CtGBbO|ZkG8]@]HP#/k0 JFF0#~^^GG8  =t!= =GTGb @@@@]H]"C@]@ԢvJԲ@8G_'Z#G7!HyS K9D7@@=@@@@}G¦֢֢֢6JJGSv@KuJUGS@=/TG'{#G!!JyS K9F!@BRR/@G¦֢֢֢G@}@B@@]G:v HwJ7D:@"1 1 tG_&R"GHyS KD@bs st@@C@@BZZ@G"1111&J&JGvH{`KD@¦֢֢G&s"GJyS KF@=G"111GA@@]AB@]@}GvJvJF@G'#G4!HyS K9D4@]@]@B@@}GvJvJF@"!! G&"GHqS JD@]BRRZ@@B@@¦֢֢G"!!!!&H&HGvH{`KD@=4G_&R"GJyS KF@}G"!!!GӲ@@B@@}G0JJG;v Kr@J2G;@]G&s"GHaS HD@GG@=@]AB@]@}@B@  @H= C¦ "CtG(B0b#{ZkG]]#/k#~P^X^`GGph=`]0  =t1= =GTGbK@xxx8]"Cx]xpvJuJFxGxaKyS KyGxx=px=x@xx}GӢvJtJFӲx`G_'Z#G7!HyS K9D7x"1"C0xx]ABx]xhvKuJGx]h=!!&H&H/ G?'9#GJwSJFx=hx]x}aBx}xxݢBxݲ= Cx=xGpv`KwJwGpxG`aJqS JqF`x8xݢ8#Cx=!@x=xGpv`KwJwGpxTG`aJqS JqF`x0xݢ0#Cx=!@x=xGpv`KwJwGpxG`aJqS JTAn$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1u"kqF`x"CxݢxCxx=GYv@KpJPGYx}4G[AJ`SH@F[x}x¦"Cղx=!@x=xGPv@KwJWGPxTG`aKqS JqG`x}H"CxxݢBxݲxG8v KpJ0G8x]tGZAJ`SH@FZx}Pbs"C{xxBxxݢGvKpJGx=GYAJ`SH@FYx]hbs"Czx}xBxxGvJpJFxGXAJ`SH@FXx=bs"Cyx]x}aCx}xGԢvJpJFԲxtGWAJ`SH@FWxbs"Cxx=x]ACx]x}GvJpJFxݢGVAJ`SH@FVxbs"Cwxx=!Cx=x]GvJpJFx}4G[AJ`SH@F[xݢ(bsvx(#Cx=!@x=xGPv@KtJTGPxG`aKqS JqG`x} ¦֢Ӳx #Cx=!@x=xGPv@KtJTGPx4G`aKqS JqG`x}¦֢Ӳx#Cx=!@x=xGPv@KtJTGPxG`aKqS JqG`x}@¦֢Ӳx@#Cx=!@x=xGPv@KtJTGPxG`aKqS JqG`x}¦֢Ӳx#Cx=!@x=xGPv@KtJTGPxG`aKqS JqG`x}¦֢Ӳx#Cx=!@x=x "Pv@KtJTGPxG`aKqS JqG`x}¦֢Ӳx#Cx=!@x=xxBx ]IC8 C]"CtGXB`bBgZkGP]X]`p#k#~H^P^XGGP  =t!=P =GTG(b @XXX*`]"CX]XG7JJG4v KvJ6G4X]GJ{S`KFX=GbsssGQXXBXXݢG"!!!!&H&HGVv@Ky KYGVX}/G?&1"GJsS`JFX/G"!!!GXXݢBXݲX]GBRRR2FJFJGvJq JFX}G&"GJaS HFXݢ"99 GBRRRGX=X}aBX}X]vJX=4G'{#GAAJxSKXFAXXݢX=!BX=XXBX8]#CX]X}GvKa HGX=G9!J`SH F9X} "CXXBXX]X= @X=  C`}#C8 CtG(B0bfUZkHE =GTG(b@XXX<`]"CX]XG7JJG4v KvJ6G4X]GJ{S`KFX=GbsssGQXXBXXݢG"!!!!&H&HGVv@Ky KYGVX}4G;!J`SH F;X]GGXX=!@X=Xݢ"99 G HHGvv`Jz@KzFvX}G_&R"GKwSJGX=GG!X=X}aBX}X]G4JJGvKr@JGX}4G?$! G;!J`SH F;X}¦֢֢GGX]XBXX]G HHG:v Ka H!G:X}¦֢֢TG&s"G[AJtSJTF[XGGX=X=!BX=X]GZv@JvJVFZXltG'#GJ{S`KFX"!l!7X=X=!CX=X}GvJvJFX$4G&"G8!HpSJ0D8X"1$17X]X=!CX=XGvHvJDX"!X! G'#G4!JpSJ0F4XBRXRWX}X=!CX=X¦֢֢G"!!!!&H&HGvJz@KFX=G_&R"GqaJ{S`K{FqX"99 G"!!!GXXBXX]G:v JtJ4F:X}G?'9#GH{S`KDXݢXXCXX]GvJtJFX=G&s"GJaS HFXݢX=XCXXG HHG4v Hz@K:D4X"99 4G&"G0!J{S`K;F0X]GGX=X}aBX}X]"99 G0JJGڢvJuJFڲX}G_&R"G;!H`SH D;X}GG3X=XBXX]GvHxKDX=G&"GaaJ{S`K{FaX="119XXݢBXݲX]GvJxKFX"!! tG&s"G4!JpSJ0F4X=XXݢBXݲXG"!!!!&H&HGvJz@KFX=G&"GH{S`KDX]¦֢֢G"!!!GXX}aBX}X]G HHG:v KuJ5G:X}¦֢֢G_&R"GJaS HFX}GGX=XBXX]¦֢֢G"!!!!&H&HGvKr@JGX}G&s"G;!J`SH F;X"99 G"!!!GղXX]ABX]X]zv`JzX"11 4G'{#G !HtSJ4D XXݢXBXXX}`BX} ]IC`="Cb {#CtG8B@b/]ZkHHGH]P]X`#k@#~^^GG@x  =t!= =GTGb@HHHIP]"CH]HG7JJG4v KvJ6G4H]GJ{S`KFH=GbsssGQHHBHHݢG"!!!!&H&HGVv@Ky KYGVH}G?&1"GJsS`JFHG"!!!GHHݢBHݲH]GBRRR2FJFJGvJq JFH}4G&"GJaS HFHݢ"99 GBRRRGH=H}aBH}H]G"!!!!&H&HGvKtJGH}"99 G$ G;!JrS@J2F;H}G"!!!GHHBHH]"99 G"1111&J&JGڢvJ`HFڲH}4G&s"GJaS HFHG"111G4HH]ABH]H]zv`JzH=4G'{#G!!JwSJ7F!HH=H@HHݢH}`BH} ]ICP}#Cp" ! CtG0B8b/fZk8@/8= BR@J@&zs"8} Bp¦"Cp "CtG0B8bfZk84G88G]]#kP#~^^GG8  =t!=/ =GTGbU@ӈ8]"C]GÐ7JJG4v KvJ6G4]b{{`G&"GHaS HD]bss`GÐGݢBݲ=GvH{`KD="11 G&s"GAAJzS@KZFAݢC"99 GÐ"1111&J&JG0v H{`K;D0]G&"GҢJzS@KFҲGÐ"111G =᳈B}vJ]`G_'Z#G2!JvSJ6F2ೈ==!@=}vJ}4G?&1"GۢJzS@KF۲ೈ=!C=}`B} B8"C0B R"CtG0B8bYRZkx =GTGbz@ӈ/8]"C]GÐ7JJG4v KvJ6G4]b{{`G&"GHaS HD]bss`GÐGݢBݲ=GvH{`KD="11 G&s"GAAJzS@KZFAU$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1"|ݢC"99 GÐ"1111&J&JG0v H{`K;D0]G&"GҢJzS@KFҲGÐ"111G =᳈B}vJ]`G_'Z#G2!JvSJ6F2ೈ==!@=}vJ}4G?&1"GۢJzS@KF۲ೈ=!C=}`B} B8"C0B R"CtG B(b]ZkxxG]]#k#~ ^(^0GG  =t!= =GTG`b@888*@]"C8]8PGP7JJG4v KvJ6G48]Pb{{`G&"GHaS HD8]Pbss`GPG88ݢB8ݲ8=GvH{`KD8=P"11 G&s"GAAJzS@KZFA8P8ݢ8C88P"99 GP"1111&J&JG0v H{`K;D08]P4G&"GҢJzS@KFҲ8PGP"111G 8=8B88}PGPBRRR2FJFJGۢvJtJF۲8]PG$ G:!HqS J1D:8Pbss`GPBRRRG88B88}PGP"!!!!&H&HG;v K`H G;8]Pbss`4G&"GJrS@JF8P¦֢֢GP"!!!G88=!B8=8}Pbss`GPBRRR2FJFJGvJpJF8]P¦֢֢TG&"GHaS HD8=P"99 GPBRRRGq88B88}GvHvJD8=PltG?'9#G!!JzS@K:F!8}Pl88B88P¦֢֢GP8KKG5v H{`K;D58=PBRR@G&"GJzS@KF8PGPG8=8B88}G;v Jr@J2F;8}PG&"GHzS@KD8ݢP"!!688=!C8=8=GvJr@JF8PG'#G7!HsS`J3D78ݢP88=!C8=8]PGP HHG2v H{`K;D28}P4G&"GJzS@KF8=P"99 GPG8=8]AB8]8}PGP0JJGۢvJuJF۲8]P"99 G?&1"G:!H`SH D:8]PGPG8}8B88}GvHy KD8=PG'#GAAJzS@KZFA8Pbssw88ݢB8ݲ8=GvJy KF8P"!! tG_&R"GxaJpSJpFx8P88ݢB8ݲ8P"99 GP"!!!!&H&HGvJ{`KF8}PG&"GHzS@KD8=P¦֢֢GP"!!!G188]AB8]8}PGP HHGvJuJF8]P¦֢֢G?&1"GJaS HF8]PGPG8}8B88}P¦֢֢GP"!!!!&H&HG;v Kq J1G;8]PG_&R"GzaJ`SH`Fz8PGP"!!!Gղ88=!B8=8}[v@J[8Pbss`4G_'Z#G !HxSK8D 88ݢ8B88=8]@B8] }iC@}"CB Z#CtG B(b/X^ZkG ](]0@#k#~0^8^@GGxp=x=t1=xGx= 1x=xGp x4GPbP@ӀØ]"C]GvJuJFGxaKyS KyGx=xB=@}xӢvJtJFӲx8KK/4G_'Z#G7!HyS K9D7x=10ೀ]AB]GvKuJG]tG:!KaS H!G:}X"C=@}GӢvJtJFӲG8!KaS H!G8]H"C}=!B=]GvJs`JFݢtGKaS HG=@"C]}aC}=GvJr@JFGJaS HFx"C=]AC]}G{v`Jq JqF{GԢJaS HFԲp"C=!C=]("1zv`Jq JqFz}GJaS HFݢ(C= "1yv`Jq JqFy]GJaS HF} ݢB0"1xv`Jq JqFx=GJaS HF]0}ݢBݲ8"1wv`Jq JqFwGJaS HF=8]}aC}ݢ= B=0}"C}=GvKtJGTGHyS KD}¦"C۲=]AB]GvJa HFtG8!K`SH G8]¦"Cڲ}=!B=}GvJa HFGK`SHG=P¦"Cٲ]}aC}]GvJa HFGJ`SHF`¦"Cز=]AC]}= @=x}iB"C0 CtGBb\Zkhh"1(=(}(xݢ4G]"}"GGEb# AhG0]8]@P#kp#~p^x^GG`X= ,@. HR@J2DHPp= L=H  ]tR]`4GBb/YVZk8 ChhH=pv`Jq JqFphGJuSJFhL=8h]H}#Czh@hhh= Bh=X} B@"C8"CtG0B8b7^ZkX=X0BX=18 F/ `H}"CTG B(b/;pZk``=PBR"CH}"CG@BHb'lZk4GGp]x]#kP#~^^GG= hp= l="1 = t4GBbUZk =GTGXb@ӐH]"C]ԢvJԲ4GWAKxSKXGW}=᳐B BRvJr@JFGKvSJG= BZY}=!@==@8}"C}hݢvKvJG=G9!HzS@K:D9l=0h]"C@}aB}ݢBݲ  CH= C8=#CtG(B0bLZk/*=0Bh]"CTGBboZk  @"! C8]"CtG(B0b/LZk=0B=bs"Ch"CGBbnkZk  @"! CB R"CtG8B@b*EZk ]H4GG]]#/k#~ ^(^0GG=]8$ . .JQ JF8B,R`h] ="d=808B8RPX] ="T=H]v@JH]GH= JpQJ0FH=4GH=!H`qH DH=LTG@]tR]=GTGb@g]"C]ԢvJԲGWAKxSKXGW}=B]RvJr@JFݢ֢6JJ/TG'#GUAKwSJWGU}=!;=!B=]GҢvJs`JFҲ4/G?'9#G8!HwSJ7D8}4=!B=}GvJtJF="!l! tG'#GJwSJF}l=]AB]G"!!!!&H&HGvJvJF"99 4G$ G7!JzS@K:F7]bss/`G"!!!GB"9\9 G"1\111&J&JGXv@K`H@GX}bs\s`G_&R"GJaS HF¦֢\֢G"1\11G4B]bs:v Hs`J3D:tG&"GJ{S`KF=C]}`B}0"C`=pv`Kq JqGpG !HyS K9D d]X}`]#CSB= B=}gC C0= CtG`Bhb/FZk/1]"C]ԢvJԲTGWAKxSKXGW}=BGvJr@JFGKvSJG=@]#CY}=!@==@Ve~$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1Ll"0bs?`0"C"CP"C"C#C4GGGb#/F@)=/ 4G@H}"CTGG@b# I@H=ѠGQs=HR]JSFQ@LݢB"C #CtG B(b/aZkØ4GGb#J@0'4G=="C}"C"C44GGpb#/hP@=ѠGQs=HR]JSFQ@ݢB"C #CtG B(baZk/= C==qv`JqtGJuSJF=]AC]= @=='B]"Cb s"CtG B(baZk`= CTGBb#mZkxx4Gcø=4GTGb @Y]"C]ԢvJԲtGWAKxSKXGW}=B`]vJr@JFGKvSJG=d]Y}=!@==@tx"Cp"Ct"CGGPkb#/loAp=/?pѠGrtJS}JtFr`tB#C" 9#CtGPBXbYZk4GG ](]0@#kLP#~^^GGt=GTG`b @ӈX]"C]P8/GP87JJG4v KvJ6G4]Pb{8{/`G&"GHaS HD]Pbs8s/`GP8GݢBݲ=GvH{`KD=P"1`1 G&s"GAAJzS@KZFAP`ݢCpv`Kp=Pbss`4G_&R"GQAKaS HAGQݢBݲB0}#C}]GvJa HF]TGHtSJDݢ(#C=!C=}G[v@Ja HAF[GJ`SHF] ¦"CڲB=GYv@Ja HAFY}tGJ`SHF@¦"Cײ]C}= @=]GBX=#C0 CtG0B8bKZkG]]#k#GGL8CF>!Q @>> L @8CG #k#GGG >^  G8 D/}#_  G0#k#~^^GG80=(]0 (= BR"C]uH"CH C@@0v H0@4GJrS@JF@=@@=!B@=@]@bs8s`G@"!8!!!&H&HGvHtJD@=GJsS`JF@@8G@8G@@=@=!B@=@@PG@P HHG5v HtJ4D5@=@bsPs/`G$ GQAJpSJPFQ@@P/G@PGt@=@B@@]@G@bsss3fJfJG2v H`H D2@@"11 G&s"G0!HuSJ5D0@]@G@bsssG2@@=!@@=@G5v JtJ4F5@]@$4G&"GraJaS HaFr@@$@@B@@=GvJr@JF@@XG&"GUAJaS HAFU@}@X@@B@@=@BRR@G@bsss3fJfJGvHuJD@=@tG&s"G!!JrS@J2F!@@G@bsssG@@=!@@=@]@\G@\0JJGvHs`JD@=@"1\1 G&"GAAJuSJUFA@}@\G@\G3@@=!@@=@vJ@=@bss`G?$! GJ`SHF@@@}aB@}@@B@]"C@]@GvHa HD@GJqS JF@"! @}"C@B@@]@B@ = 8=GTGb# @@@@ 8]8R ] "C="CtGBbOZkG]]#k #~^^cGG=]}4G}"C}cx"c} s}]]"C=]RvJr@JFGJ`SHF=10]}aB}=GvJtJF=]@TG&s"GJ`SHF`"C]}aB}=GvJpJF]@G&s"GJ`SHF=`"C]}aB}=vJ=/]$ G1!HrS@J2D1B=Av@JA}5 BG$ G3!HuSJ5D3=]B=}`B}=/ ]R/@01B`v`JpJpF`4JJ 4G]TGvJ`HF}"C}=G1v HuJ5D1TGJrS@JF"! C =B]GvHs`JD=GJqS JF`BR"C@}BGvHq JD]GJsS`JF"C=B]GvHs`JDtGJqS JFXBR"C@}BGvHq JD]4GJsS`JF"C=B]GvHs`JDTGJqS JFpBR"C@}BGvHq JD]GJsS`JF"C=B]GvHs`JDGJqS JFhBR"C@}BGvHq JD]tGJsS`JF"C=B]GvHs`JDGJqS JF`BR"C@}BGvHq JD]GJsS`JF0=0"C=!@=}GvJtJF=GQAJuSJUFQ8}8"C=!@=]GvJuJF}tG3!JtSJ4F3@]@"C=!@=}GvJtJF]G2!JuSJ5F2}"C=!@=]GvJuJF}TG3!JtSJ4F3P]P"C=!@=}GvJtJF]G2!JuSJ5F2}"C=!@=]GvJuJF}TG3!JtSJ4F3H]H"C=!@=}GvJtJF]4G2!JuSJ5F2}"C=!@=]Bx"Cp0"CX"1"C`= Ch"C=GAv@JtJTFATG`aJuSJuF`="1"C!]BG0v Hs`J3D0=GJrS@JF=X"C}B=G1v Hr@J2D1GJsS`JF="1"C!]BG0v Hs`J3D0=tGJrS@JF=P"C}B=G1v Hr@J2D14GJsS`JF="1"C!]BG0v Hs`J3D0=TGJrS@JF="C}B=G1v Hr@J2D1GJsS`JF="1"C!]BG0v Hs`J3D0=tGJrS@JF="C}B=G1v Hr@J2D1GJsS`JF="1"C!]BG0v Hs`J3D0=GJrS@JF=}"C@]GvJtJF}G3!JuSJ5F3=]"C@}GvJuJF]tG2!JtSJ4F2=}"C@]GvJtJF}G3!JuSJ5F3=]"C@}GvJuJF]TG2!JtSJ4F2=}"C@]GvJtJF}G3!JuSJ5F3=]"C@}GvJuJF]TG2!JtSJ4F2=}"C@]GvJtJF}4G3!JuSJ5F3=]"C@}GvJuJF]G2!JtSJ4F2="C}B=]@B]"! Cp=bs"CX}"C`BR"Ch]4G=pೈ}`=W@o$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1"81 BBR"C "CtGBbzZk8=GTG8b@Ө/=81=} `"C"C"CtGhBpb/\JZk/ = ]4GvJs`JF|` h`=TGY`}4G;Xx="Cp]tGGb#K@px="j0.r0HQ0J2F0>}/Z`X4Gb#n_=! x"10]bsrpݢ`"9xTG`G97 K GyGx=AGSF0WJFPFAX4GF5JFFh"98]TC0b{#CTGBb/dZk@"! CTGBbdZk@8"! CTGBbdZk4GcG]]#k0. 0HQ 0J2F0>À#~`^h^pGGPH=@]< . .JQ JFBDR(0]`=",="CXX(=@v@Jq JQF@X=TGJsS`JFX,X=(]"CQX=!@X=XGvJuJFX=GqaJrS@JrFqXHXXBXX=X]@BX]P C"C= CtG(B0b [Zk88/H=1/ H]TGr@("CTGBb dZk8G`]h]p#k#~H^P^XGG00(ѠGqKPJF/pG]"@FuHTJFh4G=  D0vHQ!J6F0` 0}s`GRpJGL( /?"8=(]WB8"TGGeb#aAG:(=! =="C@=@}"ӢvJtJFӲ@TGWAKxSKXGW@} @="C@=!B@=@}@B@0"C#CtGBbZZkG ==="CGTGGb#qI@ GH]P]X`#kÑÙ#GGGLC F>!Q @>> L @C G #k#GGG>^^}#_  G #/kP#~^^GG=x]HP`h"dtx4G B(bIZk=GTGb@Ӑ@]"C]vJuJFGxaKyS KyGx==@}GӢvJtJFӲTGWAKxSKXGW}"! C;=!B=]}`B}B@"CP "CtGBb3HZkI0]"C]`vJuJFtGxaKyS KyGx=d=` C]AB]BpCP"9#C0]#CtG B(bZZk/p=0 @p=p=8 F x`}"CTG0B8bbZkxx=`BR"C`}"CGPBXb^Zk4GG]]#k #~^^GGH0=v H0=G0= J`QH F0=TG0]AJ`qH@F0]4H=t!=H=GTGb[@PPPMX]"CP]P8GÀ87JJG4v KvJ6G4P]b{8{/`G&"GHaS HDP]bs8s/`GÀ8GPPݢBPݲP=GvH{`KDP="1`1 G&s"GAAJzS@KZFAP`PݢPCPPG0v Jy K9F0P}"!4! G&"GJrS@JFP¦֢4֢ղPPCPP=G1v Hy K9D1PBRlR@tG&"GJsS`JFPݢlPPCPP=GQv@Jy KYFQPbsds`4G&"GHuSJDPݢdP=PCPP]"99 GÀbsss3fJfJGvH{`KDP4G&"G4!HzS@K:D4P=GÀbsssG1PP]ABP]P}LGÀ"!L!!!&H&HGۢvJpJF۲P]LtG?&1"GHsS`JDP]LGÀ"!L!!GPPBPP}\GÀ\ HHG;v Kq J1G;P]\G_&R"GJaS HFP¦֢\֢GÀ\GP=P}aBP}P}GÀ"!!!!&H&HGvJr@JFP]¦֢֢4G&"G:!J`SH F:P}"99 GÀ"!!!GPP]ABP]P}PݢBPݲH@X="C  #CtG B(bTZkPPPÀBRR@]@4GH=4GTGb@PPPHbs0"C83b#d_X CPPPv@JPP}tGӢJtSJFӲPPP=!CP=P}8vJ`HFP=GJrS@JFP¦֢8֢֢ղPPCPP]P@P<@0"1"C8]"C<}"CGGgb#/cA"8=/?0"C8="CTGGhb#dA8=ѠGXQs=HR]JSFXQC@<\HݢBX"C  #CtGBb>MZk<0= C0"1"C8]"C<}"CGGgb#bA8=?8ѠGXrtJS}JtFXr`<\HBX#C " 9#CtG@BHbOZk0 C4GBbEZk4GG]]#/k`#?G~x^^~GGGh`=X]4GP`/G`=41 G8]"Cp]pGPv@Jq JQFPp=GJaS HFp`Bp=p]ABp]p}pBphD!y`@/ 4GX]@BG `}gB0}X=0=0HH]R@H8}"C "CtG@BHb/ttZkP8D y`@ 4GX}`BG@`B(Xݢ(ݲ(HH]Z/@H8= C CtG0B8bJZkP8D y`@ 4GX}`BG@`B Xݢ ݲ HH]Zr@H8= C CtG B(b/]ZkPeD y`@ 4GX}`BG@`BXݢݲHH]Z/O@H8= C CtGpBxbTtZkPCD y`@ 4GX}`BG@`BXݢݲHH]Z.@H8= C CtG`Bhb/AZkP!Dy`@4GX]@BG `}jB}XHH=9/ H8}#C" ! CtGPBXbXZkPPGx]]}#/kP#~^^GG@8=0]4G(4G =T"0.P.0JRPJ2F\ 0=M P]"CH]H0v H0HGJrS@JFH=HH=!BH=H]8}s2v Hs`J3D2H4GJ`SHFH=8]RAH}HBHHp"10v Hq J1D0H]GJsS`JFH=pH=HBHH]bs2v Hs`J3D2H4GJqS JFH=BRAH}HBHHx"11 Gx"!!!!&H&HGpv`JuJuFpHx/G?$! G@AJqS JQF@H}x/Gx"!!!GHHBHH]xGxbsss3fJfJGvHa HDHx"11 G&s"G0!HuSJ5D0H]xGxbsssG2HH=!@H=HG5v JtJ4F5H]xltG&"GraJaS HaFrHxlHHBHH=GvJr@JFHxtG&"GUAJaS HAFUH}xHHBHH=Gqv`Jr@JrFqHxTG&"GTAJaS HAFTH}xHHBHH=Gqv`Jr@JrFqHx G&"GUAJaS HAFUH}x HHBHH=H]@BH]@4GTG0bQ@P CHH8=1pv`Jq JqFpH4GJuSJFH8=98H]H}aCH}H=pAv@JpJPFAH}GӢJtSJFӲHpH=H]ACH]H}"!;v Ja H!F;H]4GJsS`JFHݢHH=!CH=H]x"!! Gx"1111&J&JGZv@JpJPFZH}x/TG&"GKuSJGHx"99/ Gx"111G HH]ABH]H}{v`JtJtF{HG5!KwSJ7G5H=H=HBHH]H}`BH}"CHݲHG5v KwJ7G5HGJqS JFH]BZ#CRH}HBHH}GvKuJGH=TGJ`SHFH=8BR"CQH]H}aBH}HݢGvKuJGH}tGJ`SHFX6$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1u"H="1"C9H]H]ACH]HGvJuJFHGJ`SHFH}"1"C;H=H]ABH]H]GڢvJtJFڲHTGJ`SHFH@"1"C8H}H=!CH=H}GӢvJtJFӲH]GJ`SHFH"1"C7HH}aCH}H=GvJs`JFHݢTGJ`SHFH]"1"C:HHCHH}GvJs`JFH=tGJ`SHFHݢ("1"C6H]HBHHGvJs`JFH}tGJ`SHFH="1"C9HݢH]ACH]HGvJs`JFHGJ`SHFH}"1"C;H=HݢBHݲH]GvJs`JFHGJ`SHFH"1"C8H}H=!CH=HݢGvJs`JFH]tGJ`SHFH "17H b{#CxH]ABH]H}GӢvJtJFӲHtG@AKaS HAG@H= H}#CxH]ABH]H}GӢvJtJFӲHG@AKaS HAG@H=Hb{#CxH]ABH]H}GӢvJtJFӲHG@AKaS HAG@H=xHxb{#CxH]ABH]H}GӢvJtJFӲHG@AKaS HAG@H=Hb{#CxH]ABH]H}HBH@ݢBP C= CtGBb]ZkHH/@GTG0b@H@=!"F!@]bs4GF3`JvFF@WG[G8WKGXGW@"! G2F!w H2D!F @}(ӢTGF47JFFӲ@@=BZX9 @}rC( CTGBb/[Zk @@ "! CTGBb [Zk@@"! CTGBb/[Zk@@x"! CTGBbZZk@@ "! CTGBbZZk@@= CTGBbZZk@@8=TGBbZZk@=4GTGHb#_HHH]"CH]HGvJuJFHTGxaKyS KyGxH=("CH=H@HH}GӢvJtJFӲHGWAKxSKXGWH}= C;HH=!BH=H]GvJs`JFHݢG6!KwSJ7G6H] = C:H}HBHH=H]@BH]@B"C"CtGHBPb/]Zk?$:! D( @](}GF3`JvFF@ (=GBZG7G D8KG8D7@=pGtF1 J4FqFp@B¦ "C" 9#CtGBbYZk4GG]]#k#~8^@^HGG@8=@=t1=@G@=41 G@/@=4GG0Kb#,A8P= CH=H=GvJr@JFHGKvSJGH=HBZ#CYH}H@HHGpv`Jq JqFpHtGJuSJFH@"9#C8H]H}aCH}H=GAv@JpJPFAH}GӢJtSJFӲHx#CH=H]ACH]H}G;v Ja H!F;H]GJsS`JFHݢp"CHH=!CH=H]G:v Ja H!F:H}GJrS@JFH(¦֢ղH(#CH@HH=GAv@KpJPGAH]GraKsS`JsGrH ¦֢ղH #CH@HH=GAv@KpJPGAH]GraKsS`JsGrH0¦֢ղH0#CH@HH= "Av@KpJPGAH]GraKsS`JsGrH8¦֢ղH8#CH@HH=HBH@]FCBR"CP}"CtG@BHb/]Zk00/@Gb#_ @@"! CB R"CtG@BHb]Zk0@=40G8]@]HP#/kP#~^G00t@= C8=8GvHq JD8=G?&1"GHpSJD8};11388=!@8=8];11/ G HHGvJs`JF8=/G&"GqaJaS HaFq8/G;111G 8]8}aB8}8=G[RRR2FJFJGqv`Ja HaFq8[RR@G&"G`aJaS HaF`8]G;!!!G8=8}aB8}8=G!v J`H F!8{ss`TG?$! GPAJ`SH@FP8};!!388B88]GvHa HD8;1l1 tG?$! GpaJ`SH`Fp8=;!l!188B88}GvHa HD8[RR@tG?$! GpaJ`SH`Fp8];!!288B88}GvHa HD8;1 1 G?$! GpaJ`SH`Fp8=;! !188B88}8= @8=0@@]"C{ s"CtG [({^ZkG]#k#~^^ GG``tp= Ch=hGvHq JDh=tGJsS`JFhH"Ch=h]ABh]h}GvHtJDhTGPAJqS JQFPh@}"C`hhBhhGvHq JDh}GJtSJFh8"Ch=h]ABh]h}GvHtJDhtGPAJqS JQFPh0}"C`hhBhhGvHq JDh}TGJtSJFhP"Ch=h]ABh]h}GvHtJDhGPAJqS JQFPhbs"C`hhBhhGvHq JDh}tGJtSJFh"Ch=h]ABh]h}GvHtJDhGPAJqS JQFPhbs"C`hhBhhGvHq JDh}GJtSJFh"Ch=h]ABh]h}GvHtJDhGPAJqS JQFPhbs`h"Ch=!@h=h=Gqv`Jr@JrFqhGJuSJFh"1 h]bs"Crh=!@h=hG4v JuJ5F4h]GJsS`JFh"1 h"Ch=!@h=h] "2v Js`J3F2hGJuSJFh"1 h]bs"Crh=!@h=hhBh`=&B`B R"Cp}"CtG B(b\ZkXX6`=H]4GF2@JUFF`ݢ@6G:G7WJF7G6`}8GF wHDF`]0}TGF37`JvFF`B#CTG@BHbnVZk`@"! CTG@BHbeVZkXG]] 0#k#~@^HG0 C88=GvHq JD8$4G?&1"GHaS HD8};1$1388=!@8=8]GvHq JD8=XG?&1"GaaJ`SH`Fa8;1X1088=!@8=8}3v J38GJaS HF88=8}aB8}8=8]@B8]0B="C0 CtG[{\ZkG@]HP#k`#~^^GGpptp=4GTG@b#_xxx0]"Cx]xpGp7JJG4v KvJ6G4x]tGJ{S`KFx=pGpbsssGQxxBxxݢpGp"!!!!&H&HGVv@Ky KYGVx}p/G?&1"GJsS`JFxp/Gp"!!!GxxݢBxݲx]p8GpBR8RR2FJFJGvJq JFx}p8G&"GJaS HFxݢp"989 GpBR8RRGx=x}aBx}x]G:v HwJ7D:xp`G?'9#GH{S`KDxݢp"1`16x}xBxxGvKwJGx=pd4G_&R"G9!JpSJ0F9xݢpbsdsvx=xBxxxCxp@0]"C" 9#CtGBbAZkG]]#/k`#~^^GGpptp=4GTG b#_xxx0]"Cx]xP/GP7JJG4v KvJ6G4x]Pb{{/`tG&"GHaS HDx]Pbss/`GPGxxݢBxݲx=GvH{`KDx=P"11 G&s"GAAJzS@KZFAxPxݢxCxxP"99 GP"1111&J&JG0v H{`K;D0x]PG&"GҢJzS@KFҲxPGP"111G x=xBxx}P8GPBR8RY#W$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1}"R2FJFJGۢvJtJF۲x]P8G$ G:!HqS J1D:xPbs8s`GPBR8RRGxxBxx}G;v HxK8D;x=P"9`9 G&s"GJzS@KFxP`xxݢBxݲx=xCxp='C0}"CB R"CtGBbOCZkG]]#/k#~h^p^xGGXXtX=4GTGb#_```0]"C`]`0/G07JJG4v KvJ6G4`]tGJ{S`KF`=0G0bsssGQ``B``ݢ0G0"!!!!&H&HGVv@Ky KYGV`}0/G?&1"GJsS`JF`0/G0"!!!G``ݢB`ݲ`]:v J:`]4GraKsS`JsGr``=`B```ݢB`ݲX@0="CB Z#CtG B(b/DZkGh]p]x#k#~h^p^xGGXXtX=4GTGb# _``/`0]"C`]`G7JJG4v KvJ6G4`]b{{`tG&"GHaS HD`]bss`GG``ݢB`ݲ`=GvH{`KD`="11 G&s"GAAJzS@KZFA``ݢ`C``"99 G"1111&J&JG0v H{`K;D0`]G&"GҢJzS@KFҲ`G"111G `=`B``}`B`X]GB0"C¦ "CtG B(b9EZkGh]p]x#/kP#~^^GG00t0=4GTGb#P_888>@]"C8]8 ,/G ,7JJG4v KvJ6G48]tGJ{S`KF8= ,G bs,ssGQ88B88ݢ 8G "!8!!!&H&HGVv@Ky KYGV8} 8/G?&1"GJsS`JF8 8/G "!8!!G88ݢB8ݲ8] G BRRR2FJFJGvJq JF8} G&"GJaS HF8ݢ "99 G BRRRG8=8}aB8}8] $G "!$!!!&H&HGvKtJG8} "9$9 4G$ G;!JrS@J2F;8} $G "!$!!G88B88]G:v Jy K9F:8] ¦֢(֢TG&"GraJ{S`K{Fr8 (88C88=GѢvJy KFѲ8 "!! G&s"GJrS@JF8 88C88ݢG6v Hy K9D68}  G&"GJrS@JF8  8=8C88ݢ8= C8=0B@"CB R"CtG B(bQZkG]]#/k#~`^h^pGGPPtP=4GTGb#_XXXj0]"CX]X,/G,7JJG4v KvJ6G4X]b{,{/`tG&"GHaS HDX]bs,s/`G,GXXݢBXݲX=GvH{`KDX="11 G&s"GAAJzS@KZFAXXݢXCXXX= CX=P=(B0}"C" ! CtG B(bRZkG`]h]p#/k0#~^^GG00t0=4GTGb#l_888@]"C8]8,/G,7JJG4v KvJ6G48]b{,{/`tG&"GHaS HD8]bs,s/`G,G88ݢB8ݲ8=GvH{`KD8="11 G&s"GAAJzS@KZFA88ݢ8C88"909 G"10111&J&JG0v H{`K;D08]0G&"GҢJzS@KFҲ80G"1011G 8=8B88}8GBR8RR2FJFJGۢvJtJF۲8]8G$ G:!HqS J1D:8bs8s`GBR8RRG88B88}G"!!!!&H&HG;v K`H G;8]bss`G&"GJrS@JF8¦֢֢G"!!!G88=!B8=8}bs$s`GBR$RR2FJFJGvJpJF8]¦֢$֢4G&"GHaS HD8="9$9 GBR$RRGq88B88}GvHvJD8=(TG?'9#G!!JzS@K:F!8}(88B88GvKvJG8="! ! G_&R"GJqS JF8} 88B88ݢG6v HxK8D68]G?'9#GraJqS JqFr888B88ݢ8C80B@=#C`B R"CtG B(bRZkG]]#/k`#~^^GGpptp@4G8"1tG`b#_xxx0]"Cx]xGÐ7JJG4v KvJ6G4x]tGJ{S`KFx=GÐbsssGQxxBxxݢ6v K6x=4GaaKpSJpGaxx}x=!Bx=xGЦ֢֢֢6JJG5v KwJ7G5x=/G'{#GaaJzS@KzFax=BRR/@GЦ֢֢֢GxxBxx=8GÐ8 HHGyv`J{`K{Fyx]BR8R@G?&1"GJvSJFx8GÐ8Gx=x}aBx}x};v J;x4G_'Z#GHvSJDxxx=!@x=x=x= Bx=p}hC0"C0B Z#CtGBb/zZkG]]#kp#~x^^GGhhth@4G"1tG@b#_ppp0]"Cp]ppGp7JJG4v KvJ6G4p]pb{{/`tG&"GHaS HDp]pbss/`GpGppݢBpݲp=GvH{`KDp=p"11 G&s"GAAJzS@KZFApppݢpCppp"99 Gp"1111&J&JG0v H{`K;D0p]pG&"GҢJzS@KFҲppGp"111G p=pBpp}vJp]p4G_'Z#G2!JvSJ6F2pp=p=!@p=p}pBph}hC0"CB Z#CtG0B8b/|ZkGx]]#k#~P^X^`G#G@8=0](} "`1BhR=]P]" ]@8=}"Cp} GGGHb#(@HH/G' = p] bs"CTGGb#)@p4GGb#/"*@G= 0(=p}GsG@b@p4GGb#*@G4GGP]X]`p#/k#~@^H^PGG0(= ]}l"0.P.0JRPJ2Fbts}@]" ] = BR"CTGG(b#)@88Glh"X1"C]"C}"C0}G0B8b/FZk  " D0rHQ!J2F0 D/Y @BX@ bs"C"CTGG b#/?@ "! CTGG(b#)@88/G9=ѠGu=JTJF?h¦`"C"C#C(}G0B8bFZk  " D0rHQ!J2F0 D) @B/'@ bs"C"CTGG b#@ "! CTGG(b#I)@88= G4GG@]H]P`#k0 H?F2F0?ú0 H?F2F0? #~^^G#G=]}xx8@"<򂦄"4..4JUJ5FBR(=0]]",]򢦐 "򂦜"4..4JUJ5Fbs=}]" ]"1"CTGG b#(@Ө/GÀP]"CGtGGb#1@" D0ZU$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1"rHQ!J2F0 D @B/@Hbps"C"C"CtGBbFZk"! CTGG b#(@ӨG(="C(]"C}&"GGHb#@P/=H=="C]"CP}& "GGHb#@#=X"CGH=]@_&R" }5`B`&s"&"GG"C"C}GGGGHb#@H HH4G  @TG=[[`X[C(] @``4G`(`BH=99&K&KB]BG7wCXX4GX=b`FvHUJF`F/9B8Hx#C"9#CBZ#C(}#C`HX CGBb{EZk"! CTGG b#(@Ө/G =ѠGu=JTJF"Cx=tGtGGb#/@ѠG0rHQ=J2F0 }"C"C}"C&Ӑ"GGHb#@ӈ HH&=!ѠG(Qs=HR]JSF(Q@4JJ0B0ݢѠG(8zJY=K:G(8 (};fKfK@,GGB/DHZkBFZk0ݢѠG(8`JY=K G(8/ (= C("C}&"GGHb#@((=BG0PB``/4G`GY{JZXK[GYG@`C/`H C"! CBR"C(}"C`"CGBbDZk"! CTGG b#|'@ӨGdP=9 ]R2FJFJ4@}2`H񂦈"C8"C8"C}GBbDZk" D0rHQ!J2F0 D/f @Be@bs"C8"CTGGb#/@"! CTGG b#B'@Ө/G)"1B@Fu2JTJF@FIנB/GH¦h"C"C#CtGBbvDZk"! CTGG b#'@Ө= G4GG]]#k40 H?F2F08?þ HFF3WY J_G[GY[_Ñ0 H?F2F0?ï 2JFFð#~8^@^HGG0(= ]vJG]@J`QH@F]TG=!H`qH D=4G= (=TGGb#&@G2=) pJ0]"C}"Cb#_/ ]"CTGGb#/&@= C4GBbYoZkG= C4GBbQoZkG= C4GBbIoZk4GG8]@]HP#/k #~^^G#G80=(] }88"1=="=8"P.p.PJSpJSF8"1=="=88="=8"P..PJTJTF8"1=="=88bs}="=`X}v`JX}GXJrQ@JFXTGX}aJqq JqFX}\@4G08t8=GTGb#_@@@H]"C@]@GvJuJF@GxaKyS KyGx@="C@=@@@@}GӢvJtJFӲ@4GWAKxSKXGW@}= C;@@=!B@=@]GvJs`JF@ݢTG6!KwSJ7G6@]= C:@}@B@@=GvJr@JF@tGKvSJG@== C9@]@}aC@}@Gpv`Jq JqFp@GJuSJF@= C8@=@]AC@]@}G[v@JpJPF[@}GӢJtSJFӲ@=7@=#C8@@@@Gpv`Kq JqGp@}GӢJtSJFӲ@=@=#C8@@@@Gpv`Kq JqGp@}tGӢJtSJFӲ@=@=#C8@@@@Gpv`Kq JqGp@}GӢJtSJFӲ@=@=#C8@@@@Gpv`Kq JqGp@}GӢJtSJFӲ@=@=#C8@@@@@= B@=8}gC=H"CtG@BHbRmZk@@@0]@Pbs`J`"C8"CGtGGb#.@8P= CX"C8b#r_0PUB0= P]8@F/`@8"C`G0ݢGX"CGG5b#/1@Ol8= !@=`=/ @]SBp]@Bx0"Cx]p}( h C0b#_b8=@=4G`= }$`@J"C"C#C=#C]#C}#Cݢ޶8@=C8G}~h= >tG b_<8=@=0= 8}X"Ch]8b#_>8='@"1"CH]"CtG@BHb/lZk0q`h4GGb#$@X C4GpBxb/AmZkG=`= h4GGb#$@X C4GpBxb/1mZkG-G+h4GGb#$@X C4GpBxb/!mZkGh4GGb#/$@X C4GpBxbmZkG`= h4GGb#/z$@X C4GpBxbmZk4GG]]#k#~ ^ ^ ~ ޴   > ^( ~0 8 @ ޵H G#G G G@] G GG"0.P.0JRPJ2Fbs}}"}BR]"bs"S..SJTJTF]="="bs"S..SJTJTF]="= ("b,s"S..SJTJTF4]="=8@x"|bDs"S..SJTJTFLh]p="l=PvJPGPJpQJFPTGP}aJpqJpFP}TG4G tL]GGTGb#q_HHHKX="CGvJr@JFGJuSJF8#C@GvJ{`KF4G`aJqS JqF`0"C@G v KwJ7G TGJzS@KF(}#C`@GvJs`JFtGKvSJG =#C @G`v`Kz@KzG`GJrS@JF"C@G v KxK8G G@AKpSJPG@}`}"C`@GvJuJFG !KaS H!G ]#C@@GvJ{`KFtGJuSJF= =#C @G@v@Kq JQG@G`aKsS`JsG`"C@G v KxK8G G@AKqS JQG@}`}#C`@@AX= C@=tGBbkZkHHH/{`G="C8]"CGtGGpb#+@H CP= C8 hb#7_G/`"!V#H HXF/ øBR"P}"CCTG0B8b/{UZk5@4G4GH=H}U`B`/`H8F/(ѠGxyJXKGx\ BZ0@C b[ѠG0rHQ=J2F0P bs""C"C"C"CC~Xbs GBb/ZkpѠGh0rHQ=J2Fh02 bs"Ch"Ch"CXbs GBb/Zkh È= GC" 1"Cx]"CX}"CG"GGGG8b# @ G/`"! H $zc XP="CTGGxb#8"@GH= CP"C8 hb#_GX4GGb#X"@/:x"vJ`HF|=B2h}󂦴vJs`JFlݢ⦸ײ`/ "9#C@BZ#CTGG`b#?A``"a4GPBR"Cbs"CP"GG[@Zkx C4GPBXbuEZk 0@ 8Fh "1(d ̡/7AA(0B(¦ѠGY{JZ]K[GY/@ "! C="C]"Cbs"CCXbs(GBb Zk C"! C`]"C^GGGGb#~_84G*!`. J/ 8}"C"C"C"C"C#C0=>(}~8=$@8 D>8`= >tGbZ_8`P= C`]8 b#_H$zc A`"! CX]"CtGBbiZkGP!C4G0B8b$jZkGʡ`4GGb#!@P!C4G0B8bjZk4GG ] ] } ݤ   = ]( }0 8 @ ݥH P #/kéi@#~^^GG=]PX`h dt4GBbiZk=4GTG b#_Ә@]"C](vJuJFtGxaKyS KyGx=(=@}GӢvJtJFӲTGWAKxSKXGW}= C;=!B=]}`B}0"C`Wv@KxKXGW=4GH{S`KD=d]Q}`"CBC]HC@ C0= CtG B(b/FZk/9p4Gx}x/2`"C`"C`#CtGG b#+@`p=0 @p=p=8 F `}"CTGBbrCZk À=BR"C`}"CGBb^Zk@"! C0]"CtG B(bdFZkx4GG]]#k#~^ G=;01"C]tGG`g{#dPAG] 0#k#~^G[o$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1D"4GGf{#PAG] #k#~^ G=;01"C]tGGe{#PAG] 0#/k#~^ G=;01"C]tGGPf{#PAG] 0#k#~`^h^pG#GPH=@]\ . .JQ JFBdR]`=" =H0JJG4H@= C0= CGGGG b#@XX/X!4G8]8"CP=("C "CGGb#/%@ (== ==0"CTGG b#@04GGP b# @4GG`]h]p#k#~P^X^`GG@0  =t!=@HH="TG B(b/OoZk@8= CTG@BHb/|Zk8 CGGGG`BhbB}ZkGPBXb}ZkGP]X]`p#/k#~P^X^`GGH@=8]"11"J"J (0]GJ1 J1'JQF0]@= H GTG@BHb/LZk8H= 4GBbZZk"!GTG0B8bKgZkH4FWH=/ GH4GBb/3[Zk0DG/#@H ="C}"CtGBb~oZkH/GH4GpBxb/\ZkGC4GBbZZk"!GTG0B8bgZk%H4G`BhbkZk  "!!LP"C(C "1!N(C BR0@B bSH("C BRtGBbAZkGP]X]`p#k#~H^P^XG#G( =(G(4GPBXb [Zk0DGa "!!= BR/:@ bs""CCTG@BHbNVZk ="CG0]0="TG0B8bzZk ""C="C]"CG8}G@ "C #C8}"@"GBb/xZk ""C="CTGBbvZk(4GBb/7ZZk / ="C]"C bs"CtG`Bhb/\Zk C= CTGpBxbnZkGH]P]X`#/k#~h^p^xGG`X=P]`]]=K I0"1TG@BHb/RZk=/ G4GBb/3[ZkG1=BRANbs"CCrN"CC¦֢0Bײ"9#CBRtGPBXb"wZk/= G4GBb[ZkG1=/]tR]Pݢ8FpL8`=8=P}/ ``X=TG b _G(b@P8D((]}SF@(X=$TG b_p  000]@0X=TG b_ ,000X=TG b_ 4000X=TG b_(t  `00]/@0X=TG b_ 000X=TG b_ 000X=TG b_ 000X=TG b_ h000X=TG b_ l000X=TG b_ p000X=TG b_ 000X=TG b_ 000X=TG bu_ 000X=TG bk_ 000X=TG ba_ 000X=TG bW_ d000X=TG bM_ 000X=TG bC_ 000X=TG b9_ 000X=TG b/_( ((9(=1H=H}6`HFHݢX=$TG b_Ht  00]/@0X=TG b _ 000X=TG b_ 000X=TG b_ 000X=TG b_(@@@=]2F @}X=$TG b_@t  `00]@0X=TG b_ 000X=TG b_ 000X=TG b_ 000X=TG b_ 000X=TG b_ 000X=TG b_ 000X=TG b_ 000X=TG b_ 000X=TG b_ 000X=TG by_ t000X=TG bo_ x000X=TG be_ |000X=TG b[_ 000X=TG bQ_ 000X=TG bG_ 000X=TG b=_ 000X=TG b3_ 000X=TG b)_ 000X=TG b_ h000X=TG b_ l000X=TG b _ p000X=TG b_ 000X=TG b_@@(=F/(]X=$TG b_(t  `00]@0X=TG b_ 000X=TG b_ 000X=TG b_ 000X=TG b_ 000X=TG b_ 000X=TG b_ 000X=TG b_ 000X=TG b_ 000X=TG b_ 000X=TG b_ t000X=TG bw_ x000X=TG bm_ |000X=TG bc_ 000X=TG bY_ 000X=TG bO_ 000X=TG bE_ 000X=TG b;_ 000X=TG b1_ 000X=TG b'_ h000X=TG b_ l000X=TG b_ p000X=TG b _ 000X=TG b_ T000X=TG b_((G(b @Gh]p]x#k#~ ^(^0GG= b= LC "<! CN0@8 D = NB 4GGtG8B@b/WZZkLC /"= LC<! NC 4G(B0b/ZZkL4GC< WB =0 B=} t¦<NC = OC<98 G/u 4GGtG8B@b/ZZkLC<g= NC _= NC<1Y ]@NB 4G(B0bnZZkL4GC< I= NC 1F#]@NC<R @4G(B0b/SZZkL4GC< NC =7 B ]21@B] ݢ<ײOC = OC<98 G ]@OB 4GGtG8B@b/YZkLC<G ](]0@#/k#~ ^(^0GG=/ 4G B(bfZk4Gb# _G B(b/ xZk"4G0B8b]vZk ?$>! ="4G@BHb@Zk Gb#_4G@BHbdZkG ](]0@#k#~^ ^(GG=/ 0!F0("C"<1"C p"1"C(8 4GG0B8b/oZk4G8Fp"18G4Gb#_p84GTGPb_  T D l=u B BlR@bl4G@BHbYmZklG] ](0#k#~h^p^xGG80=80==/I=G x"1TGBbMZk = G4G8B@b/'VZkG1=BRANbXs"CCrN"CC¦֢0Bײ"9#CBRtGBbrZk/= G4G8B@bUZkG1=/]tR]¦֢HݲH8@$H]b[ C4GTGXB`bkZkd C"!HBBR"Cp AG8B@b/SmZkPP/4G@=@}0`Fj`8GTGBbqGZkG4GHBPb/cZk"!!Lt"CC"p1"CBRANCR"CTGGOb#")A@@@4G(B0bdZk0@"8/GøBR84G8B@bvUZkG"! CGBRtGBbv{ZkH"!!1 @@=@=CH]QB/ H}aNB4GBb*wZkH0@HH@=BBbsaN"CC"¦֢NBXX"#C@@]Z/@@}4GBbnZk8H= CTGGOb#(APPP4G(B0bcZk<@`H"1"CTGxBbgGZk`=H4GG8Qb#/)A@X=0B"BRbs"C8BRtGBb{Zk=8 !TGb@h6HGHb#D_Ӹ84Gb @Gh]p]x#k#~^^GGtGb#._ 6Hp"!8Gxb#_p84GBb/bZk  Q D vJ"1"C\j}$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1"Pb#@Ө C4G B(b CZk  !D "C4G B(b/CZkG]] #k#~ ^(G((; !=]]"C4G {@G ](0#k#~ ^(^0~8GG=G0JJB0"1"CTG B(bOJZk/#11&J&J=}0`B}"C#tG@BHbNZk HH=TG`BhbKzZk 0 C}#GPBXb/7vZkGG ](]0}8@#k#~0^8^@~HPGG( =]( G(G#1"y C2DJFJR"@ HH" o(,HrGH Q@r$.sHQ$J3F$>4G$ p A.tHRAJTFA> HH0JJUB"x1" bs"CCTGBbyZk  C("CC ]"C0"CC"CGPBXb/uZk( =4 #00C2GJGJ@B @GGTG@BHb/tZk  $HH c#gHgHU`@/` "! CG8b#`_àdaDd4G  G0]8]@}HP`#k$,A $H D$. HQ $J3F$>A. HR AJTFA>ð#~0^8^@~HGG( =]( G(#1"X C2DJFJR"@ HH" N(=1=0,0HPGH Q@PP.tHRPJTFP>4G0 N a.uHSaJuFa> HH#1'J'JU B BR"C]# ="C CC"CGBbtZk@ !D (=0 ]4 }0c#gHgH`@`GGTGBb3tZk  4G  G0]8]@}HP#kp.S pJaFP. HR PJTFP>a. HS aJuFa>GGGk#~(^0^8~@GG =]  G #1"> C2DJFJR"/@ HH" 3 =1=0,0H/4GH Q@4P.tHRPJTFP>4G0 2 a.uHSaJuFa>C4G@b@ = 4=C0Qc#gHgH`@`GGTGBbsZk  4G  G(]0]8}@P#kp.S pJaFP. HR PJTFP>a. HS aJuFa>à#~H^P^XGGx  =t!=("(NX C0C"! C(L0C CTGGAb#&A8884GhBpb`Zk-(0@(" 0"1"C (BRtGBb/gxZk@("!!1 @8=8=C@]QB @}aN0B4GBb/tZk@0@@@8=B/GH]P]X`#k#~@^H^PGG=]D4GBb`Zk?8D="! C = =1/ ]4G0B8bkZk0 C(= CTGGMb#/%A00/04GBb`Zk 8("1"CTGBbKDZk8=(4GGNb#/%A ("1"C tG b@G@]H]P`#/k#~`^h^pG#GHp  =t!=HH=! D@=@?&1"@@=&"0@/ "1,1 B8=^? B/$  "1!NP"C(C "!!LTG(C 0B "("! C, BRtGBb/wZkP"! CHbseB~"C"C GGTGGtG0B8b"vZk8/ "! FQs0HRPJSFQF/@`B`" "C ¦"CC&S"G@b@  "!!LP "C(C "1"C BRAN(CR"CTGGLb#$APPP4G`Bhb_ZkU 0@ " NP"(1"C(C0BR"C bsaN(Cs"CTGGLb#$APPP4G`Bhb_Zk0 0@ ",GBR,4GpBxbPZkG("! CG BRtGBbvZkX "!!1 @P=P=CX]QB/ X}aN(B4GBbrZkX0@XXP=B B bsaNPD"C(C N¦֢,֢(Cղ 0B "9(BZ#C, BRtGBbvZk  "!!LPP"C(C "1!N](CQ bs0`B t(¦"C, BRtGBbvZk " NP"\1"C(C0 BRANbs"C(Cr 0B ¦֢("C, BRtGBb/slZk^? @7  "1!NPBdR"C(CQ bsaN(C 0B ¦֢NPt"C(C O^?#(C8 BZ0@C b["!( C, BRtGBb/vZkHDXD D/G@= 8D`xDtG@TG@ݲ4G@BZ@}[G'@@=0 " BRANPb|s"C(Cr L@(C 0B ¦(#C, BRtGBb/uZk,G4Gb#i_G`]h]p#kjQ 0H_FSFQn_0#G > @hG~x^^G#G="(!0=x 4"G(= GH"7B"! /4G =C B/ O =!NC1C(8 =0 C = = 7@/?="C#C4GGG(B0b/pZk/F]"C]x4JJBx5JJB/ xݢ6JJ3Bx7JJWB xGGxzaK[}KaGxz/*`0=4]8}<@Dݢ޶H=>L=>P}~Tݢ ޶X=(>\=0>`8dݢ@޶h=H>l=P>pXtݢ`޶tG8B@boZkGx]]#kÀ#?G~p^xG=PH=@]8}=y C 4G@= BG/@]]G=(}`B`4G8= CG 8p{s"}= =(]H}s3fJfJ2SB0@BTG`]h=`h=[[/jX[ _0]0}`0 P=P]0}HG[{/SoZkGp]x#k#~h^p^xGG80=0==K=I "1TGBb/OFZk=/ G4GBb/NZkG1=ppBRANbs"CxCrpN"CxCp¦֢0Bpײx"9#CpBRtG B(bjZk/= G4GBb~NZkG1=/]tR]@¦֢@ݲ@4 @=B:b{#C4GTGBb;dZk C@"!@B`BR"C AGBbeZkHHgp"pBRANbs"CxCrx"pNBPPݦ""C@@=9 @]4GPBXbgZk8H= CTGG0Lb#!AXXX4GBb\Zk6@`H"1"CTGBbc@Zk`=H4GGMb#/"A@P=p0Bp"@BRxbs"C4pBRtGBbsZk@=4 !TGb@@4G4GPb#t_Gh]p]x#k#~ ^(^0GG=]4GBb[ZkD 0"Cb#,_D0"! Cb#$_G ](]0@#k#~ ^(^0GG=]G4GBb/MZkGC4GBb[ZkG ](]0@#k#~ ^(G=]4Gp[x{[ZkG ](0#k#~@^H^PGG0(= ] . .JQ JFBR]@=" =BRAN  CC"1!N"CC0@B0"1"CBRtGBb/_iZk"!!LC"1!NC1"C]"CTGGpMb#!A8884G0B8b[Zk5LC C4GG@Lb#V"A0JJ="CB]2FJFJ]NB4GBbnZk0@"]"Cb#*_0 " ! CTG@BHb/OZkG@]H]P`#k#~h^p^xGG`X=P]`G`4GBbLZkGC@=P0C0bs}`I=G 0"1TG@BHbZDZk = G4GBb/LZkG1=BRANb0s"CCrN"CC¦֢0Bײ"9#CBRtGPBXbhZk/= G4GBbLZkG1=/]tR]Gh]p]x#k#~ ^(^0GG=]"1!NB<R"CCQNC"10 BB2N"@1"CC0BRANC0B""1"CBRtG B(b/CrZk ]'$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1 "GGG,"GG B(b#IZk G_"TG"GG B(bIZkG ](]0@#k#?G~X^`^hGG=P4GPBG PH "9!C CTG0B8b+FZkH BH="CTG B(b/KeZkGX]`]hp#k#~^GG4G{@G] #k#~^G4G [({fIZkG] #k#GG >^^~{`O[B G0#k#~ ^(G=]=]1{#_G ](0#k#~8^@^HGG0(= ](L(C=/ BR"C]0JJ 7HH "DBF (=1X!F3B@3B S5B5B @  B/ "0B/}0(= ]1tG[@Zk/"F= BR6@J/@bSv@HGG8]@]HP#k#GG>^G #k#GG>^G #/k0#~^^GG=]xph`BR8]@ <pBR ]]/I@G"1TGBbBZk = G4GpBxb/JZkG1=  BRANPbDs"C(Cr N"C(C ¦֢0B ײ("9#C BRtGBbfZk/= G4GpBxbJZkG1=/ ]tR] ݢ֢"/GV#@4Gh}6  Gh=tG`]"G#tG=F/Gh}FGh=&"B/`'"B/ TGtGx]ZZ#@4GG`v#/`GGx]"/G#G=GxtG`}6" Gh]"/Gh#TG= 4Gh=v#/`TGh=v"`tG"TGhV#/@Gh"Gh}{V"@Gh}v"/4GGx=tGpl"Gh=gV"@TGh}b"/"h\6# _#h]W6  "hRv#/`_"h]L""hG#?#h=BV#/@? h=<A?"B B#B `tG]Gx"TG4G`)ý6# G]4Gx"üv#/`G]GxE"BF B/ 4GTGx="GG`=G_"B@H"B/ `GGx#GtG`=÷V#/@TGtGx}õv"/`5"6 xxF/-? h=F@/"hF@1#h}ô"/:";"xò6 / P?#=Q"xR_"p]8F`F"hXFH"hxF/ J?#h=FL?"h=F` #h}8F/""hÙ#Y? h=×V#@GhØV"/@tG}F`TGhð"#ñ6#/ Gh]ï6" tG]{îv"`tGh}ví"/Ghpì#Gh=këV#@4Gh=fêV"/@tGh}`év#`Gh[è"tGhVç6#/ Gh]På6" Gh]Kä"4Gh}Fâ"/Gh@ã#tGh=;æV#@G=4Gx}4á6  Gh}/à"Gh*ß /4Gh=$Þ6" tGh]Ý"Gh=Üv#/`GhÚ# ÛV#@G= xF/`GhF74GhhrhOB/,P]6@KD@GP]=h]@N2BP}FCTG B(b/clZkPD/ =hN0@GTG0B8bjZkXh= NB4G@BHbUZk=hN0@GGGGPBXbbZk`=`N0@P=?F BTG B(b1lZkPD=`N0@GTG0B8b/SjZkX`= NB4G@BHbUZk=`N0@GGGGPBXbaZkÀ=N0@!/ @=ѠG8u=JTJF84GBbUZk8 à8}"CTGGKb#AӨ4G`BhbVZkà4GBb/iZk8 C8= C8]"CtGGb#@8H`<@=ѠG8u=JTJF8ݢ`NB4GBb/TZk/8 à8}"CTGGKb#AӨ4G`BhbkVZkZà4GBb/iZk8 C8= C8]"CtGGb#w@H8=H==]@N2B1 G NB4G`Bhb/3GZk0DG/`4G=H= B=(ݢNBHCTG B(b/gkZkx =xN0@H=CTG B(bZkZkp/ =pN0@H=CTG B(b/KkZkG]]#kCx`#~^^GGh`=X]h . .JQ JFhBR08]@="4=h]/I@G "1TG0B8b~Zk = G4GBb/CGZkG1=BRANbPs"CCrN"CC¦֢0Bײ"9#CBRtG@BHb2cZk/= G4GBbGZkG1=/]tR]P¦֢GXb__`  (4GTGGAb# APP=TGBbjZkP=TGBb/jZk| /i "g "- @"+@`"q`"(4G B(bcZkCPP=TTGBbjZkP=xTGBbjZkW  (4G B(b/cZkCPP=(TGBbvjZkC  " ") ] Rp]p4wJJ5JJFPP=(TGBb[jZk=!DCp0JJDP]P=pTGBb/GjZk / 0="CH]"CH}"C\GGGGDb#APP=TGBb-jZk ( "/% " ]R2FJFJx@F@}sCP}P=TGBb/jZk /K 0JJxF=Q"r.rJ/@G J5Bݢ/KGJ]ZB6FGP=P=TGBbiZk.JGH]R@8DPP=TGBbiZk .J/ GH]R@8DPP=TGBbiZk A 0JJxF/=Q"r.rJ@G J5 B.JGJB5FGP=]P=TGBbiZk.JGHCP}P=TGBbiZk .J GH5@8DP}P=TGBbiZkO S 0JJBP]P=TGBbriZkP=TGBbkiZk44GBbRZkppH&p0}"CTGGKb#^Axxx4GBbTZkp4GGIb#AHH0=1&J&JB/0]2FJFJH]p4GPBXbBgZkP5DH= @ DP]P=TGBb-iZk =0"CH]"CH}"ChGGGGDb#/APP=TGBbiZkP=TGBb/ iZkP= TGBb/iZk pp0wJJp=11'J'JFp]R2GJGJFPP=TTGBbhZk HHXD=(!4G B(b/aZkCPP=TGBbhZkP=TGBbhZk HHCPP=TGBbhZk xxx=11w'J'JP=bs"CtP¦"pݶ"ppC"B} C;4GG B(b/g]Zkx WHHPP=TGBbhZkxCPP=PTGBb/{hZkH\ C"vJ"h1"p=BR"p]p}Ctݢ"C(64GG B(b.]Zk(GTGGAb#APP=,TGBbKhZkP=4TGBb/ChZk(4G B(b_aZkCPP=TGBb2hZkG]]#/k.T JF%É6/Y 6K8G*É .Q J0F9!.Q !J0FI.T JFbÉ/X KGeÉ .Q J0Fr!.Q !J0F~`#~^^GGxp=h]`}"108=@="4=BR]x}/I`G"1TGBb{Zk = G4GBb/DZkG1=00BRAN`bs"C8Cr0N"C8C0¦֢0B0ײ8"9#C0BRtGBb_Zk/= G4GBbCZkG1=/]tR]¦֢Gb+_hXXIN?&MA1"F5](4GTGG0Ab#APP=TG0B^v%$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1"8b~gZkP=TG0B8bwgZk(4GBb/`ZkCPP=TG0B8bfgZkp=DTG B(bK}ZkD4GpBxbQSZk?XNF?$CO! D'(4GBb/o`ZkCPP=XTG0B8bBgZkP=dTG0B8b;gZkp=XTG B(b/}ZkX4GpBxb%SZkXAD?$RE! D ]r".J `G@Jݢ֢VB7/7KGJ}{BWFGP]P=TG0B8bgZk.JGH]R@8DPP=TG0B8bfZk .J/ GH]R@8DPP=TG0B8bfZk .J/ GH5@].J/@G@J@BDGPP=TG0B8bfZk.JGHCP}P=TG0B8bfZk .J GH5@8DP}P=TG0B8bfZk HHPP=TG0B8bfZk HHGPP=TG0B8bfZkCPP=TG0B8bfZk/)=!!w'H'H0JJ0D=11'J'J1DP=}P=TG0B8bifZk=!DC0JJDP]P=TG0B8bVfZkp=dTG B(b;|Zkd4GpBxbARZk/XIT?$ED! D*0="CH]"CH}"ChGGGGXDb# APP=<TG0B8b-fZkP=@TG0B8b&fZkp=lTG B(b |Zkl4GpBxbRZkG]]#k.U JFÉW/Z WKYGÉ .Q J0F!.Q !J0F!.Q !J0F%É.U JF)É .Q J0F6!.Q !J0FB#GG >^~G0#k#~X^`^hGG@8=0]8@]]=I Gx"1TGBbyZk = G4G8B@b/AZkG1=BRANbs"CCrN"CC¦֢0Bײ"9#CBRtGBb]Zk/= G4G8B@bAZkG1=/]tR]84G8B@bDZk= GTG(B0b_eZkRøHH0/!H=B2bs"C4GTGXB`b/sWZk C"!HBBR"CpAG8B@bYZkPP*"BRANb s"CCrN8C¦֢0Bײ"9#C0BRtGBbkgZk0G4Gb#_GX]`]hp#k#~@^H^PGG80=(]( BR]80=(]tG0B8b|Zk(.JIGH?8]R ] Bݢ.J/KB =]:C}9,9H.J0@ =0 B=]"@(}(/K/&GJ4B%`3/{JY3K;G3?(,H"GH ]ݢVB8GGHBdZk@B/cZkG@]H]P`#k .Q J0F.V JF3/ JY 3K;G3?0.Q 0J F#~(^0^8GG =]} =TGBb/aZk =TGBb/CaZkG(]0]8@#k#?G~^^G#G==]}xHG@G8]G0F4F_"]="TGGSb#[$AӨ ]&:"GtG0B8bOZkÈ=!`=`=*BX=X}hBP}``ݢ```=``=``]`}}``"GB/{bZk0?Ft F0G]rV`Jp1JpFrTGA@KpQJPGAG !Jaq H!F @ CTGJrq@JFP(]Z,V=!05=1}46H?FD4=94PV@Jy1 KYF4PPPPݢP]P=PP"GB6bZkFTFGVV@Ja1 HAFVw&tFwP]LCX?'FP=,B 5B@F6sKA2H3D6x /)`<#C$B,Z#C]G0v Jy K9F0GuaJaS HaFuݢ"C#C@= B=`4GBbaZkCpp=11&J&J0=0=0}U"BbcZkBaZkݢcC/]8=[ 0= C@"C}"C8"C]#C }#C~GG^b#9A@/]_F]@}B/` 5B/ UB/@ݢ CqGYpG{JZ@K[GW@Y`@=P @@=@=@}HC"]"BcZkBaZkH@ݢ@H= C/?8=?800=0}"]"BcZkBsaZkG@ݲG8=/ = D/ `"C4GGTb#O%AӼ= C(=`=8]46J_FF4`(ݢ,ղP#C@P=H]86H_GD8`4GBbaZkCppo`= BR"CQ`4GBb`ZkCppaXXݢXX]XX=X"GB&aZkF4FGWV@Ja1 HAFW "! C6" Uv@Ks`JSG UP}_{#$``<8KK/'X=BlR"C@Q\"CݢbsvJs`JF]4GJ`SHF=#C=]AB]}`B}XX¦"CTGBb/o`ZkCpXH"1"C0`4GGTb#a$A. .JQ JFhh"CTGBbdZkp/=4GPb@@4GxBG/ x=BR"FHFHQpG]]#kY0J_G[GYð#~0^8^@GG = 4G0b@((( ]JB]"CTG B(b_ZkC= = 11$J&Jpv`Jq JqFp(G0]8]@P#kP#~^^GGXP=H]@}80?"h=@=h"TGGRb#/"A``/ `]&:"GtGBbLZkK@=!==*B=}hB}ݢ==p=x=]}}"GB`Zk0?Ft F0Gx]rV`Jp1JpFrGp4G! JzQ@K:F! "! C TGJrQ@JFTG8!JpqJ0F8](WX}{,vP0X=!]4r6`J?DaF4rP=940V Jy1 K9F408TGVG8wKGXGT0}` _&2D }/8`0 K04GKvqJG]}4:!H{S`K;D4:]8"C$8bs"C`}`=GѢvJy KFѲ`G7!HxSK8D7`]8b{#Cz`]`B``}`= B`=ݢ=]"GB/_ZkFTFG@V@Ja1 HAF@y&tFy]LCV&F=,@ 8BR"CTG(B0b_ZkC((Y]ݢ"GB^_ZkD4DGVJ`1HF  C=<70]/@}S#[GSݢ/&=8"! C@98"C``GvJxKF`]4GRAKsS`JSGR`}8¦"C۲`=`=!C`=``@`#CTGBb^ZkC(8"1"C04GGHTb#"A. .JQ JF H "CTG(B0b/bZk(@=4Gb7@(G]]#k#~(^0^8GG=4Gbm@   ]JB] JuSJF =9(8b{#CTG(B0b/?^ZkG(]0]8@#k#~0^8^@GG  4G8 4Gb:@(((/ ]]Bݢ֢6JJ"=(BZ#CY#} "1"C0 HHHbs"CTG@BHb^Zk C = CTGG Sb# A4GG0]8]@P#k#~^G HH @0JJuB4G "CG_& R"tG[{JZkG] #/k#~P^X^`GG( =8=$  HH(D=1== == =8=` G8="C8"TGGxRb#K A00 0]&:"GtGBbJZkO ? @==.B@"TGGxRb#6 A00GH=}"CH"TGGRb#r A0]&:"GtGBbjJZk1=(Av@JpJPFA}GӢJtSJFӲt=t98BZZY}t{8(= D==]}ѢvJѲTGKqq JGGS@KqQ JQGS]}=vJTG@AJbq@HBF@GK`QHG=}=]vJTGSAHpqJPDSG٢JbQ@HFٲx D/Q}=vJTGJpqJFG[@JpQJPF[ݢ=]vJTGyaJaq HaFyGKaQ HG]]}vJTGpaJbq@HbFpG2 KbQ@H"G2=]!v J!_w$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;16y"&TGJ`qHFGآJ`QHFز{X D/x ]]="v J"TGJbq@HFGHbQ@HD}ݢ]3v J3TGJaq HFGJaQ HF] v J TGJ`qHFGu`K`QH`Gu=]!v J!TGRAHaq HADRGt`JaQ HaFtݢ} v J TGUAH`qH@DUG6 K`QH G6=}!v J!TGPAHaq HADPGS@KaQ HAGS ]@4GGP]X]`p#kp#?G~p^x^GG=H@==Y C 4G@= BG@=9=4G==HHt H=99&K&K GH= 1XH/0X= HH= 4GGPFb#/AH 4GpBxbAkZkH1FH=t1P=G`}P`ݢNB P`OB4G B(b=HZk`0@``B =41GTGBbWZk` CP= CTGGEb# AXXX4GBbHZkl 4P=TGBb)HZkP4GGGb#/ A 4GTGBbMZk 44GBb/VZkHH=HH=2B4G@BHb]hZkH@4G@BHbWhZkH@4G@BHbQhZkH= ᳓x G/= H]R0]0/0Hݢ֢ղH88]@8}0H= !0=X=H]3@X}/`H/H 4GGPFb#AH 4GpBxbjZkH1FH=t1P=G`}P`ݢNB/ P`OB4G B(bGZk`0@``B/H=1/ H]RH}GTGG0Nb#A |GTGG9b#@ TGTGG9b#@ GTGG9b#/@HH=HH=H]H}HHB4G@BHbgZkH@4G@BHbgZkH@4G@BHbgZkH@4G@BHbgZkH= X G H((]@(4Gb_H=!(=(=7 (]RP]PP4Gb_((=!!'H'Hh=h="TGb_"H((/(4Gbv_H000=H]RQH}s8}8/8ݢ00= 8]X]H0X= HH= 4GGPFb#/AH 4GpBxbiZkH1FH=t1P=G`}P`ݢNB P`OB4G B(bFZk`0@``B"BRANb s"CCrN4GC¦֢0BײH"9#C(BRtG`Bhb^ZkHFH=(tGTGG9b#@ |GTGG9b#@ TGTGG9b#/@ GTGG9b#/@HH=HTGpv`Jq JqFpHB4G@BHbfZkH@4G@BHb/fZkH@4G@BHbfZkH@4G@BHbfZkH@4G@BHbfZkH@4G@BHbfZkH0/H=&@ "1"CBR"CtGPBXbsZkH0H=8! HB "1"CBR"CtGPBXbsZkH8H=<! HB "1"CBR"CtG@BHbIZkH<H=D!/ HB "1"CBR"CtGBb]]ZkHDH=@! HB "1"CBR"CtG@BHbIZkH@H=h! H B "1"CBR"CtG@BHbIZkHhH=p!/ HB "1"CBR"CtGBb)]ZkHpH=`! H B "1"CBR"CtG@BHbIZkH`= HH=BR0]00/0ݢHH"Gp]x]#k#~^^GG6H/"FG B(bpZk06H"! C4G@BHb/|Zkb#_G]] #kp#~x^^GGG B(bpZkMP"!6 H G=b#_Dà= C?&@1"tG0B8b]bZk/= C4G@BHb]yZkPH/P"!v#H ="CGtG`BhbcZk/ "!4GGtGPBXbXZkG B(bupZk ?$>! ="4G0B8b`ZkGx]]#k#GGH@>8@  t@H~/`  000~{HpG 8>0 B8>@~{`@00>10>8GP#/k#~P^X^`GG@8=0](}@b@=G@bS@`"`BRANb@s"ChCr`N@"1"ChC0`BR0@B`bS`N"H1"ChC0`BRAN@bs"ChCr`0B`"8hbs"C`BRtGBb/RZk@/@"4G B(buXZk84GBb/CZk@"@@"@B4GGDb# A@"@@"1/ 4G@b S@!@TGTGGDb# A@"1H=@B4GGDb# AH= @@"10 B@B2}@3tB@u@¦֢T@Q }@"! aC) @ @$@"1 ]2B.J$F }}@¦֢ B/K8F ==}= D/Y 0pCB]0@B] =0 B =@ B/ @¦֢ C =/ ] ]@b{ }@ @BR @" 1B1QB@b3@ @0ݢ =6(=@BZA@ }@ pC @@@BR =@b s3BQB@54G @4G B(bWZk@GGP]X]`p#k0BÐ#~X^`^hGGPH=@]x . .JQ JFxBR]=" =PH=P}@= CGG0B8b~Zk887P=11&J&J7"B1 BRR""@}"C4G@BHbQZk = CCTG B(bVZk@"/ "$1"]"CCTG B(bVZk@"P/@P=4GvJr@JF8GX]`]hp#k#~8^@^HGG( = ="C CtGGRb#!A00/( =TGBb][Zk( =! v Ja H!F 09øb4s""CCTGhBpb.kZk =]2B=4B41B 0B =9Q C=}#C  CTGhBpbkZk/=11 B=b,s"C(=(]"C"CG8B@bUZk4GG8]@]HP#/k#~(^0^8GG = /G 4G@BHb/tZkGC=4G B(bZkm"N "1"CC0BRAN}"CCr0B"CBRtGBb/PZk=DF G 4GBbtZk0DG 4GBbeZk"!!L "CC"1!N]CQbs0`Bt¦"CBRtGBbZZk G 4GBb/sZk0DG/ GTGBbdZkG(]0]8@#k#~H^P^XGG@8=0]]v@J]GHqQ JDTG=!H`qH D= @=1 EðH/?0]"CTGGEb#$A C= CTG0B8bOpZk@((0JJ]"C(}xB"CtGBb!jZk8=]2B11 B =@ = ݢB4GG B(bnvZk=@="C4GBb}bZkGH]P]X`#k#~^^~ (0GGGG0D"0"<1"CCGGG B(bnZk HH? @FGE"GGBWZkBUZk@TG6/aJY6K!G6?0`@@@,B@H@<G]]} (0@#k#~(^0^8GG =]?"0]@""L1" CTGBbiZk9 h"1"CTGBb/iZk/=* ]0JJ }]3tG B(bpZk =01 @ =]1tG B(bpZk/ =!!&H&H00@ =1]2B]tG B(b/pZkG(]0]8@#k#~@^H^PGG80=(] }p"T1 `BR4G0B8bZZkp"TpTGcp"T8=0]pX"Cp\"CG@BHbSZkQp"\111 BpB\2(}/ `(p\"CTG`Bhb?YZk@ /=p"d! p\"CCTG B(b!TZk/4G= p"l1"pB\R"CCTG B(bTZk@4G= pbts"p\"CCTG B(bTZk@ =4GQ }p\p`5 ]tGBbpZkG@]H]P`#k#~0^8^@GG=v H=G= J`QH F=TG]AJ`qH@F]("1(=(=Q (]21@B(](pL  = L @(C!=]/@ L@ = N!B= C(B(C1GG b<_/`!d3$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1P"7= C4G@BHbaZk L@ = L!@"C(B("!B1GG b!_=$@?=@BwJrBFUuB.4G6JF0 F8KF>G0]8]@P#/k#~h^p^xGG`X=XX=!0 @ X7B`=/ G`4G@BHb/_rZkCP0 B bsaN("C0C N0"C0Cղ 0B  "9!O(BZ#C0CY b{aO C0C "!0 @ 0P0BR"C BRtGPBXb7NZk(  "1!N(BR"C0CQ bsaN("C0C 0B ¦ N(#C0C "9!O]#C0CY b{0`C ``0"1"C BRtGPBXbMZkXpL q@ `G`4GBbpZkGCH=H4GBb|Zk@@0=0B(]0BB 0} 3tB`0 7C 0=(]:C };C@ C@=0=!1@(]!2@ =XЃN4уBH4G`Bhb|Zk88=0B]0BB }3tB`7C=]:C};C8 C8==!1@]!2@= bsaN("C0C ¦֢N0 B0C BZ0@C b[ "9!O( C0C "1!N]=AB0C1 0B P0"C BRtGpBxb[WZkGh]p]x#k#~H^P^XGG80=(]0/'8G84GBboZkGC = 4GBb|Zk 4G B(b/{Zk0N_@@=[[` X/[_0b0B/I¦N #CC"9!O]#CCYb{0`C`8"1"CBRtGBb/LZk0=D!"1!NB(R"CCQbsaN(C0B¦8#CBRtGBbVZkGH]P]X`#/k#~H^P^XGG "C4GTGG b#p_((/(]PbStݢ ײ0#C "BZ#C b[h? 00G 8 ]0]0} s""C Dݢ "C 4GG5VG8B@b/KZk0=  @4G B2}8}8<("8"9#C4GTGBb:FZk C=8BBR"CH AGBbGZk@@@34G(](0F/ 4GGSb#$A<4G(B0bZk 4GBbjZk<?"_"Hb#_GGxb#>_ "00=1"BR"C bD ¦"C4U4GG8B@b/[KZk0=((]HR/"@(}t"C4GTGBb/EZk C=( BBR"CHAGBb{GZk88/8]H4G(B0bZk88D("8]bS"C4GTGBbEZk C=8BBR"CH<AGBbMGZk@@@4G(](0Fx "C4GTGBb#DZk C4GXB`b/kcZk((=<TGBb3GZk((L!(=B2bs"C4GTGBbgEZk C=( BBR"CHHAGBb GZk88/8_]}@s(rN¦"CCղN#CC"90 CB:}"! C(BRtGBbbKZk=5 @ G2F!w H2D!F }<$ݢ ֢ ղ@@"9]<Z<Yb{ "!"1]HRHQbsLL@4GhBpb/OZk4GGH]P]X`#/k#~h^p^xGG@8=0](@=t1 =@ ]/@ 6J8=/ ]tR]==]"CTGTGGb#_HHH]8}TGF37`JvFF@= 8]Z6@K @}=;=0@] @ }s`ݢ=8]TGvJa HF=t1=]Rm@}t8,"C¦8<"C|?#"0!GB8}P}P 8"L1"CBDR "C2 T4GGBbIZkP=XX]PR/@H"XXX¦"C4GTG0B8bJDZk8X C=X BPBR"CAGBbEZk```24GH]H0F/4GGRb#"AP4GBb ~Zk4GBbhZkP?"_"b#_GGb#N_GTG B(b/QZkGTG B(b/QZkGTG B(b/QZkGTG B(b/QZkGTG B(b/QZkGTG B(b/QZkGTG B(b/QZkGTG B(b/QZkGTG B(b/QZkGTG B(b/QZkXXXH"X]XbSX"C4GTG0B8bCZk8d C=X BPBR"CPAGBbUEZk```4GH]H0F$"C4GTG B(b+BZk8p C4GBb/saZkHH=PTGBb;EZk=T!( 00"1!N8BR"C@CQ0bsaN("C@C00B0¦@#C(0BRtG`Bhb/IZk(=5 @ G2F!w H2D!F }P$ݢ֢ ղ =@]LZLY`b{TT`"!PP`"1]RQ}`@@`¦֢<֢<ղ`  =BZOCPb#_@] B@D/ =TT =]PRPQ }0ݢղ4GGh]p]x#kp#~p^x^GG@8=0]@t(@=1= =16 J 8]@t= = CtGTGGXb#_HHH]8}TGF37`JvFF @=8 ]Z6@K @ }=; =0@]@ }s`  ݢ =8]=t!==X BR"CXbS"CX|"X0ײ#X"8]P]P=! b{#CXD(]Xbs"C R4GGpBxb/GZkP=XX]\R/@H"X((¦"C4GTGBbbBZk C=X B BR"CAGBbDZk```4GH]H0F/B4GGPRb# A\4G`Bhb#|Zk4GBbgZk\^?"N_"b# _GGb#f_h==(BR"C bsbJ/`GG J/TGGF vJ4GGF@"9#C1GGHb#Ah="1!NBR"CCQbsaNGC0B¦#CBRtGPBXbRZk"!!L"CC"1!NGCQbs0`Bt¦"CBRtGPBXb/QZk"!!L"CC"1!NGCQbs0`Bt¦"CBRtGPBXbQZk"!!L$"CC"1!NGCQbs0`Bt¦"CBRtGPBXbQZk"!!L4"CC"1!NGCQbs0`Bt¦"CBRtGPBXbQZkGTGBb>OZkXXdH$X](bS("C4GTGBb/;AZkD C=X B BR"C\AGBbBZk``/`l4GH]H0F/<"C4GTGBbZkP C4GBb/^ZkHH=\TGBbBZk4G=\1$0]}s r0\\0¦֢0"9@9@8]0b{<{<z0"! ! "10B\b#_]@ =(TT=(]PRPQ}(@ݢF(\\(=]ZY}@440]="4GGp]x]#k#~P^X^`GG( =(t(=1= CGTGGb#_00/0(]}rtݢ֢/"9#CB:b{#C"a|""0GB8}8}8""C¦D֢#C6 W4GG(B0b/EZk8=@@]hR/@0"@¦"C4GTGBbN@Zk C=@ BBR"C8AGBbAZkHHH4G0]00F/`4GGRb#Ah4GB bzZk4GxBbdZkh^?"N_"8b#_GGhb#R_@@l0"a$%$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1͊"H@]bS"C4GTGBb@Zk C=@ BBR"C8hAGBbAZkHHHp4G0]00FhT"CTGTGBb~Zk C4GHBPb/]Zk00=hTGBbAZk=h!$ =1 0BR}hshrݢ@@"9<9<8]b{ { z@"!0@hb#S_]( =TT=]PRPQ}ݢ\֢\ղ=]hZhY}]tB](=4140 ]}r4GGP]X]`p#k #~^^GG=]h"1BRP=X] TH@4G0"1=]K@I"1TGBb/aZk=/ G4GBb/giZkG1=BRANHbs"ChCrN"ChC¦֢0Bײh"9#CBRtG8B@bVEZk/= G4GBb6iZkG1=/]tR]8¦֢J/wÐuB CF8]XBG+@}}=!/ "èBbs"C4GTG(B0b~ZkH C=_"B"C AGBb@ZkF4G=}0`F/`/Gݢ4GBbgZk0DG/ =G4GtGG(b#d_'"! C "C(TGGGh5b#@  "!C4GtGBb{QZk0"14GtGBbrQZk4`"14GtGBbiQZk8=84GtGBbaQZk0=(4GtGBbYQZk$GTG(B0bnEZk  C= CTGG=b#@Ө4GBbwZk=$TGBbvZk4GG>b#/|@$GTGB b/{Zk$4GBbMEZk,GTG(B0b:EZk C= CTGG=b#@Ө4GBbvZk=,TGBbQvZk4GG>b#/H@,GTGB b/{Zk,4GBbEZkGTG(B0bEZk C= CTGG=b#@Ө4GBbvZkm=TGBbvZk4GG>b#/@GTGB b/{{Zk4GBbDZk4GBbwZkGTGBb/IZkCÐ@="@/ 4GBbuZkD2ð"!x=`"1p=}bF/ 4GBbUPZkH04GBbNPZkx44GBbGPZkp84GBb/?PZk8(4GBb/7PZk0  " FrtJSqJtFr F`׀B$4GBbtZk/ "&à bs"CTGG>b#/\@Ө/4GBbvZkà4GBb/OIZk  C "! C BR"CtGGb#_XѠGP0rHQ=J2FP0 },4GBb/GtZk/P àP}"CTGG>b##@Ө4GBbuZkà4GBb/IZkP CP= CP]"CtGGb#_" D0rHQ!J2F0 D @B/@}4GBb tZk"yàbs"CTGG>b#@Ө/4GBbuZkbà4GBb/HZk C"! CBR"CtGGb#_S`Fxp4Gh=L8bF/9xbF7涳iBiB38`FA` /4GH=:04G8ѠGPuJTJFP/?¦֢6JJXB/X}ѠGPY{}JZ]K[GPY0@P HH"ATGGBVJZkhBHZk¦"C #C(TGGGh5b#@/Ø"!03"1 &""4GBb/(uZkP C"! CXBR"CtGxBbHZkH "P"C "1"CGtGGb#_ø"!F "1"C0?P]/@&""4GBbtZkP0" D0rHQ!J2F0 D @B/@P}3fJfJ0tB/`00¦FyJXKGF/ C 0BZ:FKFKT]0GGBIZkhB/CHZk"H¦0"C0#CTGXB`b)bZk8;= !(=(=6 (]R6@J2@bs(tB}(ݢ֢ ((4GGXb#e@Z(4GTGGXb#_("! CTGGb#V_Ӡ P"! C "1"CGtGGb#w_4G@$4G4GtGGb#/_8 $D @ 8= }"CtGGXb#_Ӏ84G](t ݢ ((=5C0BZ#CTGBbKZk(0"! CGtGGb#/_Ӏ/8"1 J 4GTGGH0b#/B@X,X"!,4GBb/sZk((" D0rHQ!J2F0 D/ @B@bs"("C("CC(ݢB&3"GGpb#_"!!LH0"ChC("1"CBRANhCR"CTGG=b#@Ӡ4GBbsZk0@"(h"1"C BRtGBb/KKZk"!!1 @==C]QB }aNhB4GBb/FZk0@=B/@Bp}D`($G"C="tGGb#p_@/44G=(=0 ]@(}s`( 4GG=b#/)@( 4GBbUZk(1F(=t1=G}ݢNB OB4GBbrZk0@Bh=F (]$G}"C="tGGb#*_@74G=(=3 ]/@(}s/`( 4GG=b#@( 4GBbUZk(1F(=t1=G}ݢNB/ OB4GBbrZk0@B/@"1/ (]R`]`((¦FyJXKGF C BZ#(b{#C( CC(= !2@&;"GGpb#_"!!LHH"ChC("1"CBRANhCR"CTGG=b#@Ӡ4GBbrZk0@"`h"1"C BRtGBbEJZk"!!1 @==C]QB }aNhB4GBbEZk0@=B4G]`0`ݢ֢` 4GG=b#/9@` 4GBbTZk`1F`=t1=G}ݢNB OB4GBbqZk0@Bx= (]bs"C(TGGX*b#/@$G4GtGGb#|_8 $D @/$(4G4GtGG(b#/X_8/@= (4GGb#/_$G4GtGGb#X_8 0D 80$F0G]]#kr JFtFr0f0 H?F2F0j?ù00 H?F2F04?> JGGB0 H?F2F0? JGG#~^^cGG=]cH"1"=c4G=4GxpB R",.HPJD"1`h=="d=B RPX]="T=$"P.0,PJA0HAF,@=H D"!(= =/I =G "1TGBbZZk = G 4GBb/cZkG1 =BRANHbPs"ChCrN"ChC¦֢0Bײ h"9#CBRtG8B@b Zk/ = G 4GBbbZkG1 =/(]tR](8¦֢J/ðF]Z@$""1"C4GTG(B0bxZkH\ C(=_"B"C AGBb/?zZk/4G=}0`F`Gݢ4GBbaZk0DG =G4GtGG(b# _LG4GtGBbFKZkTG4GtGBb>KZk\x=4GtGBb6KZkd=4GtGBb.KZkh=4GtGBb&KZk`p=4GtGBbKZkHGTG(B0b3Zk C= CTGG;b#@4GBbpZk=HTGBbJpZk4GGrårr JFtFrvð#~8^@^HG#G=]"01B8R=]8 ѠG2sKA=H3D2 G Du HTJF/wTG=" FrvHSqJvFro`pGhG`GX]@=?D4 D@=8`}K`=I "1TGBb/VZk=/ G4G B(b/O_ZkG1=  BRANbs"CCr N"CC ¦֢0B ײ"9#C BRtGBb>{Zk/= G4G B(b_ZkG1=/]tR]ݢxF=9/ "}`"! C4GTGpBxbtZk C=_"B"C  AG@BHbyvZk4G=}0`F/`G4G@BHb]Zk0DG4G==C=}0`Fl`4GBbmYZk  "!!L"CC "1!NGCQ bs0`B t¦"C BRtG0B8bDZk  "!!L"CC "1!NGCQ bs0`B t¦"C BRtG0B8bDZk  "!!L"CC "1!NGCQ bs0`B t¦"C BRtG0B8bgDZk4G0B8bnZkxGTG B(bJ@Zk:G4GtGGpb#_1D=ѠGQs=HR]JSFQ/@x4GBbkZk/ }"CTGG=!!&H&Hx D ,=11&J&J _]RѠGv]JUJF/`7JJB/=ѠGa=K@HDQ0JJG=QG@B{ZkB?zZkݢ#C@tGtGG2b#(@ = CtGtGG2b#/@Ө=/, HѠGrtJS}JtFr/"`H5JJݢBѠGY{JZ]K[GY@ HHH"!!AGG@B{ZkB/yZkݢG4GtGhBpb@ZkG4GtGhBpb@Zk4G4GtGhBpb@ZkGTGBb/tZk C = CTGG9b#S@((/(4GBbKfZk =TGXB`beZk 4GGH;b#@GTGBbkZk4GBb/tZkGTGBb/stZk C = CTGG9b#@(((4GBbfZk =TGXB`beZk 4GGH;b#@GTGBbjZk4GBb/StZkGTGBb/?tZk C = CTGG9b#@(((4GBbeZk[ =TGXB`bVeZk 4GGH;b#N@GTGBbjZk4GBb/tZkGTGBb/ tZk C = CTGG9b#@((/(4GBbeZk' =TGXB`b"eZk 4GGH;b#@GTGBbjZk4GBb/sZkd4GBbfZkGTGBbxZkG8 ]@ ]H P #/k%XØè#~^^GG=]4GpBlR",2,HA2HDt@H= D=x"108== 4=0==/IG"1TGBbFNZk = G4GBb/VZkG1=BRAN`b4s"CCrN"CC¦֢0Bײ"9#CBRtGPBXbrZk/= G4GBbvVZkG1=/]tR]ݢF;=9/ "}`"! C4GTG@BHb.lZk`@ C=_"B"C AGBbmZk4G=}0`F/`/Gݢ4GBb3UZk0DG/ =G4GtGG@b#_ӝ"! C8"C(GGG1b#@xDd"!8FQs0HRPJSFQF/@`B`4JJ8B8¦֢8F8zJY7K:G8F| @C/z@8b{;fKfK@8"GGB|yZkBwZkp¦֢F8`JY7K G8Fh @/fp"!!&H&H5@ " FrtJSqJtFr F/Y`׀BXBZ:FKFKpb[GGBJyZkBwZkݢ8C4GtGBba~ZkGTG@BHbvrZk C= CTGG 9b#!@4GBbdZk=TGBbcZk4GG:b#/@GTG0B8b/hZk4GBbUrZkGTG@BHbBrZk8 C= CTGG 9b#@4GBbcZk=TGBbYcZk4GG:b#/P@GTG0B8b/hZk4GBb!rZk4GBbdZkGTGBb/'wZkèU @=5)@/ 4G B(bcZkX Dè=8)D>=4GBb/}ZkHѠG@rtJS}JtF@r`4GBb/aZk/@ ø@}"CTGG:b#@4GBb{cZkhø4GBb/vZk@ C@= C@]"CtGGb#_8ѠG00rHQ=J2F00x }4GBbaZk/0 ø0}"CTGG:b#@4GBbGcZk4ø4GBb/vZk0 C0= C0]"CtGGb#S_@ CTGTGb @Ә/@= hBR"C@}"Cp"CtGBbvZkh Cp"! C4GtGGb#{_ӘÐ"1"Cp]"CTGGb#ډ_Ӑ)0=' 0"C4GTGb @Ә/ 0="C&Z"4GtGBbbZkØXD p=8 D 4G4G]"C0"Cݲ 0/ p=8 G/ 4G] C@="C0BRbs"Cr"C`¦֢|BZ#Cx}#C| CGGGb#@/x=?x="C0TG4GGb#_Ә/ =x]"Cbs(4GsGG b#@Ø?$! @  BR4GRtGBb{bZkhØ4GBb/tbZka@ C&"4GtGBbjbZkW(DU /Rh="C`}"CX"CP"C(GGG81b#/1@Ә/h=8 F/ BRX}r¦"CղhXF P=8BZX}z೰"!"C`"1BRh4GGb#_Ә=`](GtGGb#@ӘG]]#koQ 0H_FSFQ/r_|8 J?G:G8?Ð8 J?G G8?Þr JFtFrMÁ#~^^ GG=]]v@J]GHqQ JDTG=!H`qH D=ѠG rKA=H2D  G"FuHTJFTG=  DQvHRAJVFQ/@vJGHsQ`JDTG=!J`qH F=vJG}`JpQJpF}TGHpqJDX"1"Q..QJVJVFXbsp=x} tXX"!`h== d=X"t.,tJ@H`FXPX"TX"!X"1@=H=="D=XBR"..JPJFX¦֢08ݲ}"4}]]IݢGx"1TGBbNJZk = G4GBb/RZkG1=BRANbXs"C CrN"C C¦֢0Bײ "9#CBRtGBbnZk/= G4GBb~RZkG1=/]tR]ݢUB BC=u(C/ ]4GBbU`ZkD*=u(@ B#=$4GBb/zZk,4GBb/zZk<4GBb/zZk44GBb/zZkxѠGprtJS}JtFpr` 4GPBXb/ _Zk/p p}"CTGG:b#@4GBb`Zk4G@BHb/sZkp Cp= Cp]"CtGG`b#_hѠG`0rHQ=J2F`0 }(4GPBXb^Zk/` `}"CTGG:b#@4GBbk`Zk4G@BHb/sZk` C`= C`]"CtGG`b#w_XѠGP0rHQ=J2FP0 }04GPBXb^Zk/P P}"CTGG:b#@4GBb7`Zkv4G@BHb/ssZkP CP= CP]"CtGG`b#C_HѠG@0rHQ=J2F@0j }@4GPBXbo^Zk/@ @}"CTGG:b#K@4GBb`ZkB4G@BHb/?sZk@ C@= C@]"CtGG`b#_8ѠG00rHQ=J2F007 }84GPBXb;^Zk/0 0}"CTGG:b#@4GBb_Zk4G@BHb/ sZk0 C0= C0]"CtGG`b#_p CTGTG8bs @/p= ] @} ` &"4GBb_Zk/`= `"CTGTG8bS @/ `="C&"4GtGBb_Zk9P=7 P"C4GTG8b; @/ P="C&Z"4GtGBbs_ZkXD= C="CTGGb#_Ӱ/ = C4G B(b\Zk&"4GBbX_ZkÐ CP"CPbsPPdya$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1""{P¦֢ `P"9`]#CY/P"!0"C=/ PBR@}"Cr/ݢ #C4G B(bi\Zk&"4GBb_ZkQ Cp= CBR"CtG0B8b/orZk C"! C4GtGGb#/v_ӈ C= CTGGb#ą_ = C=4G4GGGb#/x_Pp="C0PBRPbsPlPP¦֢PPP"9PBZPb{PP"!PP"1]/@}`GGb#i_/ ="C4G B(b[Zk C4G B(b[Zk(4GPBXb/LZk-=+ ="CBR"C}"C"CGGGb#@/=?="CPbs(GsGG b#܎@= CPp(4GsGG b#Ў@= C4G B(b/[Zk C4G B(b[Zk(4G B(bLZkì"1"C]"C}"CGGGb#J@/'=?"C="CTGGGb#@="C]"CTGGGb#@ӈ C= CTGG@Hb#@À C= CTGGGb#@P"!`"CP"1PBR(bs"Cr"C¦"C"C#CGGGb#@H=?P="C04G4GGb#&x_=_&R"2F }"CP(GuGG b#/B@À C4G B(b/[Zk C4G B(b[Zk C4G B(b[Zk C4G B(b [Zk(4G B(bLZk4GBb]ZkP("! C P("1"C`0PBRPbs"C¦"C"C#CGGGb#@/B=?P="C0TG4GGb#q}_/ =]"Cp}"C(4GGG b#/ލ@À C4G B(b/ZZk C4G B(bZZk C4G B(bZZk C4G B(bZZk(4G B(bKZk4GBbK]Zk)"C"1"C]"C}"CGGGb#F@/=?="C`}"C(GGG b#@= Cp"C(4GGG b#@À C4G B(b/iZZk C4G B(bcZZk C4G B(b]ZZk C4G B(bWZZk(4G B(b[KZk?p C&"4GtGBb\Zk5XDS===1/ "}`t`"C4GTGBb*dZkd C=_"Bp"C AGBbeZk 4G=}0`F/`/Gݢ4GBb/MZk0DG/ =G4GtGGb#_"! C(TGtGG 1b#/@ӏð" D0rHQ!J2F0 D @B@} 4GPBXbZZk/"&bs"CTGG:b#/@/4GBbs\Zk4G@BHb/oZk C"! CBR"CtGG`b#|_" D0rHQ!J2F0 D @B@@bs"C"C"C¦"CGpBxb)nZk" D0rHQ!J2F0 D @B/@bs3fJfJtB`¦FyJXKGF/ C BZ:FKFKb[GGHBqZk BoZk"p¦/#C"9#C4GtGGb#/s_ 0"! C="CTGGb#Ƃ_$G4GtGpBxbvZk4G4GtGpBxbvZk<G4GtGpBxb vZk,G4GtGpBxbvZk GTGBbjZk C= CTGG8b#@4GBb[Zk= TG`Bhb-[Zk4GGP:b#/$@ GTGBb/`Zk 4GBbiZk(GTGBbiZk C= CTGG8b#@4GBb[Zk=(TG`BhbZZk4GGP:b#/@(GTGBb/W`Zk(4GBbiZk@GTGBbiZkp C= CTGG8b#Y@4GBbR[Zk=@TG`BhbZZk4GGP:b#/@@GTGBb/#`Zk@4GBbiZk8GTGBbziZk C= CTGG8b#%@4GBb[Zk]=8TG`BhbZZk4GGP:b#/@8GTGBb/_Zk84GBbYiZk0GTGBbFiZk0 C= CTGG8b#@4GBbZZk)=0TG`Bhb]ZZk4GGP:b#/T@0GTGBb/_Zk04GBb%iZk4GBb[Zk GTGBb/+nZkG]] 0#k)\Ï0 H?F2F0?N0 H?F2F0Q?c0 H?F2F0g?q JGGu#~^^cGG=]c`"1"=c4G"1BR`=h]"d"1"Q.1,QJA1HAFP=X T0"!(== ==/I G "1TGBbZCZk = G 4GBb/KZkG1 =BRAN`b|s"CCrN"CC¦֢0Bײ "9#CBRtGPBXbgZk/ = G 4GBbKZkG1 =/(]tR](ݢF=9/ "}`"! C4GTG@BHbBaZk` C(=_"B"C AGBbbZkZ4G=}0`F/`/Gݢ4GBbGJZk0DG/ =G4GtGG@b#Į_;("! C8"C(GGG0b#'@Ө8F=x F2 BR8b`FvSJUJF`F$B#7JJ8B8"98B@Ga:K@HD@G @/ 80JJG"Q8GBnZkBlZk7ð¦֢֢֢8GaJ@HDG @ "9999&K&K85C88" FrtJSqJtFr F/`׀B8BZ:FKFKb{{[8GGBTnZkBlZkp"!¦Fy6HXKGF C/ p HH@" FrtJSqJtFr F/`׀BBZ:FKFKpb["GGB"nZkBlZkݢ\C4GtGBb9sZkd8"!C4GtGBb/sZklG4GtGBb'sZk`GTG@BHb/;gZk C= CTGG 8b#@4GBbXZkV=`TGBbRXZk4GG9b#J@`GTG0B8b]Zk`4GBb/gZkhGTG@BHb/gZk8 C= CTGG 8b#@4GBbXZk"=hTGBbXZk4GG9b#@hGTG0B8b~]Zkh4GBb/fZk4GBbYZk`GTGBbkZkø5@=(@ 4G B(bWZk8D(=$4G4GtGGb#~_ӸDw \4GBb/WrZkd4GBb/OrZkl4GBb/GrZkhѠG`rtJS}JtF`r``4GBb/VZk/` `}"CTGG9b#s@4GBb+XZk4GBb/gkZk` C`= C`]"CtGGb#7_XѠGP0rHQ=J2FP0 }h4GBbcVZk/P P}"CTGG9b#?@4GBbWZkn4GBb/3kZkP CP= CP]"CtGGb#_ӠP4G=p"1ѠG`u=JTJF`/p¦֢6JJhB/hѠG`z`K[}K`G`z|``=!&H&HpPdGGBlZkB;kZk4GpѠGP9uHA=H5DP9/e p0JJX=B/X]ѠGPT{]JZ]K[GPTV@Pݢ6JJpWTGGBlZkBkZk= `$p"9ѠG`u=KVJF`>p0JJh=Bh]ѠG`T{]JZ]K[G`T0@`=!&H&HpXdGGBzlZkBjZk¦֢`"C=/ P*ѠGPqHPJFPBRRR2FJFJX}SB@XѠGPۮwJVJFP۾P=9&K&KXTGGBFlZkBjZkP= C= C"9BR"C}"C"CGGFb#/$@Ӄ=/ "1]"CQ4G4GGb#u_Ө/ (=]"Cbs(GsGGb#f@PH?$z! =D DX]V@(ݢx"Cp"CH"C@#C(GGG80b#@Ө<x=8 F/ BRH}rp"C xݢXF e 5$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1l"#C"9H]Yb{"! C "1x4GGb#0u_Ө/(=p](GtGGb#(@PH?$z! =GGb#$_($G4GtGGb#_cG]]#/k SJFF/ :KDD JDDr JFtFr  6HGG *r JFtFr.5m}Óãû#~ ^(^0GG= HH4GL8F 0 CTGBb9iZk/TG==!1&J&JG4G"(B"BpZkC@GD=)=11&J&J]RG4G" B"BpZkC@GD==11&J&J]RG4G" B"BpZkC@GD=]/@4GGG ](]0@#k#~H^P^XGG@8=0]@]]=/I Gp"1TGxBb~Zk = G4GBb/+GZkG1=BRANbs"CCrN"CC¦֢0Bײ"9#CBRtGBbcZk/= G4GBbFZkG1=/]tR]ݢ$4G4GtGGXb#/_(4GHBPbCZk=!!'H'HG0 D G2F3w HrF3F  (4G(B0b/mZkೈ"!!L"CC"1!N]Rv@J@4GTGCq0Bݢ"C(BRtGBblZk(4GB bCZk$G4GtGGXb#6_GH]P]X`#kp#~x^^GGph=`]p]]=K I8"1TG@BHb/~Zk=/ G4GPBXb/cFZkG1=PPBRANbs"CCrPN"CCP¦֢0BPײ"9#CPBRtGBbRbZk/= G4GPBXb2FZkG1=/]tR]ݢ$4G4GtGG b#/_hXD/C (4GBbBZk4GXX2=H]"C@}"C8"C0"C(TGGG/b#l@XXH=5 B/ H]u@B/@4GX}@=(TG B(blZkPP}P=@](tGGb#{@4GX(4GBbBZk xD=(4GGb#/}@$G4GtGG b#h_Gx]]#kp#~x^^GGph=`]@p]]=I G"1TGBb6}Zk = G4GBb/EZkG1=BRANpbs"CCrN"CC¦֢0Bײ"9#CBRtG`BhbaZk/= G4GBbfEZkG1=/]tR]hݢFE(4GBb#BZk4GXX4=H]"C@}"C8"C0"C(GGGH/b#/@XX/H=5 B/ H]u@B/@4GX}@=(TGBbkZkPP}P=@](tGGb#fx@4GX(4GBbAZk F(4GGb#/hy@Gx]]#k@#~X^`^h~px޴>^~G#G G]pxX"t"1"Q.1,QJA1HAF`=hX d"!P=XX T"! !..!JPJ0F@=HX DѠG0sKPJF0/G2 Du HTJFTG3"FrvHSpJvFr`4TG(= vJ G JtQJF TG }aJ`qH`F }$¦H"Cݲ"}/CB`G0"1TG8B@b|Zk `GG4GHBPbzDZkGaHH"1!NBR"CCQHbsaN"CCH0BH¦"CGHBRtGBbj`Zk/`GG4GHBPbKDZkGat$=} AEZ}`!"yBZ#C4GTGBb ZZk C`? aA("CH DGhBpb/[Zk/4G=}0`F``Gݢ`4GhBpbCZk0DG }` G4GtGGb#_d+fIfI5`A 8`E}"p90JJxF*$B@Fpu2JTJFpĢ6JJxB x" GpzkK[yKkGpz/`p HHDtGGB/dgZkBeZk ¦p"CTtGtGG.b#@bpkC}=TG(B0b{gZk} =TG(B0b/sgZk} =TG(B0b/kgZkd+fIfI x`E ` wHH$!'H'HDø=TG(B0bUgZk} 4G4GtG(B0bAlZk} G4GtG(B0b9lZk} 4G4GtG(B0b1lZk} G4GtG(B0b)lZk} G4GtG(B0b!lZk} G4GtG(B0blZk} 4G4GtG(B0blZk} GTGBb&`Zkh C= CTGGx6b#@ G`G4GXB`bQZk =TGB b>QZk4GG8b#6@} GTGBbVZk} 4GhBpb/`Zk} GTGBb/_Zkh C= CTGGx6b#@ G/`G4GXB`bQZk=TGB b QZk4GG8b#@} GTGBbjVZk} 4GhBpb/_Zk}` 4GXB`bRZkë5TA`TA/ =`4GxBbPZk 8TE`4G8B@b/WkZkG} 4G8B@b/OkZk=4G8B@b/GkZk=4G8B@b/?kZk=4G8B@b/7kZk=4G8B@b//kZkx=ѠGpQs=HR]JSFpQ@4GBb/OZk G`p"p"CGTGG88b#/\@/4GXB`bQZkRG4GBb/OdZkp Cp= Cp]"CtGGb#_hѠG`0rHQ=J2F`0P }4GBbKOZk G``"`"CGTGG88b#/(@/4GXB`bPZkG4GBb/dZk` C`= C`]"CtGGb#_Ә = @G*p="CG&0]"CG=tGGb#/ _Ә} `P CP= C@&У"GGb#P_ P}!CP C@&X"GGb#D_0}!CP C=/ `"p1"CGGG4GGGb#?~_G/(}!C = C8tGGb#{_G/bk 0`A"a" FrtJSqJtFr F`׀B"¦|"C"C#C"9#CCxbsG(B0b9bZk C"! C@]"C8}"C(UB/G"GGGG`b#X_ G `0= C4GBbMZk  C4GBb}MZkk@ C@= C@]"CtGGb#/=_(} 8`E/`@ C/% H @@8}GGGxb#ƚ_bk!C C"! Cbs"C"C"C¦֢޶b{~8 tGGb#N_ 4G 8  CTGGb#q_ G/?}!C = C8tGGb#ς_ G84GGb#_$4G4GtGGb#/إ_HbHL&B0v Ja H!F0HBRANtGBJsS`JFH¦֢NCH0CH"HBZAOgb zA vH{`KD H"!!L4G"!BQAJpSJPFQHbsaNCH0BH¦HN`"7CvHxKDHbk aMGbkC;!HzS@K:D;HNd=C0HBR0@BHbSHN8¦BvHuJDHNG"7C9!HxSK8D9Hbk aM8BZ CKHb{0`CHpH"1!N]RbqBvHr@JDHNG¦B6!HuSJ5D6HNCH"90 CHb+HBZAO@bzCvHpJDH"1!NGbqB3!HrS@J2D3HNDCH¦֢0BHײHOCHbk aM+aA C본"09#C"C]^<4GGGGBb6BZk$G4GtGGb#_0}!C4GBbLZk }!C4GBbLZkGX]`]h}pxݤ=]}#/k\em0@ué5r JFtFr8à#~@^H^PGG=]0 C  =1 ]4G B(bXZk0 C(= CTGG5b#/@00/04GBbwNZk 8("H1"CTGPBXb/rZk8=(4GG@7b#/@ "1"C tGGb#_G@]H]P`#k#~@^H^PGG=] C  =fҤ$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1"1 ]4GBb/XZk C(= CTGGP5b#2@0004G0B8b+NZk 8("\1"CTGBbqZk8=(4GG6b#/@ `"1"C tGGb#`_G@]H]P`#kP#~^^GGxp=h]`"1BR@=H] D"1"Q.1,QJA1HAF0=8 4@"!=x===I G"1TGBbvZk = G4GBb/;ZkG1=BRANpbhs"CCrN"CC¦֢0Bײ"9#CBRtG`Bhb*[Zk/= G4GBb ZkG1=/]tR]pݢBpBp5Cp='C/ ]4G0B8bLZkp8D=4GBbggZk`4GBb/_gZkP4GBb/WgZkXHѠG@rtJS}JtF@r`4GBb/KZk/@ À@}"CTGG6b#@ӈ4GBb;MZkÀ4GBb/w`Zk@ C@= C@]"CtGGb#G_8ѠG00rHQ=J2F00 }4GBbsKZk/0 À0}"CTGG6b#O@ӈ4GBbMZkdÀ4GBb/C`Zk0 C0= C0]"CtGGb#_X"!!!DX="C0BRP}tF`P"Cղ@#C"99TG0B8b/^Zk"!@"C"1BR0}"C4TG0B8b^Zk/"!0"C"1BR`4GGb#!c_4G4GGb#`_pD"! C4G`BhbCZk0"]"CCTG@BHbCZkpDQ===1/ "È}t"C4GTGPBXbSZkpt C=_"B"C AG B(baUZk4G=}0`F/`/Gݢ4G B(b|Zk0DG/ =G4GtGGPb#@_ӝ`=BRtGBbefZk4GBb&fZk``4GGb#/]`_"!!!4GtGBb/KfZk"!!!4GtGBb/?fZkGTGPBXb/SZZk= CTGG05b#@ӈ4GBbKZkT=TGBbjKZk4GG6b#b@GTG@BHbPZk4G B(b/3ZZkGTGPBXb/ZZk= CTGG05b#@ӈ4GBbKZk =TGBb6KZk4GG6b#.@GTG@BHbPZk4G B(b/YZk4GBbLZkG]]#k>r`#~^^GGh`=X]X X(@H"DX",1"Q.1,QJA1HAFX40=8 4"!=h===L /Ix"1TGBb/ktZk=/ G4GBb/|ZkG1=BRANbs"C CrN"C C¦֢0Bײ "9#CBRtGBbXZk/= G4GBb|ZkG1=/]tR]`ݢXFxx=9/ p"x}```"! C4GTGBbRRZk C=x_"Bp"C AGBbSZk64Gp=p}0`F/`/Gݢ4GBbW{Zk0DG/ =G4GtGGb#ԟ_GTGBbYZk Cp= CTGG4b#@xxx4GBbJZkp=TG`Bhb.JZkp4GGP6b#&@GTGBbOZk4GBb/XZkGTGBb/XZk Cp= CTGG4b#@xxx4GBbJZkp=TG`BhbIZkp4GGP6b#@GTGBbZOZk4GBb/XZk4GBbKZkGTGBb]Zk`@`=u$@ 4GBbIZk`DH=ѠG@Qs=HR]JSF@Q@4GPBXbHZkpp/@ p@}"CTGG6b#s@xxx4GBb+JZknp4G@BHb/g]Zk@ C@= C@]"CtGG`b#7_8ѠG00rHQ=J2F00] }4GPBXbcHZkpp/0 p0}"CTGG6b#?@xxx4GBbIZk:p4G@BHb/3]Zk0 C0= C0]"CtGG`b#_0 C0= CTGBbQwZk4G4GtGG`b#_@ C0= CTGGb#_PG4GtGG`b#/؟_PP4GBb/IZkG]]#kiÜp#~x^^GGXP=H](8(@08x"4"1=X]K@IH"1TGPBXb/rZk=/ G4G`Bhb/zZkG1=``BRANbs"CCr`N"CC`¦֢0B`ײ"9#C`BRtGBbVZk/= G4G`BhbzZkG1=/]tR]PݢFhh=9/ `"h}0`0"! C4GTGBbzPZk  C=h_"B@"C` AGBbRZkpp4G`=`}0`F/`/Gݢ4GBbyZk0DG/ =G4GtGGb#_Ӭ0= CxGtGG,b#c@GTGBb6WZk0 C`= CTGG4b#@hhh4GpBxbHZk`=TG0B8bNHZk`4GG 6b#F@GTGBbMZk4GBb/WZk4GpBxbIZkGTG`Bhb\ZkcP5@P=$@ 4GBb HZkP8DS8=ѠG0Qs=HR]JSF0QR@4G B(bFZk``/0 `0}"CTGGP6b#@hhh4GpBxbHZk/`4GBb/[Zk0 C0= C0]"CtGG0b#_4G4GtGG0b#z_0 C4GGb#_@G4GtGG0b#k_@/@4GpBxbOHZkGx]]#/k`#~^^GGXP=H]D . .JQ JFBLR08]="4=pX]I@G"1TG B(b"qZk = G4G0B8b/yZkG1=00BRANb$s"CCr0N"CC0¦֢0B0ײ"9#C0BRtGBbrUZk/= G4G0B8bRyZkG1=/]tR]PݢF;xx=9/ p"x}`"! C4GTGBb OZk0 C=x_"B"C0 AGPBXbPZk4Gp=p}0`F/``G4GPBXbxZk0DG4Gh=h=C`=`}0`F`4GBbsZk00"!!LH"CC0"1!NGCQ0bs0`B0t¦"C0BRtG@BHb^Zk00"!!LX"CC0"1!NGCQ0bs0`B0t¦"C0BRtG@BHb^Zk00"!!Lh"CC0"1!NGCQ0bs0`B0t¦"C0BRtG@BHb^Zk00"!!Lx"CC0"1!NGCQ0bs0`B0t¦"C0BRtG@BHby^Zk00"!!L"CC0"1!NGCQ0bs0`B0t¦"C0BRtG@BHbW^ZkGTGBb/UZkP C`= CTGG`4b#@hhh4G@BHbFZk`=TGBb6FZk`4GG5b#.@GTGpBxbKZk4GPBXb/TZk4G@BHbGZkG4GtGGb#/_{PDi8=ѠG0Qs=HR]JSF0Qv@4GBbDZk``0`0}"CTGG 6b#@hhh4G@BHbrFZkU`4GBbYZk0 C0= C0]"CtGGb#_0 CGb#_@@$0=" ]4G4GtGGb#d_0= CxTGG&b#%@@G4GtGGb#S_@/ @4G@BHb7FZk0 C&"4GtG@BHb/,FZk4G`Bhb/EZkxGTGG(b#/@G]]#kP#~^^GGph=`]PXHP"L"\1"Q.1,QJA1HAFd8=@ <0vJ0G0HaQ HD0TG0J`qHF04@"1=pK=I "1TGBb/nZk=/ G4GBb/7wZkG1=gE%$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1"BRANpbs"CCrN"CC¦֢0Bײ"9#CBRtG`Bhb&SZk/= G4GBbwZkG1=/]tR]hݢUBhBhCh=u%C/ ]4G0B8bDZkhDP=ѠGHQs=HR]JSFHQ@4GBbCZkxx/H xH}"CTGG5b#@Ӏ4GBbOEZkrx4GBb/XZkH CH= CH]"CtGGb#[_@ѠG80rHQ=J2F80a }4GBbCZkxx/8 x8}"CTGG5b#c@Ӏ4GBbEZk>x4GBb/WXZk8 C8= C8]"CtGGb#'_4G4GtGGb#_H C8= CTGGb#V_XG4GtGGb#/_XX4GBb/DZk hXDO===1 x$À}t"C4GTGPBXbLZkp C=_"B"C AG B(b/MZk/4Gx=x}0`F`Gݢ4G B(b"uZk0DG =G4GtGGPb#_H= CxTGtGG,b#@3PѠGH0rHQ=J2FH0/ }4GBbBZkxxHxH}"CTGG5b#@Ӏ4GBbrDZkx4GBbWZkH CH= CH]"CtGGb#_8H= H"C0="CTGGb#_GTGPBXbRZkH Cx= CTGG04b#G@Ӏ/4GBb?DZkbx=TGBbCZkx4GG5b#@GTG@BHbIZk4G B(b/{RZkGTGPBXb/gRZk0 Cx= CTGG04b#@Ӏ/4GBb DZk.x=TGBb~CZkx4GG5b#v@GTG@BHbHZk4G B(b/GRZk4GBbEZkGTGBbNWZk0 C4GBb/-AZkG]]#keØ@#~`^h^pGG@8=0]X@]]=L /I"1TGhBpb/lZk=/ G4GHBPb/uZkG1=  BRANbs"CCr N"CC ¦֢0B ײ"9#C BRtGBbQZk/= G4GHBPbtZkG1=/]tR]8ݢFq#oFV 8FT@XF`8FxF XF= 1(=(]@(}$4G4GtGG8b#__4G"(/(=11 (]4GG b#n4@/ "($G4GtGG8b#B_m(4GTGGb#T_($G4GtGG8b#3_,"!,4GBb{BZk(4GGb#ݹ_L= !(=(= ]R}sSF/@(/;4GGb#Ĺ_54GP/0P= ]R@} 4GGh4b#/}@ 4GBb1eZk1F=t1H=GX}HXݢNB HXOB4GBb-BZkX0@XXBG`]h]p#k#~h^p^xcGGH@=8]c"1"=c"1= B R"2.2,2JA2H!F=h "! =h "$! !..!JPJ0F,p=xh t"0!B8R`=h]h d"<! .A.JRAJFDP=Xh T"H!"P1@=H=h D"!(=H= ==/I G  "1TGBbRkZk = G 4GBb/sZkG1 =ppBRANb s"C@CrpN"C@Cp¦֢0Bpײ @"9#CpBRtGBbOZk/ = G 4GBbsZkG1 =/(]tR](@ݢxFXX=9/ P"X}`"! C4GTGBb:IZk C(=X_"Bx"C AGBbJZk``4GP=P}0`F/`/Gݢ4GhBpb?rZk0DG/ =G4GtGGb#_,G4GtGHBPb[Zk4G4GtGHBPb[Zk<G4GtGHBPb[ZkLG4GtGHBPb[ZkTG4GtGHBPb[Zk\G4GtGHBPb[ZkhG4GtGHBPb[ZkdG4GtGHBPb[Zk0GTGBbOZkx CP= CTGG1b#j@XXX4G8B@bcAZksP=0TG(B0b@ZkP4GGx3b#@0GTGB b6FZk04GBb/OZk8GTGBb/OZkx CP= CTGG1b#6@XXX4G8B@b/AZk?P=8TG(B0b@ZkP4GGx3b#@8GTGB bFZk84GBb/kOZk@GTGBb/WOZkx CP= CTGG1b#@XXX4G8B@b@Zk P=@TG(B0bn@ZkP4GGx3b#f@@GTGB bEZk@4GBb/7OZkPGTGBb/#OZkx CP= CTGG1b#@XXX4G8B@b@ZkP=PTG(B0b:@ZkP4GGx3b#2@PGTGB bEZkP4GBb/OZkXGTGBb/NZkx CP= CTGG1b#@XXX4G8B@b@ZkP=XTG(B0b@ZkP4GGx3b#@XGTGB bfEZkX4GBb/NZk`GTGBb/NZkx CP= CTGG1b#f@XXX4G8B@b_@ZkoP=`TG(B0bZkP4GGx3b#@`GTGB b2EZk`4GBb/NZkHGTGBb/NZk CP= CTGG1b#2@XXX4G8B@b+@Zk;P=HTG(B0bZkP4GGx3b#@HGTGB bDZkH4GBb/gNZkH4G8B@b~Zk=HGGGGBb/KZk4G(B0b-AZkHGTGHBPb^SZk@ @@=*@ 4GBbMZk@ D=,4GBbYZk44GBb/YZk<4GBb/YZkL4GBb/YZkT4GBb/YZk\4GBb/YZkh4GBb/YZk d4GBb/YZkѠGrtJS}JtFr`H4GBb/}ZkPP/ P}"CTGG3b#@XXX4G8B@bZkP4GXB`b/RZk C= C]"CtGGb#_ӘѠG0rHQ=J2F0 }04GBb}ZkPP/ P}"CTGG3b#@XXX4G8B@bKZk[P4GXB`b/RZk C= C]"CtGGb#W_ӈѠG0rHQ=J2F0L }84GBb}ZkPP/ P}"CTGG3b#_@XXX4G8B@bZk'P4GXB`b/SRZk C= C]"CtGGb##_xѠGp0rHQ=J2Fp0 }@4GBbO}ZkPP/p Pp}"CTGG3b#+@XXX4G8B@b~ZkP4GXB`b/RZkp Cp= Cp]"CtGGb#_hѠG`0rHQ=J2F`0 }P4GBb}ZkPP/` P`}"CTGG3b#@XXX4G8B@b~ZkP4GXB`b/QZk` C`= C`]"CtGGb#_HѠG@0rHQ=J2F@0 }X4GBb|ZkPP/@ P@}"CTGG3b#@XXX4G8B@b{~ZkP4GXB`b/QZk@ C@= C@]"CtGGb#_XѠGP0rHQ=J2FP0 }`4GBb|ZkPP/P PP}"CTGG3b#@XXX4G8B@bG~ZkWP4GXB`b/QZkP CP= CP]"CtGGb#S_0 0"!0<0"1@0BRH0bs0@0D0¦֢`000"9$0BZX0b{\0P0"!d0(] @}`4G(0¦֢"C/4G(=}#C CTGBb]kZk C= CTGG>b#@PP0"1]"C$Q}`4G(`"C`"CTGBb/?kZk` C= CTGG>b#@PP/0"1]"CXQ} `p4G(0p#C=/K @]I@4G(}"!FQs0HRPJSFQF/@`B`"C"C¦"C@"CGBbrOZkѠG@0rHQ=J2F@0 bs3fJfJHtB`HѠG@yJXKG@@]:FKFKb[DGGB/tRZkXBPZk0"!@"C\ P/4G(=0P"CP= 4G(]0]#CdT }`0"! "ChE$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1L" .p`yChv#AG̝5-|+c b ;"] IӷK*k ݡ7 pmajFB!yځ•K?K-/RqLA6~✮r- ˈQG@PNzi#, 2Mb.|O5jv UayIp \'^6EIK`P Rp Zӊ$L.ze X~݀uhdx9s|ǻ)J]a:aOT1٘5pL=!N=~.b9K;6 wsX/ JBvwn-Ibq" l+|[[ %_h"Lw}`Oh:-q2ڏVن/HyT昂RZ#Џ|YkdnsFD>0aOu 2q-kaG''-WO7 !EP"B;:(K t:eXÞ1/*Pl +<!br@IZ8Lpҧi6:PYW`"5DZ|qr5UoFOUpM'ȟUK$]^=tkBkѯG K-vN;/g?-Oj̘T_NAݶE!|D/f7hfhEd2Ub s[5:uTcM"7z*Vf2!Ou!,Gl5P%XBIYsmJ6HWPl3RiՋTِIJzWk [ vW 䱒tv'%Uٕ I$_:kBm}oFk;/CIf9,Rp1?Y y2ň= (t>z}`o#}K |_ق tk<ɞjsa #|PzsDWW.vʮIAp5bb5 _dϷ9CZH#?2m`lꝅuJ262A=h>]R^m7ο,Gxؔ<!rƨPP3+ :2yBgQK,q]!"½ɫal߷Zy) ZY҅UxIo~`)6u$^{;d'xHїHQ/ pca*ݭgq"/珞$$/WqLDqJBd5Ǭ"0A`WZ:)x@XS˜h Q"7QE8 K#<4rP~Nr 7 weiK틮^S='r ,e3İ=Z"T9oltmw"K)+c.4_Qu9ɔp`g436r3?̩3 J@ >}R^@ 8 ?E;FcTzŎE ߠVkɺl~%f1“W- f=Hr*װ Tmdajaw z}suUkPLtwy-XwԆ7b;51jk"8E G6墻- P?[T@B2( \k kkkBvXs0n;.Z&XH|motjJ2s0t%8wi\:G{톈L@nF-{4ѻqz<ډx|IFJusK$q>Y ;8bX33|ēhr6Yg +EBv3=~XvNZm_+.%LA;:J@"u^"yR|ӲlI$Go#z`~ Y*1ؔe(OJ{ eQ@5&=ц:ܼpN”0عhhOx\*J߶S9R`q5)vDh0Z'"Fo!|r\h%@Eu1?|ix; T^$(]c>Ic|5'uURvW|w V6?ؗ!JGM3Ghi) ~jU(4I-)BrƨG39vp~J/TݢLWc lA]u|5-WZᦨԥZ qɚ!&4ť.YR4Ej̖ÍoIfl:eN Yao%c8-=2vE8+?de#ȹA;eJmSo7T}c*l.D(EĄnJVP{cSG\  =-M@G T$|K=> Rs4Kx@ 9j_L,Xr {zP/#FƲAע['_g>&.D2Z׮dآ\cB<.`),8aq^V'v&T;jLξdFDl8k׆ꂙth4dʡ[R^ ;Õwʩ)6-'6{Ce X 4FQzeQ B3g~'nlQi ]$U Q4{A)+ٛآ <0JYY —(L8(F'GS'u]~Xps;2/)0:-A`ٚRw $8\ TG@iՁ\,̢J4A4"O_kY9ϊaߴe8lpg6JM5yXǁ58ݻ7(ܺF.7v}q;.Ozrʟ!,=91OMy7~H,睩  SP2د;8.?4X=a 5HfCP,m0'mNT + LoĴA8ʊ1[xT{wF0wpZSI %;֩4q+ KjoxA$u7 EP4ne{4X(Ɂ!Hz[ Pqd ;tܯ"M2_Dte{)+Q$:~S}CEs/k#I0SMK=Բqg^l:S}dB-Wu9UY *,+ShaO M8J A=5!-k==OW4V]rUmV$E/a\tюoR 56JM[BCyLx#eIrM;XkT֢Ffi5jdnWZKbgIe@2¶<@bszʿr .{2D#Hh5Yހ*#>&laeb Ez=UiWJ ?j&ROЧZ^&`eR^ JOn1U|DSGhe{ۧwܽq1._T)dy}İVU-N)abO- 97.#F_s V22%tD? ~͔}%,Bk|! %hJV3[i.cD4/> ?3p'a5{Z9S*H|q[sCY.CR_piDy` E`HyJ<\iqLp06p]Qd9׷ '',+"gk`0*S2w@|sHv^%)\ʠ+oG0-8?_h|rbMMKw u%O$MXvma+S-l7SaQG;WKq-66[hK:¦  ` o EWA#b,T!(%dlqPPdUNòP"'{"vj('Դc X=b /`[)~3l΂x`qF]^sbo3F_!/ (Zg_i^զG)$ڞ iKgR[NJ RwSzV v.\:ש3wkr!\҇EΏ w1[n->n4+o@H8Y=zP6IqpW('-ls8vpP>ٯ*[@` R>֕m osS2a:zPbHbCD*#7U d*P2#թDCvX:| .+pDQ,:ej9=0R?>=vѭN*R}DrT8b]^q`VCxRFW!T(cu)k`YIPɡ0LF?&a/{|6(FVڬM=$^Ȋ N! ?)֏Q4iHovY 3)p`^O,Ogܫ0;2P8k7dnOʾGLHH7ri"O_UBk/Q (p0xwUYfFyU~O _W#/ Շjf,g``vJk1>TEtb#YmU[$kN%dzckL8d.B|N?_4cF6\}5OAˀ>?ۿhWzJ$.x'ӤݚCb]d[ֱz{Yr/"RECGmE GVnV]?9h?ǻ4_;9=2㶷Ic^=YpNQJ OdbHOiH7+ ћt\e-C3OLp8X@nUN)#b ,>S>ϰ o+ OuZL#(} g=c8>~6^ qQf@ϦI/`q A$Th_yVt#_= } S=(]ӳz;yg(m{@t<()̍ ? KJ_PI+/P9lڿK:&lA4>s^a8P !(!b{M )tKtl:BQN05 i0n)Q3^\brnR~xH{|P\.&xA @_?ϑr bZ,ݵ J/q 5 r?#' q}( z85w D٠1N9`k10j7ׂ*xXumJL{S~09anRA됐hm`J@ð!=v2_|媖?[YuTauH=c ֿuDMŔ YS&UE<%!U[1TFcObcP ktKQA~zա8AjÊҕbWzCtEдqPp +n ~85{J p{:K6ѱ\[)| ܔL0`CYL8D:7ezL N4e|'S0 =nJi$y?{qgkZ)D1DԵhZW޶`HX}pJf!Y|IC>sH *LKkp#%뇢V/ uxY)v7UNoZ%#}-4, ds^ rhV'{T&2s0bG)j-ܸuE7Hvv.ms@v͗oav5X6]v²1ِT}" G_7AIWk-IJ=&%0]wj(E<4[~<Jg#jEj_ "S %hu0j7>@"sdKȁ2eaX4[trNw̕Z:'&Jc䓃MA0*#`)JT.SFD,2bܨL7:Q WE6Ԏ_y < ?¶d_I* `=՜7G\tLR;?K | ܛڍP!A>lb%d-)pqC;j}ρ jPF?Z ,7>7fJcP> Qyu 5]kd3 嵅̧a:@ėȢ` &8hy$|k&bdUmWv.#rma.f֥IliJ{V$4ĜtؿѪ ;I]L،&EI8V]3E*2u^N2՗ɬ@ȑAp>O_N|1p!^;a=uC\t̾۹,5(-cIMb;yid3ɻ cMj(ƍf'~ݱ>ڍ] i |\-\s+m[?Yc9xԑxm8?M➂jonF?Q\|unW}⨃a9pq%r5ƌXJXy?/G.夥"+~K6Jl$dM5;C8P|Df ǂւD1ɃD'"%?;~Z1Z)5Ic@*ٌݪ}2"Ǖg7t93M{)֬C+Z}#x}95 qW6;|p rҊ8S 1cOk74VmщuupŇ M}aH!kaڭth;cnE^kڭ\ury#׫G@ =a+.Ŵh=r hP@tkK}!#맛 ΋{}Րe{zLvj*Q}W xRe%ڔ*eb`#9vG9I2 lIHɤH4CԆSǷS3|őʕd>KI~|!Y6Df/3+H|&˭0ۿs3[(c-*\ut|U,nc-in`ƿUu=ʿZu5]Ѳ|3wE'΃e;ٻ}Voboh')#HqzVG4G=}0`F/`/Gݢ4G B(blZk0DG/ =G4GtGGb#_ (|G4GtGBb7VZkG4GtGBb/VZk(=!!'H'HG0 D4GtGBb"VZk(=!1'J'J4GtGBbVZk(=!!'H'HG0 D4GtGBb VZk(=!1'J'J4GtGBbUZkGTGPBXb/JZk(@= CTGG0b#@Ӱ/4GBb{Zk=TGBb*{Zk4GG02b#"@GTGBb@Zk4GBb/IZkGTGPBXb/IZk(@= CTGG0b#@Ӱ/4GBb{Zk=TGBbzZk4GG02b#@GTGBbV@Zk4GBb/IZk( wHH=TG0B8bPZk4GBb|ZkGTGBbNZkZØx D=4GBb/zZkO"!l"1 BRbs (XF(8wKKG0GPBZP}#Cz/=P=TG0B8b/KPZk|4GBb/TZk4GBb/TZkx4GBb/TZkX4GBb/TZkp4GBb/TZkh4GBb/TZk`HѠG@rtJS}JtF@r`4GBb/'yZk/@ è@}"CTGG`2b#@Ӱ4GBbzZkè4GBb/MZk@ C@= C@]"CtGG@b#Ǫ_8ѠG00rHQ=J2F00 }4GBbxZk/0 è0}"CTGG`2b#Ͽ@Ӱ4GBbzZkè4GBb/MZk0 C0= C0]"CtGG@b#_( wHHPXG0FXX](}s3gJgJSF@X"Clpݢ(7JJFp=#C8h]G0@Gh]h(=!!'H'HDh="C 0`}(]R2GJGJrF@`"C@"C(CTG B(b"LZk"!@"Cx= 0]"C(}tBTG B(bLZk"!0"C(=$4G4GtGG@b#/$_(4GG b#Wx_(=PAGSF0JFPFA(4GGPb#vy_($G4GtGG@b#_G]]#kD@#~^^GG=x]Pl . .JQ JFPBtR@H]="D=PxPBR08]="4=]/I@Gx"1TGBbbZk = G4GBb/kZkG1=BRANpbds"CCrN"CC¦֢0Bײ"9#CBRtG@BHbGZk/= G4GBbjZkG1=/]tR]ݢXF=9/ "Ø}`"! C4GTGBb@Zkpp C=_"B"C AG0B8bIBZk4G=}0`F/`/Gݢ4GBbiZk0DG/ =G4GtGG`b#(_ӗG4GtGBbNSZkG4GtGBbFSZk4G4GtGBb>SZkGTGBbSGZk C= CTGG@0b#@Ә4GBbxZkf=TGBbjxZk4GG1b#b@GTGpBxb}Zk4GPBXb/3GZkGTGBb/GZk C= CTGG@0b#ʽ@Ә4GBbxZk2=TGBb6xZk4GG1b#.@GTGpBxb}Zk4GPBXb/FZk4GBbyZkÀ@=6@ 4G0B8b/wZkD/=4G@BHb/RZkp4G@BHb/wRZkh4G@BHb/oRZk`HѠG@rtJS}JtF@r`4G B(b/vZk/@ Ð@}"CTGG2b#@Ә4GBbSxZkÐ4GBb/KZk@ C@= C@]"CtGGb#__8ѠG00rHQ=J2F00 }4G B(bvZk/0 Ð0}"CTGG2b#g@Ә4GBbxZkÐ4GBb/[KZk0 C0= C0]"CtGGb#+_ӈ$ೈ"!X`("1ѠG@u=JTJF@/t¦֢6JJHB/HѠG@z`K[}K`G@ze`@=!&H&HPDGG@BLZkB_KZk4Gpp@#C@=#CTGBbGeZk@ CX= CTGG =b#@Ӑ/7È"1X]"C$Qh}`0"C0"CTGBb*eZk0 CP= CTGG =b#y@ӐÈ"1P]"CXQ}$4G4GtGGb#_4GG b#/x_$G4GtGGb#_G]]#kHÄÔð#~8^@GG HHGS01&J&J4G(Y" Y3RZkC=@GD]>@}31&J&J 4G 0Y" YRZkC =@GD]*@}31&J&J(4G(@Y" Y RZkC(=@GD]@}31&J&J04G08Y" YQZkC0=@GD]@4GGG8]@P#k@#~^^GG=x] . .JQ JFBR`h]="d=BR08]@="4=]/I@G"1TGBb_Zk = G4GxBb/ShZkG1=PPBRANbs"C CrPN"C CP¦֢0BPײ "9#CPBRtGBbBDZk/= G4GxBb"hZkG1=/]tR]ݢF=t9/ "Ø}```"! C4GTGBb}Zk C=t_"BX"C` AGBb}Zk4G=}0`F/`t/Gݢt4GHBPbfZk0DG/ =tG4GtGGb#\_`= C|tGtGG((b#ì@ HHxD3=! FQs0HRPJSFQF/@`B`4JJ B ¦֢ F8zJY7K:G8F @C/@ b{;fKfK@ "GGB(KZk8BIZk ݢ "CTtGtGG((b#@GTGxBbSDZk` C= CTGG/b#@Ә/4GB buZkl=TGBbjuZk4GGX1b#b@GTGBbzZk4GBb/3DZkGTGxBb/DZk  C= CTGG/b#ʺ@Ә4GB buZk8=TGBb6uZk4GGX1b#.@GTGBbzZk4GBb/CZkt4GBbvZkGTG(B0bIZkÀ @=+@ t4GBbtZk Dh=ѠG`Qs=HR]JSF`Q@4GBbsZk/` Ð`}"CTGG1b#@Ә4GB bguZkÐ4G8B@b/HZk` C`= C`]"CtGGhb#s_8ѠG00rHQ=J2F00 }4GBbsZk/0 Ð0}"CTGG1b#{@Ә4GB b3uZkÐ4G8B@b/oHZk0 C0= C0]"CtGGhb#?_`&""4GB buZk0 Cb#_Ӑ= 0&""4GB b uZk&J"4GB buZkx0= C8 "1`BRd}$4G4GtGGhb#_t`= C("1"Cp]"Ct}"CGG>b#@/Jp=?p"Cb#P_Ӑ= p="C04GGb#/dx_Ӑ/jc$)$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1"#4GGb#Dv_p= CGGGGGb#/!m@$G4GtGGhb#_p C&Z"4GtGB btZk$G4GtGGhb#/_Ӑ4GB btZk$G4GtGGhb#_G]]#k;Q 0H_FSFQ/>_H8 J?G:G8L?p#~p^x^GGPH=@]P . .JQ JFPBR08]p="4=P]K@Ix"1TGBb/K]Zk=/ G4GBb/eZkG1=BRANpbs"CCrN"CC¦֢0Bײ"9#CBRtG@BHbAZk/= G4GBbzeZkG1=/]tR]HݢF``=x9/ X"`}`"! C4GTGBb2{Zkp C=`x_"B"C AG0B8b|Zkhh4GX=X}0`F/`x/Gݢx4GBb7dZk0DG/ =xG4GtGG`b#_0= C|tGtGG'b#@GTGBbAZk0 CX= CTGG@/b#@```4GBbsZkX=TGBbsZkX4GG0b#@GTGpBxbfxZk4GPBXb/AZkx4GBbtZkGTGBbFZkHu @H=5,@ x4G0B8brZkHx D8=ѠG0Qs=HR]JSF0Q~@4G B(bqZkXX/0 X0}"CTGG1b#@```4GBb7sZk\X4GBb/sFZk0 C0= C0]"CtGGb#C_0 C0b#_XX= 0/&""4GBbsZk;0 C&Z"4GtGBb sZk1È0= C 8"1BR`bsd$4G4GtGGb#_4GG@b#/qt_0= CGGGGGPb#Ok@$G4GtGGb#_Gp]x]#k{ #~^^GG=]0"10BRp=x] t0"1"Q.1,QJA1HAF0`=h d0"!00=8@ 4"!==L =/I X"1TGBb/[Zk=/ G4GBb/cZkG1=BRANPbs"CxCrN"CxC¦֢0Bײx"9#CBRtG B(bZk/= G4GBbcZkG1=/]tR]ݢFh=|9/ "ð}`"! C4GTGBbyZkP C=|_"B"C AGBb%{Zk(4G=}0`F/`|/Gݢ|4GBbbZk0DG/ =|G4GtGG@b#_ `= Cp"C|GGG'b#i@ӈ8FE=11&J&Jx F3 ]Rxb`FvSJUJF`FB/7JJxBx"9xB@Ga:K@HD@G/ @ x0JJG=QxG BFZkB;EZk]ݢx#CTtGtGG'b#/!@Q`x" D0rHQ!J2F0 D/ @B@`}3fJfJxtB `xx¦FyJXKGF C xBZ:FKFKd]xGG BFZkB/DZkp=ѠG`y=HXKG`p HHh@hѠG`rtJS}JtF`r``]:FKFKt]dGG B/lFZkBDZkݢ=4GtGBbKZkGTGBbZk` C= CTGG /b#F@Ӱ4GpBxb?qZkD=TG`BhbpZk4GG0b#@GTGPBXbvZk4G0B8b/{ZkGTGBb/gZkx C= CTGG /b#@Ӱ4GpBxb qZk=TG`Bhb~pZk4GG0b#v@GTGPBXbuZk4G0B8b/GZk|4G`BhbrZkGTGBbNDZkØ @=,@ |4GBb=pZk D=4G B(bJZkhѠG`rtJS}JtF`r`4GBb/oZk/` è`}"CTGG0b#@Ӱ4GpBxbpZkè4GBb/CZk` C`= C`]"CtGGb#_` Cb# _Ө= `/&""4GpBxbpZk` C&Z"4GtGpBxb|pZkÀ/h"!8O8ѠG0rtJS}JtF0r`4GBbnZk0è0}"CTGG0b#@Ӱ4GpBxbRpZkWè4GBbCZk0 C0= C0]"CtGGb#__0 Cb#_Ө= 0/&""4GpBxb2pZk7&J"4GpBxb+pZk0h0= C8 h`="C0hBRhbs`$4G4GtGGb#&_4GG@b#/r_`= CGGGG0b#oh@$G4GtGGb#_G]]#k  SJFF/  :KDD60 H?F2F0:?C JGGFTa]`#~^^GGXP=H] . .JQ JFBR08]="4=X]I@G("1TGBbXZk = G4GBb/ aZkG1=xxBRAN bs"CHCrxN"CHCx¦֢0BxײH"9#CxBRtGBb|Zk/= G4GBb`ZkG1=/]tR]PݢBP5B4GBb/nZk|GTGG8#b#/@P D=x=x=1 p$x}t"C4GTGBb}vZk  C=x_"B"C AGBb/xZk/4Gp=p}0`F``/G4GpBxb_Zk0DG/I4Gh=h=C`=`}0`F`4G0B8b[Zkxx"!!L "CHCx"1!NGHCQxbs0`BxtH¦"C0xBRtG`BhbOFZkxx"!!L $"CHCx"1!NGHCQxbs0`BxtH¦"CxBRtG`Bhb-FZkxx"!!L 4"CHCx"1!NGHCQxbs0`BxtH¦"CxBRtG`Bhb FZkxx"!!L D"CHCx"1!NGHCQxbs0`BxtH¦"C xBRtG`BhbEZkxx"!!L T"CHCx"1!NGHCQxbs0`BxtH¦"C8xBRtG`BhbEZkxx"!!L d"CHCx"1!NGHCQxbs0`BxtH¦"C4xBRtG`BhbEZk ѠG00rHQ=J2F00/ bs3fJfJ8tB/`8ѠG0yJXKG00]:FKFK b[4GGBCZk`BAZk=,GTGBb/G|Zk0 C`= CTGG.b#@hh/h4G@BHbmZk`=,TG0B8b^mZk`4GG0b#V@,GTG B(brZk,4GBb/'|Zk  7HH@@=TGBbBZk4G0B8b/nZk=G4GtGGb#_^8ѠG00rHQ=J2F00^ },4GBbkZk``/0 `0}"CTGG0b#ײ@hhh4G@BHbmZk:`4G`Bhb/@Zk0 C0= C0]"CtGGb#_80= 0=  "GC 8"18BR8bs4G4GtGGb#v_|4GGb#H@G4GtGGb#h_G]]#k&6Û`#~^^GG`X=P]@H"D"1"Q.1,QJA1HAF0=8 4@"!=`===I G"1TGPBXbVZk = G4G0B8b/^ZkG1=BRANbts"CCrN"CC¦֢0Bײ"9#CBRtGBbnzZk/= G4G0B8bN^ZkG1=/]tR]XݢxFpp=9/ h"p}`"! C4GTGPBXbtZk C=p_"B"C AGpBxbuZkxx4Gh=h}0`F/`/Gݢ4GBb ]Zk0DG/ =G4GtGGb#_h@= C|tGtGG&b#@<GTG0B8bzZk@ Ch= CTGG.b#n@ppp4GBbglZkGh=<TGBbkZkh4GG0b#ұ@<GTGBb:qZk<4GBb/zZk@GTG0B8b/kL_$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1u"zZk Ch= CTGG.b#:@ppp4GBb3lZkh=@TGBbkZkh4GG0b#@@GTGBbqZk@4GBb/ozZk@=@4GBbjZk=@GGGGBbwZk4GBb/3mZk<GTGBb/cZkX @X=-@/ 4GpBxbQkZkX DH=ѠG@Qs=HR]JSF@Q@<4G`Bhb/jZkhh/@ h@}"CTGG@0b# @ppp4GBbkZkh4GBb/~Zk@ C@= C@]"CtGG b#ϛ_8ѠG00rHQ=J2F00 }@4G`BhbiZkhh/0 h0}"CTGG@0b#װ@ppp4GBbkZkoh4GBb/~Zk0 C0= C0]"CtGG b#_@ Cpb#_hh= @/&""4GBbnkZkN@ C&Z"4GtGBbdkZkD0 Cpb#_hh= 0&""4GBbTkZk40 C&Z"4GtGBbJkZk*@= C 0="C0]$4G4GtGG b#K_4GGb#to_@= C0="CGGGGb#c@$G4GtGG b#3_G]]#/k3f0#~^^GG=]``hp"l`"1"Q.1,QJA1HAF`8=@H <0K=I "1TG B(b/SZk=/ G4GBb/G\ZkG1=BRANbs"CCrN"CC¦֢0Bײ"9#CBRtGPBXb6xZk/= G4GBb\ZkG1=/]tR]ݢF=h9/ "à}`"! C4GTG B(bqZk C=h_"B"C AG@BHbqsZk4G=}0`F/`h/Gݢh4GBbZZk0DG/ =hG4GtGGpb#P_ӕh= CGtGG&b#@ HHxD3=!FQs0HRPJSFQF/@`B`4JJB¦֢F8zJY7K:G8Ft @C/r@b{;fKfK@"GGPBZkB}Zk ݢ"CTtGtGG&b#t@GTGBbGxZkh C= CTGGP.b#@Ӡ/4GBbiZk0=TGBb^iZk4GG/b#V@GTGBbnZk4G`Bhb/'xZkGTGBb/xZk C= CTGGP.b#@Ӡ4GBbiZk=TGBb*iZk4GG/b#"@GTGBbnZk4G`Bhb/wZkh4GBbjZkÈU@=.@ h4G@BHb/hZkXD/p=ѠGhQs=HR]JSFhQ@4G0B8b/gZk/h Øh}"CTGG0b#@Ӡ4GBb_iZkØ4GBb/|Zkh Ch= Ch]"CtGGb#k_@ѠG80rHQ=J2F80 }4G0B8bgZk/8 Ø8}"CTGG0b#s@Ӡ4GBb+iZkpØ4GBb/g|Zk8 C8= C8]"CtGGb#7_h C@b#_Ә= h/&""4GBb iZkOh C&j"4GtGBbiZkE8 C@b#u_Ә= 8&""4GBbhZk5&J"4GBb/hZk-Øh= C 8="C80BR} srBr$4G4GtGGb#~_4GG0b#bq_h= CGtGGb#bb@$G4GtGGb#~_G]]#kwQ 0H_FSFQ/z_Ä8 J?G:G8?!U`#~^^GG`X=P]  8@"<0BR]`]K@IH"1TGBb/QZk=/ G4GBb/YZkG1=BRAN@bs"ChCrN"ChC¦֢0Bײh"9#CBRtGBbuZk/= G4GBbYZkG1=/]tR]XݢxFpp=l9/ h"p}`"! C4GTGBbfoZk@ C=pl_"B"C AGBb qZkxx4Gh=h}0`F/`l/Gݢl4GBbkXZk0DG/ =lG4GtGG0b#|_8= CGtGGp&b#O@GTGBb"vZk8 Ch= CTGG.b#ά@ppp4G`BhbgZkh=TGPBXb:gZkh4GG/b#2@GTG@BHblZk4G B(b/vZkl4GPBXbhZkX@X=.@ l4GBb/fZkXD/x@=ѠG8Qs=HR]JSF8Qw@4GBb/eZkhh/8 h8}"CTGG/b#@ppp4G`BhbogZkSh4GBb/zZk8 C8= C8]"CtGGb#{_8 Cb#_hh= 8/&""4G`BhbNgZk28 C&j"4GtG`BhbDgZk(X8= C X= 12B0]$4G4GtGGb#D}_4GGb#p_8= CGtGG`b#`@$G4GtGGb#/}_G]]#/k`#~^^GGXP=H] . .JQ JFBR08]="4=X]I@G"1TGBbOZk = G4GBb/OXZkG1=hhBRANbs"C8CrhN"C8Ch¦֢0Bhײ8"9#ChBRtGBb>tZk/= G4GBbXZkG1=/]tR]PݢBPBp4GBb/eZkGTGG("b#/U@PDV=x=x=p1 p$x}xtx"C4GTGBbmZk C=xp_"Bp"Cx AGBb/coZk/4Gp=p}0`F``p/Gp4G`BhbVZk0DG/ 4Gh=h=C`=`}0`F`p4G B(bURZkhh"!!L"C8Ch"1!NG8CQhbs0`Bht8¦"ChBRtGPBXb}Zkhh"!!L"C8Ch"1!NG8CQhbs0`Bht8¦"ChBRtGPBXbq}Zkhh"!!L "C8Ch"1!NG8CQhbs0`Bht8¦"ChBRtGPBXbO}Zkhh"!!L0"C8Ch"1!NG8CQhbs0`Bht8¦"ChBRtGPBXb-}ZkѠG00rHQ=J2F00/ bs3fJfJ8tB/`8ѠG0yJXKG00]:FKFKb[4GGBzZkPB yZk=GTGBb/sZk0 C`= CTGG-b#{@hh/h4G0B8bseZk`=TG B(bdZk`4GGp/b#ު@GTGBbFjZk4GBb/sZk HH8D=0"1TGpBxbzZk0"1TGpBxb}zZkp4G B(bofZk=pG4GtGGb#3z_r8ѠG00rHQ=J2F00r }4GBb{cZk``/0 `0}"CTGG/b#W@hhh4G0B8beZkN`4GPBXb/KxZk0 C0= C0]"CtGGb#_(0= 0= "GC ("1]R2FJFJ5@B@BR"C} srBGQ(p"C8(¦֢(p4G4GtGGb#z_4GGb#~@pG4GtGGb#z_G]]#k Ç#~^^GG=] ("",1"Q.1,QJA1HAF4x= |"8!@h=p l"D! !..!JPJ0FLX=` \"P!BXRH=P] L0hK]I@"1TGxBb/kMZk=/ G4GXB`b/UZkG1=00BRANb@s"CCr0N"CC0¦֢0B0ײ"9#C0BRtGBbqZk/= G4GXB`bUZkG1=/]tR]ݢXF\=9/ "}@`@"! C4GTGxBbRkZkL C=_"B8"C@ AGBblZk4G=}0`F/`/Gݢ4G(B0bWTZk0DG/ =G4GtGGb#x_ӳ= CGtGG&b#;@G4GtGlXCS$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1y"Bb}ZkG4GtGBb}ZkG4GtGBb}ZkG4GtGBb}ZkG4GtGBb}ZkG4GtGBb}ZkGTGXB`bqZk C= CTGG-b#@4GBbcZkb=TGBbbZk4GG8/b#@GTGBbVhZk4GBb/qZkGTGXB`b/qZk8 C= CTGG-b#V@4GBbOcZk.=TGBbbZk4GG8/b#@GTGBb"hZk4GBb/qZkGTGXB`b/wqZk8 C= CTGG-b#"@4GBbcZk=TGBbbZk4GG8/b#@GTGBbgZk4GBb/WqZkGTGXB`b/CqZk8 C= CTGG-b#@4GBbbZk=TGBbZbZk4GG8/b#R@GTGBbgZk4GBb/#qZk4GBbcZkGTGBb*vZkø@=/@ 4GBbbZkD=4GBb|Zk4GBb/|Zk4GBb/|Zk4GBb/|Zk@4GBb/|Zk84GBb/w|Zk0ѠGrtJS}JtFr]`4GBb/`Zk/ }"CTGGh/b#@4GBb[bZk:4GB b/uZk C= C]"CtGGHb#g_pѠGh0rHQ=J2Fh0) }4GBb`Zk/h h}"CTGGh/b#o@4GBb'bZk4GB b/cuZkh Ch= Ch]"CtGGHb#3_`ѠGX0rHQ=J2FX0 }4GBb_`Zk/X X}"CTGGh/b#;@4GBbaZk4GB b//uZkX CX= CX]"CtGGHb#_PѠGH0rHQ=J2FH0 }4GBb+`Zk/H H}"CTGGh/b#@4GBbaZk4GB b/tZkH CH= CH]"CtGGHb#ˑ_ӈ Cb#$_= /&""4GBbaZk}È C&z"4GtGBbaZks= C, $"1BR8bs( ݢh#C$= X]#CX}#CTGhBpbNZkX= C  H="CH]"CTGhBpbNZkH= C8 @/"1@]"C(Q8}/`8"C 0ݢ/0#C=$4G4GtGGHb#Kw_4GGb#.f_= CGGGG(b#/[@$G4GtGGHb#4w_G]]#k60#~^^GG=]p\ . .JQ JFpBdRx]="|=phpBpRhp]="l=pt"P.0,PJA0HAFp|X=` \p"!p"1H=P= L "!====K I"1TG0B8b/IZk=/ G4GBb/3RZkG1=BRANb`s"CCrN"CC¦֢0Bײ"9#CBRtG`Bhb"nZk/= G4GBbRZkG1=/]tR]ݢ8F=9/ "è}`"! C4GTG0B8bgZkl C=_"B"C AGPBXb]iZk4G=}0`F/`/Gݢ4GBbPZk0DG/ =G4GtGGb#EZkG1=/]tR]ݢFO=9/ "è} ` "! C4GTGBbZZk C=_"BP"C AG`Bhb\Zk4G=}0`F/`/Gݢ4GBbCZk0DG/ =G4GtGGb#xh_4GBb/TZkÈU@=5>@/ 4GBbRZkXD"C=1TG@BHb/wZk="C]"C}"C"CGBbeyZk4GG*b#@PPP=/! @}"CTGG@+b#/p@/4GBb'SZk@ HHP=@@0JJP4GG+b#@P@@&""4GBb/ SZkt$4G4GtGG b#i_@ C "! C0]"Cx}"CGGGb#/_T=44GBb/BZk`44GBb/XZkpxX="CTGG0b#ą_0h=`0@ h=0 Bh=h}`tB`4GTGBb/aZkX C= n%$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1 "CTGGpb#_p=p]}"C4GBbTZkpX=!&H&H" 0@0F@0@p}44GBb/`Zkx4GGb#a_$G4GtGG b#h_G]]#/k@#~^^GGXP=H]H `x<"0.P.0JRPJ2FxD08 4"1=X]K@I"1TGBb/g{Zk=/ G4GBb/CZkG1=ppBRANb<s"CCrpN"CCp¦֢0Bpײ"9#CpBRtGBb_Zk/= G4GBbCZkG1=/]tR]PݢxFOpp=9/ h"p}P`P"! C4GTGBbNYZkH C=p_"B"C AGBbZZkxx4Gh=h}0`F/`/Gݢ4GBbSBZk0DG/ =G4GtGGb#f_4G B(b/RZkP@P=>@/ 4GBb!QZkPDÈh"C`=1TGpBxb/3vZkh="C]"Cx}"Cp"CGBbwZk4GG@)b#:@@@@=/$ }tBTGGp*b#/Ȗ@Ә/4GBbQZkv HH@=@0JJ@4GG@*b#/@0 C0= CB&"GGb#s_00" D0rHQ!J2F0 D/R @BQ@0bs"C0"CP"CGGG`b#/s_4GTGBb/_Zk0 Ch= CTGG(b#2@ppp4GBb+QZk"h=4TGPBXbPZkh4GG@*b#@4GTGBbUZk44GBb/g_Zk4p"1TG`BhbTZkG]]#k0 H?F2F0?p#~p^x^GGPH=@]HP08p"4P"1=P]I@Gp"1TGBbyZk = G4GBb/;BZkG1=BRAN b\s"C0CrN"C0C¦֢0Bײ0"9#CBRtG`Bhb*^Zk/= G4GBb BZkG1=/]tR]HݢF``=9/ X"`}`"! C4GTG`BhbWZk h C=`_"B"CP AGBbeYZkhh4GX=X}0`F/`/Gݢ4GpBxb@Zk0DG/ =G4GtGG@b#De_ӠGTG B(b^Zk  CX= CTGG (b#2@```4GBb+PZkX=TGBbOZkX4GG)b#@GTGBbTZk4G B(b/g^Zk4GBb=QZkGTG0B8bncZk_H@H==@ 4GBb]OZkHDO8=ѠG0Qs=HR]JSF0QN@4GBb;NZkXX/0 X0}"CTGG)b#@```4GBbOZk+X4G B(b/ cZk0 C0= C0]"CtGGb#_$4G4GtGGb#e_0= C"C4tGG0b#d_$G4GtGGb#e_Gp]x]#/kÀ#~`^h^pGG@8=0]@]]=/I G "1TGBbxZk = G4GBb/@ZkG1=BRANb|s"CCrN"CC¦֢0Bײ"9#CBRtGBb\Zk/= G4GBb@ZkG1=/]tR]8ݢFOPP=9/ H"P}p`p"! C4GTGBbjVZk C=P_"B"C AGBb XZkXX74GH=H}0`F/`/Gݢ4G B(boZk0DG/ =G4GtGGb#c_4G@BHb/PZk8@8=>@/ 4G0B8b=NZk8]_D@G`]h]p#/k`#~^^GGp`GѠGXQs=HR]JSFXQ#@GZ Dv HUJF4G["FQsHRPJSFQ/@ \xT"..JVJFx\08"4pt=x=x]R!@xPbP C4GTGBbUZk Cp=x_"B"C AGBbqWZk]HGTGBb\Zk Cx= CTGG'b#/[@Ӏ/4GBbSNZk=x=HTGPBXbMZkx4GG@)b#@HGTGBb&SZkH4GBb/\Zk@4G4GtG0B8b_hZk`u= "CTGGb#/h_ XD_=<4GBbhZkP@4GBb hZkHD4GBbhZk@@/D8=ѠG0u=JTJF0kݢH4GBbQLZkxx0x0}"CTGGp)b#.@Ӏ,x4GBb)aZk0 C0= C0]"CtGGPb#}_0&""4GBbMZk0= CX"C4tGGb#/9b_ӗ4G`=4G`=G À4GBbMZkH= 4GX"]h?"GHb#9_X P=/ h?"GtGGb#_4GG]]#/kÎ#GG>^"4G]2 /TG=G #kP#~H ^P ^X ~` h p ޴x  > ^ ~ G#G G] G"1=@ B R"2.2,2JA2H!F=@ "! =@ xhTG`=XvHXGX= H`QH DX=TGXJ`qHFX\B$R",.HPJD",1HP=@"L8=v H8=G8J`QHF8TG8=!H`qH D8=<"018(=0@ ,"}FE`G0"1TG B(bvZk /`GG4GBb/c~ZkGaXX"1!N(BR"CCQXbsaN"CCX0BX¦"CGXBRtGPBXbSZZk/`GG4GBb/3~ZkGat$=}  PJ öUXAXAFuXA/* \A( YA& @XA`XA =4GBbLZkXE x@E/ @E "GXF/@F`Faݢ 4GBb}fZkG "! FQs0HRPJSFQF @`B `4GBbJZk G` "& "CGTGG0&b#/@((/(4G@BHb[LZk G4G`Bhb/_Zk  C "! C BR"CtGGb#d|_  C4GG`b#_ G` "! &""4G@BHb/4LZk &J"4G@BHb/,LZk 8F/F xFؙFY d.dJ G@J/@Ģ F8zJY7K:G8F @C @d;fKfK bkkC/`  " D0tHQ!J4F0 D/u ׀Bt bs3fJfJD ¦GB`ZkhBm_ZkÊ"/K/i GI bk Du`IVJFD` נB/^ "C "1"C BR"CGGpBxb]Zk F`F/F F F  XF@8FB`.JD GJ1 " GzkK[yKkGz G; ``A: ` HH "!@/  " FrtJSqJtFr F/- `׀B, ¦֢6JJD GGB`ZkhB/_ZkAÈ/K! G`I$aE G6FXF؛FؗFF~XFo Fm@F`xF@8F`FK=9 G=4GpBxb{Zk0D G` =!0! 4GG8+b#@ø4GG+b#/@}(k/`G=(4GpBxb{Zk0D }k0k `FDBFD}(4GBbk]Zkz DF=(4G@BHb/\Zkl xF/=`F;F9 8F5ؘF3 ؚF1@xF/`FFĢV  GY{JZXK[GYG @`C `bk!C  C "! Cd".J `G`J".J/ GJGpBxb\Zk4G}k`G=4GpBxbC{Zk0D(d&`$T!#H 4G(]4GBbIZk} GTGBb{Zk G=4G@BHb/zZk @((4GG,b#g@}(k`G=(4GpBxb{Zk0D/$!D$(4GPBXb^Zk\%3k! DF$ J dbFd.J/ GJF/G04G./G]4GpBxbzZk0DG/ } 4GBb%OZk/4GG+b#@ӧ}(k`G=(4GpBxbzZk0D/oI$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1a"%$"D$(4GBb]Zk\%#k! DF$v J daFd.JGJGÊ"/K/GJ(1BG BZ b `G a[K@HD `G @/ "C "1"C BR"CGGpBxb[ZkÈ,HGHD/GGÈD.DJ/G J/ GÊ".JGJ(1BG  GY{JZXK[GYG/@`C`"! C bk!C  CGGpBxb[Zk}È,HGHD GrÈD.DJ/G J/ GgÊ".J/GJFGZÊ#8/8KGK5C $,$H/}G H/ GG0JJxF3 B@F3uHQ2J5F3@Fk נBjĢ6JJ B/  " GkJXK G G/]`A\` b{;fKfKD GGBc^ZkhB/\Zk4G(  ¦"CTtGtGGb#@((=0 D P0"F0$4G4GtGGb#K__ d+fIfI x`E/` 4G 44  ]"C GtGGb#/n_ G G }@GGtGGb#q@_ G/ bk!CG0%G4GGGb#/6_ G 8D`G4GTGGb#._/G4GGb#_$G4GtGGb#__Pb D <D/f " FrtJSqJtFr F/`׀B "¦"C"CC C&;"GGb#/ij_XbXL("T! CC "CX"1!NC1"CTGGp$b#@ G/`G4G@BHbHZkX0@X""C XBRtGPBXb`Zk GX 1@((CpA aMB4G`Bhb[Zk 0`A(`Ah"! J`"xBbx%`¦֢ѠG8zJY=K:G8l `b{;fKfK`C}ѠG0r}IQ=J2F0^ }3fJfJ`TGBW]ZkhB/[Zk"C"C`#Cx"9#C&"GGb#i_ӰbkDq`IPJFD7 B6 BR"Cbs"CtGtGGb#_`bk!C CGtGG0b#8<_Ӹbk 8`E` Cp@x"! Cp=9"1B@Fu2JTJF@F/ נB ¦"C"C#C&"GGb#i_8}+fIfI `8 C"! CTGBbM_Zk8}!C8 Cp"! Cbs"CGBb6[Zkbk+fIfI:`" D0rHQ!J2F0 D @B/@bs"C"C"C&"GGb#/Mi_8}+fIfI `8 C"! CTGBb_Zk8}!C8 Cp"! Cbs"CGBbZZkbk/9`" D0rHQ!J2F0 D/ @B@bs"C"C"C&"GGb#i_8}+fIfI `8 C"! CTGBb^Zk8}!C8 Cp"! Cbs"CGBbZZkbk ` C= C&ˑ"tGGb#h_h/ = C"C&ӑ"tGGb#h_ð" D0rHQ!J2F0 D/O @BN@bs"C"C"CTG޶"C޶"&Ñ"GG4GGb#h_ӘXX"!!L(\"CCX"1!N]"CCQXbs0`BXt ¦"CXBRtGPBXbiTZk}7`A`8 HH8= C8="CpBR"Cbs"CGBb/;ZZk8}+fIfI `8 C"! CTGBb5^Zk8}!C8 Cp"! Cbs"CGBbZZkbkDq`IPJFD B BR"Cbs"C`"C&"GGb#@ GTGXB`b@Zk 4GBb/JZk0 C4GBbyZk4GBb|ZkGTGBb/OZkGH]P]X`#k,_Ò Q 0H_FSFQ_8 J?G:G8?:0 H?F2F0>?#~^^GG=]4G=4G=(BR".,J@HF("1px=="t=((BR`h]="d=("P.0,PJA0HAF(0=8@ 4H"!==/I =G "1TGxBb>dZk = G4GXB`b/lZkG1=BRANbs"CCrN"CC¦֢0Bײ"9#CBRtGBbHZk/= G4GXB`bnlZkG1=/]tR]ݢ ֢A ((=9 (]ZZ @(}4GGb#/_.ø=89D 4G}rF/.`ݢ֢$"BZ#C4GTG(B0b BZk C=_"B"C AGBb/CZk/4G=}0`F`Gݢ4GBbkZk0DG =G4GtGGb#O_ HHxD/3=!xFQs0HRPJSFQF/@`B`4JJxBx¦֢xF8zJY7K:G8F @C/@xb{;fKfK@x"GGB`OZkBMZk ݢx"CTtGtGG(b#p@=X4GtGBbnTZk=\4GtGBbfTZk=h4GtGBb^TZk=d4GtGBbVTZk=t4GtGBbNTZk=l4GtGBbFTZk`GTGXB`b[HZkx C= CTGG b#@4GBbyZkR=`TGBbryZk4GGX"b#j@`GTGBb~Zk`4G8B@b/;HZkpGTGXB`b/'HZk C= CTGG b#~@4GBbyZk=pTGBb>yZk4GGX"b#6@pGTGBb~Zkp4G8B@b/HZk4GBbzZk`GTG(B0bMZkø@=2@ 4GBbxZkDø=2D=X4GBb/SZk\4GBb/wSZkh4GBb/oSZkd4GBb/gSZkt4GBb/_SZkl4GBb/WSZk/ "s BR b`FvSJUJF`FB`4GBbwZkq/`$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1"G "% bs"CTGG"b#x~@/4GBb/yZk4GBb/kLZk  C "! C BR"CtGGhb#8i_ 2"! FQs0HRPJSFQF/~@`B}`4JJ B ¦֢ F8zJY7K:G8Fq @C/o@ b{;fKfK@ "GGBMZkBeLZkݢAhѠG`aJ@HD`^p4GBb-wZk``}"CTGG"b# ~@4GBbxZk4GBbKZk` C`= C`]"CtGGhb#h_`C/J`="C`]"CTGBbfZkA`?9D x@GTG@BHbwZk4GBb/AZkGTGBb/@Zk` CX= CTGGP b#w@```4G B(brZkFX=TGBbrZkX4GG!b# x@GTG@BHbrwZk4GBb/@ZkGTGBb/@Zk` CX= CTGGP b#rw@```4G B(bkrZkX=TGBbqZkX4GG!b#w@GTG@BHb>wZk4GBb/@Zk4GpBxb}sZkGTGBbEZkH@H=3@ 4GBbqZkHD=4G`Bhb#LZk(4G`Bhb/LZk 4G`Bhb/LZk4G`Bhb/ LZk4G`Bhb/LZk4G`Bhb/KZk4G`Bhb/KZk4G`Bhb/KZk4G`Bhb/KZk4G`Bhb/KZkѠGrtJS}JtFr`4GpBxb/+pZkXX/ X}"CTGG"b#w@```4G B(bqZkfX4G@BHb/DZk C= C]"CtGGb#a_ӨѠG0rHQ=J2F0h }4GpBxboZkXX/ X}"CTGG"b#v@```4G B(bqZk2X4G@BHb/DZk C= C]"CtGGb#a_ӘѠG0rHQ=J2F05 }4GpBxboZkXX/ X}"CTGG"b#v@```4G B(bWqZkX4G@BHb/DZk C= C]"CtGGb#ca_ӈѠG0rHQ=J2F0 }4GpBxboZkXX/ X}"CTGG"b#kv@```4G B(b#qZkX4G@BHb/_DZk C= C]"CtGGb#/a_xѠGp0rHQ=J2Fp0 }4GpBxb[oZkXX/p Xp}"CTGG"b#7v@```4G B(bpZkX4G@BHb/+DZkp Cp= Cp]"CtGGb#`_hѠG`0rHQ=J2F`0 }4GpBxb'oZkXX/` X`}"CTGGr>x$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;19"X"b#v@```4G B(bpZkbX4G@BHb/CZk` C`= C`]"CtGGb#`_XѠGP0rHQ=J2FP0i }4GpBxbnZkXX/P XP}"CTGG"b#u@```4G B(bpZk.X4G@BHb/CZkP CP= CP]"CtGGb#`_0(= /4G0=( 4G0"C#CTGpBxb]Zk CH= CTGG0-b#"@XX/=/ 4G0]p"Cp"CTGpBxb]Zkp C@= CTGG0-b#@XX= `]@4G0}ݢHPE4G0BZb`G p[KA;H0D `G/ B"1"CBR"Cbs"CP"CGPBXbAZkѠGP0rHQ=J2FP0 bs3fJfJXtB`XѠGPyJXKGPP]:FKFKb[TGGB/DZkHBiCZkݢ4G0=/ 0&""4G B(boZkѠG0rHQ=J2F0 bs3fJfJtB/`ѠGyJXKG]:FKFKb[GGBDZkHB3CZk=/ "C`"CX#CtGGpb#?m_X "! C="C]"C`}GPBXbAZkp CXX=pv`Jq JqFpXGJuSJFX=8X]X}aCX}X=GAv@JpJPFAX}TGӢJtSJFӲX#CX=X]ACX]X}G;v Ja H!F;X]}/`4G&"GJtSJFX"9#C8XX]ACX]XGpv`Jq JqFpX]@G&"GKtSJGX= CX=X]ACX]X=GQv@Js`JSFQXݢG&"GHuSJDX="! C9XX]ACX]X]GvJs`JFX 4G&"G7!HuSJ5D7X=H"CX=X]ACX]X}GvHtJDXݢ=/ G&"GJuSJFX=@="C9X]X]ACX]X}3v HtJ4D3X(G&"G7!JuSJ5F7X=]YXX]ACX]X}`vJtJFXݢ= tG&"GVAJuSJUFVX=dX=X]ACX]X}P3v JtJ4F3X]@G&"GHuSJDX=T=9XX]ACX]X}XBX(]$4G4GtGGb#D_(= C]}p"CGGb#/t<_GGb#J_($G4GtGGb#lD_cG]]#/k Q 0H_FSFQ/_8 J?G:G8?]Ñ*]Ð [K?D0D /?"0Ve #~^^G#G=]}0"0.P.0JRPJ2F0bs`h}]"d]0"10bsP=X}]"T]0"1"q.,qJ@H`F0@H"D0 0B(R08]"4]tR]}`` C=TG@BHbZEZk/"=B2bs"C4GTG0B8b/uZk C=_"B "C AGBbvZkè}"Cx"CtGGb#/Mk_P CP= CP]"C}xGBbZkGTG`Bhb{ZkP C= CTGGb#r@/4GBbmZk==TGBbmZk4GG`!b#r@GTGBbbrZk4G@BHb/{Zk0 C0= C}x&"GG8b# O_GTG`Bhb/{Zk0 C= CTGGb#Wr@/4GBbOmZk==TGBblZk4GG`!b#r@GTGBb"rZk4G@BHb/{Zk "! CTGG0b#G_ XDGZh=ѠG`Qs=HR]JSF`Q/X@4GBbmkZk`ø`}"CTGG!b#Jr@4GBbmZk6ø4GBb?@Zk` C`= C`]"CtGGpb#]_` C"! C@]"Cp}"C"GGGGb#/__Ӹ/ð}=p]8tGG b#:_Ӑp4GG0b#a_ӐG]]#/k#GG>^D4G]2DTG]2 XD4G]2DTG=G #k#~^^cGGXP=H]cP"1"=c80( 4G]",1",1,HA1HD4= =8B@R]= =D .@.JR@JF"L!== =P"X1== =\ . .JQ JF"d!== =hBpRx]= |=t .@.JR@JF"|!hp== l=(X K =I  "1TGBb/+UZk =/ G 4GBb/]ZkG1 =HHBRANbs"CpCrHN"CpCH¦֢0BHײ p"9#CHBRtG@BHbzyZk/ = G 4GBbZ]ZkG1 =/(]tR](PݢFhh=9/ `"h}```"! C4GTGBbsZk C(=h_"B"C AGPBXbtZkpp4G`=`}0`F/`/Gݢ4G`Bhb\Zk0DG/ =G4GtGGb#@_Ӂ( HHxD/3(=!FQs0HRPJSFQF/u@`Bt`(4JJB¦֢F8zJY7K:G8Fh @C/f@b{;fKfK(@"GGBh@ZkXB~Zk ݢ"CTtGtGGb#a@8G4GtGpBxbvEZk@G4GtGpBxbnEZkHG4GtGpBxbfEZkPG4GtGpBxb^EZkXG4GtGpBxbVEZk`G4GtGpBxbNEZkdG4GtGpBxbFEZkhG4GtGpBxb>EZkl4G4GtGpBxb6EZk4GTGBbKyZk C`= CTGG`b#o@hhh4G0B8bjZk`=4TG B(bbjZk`4GG b#Zp@4GTGPBXboZk44GBb/+yZk<GTGBb/yZkp C`= CTGG`b#o@hhh4G0B8bjZk`=<TG B(b.jZk`4GG b#&p@<GTGPBXboZk<4GBb/xZkDGTGBb/xZkp C`= CTGG`b#o@hhh4G0B8bjZkt`=DTG B(biZk`4GG b#o@DGTGPBXbZoZkD4GBb/xZkLGTGBb/xZkp C`= CTGG`b#Zo@hhh4G0B8bSjZk@`=LTG B(biZk`4GG b#o@LGTGPBXb&oZkL4GBb/xZkTGTGBb/{xZkp C`= CTGG`b#&o@hhh4G0B8bjZk `=TTG B(biZk`4GG b#o@TGTGPBXbnZkT4GBb/[xZk\GTGBb/GxZkp C`= CTGG`b#n@hhh4G0B8biZk`=\TG B(b^iZk`4GG b#Vo@\GTGPBXbnZk\4GBb/'xZk4GBbjZk4GTGBb.}Zk0 0"! 4GBbiZkP5@P=4@/ 4GBbiZkP8DP=4D=84GpBxb/CZk8@4GpBxb/CZk0H4GpBxb/CZk(P4GpBxb/{CZk X4GpBxb/sCZk`4GpBxb/kCZkd4GpBxb/cCZkh4GpBxb/[CZkl4GpBxb/SCZkѠGrtJS}JtFrX`44GBb/gZk``/ `}"CTGG !b#n@hhh4G0B8b7iZk$`4GPBXb/s|Zk C= C]"CtGGb#CY_ӰѠG0rHQ=J2F0$ }<4GBbogZk``/ `}"CTGG !b#Kn@hhh4G0B8biZk`4GPBXb/?|Zk C= C]"CtGGb#Y_ӠѠG0rHQ=J2F0 }D4GBb;gZk``/ `}"CTGG !b#n@hhh4G0B8bhZk`4GPBXb/ |Zk C= C]"CtGGb#X_ӐѠG0rHQ=J2F0 }L4GBbgZk``/ `}"CTGG !b#m@hhh4G0B8bhZk`4GPBXb/{Zk C= C]"CtGGb#X_ӀѠGx0rHQ=J2Fx0 }T4GBbfZk``/x `x}"CTGG !b#m@hhh4G0B8bghZkT`4GPBXb/{Zkx Cx= Cx]"CtGGb#sX_pѠGh0rHQ=J2Fh0X }\4GBbfZk``/s$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;19"ih `h}"CTGG !b#{m@hhh4G0B8b3hZk `4GPBXb/o{Zkh Ch= Ch]"CtGGb#?X_@8= /4G@=804G@"C#CTGBbUZk C`= CTGG@,b#~@``/(=/ 4G@]"C"CTGBbeUZk CX= CTGG@,b#~@`` = x]@4G@} ݢHhE4G@BZb`G p[KA;H0D `G/ B"1"CBR"Cbs"Ch"CG`BhbyZkѠGh0rHQ=J2Fh0 bs3fJfJptB`pѠGhyJXKGhh]:FKFKb[lGGB/|ZkXB{Zkݢ4G@=/ @&""4G0B8bgZksѠG0rHQ=J2F0 bs3fJfJtB/`ѠGyJXKG]:FKFKb[GGBn|ZkXBzZk=/ "Ch"C`#CtGGb#d_` "! C="C]"Ch}G`Bhb+yZk C``=pv`Jq JqFp`GJuSJF`=8`]`}aC`}`=GAv@JpJPFA`}TGӢJtSJFӲ`#C`=`]AC`]`}G;v Ja H!F;`]}/`4G&"GJtSJF`"9#C8``]AC`]`Gpv`Jq JqFp`]@G&"GKtSJG`= C`=`]AC`]`=GQv@Js`JSFQ`ݢG&"GHuSJD`="! C9``]AC`]`]GvJs`JF`04G&"G7!HuSJ5D7`=`"C`=`]AC`]`}GvHtJD`ݢ(=/ G&"GJuSJF`=X="C9`]`]AC`]`}3v HtJ4D3`8G&"G7!JuSJ5F7`=]Y``]AC`]`}xvJtJF`ݢ = tG&"GVAJuSJUFV`=|`=`]AC`]`}h3v JtJ4F3`]@G&"GHuSJD`=l=9``]AC`]`}`B`|x2D/@X9D=Du ( HHxD)(ѠG8pJY=K0G8/# (=11&J&J]:B/ }ѠG[v}JR]JVF[@=!&H&H(@GGBzZkXBoyZk4G` =#CTtGtGGb#U\@``0F4G=}"C`}`ݢvKvJG`=GHzS@KD`=`=`]AB`]`GvJuJF`TGXAK`SH@GX`}"! C;``=!B`=`}`B`(ݢ$4G4GtGGb#;_(=]"CP}"CH"C@"CGGb#/5_@HnP=d " FrtJSqJtFr F`׀B/"C¦"C"Cbs8G`BhbRwZkXP"! CGtGpb|@ C```=4GBboZk Ch= CTGG`b#/Kj@pp/p4G0B8bCeZk0`xh"1"CTGBbHZkx=h4GG b#/j@`0"!C 4GtG`Bhb)RZkHXH=@]tGXb?@GGb#A_($G4GtGGb#&;_cG]] #kQ 0H_FSFQ_Ð8 J?G:G8?á;ná [K?D0D $?4Bhw`r JFtFrdP#~^^~GGPH=@]0h"1=P]L@/I"1TGBb/MZk=/ G4GxBb/#VZkG1=BRANb4s"CCrN"CC¦֢0Bײ"9#CBRtGBbrZk/= G4GxBbUZkG1=/]tR]ݢXݲX"X=B:b{#C4GTGHBPb/kZk@ C=X_"B8"C AGBbRmZk```OpBRpb`FvSJUJF`FKB/Ip"Cp#CH}&"GGPb#E_"!!LX"CC"1"BRAN2Bh=h}s""CXXݢ֢X4GxBbmnZkp C`= CTGGb#/i@pp/p4GBbcZkX=x=`"d1"CTGBbGZkx=`4GGx b#/di@Xh=0B"]bs"C|BRtGBbS{Zk"! CTGGHb#[>_Ӹ$"!$4G(B0b+cZk`H=!1 @X=X=C`]QB pbspFծwtJVJFվFBh#Cp"9#CpBZ#C@hbsGBbuZkXDp"! C4GhBpb{Zk>0H= L0=0="C8]"CTGG8+b#/@=11%J'J>GGGG4GGBbkZk@@0"!>GG4GbsGGG`b#L@@ HH0@J`SHFG4G B(b!EZk@ @ SXF @}"CGGGGG b#/8@D@= '@= ?F+@d3fJfJ8`F`(h"C( C@]#CGGGGG b#H3@ @= ''1$J&J0 BgaJqS JqFg@ F@"CGGGGG@b#8>@@] G@ Gh]p]x}ݤ#k0#~X^`^h~px޴>^~G#G GG4GPGFE`G"1TG@BHb>Zk /`GG4GBb/GZkGa"1!NXBHR"C`CQbsaN"C`C0B¦`"CGBRtGBbcZk/`GG4GBb/oGZkGat$=},kĢFIJG4G@BHb.DZk HH8D/Y 0JJ(1$J&J@AGGtGGb#1 _ G/H` "CAv@JAGJsS`JF!@$Av@KxKXGAGJ{S`KF((!!@ @A "Ch¦"CtGBbrJZk G@= CGGGGGb#@Ӆ@= ((1$J&J0 BhaJqS JqFh@ 0@vxD/wѠGPxKWJFP/ GR=# GzaJ[yKaGz`TGS"FQs0HRPJSFQ@T HH/GGGpb#_AGGtGGb# _ G/Ap"! CTGBb|ZkH(L0B "P}"CH"C0¦"CH"CCGBb/hZk8P= C8 @"CGTGGhGGb#/@ GP= C4GPBXb/uRZk @ 0JJ0BHAJpSJPFH@} 0@G0@&G4G0B8bgCZk%1@g+fIgI 8`E/0 @ CG4GGGG`b#/R@ G G x`E `@!CG4GG0dGGb#@ G-II5A0d`,II=A$V H $ F$G4G0B8b+CZkG4GBb^mZkBG &1@GGTG B(bKDZk4JJ-ץIIGGGG4GGBbiZk x E/ `@!CG4GG0dGGb#o@ G VI E @='@=G4G0B8bBZkG4GBb/mZkGX]`]h}pxݤ=]}#k#~^^G#G=]4G@@"1hp= l==L]/I@0"1TGBb/O}Zk=/ G4G B(b/EZkG1=BRANb\s"CCrN"CC¦֢0Bײ"9#CBRtG`BhbaZk/= G4G B(b~EZkG1=/]tR]ݢݲ=TGBb/lZk/G4GBb//BZkD/. 0JJ8F ]]H=ݢBGtGGPb#4 _4GBb)BZk@ CPv@JP}4GӢJtSJFӲ=!C=};v H;GpaJqS JqFpݢBݲ=$9vHy KD=G!!J{S`K;F!]}(srB@=)C@]#C"! CtGBbKHZk=)BBR"Cbs"CtGBb@ZkH4GBb/AZkK0= C==h]vJr@JFGKvSJG=l]Y}h C=!@==]@B]B`"C0"CtGBbJZk5h= C"1"CGtGGb#,^=,!==?] Rx]x/x¦֢Fx=TG0B8bSkZk/=TGb@xx=!x=À=1=}iB"C"CtGBb/,@ZkH8XF6=$@"1"CGtGGb#/^*=,!==% ] Rx]x/x¦֢Fx=TG0B8b kZk/=TGb@xx=!x=À=1=4G}D8 DD7JJxFH"9> =TGBb//BZk=]4JJ}~ݢ֢6JJ޶GG4GG0B8bgZk  v H 4G 0!J`qH F0G Br`J`QH`Fr= ¦"CtGbsGGG b#;@y=]tGb@rFp =TG0B8bjZk4GBb@ZkG6=]tGb@=TGBb/AZk=]4JJ}~ݢ֢6JJ޶GG4GG0B8b;gZk  "vJ`HF4G "QAJ`qH@FQG bJ`QHF"C ¦"C "CbsGpBxbcZk"!L= bs"CGhbsGGG b#/l;@4GÈ0JJ8F =]b#_=]tGb+@ӼXF/ =TG0B8bjZk4GBb&@ZkG=H=]IBGtGGPb# _4GBb@Zk@ CPv@JP}4GӢJtSJFӲ=!C=}$vJ`HF=GJrS@JFݢ(֢ղC]@ B@}#CBR"CtGBbFFZk B"1"CBR"CtGBb/~ZkH೰= ?&1"F4GBbZkA=]b#_=]tGb@-È/#=!/ =]}"CGGb#@==]Q} ݢ֢6JJ0BKvSJG=]tGbn@4G4GBbwZkG]]#/k#~X^`^hG#GPH=@"8X= <=P=/I GX"1TGBbyZk = G4GHBPb/WBZkG1=((BRANbhs"CCr(N"CC(¦֢0B(ײ"9#C(BRtGBbF^Zk/= G4GHBPb&BZkG1=/]tR]PH=TGBbhZk00PH=TGBb/#@ZkPH=0]4JJ0}~0ݢ֢6JJ޶GG4GGXB`beZkHH"vJ`HF4GH"QAJ`qH@FQGHbJ`QHF"CH¦"CH"C8bsGBbFbZk "!L@PH=Hbs"CTG0bsGGG b#/9@HH"vJ`HF4GH"QAJ`qH@FQGHbJ`QHFH"C(¦"CtGtGGb#K_ "!L@PH=Hbs"CtGbsGGG b#/9@HH"vJ`HF4GH"QAJ`qH@FQGHbJ`QHF"CH¦"CH"CPbsGBbaZk "!L@PH=Hbs"CG@bsGGG b#/L9@/8vJ84G8]AJaq HAF8]G8JaQ HF88"C8"C4GGGBbgbZk4G8J`qHF8G8]@J`QH@F8]PH=8"C¦֢޶GHbsGGG b#/9@GX]`]hp#k#?G~P^X^`GG=80=(] }4G=" 1"Q.q.QJSqJSF=P"bs }P"$"4.t.4JStJ3F",9==P]"]08P"Pbs }8]K@=I "1TG@BHb/CxZk=/ G4GBb/@ZkG1=BRANXbts"C`CrN"C`C¦֢0Bײ`"9#CBRtGBb\Zk/= G4GBbr@ZkG1=/ ]tR] 84G@BHb3}Zk0D/ 8 D+ B(=]"CtGPb@=/ ]R/ @ }hs/`84G0B8b*}ZkG= 8=TGBb/v$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1"fZk C0]GF` 8=]pb#n_8=]b#Z_wGH"CH"TGG$b#\d@@@/ @]&:"GtGPBXbNZk=!?F!]4GVJs1`JFݢGTG=y$`Gy==]$vJ$TG$ТJaq HF$вG$KaQ HG$(=]},vJ,TG,J`qHF,G,: H`QH D,:0=C(=TG@BHbeZk @=]tGb@=0JJ0@=8=]4G4GGG(b# @4Gw8IF/= 84G0B8b/|ZkGp=! 08]}"C4GGG`b#q @==]Q }F ݢHh"C@@=yv`Ky@4G !JaS H!F @]@}@B@@ݢ$6v KwJ7G6@]G:!H{S`K;D:@=(10@]@}aB@}@@ݢB@ݲ = =)CGtGGb#-_  @h= ChBR"CtGBbBZk  B"1"ChBR"CtG B(bzZk H= /.8=]pb#f_8=]b#R_#?$! D 84G0B8b{Zk4GPBXbMZk8=11 B]R2DJFJ0@BtGBb/_|Zk @=TGb;@4GHF/ =H = BGtGGb#_@@84G0B8b{Zkh C@@Pv@JP@}4GӢJtSJFӲ@@@=!C@=@};v H;@GpaJqS JqFp@@@ݢB@ݲ@x"9vHy KD@=G!!J{S`K;F!@]xbsr@@B@@@@@H=#C@=@=av`KpJpGa@]GJsS`JF@ݢ@#C@=!C@=@=@B@8}#C@}@}ӢvJtJFӲ@G7!K`SH G7@]=:@="C0@]AB@]@}@B@ ݢBh CH"CtGBbAZk/ =)BBR"Chbs"CtG B(bzZk H84G0B8b/{Zk (=!ѠGQs=HR]JSFQ/@(4JJB/ݢѠG8zJY=K:G8 };fKfK(@GG0BaZkB`Zk"C"CTG B(bzZk ѠG0rHQ=J2F0 }s3fJfJtB`ѠGyJXKG]:FKFK }[GG0B~aZkB_Zk= C"CTG B(byZkp= C="CTG B(byZk C= CTGBbmZk8"1"CFL ]IBbs"C8"CtG`BhbCZk@= C="CTG B(byZk C= CTGBbmZk8"1"CF]"Cxbs"CGtGGb#^/ =,!=="C]"Cx"1tGb@8=TGBb/GdZk/8=hb#_  @"! CH]"CtGBb@Zk  B"1"ChBR"CtG B(byZk H4G=)8JF'@= B 84G0B8b6zZkG# =,!=="C=}"CtGb@/8=TGBbdZk8=hb#_4G84G0B8bzZkGP]X]`p#k*0#~^^G#G=]4Gxh4G`]ѠGP0`KQ=J FP0 GR]"@FuHTJFTGS=  D0vHQ!J6F0 Tbs}/I=G P"1TGBbrtZk = G4G@BHb/|ZkG1=  BRANbs"CCr N"CC ¦֢0B ײ"9#C BRtGBbXZk/= G4G@BHb|ZkG1=/]tR]ݢ,֢pݲ4GBb/_yZkXD/ xDFbs"CTG@BHbcrZk/4G`=P}"C="CtGBbg^ZkP CX(È"1"CTG@BHbGrZk/`]21@B]P"C="CtG0B8bvkZkP C"! CTG B(bOZkP CXÈX]x]F/`4GXSF@`@`BZ]pp=!0D p=h=ph=TGPBXb/bZkxx/p=1p=Ø4GBbxZkGx= 4GBb/xZk4G"! `/P]"CGGGGGxb#6^Ө4GBbxZk`=H >x=TGBb/yZkx=h]4JJh}~hݢ֢6JJ޶GG4GGPBXbc_Zk@ v H 4G@0!J`qH F0G@Br`J`QH`Frx=@¦"CtGbsGGG b#3@mØh=x]tGbz@fh HH/ h=x]b#_Әh=x]b#_Әx=TGBbyZkx=h]4JJh}~hݢ֢6JJ޶GG4GGPBXb_Zk@@"vJ`HF4G@"QAJ`qH@FQG@bJ`QHF"C@¦"C@"CbsGBb[Zk"!Lx=@bs"CGbsGGG b#/@3@4G4GBb/xZkG]]#/k%-À#~`^h^pGGXP=H]xX]]=L /I"1TGhBpb/rZk=/ G4GBb/zZkG1=BRANbs"CCrN"CC¦֢0Bײ"9#CBRtGB bVZk/= G4GBbzZkG1=/]tR]ݢBP=TGb@H 1@HXH=4GtGBb/xZkG`]h]p#k#~0^8^@GG( =](]/@ =$B4G4GGGb#9_8F=]Q}s}Gݢ4GG0]8]@P#k#GG( >^(> G>^R2GJGJ@ ( ^ @ >F/ >1>^ R^>/(^(>12/(>1 4G(^GG0#k#GG0(> ^ /(>11'J'J GW ^R2GJGJ@(0JJGK > 0^R^0(> !(0JJ ^^ >1>  HH ^^> 1>(^ P    (^P(> (^ >0JJ0BQAJpSJPFQ> (> ^(>24GG@#k#~H^P^XGG0(=( HH/ (  @4GBb{EZk@4GBbuEZkG8"C8"TGG#b#^@ ((]R ](  ݢ/ = ] }z ( HH0= = ] Q(}s3gJgJ `5JJ51BJuSJF(C4GBb/1EZk(@4GBb+EZkG@("C@"TGG#b#/]@4GGH]P]X`#/k#~(^0^8GG = =$@4GBbEZk@4GBbDZkG "C "TGG#b#]@PAJP} 4GG(]0]8@#kP#~^^GGx=p]h}`@8t=|1X=X4GBbuZk @p=P]"CHb#;_00P= P]R/ @}hs/`X4GBbuZkP XP=TGBb_Zk@P 4G8=x}kF/0 8ݢXP=@]b#_XP=@]`b#_GH"C"TGG@#b#\@ӈ/ ]&:"GtGBb(GZkHFH=GVJr1@JFHFTFHX'[GXHH=HH=$`v`J$`TG$J`qHF$G$J`QHF$(HH=H]H},xv`J,xTG,Jrq@JF,G,HaQ HD,0HBp=TGBbV^Zk @H=P]b#)_P@Pݢ֢6JJB@X@=H]4G4GGGXb#@_lF#0=[ `X@]11@BP4JJ0BtGBbuZk @P=b#l_G8EXP=@]b#f_XP=@]`b#R_:mF8`0/5h=!/" p]GG4GG b_Ӏh]GGGG b_8=,@h=P]"CHb#M_XP=TGBb^Zk@8XP=@]b#._8/XP=@]`b#_X4GBbtZkG]]#kP#~^^GGxp=h]Hxt]R`]`4GPBXbtZkx @h=wS$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1KF"X]"Cb# _00X= X]R/ @x}`s/``4G@BHbtZkX`X=TGBba^ZkHpF 0]u@G}P"C"TGG#b#[@Ӏ ]&:"GtG`Bhb FZkPFP=GVJr1@JFPFTFPX'[GXPP=PP=$`v`J$`TG$J`qHF$G$J`QHF$(PP=P]P},xv`J,xTG,Jrq@JF,G,HaQ HD,0PBh=TGPBXb:]ZkP4G x BP=X]Xb# _XHXݢ֢6JJBH`H=P]4G4GGGb#!@fX C@XX= 10 B 0`H}11`BX4JJ0BtGBbmtZk`H=11 @X]4G4GGGb#!@@E`X=H] b#1_?F=0;X=X=X] R21@B A 18=X C@@ݢ`X=H]b#(_H `H=11 BX]R2DJFJ0@BtGBb6tZkX x=+@X=pb#_`H=11 @X]4G4GGGb#@!@@`X=H] b#_`4G@BHbsZkG]]#kP#~^^GGxp=h]`}@8xt]RX]X4G B(bcsZkx @h=P]"Cb#_00P= P]R/ @x}ps/`X4GBbbsZkPXP=TGBb9]Zk@pFt 0]@G}H"C"TGG"b#Z@Ӏ ]&:"GtG0B8bDZkHFH=TGVJr1@JFHFTFHX'[GXHH=HH=$`v`J$`TG$J`qHF$G$J`QHF$(HH=H]H},xv`J,xTG,Jrq@JF,G,HaQ HD,0HBh=TG B(b\Zkx @H=P](b#_P@Pݢ֢6JJB@X@=H]4G4GGGhb#&@PXF0=L @= X@}11`BP4JJ0BtGBbKsZkx @P=@b#(_8F60-P= !C8=8]@XP=@]Pb#_`xh]TGtG b_x`]GtG b_8x=-@`=P]"Cb#_XP=TGBb{\Zk@88= XP=@]b#_X4GBb/rZkG]]#k#~H^P^XGG@@=/I G@"1TGBbmZk = G4G0B8b/suZkG1=  BRANbs"CCr N"CC ¦֢0B ײ"9#C BRtG`BhbbQZk/= G4G0B8bBuZkG1=/]tR]@4GTGGb#<@@0= CGGGHb@ =0,@4GBb/?\ZkGH]P]X`#k0#~^^GG=]}00"1`h=="d=0BR]}L`/I"1TG B(b/lZk=/ G4GpBxb/tZkG1=``BRANb s"C8Cr`N"C8C`¦֢0B`ײ8"9#C`BRtGBbPZk/= G4GpBxbtZkG1=/]tR]0"Cݲ`=xv`Ky KyGxGJaS HF]d}r`"CݢBݲGxv`Ky KyGxG !JaS H!F ]bs"CrBC]x]/:=BGtGGb#N^Ө/P]"C]vJuJFGxaKyS KyGx==@}BݢBP"C0#CtG B(bwZk B8"1"C0]"CtG B(bwZk=&B@BR"C`bs"CtGBboZk0ೈ=GlGp]"C"TGG!b#/LX@Ө/ ]&:"GtGBbBZkUp=!?F!p]4GVJs1`JFpݢGTGp=y$`Gyp=pp=p]$vJ$TG$ТJaq HF$вG$KaQ HG$(pp=p]p},vJ,TG,J`qHF,G,: H`QH D,:0p=pC`]"CTGPBXbYZkx=p]4GGGb @ӈ]p4GG]]#k#~8^@^HG#G0(= ]}(0B04G8B@bZpZk/'0(= ]r3gJgJ"C 5ץJJ4GGBbpZk0= ]4JJ }~ ݢ֢6JJ޶GG4GGBbVZk0=TG(B0brqZk  08"1"CGGGGx b#;@ "0=G^G^4GtGG GXB`b/XZk0= ]DBbs~TGHbsGGb2+@0=TG(B0b=qZk04GBb/pZkG8]@]HP#k@#~^^GG=]x}h" 1"Q.q.QJSqJSFH=P"L"@}"D}==]/I@=G @"1TGBbzjZk = G4G0B8b/rZkG1=  BRANbs"CCr N"CC ¦֢0B ײ"9#C BRtG`BhbNZk/= G4G0B8brZkG1=/]tR]ݢ`ݲ0#C]H}:v H{`K;D:=GqaJpSJpFqLݢH"CC೘= @=}cC"1"C0]"CtG@BHblxZk=!00D/ =#BBR"C bs"CtGpBxb nZkx=GH"C"1"CGtGGb#^ H P"!/ =]x}Ghb'_pG=X="C"TGGP b#{V@Ә ]&:"GtGBb@Zk[X=!?F4 F!X]TGVJs1`JFXݢGGX=y$`GyX=XX=X]$vJ$TG$ТJaq HF$вG$KaQ HG$(XX=X]X},vJ,TG,J`qHF,G,: H`QH D,:0X=X`BRXX}dBH"CTGBb/WZk`=X]4GGGXb @x]X4GG]]#k#~P^X^`G#GH@=8]0}( ?"=P}"}@0BH4GBbnZk0'H@=8]r3gJgJ"C85ץJJ4GGBbnZkH=8]4JJ8}~8ݢ֢6JJ޶GG4GGBbUZkH=TGBb/oZkH=8]DBbs~4G@bsGGpbv)@  "vJ`HF4G "QAJ`qH@FQG bJ`QHF("C ¦"C "CpbsGBb/QZkH= BR"Cbs~TGbsGGpbA)@  "vJ`HF4G "QAJ`qH@FQG bJ`QHF "C8¦"CtGtGGb#@;_H= BR"Cbs~tGbsGGpb)@H=tGTGGBb/VZk  "vJ`HF4G "QAJ`qH@FQG bJ`QHF("C ¦"C "CbsGBbRQZkH= BR"Cbs~GHbsGGpb(@H=GTGGBbUZk0/vJ4G]AJaq HAF]GJaQ HF"C"C04GGGBbQZk4GJ`qHFG]@J`QH@F]H="C¦֢޶GPbsGGpb(@H=GTGGBbUZk CTGGpb#O9_/H=TGBbUPZk(H=TGBbnZkH4G`Bhb/OmZkGP]X]`p#k#~^ G=(8(;1(`(d(;1((<(;1 (@($(;1X((P(;1\(H((;1@(D4G {@G] 0#k#~`^h^pGGP@8pP==/I=G "1TG`BhbgZk = G4GBb/oZkG1=BRAN@b$s"CxCrN"CxC¦֢0Bײx"9#CBRtGBbKZk/= G4GBboZkG1=/]tR]PtGTGG b#6@=8= CGtGGb#^XXX'P@]8}0"CtGG b@G=BGtGGb#x^XXXP@]0"CG0uG b@G4GG`]h]p#/k#~P^X^`GG@8=@==L=/I "1TGBb/fZk=/ G4GBb/GoZkG1=BRAN`b0s"CCrN"CxuB$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1z"C¦֢0Bײ"9#CBRtGBb6KZk/= G4GBboZkG1=/]tR]@GTGGb#\'@@GTGG@b#/5@@8]0="CGGG b@HHH ]0}r@4GpBxb VZk4GGP]X]`p#k#~^^G#G=]}hh" 1=="=h$"P.p.PJSpJSFh",1x=="|=h]]/IG"1TGXB`b>fZk = G4GBb/nZkG1=BRAN8b<s"CpCrN"CpC¦֢0Bײp"9#CBRtGBbJZk/= G4GBbnnZkG1=/]tR]ݢݲ0=#C=}x;v J`H F;tGJrS@JF|ݢղx#C=!C== @=}`@"C}G¦֢֢֢6JJGvKuJG=4G9!HzS@K:D9=b{{/`GBRRRGݢBݲG HHG5v KxK8G5]b{{`G&"GJrS@JF}¦֢֢GG=B=b{{`G"1111&J&JGvJpJF]¦֢֢4G&s"G:!H`SH D:G"111Gu]AB]=ݢBݲ=1@@"C0]#CtGhBpb`\Zk]QBxbs"C0"CtGXB`bn^Zk?&1"F]QBxbs"C"CtG8B@b!XZkG=  "1"CF bs4GStGBb/{Zk= "C0@/ = x]I@}`=TG(B0bckZkG= "C0@ = x]5@}qBx"C0"CtGXB`b/^Zk?&1"F ]_} "CtFBx¦"C"CtG8B@b/WZkGO"Q4GRtGBb/{ZkDG=="C"TGGb#FQ@ ]&:"GtGBb{Zk/ð=!?F!]GVJs1`JFݢGTG=y$`Gy==]$vJ$TG$ТJaq HF$вG$KaQ HG$(=]},vJ,TG,J`qHF,G,: H`QH D,:0=$Bx"CTGBb/RZk=!_&2F!x=|G4G"B"(B/UZkC@GD=/ x=|]G4G"B"(BUZkC@GD=/==è}0`B}.J]|}:[C]x=!C==4GxB"(BUZkC@GD== ]}2SB]=}]PBOZkHBcNZk#xѠGٮwKVJFپx HH@/ѠGrtJS}JtFr`]:FKFK|]GGPBOZkHB/?NZk4G8B@bhZk=]r3gJgJ"C5ץJJ4GGBb/+iZk0@=]4JJ}~ݢ֢6JJ޶GG4GGBb/OZk/ 8"1"CGGGGxb#3@"=G^G^4GtGGGXB`b/QZk=]"Cbs~TGbsGGb#@=TG(B0biZk4GBbhZk]4GG]] #/kjx`#~^^G#G=]}0"81=="=B<R"r.,rJ@H`FD`hp"dH"P1PX="TT @. .@JQ JQF\@H"D`bhs08}"4}}I=G ("1TGBbbZk = G4GB b/_kZkG1=BRANbHs"CCrN"CC¦֢0Bײ"9#CBRtGHBPbNGZk/= G4GB b.kZkG1=/]tR]ݢݲ0#C  ]G:v H{`K;D: =GqaJpSJpFq "C ݢ B  =GYv@K`H@GY }G[AJpSJPF[ }"C  ݢB ݲ G8v K`H G8 ]GZAJpSJPFZ }}"C{  B  GvK`HG =GYAJpSJPFY ]}"Cz } B  ݢPvJ`HF GXAJpSJPFX =T}y ]P}#Cz B  @=vJa HF GKqS JG }D=3 ]@}#Cz B  0=vJa HF GKqS JG }4=3 ]0}#Cz B   = @ =B"1"C0]"CtGHBPbVZk/=G]R}sSF@B"C¦"CtGBbTZkG(=="C("TGG8b#N@   ]&:"GtGxBbxZkd=!?F4 F!]4GVJs1`JFݢG4G=y$`Gy==]$vJ$TG$ТJaq HF$вG$KaQ HG$(=]},vJ,TG,J`qHF,G,: H`QH D,:0"1FXs7JRWJSFXF"@`B!`"C"CP"C&"GGPb#_@"! CTGBb/OZk= 4GBbfZk=]r3gJgJh"C5ץJJGGHBPbfZk0@=]4JJ}~ݢ֢6JJ޶GG4GGXB`b>MZk=]DBhbs~4G8bsGG8b!@G(]"C("TGG8b#M@   ]&:"GtGxBbxZk=!?F4 F!]4GVJs1`JFݢG4G=y$`Gy==]$vJ$TG$ТJaq HF$вG$KaQ HG$(=]},vJ,TG,J`qHF,G,: H`QH D,:0"1FXs7JRWJSFXF/q@`Bp`"C"C@"C&"GGPb#Y_@"! CTGBbOZk= =0]0@B]=ݢ4JJ=99%K'K>GG4GGXB`bLZk=]DBhbs~4G8bsGG8b @G(]"C("TGG8b#/,M@  / ]&:"GtGxBbhwZk=!?F4 F!]4GVJs1`JFݢG4G=y$`Gy==]$vJ$TG$ТJaq HF$вG$KaQ HG$(=]},vJ,TG,J`qHF,G,: H`QH D,:0"1FXs7JRWJSFXF@`B`"C"C0"C&"GGPb#_@"! CTGBb/wNZk= =0]0@B]=ݢ4JJ=99%K'K>GG4GGXB`bKZk=]DBhbs~4G8bsGG8bQ @G(]"C("TGG8b#L@   ]&:"GtGxBbvZk_=!?F4 F!]4GVJs1`JFݢG4G=y$`Gy==]$vJ$TG$ТJaq HF$вG$KaQ HG$(=]},vJ,TG,J`qHF,G,: H`QH D,:0=]X}0`B}==4JJݢ֢6JJ޶GG4GGXB`brKZk C= CtGtGGb#1_` C= CtGtGGb#/1_" D0rHQ!J2F0 D/ @B@bs"C"C"C`"C&"GGPb#_@"! CTGBbMZk=]DBhbs~4G8bsGG8b@G(]"C("TGG8b#/K@  / ]&:"GtGxBbvZk=!?F4 F!]4GVJs1`JFݢG4G=y$`Gy==]$vJ$TG$ТJaq HF$вG$KaQ HG$(=]},vJ,TG,J`qHF,G,: H`QH D,:0"1FXs7JRWJSFXF@`B~`"C"CB&+"GGPb#O_@"! CTGBb/MZk= =0]0@B]=ݢ4JJ=99%K'K>GG4GGXB`bJZk=]DBhbs~4G8bsGG8b@=!!$H&H @ !JaS H!F 4G(B0b/cZk4GG]]#/kX 7J_FSFX/_ÆX 7J_FSFX_%X 7J_FSFXy<;$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1_"(_0 H?F2F0?yX 7J_FSFX|_0#~^^G#G( =]}4Gl"0.P.0JRPJ2Fbts`h}p="d=xPX="T="p..pJTJtF"1@H=="D=BR08]="4=(]]L}/I`"1TGBb/]Zk=/ G4GBb/GfZkG1=BRANbTs"CCrN"CC¦֢0Bײ"9#CBRtG(B0b6BZk/= G4GBbfZkG1=/]tR]ݢݲ`#C00]G:v H{`K;D:0=GqaJpSJpFq0"C0ݢ0B00=GYv@K`H@GY0}tG[AJpSJPF[0}"C00ݢB0ݲ0G8v K`H G80]GZAJpSJPFZ0}}"C{00B00GvK`HG0=TGYAJpSJPFY0]}"Cz0}0B00ݢGvJ`HF0GXAJpSJPFX0=}"Cy0]0}aC0}0GբvJ`HFղ0GWAJpSJPFW0d}x0=`]#CY0B00P=vJa HF0TGJqS JF0}T0=P]#CY0B00@=vJa HF0GJqS JF0}D0=@]#CY0B000=vJa HF0GJqS JF0}40=0]#CY0B000= @0=ݢ V =u B/R ]X@F/@@"C00@"989 G@84JJGvHz@KD0=GJuSJF0=@BR8R@G@8Gq0=0B000]@C0]= C"C`"CtG(B0b2pZk"C"1"C`]"CtG(B0b/$pZk"C00]@bs8s`G@85JJGvJtJF0@"989 G'{#G8!HzS@K:D80@"181 G@8Gp0]0B00GvHy KD0=@`G?&1"GJzS@KF0}@BR`RS00ݢB0ݲ0wv`Kw0@"11 G&"GXAKaS HAGX0]0}0B00ݢGvv`KwJwGv0=@d/4G&"GQAKaS HAGQ0]@bsdsr00B00@"99 G@0JJG7v H{`K;D70=@G_&R"GHzS@KD0@¦֢֢/G@G40=0B00}GvHxKD0=@bss`G&"GJzS@KF0=@"!!900B00]Grv`JxKxFr0ݢ@<G&"G6!HqS J1D60=@<00B00}GvJxKF0@"! ! G&"GJqS JF0=@ 0]0B00}G3v HxK8D30ݢ@"1@1 G&"GHtSJD0=@BR@RY00B00}G3v JxK8F30@$4G&"GUAJtSJTFU0=@$0=0B00}GvHxKD0ݢ@BRXR@G&"GJtSJF0=@"!X!90=0B00}@G@BRRR2FJFJGvJ{`KF0@¦֢֢tG?$! G4!JzS@K:F40@G@BRRRG00}aB0}0}@¦֢P֢G@"1P111&J&JG;v Ka H!G;0]@PG$ GJrS@JF0}@PG@"1P11GӲ0=0B00}@\G@\0JJGvK`HG0]@\G&s"G:!HqS J1D:0@"9\9 G@\G00]AB0]0}G;v HuJ5D;0=@¦֢H֢TG?'9#GJzS@KF0@H0]0C00}GӢvJuJFӲ0=@TG&"GHqS JD0@BRRW0=0C00GvJvJF0@@G?'9#GTAJqS JQFT0@"!@!70}0C00GvHvJD0=@"1D1 4G&"G9!HrS@J2D90@bsDsw00C000ݢB0ݲ="C"C`= CtG(B0bpmZk xF="CBR"Cbs"CtGBb]Zk4GkGi= =01F ]"Cbs"C"CtGBb]ZkGT =U @0 .= ]"Cbs"C"CtGBb{]ZkG?= C"1"C`]"CtG(B0b/$mZk00/="CBR"Cbs"CtGBb]]ZkG!"!#H = ( }`G G]}Ghb _ = !! H G8=}"C8"TGGb#/E@00/ 0]&:"GtGXB`b pZk=!?F4 F!]GVJs1`JFݢGG=y$`Gy==]$vJ$TG$ТJaq HF$вG$KaQ HG$(=]},vJ,TG,J`qHF,G,: H`QH D,:0=]X }/` B/ (tGTGGb#@=, P@FP(4GBb^Zk(=TGxBbGZk/=$B`]"CTGBb#GZk4G==$BBR"CTG8B@bVZkPB"1"CTG8B@bVZkHVJ =1]0R2F/ 4G}PHݢF(T=(9L=H}GLGPGT]G"GY"GGB/ IZk"@ "GY"GGXB/GZk4G@@@/\=/ G8]"C8"TGGHb#OE@(4GBb]ZktG=$!!&H&HP==$11&J&JH=4G}PHݢF.$7JJ(=$99&K&K](ZG"GA"GGBHZk"0 "GA"GGXB/GGZk4G000=8 GQ 01BTG]KPH BGݢ61BݲTG}A4G===0 B=}s}Ø]:1@C]4G}+G8="C8"TGGHb#/D@ 4G]/@}0`B}Ø=91 C=4G}= GX]"CX"TGGHb#D@/(=]r3gJgJH"C5ץJJ4GG(B0b-]Zk0@(=]4JJ}~ݢ֢6JJ޶GG4GG8B@bCZkh"!L(=}dBH4GbsGGb@"vJ`HF4G"QAJ`qH@FQGbJ`QHF ¦FyKXKGF3 C2 BZ#C@}#CTGG0b#L*_(=BR"CHbs~TGbsGGb@"vJ`HF4G"QAJ`qH@FQGbJ`QHF"C"CTGtGGhb#)_Ӹh"!L(=bs"CHtGxbsGGb@(=tGTGGBbDZk4G3=  D0rHQ!J2F0/ G2}"`FvHUJF/ѠG0Y{KZ]K[G0Y/@(=0]"CHGpbsGGbR@(=TGxBb_]Zk= C0=0=GvJr@JF0GKvSJG0=]#CY0}0@000= B0==GTGGb#/ ^00/0u]GB}"C`"CtG(B0b\jZk JG8]"C8"TGGb#DC@00/(4GBb[Zk0]&:"GtGXB`b{mZkI=!?F!]tGVJs1`JFݢGG=y$`Gy==]$vJ$TG$ТJaq HF$вG$KaQ HG$(=]},vJ,TG,J`qHF,G,: H`QH D,:0=]X}/`,= =ݢ ]}{;dKfK0`CJ{S`KF]21@B]}}5?G5=tGVJv1JF]Z_F@FZx&tFx@`"CTGBbmDZkp=n B"1"CTG8B@b/CTZkHB"1"CTG8B@b9TZk@H@=F/T](RL](D@ݢGDH=L]G"GA"GGB/cFZk"0zn$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1C" "GA"GGXB/DZk4G000=/ G8]"C8"TGGHb#B@(4GBb[ZkVHtGo(=TGxBb%\ZkGg=== ]0@B]Øݢݲ81C(=`3gJgJH"! C]5ץJJ4GG(B0bZZk0@(=]4JJ}~ݢ֢6JJ޶GG4GG8B@bjAZk ("1"CGGGG b#%@"(=G^G^4GtGGGBb/oCZk`"!L(=}dBHTGbsGGb@"vJ`HF4G"QAJ`qH@FQGbJ`QHF ¦FyKXKGF C/ BZ#C@}#CTGG0b#'_(=BR"CHbs~tGbsGGbg@"vJ`HF4G"QAJ`qH@FQGbJ`QHF"C"CTGtGGhb#g'_Ӹ`"!L(=bs"CHGbsGGb2@(=GTGGBb5BZk"vJ`HF4G"QAJ`qH@FQGbJ`QHF"C¦"C"C}GBbu}Zk`"!L(=bs"CHGbsGGb@4G3=  D0rHQ!J2F0Y G2}"`FvHUJFQ/ѠG0Y{KZ]K[G0Y/G@(=0]"CHGbsGGb@(=TGxBbZZk VH/(=TGxBbZZk= (4GBbYZkG]]#k KGG(1  KGG/àèñà#~H^P^XGG88=I GP"1TGBbSZk = G4G@BHb/_\ZkG1=00BRANb`s"CCr0N"CC0¦֢0B0ײ"9#C0BRtGpBxbNxZk/= G4G@BHb.\ZkG1=/]tR]8GTGGXb#t@8GTGG b#/"@80= CGGG b@@@/@ ]0}dr84GBb!CZk4GGH]P]X`#k #~^^GG=]}"0.P.0JRPJ2Fbshp}]"l]"1=}L`/I("1TGBb/_SZk=/ G4GB b/[ZkG1=BRANbls"CCrN"CC¦֢0Bײ"9#CBRtGHBPbwZk/= G4GB b[ZkG1=/]tR]ݢ0"C=h]vHz@KD=tGAAJqS JQFA}lh"CղB೰= C=}}=h1 ]MBbs"C"CtG(B0b mZkh= B4GtGG(b#0^Ӱ@]"C]`/G`7JJG4v KvJ6G4]tGJ{S`KF=`G`bsssGQBݢ`G`"!!!!&H&HGVv@Ky KYGV}`/G?&1"GJsS`JF`/G`"!!!GݢBݲ]GZv@J`H@FZ}`tG&"GJ{S`KF`ݢ=!C==]@B]B@"C0= CtG8B@bbrZk  B"1"C0]"CtG8B@bUrZk=-BBR"Cbs"CtG(B0bLlZkGhG=x="C"TGG8b#/>@Ӱ/ ]&:"GtGxBbiZkQx=!?F!x]GVJs1`JFxݢGTGx=y$`Gyx=xx=x]$vJ$TG$ТJaq HF$вG$KaQ HG$(xx=x]x},vJ,TG,J`qHF,G,: H`QH D,:0x=$Bh"CTGBb1@Zk=x]4GGGHb @Ӑ]x4GG]]#k#~8^@^HG#G0(= ]}(0B04GXB`bVZk/'0(= ]r3gJgJ"C 5ץJJ4GGBbWZk0= ]4JJ }~ ݢ֢6JJ޶GG4GGBby}Zk0=TGHBPbWZk( 0X"1"CGGGG b#!@("0=G^G^4GtGG(GxBb/wZk0= ]DBbs~TG bsGGb@0=TGHBPbWZk04GBb/VZkG8]@]HP#k0#~^^G#G=]}XX"1@H=P="D=XBR]}K`I"1TGHBPb/QZk=/ G4GBb/cYZkG1=BRAN(bxs"C`CrN"C`C¦֢0Bײ`"9#CBRtGBbRuZk/= G4GBb2YZkG1=/]tR]ݢxݲ0#C]G:v H{`K;D:=GqaJpSJpFqDݢ@"CCೠ= @=}cC`"1"C0]"CtG(B0b|sZk=!h0D/ =#BhBR"Cbs"CtGBbjZkೀ=GGp]"C"TGGb#/=@Ӡ/ ]&:"GtGBbXgZkp=!?F4 F!p]GVJs1`JFpݢG4Gp=y$`Gyp=pp=p]$vJ$TG$ТJaq HF$вG$KaQ HG$(pp=p]p},vJ,TG,J`qHF,G,: H`QH D,:0p=pC@]"CTGxBb/~Zk4G(B0bJUZkx=p]r3gJgJ"Cp5ץJJ4GGBb/wUZkx0@xx=p]4JJp}~pݢ֢6JJ޶GG4GGBb/{Zkx=p]DBbs~4GGGGbG@Әx=TGB b/SVZk4GBbUZk]p4GG]]#/k#~H^P^XGG8 8=I Gp"1TGBbOZk = G4G`Bhb/XZkG1=PPBRANbs"C(CrPN"C(CP¦֢0BPײ("9#CPBRtGBbsZk/= G4G`BhbWZkG1=/]tR]8GTGGxb#@8GTGGb#/@80= CGGG b@@@/@ ]0}\r84GBb~Zk4GGH]P]X`#k#~^^GG=]}"0.P.0JRPJ2Fbs}]"]"1=}L`/IH"1TGBb/OZk=/ G4G8B@b/cWZkG1=((BRANbs"CCr(N"CC(¦֢0B(ײ"9#C(BRtGhBpbRsZk/= G4G8B@b2WZkG1=/]tR]ݢݲ8=#C=};v J`H F;tGJrS@JFݢղ#C=!C== @=}``]LBbs"C("CtGHBPbhZk`=,@4G"1tGGHb#/^/[H]"C]ԢvJԲ4GWAKxSKXGW}=B`v`J`tGJuSJF=]AC]=GÀ HHGav`Jq JqFatGJuSJF"99 GÀb{{{GX@=BRR@GÀ4JJGѢvJs`JFѲ"99 G'#GJ{S`KF"!! GÀG@=}aB}ݢ= C= BH"C8]#CtGXB`bnZk0  B"1"C8]"CtGXB`bmZk00=,BBR"C(bs"CtGHBPbgZk 0=&*"0@/ &"4GBbdZkG0=/& "0]@}0`B}B¦"C("CtGBb/pZk0À=,BBR"C8}"CtGXB`b/mZk0ÀGkG=}"C"TGGXb#/,:@/ ]&:"GtGBbhdZkTØ=!?F!]GVJs1`JFݢGTG=y$`Gy==]$vJ$TG$ТJaq HF$в{L^$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1,"G$KaQ HG$(=]},vJ,TG,J`qHF,G,: H`QH D,:0= C]"CTGB b{Zk=]4GGG b @Ө]4GG]]#/k#~8^@^HG#G0(= ]}(0B04GBb:RZk"vJ`HF4G"QAJ`qH@FQGbJ`QHF 8F/¦ "C"C#C =$CGBb/uZk C"! CBR"C }dB GBbuZk'0(= ]r3gJgJ`"C 5ץJJ4GG@BHb)RZk0= ]4JJ }~ ݢ֢6JJ޶GG4GGPBXbxZk0=TGBbSZkp 0"1"CGGGGb#@p"0=G^G^4GtGGpGBb/zZk0=BR"C`bs~TGbsGG0b @0=TGBb/RZk04G B(bQZkG8]@]HP#/k#~^^G#G=]}"1=="=BR"r.,rJ@H`F""1="==L]/I@"1TGBb/LZk=/ G4GBb/oTZkG1=BRANbs"CCrN"CC¦֢0Bײ"9#CBRtG B(b^pZk/= G4GBb>TZkG1=/]tR]8"Cݲ=xv`Ky KyGxtGJaS HF]}r"CݢBݲ=xv`Ky KyGxG !JaS H!F ]}r"CݢBݲ=xv`Ky KyGxG !JaS H!F ]}r"CݢBݲ= C=}{`` CPv@JP}4GӢJtSJFӲ=!C=};v H;tGpaJqS JqFpݢBݲ=$9vHy KD=tG!!J{S`K;F!]}(srB8G8"9999&K&KG7v HxK8D78"11 G_&R"GJ{S`KF8¦֢֢G8"999G=B]= B=B4G"1tGGb#/J^/]CB`}"C"CtGBbkZk]CBbs"C8"CtGBbmZk00=#BBR"Cbs"CtGBbdZk=GG]"C"TGGb#c7@ ]&:"GtGPBXbaZk=!?F4 F!]GVJs1`JFݢGTG=y$`Gy==]$vJ$TG$ТJaq HF$вG$KaQ HG$(=]},vJ,TG,J`qHF,G,: H`QH D,:0=C]"CTGBb/xZk@= CTGBbxZk= 4GBbOZk=]r3gJgJ@"C5ץJJ4GG B(bOZk0@=]4JJ}~ݢ֢6JJ޶GG4GG0B8b&vZk=]"C@bs~4GbsGGb @=]"C@bs~TGxbsGGbw @=TGpBxb/PZk4GBbNOZk4GG]] #k#~P^X^`GG@8=@==L=/I "1TGpBxb/IZk=/ G4GBb/3RZkG1=BRANPbs"CCrN"CC¦֢0Bײ"9#CBRtGBb"nZk/= G4GBbRZkG1=/]tR]@TGTGGb#H @@TGTGG0b#/@@8]0="CGGG b@HHH ]0}lr@4G`BhbxZk4GGP]X]`p#k #~^^GG=]}X"1".Q.JRQJFXbshp}="l=X}}KI"1TGHBPb/3IZk=/ G4GBb/QZkG1=BRAN(bs"C`CrN"C`C¦֢0Bײ`"9#CBRtGBbmZk/= G4GBbbQZkG1=/]tR]ݢݲ8=#C=}h;v J`H F;tGJrS@JFlݢղh#C=!C=೰= @=}`p]NBhbs"C"CtG(B0bivZkp=B4GtGGb#^ӰBR,R/L@H}"C}¦֢,֢G,8KKGUv@KwJWGU}tG;!JaS H!F;BR,R@G,G`ݢCG7v Hy K9D7TGPAJqS JQFP C}ݢBݲ= @=7H=#C= "1pv`Kq JqGptGJtSJFݢ =ᳰB]GZv@JpJPFZ}TGJ`SHF"Cղ=!@==B]NBH]#C8 CtG8B@byZk0 B`"1"C8]"CtG8B@b~yZk00=.BhBR"Cbs"CtG(B0buZkGgG=x="C"TGGb#4@Ӱ/ ]&:"GtGBb^ZkQx=!?F!x]TGVJs1`JFxݢGTGx=y$`Gyx=xx=x]$vJ$TG$ТJaq HF$вG$KaQ HG$(xx=x]x},vJ,TG,J`qHF,G,: H`QH D,:0x=$Bh"CTGxBb vZk=x]4GGGHb @ӈ]x4GG]]#k#~8^@^HG#G0(= ]}(0B04GBbLZk/'0(= ]r3gJgJ"C 5ץJJ4GGxBbLZk0= ]4JJ }~ ݢ֢6JJ޶GG4GGBbQsZk0=TGBbMZk 0"1"CGGGGb#l@Ө"0=G^G^4GtGGGBb/OuZk0= ]DBbs~TGbsGGhb@0=TGBbMZk04GXB`b/_LZkG8]@]HP#k#~P^X^`G#G=]}"1=P="=BR"r.,rJ@H`FP""1x=P"| @. .@JQ JQFhpP"l==I}G`8"1TGBbFZk = G4G(B0b/OZkG1=BRANbs"CCrN"CC¦֢0Bײ"9#CBRtGXB`b kZk/= G4G(B0bNZkG1=/]tR]8"Cݲ=$9xv`Ky KyGxtGJaS HF]}(srBC]#C]= v Ja H!F ]GJsS`JFݢ=#C8]AC]= v Ja H!F ]GJsS`JFݢ=#C8]AC]x= v Ja H!F ]4GJsS`JFݢ|x=#C8]AC]G v Ja H!F ]TGJsS`JFݢ`"C=!C=}GvJ`HF=GJrS@JFX"CղC]GvJ`HF}G{aJqS JqF{P"CݢB=@=4GTGG8b#^j]HB8}"C"CtGBbwZk00=GY`]@GGX/TGGuBPݢ4GGwBH}h=#CB(Z#CH}`O0`C}G]"}"G(B0bo}Zk0G]"C"TGGHb#&2@ ]&:"GtGBbc\Zkð=!?F4 F!]tGVJs1`JFݢG4G=y$`Gy==]$vJ$TG$ТJaq HF$вG$KaQ HG$(=]},vJ,TG,J`qHF,G,: H`QH D,:0= B@FpKTJF@FB"9#C C= C&`"GG`b#^ C"! C"C&X"GG`b#/^Ӱ@"! CTGBb^sZk= 4GBb&JZk=]r3gJgJx"C5ץJJtGGXB`bRJZk0@=]4JJ}|0$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1 "~ݢ֢6JJ޶GG4GGhBpbpZk=]DBxbs~4GHbsGGHb"@Ӱ0BG]"C"TGGHb#T1@/ ]&:"GtGBb[ZkLð=!?F4 F!]tGVJs1`JFݢG4G=y$`Gy==]$vJ$TG$ТJaq HF$вG$KaQ HG$(=]},vJ,TG,J`qHF,G,: H`QH D,:0= B@FpKTJF@FB/"C"9#Cx C&h"GG`b#^Ӱ@"! CTGBb/rZk= =0=4JJ7JJGG4GGhBpbpZk=]DBxbs~4GHbsxGHbw@Ӱ0BG]"C"TGGHb#/0@/ ]&:"GtGBbZZkð=!?F4 F!]tGVJs1`JFݢG4G=y$`Gy==]$vJ$TG$ТJaq HF$вG$KaQ HG$(=]},vJ,TG,J`qHF,G,: H`QH D,:0= B@FpKTJF@FlB/j"C"9#Ch C&p"GG`b#+^Ӱ@"! CTGBb/qZk= =0=4JJ7JJGG4GGhBpbmoZk=]DBxbs~4GHbsGGHb@=!!$H&Hp @ !JaS H!F 4G8B@bHZk4GGP]X]`p#/k KFF/ KFFÌ KFFÐ#~P^X^`GGH@=H==K=I "1TGBb/ CZk=/ G4GBb/kKZkG1=BRANbs"CCrN"CC¦֢0Bײ"9#CBRtG B(bZgZk/= G4GBb:KZkG1=/]tR]HGTGGb#@HGTGG`b#/ @H0= C@GGG b@888 ]0}rH4GBb-rZk4GGP]X]`p#k`#~^^G#Gph=`]X}P0=v J0=G0}`JpQJpF0}TG0=!JpqJ0F0=4bs}p==K}I`"1TGxBb/gBZk=/ G4GBb/JZkG1=BRANXbs"CCrN"CC¦֢0Bײ"9#CBRtGBbfZk/= G4GBbJZkG1=/]tR]`ݢ@ݲXPBZ#C0}#CtGG8b#G>@H0"C4G(B0bUVZkHHG8]"C"TGGb#.@xx x]&:"GtG(B0bXZk8=!?F!8]GVJs1`JF8ݢGTG8=y$`Gy8=88=8]$vJ$TG$ТJaq HF$вG$KaQ HG$(88=8]8},vJ,TG,J`qHF,G,: H`QH D,:08=$BP=TGBbpZkp4GXB`bFZkp@=8]r3gJgJ"C85ץJJ4GGBbGZk@0@@p@=8]4JJ8}~8ݢ֢6JJ޶GG4GGBb/mZk(/ pX"1"CGGGGb#@("p@=G^G^4GtGG(GxBb/oZkp@=Pbs~TG bsGGb@p4GBbFZkX]84GG]]#k`#~^^G#Gh`=X]P}0=v J0=G0}`JpQJpF0}TG0HpqJD04@bs}hI}G`"1TG0B8bAZk = G4GBb/sIZkG1=ppBRANbs"CHCrpN"CHCp¦֢0BpײH"9#CpBRtGBbbeZk/= G4GBbBIZkG1=/]tR]Xݢ@ݲ`CX"9#C0]#CtGGb#<@HH/0=1&J&J Gx]8"Cx"TGGb#_-@pp p]&:"GtGBbWZk8=!?F4 F!8]GVJs1`JF8ݢG4G8=y$`Gy8=88=8]$vJ$TG$ТJaq HF$вG$KaQ HG$(88=8]8},vJ,TG,J`qHF,G,: H`QH D,:08=$B0"CTG`Bhb/nZkP8= h4GBbEZkh@=8]r3gJgJ"C85ץJJ4GGBbEZk@0@@h@=8]4JJ8}~8ݢ֢6JJ޶GG4GGBb.lZkh@=8]DBbs~4GbsGGb@``=!!$H&H0 @ !JaS H!F 0]"C4GBbUTZkh4GBbZEZk4G 0= C4GBbHTZkP]GG]]#k#~`^h^pGGXP=  t ( =,1@=@/)@ 88 8X=D8=TG0B8bnZkHP/H=TG`Bhb hZkH=TG B(bzfZk88@@G`]h]p#/k#~^ ^(GG= CTGGb#/_8DGb#_G] ](0#k#~P^X^`G#GH@=8]0}( ]"CTGG0 b#r@4G B(bxZkH@=8]0}(pݢ޶G@BHbmZk4GGb#/@4GPBXb`ZkGP]X]`p#k#GG>^G #k#GG>^G #k`#~^^GGh`=84G0h==L=/I X"1TGBb/Zk=/ G4GHBPb/{GZkG1=  BRANbs"C0Cr N"C0C ¦֢0B ײ0"9#C BRtGBbjcZk/= G4GHBPbJGZkG1=/]tR]hݢ&`8F-xF/* F@}d{P}=d'F P}XFlPlF ]\ZP]}\F=!P=P},sP},Pݢ ((/(]4ZC0]h4GBbCZkP/0= PP=11&J'Jx F/@P}s0tFt`PB(¦"C"CtGhBpbkBZkPe F/ P]hRF\P}cB("C"CtGBbzXZkPM!F/ P]`RFDP}cB("C"CtGBbbXZkP5X!F/ P]pRF,P}cB("C"CtGBbkZkP!F/ P]RFP}cB("C"CtGxBb#qZkP!F/ P=P XX}/`XHXݢB4GBb_Zk/= G4GB bCZkG1=/]tR] ¦֢J/4GhBpbaZk HH5@"!/ GGb#X^Ӏ4GBb_ZkhhN``]"CX}"CTGGb#/'@ӈ ]&:"GtGBblQZkXh= L@PP=h]@N2BH=X=P]H}hGxBb_Zkh 1@tH=]@N2B1@=@4JJG8`D0`D.XaD,aD*X`D h]8@GW@@}( CTGGb#x _t"@$0" FrtJSqJtFr F/Y`׀BX@$5JJ0¦֢B00GY{JZXK[GYGL@`C/J`0 HH@=(A0GGB fZkHB}dZk@ݢ ֢8ݲ8$(" GuK@HD G5נB48$0JJ("1B(BR(b`FT{SJZSK[GT`F(@`C/&`(¦֢6JJ8(W(GGBeZkHBIdZk4G"C="tGG@b#^ÀX== N1@!TGBbO`Zk((TG=BR"C="tGG@b#t^x`D/}P=N0@!8 D/3 "117'J'J0=0}/` F ¦F@8KK @=X}L`C@tGGXb#7_ À@=X]}`NSBRtGGb#_0 "Fh=8 F @]$Rb`FvSJUJF`FB/@$7JJB"9B@Ga:K@HD@G/ @ 0JJG@=(QGBBeZkHBcZktG C="tGG@b#/^C`D/`D aD7P=]@N2B15 B/ @} s8`F`h8F/,¦֦ݲ"ݲ]#C]vJ]4GJqS JFC=yv`KytG !JaS H!F ]}B@ݢ$֢7v KvJ6G7]tG:!H{S`K;D:@=(10]}aB}¦֢֢G8KKGvHwJD=BZZ/@G&"GAAJ{S`K[FA}/GGӲB=]@C]= C=]}vK{`KG}GJvSJF=7]#CP=!@=]Grv`KtJtGrGJsS`JF"97BZ#CP=!@=]B@}cC4G"1tGGȰb#^f@=#@="CBR"CtGBbiXZk@=#@"1"C]"CtGhBpb'[Zk ="CBR"CtGb@@@"! CBR"CtGBb/LRZk7  7HH00 "QHFQ bF@5JJ @=X= OCXtGGXb#_ À@=X]}`NSBRtGGb#_0  "FaD h]8@F@@B@BtGba@aD/`P= L@8D/3 07JJ00]/@ bF բFղ@7JJ @=X]}`O[CZtGGXb#k_ À@=X=]@N2@AtGGb#P_0}`  (D h8F0"(B@}$sFծwtJVJFվFB/@$8KK"9CBZb`Ga[K@HD`G/ @ 0JJG@=(QGBrcZkHBaZk4G#C="tGG@b#/$^sh}8`Dp`@$" D0rHQ!J2F0 D/ @B@@}$s3fJfJtB`¦FyJXKGF C/ BZ:FKFK@}([bGGB0cZkHBaZktG="C="tGG@b#^2 bc#7gHgH0}0= 0(F0 BrpFr@4JJ @=XOBWtGGXb#_ À@=X=]@N2@AtGGb#_0}/`  (D 01B]_`}"CX"CTGGb##@Ӏ4GhBpb]ZkG]] }(0#kr JFtFrìY J_G[GY_ KDDT SJ_G[GT_H SJFFLV :KDDZծ tJFFվ  [KDD:0 H?F2F0>?H JGGLÀ#~`^h^pGGH@=8]H]tR]H= 1(=(]@@H= 12B4G4GGGb#/^H=(=((]/@bs s(}(@(B4G4GGGb#/^(=!(=8=1 B@Fu2JTJF@FנB8ݢ֢6JJ B  " Gz`K[yK`Gz G`@/ "!!&H&H8P "GGBbZkpB`Zk(V@ݢ֢XD8aJY K!G8D/m @l @5JJXBX"1XB@Fz2JTJF@F`@C/^@Xb{;fKfK@WXGGBaZkpBY`Zk"!(=($GP= CP="tGGhb#^ ((/@(]RB4G4GGGb#O^(=!(=(=$GX]"CX="tGGhb#v^G`]h]p#kh 2JFF/jtz KG`GzxÊ8 J?G!G8?Ø 2JFF`#~^^GGXP=H]@"1=X]I@G0"1TGBbjuZk = G4G B(b/}ZkG1=BRANb$s"CCrN"CC¦֢0Bײ"9#CBRtG`BhbYZk/= G4G B(b}ZkG1=/]tR]XݢHH@@]F@X}@`G "! C0=X]TRF bs"C0}Xݢt֢F "C0X=]xZ:G b{#C0}}X==|11D B R"C0]sX}tF` ¦("C0ݲiXF B0Z#C0]_@  b8{#C0}W@=U H884JJ8F` @"C0GXF H"C0@xF@ P C09F/` "X! C0=1òӀB/@B` `"C0'øB7B/ "h9#C0=àӁB/B bp{#C0}ðSBwB/@ bxs"C0} öB/BB@ #C0@"9#C`=``=4G0B8b/UZk0h= CTGGb#/W@pp/p4GBbOKZk`xh"x1"CTGBboZkx=h4GG b#/@`X"1"C tGGb#^G]]#k#GG>^G #kp#~x^^GGph=`]X}PHp]]KI"1TGBb/tZk=/ G4GxBb/g|ZkG1=PPBRANbs"C`CrPN"C`CP¦֢0BPײ`"9#CPBRtGBbVXZk/= G4GxBb6|ZkG1~q$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;11S"$=/]tR]p4GBbxZkPH=p8="C@]"CtG b8@p4GhBpbxZkG+`=80JJX=@]Qh}XfFfFgFhFsF`P8=$C88]Z:GKGK8@G@8} {0}H=0Bp4GhBpbxZk4GGx]]#k`#~^^GGph=`p=/I G`"1TGBbVsZk = G4GPBXb/{ZkG1=((BRANbs"C8Cr(N"C8C(¦֢0B(ײ8"9#C(BRtGBbWZk/= G4GPBXb{ZkG1=/]tR]p4GBbGxZkp4GBb^XZkXXp4G@BHbRxZkG`X=!LP=P="CH]"CTGGb#@xxp4G@BHb=xZkx]&:"GtGBbIZkDH=XN0@@=@]X}`NSB8]pH=@]8}XGBbEXZkX=!1 @x=x=C] QB/ 8}NtBs0}0ݢ֢6JJhF4G`X]:1@C]0@x] BP="CH"CTGG@b#@p4G@BHbwZk`G]]#k#?G~X^`^hGG=PH=@]8}4G0=P4GpBxbwZk@= @/ 8P ]"C(}"CtGb@/qH=X"D/6X(D4 )D[@,DY`x'D'D#D1x8D<x-D-D 1D @$D`X%D?  HH/ 0JJ/+ =11&J'J5 B/' ]R2FJGJU@B_H}gB` 4JJ8F/ 5JJ8F/ ݢ ֢ ݲ4G#4G] 4G=4G ]R2FJGJX@F@4G}tG 7JJ8F4GtG]4G/^@= ]$Rh .uQJTJF> ݢ$֢6JJ@B @@=9]x/`8K[xK`Gx?@=!!&H&H (P@=GGB]Zk`BK\ZkB/2 ݢ֢6JJ5B,  8==$!? .q9HPJF>]$R2FJFJ8}sSB @88]Z4.vTKWJF>8 HH(X8=GGB/]Zk`B\ZkP4G B(b/vZkGX]`]hp#/k. QJT JF>x/ 8K[ xK`Gx?. 9HP JF>. TKW JF>à#~@^H^PGG80=(]84GBb/VZk  /G8]"C}"C"C4GGpBxbVZk(= 0=08(}3TGBb/WZk4GG@]H]P`#/k#~8^@^HGG=8D#"1!NH CCN CC"10 B  CBRtGBbUZk"Ø೘"!!LH"CC"1!N]"CCQbs0`Bt¦"CBRtGBbjUZk/""᳘NH"1"CC0BRAN}"CCr0B"CBRtGBbEUZkG4GGb#/A @TG (] (=[[`X[00CG8]@]HP#k#~ ^(^0GG=@<W@: G(04GTG bX_("tG("(BR(bs0`B(tNSB(U(¦֢(0B(NB(" ٲ(B Z(b{0`C(`O@C("(("10 B(4NB(bòs@@@DyGTG b_("G("(BR(bs0`B(tNSB(U(¦֢(0B(NB(" ٲ(B Z(b{0`C(`O@C("$($("10 B(4NB(b(4GTG b_(""1!NxBR"CCQbsaN"CC0B¦#CBRtG0B8b/{TZk(= @(,("1]12B(b03( 4B(¦4((7B("8D/@G("<a DXD@DG(b<3tG(@G ](]0@#kp#~x^^G#GH@=8]0}H4G@BHb/vZkHP"11F/]"C4G B(buZk("C4G0B8buZk 9hh"1!NBR"CxCQhbsaN("CxCh0Bh¦hN#CxCh"9!O ]#CxCYhb{0`Ch`Hx"1"ChBRtGBb/SZkH4GBbJvZkP= C4GBb7uZkX= C4G`Bhb/?uZkP=`=X=h=@]0"C8"C("C "Cpp]#^`"h="GpBxb/+wZkGx]]#kp#~p^x^G#G80=(] }84GBb/3vZk84GBbvZk@= C4GBbtZk@=H=P0] }"C("C4GX``#4Gh]h= >H"P="X"GBbvZkGp]x]#/k#~^ G= =F4G([0{UZkG] 0#k#~X^`^hGGPH=@]P]]=I GP"1TG@BHbnZk = G4GBb/#wZkG1=((BRAN`bs"C0Cr(N"C0C(¦֢0B(ײ0"9#C(BRtGBbSZk/= G4GBbvZkG1=/]tR]@ݢ֢xF/@ /P4GBb-WZk(t (]P=(TG bh_ P=tTG bb_ P=xTG b\_ ((=(=t1 =(}P=(TG bM_ P=|TG bG_ P=TG bA_ P=TG b;_(888=t1 = }P=|TG b-_ P=TG b'_ P=TG b!_88((BR'@P@X¦"C"C4GUGGBbwHZk P=08"4GBbVZkP4GBbmVZkP8" P=B28b4GBb/VZkGX]`]hp#k#~^ ^(GG=X4G B(bFVZkX"XG] ](0#k#~^ ^(GGx"8/x]"! C"1"C4GGGBbHZk x"!8084G B(b/OVZkxG] ](0#k#~X^`^hGGH@=8]0}( }v`J}GJrQ@JFTG=!Jrq@J2F= G>8F/8"C]"C}"CG4GGG0b4@+4G=p=GQ0}G ݢ6JJ0Bղ(P 4G8TG B(b[WZkP=0JJG ](G8B4YZkPBWZk"C4G@BHbcZkGX]`]hp#/k`#~^^GGPH=@]8}0("1 = }/`@ ="C]"CtGGb#/_ =]H}G8b%@0 = (=04GP]/@P}h}`XXIh=G h"1TGBblZk h= Gh4GBb/7uZkG1h=BRAN(b s"CCrNX"CC¦֢0Bײh"9#CBRtGhBpb&QZkX/h= Gh4GBbuZkG1h=X/`]tRX]X``ݢ֢6JJFM0X=4980]8=H](}G be@4G0=X,08=H](}G bV@4G0=X 08=H](}G bG@4G0=X(08=H](}G b8@/4Gu0=X008=H](}G b(@/b4GexF^0=X08=H](}G b@4GT0=X|08=H](}G b@4GE0=X08=H](}G b@/4G50=X08=H](}G b@/4G%0=X08=H](}G b@/4G0=X08=H](}G b@/4G0](=GG]]#k#~`^h^pG#GXP=H]@}0=v J0=G0}`JpQJpF0}TG0HpqJD04(vH(G(= J`QH F(=TG(}aJ`qH`F(}, vH G }`J`QH`F }TG =!J`qH F =$vHG= J`QH F=TG}aJ`qH`F}vHG}`J`QH`F}TG=!J`qH F=vHG= J`QH F=TG}aJ`qH`F} H=/ C@@Brv`J`H`Fr4G@0!J`qH F0G@Br`J`QH`Frc$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1"5H0JJF F/8F@xF`F 8FF@F`XF FF@XFq`XP=0]"C4GG8b@88/84G(B0bBZkXP=(]"CTGG8b@8884G(B0bBZkXP= ]"CtGG8b@8884G(B0b/AZkXP=]"CGG8b@8884G(B0bAZkXP=]"CGG8b@8884G(B0bAZkH C@"! C@BR"C0}"C("C "C"C޶"C޶GXB`bSZk`xF/qXP=(]"CTGG8br@88/84G(B0bAZkXP= ]"CtGG8b`@8884G(B0bAZkyXP=]"CGG8bO@8884G(B0b/AZkgXP=]"CGG8b=@8884G(B0boAZkVXP=]"CGG8b,@8884G(B0b^AZkEH C@"! C@BR"C(}"C "C"C"C޶"C޶GXB`b+SZkF/]XP=0]"C4GG8b@88/84G(B0b/AZkXP=(]"CTGG8b@8884G(B0bAZkXP= ]"CtGG8b@8884G(B0b/ AZkXP=]"CGG8b@8884G(B0b@ZkH C@"! C@BR"C0}"C("C "C"C޶GXB`bRZkF/XP=0]"C4GG8b@88/84G(B0b@ZkXP=(]"CTGG8b@8884G(B0b@ZkXP= ]"CtGG8b{@8884G(B0b/@ZkH C@"! C@BR"C0}"C("CGXB`bRZkBXP=(]"CTGG8bW@8884G(B0b/@ZkoH C@"! C@BR"C(}"CGXB`b_RZk XP=0]"C4GG8b5@8884G(B0bg@ZkNH C@"! C@BR"C0}"CGXB`b>RZk@ HH @@=BR"C@bs"CGxBbSZk @@"! CTGhBpb/WZk0 C4GBb`Zk( C4GBb`Zk  C4GBb_Zk C4GBb_Zk C4GBb_Zk C4GBb_ZkG`]h]p#k#~P^X^`GG0(= ]}0/GM04GHBPb/sJZk4GGXb#@= =TGGb#/,@88/84GBbZk-4G8B@b/SZk("04GhBpb/ CZk0@="C8]"CtGBbKZk0@=8]bs"CGxBb'AZk@= GGb#^4GGGP]X]`p#kp#~p^x^G#Gh`=88"1 = =t1=/  C"1"CTG8B@bQcZk" 4G(B0boZk@h0JJPh]RH]X@=W`}=8]#C^<GGHBPbOaZkDX=0 @X=X=_"2B?.X@=¦vHP8]GhBpb&bZkD/X=0 @X=X=_"2B/?X@=8]tGXB`bRcZkD/X=0 @X=X=_"2B/?Gp]x]#k #~^^G#Gp=v Hp=Gp= J`QH Fp=TGp]AJ`qH@Fp]t"1 = t= 4GBb2oZk@]@=TG@BHbfZkD =0 @==_"2B/?Ø@=h"C`"CGPBXbnhZkD/=0 @==_"2B/?`}"Cp"CTG B(b\ZktX4G=h}}Cݢ Bm@=]}`H= CG0B8bhZkD/=0 @==_"2B/?H}pvJs`JFpp"C"CTGBb/QZk=0 @==] 2B?<Ø@=¦Vx"CGBbiZkD/=0 @==_"2B/?x}"C=TG B(b/W\Zkݢ@=bS}x"C#CG`BhbfZkD=0 @==_"2B?`}pvJs`JFpp"C4GBb ^Zk=@=GtGpBxb=fZkD=0 @==_"2B/?G]]#k#~8^@^HGG( =] 0=v J=GHpQJDTG=!H`qH D= ( C= C]"C4GGhb#_/ = C0=11b#V_ C4GPBXb]ZkG8]@]HP#/k#~8^@^HGG( =] 0=v J=GHpQJDTG=!H`qH D= ( C= C]"CGGHb#_ = C0=11b#_ C4G0B8b]ZkG8]@]HP#k#~8^@^HGG( =] 0=v J=GHpQJDTG=!H`qH D= ( C= C]"CG4G(b#|_ = C0=11b#_ C4GBbW]ZkG8]@]HP#k#~H^P^XGG@8=0]@]]=K I "1TGBb/gfZk=/ G4GBb/nZkG1=BRAN0b$s"CCrN"CC¦֢0Bײ"9#CBRtGpBxbJZk/= G4GBbnZkG1=/]tR]ݢB4GBb\Zk@=2@]QB}qBG4Gb#_GH]P]X`#k#~@^H^PGG0(= ]vJG]@J`QH@F]TG=!H`qH D= BR/=@ 4G B(b/@Zk4= Cb#_ 4G0B8b/AZk"C="CTGGb#@8884GPBXb|Zk =]}G0B8b~Zk4GGb#'@ C4GBb/y\ZkGGpb#^G@]H]P`#/k#~X^`^hGG@8=0]0 H@@]]=L /I"1TGBb/eZk=/ G4G B(b/mZkG1=xxBRANb0s"CCrxN"CCx¦֢0Bxײ"9#CxBRtGBbIZk/= G4G B(bmZkG1=/]tR]ݢ֢6JJ]B (4G0B8bTZk(4G B(bILZk%àyB#B/ "!/ /=4GGb# @4G`BhbzZkPP]H=qGsGPBXb GZkGX]`]hp#k#~X^`^hGG@8=0]@]]=I G0"1TG B(bdZk = G4GBb/;mZkG1=BRAN@b<s"CCrN"CC¦֢0Bײ"9#CBRtGBb*IZk/= G4GBb mZkG1=/]tR]ݢ֢%BH#CTGGb#@PPP4GBbz{Zk=]H}!RG`Bhb|ZkH4GG@b#/@GGb#/^GX]`]hp#k#~^ G0;! CG4G"G [({/dZkG] 0#k#GG>^G #k#~H^P^XGG80=(] }$B 80=(]tG0B8b/RZk/@}"C@="tG B(baZk  =TGGb#P@4GBbMNZkGH]P]X`#k#~(^0^8~@GG G ="]"tG0B8b2\Zk/"G =]2v@J0@B4G@BHb/SZk =$: =]2v@JCtGPBXb?rZkC vH@@.PJ>4GG(]0]8}@P#/k#~^ ^(~0GGG=/`0Br G4GBb/!NZk?&1"B_&R"]="GtG B(b3RZk=/ %&"=0F4GG] ](}0@#/k#~^G4G [({/RZkG] #k#~(^0^8~@GG " =TGBbiZkGJ="]"tGBbiZk/4GBbjZkG:4GBbMZk0 HH=<!!&H&H@="]"tGBbiZk4GBb}MZk0 HH=<!!&H&H@ @G =011&J&J]<R2FJFJ2BGG4GBbiZkGG(]0]8}@P#k#~(^0^8~@GG " =TGBb/GiZkG6="]"tGBbqiZk/4GBbiZkG&4GBb/MZkH`="]"tGBbZiZk4GBb/MZkH @GHGG4GBbiZkGG(]0]8}@P#eW$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1"Fk#~(^0^8~@HGG " =TGPBXbhZkGB="]"tG B(b!iZk/4G0B8bfiZkG24G@BHbLZkH=La="]"tG B(b/iZk4G@BHbLZkH @GHGG=L1 #B G}LsGG4G0B8b3iZk@G(]0]8}@HP#kGGG4GVJr1@JFGk#~^G= 4G0[8{LZkGG] #k#~^ G=]@=TG [({/nZkGG] 0#/k#~^^~ GGG"1/ Gb#q@"F`#/ C`R@cs`F`XXGâ֢F/``G"YGGtG0B8bkZkG4G B(bgZkG]]} 0#k#~^^~ GGG#1 F `#`! CZ@G@Xc{XG#1 F/ `#`!GGGTG B(b/|ZkG4GPBXbgZkG]]} 0#k#~0^8^@~HG#G=11 F X=!X!!GGCcjO[C]4=8!$=G=01]"TGG0B8blZkG "TGPBXbrZk $"G = ]GG"G@BHbMZkG0]8]@}HP#k#~^^~ GGGT##J GTG0B8bnZkGTG B(b/FZkG]]} 0#/k#~^^~ GGGT##J 4G8B@brnZk4G(B0b/FZkG]]} 0#/k#~^ ^(~0GGG= ]}TH/ = ]}G0B8bmZk= ]}G B(bZDZkG] ](}0@#k#~^^ ~(GGG=TCCJ@=TG0B8b/oZk=TG B(b/7hZkG]] }(0#/k#~^^~ GGGT##J 4G0B8boZk0@4G B(bgZkG]]} 0#/k#~ ^(^0~8@GGG,$  Gb#@TJ G=]"}"b#y_G0u =11 @G@b#_GGG ](]0}8@P#/k#~^^~ GGGT##J 4G0B8bnZk4G B(b/KvZkG]]} 0#/k#~^^~ GGGT##J 4G8B@bfnZk4G(B0b/|ZkG]]} 0#/k#~^^ ~(GGG=TCCJ@=TG0B8b/[nZk=TG B(b/|ZkG]] }(0#/k#~^^ ~(GGG =TCCJ@ @"TG0B8b/[Zk=TG B(b/iZkGTGPBXbnZk4GBb/SAZk  =TGpBxb/kvZkGTG`Bhb)}ZkG]] }(0#k#~^ ^(~08@GGGGG/L`,H/HTEV@K/ @G6dKD`Gb#?_TJ 4G@BHbEjZk4GTG B(b/CjZkGGtG0B8b/iZkGTG B(b3jZkGGtGpBxbxZkTVH/ % eG=GGtG`#PBXbgHZkG] ](}08@P#k#~^^ ~(GGG=]@Gb#_$#!1 @ @TJ =1CTG0B8b/KlZk=TG B(b/?DZkG]] }(0#/k#~^ ^(~08@޴HPX>`^h~pGG G G]}}Hʠ/ T*#H/ Tj@&pGTjGT*V#J ]_F@0jiB0jGTJ'[GTJ0*/ 0J 2A0$j iB$ 1@ @F`FD@ b#_&,A&H&<GG AZjGG4G@#BbGZkGJT*#H GG0b#o_GGGb# _,j 0`A,jD/6 4GBbdZk0G4G0B8b/QIZkGe!/`? GG@0B" GG0b#H_GGGb#_G D` 4GBbdZk@ 0@GG"G BJZkHB5IZk@, 0@, 0AT@'FT,*(*/ GG0b# _GGGb#_TjcI `L L 4GpBxb/~ZkL0T*#H T*_&2FT*Tj `L GP `"GtGPBXbq~ZkL D Pb#_TJ$@DTJGG] ](}08@ݤHPX=`]h}p#k#~ ^(^0~8@HGGGG ] }}Gb#_GG0b#y_=$TJGb#_,GG@b#_YG b#_G$%!1 @ a@9 TJ $%1#B $B G$E2CBGG4Gb#_ / T%#H/ G=b#_GG@b#_G b#]_G=?D/ $01B p@T%v J/ G?"_""b#@Gpb#@48%@D @T%#J/ $E CB/@De83tB11`BG_""pb#@ D Gb#x_4%/ Gb#9@TvHGb#G@Gb#_G ](]0}8@HP#k#~0^8^@~HGG=]}`ET&TX"B/ 0¦"1"B`R"GG B(bkXZkl4=!4#=12Q B@B/\@1Q B \^ 0JJ">4^04G  G #k#~8^@^HGG=] "4G(]R ] C(= 0B(]@N@000JJXF04G(B0bMZk(0@(( = B  G8]@]HP#/k#GG>^4>04GG #/k#~`^h^pcGG@8=c@"1"=c080= NB.88=0N0B@CH=8=8]0NBPB0@ =@.@J0@@= CP CtG0B8bUZk((XX]@ }P0PB0X4GcG`]h]p#k #~^^GGx4Gp(0JJ ("! C  (`0JJX("a! C\=X"C  CTGBb~Zk0 CGpv`Jq JqFpGJuSJF "9#C8]}aC}=GAv@JpJPFA}tGӢJtSJFӲ #C=]AC]}= @=="C=}GӢvJtJFӲGHxSKD] b{#Cz=B]GvJs`JFݢtGK`SHG= BZ#CY}=!@==(BR2GJGJvJr@JFGJ`SHF("9#C8]}aC}= B=}`4G(4JJ (¦"C ײ #C0=#C BZ#Cp= CG0B8b2AZk("!!'H'H 0("1"C B2 bs"C0"C "Cp"C`"CG0B8bAZkY= ] &s"SB/Q@c(5JJ ¦(⦹"C  "9#C0]#C b{#Cp CG0B8b/@Zk/= _&DR"2B# bs"C"C "Cp"CG0B8b/@Zkxx/)x= _&DR"2B$ bs"C&"4GtG@BHb/,lZk( HH "("C " BR"C0}"C "CtG0B8b/@Zk4G "(F "(BR"C bS "C0"C ¦"Cp"CG0B8b@Zk "Q4@FQ(bsF t("C ¦ "C0#C "9#Cp]#CG0B8bn@Zk "Q4@FQ(bs3gJgJ t("C ¦ "C0#C "9#Cp]#CG0B8bM@Zk "Q1@FQ(bsF t("C ¦ "C0#C "9#Cp]#CG0B8b-@Zk "Q1@FQvè} &"tF/ `(5JJ ¦(⦉"C LØ= _'Z#:G (b{G `("! C 0<À= _&R"2F (F b("C ¦,à 'D#F (BZ_G "Y( C bÈ= &D"0D (BR2GJGJ "Q(bs"C t (5JJ ¦(#C  "9#C0]#C  CtG0B8bZk è/= `"C4GpBxbZk(x("|!DP"C4GPBXb }ZkT("|! @ T("|1BP](bxsrBGG&"4G@BHb/jZkG`b@4GG]]#k#~^^GG C" ! CTG b@Ә C"! CTG b@G]] #kp#G@X> @hG~(^0^8~@HPGGGX=X]XL@#CaDGGCG`@=X  G G9B@h vK hvH C8"! CTGG b#@@`=!"@=="C]"CTGhBpbvZk   GXB`b.mZk ]&:"GtGHBPbpjZk]$ = @==`]RQ}`B}hݢղ`B]`}{z@=&"= B=4GG(]0]8}@HP#/k#GH> @hG~^ ^(~08@GGGH=H]HL@#CaDGGCG`@=H  G G9B@C(#CTGG0 b#@/P]2X}S" B}Zk4GG] ](}08@#/kp#?G~p^x^GG=80=(]=y C/ 4G(= BG(==8=10=99F 4G v" 9v K "1v J 80=TG B(b/wZk e0`8]RBBX]`4B``ݢhݲhh= Ch='{#G/4GP hh= Bh=8}sB8FPP/4G@ݲh=8]Z:Ch=hh@h8=1G 4GH] hhBh&"B8FHH]0@G@]@}/ `GBb+lZk0 C4GBb/miZkX=`]"G8B%}ZkX"C`"CTG B(b/wZk 0= Gp]x]#k#~^^ GG`&"4GBbLiZk+!'H'H0D/ & "4GBb>iZk4GG]] 0#k#~@^H^PGG= h,Fh- C  "1"CTG ="C ="tG@BHbpZk= BR"CG(}(}"G0B8btZk/=G8]G8}"G0B8btZk00 0]&"GtGBbhZk4GG@]H]P`#k#GG(C5 !$H'H"FQs0HRPJSFQ@@ 6 1$J'J]R"@F3t2JA2H4D30 /ިR$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1Q"Ij'w) 0>^#H㊿pѺ gW"D;d\b=$Ŕ[vmmY0)Sc;q&d+.VB~(19,DcD^6$TlGwi#h=!|_U𤎝)k8+="6IӾ~K1OC4S4AJr}NNRt֧S"87ߢ~v숞eTb [EÂ9Yt2huE6vq 8liZ1Y *TO/*d`5x3#'bƛ(@! (tq<@,TތfҐl)4-+vT|d]ȿ:d˿h 5k֐c/ ߮7-3K@N&}:}x=\y߬:ILѨt8NZГPVqnZ&ZBx,ǒ8b9q%S,H;E?]漎*_W% J%1L2Ցu;уЍ$>/e0}JMwO1ڵExhY#b\~3lV ջd\L`ެ3apVJ.Dž)7ǔsv/v9Tλ }MoC5aSí1)q+@\Y Ud J~;>uJ'm"ő :)7Z˭SDo~ R_QN VmGXA-X* luz9-l~{Z#bddG70 [gn8/ӇgQ-p+ԜK#5-}.+¿mbLms\sC^lAh[t1gBgd ,2ogŶߕĎ4_&UF?"r T(6mxX rcW+: p8C ;yplE  ? mG(m>6*Z\j_ӍKK ~pLnlhXHHkQ`WB_0J rYɜ^,n͆j:NUôfl ]gkQs<:f3{1͓ {EA8[{͢'Cԇy2gIS7^d](+XEE%Vq@Wk" r(\8i5➃PJ }S#'M={ n' ' 'ŏo`FÏ@@8wV>lR=p!T z[}(sj'vu.S]'mcxKܩ'^Yh[:^eښ4b vLN)^:B;gN .Up֊c&Y>v}68nq;8 AL31ـ)QHX[@腿v}Uׅ5B X;W6"Ih,n,}z'A̓ >94JV7* ƨ|Ƌ y3:\“9dD$LP8Lf,A&,\-=haJ@A0C좊F^SņQz>"x7FL};"~H7(RLW-ҍ0>'Gn%#= ˵@UL:&[R~J~-_6*,,QmOv>CIzML 4 l3OIweNh=a=fBGةoMՉ{,>wzRs4=4?V :c$/5)hWUE 殘coA][H<+O M禰}$Gy2i>`Y [tƻ܉W JY5yDeL* P@7|X?AP5+=CoC0F0_&D;<KL|ֹ|SNKNrT|ȥ=ݩ K- *A195ɺq=s",ѹhN#$]e72%fUA# +V9ߜTS-sMNHd(o>_FMa@f_p?p눆 C Y<ࡻJ[>/u@wB[ԐhHa㤹~'kĆzk ?OFаQs Yn`QK l2#nA`uS͎I`@2@ZSaa_49-MWXW]J03pn$sAM V;6j^ )E,K*TN^VF$||o{sTh尠!)B7V^C[DVaDNd/a?ϮU)*Mta[v7DGP21HڨcM%jw.jݡO''59}ly 9nn;E5eaXTZ&Jzxpr!iQ u4 MI͢tF<Y#ࠤp3jзQP3nW6/ΦD+*EETz2*1 V(b6_Ɔut=p$Їg~mHëgfv*ॺVHKg|# 4N 0g]zQXv8%R~Г/(D=| ۠^^\\% $q4dpIѺtX;ԁ`V"xLĨm->H1g4V|JAP6+uˍKh]ԫ.ER 4\6-yo$[]_W\sUȣZcQ3c*h3= (۫6W,<(RGpJ$>O67!zB>>P'fPI^_WfWw}~9VX]A^ʊl|x\_5e—ܼGpb0{2)CF<0t6ݛ| B.TX(AvcPHFP#$7"ͫM ݧMx)j\>8w*=+ުJ!WS KU /ECtHT_M]g}>%dSjȭs\ Uj:Lo]:SDhDԇ-i֞%reӾW)W%Yh[>v1A f2&ݑ߿"w<]aKGMbҶHeu B9Ib"K&MḾ  .Kb|(0ݩ'rcz*5r R* K8IxXz*Ǹs7pV_wc>q\SPaA.?J/ms=4>$uP.a8H!qW?!!#6RQxI*!{,B5m`Y LA5j΢ĥUD'<Ӥp$0T056q;@&>_W5N qA `6m:8>}[4CgrMu8o[ԞfhE2+]>2ᑸۈDuT6LPs@Dr˾=V7Zl~$yͳ@UQDln}ЯS9 ?r9 ;QWXnS0‟WCD 8s$v CӍ1E( 18_0<͚]cɑ!.d?\3'$#6>qlMW,AOM+T:̠r%?Q'LU^6fm}rQ#Тz%C^21 '  utWj ˚vǰiجK8in܋gŐX.tmzvIIHO#0,&\b""6Zo#.L"tւo4)ḁ4*x*\Z>sv$\U03Bp֢=A)(ObNɛ4mc.= *u;ё, [Jj;%{V Bcᚏ0ky[M7" C3ޒGpoy C$g ;(hʠj>. _\O'|\m{EF=Ci/$YlܦT^V$LR]A/!EJWv3ĸc"`2x5h&;-.sYWȹw]Ar6[xҬ+BFBVMJm~r|+57W;f5ifwNC ^"%je 9"U^TUCQ ]Ez)]rCM(#Իꑶk*M/Hw>Jio4ڗ箅]cfգي؜Yl9rfDc.T\T0hRۻe{5 ~l3.yBu#5צqXTA4?U.UC)Y;vN5f'pb68f'4ӊU R)ԴD| HƼ,gp)S&:51{F;y]B,=U+r!G\ qOٍq<$gB,u!u"7U; 2=]>*^AYD0],53dV4& fSDh $lgdQƦ ޱr#e_BٴRp]P@خ3FԲ3@ .o0Q')^e`)]h7Q|"ue?t?0Ƈ+xy\~ ZWYP|O{s3ǯEgчw9" yC!q9 zNJ !"S[ #.!q2%=Җ>!x2Z>fBgBJ_`&`XгP Ƣ%kO*H{ |¥qoU3/F=݈\nb͛X'(G9_StH,t!o2(fKV޸/X6~dK ණ6:3TrvQc% A[vH*HLo sO%t{hG?ϖ%sXLtC_]Sp8STxrLf7,KԈʭWQq' 6&n=b΋%`΍'j+'WIËg':P~d0KJU @M Z6ഠA&) &fNkp[2sh?(œ[GT5P5ԨoJAw#Ap`\ ZM,Q* 6 4qbPN$?2қ4EU*3MsQ$g<3JsLP6Z0Q(y/`FԜ%56x%P3Ja ?Ev`L^i q}!StInȯx=/YUՌX1E?zKI+j8D&uV24s^,2찊,SAU60 o\Q9IsNB&W)-PV3ҹ0ǥG0?l],պ/B  tLT|y"r3O`am"ܴ];RKaVNκv+8週֭I>4{ {D~Epꧭ1sw`c3wc◚{;H. gEWv^gf{Sي-%!|:WE}R,B7/c4Z:Xo ZCjYg'i–n۽;jGkf)v Èڏx^niٽɝcm8z\B ovlh :#1W_nFzf+T^z<2JKVz&a]28qTKh)+*WVG`}/Tb zsL5qܴهp桪ԡ~1 zXqWSCx,a(GHGPkP9W)nw4($yPT)ԓ((1k`t=5a"+?eW-Vu ؁$Q-$øƲ#}6)rϥj$[SӚʀYn1d#K>0d#7V6nP`tvq@Ot7^ANН=> q4J?ucr\eݐQ<2sA&br`sᖚ7ĩJb dG4e. E0tH<c^)ɾZ?$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;17#"h $>4!!'H'H]R"@Fq2HTJF,>4!!'H'H=1" Frt1HSqJtFr/ `,= G#k#~^GG?$z! D0JJuB=<GGv#_=}4GGs GV vlhZkG] #/k#~ ^(G=G[PR" ]=G=B]"C=]}3dJfJ4JJG([0{*zZkG ](0#/k#~ ^(G=tG[XR" ]=G=B]"C=]}G[{zZkG ](0#k#~X^`^hGGH@=$ G]X=" =(= CP=P]2v H`H D2PTGJsS`JFP = P=]"CQPBPPPBP" !!'H'H=B!R"C]H}H,H0B ="C]"C}"C( CGG0B8b{ZkC88@] =tG B(bRVZk88GX]`]hp#k`#?G~^^GG=h`=X]=y C 4GX= BGX==H?&0=G]"]8=#Cp=p=vHq JDp=TGJaS HFpp=]"CQp=!@p=pp= Cp=H H" 1?F(=H" ! C,= H 4JJ(H"!9#C,=h=h]1,1H =0@B$]0"C(=#C = CH}`4GtGx8=#Cx}"GBb {ZkCPP ="C`]=tG B(b}eZkPPG]]#k#~X^`^hG#GH@=(0=",=@4G00 CH=4GtGb#e_w"D! CH=4GtGb#[_/l= CP=P=GvJr@JFP"KvSJGP=0]#CYP}( CP=!@P=P=P]@BP]"CGGGGGG0B8bzZkC GG0u=JTJF0:4G(=@(]TGCD0r`KPJF0+}0`BTGCF0ѮwJVJF0Ѿ!PC(( CH],=tGBbdZk/ "1"C]GtG0B8bfZkGX]`]hp#/kÀ#~h^p^xG#G`X=P]PX("\10,, 0Js0JA 0H@H4DD0<<(P"C`=GtGb#_4G8=!Jaq H!F8=G8}`JaQ HaF8}`<`ݢ֢8vKvJG84G0]AKvqJVG0]G0HvQJD0X4G0}v`Ja HaF0}"C "CGGG B(bwZkCF?"H=4G@Jsq`JF@G@JsQ`JF@H}"CD}G@}v`Ky KyG@} =1&J&J= C@"C8"C("C0"C (GGGGG0B8bUwZkC =1&J&J=}`P4G 0JJ4G@BHbwZkGh]p]x#k#~P^XGG80=(] } 8]R2FJFJ@0}s3fJfJ/`B/=8]R2B }88]R2FJFJBB/= 8]R]A80JJ8=1B]1B@0]r3fJfJ0@Y-@ZkC@=@GD] @ }885JJB(ݢG0]Z:FKFKB=80JJ8=1B0D ](}4Gh84JJ8ݢ֢B]1B}H}0=a3fJfJ0]RY/ZkCH=@GD]@8}s84JJtB}ݢ6Bݲ]@C/@},H8F/=$F/ ]0@B]}31`B}Bݢ=B"V/VKݲ8D=$D/ 01B ](}8=99&K&K8]Z:CB(ݢGGP]X`#k@#?G~h^p^x~޴޵GG=`X=P]8`=1H=H=`0JJ0C@H]@=YBL@808=0 C8=88` &9#C8 CtG0F8f6LZk88= `0JJ0B88]0}2SB21@B(](HX]#CTGG f#@= (H=X}S"FHFHXP"CtGf#^@C  ] @ }/`H(@0@H4G=H}@ tB`@HyB4GP= CG/P]H}zGh]p]x}ݤݥ#k#~8^@^HGG0(=0(== CtGb#^_GW0=1$=}$3tB } ݢ 0]Z0}{;fKfK[C=!AC=/ ]/ @0(=TG8B@b{Zk/ 0(=bs"C"CG(B0b/wZk0 ]"Cbs"C(}G(B0b/wZk0 ="C(]bs"C"CG(B0b/wZkG8]@]HP#k#~8^@^HGG0(=0(== CtG`b#_/GF0=1$=}$3tB31`B } ݢ (=99&K&KC0C0}{0=!!&H&HaC!0@==  0"CTGBb/C{Zk 0 ]"CTGBb/7{Zk 0 ="CBR"C}"CGBb!wZk4GG8]@]HP#kP#~P^X^`~hpx޴޵GGH@=8]0}H=1(=(}H0JJpB (] }SB3@(}6`JFpF}(]D@B@@0@ =@"D(]0@B8P"FHFH8=fs"CqGf#@C]@}/ `(D@@@0@(4G]0(GP]X]`}hpxݤݥ#k#~@^HG80=(] }80=(]}"C{#_G=1}6`J?FqF} ݦFB0B4GG@]HP#k#~`^h^pGGXP=H]@}XP=H]}"Cb#^_X<]<}2SB8]4(]6@KGXG(]}(D`CP=@0@4X=1X}s3fJfJ3B4]12B0=4G H$P==@}}X8}"C ]"CH}"C0"CGBb/;vZkG`]h]p#k#~H^P^XGG@8=0]@8=0] Cb# _G,@=1,=},3tB(}ݢ֢6KFG=]_G:C8};C0 C$=@@ HHB$= @ @(}"C "CtG`Bhb/uZk4GGH]P]X`#k#~X^`GGH@=8]0}H0JJ=H}s}]P]@0JJ  }@@P Y|ZkCP=@GD]@G8}8ݢ86Bղ0=] }[CY0==B0]R0B4GGX]`p#k#~(^0^8GG=]"1"C]}G b_    bs"C]}G b_4GG(]0]8@#/k  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNQRSTUWXYZ[\]abcdefABCDEFGHIJKLMNQRSTUWXYZ[\]ghijklmnopqrstuvwxyz{|}~AAAAA`^CEEEEIIIIOQQQQQP_XXXX\VAAAAA`^CEEEEIIIIOQQQQQP_XXXX\P#~^^G<8=,](}$8 H0G=(].J/@GJGALC@J@ALCDALC@Qv@K@QALCHALGC@HsS`JD@AL<=CD!ALC0@Pv@J`H@F@PALCH0@@ALGC@HaS HD@AL,]CDPALC@3v H`H D@3AL(CH0@@ALGC@ !HrS@J2D@ AL]#CDSALC@4v H`H D@4ALCH0@@ALC@SAK@SALCDALC@vJ@ALCHGG@]"$}GGG [({/CuZk  8F$=Q.q.QJS qJSFC = G]]#/k:.Q :J0FqP#~^^G<8=,](}$8 H0G=(].J@GJGALC@J@ALCDALC@Qv@K@QALCHALGC@HsS`JD@AL<=CD!ALC0@Pv@J`H@F@PALCH0@@ALGC@HaS HD@AL,]CDPALC@3v H`H D@3AL(CH0@@ALGC@ !HrS@J2D@ AL]#CDSALC@4v H`H D@4ALCH0@@ALC@SAK@SALCDALC@vJ@ALCHG4G@]"$}GGGh[p{/tZk  8F$=Q.q.QJS qJSFC = G]]#/k:.Q :J0F=:$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1/"yqð#~ ^(^0~8@HGG$ =G }3aJ} _#]0vJC$]"}"Gb#_G8`D Gh0vJCh"]"}"Gb#/_G8`D GGLC(QAJ(QLC,LC(բvJ(ղLC0L4GC(zaKyS KyG(zL C,L=C(rv`Jq JqF(rLC00@LGC(KvSJG(L]#C,YLC(vJ`HF(LC00@LGC(JsS`JF(Lh"C,Lh"9C(vHy KD(LC00@LC(;!J(;LC,LC(vJ(LC0GG(]"GGGGBb/sZkG8`D/@.%.JQ %JFCGG ](]0}8@HP#k#~H^P^X~`hpGGLH=<]8}GH H@8=!!H0=TG(]4G TG]"? =@};v`KCL]"}"Gb#_G8`D/ G0vJC("]"}"G8b#g_G8`D GGLCPQAJPQLCTLCPբvJPղLCXLGCPzaKyS KyGPzL CTL=CPrv`Jq JqFPrLCX0@LGCPKvSJGPL(]#CTYL4GCPvJ`HFPLCX0@L4GCPJsS`JFPL "CTL4GCPvHy KDPLCX0@LGCPQAJ{S`K[FPQL"CTL4GCPvHvJDPLCX0@LtGCPJzS@KFPL]"CTQL}CPvHs`JDPLCX0@LTGCP8!HwSJ7DP8L<=CT0LC0]PvHr@JDPLCX0@LCPJPLCTLCPvKPLCXGGP]"GGGGBbrZkG8`D@.%.JQ %JFCGGH]P]X}`hp#kݞ#~"^"^"~"""޴""">"^"G#Gx = G GG  HpTGh=#}?"=.TJ>),)H{ G`Hq E;p EQ2JW@B;/u@bs/ ` xb#@/ "4GbSp4vJCx]"}"G(b#_G8D GDð0vJC("]"}"Gb#:_G8D G4GLCQAJQLCLCբvJղLCLGCzaKyS KyGzL CL=Crv`Jq JqFrLC0@LGCKvSJGLh]#CYL4GCvJ`HFLC0@LtGCJsS`JFL"CL=CvHy KDLC0@L4GCQAJ{S`K[FQLh"CL"CvHvJDLP=#C80@LCJLCLC{v`J{LCGTG]"GGGGHBPb/qZkG8D/ (.H.(JR HJ2FC5@`&a"@G8JuQJF84G8=!KuqJ5G8=P]8vHz@KD8h <G0]@JpQJPF0]4G0JpqJF0"0vJpJF0"4G ]@KxQKXG ]4G HxqKD G =v J`H F =X $G(ݢJsQ`JF(ݲ4G(Jsq`JF("(=v KpJ0G(=h", / b{P= >8"0="H]" }"@"("GG(#8B@bnZkGG8D . J%8D_H}3v`J cB`45`@HHݦ3vJH1vJ "]"PB/ rZkHB}pZkH) ,a K@ HD <.J &a"DUGG4GGG"]"]"}"""ݤ"""="]"##kI/Z IKAG;?F; , K@ HD <Ð#~8^@^H~PX`GG<8=G8}3aJ0}TG( TG}?"="}0=!v HC<]"}"G`b#_G8`D G0vJC("]"}"Gb#_G8`D GGLC@QAJ@QLCDLC@բvJ@ղLCHLGC@zaKyS KyG@zL CDL=C@rv`Jq JqF@rLCH0@LGC@KvSJG@L(]#CDYL4GC@vJ`HF@LCH0@L4GC@JsS`JF@L "CDL4GC@vHy KD@LCH0@LGC@QAJ{S`K[F@QL"CDL4GC@vHvJD@LCH0@LtGC@JzS@KF@L]"CDQL}C@vHs`JD@LCH0@LC@K@LCDLC@Yv@K@YLCHGG@]"GGGGBb6pZkG8`D@.%.JQ %JFCGG8]@]H}PX`p#k#~^^~GG8,=(],}3aJ0} 0]:v@KC8@]"}"( b#9_G8`D GNGLCQAJQLCLCբvJղLCLGCzaKyS KyGzL@ CL=Crv`Jq JqFrLC0@LCJLCLCzv`KzLCGG]"(}GGG@BHboZkG8`D@(=.!.JQ !JFCGG]]}#k#~^ ^(~08GGG=]4JJ&"4G0B8bT[Zk $1&J&J]"b#_G8`D/ G$1&J&J]r3fJfJ]R"@b#_G8`D@GGG] ](}08@#k#~^ ^(~0GGGC2FJFJ/@&"4GpBxb[Zk #1&J&J]"b#._G] ](}0@#/k#~^ ^(~08GGG=]4JJ&"4GBb/ZZk$1&J&J]"b#_G5`@/ &b"p@$1&J&J]r3fJfJ]R"b#G_GGG] ](}08@#/k#~^^~GGG(=$]"}â6JJ&"4G@BHbZZk(0F0#1&J&J0]"}""b##_ G]@JpQJPF]4GJpqJFvJuJF0"$="TG0B8bqZk G]]}#kGG4GGk#~@^HcGG8841"_&R"(],=848! _'Z# ]$=c]@TR"]TGGG"`ToZkc(" ="8]"tGPTXtBZk00cG@]HP#k#~^G?&G@{GG0[8{CZkG] #/k#~0^8^@~HGGG(=]G4GpBxb JZk4G0B8bTZk =1"F ']R }SF/@ G4G B(bExZk/"4G" = ]"}"GBb-AZk/ 4GBbyZkGpb#@G0]8]@}HP#k#~0^8^@~HPX޴`GGGG4GBbIZkGG4GBb/IZkPG"1"b#@G4`"!& F""1 B2GTG0B8b/}Zk/ "!0D "1GTG0B8b}Zkೀ"᳀"1 BrGG@b#@Ӏ"F8bD BRbS ô7b@/ /G4G@b#@Ӏ"oG4GBbIZk/ZGG=G4GBbIZkGTG@BHb@ZkG&"!?D QFFT@FFF¦֢ ƲGG4GBboIZkGGtG B(b/GcZkG4G B(bxZk24GGTGPBXbWlZkG&Q D&& F&bs fG G4GBbJIZk GGtG B(b#cZkG4GBbVlZkp (,G(="4GtG`Bhb/pZk¤Ơ/ Gb#{@G0]8]@}HPXݤ`p#/k#~ ^(^0~8@GGG="]"@{#@G C@/@L@! 0@ @L@1] 2B 0@@@L@GG ](]0}8@P#/k#~^^~ (GGGGxiD @G@"GGGGb#y_"XfD G@"1"GGGGb#m_8bD G@"1"GGGGb#a_ GG@" 1"GGGGb#V_G]]} (0#k#~@^H^P~XG#GG0=4G]"? = $(0 "! G4GPBXbJHZkG"1"GtG B(bAZk"G4GPBXb/7HZk8G4G0B8bqHZk"Ap=">4G>8GGGG@BHbyZkG@]H]P}X`#k#~P^X^`~hpGG@<=8]G}G @4G8B@bHZkH@4G(B0b'HZkG4GHBPbBTZkHG]"}"GhBpb>Zk@G4G= a@/ cLB]LSBR B cLB ݢLB ֢ BG0`@LC]L[C Z @L@8=}LrB R<P8 ݢ<Բ4GXB`bZwZk]^y$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1|"8@ =<0GP]X]`}hp#kGGGGG51`B Gaa4GGkGGGG`a @ A`a@A`aGkGGG q`Bq q4GqQ0PBCq BGU qs"S.RSJGJXDF/L`XGFHF@tGGqs/sKUgB/`"Q0BC B q{#{.{JUgB`TGQ4G/qq3sCC pB!Q,HU@q{#q3sCC pBQR",HU@q{.{JXdF `P.PJF q Q2rBQGTGG/k#~^GGGGw`F/`GG{#_7G G/ 4GG] #kGGGGGG}#l_4GGkGGGGkGGGGGvU@s/sKXF rB1",HXD/"v2Q@B/@GUvGG/k#~^ GG =G= ]u#_u#_G] 0#k#~^ GG =G= ]u#_u#_G] 0#k#~^^ GG =G4G =]@u#k_G/@ (u#_GG]] 0#k#~^ GG =tG= ]u#Q_u#k_G] 0#/k#~^ GG =TG= ]`u#7_Hu#Q_G] 0#k#~^ GG =G= ]u#_u#8_G] 0#k#~(^0^8~@HPGGGGG"G8b#_GGGb#_ GGb#K_"G8b#p_0`@`G="8b#i_Ӡ CG(]0]8}@HP`#/k#~(^0^8~@HPGGGG"Gb#N_GGG`b#_ GGb#L_/"Gb#>_GG="b#8_GG`b# _/GGb#l_GGb#g_ GGb#,_/"Gb#_G0`@`G="b#_Ӡ CG(]0]8}@HP`#k#~0^8^@~HPXGGGG4G]G4G"Gb#_GGb#_GGb#,_0@GTG b_/ GGb# _V`4G%SG="b#_GGb#w_/H`4G%EG="b#_GGb#_0@GTG b_GGb#_/ GGb#&_*`TG%'G="b#_GGb#_ GGTG b_GGb#_G="b#_GGb#_/`TG%G="b#_ݢGb#3_G0]8]@}HPX`#/k#~0^8^@~HPXGGGG4G]G4G"Gpb#e_GGb#_GGXb#_/0@GTG b_ GGXb#_/i`4G%fG="pb#F_GGb#_ GGb#,_/V`4G%SG="pb#3_GGXb#m_0@GTG b_GGXb#b_/ GG8b#_8`TG%5G="pb#_GGXb#O_ GGTG b_GGXb#D_!G="pb#_GGb#_ GG8b#h_/`TG%G="pb#_GGb#_G="pb#_ݢGXb#_G0]8]@}HPX`#k#~(^0^8~@HGGGG"GHb#_GGb#H_GGb#_G="Hb#_GGb#_/GGb#_GGG="Hb#_`G0b#P_GG(]0]8}@HP#k`#~p^x^~GGlh=d]`}\XGhl=="="b#4_G/=8]"b#f_tG8"b#_GP=0Dy ]R(@8@F/`X@F@80Tݢ86B(ݲT=9# =8}<`CT= @tG_8= =T]82TB]T"08<=CT]Z#8C( 0}(}(] @0"(="b#_G/`G=(=\=! !C/ TG5(\=\]R@0=XTG0B8bfZkX ,A H < "="b#_G/`G=d=! !C/ 4Gd=d]R@ =`TG0B8bfZk`],@H<GGp]x]}#kc#~^޵GF?F  K C 8 C0#GGТ4@BԶ""XB C= C  ] C @} C` C C {[E#@ZkcG]ݥ #@k#^^~HvHDG?#9"K vHD@HG#~ [({|dZk~#ДHCCC* 1@(',HG! @.J#yqJ\pKG"1@@@,HGc pJ#@/K0BB  ^~ #kG G  p#~ ^(>0^8~@HP޴X`h>p^x~ GG?G==]G0M8mwWZkCCG0M8mpWZkCCG$1@%%,%HG 0U%@3"1@@7@C/CKc 0:@0$@,"HG(<@|/|K(M@:/:K0yC&1@ 0@CCCC_@ GG (>0^8~@HPޤX`h>p^x~#kCC CCHG  @ ` &0@?@?&8-5H8&&&&&(((`)`)`))P/P/P/.... / / / //////ab+0,0,,,....E)))++++*********.`.&&+H80311113333333p4p4p4p4444444405050505`5`5`5`555555x$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1\"556666P6P6P6P666666666`CPDPDBBBEEEE`C`C0D0D8-8-HBHBHBHBHBPDEPD0DE0DPEPEPEPEp3p3p3@?@?@?@?@?@?@?@?@?@?@?@?@?@?@?@?@?BPD0B@?@?@?@?@?@?@?@?@?@?0@?@?@?@?@?@?@?@?@?@?@?BBPD00H80;;;0:0:0:;;;;;;aa0bbcb`<`<H8aa0b0  Dh0Pp@dEEEE       $ < H T t            $ 0 < | ! " X$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1E"# $ % & (' T' `( l) x* + , - - $. 0/ <0 H1 T2 `3 3 4 5  p |      d d @   l|`hH 08PWPhWh][Y [(Z 0@P T` t    #$ ( ,!0T\!`   LLT dp^( l  $ D; $ t; + s$ ; $ ;    , 4 X \ ` d h l &  &P x &0XQ0DT\ `hp48 = !`'% (0h `"p P`p@!Dhlp|$$L#h048<dhl | $48< (  ! !`![X"^"[#[p# ## #### $$$ $$$$$+$,$((%P%`%&&&TXXp,$w9\LO?%H 4˔N @\> H"-˲," Ȁ3, ȁ"K "" DV #,#4! ,D_|p<3 QwPp/0O˿ AB#2,O 03 ,@,/˲3"яȲ,"BP  """" @ """ R!H,@@ H  \ `  """…H$""""E 0@ @ >mH@@@ @ @ @@ ?T$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$DWSHARE.EXE;1tE@  UUUU_JUUj @U񡪪RU**jUUU*VU  (+1CpDpEnP{`molI(mN@mI 0h%0/090p>0F0M0PX00^0px/ft :T8 II 7 p0#`8&8') 12378>?K@KQ@R`TTTZpZ^_iilo phphr@uHutK0@@0@@p`  0 @ P ` P  @ Pp@60F@FFFGpGpHHpI NNOQRRSpSpTTTUpUUWW`XpXYY`i0uX 0Ppp !%0%& ())).p120378 9@9=>?pA B0BBB`GGH`HJ0KPKKK@NN RU@VWY____0aace`nnooooPpppqqrs stuu{,<<0>> @@0Ap@`#0#%'229:=A= 0#+@+ ,P,D@EF@GPGGHH0I`IIMNO O`OpOOPPP`RVW WW0XXXYZZZ]]p^bbc0gpgggPhhh0i@iPi@jjk lo@  P@$$$@&`&p&P(( .P.001112`22237899:p::::P;`;;;0< =@=p===> >@>P>@@A@A`AA CVVP[[0`P```````a@aPa`apaaa`bbbcddd0fpf g`ggg@hhhi0jjl0l@lPl`mwxp P0@P0@0` !!P"`""""# #### $$P%p%%0&'''(0)`-/`0000001 2@34 577788`9p9: :<===`>p??@@@PFFGMMNW@XX\0]p]]] ^^ ``@cdfijkl0mpmmvvwwPx`xx&0 0@Pp!p"""..\\] ]@]eef@fimw w0ww x0x@xx cd0dpd`efiPm {{( P`p @PP)`*`+`1`78?J@J0PpP_no o@oPo@qqrstt@t  |@ NOTES$SHARE@LIBOTS@LIBRTL@DECW$MAILSHR12@DDIF$VIEWSHR12@DECW$MRMLIBSHR12@DECW$DWTLIBSHR@DECW$DXMLIBSHR12@DECW$XMLIBSHR12@DECW$XTLIBSHRR5@ XNL$SHR12@ IMG$SHRLIB12@DECW$TERMINALSHR12@ CMA$TIS_SHR@ DECW$XLIBSHR@DECC$SHR@SYS$BASE_IMAGE@SYS$PUBLIC_VECTORSQQ NOTES$DWSHARE DWNOTES V2.513-DEC-2004 17:1913-DEC-2004 17:19Linker A13-02  .$$ABS$$.@ @8N NOTES$DWNOTES *[NOTES.TEMPKIT]NOTES$HELP.HLB;1+,"f.`/J 4`P- 0123 KPWOP5B67 lģ89GJHJ % Librarian T09-205M ģ9PP 333!65 X.LASTADDANSWERATTACHBACKIChoosing_an_EditorCLOSEKCommand_SummaryCONTINUECREATEDELETE6 DIRECTORY;EVE>EXITCEXTRACTHFORWARDNHELPPInformation_CommandsTKeypadWKeyword_CommandsRLASTZ Logical_Names^MARK]Moderator_CommandsMODIFY`New_UserjNEXTaNotebook_CommandsrNOTESzOPENdOther_UtilitiesPRINTREADf Reading_Notesh Release_NotesREPLY(SAVE,SEARCH/SELECT2SEND5SETO0SHOW9SPAWNiSpecifying_NotesmSubprocess_CommandssTerms_and_Concepts<TOPIC=TPUAUPDATEwWPSEWRITEREADWRITEXS$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`S" 3AWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPS\ڎѶȢ3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRI SELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSp|ˮȢ3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSP TREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSȢ3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCH IFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSka}Ȣ3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRIN@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPS8\ttȢ3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMOD@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSBfȢ3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARD @If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSLdȢ3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYE@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaCHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPS=SbȢ3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUEC@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla $ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`"N ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSo0\Ȣ3 ANKAN ADDANSWERATTA @If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaRpA ģ1 MODIFYGChanges or sets various information for conferences, entries, keywords,members, notes, and profiles.D 2 CONFERENCE@Changes or sets specific information for an existing conference. Format: MODIFY CONFERENCE3 Command_DescriptioniA Use the MODIFY CONFERENCE command to change or set the followingt( information for an existing conference:8 o The title, which appears in the conference headingC o The notice, which appears beneath the conferen Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaWPSI&Ǣ3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSAǢ3 ANKAmandsTerms_and_ConceptsWPS,kǢ3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_Concepts!@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla! Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tfying_NotesSubprocess_CommandsTerms_and_ConceptsWPS!otes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPS@N ģ3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpeci"ther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSͽģ3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_N&@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla& Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t#UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPS3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsO&Moderator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSFgע3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_D ģ1 SAVEDCreates a text file in your current default directory containing the!specified note or range of notes.b Format:" SAVE output-file [note-range]CThe square brackets [] indicate that the enclosed item is optional. 2 Parameters output-file A Names the output file in which to save the specified notes. Ther default file type is .TXT.t note-rangeC Specifies the range of notes to be saved. The default is the notewC you are currently reading. If a Cg$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`j")*@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla'd_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPS%\+ɢ3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_Names, Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t)E ģ1 SEARCHGSearches a range of notes or the entire conference for notes containingcthe specified string.n Format: SEARCH ["string"]CThe square brackets [] indicate that the enclosed item is optional. 2 ParametersstringD Specifies the word or phrase for which to search. You must enclose the string in quotation marks.f2 Command_DescriptionoC The SEARCH command interactively searches through all notes in thesD specified range of notes (or the entire con*n_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPSCT*ɢ3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeywor/@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla9vE ģ1 SELECTCSelects an item from a list displayed on your screen. Also selectsnCa conference from a "shopping list" and adds the conference to your Notebook.e Format: SELECTe2 Command_DescriptionnD The SELECT command lets you select an item from a list displayed onD your screen without having to specify the item on the command line.D When you issue one of the commands in the following list, DEC NotesA displays a pointer (>) at the far left of the screen. Move-mmand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPS=.Ȣ3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCommand_SummaryInformatio2 Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t^E ģ1 SENDDSends a mail message to one or more users without leaving DEC Notes. Format: SEND [file-spec [to-list]]tCThe square brackets [] indicate that the enclosed item is optional.m 2 Parameters file-specL. Specifies a file to send as the mail message.to-listC An addressee, or a list of addressees separated by commas. If youWA use the optional to-list parameter, you must precede it with the file-spec parameter. 2 Command_DescriptionsB The SEND 0TEChoosing_an_EditorCommand_SummaryInformation_CommandsKeypadKeyword_Commands Logical_NamesModerator_CommandsNew_UserNotebook_CommandsOther_Utilities Reading_Notes Release_NotesSpecifying_NotesSubprocess_CommandsTerms_and_ConceptsWPS6$-;Ȣ3 ANKAN ADDANSWERATTACHBACKCLOSECONTINUECREATEDELETE DIRECTORYEVEEXITEXTRACTFORWARDHELPLAST.LASTMARKMODIFYNEXTNOTESOPENPRINTREADREPLYSAVESEARCHSELECTSENDSETSHOWSPAWNTOPICTPUUPDATEWRITEChoosing_an_EditorCo5@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaE ģ1 SETDFChanges or sets various information for classes, conferences, entries,3keywords, members, moderators, notes, and profiles.h2 CLASSb7Allows you to make a specified class the current class. Format: SET CLASS class-namel 3 Parameters class-nameB Specifies the name of the class you want to be the current class.3 Command_Descriptione? The SET CLASS command allows you to make a specified class thefE current class. Once you specify a class with the SET> ģ 1 DIRECTORYe>Displays a directory listing of the currently open conference. Format: DIRECTORY [note-range]tCThe square brackets [] indicate that the enclosed item is optional.F 2 Parameters note-rangeE Specifies a range of notes. If no range is specified, the directoryl% is centered around the current note.e2 Command_DescriptionrF The DIRECTORY command displays a directory of the current conference.E If no conference is open, DIRECTORY lists the entriessing the SELECT (KP7) key.A Move the pointer forward with the KP2 key, and backward with ther KP5 key.r 3 Examples Notes> SHOW CLASSES3 Shows a listing of class names in your Notebook.s 2 CONFERENCE/Shows information about the current conference.l Format: SHOW CONFERENCE3 Command_DescriptionsB The SHOW CONFERENCE command shows the following information about the current conference:D o The name of the last person to issue the SET MODERATOR command3 o Any 9 Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tBH ģ1 SPAWNCreates a subprocess.r Format: SPAWN [command-string]KCThe square brackets [] indicate that the enclosed item is optional. 2 Parameterscommand-string? Specifies a DCL command to be performed when the subprocess is active.2 Command_DescriptionE( The SPAWN command creates a subprocess. 2 Examples Notes> SPAWNgB Creates a subprocess. You can issue DCL commands until you log9 out of the subprocess or attach to the parent process. -ﲆ$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`":;@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla? ģ1 EVEEInvokes the EVE editor.o Format: EVE [eve-command]CThe square brackets [] indicate that the enclosed item is optional.t 2 Parameters eve-commando@ Names an EVE command. See Appendix A in the Guide to DEC Notes< for a complete listing of EVE commands and their functions.2 Command_DescriptionnF The EVE command invokes the EVE editor and processes the remainder ofA the line (if provided) as an EVE command. When you exit the EVEOE editor, you returgH ģ1 TOPIC.Displays the topic for the current discussion. Format: TOPIC2 Command_DescriptiondA The TOPIC command displays the topic for the current discussion.tC The topic is note n.0, where n is a number assigned by the system.i 2 Examples Notes> 13.7 Notes> TOPICc= Displays the topic (note 13.0) for the current discussion. wwtes a subprocess. You can issue DCL commands until you log9 out of the subprocess or attach to the parent process. @H ģ1 TPUE:Executes the rest of the command line as a VAXTPU command. Format: TPU [command-string]iCThe square brackets [] indicate that the enclosed item is optional. 2 Parameterscommand-string5 Specifies a VAXTPU command that you want to execute.r2 Command_DescriptionRB The TPU command executes the rest of the command line as a VAXTPUC command. After the TPU command executes, you return to DEC Notes.y 2 Examples' Notes> TPU MESSAGE ("HELLO THERE")? ģ1 EXIT/Exits from the current conference or DEC Notes.E Format: EXITa2 Command_Description C If you are in a conference, the EXIT command closes the conferenceND and returns you to your Notebook. If you are in your Notebook, theD EXIT command exits from DEC Notes and returns you to the DCL level.C If you used the /WAIT qualifier with the PRINT command during thisa< session, the notes pending in the print queue are released.! You can also use CTRL/Z to ex@@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla HELLO THERE9 Displays the string "HELLO THERE" on the message line.wwrmat: TOPIC2 Command_DescriptiondA The TOPIC command displays the topic for the current discussion.tC The topic is note n.0, where n is a number assigned by the system.i 2 Examples Notes> 13.7 Notes> TOPICc= Displays the topic (note 13.0) for the current discussion. wwtes a subprocess. You can issue DCL commands until you log9 out of the subprocess or attach to the parent process. D I ģ1 UPDATEBQueries the specified entry to determine whether it contains notesyou have not yet seen. Format: UPDATE [entry-name]CThe square brackets [] indicate that the enclosed item is optional. 2 Parameters entry-nameA Specifies an entry you want to update. If you do not specify anaD entry, all entries in the current (or specified) class are updated.0 If you issue the UPDATE command and receive theE error message "Your software license does not allowC Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t? ģ 1 EXTRACTx@Creates a text file in your current default directory containing%the specified note or range of notes.o Format:% EXTRACT output-file [note-range]eCThe square brackets [] indicate that the enclosed item is optional., 2 Parameters output-filerA Specifies the output file in which to store the specified notes.A The default file type is .TXT.n note-rangeB Specifies the range of notes to be extracted. The default is the= note you are currently   this operation",E contact your system manager.L2 Command_Description C Use the UPDATE command to determine whether an entry has notes youmD have not yet seen. You can update a single entry or all entries in* the current class or in a specific class.E You can issue the UPDATE command when you invoke DEC Notes to update C an entry (or all entries) in the specified class before you accesss your Notebook. 2 Qualifiers/CLASS=class-namet/CLASS=current-class (default)D Names the classG/I ģ1 WRITEE#Adds a new topic to the conference.r Format: WRITE [file-spec]CThe square brackets [] indicate that the enclosed item is optional.b 2 Parameters file-spect@ Specifies a VMS text file you want to include in the NOTES$EDIT# buffer when you invoke the editor.o2 Command_DescriptioneE The WRITE command invokes EVE or the editor named in your profile soIB you can enter a new topic. You can be positioned anywhere in theF conference when you issue theG@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla  WRITE command. If you have a text fileC you want to use for your topic, specify the file as a parameter toi the WRITE command.aF Use /NOEDIT when you want to bypass editing the text in the text fileE before entering your topic. DEC Notes immediately prompts you for atE title for the topic. If you do not specify a text file in the WRITEl/ command, you cannot use the /NOEDIT qualifier.sB If DEC Notes is unable to write your topic, or if you cancel yourB entry, you can retrieve the text Oe@ ģ 1 FORWARDx>Forwards the note you are currently reading using the VMS MailUtility (MAIL). Format: FORWARD [to-list]2 Command_DescriptioniB The FORWARD command forwards a copy of the note you are currentlyB reading to one or more addressees by the VMS Mail Utility (MAIL).: You can specify a single addressee, a list of addressees / (separated by commas), or a distribution list.sF If you want to send a note to all members of a restricted conference,> use t J |I ģ1 Choosing_an_EditorGIn DEC Notes, you always use an editor of your choice to compose notes. DIf you do not explicitly choose an editor, the EVE editor built intoDEC Notes is used.EIf "your favorite editor" is something other than EVE, you should usefESET PROFILE/EDITOR to specify your preferred editor. If you normallymGdon't use any editor at all, EVE is easy to learn and use for a novice;aFhowever, please read about using EVE in Appendix A in the Guide to DECNotes.@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla<]$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`!"K EI ģ1 Command_SummarytEIf you are new to DEC Notes, type New_User for examples of how to usetGGetting Started commands, type Terms_and_Concepts for an explanation ofoHyour Notebook and other DEC Notes terms and concepts, or type a question.mark (?) for a list of all DEC Notes commands.Getting Started Commands:f; ADD ENTRY CLOSE DIRECTORYr6 EXIT EXTRACT HELP7 NOTES (DCL command) OPEN M Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tN@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@ ģ1 HELPBDisplays on your terminal the list of DEC Notes commands for whichBonline HELP is available, or displays online HELP for a particularcommand. Format: HELP [command] CThe square brackets [] indicate that the enclosed item is optional.b 2 Parameterscommand(2 Names a DEC Notes command on which you want help.2 Command_DescriptionaB The HELP command displays on your terminal a listing of DEC NotesB commands for which online HELP is available. You c@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla EI ģ1 Information_CommandsIThese commands are used to display information about conferences, errors,n8keywords, members, moderators, notes, and user profiles.? SHOW CONFERENCE SHOW ERROR SHOW KEYWORDSt; SHOW MEMBER SHOW MODERATOR SHOW NOTE.& SHOW PROFILE SHOW VERSIONww CLOSE DIRECTORYr6 EXIT EXTRACT HELP7 NOTES (DCL command) OPEN @If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla@ ģ1 LAST*Displays the last topic in the conference. Format: LASTn2 Command_Description B The LAST command displays the last topic in the conference. ThisB command is useful when you cannot remember the number of the last topic in the conference. 2 Examples Notes> LAST- Displays the last topic in the conference.oww_DescriptionaB The HELP command displays on your terminal a listing of DEC NotesB commands for which online HELP is available. You cT@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callajI ģ1 Keypad 2 BACK_REPLY Keypad 1C BACK REPLY displays the previous reply in the current discussion.r7 You cannot use BACK REPLY if you are reading a topic.HA When viewing a directory of entries in your Notebook, KP1 movesM@ the pointer (>) backward to the previous entry with a non-zero Unseen count.W 2 BACK_TOPIC Keypad 5; BACK TOPIC displays the previous topic in the conference. C When viewing a list of items, KP5 moves the pointer (>) backward. 2 CO@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaW Format: READ/MARKER marker-name 3 Parameters marker-namet< Names the marker associated with the note you want to read.3 Command_Description A The READ/MARKER command displays the note that has the specifiedpE marker name. Since marker names must be unique within a conference,c/ READ/MARKER specifies a single topic or reply.rE You can specify the /ENTRY=entry-name qualifier with the READ/MARKERC command to read a marker that is used in more than one conference.rF Issuing t:J ģ1 Keyword_Commands=These commands are used to maintain keywords for conferences. ; ADD KEYWORD CREATE KEYWORD DELETE KEYWORDe3 DIRECTORY/KEYWORD MODIFY KEYWORD SELECTn* SHOW KEYWORDS SHOW NOTE/KEYWORDSww (>) backward to the previous entry with a non-zero Unseen count.W 2 BACK_TOPIC Keypad 5; BACK TOPIC displays the previous topic in the conference. C When viewing a list of items, KP5 moves the pointer (>) backward. 2 CO$A ģ1 .LAST:Displays the last reply to the current or specified topic. Format: .LAST2 Command_DescriptionnF The .LAST command displays the last reply to the current topic or theF specified topic. This command is useful when you do not remember the number of the last reply.E You can issue the command LAST.LAST to display the last reply to the7 last topic (that is, the last note) in the conference.D 2 Examples Notes> .LASTn0 Displays the last reply@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla`J ģ1 Logical_Namesn8The following are the logical names that DEC Notes uses:Logical Name DefinitionJNOTES$LIBRARY Directory for storing notefiles. Notefiles are openedM with a default file specification of NOTES$LIBRARY:.NOTE. >NOTES$NOTEBOOK Your Notebook is opened with the file nameH NOTES$NOTEBOOK, with a default file specification of$ SYS$LOGIN:.NOTE.JNOTES$SECTION The name of the VA\@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.oBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveCcustomized EDT using EDTINI.EDT, you should specify callable EDT as.,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)LDIf you normally use some other callaUL$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`"\@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla #J ģ1 Moderator_Commands@These commands are used by the moderator to manage a conference.2 ADD MEMBER CREATE CONFERENCE/ CREATE KEYWORD DELETE KEYWORD , DELETE MEMBER DELETE NOTE7 MODIFY (or SET) KEYWORD MODIFY (or SET) MEMBERr2 SET (or MODIFY) CONFERENCE SET [NO]MODERATOR SET (or MODIFY) NOTEwwa default file specification of$ SYS$LOGIN:.NOTE.JNOTES$SECTION The name of the VA$A ģ1 MARK9Marks the current or specified note in the current entry.i Format: MARK marker-name [note-ID]tCThe square brackets [] indicate that the enclosed item is optional.r 2 Parameters marker-nameiC Specifies the name of the marker. If it consists of more than onee: word separated by a space, enclose it in quotation marks.note-IDt@ Specifies a single topic or reply. The default is the topic or! reply you are currently reading.D2 Command_Descriptio`@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaHJ ģ 1 New_UserBFirst add a conference to your Notebook, then open the conference.FTo see a listing of the conferences that are available on your system,*and to which you are allowed access, type:! Notes> DIRECTORY/CONFERENCESOJThe name of each conference appears in capital letters. The title briefly(describes the subject of the conference.# NOTEcC If you receive the error "Your software license does not allow B this operatioJ ģ1 Notebook_Commandsd:The following commands are used to maintain your Notebook.Basic Notebook Commands:D CLOSE OPEN SET (or MODIFY) PROFILE UPDATETo Get Directories:I: DIRECTORY/CONFERENCES DIRECTORY/NOTEBOOK (or /ENTRIES)To Maintain Entries:B ADD ENTRY DELETE ENTRY MODIFY (or SET) ENTRY7 SELECT SHOW CLASSES SHOW ENTRY To Maintain Markers:8 ADD MARKER (or MARK) DELETEc Format: READ/MARKER marker-name 3 Parameters marker-namet< Names the marker associated with the note you want to read.3 Command_Description A The READ/MARKER command displays the note that has the specifiedpE marker name. Since marker names must be unique within a conference,c/ READ/MARKER specifies a single topic or reply.rE You can specify the /ENTRY=entry-name qualifier with the READ/MARKERC command to read a marker that is used in more than one conference.rF Issuing td@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaK ģ1 Other_Utilitiesd=These commands can be used in DEC Notes to access VMS utility functions.= EVE FORWARD SEND TPUTwwMODIFY) PROFILE UPDATETo Get Directories:I: DIRECTORY/CONFERENCES DIRECTORY/NOTEBOOK (or /ENTRIES)To Maintain Entries:B ADD ENTRY DELETE ENTRY MODIFY (or SET) ENTRY7 SELECT SHOW CLASSES SHOW ENTRY To Maintain Markers:8 ADD MARKER (or MARK) DELETEf@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.oBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveCcustomized EDT using EDTINI.EDT, you should specify callable EDT as.,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)LDIf you normally use some other calla K ģ1 Reading_NotesTDThese commands are used to move through a conference. Most of theseDcommands may also be accessed directly from the keypad. For help onDthe keypad, type KEYPAD, or leave help and press the "Help" or "PF2"key on your keyboard.n7 BACK BACK NOTE BACK REPLYT2 BACK TOPIC LAST .LAST7 NEXT NEXT NOTE NEXT REPLY2 NEXT TOPIC NEXT UNSEEN TOPICwwnto discuh@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaEK ģ1 Release_Notese@You can print the release notes for this version of DEC Notes by3typing the following command at the DCL prompt ($): - $ PRINT SYS$HELP:NOTES$025.RELEASE_NOTESPwwTo Get Directories:I: DIRECTORY/CONFERENCES DIRECTORY/NOTEBOOK (or /ENTRIES)To Maintain Entries:B ADD ENTRY DELETE ENTRY MODIFY (or SET) ENTRY7 SELECT SHOW CLASSES SHOW ENTRY To Maintain Markers:8 ADD MARKER (or MARK) DELETE lEK ģ1 Specifying_NotesDIn command formats, the parameter "note-ID" refers to a single topicCor reply, and "note-range" refers to a range of notes. Any commandGthat accepts a note-ID or note-range can only be used when a conference is open.HTo specify notes in a command line, you can use the following notations:$ Notations for Specifying Note-IDsH ---------------------------------------------------------------------A Notation Specification B ģ1 NEXTDisplays the next reply. Format: NEXTe2 Command_DescriptionC The NEXT command displays the next reply. If there are no furtherf5 replies, the message "No more replies" is displayed.: 2 Examples Notes> NEXTF Displays the next reply to the current topic. If you are currentlyF reading the last reply, the message "No more replies" is displayed.2 NOTE>Displays the note following the one you are currently reading. Format: NEXT l@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla  ExampleH -------------- ---------------------------------- --------------; . (period) The current note .tD n or n.0 A single topic 12 or 12.0= n.r A single reply to topic n 4.9(? TOPIC The topic of the current reply TOPICEE nnnn or LAST The last topic in the file 999 or LASTCF .rrrr or .LAST The last reply to the current topic .99 or .LAST' Not YX{$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`a"mlK ģ1 Subprocess_Commandsn3These commands are used to manipulate a subprocess. ATTACH SPAWNnwwte-range" refers to a range of notes. Any commandGthat accepts a note-ID or note-range can only be used when a conference is open.HTo specify notes in a command line, you can use the following notations:$ Notations for Specifying Note-IDsH ---------------------------------------------------------------------A Notation Specification o Format: READ/MARKER marker-name 3 Parameters marker-namee< Names the marker associated with the note you want to read.3 Command_DescriptioneA The READ/MARKER command displays the note that has the specifiedsE marker name. Since marker names must be unique within a conference,u/ READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKERoC command to read a marker that is used in more than one conference.sF Issuing tp@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.oBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveCcustomized EDT using EDTINI.EDT, you should specify callable EDT as.,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)LDIf you normally use some other calla@ Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing ts@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaC ģ1 NOTESEDEC Notes is a computer-mediated conferencing system. It allows manytFpeople to communicate in the system at their convenience, usually on aHsingle subject or issue. It provides a permanent record of a discussion?(conference) by recording topics and any replies to the topics.. Format: $ NOTES or! $ NOTES/INTERFACE=DECWINDOWS" orH $ NOTES/INTERFACE=CHARACTER_CELL [qualifier] [entry-name [note-ID]]CThe square brackets [] t&K ģ1 Terms_and_ConceptsEDEC Notes is a computer-mediated conferencing system. It allows manye?people to communicate at their convenience, usually on a singlelGsubject or issue. In DEC Notes, a private meeting to discuss marketingeDstrategy, an electronic bulletin board to announce course offerings,=or a public forum on environmental issues are all examples of CONFERENCES.FA conference is organized into any number of TOPICS, each of which canChave any number of REPLIES. A " topic and its associated replies area@called a DISCUSSION. Topics are identified as n.0, where n is aDnumber assigned sequentially by the system. Replies to a topic noteCare also sequentially numbered, starting with .1. If topic 4 has 3n@replies, the replies are numbered 4.1, 4.2, and 4.3. Topics and.replies are referred to collectively as NOTES.@The first time you invoke DEC Notes, a NOTEBOOK is automaticallyFcreated for you. In your Notebook, you store the names of conferencesFyou arE Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tw@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla{5M ģ1 WPSmA In addition to the EVE and EDT keypads, DEC Notes provides a WPS ; keypad. This is enabled by entering the DEC Notes command  SET PROFILE /EDITOR=WPS.c2 KEYPAD 3 ADVANCE, Keypad 0eD Advances the cursor one character and sets the current direction toC advance for the WORD, LINE, PARAGRAPH, PAGE, SEARCH, CONT. SEARCH,r= REPLACE and CONT. SEARCH AND SELECT keys. Advance means thenA movement will occur in the direction toward the end of the file,I! thaz@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.BSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveCcustomized EDT using EDTINI.EDT, you should specify callable EDT asP,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)ADIf you normally use some other callazD Specifies that topics and all replies in the specified range are to be extracted./APPENDF Appends the extracted notes to the output file. If the file does not exist, it is created./AUTHOR=usernameE Extracts only notes entered by the specified user. If you include aD node name with the user name, only notes entered by the author from that node are extracted./BEFORE[=date-time]< Extracts only notes entered before the specified date-time.< The date-time can be any va3`C ģ1 OPEN$Opens a conference in your Notebook. Format: OPEN entry-name [note-ID] 2 Parameters entry-nameB Specifies the name of the Notebook entry to open. The entry nameC can be abbreviated to the fewest characters that uniquely identifyi the entry.pnote-ID ? Specifies a note to be displayed on your screen as soon as theI/ conference opens. This parameter is optional.I2 Command_Descriptionq= The OPEN command opens the entry you specify and option&t is, to the right and down. l3 ALTERNATE_PASTE_BUFFER .$ Gold 1, Gold 2, ..., Gold 8, Gold 9> Specifies the alternate paste buffer to use for the next CUT,; or PASTE operation. If you do not specify a paste buffer,I' the default paste buffer will be used.e3 BACKUP Keypad 1.C Moves the cursor back one character and sets the current directioni= to backup for the WORD, LINE, PARAGRAPH, PAGE, SEARCH, CONT.a? SEARCH, REPLACE and CONT. SEARCH AND SELECT keys. Backup meanssD curso} Format: READ/MARKER marker-name 3 Parameters marker-nameo< Names the marker associated with the note you want to read.3 Command_Description A The READ/MARKER command displays the note that has the specifiedNE marker name. Since marker names must be unique within a conference,t/ READ/MARKER specifies a single topic or reply.nE You can specify the /ENTRY=entry-name qualifier with the READ/MARKERSC command to read a marker that is used in more than one conference.lF Issuing t~ Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t $ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`"~@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla:ڜͽģ1 WPSmA In addition to the EVE and EDT keypads, DEC Notes provides a WPS ; keypad. This is enabled by entering the DEC Notes command  SET PROFILE /EDITOR=WPS.c2 KEYPAD 3 ADVANCE, Keypad 0eD Advances the cursor one character and sets the current direction toC advance for the WORD, LINE, PARAGRAPH, PAGE, SEARCH, CONT. SEARCH,r= REPLACE and CONT. SEARCH AND SELECT keys. Advance means thenA movement will occur in the direction toward the end of the file,I! tha)t is, to the right and down. l3 ALTERNATE_PASTE_BUFFER .$ Gold 1, Gold 2, ..., Gold 8, Gold 9> Specifies the alternate paste buffer to use for the next CUT,; or PASTE operation. If you do not specify a paste buffer,I' the default paste buffer will be used.e3 BACKUP Keypad 1.C Moves the cursor back one character and sets the current directioni= to backup for the WORD, LINE, PARAGRAPH, PAGE, SEARCH, CONT.a? SEARCH, REPLACE and CONT. SEARCH AND SELECT keys. Backup meanssD curso@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t}C ģ1 PRINT,Prints the specified note or range of notes. Format: PRINT [note-range] CThe square brackets [] indicate that the enclosed item is optional.o 2 Parameters note-rangeE Specifies a range of notes to be printed. If no range is specified,t> the default is the current note. If a selection qualifier is0 specified, the default is to search all topics.2 Command_Description> The PRINT command prints the current note or, optionally, the? specified ran@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.BSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveCcustomized EDT using EDTINI.EDT, you should specify callable EDT asP,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)ADIf you normally use some other callaz; ģ1 ADDm<Adds new elements to DEC Notes conferences or your Notebook.2 ENTRYDAdds a new entry for a conference to your Notebook. This allows youCto conveniently access a conference and track the discussion in it.e Format: ADD ENTRY entry-namer 3 Parameters entry-nameB Specifies the entry name for a conference you wish to add to your Notebook.D If you specify a conference name (or notefile specification) as theD parameter with the ADD ENTRY command, DEC . Notes uses the conferenceA name as the entry name (unless you specify a name with the /NAME qualifier).A If you do not want to use the conference name as the entry name, C specify the entry name as the parameter with the ADD ENTRY commande: and specify the conference name with the /FILE qualifier.E To add a conference on a remote node, you must include the node namef in the notefile specification.E3 Command_DescriptionCB The ADD ENTRY command adds a conference to one or more classes < Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D!= ģ1 ANSWER-Enters a reply to the current topic or reply.o Format: ANSWER [file-spec]fCThe square brackets [] indicate that the enclosed item is optional.e 2 Parameters file-spec A Specifies a file containing text you want to use for your reply. 2 Command_Description? The ANSWER command invokes EVE or the editor specified in youroC profile to allow you to add a reply to the current discussion. IfiB you have a text file you want to use for your reply, spec@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t 1ify this- file as the parameter to the ANSWER command.lD If you are using EVE, this editor is invoked with two windows. TheB NOTES$SCRATCH buffer, which contains the text of the note you are: answering, appears in the top window. You can access theA NOTES$SCRATCH buffer to scroll through or extract text from thisoA buffer, if desired. The bottom window shows the contents of the @ NOTES$EDIT buffer. If you specified a text file as a parameter> to the ANSWER command, the text appears in thkj= ģ1 ATTACH7Attaches to the parent process or specified subprocess.r Format: ATTACH [process-name]CThe square brackets [] indicate that the enclosed item is optional.e 2 Parameters process-name? Specifies the name of the process to which you want to attach._2 Command_DescriptionE> The ATTACH command lets you attach to the parent process or aD specified subprocess. This command takes one optional parameter, aB process name. If no process name is specified,/SELF/NOSELFG Specifies that a copy of the note you are currently reading be sent orF not be sent to yourself, in addition to any other recipients. If youD do not specify this qualifier, DEC Notes uses the COPY_SELF setting from your MAIL profile./SUBJECT="string" /NOSUBJECT? Causes the note you are currently reading to be forwarded withE the subject you specify or with no subject. If you use the /SUBJECTH qualifier, you must supply a subject (a string that must be enclose Format: READ/MARKER marker-name 3 Parameters marker-nameh< Names the marker associated with the note you want to read.3 Command_DescriptionDA The READ/MARKER command displays the note that has the specifiedvE marker name. Since marker names must be unique within a conference,n/ READ/MARKER specifies a single topic or reply.wE You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference.eF Issuing t7T$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`y!"C ģ1 READFDisplays the specified note. You can also simply enter a note-ID; theREAD command is implied. Formats:  [READ] note-IDcCThe square brackets [] indicate that the enclosed item is optional.e 2 Parametersnote-ID.3 Specifies a single topic or reply to be displayed.n2 Command_Description D The READ command displays the topic or reply you specify. When youF respond to the Notes> prompt with only a note-ID, the READ command is implied.sF To disp you attach to the* parent process of the current subprocess. 2 Examples Notes> ATTACH COLLINS_1+ Attaches to the process named COLLINS_1.,wwh contains the text of the note you are: answering, appears in the top window. You can access theA NOTES$SCRATCH buffer to scroll through or extract text from thisoA buffer, if desired. The bottom window shows the contents of the @ NOTES$EDIT buffer. If you specified a text file as a parameter> to the ANSWER command, the text appears in th@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.BSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveCcustomized EDT using EDTINI.EDT, you should specify callable EDT asP,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)ADIf you normally use some other calla@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D= ģ1 BACK>Displays the previous topic, note, or reply to the one you arecurrently reading. Format: BACK 2 Command_Descriptionc< The BACK command displays the previous reply in the current> discussion. If you are reading the first reply, this command displays the current topic.@ You cannot use the BACK command to move past the current topic.A If you are reading a topic and issue the BACK command, DEC Notes,( displays the message "No more replies". 2 Exampl4es Notes> READ 8.6 Notes> BACKB Displays reply 8.6. Then, the next command displays reply 8.5. Notes> READ 8 Notes> BACK No more repliesB Displays topic 8. Then, the next command attempts to move past9 the current topic. DEC Notes issues an error message.t2 NOTE@Displays the note previous to the one you are currently reading. Format: BACK NOTE3 Command_Description D The BACK NOTE command displays the previous note in the conference,@= ģ1 CLOSE%Closes the currently open conference.e Format: CLOSE2 Command_DescriptionrD The CLOSE command closes the currently open conference, and returns you to your Notebook.A You can issue the OPEN command (instead of the CLOSE command) tomA close the current conference automatically, without returning toa: your Notebook, before the specified conference is opened.D You can use the F10 key or the control key sequence CTRL/Z to issue this command. 2 Ex@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaC Names an output file in which to store saved notes, in addition tot putting them in a buffer./SEEN Marks the saved notes as seen.t/SINCE[=date-time]= Saves only notes entered since the specified date-time. Thee< date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isI /SINCE=TODAY./TITLE="string"u; Saves notes having the specified string in the note title.e* Surround the string with quotation marks.6kD ģ1 REPLY-Enters a reply to the current topic or reply.l Format: REPLY [file-spec]CThe square brackets [] indicate that the enclosed item is optional. 2 Parameters file-specoA Specifies a file containing text you want to use for your reply. 2 Command_DescriptionsF The REPLY command invokes EVE or the editor specified in your profileF to allow you to add a reply to the current discussion. If you have aC text file you want to use for your reply, specify t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tamples Notes> CLOSE@ Closes the currently open conference, and returns you to your Notebook.ww Notes> READ 8 Notes> BACK No more repliesB Displays topic 8. Then, the next command attempts to move past9 the current topic. DEC Notes issues an error message.t2 NOTE@Displays the note previous to the one you are currently reading. Format: BACK NOTE3 Command_Description D The BACK NOTE command displays the previous note in the conference,@@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.BSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveCcustomized EDT using EDTINI.EDT, you should specify callable EDT asP,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)ADIf you normally use some other calla= ģ 1 CONTINUEB Causes continuation of the current operation with the same effect3 as pressing the RETURN key at the Notes> prompt. . This command is useful in command procedures.wwtebook.A You can issue the OPEN command (instead of the CLOSE command) tomA close the current conference automatically, without returning toa: your Notebook, before the specified conference is opened.D You can use the F10 key or the control key sequence CTRL/Z to issue this command. 2 Ex> ģ1 CREATE2Creates a conference or a keyword in a conference.>If you wish to enter a new note in an existing conference, usethe WRITE or REPLY commands. 2 CONFERENCE3Creates a new conference with the name you specify.t Format:$ CREATE CONFERENCE notefile-spec 3 Parameters notefile-specn? Specifies the conference that you want to create. To create aC conference on a remote node, you must specify the node name in theyB specification. The default device an $ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`"< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t 6d directory (NOTES$LIBRARY),B and file type (.NOTE) are assumed. The file name portion of this? specification is the default entry name when someone adds this  conference to their Notebook.3 Command_DescriptionB The CREATE CONFERENCE command lets you create a new conference onD your system. When you create a conference, DEC Notes automaticallyB recognizes you as a moderator for the conference; you do not need* special privileges to issue this command.C Depending on how your DEC Notes snu> ģ1 DELETEBDeletes various things. The default is to delete the note you arecurrently reading.2 ENTRYs?Deletes an entry from your Notebook from the specified class or all classes. Format: DELETE ENTRY entry-name 3 Parameters entry-nameB Names the entry you want to delete. If the entry is in more thanC one class, it is deleted from the current class unless you specifymB another class with the /CLASS qualifier. To delete an entry from all classes, use thiscE pointer forward (using KP2) or backward (using KP5) through the listpC until the pointer is at the item you want. Then, issue the SELECTr+ command (or press KP7) to select the item.a; DIRECTORY -- Reads a note in a conference = DIRECTORY/CONFERENCES -- Adds an entry to your Notebooko> DIRECTORY/ENTRIES -- Opens an entry in your Notebook6 SHOW CLASSES -- Sets default to a class2 SHOW ENTRY -- Reads a marked note? SHOW KEYW 9/CLASS=*.r@ To delete an entire class, specify a class name with the /CLASSA qualifier and use the wildcard character (*) for the entry name.o3 Command_DescriptioneC The DELETE ENTRY command deletes an entry from your Notebook. YouN7 must specify the name of the entry you want to delete.tB If the entry is in more than one class, DEC Notes deletes it fromD the current class unless you specify a particular class. To delete/ the entry from all classes, issue the command:o! DELETE ENTRY @If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionCA The READ/MARKER command displays the note that has the specified$E marker name. Since marker names must be unique within a conference,e/ READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKERoC command to read a marker that is used in more than one conference.eF Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad. BSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you have Ccustomized EDT using EDTINI.EDT, you should specify callable EDT ass,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)rDIf you normally use some other callaC Names an output file in which to store saved notes, in addition tos putting them in a buffer./SEENt Marks the saved notes as seen.a/SINCE[=date-time]= Saves only notes entered since the specified date-time. Thef< date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isl /SINCE=TODAY./TITLE="string"i; Saves notes having the specified string in the note title.p* Surround the string with quotation marks. = in the currentT class in your Notebook.> You can optionally specify a range of notes to include in theD directory, and selectively display notes you have or have not seen,F or those entered by a certain author, having a certain word or phraseE in the title, entered before or since a particular date, having one 6 or more specific keywords, or a combination of these.E The default display sequence is in ascending order. You can displayfC the directory in descending order by specifying the Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t?n to DEC Notes. You can end your DEC Notes sessioncA by quitting from an EVE buffer and responding yes to the prompt.y 2 Examples& Notes> EVE GET ANNUAL_REPORT.TEXTC Invokes the EVE editor and puts a copy of the ANNUAL_REPORT.TEXT ' file in a buffer with the same name.s Notes> EVE DEFINE KEYA Invokes the EVE editor and prompts for the command you want toe define as a key.e Notes> EVE BUFFER DIRF Displays the contents of the buffer named DIR. Once you acce< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D it.o 2 Examples Notes> CLOSEE Notes> EXITC Closes the current conference, and returns you to your Notebook.x@ Then, the next command exits DEC Notes and releases any notes pending for printing.wwe ANNUAL_REPORT.TEXT ' file in a buffer with the same name.s Notes> EVE DEFINE KEYA Invokes the EVE editor and prompts for the command you want toe define as a key.e Notes> EVE BUFFER DIRF Displays the contents of the buffer named DIR. Once you acce@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla-;$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`@R" reading. If a selection qualifier isy& specified, the default is all topics.2 Command_Description A The EXTRACT command creates a text file containing the notes youED specify. You must specify the name of the output file as the first@ parameter in the command. Use the optional second parameter toF specify the range of notes to extract. If no range is specified, DECG Notes extracts only the note you are currently reading; if you specify G a selection qualifier (/AUTHOR, /BEFORE, /KEYWORD, command sends a mail message to one or more users by theA VMS Mail Utility (MAIL) without leaving DEC Notes. You list the $ addressees at the Send to: prompt.? You can send the same message to all members in the conferenceRD (without specifying these users individually) by using the /MEMBERSA qualifier (provided the moderator has defined a mail address forr@ each by specifying the /MAIL qualifier on the ADD or SET MEMBER? command). Similarly, to send the message to the moderator(s),O? the @/SINCE, /TITLE, and G /UNSEEN), DEC Notes searches all topics. Additionally, if you specifyn4 the /ALL qualifier, DEC Notes searches all replies.F To put extracted notes into a buffer, you must use the EXTRACT/BUFFER command.E T< If any notes in the specified range of notes are in DIGITALD Document Interchange Format (DDIF), those notes cannot be extractedD in their entirety to the same output file as the non-DDIF notes. IfC you are running interactively, a message informs you of each D Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t he /MEMBERS qualifier. DEC Notes automatically uses theB membership list as a MAIL distribution list, provided each member@ has had a mail address defined (by means of the /MAIL qualifier? on the ADD or SET MEMBER command). Similarly, if you want to 9 send the note to the moderator(s), the note's author, ory> yourself, use the /MODERATORS, /AUTHOR, or /SELF qualifier. ? (If you use any of these qualifiers, you are not prompted for p an addressee.)iA You can cause a CC: prompt to appear,@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.qBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT asU,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)DIf you normally use some other calla C which allows you to supplyE? a carbon-copy list of recipients. You can specify a "personaln name" to be used on the note.A You can optionally choose a subject for the forwarded note. DECmC Notes uses a default subject consisting of the conference name andi location and the note number.? DEC Notes automatically gives you a chance to preface the notea? with a message before forwarding it. You type your message inn< the NOTES$MAIL_EDIT buffer. To bypass this option, use the /NOEDIT q@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla an get help on@ a particular command in one step by specifying the command as aE parameter to the HELP command. For example, the command HELP ATTACHe- displays online HELP for the ATTACH command. B If you discover that you want help on a different command, type aB question mark (?) to redisplay the listing of DEC Notes commands.E If you are using a VT200-series terminal, you can press the HELP keyl+ on the editing keypad to get command help.sC If the word you type after the HELP command E is one of the commandspD that takes an option (ADD, BACK, CREATE, DELETE, MODIFY, NEXT, SET,C and SHOW), DEC Notes displays the option list for the command, ande- prompts you for the option you want help on. C DEC Notes also has online HELP for key definitions. To see keypadhC definitions for DEC Notes, press the Help key (keypad key PF2 on aaD VT100-series terminal). Then, press the key that you want help on.C To leave HELP and return to DEC Notes, press CTRL/Z at any prompt. 2 Exampl to the current topic. Notes> 20.LASTs' Displays the last reply to topic 20.t Notes> LAST.LASTF- Displays the last reply to the last topic.nwwHELP for the ATTACH command. B If you discover that you want help on a different command, type aB question mark (?) to redisplay the listing of DEC Notes commands.E If you are using a VT200-series terminal, you can press the HELP keyl+ on the editing keypad to get command help.sC If the word you type after the HELP command  CLASS command, B DEC Notes assumes this class when performing commands (unless youA specify another class with the /CLASS qualifier in an individualoF command). The SET CLASS command is similar to the SELECT folder-name( command in the VMS Mail Utility (MAIL).D Use the SET CLASS command when you want to permanently override theB default class specified in your profile for the current DEC NotesC session. The class you specify with SET CLASS remains the currentaE class until you issue the S< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: READ/MARKER marker-name 3 Parameters marker-namee< Names the marker associated with the note you want to read.3 Command_DescriptionIA The READ/MARKER command displays the note that has the specified E marker name. Since marker names must be unique within a conference,e/ READ/MARKER specifies a single topic or reply.tE You can specify the /ENTRY=entry-name qualifier with the READ/MARKERaC command to read a marker that is used in more than one conference.oF Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t niB A marker is a word or phrase that you associate with a particularE note so that you can refer to the note by the word or phrase insteadtB of its note number. Marker names must be unique within an entry,@ although you can use the same marker name in different entries.D However, if you issue the READ/MARKER command when no conference isA open and specify a duplicate marker name, DEC Notes displays then8 marked note in the first entry (in alphabetical order).E You can specify the /ENTRY=en@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaFp$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`^" Gtry-name qualifier with the READ/MARKER0C command to read a marker that is used in more than one conference.TF Issuing the READ/MARKER command without the /ENTRY qualifier displays< the marked note in the first entry (in alphabetical order).E If you do not specify a note to be marked, DEC Notes adds the markerf' to the note you are currently reading. C You can see all the markers you created for the current entry, andeE the note number associated with each, by using either the SHOW ENTRYa@ce title in thes headings> o Whether to restrict access, keyword creation, or both to specific membersB o Whether anyone besides you can enter notes in the conferenceB You must be a moderator for the conference, and must have enabledA your moderator privileges with the SET MODERATOR command, before % using the MODIFY CONFERENCE command.uF When you restrict access, keyword creation, or both, you must specifyD the users who can access the conference (called members), aC Names an output file in which to store saved notes, in addition toe putting them in a buffer./SEENe Marks the saved notes as seen.v/SINCE[=date-time]= Saves only notes entered since the specified date-time. TheR< date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default is  /SINCE=TODAY./TITLE="string" ; Saves notes having the specified string in the note title.i* Surround the string with quotation marks.Ind whichD of these users can create keywords. You use the ADD MEMBER command2 to specify members and assign privileges to them.C To set up a bulletin board, in which only you can write notes, useiB the /NOWRITE qualifier. To set up a conference in which only you= can write topic notes, but others can write replies, use they /REPLY_ONLY qualifier. 3 Qualifiers/NOTICE="string" /NONOTICEd@ Changes or sets the notice for the conference to the string youC specify. Surround the string wNOTE3 Command_DescriptiondE The NEXT NOTE command displays the next reply or, if no more replies exist, the next topic. 3 Examples Notes> READ 40.5n Notes> NEXT NOTEfE Assuming 40.5 is not the last reply, displays note 40.6. If topiclA 40 has only five replies, this command would display topic 41.r2 REPLYg?Displays the reply following the one you are currently reading.y Format: NEXT REPLYs3 Command_DescriptioncD The NEXT REPLY command displays the reply@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.qBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT asU,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)DIf you normally use some other calla Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing trestriction to access or keyword creation " o The title and notice, if any o The notefile specification< o The VAX Distributed Name Service (DNS) object name (if any) of the conference 3 Examples Notes> SHOW CONFERENCEU2 Shows information about the current conference.2 ENTRYe,Shows information about the specified entry. Format: SHOW ENTRY entry-name 3 Parameters entry-nameD Names the entry for which you want information. You can abbreviate@ Format: NEXT TOPIC3 Command_DescriptionA The NEXT TOPIC command skips over the rest of the replies to the current topic./ You can use the KP2 key to issue this command. 3 Examples Notes> READ 40.5 Notes> NEXT TOPICA Displays reply 40.5. Then, the next command skips the rest of1 the replies to topic 40 and displays topic 41.2 UNSEENDisplays the next unseen note. Format: NEXT UNSEEN3 Command_DescriptionC The NEXT UNSEEN command dis@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaK following the one you areC currently reading. If you are reading the last reply, the messagebD "No more replies" is displayed. You cannot move beyond the current) discussion using the NEXT REPLY command.// You can use the KP3 key to issue this command. 3 Examples Notes> READ 4.6 Notes> NEXT REPLY= Displays reply 4.7. If topic 4 has only six replies, thiss2 command displays the message "No more replies".2 TOPICf?Displays the topic following the one you are currently r indicate that the enclosed item is optional.cDIf the DECwindows interface is available, then /INTERFACE=DECWINDOWSBis the default. If not, /INTERFACE=CHARACTER_CELL is the default. 2 Parameters entry-nameA Specifies an entry in the Notebook to be opened. If you use the F /NONOTEBOOK qualifier, DEC Notes looks in the NOTES$LIBRARY directory* for a conference with that notefile name.F With the /UPDATE qualifier, you can use the wildcard character (*) or6 omit the entry name parameter tMo specify all entries.note-IDe? Specifies a note to be displayed on your screen as soon as theo@ specified conference opens. You can use the note-ID parameter 6 only if you precede it with the entry-name parameter.= When you use the note-ID parameter, you cannot also use the E /UPDATE qualifier.E2 Command_Description F The DCL command NOTES invokes DEC Notes and provides immediate accessF to your Notebook. You can specify a Notebook entry to be opened, and@ activate a class other < Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D ally c? displays a specified note. You must add a conference to your e= Notebook with the ADD ENTRY command before you use the OPEN > command. DEC Notes looks for the entry first in the current 8 class, unless you specify another class with the /CLASS? qualifier. If the entry you specify is not in the current (or A specified) class, DEC Notes continues to search other classes ine= your Notebook for an entry with that name. However, if you @ specify a class with the /CLASS qualifier, DEC Notes looks for  the entry only in that class.@ You can abbreviate the entry name to the fewest characters thatB uniquely identify the entry. If more than one entry name matches@ the characters you specify, DEC Notes opens the first entry (inA alphabetical order) that matches. If the characters you specifyo3 exactly match an entry name, that entry is opened.CD To open a conference that is not an entry in your Notebook, use the /NONOTEBOOK qualifier.oA If you issue the OPEN command f Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tj?*)$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1` "@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla Format: SET KEYWORD keyword-names 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionp? The SET KEYWORD command lets a moderator change the name of a nF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.d 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.i 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Notes> SPAWN DIRECTORYdB Spawns a subprocess and shows a listing of your current defaultB directory. When the directory finishes, press RETURN to resume your DEC Notes session.wwference 3 Examples Notes> SHOW CONFERENCEU2 Shows information about the current conference.2 ENTRYe,Shows information about the specified entry. Format: SHOW ENTRY entry-name 3 Parameters entry-nameD Names the entry for which you want information. You can abbreviate@Qrom an open conference, DEC NoteseB automatically closes the current conference and opens the one youF specify. You do not have to issue the CLOSE (or EXIT) command before issuing the OPEN command.. If you issue the OPEN command and receive theE error message "Your software license does not allow this operation",t contact your system manager. 2 Qualifiers/AUTOMATIC[={DIRECTORY|UNSEEN}]a /NOAUTOMATIC@ Specifies whether the /AUTOMATIC setting from your user profileC should be used wh ge of notes. If no range is specified, DEC Notes ? prints only the note you are currently reading; if you specifyrC a selection qualifier (/AUTHOR, /BEFORE, /KEYWORD, /SINCE, /TITLE,iB and /UNSEEN) DEC Notes searches all topics. Additionally, if you< specify the /ALL qualifier, DEC Notes searches all replies.C You can use several qualifiers in a single PRINT command line withs these exceptions or conditions:E o To use /BEFORE and /SINCE to specify a time interval, make sureiC th@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.,BSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveCcustomized EDT using EDTINI.EDT, you should specify callable EDT ase,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)iDIf you normally use some other calla at the date-time you specify for /SINCE is earlier than then( date-time you specify for /BEFORE.? o The keyword you specify with /KEYWORD must be an existingr! keyword for the conference. E You can set up a list of default qualifiers for the PRINT command inaE your profile. These qualifiers are executed by default whenever youhC use the PRINT command; you do not have to type the qualifiers each D time. You can override the default qualifiers on the command line.E See the SETC Names an output file in which to store saved notes, in addition tot putting them in a buffer./SEENp Marks the saved notes as seen.e/SINCE[=date-time]= Saves only notes entered since the specified date-time. The,< date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default ise /SINCE=TODAY./TITLE="string"t; Saves notes having the specified string in the note title.X* Surround the string with quotation marks.. If you issue the OPEN command and receive theE error message "Your software license does not allow this operation", contact your system manager. 2 Qualifiers/AUTOMATIC[={DIRECTORY|UNSEEN}] /NOAUTOMATIC@ Specifies whether the /AUTOMATIC setting from your user profileC should be used when opening the conference. The default is to useA the automatic setting. Use /NOAUTOMATIC when you wish to open aC conference and not see the first unseen note or directory listing.D Use /AUTOMATI S PROFILE command for information about setting up default " qualifiers for the PRINT command.B If you are printing a range of notes interactively, and a DIGITALB Document Interchange Format (DDIF) note is in that range, you areE prompted for a PostScript print queue for the DDIF note. If you arelF running in batch and a DDIF note is in the note range, only the ASCIID portions (if any) of the DDIF note are printed along with the other notes. 2 Qualifiers u/ALL6 Prints all topics and rlay a note you marked, use the READ/MARKER command, specifying, the marker name instead of the note number.B You can use the NEXT command to page through notes in succession.F To skip the rest of the current discussion, and display the next note6 you have not yet seen, issue the NEXT UNSEEN command. 2 Examples Notes> READ 4.9 Displays note 4.9.N Notes> READ .3t1 Displays the third reply to the current topic.E Notes> READ 5 Displays topic 5.0. Not Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaes> 2.7dD Displays note 2.7. Note that the READ command is implied; you do not have to type READ.  Notes> READ 3.3-3.5, Note-range not allowed for this commandE You cannot specify a range of notes for the READ command. To readfF notes 3.3 through 3.5, first read 3.3, then use the NEXT command toD page through the replies. (Press the RETURN key to read the next" screen of a multi-screen note.) 2 /MARKERi8Displays the note marked with the specified marker name.V Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tXTPU section file. The default fileJ specification for this file is SYS$SHARE:.TPU$SECTION.JNOTES$COMMAND The name of a VAXTPU command file that you can includeI as part of the DEC Notes initialization. The defaulteE file specification for this command file is .TPU.oww use COMMAND RECALL repeatedlyo1 to scroll through all the commands you entered.e 2 END_OF_LINEs CTRL/E> END OF LINE moves the cursor to the end of the c his file as them parameter to the REPLY command.D If you are using EVE, this editor is invoked with two windows. TheB NOTES$SCRATCH buffer, which contains the text of the note you are< replying to, appears in the top window. You can access theA NOTES$SCRATCH buffer to scroll through or extract text from thissA buffer, if desired. The bottom window shows the contents of theD@ NOTES$EDIT buffer. If you specified a text file as a parameter= to the REPLY command, the text appears in the botq3$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`-"/HEADER (default) /NOHEADERC Specifies whether or not to include the note header in the printed output./KEYWORD=keyword-name0 Prints only notes having the specified keyword./NOTIFY/NONOTIFY (default)A Specifies whether to notify you when your print job is complete./QUEUE=queue-name/QUEUE=SYS$PRINT (default)? Specifies a print queue to which the specified notes are sent.< The default is the default print queue at your installation (SYS$PRINT)./SEEN!Xtom window.C Otherwise, the NOTES$EDIT buffer is empty, and you type your reply in this buffer.D Use the EVE command OTHER WINDOW to move back and forth between the two buffers. < If you do not want to see the NOTES$SCRATCH buffer, use theC /NOEXTRACT qualifier. The NOTES$EDIT buffer is enlarged to a fullm screen.C Use /NOEDIT when you want to use text in a file for your reply andsE you do not want to edit the text. DEC Notes immediately asks you tot? provide a title for your re@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other callaX Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t selection qualifier is specified,h the default is all topics.r2 Command_Descriptionr> The SAVE command creates a text file containing the notes youD specify. You must specify the name of the output file as the first@ parameter in the command. Use the optional second parameter toC specify the range of notes to save. If no range is specified, DECnD Notes saves only the note you are currently reading; if you specifyG a selection qualifier (/AUTHOR, /BEFORE, /KEYWORD, /SINCE, /TITLE, andeG /< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D UNSEEN), DEC Notes searches all topics. Additionally, if you specifye4 the /ALL qualifier, DEC Notes searches all replies.? To put saved notes into a buffer, you must use the SAVE/BUFFER command.n< If any notes in the specified range of notes are in DIGITAL: Document Interchange Format (DDIF), those notes cannot be8 saved in their entirety in the same output file as the= non-DDIF notes. If you are running interactively, a messagee< informs you of each DDIF note, which you can choose t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla[o save; in a separate file. If you are running in batch, the DDIF ; notes are saved in the same file as the other notes in thec: range, but only the ASCII-text portions of the DDIF notes are included.< The SAVE and EXTRACT commands are synonyms, and can be used interchangeably. 2 Qualifiers o/ALLA Specifies that all topics and replies in the specified range ares to be saved.d/APPENDrB Appends the saved notes to the output file. If the file does not exist, it is created.CThe square brackets [] indicate that the enclosed item is optional. 2 Parameters file-specA Specifies a file containing text you want to use for your reply.2 Command_DescriptionF The REPLY command invokes EVE or the editor specified in your profileF to allow you to add a reply to the current discussion. If you have aC text file you want to use for your reply, specify this file as the parameter to the REPLY command.D If you are using EVE, this editor is invoked with two windows.  Format: SET KEYWORD keyword-namet 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptiond? The SET KEYWORD command lets a moderator change the name of a fF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.r 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change. 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN ference if /NOTES is not specified).B To search a range of notes only, specify the string parameter andB use the /NOTES qualifier when you first issue the SEARCH command.6 Use the .* notation to include replies in the search.D DEC Notes displays a note containing the string and pauses for yourA next instruction. To search for the next note that contains thesA string, issue the SEARCH command again, without the qualifier oriB parameter. You are able to search for the next occurrence of theB same string at any time until you specify another string with the( SEARCH command or close the conference.0 To cancel a search in progress, press CTRL/C. ? Be aware that searching through an entire conference can take e? a long time. It is faster to search through a range of notes,t> or to use the DIRECTORY/ALL/TITLE="string" command instead ofB SEARCH, to look for the specified string in the note titles only. 2 Qualifiers/NOTES=note-rangeo/NOTES=*.* (default)@ Specifies the@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.sBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you havefCcustomized EDT using EDTINI.EDT, you should specify callable EDT asa,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)rDIf you normally use some other callan", you must specify the node name of the systemE which has the DEC Notes server installed. For more information,E! contact your system manager.UETo add a conference to your Notebook, use the ADD ENTRY command. ForC@example, to add the ETIQUETTE conference to your Notebook, type: Notes> ADD ENTRY ETIQUETTE ETo open a conference, use the OPEN command. For example, to open theoETIQUETTE conference, type:F Notes> OPEN ETIQUETTEJA conference is organized into discu$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`2" Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.eBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveoCcustomized EDT using EDTINI.EDT, you should specify callable EDT as/,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla\ range of notes to be searched. The default is to> search the entire conference. Use the .* notation to include replies in the search. 2 Examples$ Notes> SEARCH "DANTE'S INFERNO"C Searches the entire conference for the phrase "DANTE'S INFERNO".n+ Notes> SEARCH /NOTES=2.*-99.* "BUTTER"G Searches for the word "BUTTER" starting with topic 2 and ending with the last reply to topic 99.( Notes> SEARCH /NOTES=21-50 "RANDOM" Notes> SEARCHE Searches for the ORDS/ALL -- Adds keyword to the current noter? SHOW KEYWORDS/FULL -- Adds keyword to the current note 2 SHOW MARKER/ALL -- Reads a marked noteE When you are viewing a list of entries, keypad key KP3 skips forwardeC to the next entry with a non-zero unseen count, and keypad key KP1DC skips backward to the previous entry with a non-zero unseen count.tG When you press the SELECT key, DEC Notes opens the entry you selected.-B When you are viewing a directory of notes Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t ], DEC Notes displays the note you selected.iB You can also use the SELECT command to select a conference from aD "shopping list" and add the conference to your Notebook. To selectA a conference that is on a shopping list, read a note that has anNB asterisk (*) next to the note number in the heading and issue the? SELECT command. The conference is added to your Notebook; theB conference name is used as the entry name. You can issue the SETD CLASS command before using the SELECT command t  author of the note you are currently reading, or yourself,O> use the /MODERATORS, /AUTHOR, or /SELF qualifier. Using any 4 of these qualifiers suppresses the Send to: prompt.A You can cause a CC: prompt to appear, which allows you to supply? a carbon-copy list of recipients. You can specify a "personalP@ name" to be used on the message. You can specify a subject for the message.oF To send a file as the mail message, include the file specification inF the SEND command line. You can u Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Notes> SAVE BOOKS 10.*A Saves topic 10 and all its replies in a file called BOOKS.TXT.+ Notes> SAVE /KEYWORD=YALE COLLEGES *.*@ Saves all notes in the conference that have the keyword YALE,4 and puts the notes in a file called COLLEGES.TXT.1 Notes> SAVE /AUTHOR=GLEN NUCLEAR 8-19 /SEENA Saves topics from 8 through 19 that were entered by user GLEN,D stores them in a file called NUCLEAR.TXT, and marks them as seen.; Notes> SAVE /SINCE=15-MAR /BEFORE< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D^se the /NOEDIT qualifier to send theB file without editing it. If you do not specify a file to send as9 your mail message, you cannot use the /NOEDIT qualifier.u 2 Qualifiers/AUTHOR= Specifies that you wish to send the message to the author ofN> the note you are currently reading. Notice that the Send to:; prompt does not appear when you use the /AUTHOR qualifier.o /CC_PROMPT /NOCC_PROMPTB Specifies whether or not a CC: prompt should appear, which allows1 you to create a carbon-coET CLASS command again or exit DEC Notes.dE The class you specify with the SET CLASS command must be an existingsC class in your Notebook. You cannot use the wildcard character (*)u in the class name.p 3 Examples Notes> SET CLASS WEEKLY> Sets the class named WEEKLY as the current class. NotebookD commands issued from this point on assume the class WEEKLY unless another class is specified. Notes> SET CLASS TOP_SECRET- Notes> ADD ENTRY POLICIES /CLASSES=DAILYc,  MARKER READ/MARKER# SELECT SHOW MARKERswwDEC Notes server installed. For more information,E! contact your system manager.UETo add a conference to your Notebook, use the ADD ENTRY command. ForC@example, to add the ETIQUETTE conference to your Notebook, type: Notes> ADD ENTRY ETIQUETTE ETo open a conference, use the OPEN command. For example, to open theoETIQUETTE conference, type:F Notes> OPEN ETIQUETTEJA conference is organized into discu Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: SET KEYWORD keyword-name 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_DescriptionE? The SET KEYWORD command lets a moderator change the name of a tF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.U 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change. 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINm$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`4"a Notes> MODIFY ENTRY MARTIANS /NAME=UFOSB Sets the class TOP_SECRET as the current class. Then, the next@ command adds the conference named POLICIES to the class namedE DAILY. (The /CLASSES qualifier allows you to override the currentrB class for an individual command.) The last command changes the> name of the entry MARTIANS in the class TOP_SECRET to UFOS. 2 CONFERENCE@Changes or sets specific information for an existing conference. Format: SET CONFERENCEr3 Co  the entry name to the fewest characters that identify the entry uniquely.3 Command_DescriptiontE The SHOW ENTRY command shows the following information for the entry you specify:) o The complete notefile specification  o The entry name o The conference title; o The number of topics and the total number of notes ins the conference/ o The number of notes you have not yet seen.8 o The marker names and the note to which each refers, o The classes to which t  Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t @If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.,BSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveCcustomized EDT using EDTINI.EDT, you should specify callable EDT ase,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)iDIf you normally use some other calla  Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t che entry belongs< o The VAX Distributed Name Service (DNS) object name (if any) of the conference@ o The node and username of the moderator of record (that is,? the last moderator who entered the SET MODERATOR command,h; as of the last time that you accessed the conference)m cD You can read a marked note by moving the pointer (>) to the desiredA marker name and pressing the SELECT (KP7) key. Move the pointers9 forward with the KP2 key, and backward with the KP5 key.o in which the specified entry (or all entries) is to be updated.C You can use the wildcard character (*) to specify all classes witho@ common names, or use an asterisk alone to indicate all classes.= If you do not specify a class, the current class is assumed.o 2 Examples Notes> UPDATE CAMERAS2 Updates the entry CAMERAS in the current class. Notes> UPDATE /CLASS=A*C Updates all entries in all classes that start with the letter A.c/ Notes> UPDATE /CLASS=RELIGION Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tS CATHOLICISMn0 Updates entry CATHOLICISM in class RELIGIONS.wwame (if any) of the conference@ o The node and username of the moderator of record (that is,? the last moderator who entered the SET MODERATOR command,h; as of the last time that you accessed the conference)m cD You can read a marked note by moving the pointer (>) to the desiredA marker name and pressing the SELECT (KP7) key. Move the pointers9 forward with the KP2 key, and backward with the KP5 key.oof your last note by issuing theF WRITE/LAST command. You can also use the WRITE/LAST command to enter/ the text in another conference (see Examples).,F If the conference has been write-restricted by a moderator (using theC SET CONFERENCE/NOWRITE or SET CONFERENCE/REPLY_ONLY command), youPE must have either MODERATE privilege or WRITE_REGARDLESS privilege to  use the WRITE command.*A If you want to start a new conference, use the CREATE CONFERENCEA command.N 2 Qualifiers/CONFIRM ( Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tedefault) /NOCONFIRM@ Controls whether a prompt is issued before the note is entered,C asking you to confirm that it should be entered. Your response to  the prompt can be YES or NO.t/EDIT (default)r/NOEDITT@ Specifies whether to invoke the editor. You cannot use /NOEDIT unless you specify a text file./LASTdD Retrieves the most recent text from the NOTES$EDIT buffer. (If youD specify a text file to use for your topic, DEC Notes puts a copy of? the file in the NOTES$EDIT buble editor besides EDT, specify:) SET PROFILE/EDITOR=(editor-name,CALL)WDSome editors are not "callable" but are separate executable programsEwhich must be "spawned." If specifying an editor as callable doesn'ti6work, see the online help for the SET PROFILE command.wwcommand), youPE must have either MODERATE privilege or WRITE_REGARDLESS privilege to  use the WRITE command.*A If you want to start a new conference, use the CREATE CONFERENCEA command.N 2 Qualifiers/CONFIRM ( Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t2 Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t PRINT)7 READ REPLY (or ANSWER) WRITErJThe following topics have information on more advanced DEC Notes commands:8 Choosing_an_Editor Information_Commands KeypadD Keyword_Commands Logical_Names Moderator_Commands? Notebook_Commands Other_Utilities Reading_Notest- Specifying_Notes Subprocess_Commands wwr. (If youD specify a text file to use for your topic, DEC Notes puts a copy of? the file in the NOTES$EDIT buT!?$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`"MMAND_RECALL CTRL/B, UP and DOWN arrows; COMMAND RECALL redisplays the previously entered command.aD If you make a mistake typing a command, you do not have to reenter> the command. COMMAND RECALL redisplays the last command you> entered and puts the cursor at the end of the line, allowingA you to edit the command. You can use COMMAND RECALL repeatedlyu1 to scroll through all the commands you entered.e 2 END_OF_LINEs CTRL/E> END OF LINE moves the cursor to the end of the c Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tgurrent line.C A message is displayed if you are already at the end of the line.n2 ENTERh ENTERmC If you are reading a note, ENTER allows you to navigate through a % conference in the following manner:r@ o If the current note continues onto another screen, the next screen is displayed.tA o If you are at the end of the current note, the next reply isC displayed.(E o If there are no more replies, the next unseen note is displayed. A If you are not reading a not Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tssions. Each discussion begins with aMTOPIC, each having any number of REPLIES. Topics are numbered consecutively,eMstarting with 1. Replies are also numbered consecutively, by topic, startingoFwith .1. For example, if there are three replies to topic 4, they arenumbered 4.1, 4.2, and 4.3.d5To see a listing of the topics in a conference, type:o Notes> DIRECTORY <To include replies, as well as topics, in the listing, type: Notes> DIRECTORY *.* KUse the NEXT SCREEN (0 on the keypad) and PREVIOUS SCREEN (. on the keypad)e%keys to scroll through the directory.OHTo read a specific topic or reply, type the note-ID number at the Notes>?prompt. For example, to read the third reply to topic 6, type:  Notes> 6.3rHUse the ENTER or RETURN key to page through the replies in a discussion.HTo set up EVE, the DEC Notes editor, with the EDT-style keypad, type thefollowing command:" Notes> SET PROFILE/EDITOR=EDTKTo add a reply to a discussion,  ations for Specifying Note-RangesiH ---------------------------------------------------------------------B Notation Specification ExampleH -------------- ---------------------------------- -------------@ n-m Topics only from n.0 to m.0, inclusive 12-18C * or ALL All the topics in the conference * or ALLE .* or .ALL All replies to the current topic .* or .ALLNI n.* or n.ALL All replies to topic n @If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.fBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveYCcustomized EDT using EDTINI.EDT, you should specify callable EDT asm,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL) DIf you normally use some other calla  Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t 12.* or 12.ALLSC n1.r1-n2.r2 A range of notes, including all replies 5.2-17.4I *.* or ALL.ALL All notes in the conference *.* or ALL.ALLr( NOTED A command format that shows a range of notes as a parameterE also allows a single note-ID as a parameter, but the reverseNE is not true. A command format that shows a single note as a4 parameter does NOT accept a range of notes.ww discussion, " Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t $e interested in. This figure shows how a typical Notebook might9be organized, and how notes are arranged in a conference: L+------------------------------- + +---------------+ +-------------+L| DEC Notes | | Your Notebook | ->| Conference F|L| +-------------+ +------------+ | | | / | |L| | All | | Your | | --->| Main Class | / | Topic 1 |L| | | | Notebook | |/ | conference F _/ | $ Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t Reply 1.1 |L| | Available | | *** |_/ | conference G | | Reply 1.2 |L| | | |(conferences| | | Fun Class | | Topic 2 |L| | Conferences | | of | | | conference A | | Reply 2.1 |L| | | | interest) | | | Work Class | | Reply 2.2 |L| +-------------+ +------------+ | | conference B | | Reply 2.3 |L+---|----------------------------+ | conference J | | . |L | +-------------&< Specifies a marker about which you want to get information.3 Command_DescriptionWD The SHOW MARKER command shows the note that is marked by the marker you specify.iC Use the /ALL qualifier to see a listing of all marker names in all , entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for all @ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D(r movement will occur in the direction of the beginning of the$ file, that is, to the left and up. 3 BOTTOM Gold B = Moves the cursor to the bottom of the document being edited.  - 3 CENTER_LINE  Gold C . Centers the current line between the margins. e3 CONTINUE_SEARCH_SELECT Gold ? and Gold /= Causes the search function to continue, looking for the nextrD occurrence of the target string. The "found" target string will be SELECTED. |3 CONTINUE_SEARCH_KEY  G( Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t5$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`:G"(kold . and Gold >= Causes the search function to continue, looking for the nextp" occurrence of the target string. 3 COPY Gold MINUS C Copies the select range, storing it in a paste buffer. The copiedf@ text will remain in its original position in the document. The@ select range is all the text between the selected position (seeD SELECT) and the current cursor position. If you have not selected aB range and the cursor is positioned on the current search string,A that string is cu-r movement will occur in the direction of the beginning of the$ file, that is, to the left and up. 3 BOTTOM Gold B = Moves the cursor to the bottom of the document being edited.  - 3 CENTER_LINE  Gold C . Centers the current line between the margins. e3 CONTINUE_SEARCH_SELECT Gold ? and Gold /= Causes the search function to continue, looking for the nextrD occurrence of the target string. The "found" target string will be SELECTED. |3 CONTINUE_SEARCH_KEY  G, Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t5 Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t- Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing tlold . and Gold >= Causes the search function to continue, looking for the nextp" occurrence of the target string. 3 COPY Gold MINUS C Copies the select range, storing it in a paste buffer. The copiedf@ text will remain in its original position in the document. The@ select range is all the text between the selected position (seeD SELECT) and the current cursor position. If you have not selected aB range and the cursor is positioned on the current search string,A that string is cu 0in< your Notebook. The default entry name is the file name (or7 conference name) from the full notefile specification. D In one step, you can add a conference to your Notebook and give theC conference an entry name that is easy for you to remember and type $ using one of the following methods:9 o Specify the conference name as the parameter, andi: use the /NAME qualifier to specify the entry name.8 o Specify the entry name as the parameter, and use6 the /FILE qu0 Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t nalifier to specify the conference.8 o Specify the entry name as the parameter, and use< the /OBJECT qualifier to specify the VAX Distributed8 Name Service (DNS) object name of the conference9 (assuming DNS is installed on your system and thee) conference has a DNS object name)wD To add a conference that exists in the NOTES$LIBRARY directory on aF remote node, you must include the node name with the conference name.B To add a conference that resides in a pri2e bottom window.C Otherwise, the NOTES$EDIT buffer is empty, and you type your replyr in this buffer.D Use the EVE command OTHER WINDOW to move back and forth between the two buffers.t< If you do not want to see the NOTES$SCRATCH buffer, use theC /NOEXTRACT qualifier. The NOTES$EDIT buffer is enlarged to a full  screen.C Use /NOEDIT when you want to use text in a file for your reply andyE you do not want to edit the text. DEC Notes immediately asks you tod? provide a title for you pr reply, unless you use the /[NO]TITLE qualifier. D If DEC Notes is unable to write your reply to the conference, or ifC you cancel your reply, you can use the /LAST qualifier to retrieveeE the most recent contents of the NOTES$EDIT buffer. You can also usenD the /LAST qualifier to repeat the same note (as a topic or a reply)1 in several conferences by following these steps:aC 1. Immediately after adding the reply you want to repeat, use the.3 CLOSE command to leave the current co4 Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionrA The READ/MARKER command displays the note that has the specifiednE marker name. Since marker names must be unique within a conference,:/ READ/MARKER specifies a single topic or reply.uE You can specify the /ENTRY=entry-name qualifier with the READ/MARKERCC command to read a marker that is used in more than one conference.eF Issuing t5 whether you are reading a topic or reply. If you are reading aC topic, this command displays the last reply to the previous topic.R 3 Examples Notes> READ 8.6 Notes> BACK NOTEtB Displays reply 8.6. Then, the next command displays reply 8.5. Notes> READ 8 Notes> BACK NOTEeD Displays topic 8. Then, the next command displays the last reply to topic 7.2 REPLYn1Displays the previous reply for the current note.m Format: BACK REPLYa3 Command_DeqscriptionuC The BACK REPLY command displays the previous reply for the currentl? topic. You cannot use the BACK REPLY command to move past therB current discussion. If you are reading a topic and you issue theD BACK REPLY command, DEC Notes issues the message "No more replies"./ You can use the KP1 key to issue this command.l 3 Examples Notes> READ 4.3 Notes> BACK REPLYB Displays reply 4.3. Then, the next command displays reply 4.2. Notes> READ 6.1 Notes> BACK 8ystem was installed, you may needo? special privileges to create a conference in the NOTES$LIBRARY A directory. If so, you can create the conference in your private6B directory and ask your system manager to move the conference intoF the NOTES$LIBRARY directory, using the command procedure SYS$MANAGER: NOTES$MOVE_CONFERENCE.COM.nF You must specify the name of the conference you want to create. ThisD name is the default entry name when someone adds this conference to their Notebook.A Y8 Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t sou can use the /[NO]RESTRICT qualifier to control access to the B conference, restrict the creation of keywords to specific users, G or both. The default is to create a public conference that anyone cani4 access and in which keyword creation is restricted.E If you decide to create a private conference (open to a select groupdD of users) or a restricted conference (in which only certain members@ can create keywords), you must create a membership list for the? conference. The membership list &$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`"9:entry-name /CLASS=*,? To delete all entries in a class (that is, to delete the classO itself), issue the command:! DELETE ENTRY * /CLASS=class-namey 3 Qualifiers/CLASS=class-nameyF Specifies a single class from which to delete the entry. The defaultD is to delete the entry from the current class. To delete the entryD from all classes, use the wildcard character (*) as the class name. 3 Examples* Notes> DELETE ENTRY FOOTBALL /CLASS=*/ Deletes the entry FOOTBALL from all clawsses.n, Notes> DELETE ENTRY /CLASS=GAMES ALIENS6 Deletes the entry ALIENS from the class GAMES only.& Notes> DELETE ENTRY * /CLASS=MISC Deletes the class MISC. 2 KEYWORDa5Deletes a keyword from the specified or current note.s Format:* DELETE KEYWORD keyword-name [note-ID]CThe square brackets [] indicate that the enclosed item is optional. 3 Parameters keyword-name& Names the keyword you want to delete.note-IDr@ Specifies a single topic or reply. = Format: READ/MARKER marker-name 3 Parameters marker-name < Names the marker associated with the note you want to read.3 Command_DescriptionGA The READ/MARKER command displays the note that has the specifieduE marker name. Since marker names must be unique within a conference, / READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEReC command to read a marker that is used in more than one conference. F Issuing t> Format: READ/MARKER marker-name 3 Parameters marker-namee< Names the marker associated with the note you want to read.3 Command_Description A The READ/MARKER command displays the note that has the specifieddE marker name. Since marker names must be unique within a conference,2/ READ/MARKER specifies a single topic or reply. E You can specify the /ENTRY=entry-name qualifier with the READ/MARKERdC command to read a marker that is used in more than one conference.oF Issuing t > range of notesSD from highest to lowest. You can also use the NEXT SCREEN (KP0) and< PREVIOUS SCREEN (KP.) keys to scroll through the directory.E You can display a note listed in the directory by moving the pointerrE (>) to the note and pressing the SELECT (KP7) key. You can move them1 pointer forward with KP2, and backward with KP5. 2 Qualifiers/ALLC Includes topics and replies in the listing. The /ALL qualifier isEA not needed when you use a notation for specifying the note-rangeay@ parameter that implies replies are to be included (for example, 2.*-8.*)./AUTHOR=usernameA Lists only notes written by the specified user (author). If yousD include a node name with the user name, the directory is limited to that specific combination./BEFORE[=date-time]e9 Lists only notes entered before the date-time specified.t< The date-time can be any valid VMS date-time specification.A If you specify /BEFORE without a date-time value, the default iss /BEFORE=TODAY.p ss theD buffer, you can perform any EVE command on the contents of buffer DIR.d Notes> EVE BUFFER MESSAGESrC Displays messages that appeared in the DEC Notes and EVE messagee@ windows since the beginning of the current DEC Notes session.ww(KP7) key. You can move them1 pointer forward with KP2, and backward with KP5. 2 Qualifiers/ALLC Includes topics and replies in the listing. The /ALL qualifier isEA not needed when you use a notation for specifying the note-rangeaADIFpB note, which you can choose to extract to a separate file. If youD are running in batch, the DDIF notes are extracted to the same fileB as the other notes in the range, but only the ASCII-text portions of the DDIF notes are included.< The EXTRACT and SAVE commands are synonyms, and can be used interchangeably.e 2 Qualifiers/ALLD Specifies that topics and all replies in the specified range are to be extracted./APPENDuF Appends the extracted notes to the output file. If t|he file does not exist, it is created./AUTHOR=usernameE Extracts only notes entered by the specified user. If you include aeD node name with the user name, only notes entered by the author from that node are extracted.O/BEFORE[=date-time]e< Extracts only notes entered before the specified date-time.< The date-time can be any valid VMS date-time specification.A If you specify /BEFORE without a date-time value, the default is- /BEFORE=TODAY. /HEADER (default)p /NOHEADER.;C@If you normally use the EDT editor in keypad mode and you do notGredefine the keypad keys, you should try using EVE with the EDT keypad.aBSpecify this by typing the following command at the Notes> prompt: SET PROFILE/EDITOR=EDTEIf you normally use EDT line mode as well as keypad mode, or you haveSCcustomized EDT using EDTINI.EDT, you should specify callable EDT as ,your editor by typing the following command:! SET PROFILE/EDITOR=(EDT,CALL)sDIf you normally use some other callaDualifier.tD You can retrieve the text of the last message you sent (with either@ the SEND or FORWARD command) by using the /LAST qualifier. You; start off in the editor with your last mail message in thesA NOTES$MAIL_EDIT buffer. You can edit the text before forwardings it again. 2 Parametersto-listr; An addressee, or a list of addressees separated by commas,a9 optionally specified on the command line. If you do not8 use the to-list parameter or a qualifier specifying the4 recip}ient, DEC Notes prompts you for the addressee. 2 Qualifiers/AUTHORtG Forwards the note you are currently reading to the author of the note.w /CC_PROMPT /NOCC_PROMPTB Specifies whether or not a CC: prompt should appear, which allows1 you to create a carbon-copy list of recipients. h/CONFIRM (default) /NOCONFIRMB Controls whether a prompt is issued before the note is forwarded,C asking you to confirm that it should be forwarded. Your response to the prompt can be YES or NO.Fes Notes> HELPF Displays the listing of DEC Notes commands in functional groupings,B and prompts for the name of the command you want help on. Type; a question mark (?) for a listing of DEC Notes commands._ Notes> HELP ADDF Displays the listing of options for the ADD command and prompts for the option you want help on.e. Notes> HELP DIRECTORY/CONFERENCES COMMAND? Displays the command description help text for the DIRECTORY G /CONFERENCES command. You can request help on one of the qualifierss9 for DIRECTORY/CONFERENCES, or help on another command.ewwently reading to the author of the note.w /CC_PROMPT /NOCC_PROMPTB Specifies whether or not a CC: prompt should appear, which allows1 you to create a carbon-copy list of recipients. h/CONFIRM (default) /NOCONFIRMB Controls whether a prompt is issued before the note is forwarded,C asking you to confirm that it should be forwarded. Your response to the prompt can be YES or NO.H command or the SHOW MARKER/ALL command. To see the note numberB associated with a particular marker, use the SHOW MARKER command.A To retrieve a note that you marked, use the READ/MARKER command.oE To delete a marker, use the DELETE MARKER command. This deletes the  marker only, not the note.d? The MARK and ADD MARKER commands are synonyms, and can be usedE interchangeably.E 2 Examples Notes> MARK TELEVISIONe5 Marks the current note with the marker TELEVISION.o Notes> MARK HYPERSPACE 3.7 - Marks note 3.7 with the marker HYPERSPACE. wwlp on another command.ewwently reading to the author of the note.w /CC_PROMPT /NOCC_PROMPTB Specifies whether or not a CC: prompt should appear, which allows1 you to create a carbon-copy list of recipients. h/CONFIRM (default) /NOCONFIRMB Controls whether a prompt is issued before the note is forwarded,C asking you to confirm that it should be forwarded. Your response to the prompt can be YES or NO.Jith quotation marks. To remove them notice, type: MODIFY CONFERENCE /NONOTICE /REPLY_ONLY /NOREPLY_ONLY (default)n? Specifies whether or not the ability to write is restricted toa? replies, except for moderators and any members who are granted  WRITE_REGARDLESS privilege./RESTRICT[=(MEMBERS,KEYWORDS)] /NORESTRICT[=(MEMBERS,KEYWORDS)]? Specifies whether or not to restrict access to the conference,V keyword creation, or both.t> The /[NO]RESTRICT qualifier accepts two vLAn$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`Մlkp"z]jڃ-"]% mQmz '=H?Mh}]c$@c{Jd]-?)9CGZqTd ~܎ܸ((W7C$s)K|."D֔^PmbҾ}WwlV@ihѹ !~nwFю:5A "3y8rn33̈́\bZ -:6p =q-E%<ī $2&6DhHCC/6}ODbYč (HZ3JT?5pe0uwE>}iX;L-`R9bzg/cQ¼3'%9"z3l z-T~4t [0iT@Q ]ZmJ('[Ź̷):Q ^`GzA=B-OoBYptlr;A+Ed'آ2„$PM#K5Є(\6SElDh nlu6f{zvew,حebcYmpX[:r8}K4tZ%Lv+_[$j]31vfcQ=X)E EWo)o]IN/(lI-"h]ԭP@-h4` Ǘ.U">gv:Zw;u ;Uټ}r$ SPDSU]5 jx a:8lAQ0EX*"; ) M-z4F ՊFkzk1{Z7NObRȆ#'‡5BsswG.U FZO{')*-!Ȧr a2WY rD"),bcc9@K 7'zo !؅Oy/}N+)- ~uȂEq-[û%f;lƠnUqԩ  9/ce}OEf"v%:Ԙgw_ϥ{DP+'J@45gS^'ȩmgӄ{ڕЃsAt:AAz3fO=ۡc(BڶE9$Q10mF,T(VQ9#.zds#_Pe$4A i>%YfyN/"LόZa8pK9R8HKP+>]ӎ>PyAqV9$Z=YkܤHG.r;L΢HdbcXx R'HwI n$>`\?*PtC3i64qrU7_IfH tB9hM@(5m٢nmƉJ?BrjpQMfznEأ tH]dmM-ɗH!3n [70>G;C9$ @no6\s3 ⢥m \"-`FmOm hj.^mQ -7hR#N<6\]{ZG03 djB[#\X7m`"39 ,vl^[6q$iAAIfjpۢY話gHSE06RM^SA`Kw()¾S=rgHtwsN =K_rPʆmeh$ge Ի>(EՋq7C? p&Vl̿{O4uX X i-ԕ=ϕ=`rio-B󈯜<;|觷]*r*ˏ@z[*c,=)_ 4! |[Hy<"86;ۢܣǎQ@#j![gokNf $[z&YI3~U˞dѸ$RDj 6H=PiKAxc'!fMy$Ru2 o%[ g4mDs̑-ߺ8c6r@X.҃҄2? =˚7E;{⊡-qC9޳vl02g:2U+s+iqFߡm<& S@ۚJ6 *n99Mc+h9lI/1:xR ?T6ҜCl- VYO_C]'}0;PT[pP&ݡe*tБQ^>3H{uH}` ۲Er~GIJc`>'L"2}ynrt{^8DvV1˜To-q酐(|F9,(Ui[t2?Q)%‡"}Ej"<7e"G+ka5Rz5->٠G|"Q1w`QkE (çҎF WM ĊJO |L<+T^煟ixr881C  /D\TOAV X2}gXc|א-}'o|gBڞd~U2A|Zt8am/ndz['+400]y # `uqOa2OHrc"+7`mϖ/Kۍc;GEMÖyT\e[h_b9-NxQ_+^<7(Sq>fe0Lt Rnm 6R )IUe/ʤhB՝h 3347ELO'N_ Kb$z?njt2u*N1{aNލeh#E I x2 ver"M_ۦ 1Y? ? T*`F7eQ*UROlbAi,ϘX9^7|7$ma`*IT~䐗rٻ,Zz)2Nht>5+&jZ*'ECsR7zb{P94 *i74d5>z6gN/!tGrh~~ozjEhfL`; p(Is2puͲH8mSnrBYo'RsFp:}`z8=/J}_dkr5he @E'g]tk6;vLO8(,%-g| =Lsb/&@DjB|a-:-dq7DM7( ta] KS)UnhM&Eg !3 e0U8 M[eDlfw&8pBً7_wxIs%Zs]cgTlE$V-kK\"kDI oI,8{8.Snfw2\,!θ4 Iv!|TSa,%m#_K=j^RW}n>uQ_O1r8)&/>]kw$Nae0iEBV~MtiOKg23ztR}^~h>U_TH U` Vu=^!_/x ;v 8Ea)K=Ѥe|PZ)(v+x:>s% ZV%N+2u{g.={bH u%[~ 7>FflUw,%gwu+ @~.~L)eCtuO8C-ۤ ;nRF5! Ias`hopWA) 0As'\HpGZ2m?j7UijTc'7juF->Ϝ}|ba\պx=MdJ)DoZS'4„ $5>̔ D">D*0GQ\Y[[uҪ8r68หQ[#MNDɖىFn\8݊H! AD|Zv׈b뿼(Fmi^mz{z"8F!a9SPP9*bT'&,X%eUC#qlx2C"|q+h3J~_*F9f6^OUs  ?\PV-,[F)cP@]:1@1S`W`L YxnKX#cmt~1_jP~T pmaQrMgjrrJ" MH2)Kpf\ Av6>sZqчWFG))OCW|yk(h?en0DtKuNKb>Zmudx aD2eqkn*aIjڶ qu0\OE,>Ւ1-c !Kg]t.~%d1MՏ)|y ^q olh!ZN9V#I"g}]Qa~siq'vӽbK v(8]Ԗ Eq6zʈZXбE>FTo8Qn'*Un{=4$l]R!˳6$bհ7T'fVpo3q>a6Ūf&~A9PH1?1d5e ==geHfk;oS[,Cu%Ka~ D2hH 7f7ӏ] (%n?x@E |qM}wcf4w`THaJ6WB6PQ>(G* ,Q4 ~l;1b5`ALtPR9pak/xj6z^k`w@=r6Z|e)>`ʶC+91[o^Y{PSAT/+ `YSbT7 몴DBۂjQ]0!2,~mOA"~6$|~$TeRBf *dcds&A"I>'J'fy:sICW٦yy&Si,jw:UchaO;WE/"lXHo?t[;]tc;MF3>inpMіP 0>%?Xe dKX,yu\2J< /*t[h}4\*`ye=vuۏ+Icm3\;TAg8JEyQ(\p4 H|zKFpXѺ{w,kAY2GЬ+:Ĩso IB!mB tJSTUbrAC"3.VO"/ɓdX?F89ޯ^s$y8od1u6A[|TdE#9XF~rǾi9~4xyy>sos;v.a>swp8"K7%Y_BJ aı*&&.}'dEsl)\1#9)us3*PeѱQu2|wԩ1Cqz?]C7Qz{ F: _Z!6g{d`(49wRHAC>ހ;}jgxRx%F7ttL a/&S=DeHEbf,b |(p./;Ѵ㉘yۀ5v(֒ϱ'/d$PN @_zأz%[vKx a17I.hI,ްLi%="jO}=]hSH;A\: KIE^T7}pITsPz Bj`8Ӂ-yHONj LslA Pk/ 5Iܚf'Em(Fkx/T~潟2gOl"]NB*|Jhm3C{vhqSNt-F@M q21ii|4"XFp而6hyEj4#^6Yh(eqml u@%̬-g'նWh|.v. b8:Xz zdDMNNW^&lb ν,o4 Sr"Ft878vr*#R`搜!|; Pl  ӺVPSفZӁyL Fhnd.F5F%7hh<65ztb;M:@nf OсEK5)tpϝ6%xkڢ9A?wM:9ڷUє;')W=cBYP6a\H#Ȳ,J՛k'!*NT, N/|EZ4K{aϷ+dx\PѥNnl7NB)GRgyjNz 0ِJ7x9-I"WW e;MEa)Q|)VULɘ@F|4wiQeG܄`TYaA7K~lxhQ.rNw2<猬y (nn1MChL>p͍`^}%YRlX#:J6PZb E,\'I,KC@@ U`>doH&v'hw]$*8CTe=P 8Dia7G\ ;Cx3X48EB1|A'@m)۱_RK vm`= 4Ky"'ZuP񶼤K|^l?iR8iW@AП+ ࣘ# VP L~Q ~I8p^,cAˮ:E#~glMaM+^ ,yT>BY)imPr/C&DM׺um1v&LO<:E=F$dN1y5*POhX33$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`K"J ~alues: MEMBERS, and? KEYWORDS. If you do not specify any values, then both membersa> and keywords are restricted (unrestricted, with /NORESTRICT).= If you specify one value, the other value remains unchanged.r> For example, if the conference currently restricts access and? keyword creation, and you specify /NORESTRICT=MEMBERS, keywordl creation remains restricted.f/TITLE="string"w> Changes or sets the title of the conference to the string you4 specify. Surround the string with quotatLeading.t Format: NEXT TOPICt3 Command_DescriptionFA The NEXT TOPIC command skips over the rest of the replies to the current topic.r/ You can use the KP2 key to issue this command.p 3 Examples Notes> READ 40.5  Notes> NEXT TOPICA Displays reply 40.5. Then, the next command skips the rest ofR1 the replies to topic 40 and displays topic 41.o2 UNSEENDisplays the next unseen note. Format: NEXT UNSEEN3 Command_DescriptionaC The NEXT UNSEEN c ommand displays the next note outside the currentpC discussion that you have not yet read. Unseen notes are displayednC in chronological order, according to the time the notes were addedvC to the conference. The NEXT UNSEEN command skips over the rest ofe> the replies to the current topic, and automatically marks the skipped replies as "seen".o4 You can use keypad comma (,) to issue this command. 3 Examples Notes> NEXT UNSEEN D Skips the remaining replies to the current topic an Othan the default class, in one step. InC addition, you can specify one or more entries in the activated (orsC default) class to be updated before you enter DEC Notes, provided y@ you do not specify a note to be displayed by using the note-ID parameter.T> If you use the /UPDATE qualifier without specifying any entryE name(s), DEC Notes updates all entries in the activated (or default)E class. After DEC Notes updates the specified entries, you return tom the DCL level.D To open a con< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Pference directly, without going through your Notebook,E use the /NONOTEBOOK qualifier. The entry name parameter you provide D is treated as the file name of a notefile specification. DEC NotesD looks in the NOTES$LIBRARY directory, instead of the default class,F for the conference. When you use /NONOTEBOOK to invoke DEC Notes andF open a conference, information about which notes you have or have not seen is not available. 2 Qualifiers/AUTOMATIC[={DIRECTORY|UNSEEN}]t /NOAUTOMATIC@ Spe cifies whether the /AUTOMATIC setting from your user profileC should be used when opening the conference. The default is to usehA the automatic setting. Use /NOAUTOMATIC when you wish to open a,C conference and not see the first unseen note or directory listing. D Use /AUTOMATIC=DIRECTORY or /AUTOMATIC=UNSEEN to override your user@ profile setting. If you use the optional note-ID parameter, it> supersedes the /AUTOMATIC qualifier and displays the note you specify./CLASS=class-nameN/C Ren opening the conference. The default is to usebA the automatic setting. Use /NOAUTOMATIC when you wish to open a C conference and not see the first unseen note or directory listing.DD Use /AUTOMATIC=DIRECTORY or /AUTOMATIC=UNSEEN to override your user profile setting.c/CLASS=class-nameu: Specifies the class in which the entry is found. Use the > /CLASS qualifier to cause DEC Notes to look for the entry in A the specified class only. You cannot use /CLASS and /NONOTEBOOKM together./NOTEBOOK (default)O /NONOTEBOOK ? Specifies whether the conference is an entry in your Notebook..? Use the /NONOTEBOOK qualifier to open a conference that is notIB an entry in your Notebook. You cannot use /CLASS and /NONOTEBOOK together. 2 Examples" Notes> OPEN INTERNATIONAL 2.2C Closes the current conference (if there is one), opens the entryhC named INTERNATIONAL in the current class, and displays note 2.2.r% Notes> OPEN TAXES /CLASS=IMPORTSF Closes the currTeplies in the specified range./AUTHOR=usernameC Prints only notes entered by the specified user. If you include acD node name with the user name, only notes entered by the author from that node are printed.r/BEFORE[=date-time]vE Prints notes entered before the specified date-time only. Any validtC VMS date-time specification is acceptable. If you specify /BEFOREc9 without a date-time value, the default is /BEFORE=TODAY.a/COPIES=number/COPIES=1 (default)NC Specifies the number of copies to print. The default is one copy.s/FORM=form-nameeB Specifies the form name to use when the notes are queued. If you? do not use the /FORM qualifier, the default form for the queuec is used.C/HEADER (default) /NOHEADERC Specifies whether or not to include the note header in the printed  output./KEYWORD=keyword-name 0 Prints only notes having the specified keyword./NOTIFYs/NONOTIFY (default) A Specifies whether to notify you when your print job i< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Whe READ/MARKER command without the /ENTRY qualifier displays< the marked note in the first entry (in alphabetical order).F You can see the names of markers in the current conference by issuingG the SHOW ENTRY command. You can see the number of the note associatede= with a particular marker by issuing the SHOW MARKER command.sF You do not have to be in a conference to use the READ/MARKER command.A DEC Notes automatically opens the conference containing the note C marked by the marker you sp ecify. If you are in a conference, andiD specify a marker that marks a note in another conference, DEC NotesC closes the current conference and opens the other conference. YoueF can use the READ/MARKER command to jump from conference to conferenceB without issuing the OPEN and CLOSE commands. To read an unmarked note, use the READ command. 3 Qualifiers/ENTRY=entry-names@ Specifies a specific conference to the READ/MARKER command when= duplicate marker names are used in more than one co Yply, unless you use the /[NO]TITLE / qualifier.eD If DEC Notes is unable to write your reply to the conference, or ifC you cancel your reply, you can use the /LAST qualifier to retrievesE the most recent contents of the NOTES$EDIT buffer. You can also usecD the /LAST qualifier to repeat the same note (as a topic or a reply)1 in several conferences by following these steps:hC 1. Immediately after adding the reply you want to repeat, use theo3 CLOSE command to leave the current confer ence..E 2. Use the OPEN command to open the conference in which you want ton repeat the note.CC 3. Go to the place in the conference where you want to insert the A note, and issue the WRITE/LAST command (to use the note as aoC topic) or the REPLY/LAST command (to use the note as a reply).nE 4. The reply you last entered in the previous conference appears inF the NOTES$EDIT buffer. You can edit the note, if desired, before0 you add the note to the current confere< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Di$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`H"[/AUTHOR=usernameB Saves only notes entered by the specified user. If you include aD node name with the user name, only notes entered by the author from that node are saved.n/BEFORE[=date-time]E> Saves only notes entered before the specified date-time. The8 date-time can be any valid VMS date-time specification.A If you specify /BEFORE without a date-time value, the default isN /BEFORE=TODAY. /HEADER (default)e /NOHEADERdA Specifies whether or not to include the note headword "RANDOM" in topics only, starting with topic E 21 and ending with topic 50. The next SEARCH command searches for,D the next occurrence of the word "RANDOM", beginning with the next topic.iww> Saves only notes entered before the specified date-time. The8 date-time can be any valid VMS date-time specification.A If you specify /BEFORE without a date-time value, the default isN /BEFORE=TODAY. /HEADER (default)e /NOHEADERdA Specifies whether or not to include the note heado add the conference to a particular existing class.H To see the name of the conference linked to a note that has an asterisk4 next to its note number, use the SHOW NOTE command.D You can also use the SELECT key on the editing keypad (VT200-series) terminals) or KP7 to issue this command.a 2 Examples Notes> READ 34.0I Notes> SELECTE Selects the conference linked to note 34.0 and adds the conference  to your Notebook. Notes> DIRECTORY/ENTRIESi Notes> d`py list of recipients. t/CONFIRM (default) /NOCONFIRM@ Controls whether a prompt is issued before the message is sent,@ asking you to confirm that it should be sent. Your response to the prompt can be YES or NO. /EDIT (default)(/NOEDITiC Specifies whether or not to invoke the editor to send the message. /LASTe< Specifies that you wish to start off in the editor with the@ last message that you mailed using the SEND or FORWARD command./MEMBERSA Sends the mail message < Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dto all members on the membership list forhC the conference. You can use this qualifier only when a membershipn? list exists, and when the moderator has defined a mail addressg? for each member by using the /MAIL qualifier on the ADD or SETe MEMBER command. /MODERATORStH Specifies that the message be forwarded to the conference moderator(s)./PERSONAL_NAME="string",/NOPERSONAL_NAME@ Specifies a personal name for one-time use on the mail message,@ or specifies that it carry no perbmmand_Descriptione> Use the SET CONFERENCE command to change or set the following( information for an existing conference:8 o The title, which appears in the conference headingC o The notice, which appears beneath the conference title in the headinge> o Whether to restrict access, keyword creation, or both to specific members> o Whether anyone besides the moderator or a member grantedC WRITE_REGARDLESS privilege can enter notes in the conference, ' or enter topics in the conferencel B You must be a moderator for the conference, and must have enabledA your moderator privileges with the SET MODERATOR command, beforeg" using the SET CONFERENCE command.F When you restrict access, keyword creation, or both, you must specifyD the users who can access the conference (called members), and whichD of these users can create keywords. You use the ADD MEMBER command2 to specify members and assign privileges to them.C To set up a bulletin f 3 Examples Notes> SHOW ENTRY JOKES/ Shows information for the entry named JOKES.i2 ERROR .Shows the full text of the last error message. Format: SHOW ERROR3 Command_DescriptioncF The SHOW ERROR command shows the full text of the last error message.C Use this command when you need more information about the cause off an error. 3 Examples Notes> PRNITt< Unrecognized command verb - check validity and spelling Notes> SHOW ERROR< Unrecognized comme< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dffer, even if you use the /NOEDITT qualifier to bypass editing.)/TITLE="string"d/NOTITLE@ Creates the note with the specified title or with no title, andB suppresses the prompt for a title. If you do not specify /TITLE ( or /NOTITLE, Notes prompts you for one. 2 Examples Notes> WRITEuB Invokes the editor with an empty NOTES$EDIT buffer, and assigns- your note the next available topic number.b% Notes> WRITE /NOEDIT COURSES.TXTs@ Gets the text for the topic fand verb - check validity and spelling /PRNIT/? Shows the full text of the error message. In this case, theo' command PRINT was incorrectly typed. " Notes> SHOW MEMBER /ALL /FULLE Unrecognized qualifier - check validity, spelling, and placement  Notes> SHOW ERRORE Unrecognized qualifier - check validity, spelling, and placements /FULL/rE Shows the full text of the error message. In this case, the /FULLsB qualifier is not a valid qualifier for the SHie, you can use ENTER to terminate a' command entered at the Notes> prompt."2 ERASE_PREVIOUS_WORDC CTRL/JD ERASE PREVIOUS WORD deletes the previous word on the command line.2 ERASE_START_OF_LINEo CTRL/U@ ERASE START OF LINE deletes characters from the current cursor0 position to the beginning of the command line.2 EXIT F10, CTRL/ZTC EXIT closes the currently open conference and returns you to your@ Notebook. If no conference is open, EXIT leaves DEC Notes and retui< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Drns to the DCL level.T2 HELP PF2, HELP, GOLD/HdE HELP displays the keypad diagram showing the key definitions. When D the keypad diagram is displayed, you can press any key to get help on that key.2 INSERT_OVERSTRIKES CTRL/A> INSERT/OVERSTRIKE toggles between insert mode and overstrike mode for command line editing.2 LAST_NOTE_READ Keypad MINUSA LAST NOTE READ redisplays the note you were reading immediatelyoA prior to the current note. This works regardless of dC Names an output file in which to store saved notes, in addition toh putting them in a buffer./SEEN  Marks the saved notes as seen.i/SINCE[=date-time]= Saves only notes entered since the specified date-time. TheU< date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default ise /SINCE=TODAY./TITLE="string"r; Saves notes having the specified string in the note title.e* Surround the string with quotation marks.t. The previous content of the paste buffer is  lost. 3 CUTo E3, Remove, MINUSD Deletes the select range, storing it in a paste buffer. The selectA range is all the text between the selected position (see SELECT) C and the current cursor position. If you have not selected a rangerA and the cursor is positioned on the current search string, that C string is cut. The previous content of the paste buffer is lost. e3 DELETE_CHARACTER PF4B Deletes the character on which thۣ$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`8"lt. The previous content of the paste buffer is  lost. 3 CUTo E3, Remove, MINUSD Deletes the select range, storing it in a paste buffer. The selectA range is all the text between the selected position (see SELECT) C and the current cursor position. If you have not selected a rangerA and the cursor is positioned on the current search string, that C string is cut. The previous content of the paste buffer is lost. e3 DELETE_CHARACTER PF4B Deletes the character on which thn< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D vate directory, you mustD include the full notefile specification (node, device and directory name) with the conference name.C You can use the /CLASSES qualifier to add the entry to one or moresC specific classes. Use /CLASSES=* to add the entry to all existing ? classes. If you do not specify any classes, DEC Notes assumest0 you want to add the entry to the current class.B DEC Notes does not verify that the conference exists when you useC the ADD ENTRY command. This is done purposely pC Names an output file in which to store saved notes, in addition toe putting them in a buffer./SEENl Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. Ther< date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default ise /SINCE=TODAY./TITLE="string" ; Saves notes having the specified string in the note title.2* Surround the string with quotation marks. nference.cE 2. Use the OPEN command to open the conference in which you want tod repeat the note. C 3. Go to the place in the conference where you want to insert theeA note, and issue the WRITE/LAST command (to use the note as a D topic) or the ANSWER/LAST command (to use the note as a reply).E 4. The reply you last entered in the previous conference appears inDF the NOTES$EDIT buffer. You can edit the note, if desired, before0 you add the note to the current conr REPLY@ Displays reply 6.1. Then, the next command displays topic 6. Notes> READ 5.0 Notes> BACK REPLY No more repliesA Produces an error message. You must be reading a reply, not aL( topic, to use the BACK REPLY command.2 TOPICtADisplays the topic previous to the one you are currently reading.p Format: BACK TOPICu3 Command_DescriptionDF The BACK TOPIC command displays the previous topic in the conference,* whether you are reading a topic or repl y./ You can use the KP5 key to issue this command. 3 Examples Notes> READ 8.6 Notes> BACK TOPIC? Displays note 8.6. Then, the next command displays topic 7. ww usually be accomplished by printing to a file withn@ the PRINT command.) This file must then be transferred: to your VMS system before you can add the text to the conference.< The ANSWER and REPLY commands are synonyms, and can be used interchangeably.E@ If the conference or the no uidentifies who may access the.D conference and which of these members can create keywords. You use6 the ADD MEMBER command to create the membership list.> You can use the VMS Mail Utility (MAIL) to announce a privateB conference to members only by issuing the SEND/MEMBERS or FORWARDD /MEMBERS command (provided you have defined a mail address for eachB with the /MAIL qualifier on the ADD or SET MEMBER command). DEC > Notes uses the membership list like a MAIL distribution list.C You can mu< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dake a public conference available on a "shopping list" in D another conference by using the SET NOTE/CONFERENCE command. (This4 method is not recommended for private conferences.)A If you want to add a new note to an existing conference, use thee REPLY or WRITE commands. J If you issue the CREATE CONFERENCE command and receive the error message L "Your software license does not allow this operation", contact your system manager.b 3 Qualifiers /REPLY_ONLY /NOREPLY_ONLYr? SpecifieswC Names an output file in which to store saved notes, in addition tot putting them in a buffer./SEENn Marks the saved notes as seen.r/SINCE[=date-time]= Saves only notes entered since the specified date-time. The< date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default ish /SINCE=TODAY./TITLE="string" ; Saves notes having the specified string in the note title.d* Surround the string with quotation marks.x The default is the note you are currently reading. 3 Command_DescriptioneB The DELETE KEYWORD command deletes a keyword from a note. If you> do not specify a note, DEC Notes deletes the keyword from the current note.? To use the /ALL qualifier to delete the keyword from all notes/B (and, therefore, delete the keyword), you must be a moderator for2 the conference or have CREATE_KEYWORDS privilege. 3 Qualifiers/ALLB Specifies that the keyword is to be deleted from all notes. This@ also causes the keyword itself to be deleted. Do not specify aB note-ID with this qualifier. In order to use this qualifier, you? must be a moderator for the conference or have CREATE_KEYWORDSt privilege. 3 Examples Notes> DELETE KEYWORD MRP1 Deletes the keyword MRP from the current note.C# Notes> DELETE KEYWORD KIDS 2.9 * Deletes the keyword KIDS from note 2.9.% Notes> DELETE KEYWORD /ALL SUGARD Deletes the keyword SUGAR from all notes, and deletes the key{/BUFFER=buffer-name 4 Puts the directory listing in the specified buffer.!/FULL!T5! Shows complete information for each note requested.u!d/KEYWORD=keyword-nameE/ Lists only notes having the specified keyword../OUTPUT=file-specq@ Specifies the output file for the directory. You must use this, qualifier to store the directory in a file./SINCE[=date-time]F Lists notes entered since the date-time specified. The date-time canA be any valid VMS date-time specification. If{< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D you specify /SINCEy8 without a date-time value, the default is /SINCE=TODAY./TITLE="string"ID Lists notes having the specified string in the title. Surround the string with quotation marks.p/UNSEEN( Lists only notes you have not yet seen. 2 Examples Notes> DIRECTORY 6.*-25.*C Lists topics and replies, starting with note 6.0 and ending witho? the last reply to topic 25. (This is the same as typing DIR /ALL 6-25.) Notes> DIRECTORY 10-20aD Lists topic Specifies whether or not to include the note header in thel extracted output./KEYWORD=keyword-names2 Extracts only notes having the specified keyword./SEENe# Marks the extracted notes as seen.S/SINCE[=date-time]@ Extracts only notes entered since the specified date-time. The@ date-time can be any valid VMS date-time specification. If youG specify /SINCE without a date-time value, the default is /SINCE=TODAY./TITLE="string"> Extracts notes having the specified strin]$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`R"}/EDIT (default)o/NOEDITi= Determines whether you enter a message to be included at theyF beginning of the note to be forwarded. DEC Notes automatically givesF you the option of prefacing the note with a message. Use the /NOEDIT qualifier to bypass the option./HEADER (default) /NOHEADER-D Specifies whether to include the note header at the top of the mail message. /LASTmB Retrieves the text of the last mail message sent (with either the: SEND or FORWARD command) into tion marks./WRITE/NOWRITE@ Specifies whether to prevent anyone other than a moderator fromB adding notes. You can set this conference attribute at any time;@ for a conference in progress, this prevents the addition of any> new notes. Any note in progress at the time you successfullyC complete the MODIFY CONFERENCE/NOWRITE command is not added to thet? conference. The author receives a message indicating that thee conference is write-protected.h 3 Examples? Notes> MODIFY CONFEREC Names an output file in which to store saved notes, in addition tot putting them in a buffer./SEENS Marks the saved notes as seen.t/SINCE[=date-time]= Saves only notes entered since the specified date-time. TheT< date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isS /SINCE=TODAY./TITLE="string"t; Saves notes having the specified string in the note title.* Surround the string with quotation marks. Format: SET KEYWORD keyword-namem 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_DescriptionB? The SET KEYWORD command lets a moderator change the name of a tF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.r 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.B 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINd displays the? next topic or reply that you have not yet read. The skippeda replies are marked as "seen".ww can set this conference attribute at any time;@ for a conference in progress, this prevents the addition of any> new notes. Any note in progress at the time you successfullyC complete the MODIFY CONFERENCE/NOWRITE command is not added to thet? conference. The author receives a message indicating that thee conference is write-protected.h 3 Examples? Notes> MODIFY CONFERE@ ERASE START OF LINE deletes characters from the current cursor0 position to the beginning of the command line.2 EXIT F10, CTRL/ZC EXIT closes the currently open conference and returns you to your@ Notebook. If no conference is open, EXIT leaves DEC Notes and returns to the DCL level.2 HELP PF2, HELP, GOLD/HE HELP displays the keypad diagram showing the key definitions. WhenD the keypad diagram is displayed, you can press any key to get help on that key.2 INSE< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DLASS=default-class (default)= Activates the specified class rather than the default class.v0 You cannot use /CLASS and /NONOTEBOOK together./INTERFACE=DECWINDOWSI/INTERFACE=CHARACTER_CELLs6 Activates the display device requested, if available.: If you are using a DECwindows workstation, the default is= /INTERFACE=DECWINDOWS. If DECwindows is not available, the 0 default is to use the character-cell interface. o0 If you want to use the character-cell interface< to Notes from a terent conference (if there is one) and opens the entry* named TAXES in the class named IMPORTS.% Notes> OPEN CURRENCY /NONOTEBOOKg@ Closes the current conference (if there is one) and opens the@ CURRENCY conference (which is not an entry in your Notebook).5 Notes> OPEN STAKES::FOREIGN_EXCHANGE /NONOTEBOOK=E Closes the current conference (if there is one) and directly opense? the FOREIGN_EXCHANGE conference, which resides on the STAKES- system.wwto Notes from a terC Names an output file in which to store saved notes, in addition tob putting them in a buffer./SEEN  Marks the saved notes as seen.m/SINCE[=date-time]= Saves only notes entered since the specified date-time. Ther< date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isD /SINCE=TODAY./TITLE="string"_; Saves notes having the specified string in the note title.i* Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Ds complete.n/QUEUE=queue-namea/QUEUE=SYS$PRINT (default)? Specifies a print queue to which the specified notes are sent.N< The default is the default print queue at your installation (SYS$PRINT)./SEENC! Marks the printed notes as seen.n/SINCE[=date-time]> Prints notes entered since the specified date-time only. AnyA valid VMS date-time specification is acceptable. If you specifye@ /SINCE without a date-time value, the default is /SINCE=TODAY./TITLE="string"rC Prirom the file COURSES.TXT without invoking the editor.  Notes> WRITE /LAST C Invokes the editor and retrieves the most recent contents of thep NOTES$EDIT buffer.W Notes> CLOSE  Notes> OPEN RESTAURANTS Notes> WRITE /LASTnE Uses the text last stored in the NOTES$EDIT buffer as the text for D the next topic in the RESTAURANTS conference. This allows you toD enter the same note in more than one conference without having toC retype it each time. Becau nference.e 3 Examples Notes> READ/MARKER REPORT@ Displays the text of the note that you marked with the marker REPORT.2 Notes> READ/MARKER OPTION /ENTRY=NEW_PRODUCTS@ Displays the text of the note that you marked with the marker$ OPTION in the NEW_PRODUCTS entry.wwed since the specified date-time only. AnyA valid VMS date-time specification is acceptable. If you specifye@ /SINCE without a date-time value, the default is /SINCE=TODAY./TITLE="string"rC Pri< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dnce.# NOTER< On a personal computer, you can use any editor that= gives ASCII output. (With most PC editors, this can/; usually be accomplished by printing to a file witho@ the PRINT command.) This file must then be transferred: to your VMS system before you can add the text to the conference.< The REPLY and ANSWER commands are synonyms, and can be used interchangeably.C@ If the conference or the note h< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dh$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`."C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Format: SET KEYWORD keyword-namem 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_DescriptionB? The SET KEYWORD command lets a moderator change the name of a tF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.r 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.B 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINer in the saved  output./KEYWORD=keyword-name / Saves only notes having the specified keyword. /SEEN  Marks the saved notes as seen.t/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default is  /SINCE=TODAY./TITLE="string"Y; Saves notes having the specified string in the note title.e* Surround the string with quotation mark< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DC Selects the conference alongside the pointer (>) (when you presse. the keypad key 7) and opens the conference.wwthe saved notes as seen.t/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default is  /SINCE=TODAY./TITLE="string"Y; Saves notes having the specified string in the note title.e* Surround the string with quotation mark< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dse WRITE/LAST invokes the editor, you B can edit the text before you enter it in the new conference, if desired. wwRDS [keyword-name] CThe square brackets [] indicate that the enclosed item is optional.e 3 Parameters keyword-nameD Names the keyword about which you want to get information. You can4 use the wildcard character (*) in the keyword name.3 Command_DescriptioncB The SHOW KEYWORDS command shows information about keywords in theD current conference. Name a specific keywC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Format: SET KEYWORD keyword-namem 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_DescriptionB? The SET KEYWORD command lets a moderator change the name of a tF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.r 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.B 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Duse the REPLY command. You must be reading,La reply (or the topic) in the discussion before you issue the REPLY command.@For example, to add a reply to the discussion on topic 10, type: Notes> 10 Notes> REPLYE+To start a discussion on a new topic, type:e Notes> WRITE HTo print notes, use the PRINT command. If you do not specify a range ofDnotes to print, DEC Notes assumes you want to print the note you areIcurrently reading. For example, to print topic 3 and all replies to that topic, type: Notes> PRINT 3.*oHTo leave a conference, use the CLOSE command. You can also press CTRL/ZCin place of the CLOSE command. For example, to close a conference:  Notes> CTRL/ZCIf an error occurs while in DEC Notes and you need more information Babout the cause of it, type SHOW ERROR. The full text of the last)error message is displayed on the screen.tFTo end your DEC Notes session, use the EXIT command (or press CTRL/Z).%For example, to exit D Format: SET KEYWORD keyword-namet 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionh? The SET KEYWORD command lets a moderator change the name of a F keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.o 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.n 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN--+ | conference P | | . |L | | conference A | +---------------+ +-------------+ |---> | conference B |d | conference C | | . |  | . |o | . |  | conference Z |t +---------------+.HA CLASS consists of a group of conferences that are related in some way.IA class works like a tabbed divider to keep related conferences together. IYou can also think of a class as something like a mail folder in MAIL, orlDa VMS subdirectory. Unlike a mail folder, however, a conference canDbe in more than one class at a time. You can create as many classesas you want in your Notebook.rwwccurs while in DEC Notes and you need more information Babout the cause of it, type SHOW ERROR. The full text of the last)error message is displayed on the screen.tFTo end your DEC Notes session, use the EXIT command (or press CTRL/Z).%For example, to exit De cursor is positioned and saves$ it in the delete character buffer. 3 DELETE_BEGINNING_SENTENCEf Gold Linefeed> Used to delete all characters from the cursor position to theC beginning of the sentence containing the cursor. If the cursor is ? on the first character of a sentence, the previous sentence ist deleted. 3 DELETE_WORDt PF3@ Deletes text from the cursor to the beginning of the next word,- storing the text in the delete word buffer. T3 DO Gold [ and Gold ]k{$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`!"C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.e cursor is positioned and saves$ it in the delete character buffer. 3 DELETE_BEGINNING_SENTENCEf Gold Linefeed> Used to delete all characters from the cursor position to theC beginning of the sentence containing the cursor. If the cursor is ? on the first character of a sentence, the previous sentence ist deleted. 3 DELETE_WORDt PF3@ Deletes text from the cursor to the beginning of the next word,- storing the text in the delete word buffer. T3 DO Gold [ and Gold ] to allow you to addnD the entry to your Notebook even if the node on which the conference= resides is unreachable at the time. Make sure you spell thes conference name correctly.t? You can also use the DIRECTORY/CONFERENCES command to obtain arF directory of available conferences. Once the directory is displayed,= you can add a conference to your Notebook by pointing to thec@ conference of your choice and issuing the SELECT command (or by? pressing the SELECT key). When you use this methC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.ference.# NOTEo< On a personal computer, you can use any editor that= gives ASCII output. (With most PC editors, this canr; usually be accomplished by printing to a file withn@ the PRINT command.) This file must then be transferred: to your VMS system before you can add the text to the conference.< The ANSWER and REPLY commands are synonyms, and can be used interchangeably.E@ If the conference or the no Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINg in the note title.* Surround the string with quotation marks./UNSEEN Extracts only unseen notes. 2 Examples Notes> EXTRACT MAIL.MSGF Extracts the current note, and stores it in a file called MAIL.MSG. Notes> EXTRACT BOOKS 10.*B Extracts topic 10 and all its replies and stores the notes in a file called BOOKS.TXT.T2 Notes> EXTRACT /KEYWORD=YALE COLLEGES.MEM *.*B Extracts all notes in the conference that have the keyword YALE6 and stores the notes he NOTES$MAIL_EDIT buffer./MEMBERSF Forwards the note to the conference members. Use this qualifier whenD you want to be certain all members see a particular note. When youC use this qualifier, you are not prompted for a list of addressees.K /MODERATORSt? Specifies that the note you are currently reading be forwardedl to the conference moderator(s)./PERSONAL_NAME="string"L/NOPERSONAL_NAMEB Specifies a personal name for one-time use on the note forwarded,F or specifies thatC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.NCE /TITLE="Course Evaluation System"SE Changes the title of the conference to "Course Evaluation System".nG Notes> MODIFY CONFERENCE /RESTRICT=KEYWORDS /NOTICE="NASA Project"eC Restricts the creation of keywords to users with CREATE_KEYWORDSDE privilege (see the ADD MEMBER command). In addition, this commandr% sets the notice to "NASA Project".& Notes> MODIFY CONFERENCE /NOWRITEC Prevents anyone besides a moderator from entering new notes from, this point on.t< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: SET KEYWORD keyword-namem 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_DescriptionB? The SET KEYWORD command lets a moderator change the name of a tF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.r 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.B 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINsonal name. The default is toF apply the personal name, if any, stored in your Notebook profile. IfH this is blank, the personal name, if any, in your MAIL profile is used./SELFt/NOSELFn= Specifies that a copy of the mail message be sent or not be E? sent to yourself, in addition to any other recipients. If younD do not specify this qualifier, DEC Notes uses the COPY_SELF setting from your MAIL profile./SUBJECT="string" /NOSUBJECT< Causes the mail message you are sending to  Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN{N$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`"board, in which only you can write notes, userB the /NOWRITE qualifier. To set up a conference in which only you= can write topic notes, but others can write replies, use the /REPLY_ONLY qualifier.e 3 Qualifiers/NOTICE="string" /NONOTICEe@ Changes or sets the notice for the conference to the string you? specify. Surround the string with quotation marks. To removeC the notice, type: SET CONFERENCE /NONOTICET /REPLY_ONLYS/NOREPLY_ONLY (default)l? Specifies whether or no Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINOW MEMBER command. 2 KEYWORDS;Shows information about keywords in the current conference.r Format:! SHOW KEYWORDS [keyword-name] CThe square brackets [] indicate that the enclosed item is optional.e 3 Parameters keyword-nameD Names the keyword about which you want to get information. You can4 use the wildcard character (*) in the keyword name.3 Command_DescriptioncB The SHOW KEYWORDS command shows information about keywords in theD current conference. Name a specific keywiscussionL@ boundaries. For example, if you read note 4.3, then read note= 6.5, you can redisplay note 4.3 by pressing LAST NOTE READ.a 2 MOVE_LEFTq CTRL/DC MOVE LEFT moves the cursor left one column on the screen. If thewI cursor is on the first column on the screen, it remains at that column;u< it does not wrap to the previous line or shift the window.* The left-arrow key invokes this command. 2 MOVE_RIGHT CTRL/FE MOVE RIGHT moves the cursor right one column on the scre3 DOWN DOWNC The v (down-arrow) key moves the cursor to the character below, in 2 the same column or to the end of the line below. 3 FINISH Gold Fa8 Files the edited document and ends the editing session.9 If you are sending a mail message, the mail message will be sent.A< If you are entering a topic or reply, you will be asked for the title for your note.s: If you were simply in the editor via the EVE command, you will be returned to Notes.O R 3 GET_FILE Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINod, DEC Notes) applies defaults for /CLASSES and /NAME. I If you issue the ADD ENTRY command, then attempt to OPEN the conference eK that you added, and receive the error message "Your software license does d9 not allow this operation", contact your system manager. a 3 Qualifiers /CLASSES=(class-name[,...])n /CLASSES=current-class (default)< Names the Notebook classes to which the entry is to belong.? Separate multiple class names with commas. The default is thes current class.EDC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.te has been set to NOWRITE, you must> be a moderator or a member with WRITE_REGARDLESS privilege to use the ANSWER command. 2 Qualifiers/CONFIRM (default) /NOCONFIRMC Determines whether you get a prompt asking you if the reply should / be entered. /NOCONFIRM suppresses the prompt.C/EDIT (default),/NOEDITCD Specifies whether or not to invoke the editor. You can use /NOEDIT4 only when you are using a text file for your reply./EXTRACT (default) /NOEXTRACTD Specifies whetherC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.word SUGAR. 2 MARKER(Deletes a marker from the current entry. Format: DELETE MARKER marker-name 3 Parameters marker-namev% Names the marker you want to delete.3 Command_DescriptionaB The DELETE MARKER command deletes a marker from the current entryA only. If you used this marker name in another entry, the marker/@ remains in that entry. You must specify the name of the marker to be deleted. 3 Examples' Notes> DELETE MARKER FORGET_ME_NOTt; Deletes the mar whether or not the ability to write is restricted to ? replies, except for moderators and any members who are grantedo WRITE_REGARDLESS privilege./RESTRICT[=(MEMBERS,KEYWORDS)]/RESTRICT=KEYWORDS (default) /NORESTRICT[=(MEMBERS,KEYWORDS)]= Specifies whether or not to restrict access, the creation of, keywords, or both.i= The /[NO]RESTRICT qualifier accepts two values: MEMBERS andlD KEYWORDS. If you do not specify one of these values, the qualifier- applies to both access and keyw< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINs in ascending order, starting with note 10 and ending with note 20. Notes> DIRECTORY 20-10RE Lists topics in descending order, starting with note 20 and ending  with note 10.2 Notes> DIRECTORY /TITLE="BUG" /AUTHOR=CHARLIED Lists notes written by user CHARLIE that have the word BUG in the title.,/ Notes> DIRECTORY /SINCE=YESTERDAY 100-9999cB Lists notes written since yesterday, starting with note 100 and/ ending with the last note in the conference.rC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DJ(E$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`"< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D the note carry no personal name. The default is toF apply the personal name, if any, stored in your Notebook profile. IfH this is blank, the personal name, if any, in your MAIL profile is used./SELFy/NOSELFEG Specifies that a copy of the note you are currently reading be sent orCF not be sent to yourself, in addition to any other recipients. If youD do not specify this qualifier, DEC Notes uses the COPY_SELF setting from your MAIL profile./SUBJECT="string"a /NOSUBJECT? Cause< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D2 ENTRY :Changes or sets specific information for a Notebook entry. Format: MODIFY ENTRY entry-name 3 Parameters entry-name/ Specifies the entry you want to change or set.u3 Command_DescriptionEC The MODIFY ENTRY command lets you change or set information for aneC entry in your Notebook. You must specify the name of the Notebook. entry you want to change.D You can change the name of the conference with the /NAME qualifier,D or change the notefile specification with theC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Format: SET KEYWORD keyword-namem 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_DescriptionB? The SET KEYWORD command lets a moderator change the name of a tF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.r 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.B 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINminal emulator window on a workstation, # specify /INTERFACE=CHARACTER_CELL.F= If you use the DECwindows interface, any other qualifiers or2 any parameters to the NOTES command are ignored. /NOTEBOOK (default) /NONOTEBOOKN? Directs DEC Notes to perform Notebook entry processing, and tooB activate the default class (unless you specify another class with the /CLASS qualifier).c? If you specify /NONOTEBOOK, the Notebook is opened for profile A information only, and by default, your nts notes having titles that contain the specified string only.H* Surround the string with quotation marks./UNSEEN  Prints only unseen notes./WAIT (default)N/NOWAITaB Specifies whether to print immediately or wait until you exit DEC Notes. 2 Examples. Notes> PRINT /NOTIFY /QUEUE=LQP 40.*-45.*D Prints topics 40 through 45, including all replies, on the letterC quality printer (LQP) and notifies you when the job is complete.l5 Notes> PRINT /NOWAIT /TITLE="POLICYas been set to NOWRITE, you must> be a moderator or a member with WRITE_REGARDLESS privilege to use the REPLY command. 2 Qualifiers/CONFIRM (default) /NOCONFIRMC Determines whether you get a prompt asking you if the reply shouldo/ be entered. /NOCONFIRM suppresses the prompt.N/EDIT (default)P/NOEDIT*D Specifies whether or not to invoke the editor. You can use /NOEDIT4 only when you are using a text file for your reply./EXTRACT (default) /NOEXTRACTD Specifies whether or  Format: SET KEYWORD keyword-namem 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_DescriptionB? The SET KEYWORD command lets a moderator change the name of a tF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.r 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.B 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINs./UNSEENo Saves only unseen notes.e 2 Examples Notes> SAVE MAIL.MSG 4 Saves the current note in a file called MAIL.MSG. Notes> SAVE BOOKS 10.*A Saves topic 10 and all its replies in a file called BOOKS.TXT.+ Notes> SAVE /KEYWORD=YALE COLLEGES *.*N@ Saves all notes in the conference that have the keyword YALE,4 and puts the notes in a file called COLLEGES.TXT.1 Notes> SAVE /AUTHOR=GLEN NUCLEAR 8-19 /SEENlA Saves topics from 8 through 19 thbe sent with theA subject you specify or with no subject. If you use the /SUBJECTrH qualifier, you must supply a subject (a string that must be enclosed inF quotation marks if it is more than one word separated by spaces). IfF you do not specify /SUBJECT or /NOSUBJECT, you are prompted to supply a subject.l 2 Examples% Notes> SEND /NOEDIT MESSAGE.TEXTf* Send to: BIGSIS::EDISON,LILSIS::MARSH1 Subject: Progress Report on Project Clean-UpkD Sends the text file named MESSA Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN ord to see information forE that keyword, or use the /ALL qualifier to see information about all  keywords for the conference.vB To see a complete listing of all the notes to which a keyword has% been added, use the /FULL qualifier.r> In a conference, you can add a keyword to the current note by@ moving the pointer (>) to the specific keyword and pressing the> SELECT (KP7) key. Move the pointer forward with the KP2 key, and backward with the KP5 key.n 3 Qualifiers/ALL? Use the /ALen. If theiH cursor is on the last column on the screen, it remains at that column;< it does not wrap to the previous line or shift the window.+ The right-arrow key invokes this command.d 2 NEXT_REPLY Keypad 3? NEXT REPLY displays the next reply in the current discussion.eE When viewing a directory of entries in your Notebook, KP3 moves thesE pointer (>) forward to the next entry with a non-zero Unseen count.,> You cannot use NEXT REPLY if you are reading the last reply. 2 NEؾe$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`\-"C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.EC Notes, type:  Notes> EXITAThe following table shows introductory commands and gives a briefpIdescription of each command. Type a question mark (?) for a full listing of commands.$Command Description$------- -----------<ADD ENTRY Adds a conference to your Notebook.NCLOSE (or CTRL/Z) Leaves a conference and returns you to your Notebook.5DIRECTORY Lists notes in a conference.u5DIRECTORY/CONFERENCES Lists aC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.% Gold Ge< Prompts you for the file specification of the file you wish8 to insert into the document being edited. End the file? specification input with the RETURN key. The file is insertedi to the right of the cursor. f3 HELP HELP, Gold H 3 INSERT_DATE_TIME Gold \ and Gold |0 Inserts the system date and time into the text. 3 LEARN. CTRL/K B Begins a learn sequence. All keystrokes you enter are remembered> until you press CTRL/R. Then, you will be asked for a C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dker FORGET_ME_NOT from the current entry.I2 MEMBER=Deletes a member from the membership list for the conference.s Format: DELETE MEMBER usernameE 3 ParametersusernameD Specifies the member to be deleted. Do not specify a node with the user name.t3 Command_DescriptionE? The DELETE MEMBER command deletes a member from the membershipuA list. You must specify the user name; do not specify the user's  node.D To use the DELETE MEMBER command, you must have moderator privi/ Notes> DIRECTORY /UNSEEN /BUFFER=DIRECTORYR@ Puts a listing of notes you have not seen into a buffer named? DIRECTORY. To see the listing, issue the command EVE BUFFERe DIRECTORY.t, Notes> DIRECTORY /KEYWORD=NITROGLYCERIN3 Lists notes that have the keyword NITROGLYCERIN.L2 /CONFERENCESCDisplays a directory of the conferences on the current or specifiedenode.a Format:& DIRECTORY/CONFERENCES [node-name]CThe square brackets [] indicate that the encloin a file called COLLEGES.MEM.> Notes> EXTRACT /AUTHOR=GLEN /KEYWORD=NUCLEAR FIL.DAT 8-30C Extracts topics from topic 8.0 through 30.0 that were entered bycB user GLEN and that refer to the keyword NUCLEAR. The notes are" stored in a file named FIL.DAT.: Notes> EXTRACT /SINCE=15-MAR /BEFORE=18-MAR NOTES *.*> Extracts all notes in the conference entered since 15 MarchD (00:00:00:00) but before 18 March (00:00:00:00), and puts them in a file called NOTES.TXT.e 2 /B Format: SET KEYWORD keyword-name 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_DescriptionF? The SET KEYWORD command lets a moderator change the name of a 1F keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.E 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.s 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINnot to display a buffer (called NOTES$SCRATCH)/ containing the note to which you are replying."/LASTi@ Retrieves the most recent contents of the NOTES$EDIT buffer for further editing.P/TITLE="string"p/NOTITLEA Creates the reply with the specified title or with no title, andnD suppresses the prompt for a title. If you do not specify /TITLE or% /NOTITLE, Notes prompts you for one. 2 Examples Notes> REPLY : Invokes the editor with the current note showing in the7  Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINat were entered by user GLEN,eD stores them in a file called NUCLEAR.TXT, and marks them as seen.; Notes> SAVE /SINCE=15-MAR /BEFORE=18-MAR NOTES.MEM *.* ; Saves all notes in the conference entered since 15 MarchC (00:00:00:00) but before 18 March (00:00:00:00), and stores thems in a file called NOTES.MEM. 2 /BUFFERo+Puts saved notes in the buffer you specify.p Format:) SAVE/BUFFER buffer-name [note-range]ICThe square brackets [] indicate that the enclosed item$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`" t the ability to write is restricted too? replies, except for moderators and any members who are grantedt WRITE_REGARDLESS privilege./RESTRICT[=(MEMBERS,KEYWORDS)] /NORESTRICT[=(MEMBERS,KEYWORDS)]? Specifies whether or not to restrict access to the conference,T keyword creation, or both.> The /[NO]RESTRICT qualifier accepts two values: MEMBERS, and? KEYWORDS. If you do not specify any values, then both membersg> and keywords are restricted (unrestricted, with /NORESTRICT).= If < Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D  You must enclose a list of class names in parentheses, and separate them with commas.D You can also use the /CLASSES qualifier to add an existing entry toB one or more classes. If you specify a class that does not exist,B DEC Notes automatically creates the class. The ADD ENTRY/CLASSESF command is convenient to use when an entry already belongs to severalE classes; with the MODIFY ENTRY/CLASSES command, you have to list theeG classes to which the entry currently belongs, as well as the ne or not to display a buffer (called NOTES$SCRATCH)/ containing the note to which you are replying.n/LAST @ Retrieves the most recent contents of the NOTES$EDIT buffer for further editing.f/TITLE="string" /NOTITLEA Creates the reply with the specified title or with no title, andD suppresses the prompt for a title. If you do not specify /TITLE or% /NOTITLE, Notes prompts you for one.E 2 Examples Notes> ANSWER: Invokes the editor with the current note showing in the7ord creation.s/WRITE (default)/NOWRITE0 Specifies whether participants may write notes.7 If /NOWRITE is used, only moderators and members with t, WRITE_REGARDLESS privilege can write notes. 3 Examples- Notes> CREATE CONFERENCE SOMNOD::COURSES E Creates the conference COURSES on system SOMNOD. By default, thiseB conference allows any user to access the conference, and to add notes. - Notes> CREATE CONFERENCE /RESTRICT BASICiC Creates a private conference on you Format: SET KEYWORD keyword-name 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_DescriptionF? The SET KEYWORD command lets a moderator change the name of a 1F keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.E 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.s 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN 3 /FILE qualifier. TheA change is reflected in all classes (if the entry belongs to morei< than one class), and seen/unseen information is unaffected.> You can change the classes to which an entry belongs with theB /CLASSES qualifier. The list of classes you specify replaces theB list of classes to which the entry currently belongs. Therefore,@ to delete an entry from a class, use the /CLASSES qualifier and@ omit that class from the new list. If you specify a class that4 does not exist, t Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN.automatic setting in yourcD profile (Directory, Next Unseen, or Noautomatic) is used. No entryA processing is done. This means that no information is availablen@ regarding which notes you have and have not seen. Further, theA parameter is treated as a notefile specification rather than thec# name of an entry in your Notebook.e? You cannot use the /NONOTEBOOK qualifier with either /CLASS orS /UPDATE.r/UPDATE /NOUPDATE (default)eE Updates the specified Notebook entries and returns ( E-90" 1-9999tC Prints all topics in the conference that have the phrase "POLICY.7 E-90" in the title, and starts printing immediately.r% Notes> PRINT /UNSEEN 55.0-59.999tF Prints topics and replies from 55.0 through the last reply to topic! 59 that you have not yet seen.h# Notes> PRINT /AUTHOR=GLEN 4-10eE Prints topics entered by user GLEN only from topic 4 through topicP 10., Notes> PRINT /SINCE=YESTERDAY 2.*-100.*B Prints topics and any replies entC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.*َ$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`e^"C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. < Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. < Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D #vailable conferences.RLDIRECTORY/NOTEBOOK Displays a listing of the entries in your Notebook.2EXIT (or CTRL/Z) Ends a DEC Notes session.NEXTRACT Creates a text file containing the notes you specify.GHELP Accesses online HELP about DEC Notes commands.:NOTES Invokes DEC Notes from DCL level.GOPEN Opens an existing conference in your Notebook.o&PRINT Prints notes.)READ 3 DOWN DOWNC The v (down-arrow) key moves the cursor to the character below, in 2 the same column or to the end of the line below. 3 FINISH Gold Fa8 Files the edited document and ends the editing session.9 If you are sending a mail message, the mail message will be sent.A< If you are entering a topic or reply, you will be asked for the title for your note.s: If you were simply in the editor via the EVE command, you will be returned to Notes.O R 3 GET_FILE Gold Ge< Prompts you for the file specification of the file you wish8 to insert into the document being edited. End the file? specification input with the RETURN key. The file is insertedi to the right of the cursor. f3 HELP HELP, Gold H 3 INSERT_DATE_TIME Gold \ and Gold |0 Inserts the system date and time into the text. 3 LEARN. CTRL/K B Begins a learn sequence. All keystrokes you enter are remembered> until you press CTRL/R. Then, you will be asked for a  Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN?sed item is optional.f 3 Parameters node-nameAB Specifies the node for which you want a directory of conferences.. The default is the node you are currently on.F If you issue the DIRECTORY/CONFERENCES command and receive the error H message "Your software license does not allow this operation", contact  your system manager. 3 Command_DescriptionD> The DIRECTORY/CONFERENCES command displays a directory of the= conferences you are allowed to access on the specified node. @ By default, y Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN 2s the note you are currently reading to be forwarded withE the subject you specify or with no subject. If you use the /SUBJECTaH qualifier, you must supply a subject (a string that must be enclosed inF quotation marks if it is more than one word separated by spaces). IfF you do not specify /SUBJECT or /NOSUBJECT, you are prompted to supplyJ a subject and informed of the default subject (which is an identification< of the note by conference name, location, and note number). 2 Examples C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D0XT_SCREENe- NEXT SCREEN, E4, Keypad 0 (VT100 terminals)r? NEXT SCREEN moves the cursor forward through text a screenfuliA at a time. You can continue to use NEXT SCREEN until you reache the end of the text. 2 NEXT_TOPIC Keypad 27 NEXT TOPIC displays the next topic in the conference.DB When viewing a list of items, KP2 moves the pointer (>) forward. 2 NEXT_UNSEENl Keypad COMMAE NEXT UNSEEN skips the rest of the replies in the current discussiono@ and displays the next  Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINElegeD and must have first issued the SET MODERATOR command to enable that privilege. , DELETE MEMBER deletes one member at a time. 3 Examples" Notes> DELETE MEMBER MITCHELL: Deletes user MITCHELL from the membership list for this conference.2 NOTE-Deletes a topic or reply from the conference.: Format: DELETE [NOTE [note-ID]]CThe square brackets [] indicate that the enclosed item is optional. 3 Parametersnote-IDe@ Specifies a single topic or reply. The dg$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`T"C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.9UFFERt/Puts extracted notes in the buffer you specify.e Format:, EXTRACT/BUFFER buffer-name [note-range]CThe square brackets [] indicate that the enclosed item is optional.I5Only the ASCII portions (if any) of a note in DIGITALa@Document Interchange Format (DDIF) can be extracted to a buffer. 3 Parameters buffer-nameo< Names the buffer in which extracted notes are to be stored. note-rangeB Specifies the range of notes to be extracted. The default is the= note you ar3< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D<you specify one value, the other value remains unchanged. > For example, if the conference currently restricts access and? keyword creation, and you specify /NORESTRICT=MEMBERS, keywords creation remains restricted.o/TITLE="string"o> Changes or sets the title of the conference to the string you4 specify. Surround the string with quotation marks./WRITE/NOWRITE@ Specifies whether to prevent anyone other than a moderator or a@ member with WRITE_REGARDLESS privilege from adding note6L qualifier to see a listing of all keywords in thea= current conference. Do not specify a keyword name with thise qualifier.o/FULLoD Displays a listing of all notes that refer to the specified keyword4 (or all keywords, if used with the /ALL qualifier). 3 Examples Notes> SHOW KEYWORDS GOLDD Verifies that the keyword GOLD exists for the current conference.! Only the keyword is displayed.o$ Notes> SHOW KEYWORDS /ALL /FULL? Lists all keywords for the current confer Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINP NOTES$SCRATCH buffer and an empty NOTES$EDIT buffer.s' Notes> ANSWER /NOEXTRACT REORG.MEMnE Invokes the editor without displaying the NOTES$SCRATCH buffer andC puts a copy of the file REORG.MEM in the NOTES$EDIT buffer. ThekE text from the file REORG.MEM can be edited before adding the reply  to the conference.N Notes> ANSWER /LASTD Invokes the editor and puts the text entered in the last reply in the NOTES$EDIT buffer.f Notes> CLOSEa Notes> OP Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINDr system named BASIC in whichn2 membership and keyword creation are restricted.9 Notes> CREATE CONFERENCE /RESTRICT=MEMBERS PERSONNELgB Creates the conference PERSONNEL on your system with restricted> access and, by default, with keyword creation restrictions.6 Notes> CREATE CONFERENCE DISK$:[ROSCOE]TASK_FORCE= Creates the conference TASK_FORCE in user ROSCOE's privates directory on device DISK$:. 2 KEYWORDt1Creates a new keyword for the current conference.N F!C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks..< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dr$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`G"(< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D :GE.TEXT, without editing, to usersF BIGSIS::EDISON and LILSIS::MARSH, with the subject "Progress ReportF on Project Clean-Up". After the message is sent, you return to DEC Notes.w Notes> SEND /MEMBERSoB Subject: Announcing a New Conference on Networking TechnologyA Puts you in EVE (or your chosen editor) to let you type a mailuE message to send to all members in the conference. Notice that thet= Send to: prompt does not appear when you use the /MEMBERS qualifi Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINVw ones,E in order to add an existing entry to new classes. Use the ADD ENTRYaB /CLASSES=* command to add the entry name to all existing classes./FILE=notefile-speca/NOFILE D Specifies the conference you want to add to your Notebook. You can@ use the /FILE qualifier when you specify the entry name as the parameter.e/NAME=entry-name/NAME=file-name (default)d? Gives the entry a name other than the file name portion of theeA notefile specification. Use this qualifier when you 'C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.2< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DA NOTES$SCRATCH buffer and an empty NOTES$EDIT buffer.y& Notes> REPLY /NOEXTRACT REORG.MEME Invokes the editor without displaying the NOTES$SCRATCH buffer andC puts a copy of the file REORG.MEM in the NOTES$EDIT buffer. ThepE text from the file REORG.MEM can be edited before adding the replyc to the conference.s Notes> REPLY /LASTAD Invokes the editor and puts the text entered in the last reply in the NOTES$EDIT buffer.  Notes> CLOSET Notes> OPEN RH is optional.H5Only the ASCII portions (if any) of a note in DIGITALE<Document Interchange Format (DDIF) can be saved in a buffer. 3 Parameters buffer-namee8 Names the buffer in which saved notes are to be stored. note-rangeC Specifies the range of notes to be saved. The default is the notelC you are currently reading. If a selection qualifier is specified,t the default is all topics.n3 Command_Description D The SAVE/BUFFER command saves notes and puts them in the buffer you? Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINZkey toB use to replay the learn sequence. After that, whenever you press/ that key, the learn sequence will be replayed.n3 LEFT LEFTP+ Move the cursor one character to the left.n n3 LINE Keypad 2, Gold Keypad 2= Moves the cursor forward or backward to the beginning of the / next line, depending on the current direction.  L 3 LOWER_CASE Gold Keypad 3D Changes the character under the cursor to Lower Case. If the WORD,D PARAGRAPH, LINE, SENTENCE, PAGE, GOLD T or GOLD-C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.?< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D# Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Displays a note. 3REPLY Enters a reply to a topic.aBSHOW ERROR Displays more information after an error.NUPDATE Updates the "unseen" count in the Notebook directory.,WRITE Enters a new topic.ww PREVIOUS SCREEN until you reach  the beginning of the text.2 QUOTE CTRL/VD QUOTE allows you to add a character, such as a form feed and other? control characters, to the buffer. It also allows you to addB graphics c% Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINakey toB use to replay the learn sequence. After that, whenever you press/ that key, the learn sequence will be replayed.n3 LEFT LEFTP+ Move the cursor one character to the left.n n3 LINE Keypad 2, Gold Keypad 2= Moves the cursor forward or backward to the beginning of the / next line, depending on the current direction.  L 3 LOWER_CASE Gold Keypad 3D Changes the character under the cursor to Lower Case. If the WORD,D PARAGRAPH, LINE, SENTENCE, PAGE, GOLD T or GOLD,C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.O$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`m"'9< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D ered since yesterday (24 hoursE prior to 0:00 today), starting with topic 2 through the last replyl to topic 100., Notes> PRINT /UNSEEN 10.0-99.LAST /SEENF Prints topics and replies from 10.0 through the last reply to topic9 99 that you have not yet seen, and marks them as seen.owwnd activates the default class. $ NOTES /CLASS=LANGUAGESD Starts DEC Notes and activates the class named LANGUAGES (instead of the default class).w $ NOTES MICROS 10.5@ 0 Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN>C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.8C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.D< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DE< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DMto the DCL level.aE Use the wildcard character (*), or omit the entry name parameter, toe> update all entries in the specified (or default) class. You C cannot use the /UPDATE qualifier if you use the note-ID parameter a or the /NONOTEBOOK qualifier. 2 Examples $ NOTES4 Starts DEC Notes and activates the default class. $ NOTES /CLASS=LANGUAGESD Starts DEC Notes and activates the class named LANGUAGES (instead of the default class).w $ NOTES MICROS 10.5@ 6 Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINgnote you have not yet read. The skipped- replies are automatically marked as "seen".t2 PREVIOUS_SCREENF2 PREV SCREEN, E5, Keypad PERIOD (VT100 terminals)D PREVIOUS SCREEN moves the cursor backward through text a screenfulE at a time. You can continue to use PREVIOUS SCREEN until you reach  the beginning of the text.2 QUOTE CTRL/VD QUOTE allows you to add a character, such as a form feed and other? control characters, to the buffer. It also allows you to addB graphics cCC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Notes> FORWARD /NOEDITs Send to: FLOYD::GILMORE Subject: 0 Default subject is: "Notefile AI Note 45.3"G Forwards a copy of note 45.3 in the AI conference to user GILMORE on @ node FLOYD, and uses the default subject as the mail subject.$ Notes> FORWARD /NOEDIT /MEMBERS0 Subject: Another opinion on the Magnum dealD The current note is forwarded as a mail message to all members of this conference.awwction qualifier (/AUTHOR, /BEFORE, /KEYWOKhe class is automatically created. 3 Qualifiers/CLASSES=(class-name[,...])TC Replaces the classes to which the entry currently belongs with the C list you specify. Enclose the list of class names in parentheses,L and separate them with commas. @ Use the MODIFY ENTRY/CLASSES=* command to add the entry name to all existing classes./FILE=new-file-spec/NOFILEr? Changes the notefile specification. This is used to keep your 4 Notebook up to date when a conference is relocated.: Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN< Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINOence, and, for eachc6 keyword, lists the notes that refer to the keyword.' Notes> SHOW KEYWORDS /FULL PATENTSs? Shows the keyword PATENTS and all notes to which it has been added.f2 MARKER@Shows information about the marker you specify or, if you do not?supply a marker name, all markers for the current entry, or forn all entries. Format: SHOW MARKER [marker-name]CThe square brackets [] indicate that the enclosed item is optional.n 3 Parameters marker-nameoBC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`4"8P< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D Xe currently reading. If a selection qualifier ist& specified, the default is all topics.3 Command_DescriptionS? The EXTRACT/BUFFER command extracts notes and puts them in ther@ buffer you specify. You must specify the name of the buffer asC the first parameter. Use the optional second parameter to specifyc? a range of notes. If you do not specify a range of notes, DECs? Notes extracts only the note you are currently reading; if youLC specify a selection qualifier (/AUTHOR, /BEFORE, /KEYWO er.e Notes> SEND /AUTHOR< Subject: Let's discuss your ideas at tomorrow's meetingD Puts you in EVE (or your chosen editor) to let you type a messageD to send to the author of the note you are currently reading. TheB node and user name appearing in the note header are used as the mailing address.)ww NotesG searches all topics. Additionally, if you specify the /ALL qualifier, DEC Notes searches all replies.? To put saved notes into a VMS text file only, you must OC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. Ts to the@ conference. You can set this conference attribute at any time;@ for a conference in progress, this prevents the addition of any> new notes. Any note in progress at the time you successfully@ complete the SET CONFERENCE/NOWRITE command is not added to the? conference. The author receives a message indicating that thee conference is write-protected.o 3 Examples< Notes> SET CONFERENCE /TITLE="Course Evaluation System"B Sets the title of the conference to "Course Evaluation IC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.V< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D ^ou get a listing of the conferences on the current: node (The default directory, NOTES$LIBRARY, is assumed.).= Specify another node to get a listing of conferences on thats particular node.)> To see a directory of the conferences in a private directory,, specify the device name and directory name.@ The conference directory shows the title, notice, and number ofB notes for conferences you are allowed to access. You can use theB /ALL qualifier to list all conferences, including conferencesA Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN ESTAURANTS Notes> READ 5 Notes> REPLY /LASTs? Uses the text from the last reply entered in the just-closedaC conference (which is still in the NOTES$EDIT buffer) as the texttD for the reply to note 5 in RESTAURANTS. This allows you to enterF the same reply in more than one conference without having to retypeF it each time. Because REPLY /LAST invokes the editor, you can editB the text before you enter it in the new conference, if desired.wwD::JOKES directly. Note a< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DZ< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.Dcormat: CREATE KEYWORD keyword-name 3 Parameters keyword-name& Names the keyword you want to create.3 Command_DescriptionnC The CREATE KEYWORD command allows you to create new keywords for arE conference. You specify the name of the keyword you want to create.sD In a conference that restricts keyword creation, you must either be@ a moderator or have CREATE_KEYWORDS privilege specified in yourD membership record. You can use the SHOW MEMBER command to see your membership record \efault is the topic or! reply you are currently reading.3 Command_Descriptiont? The DELETE NOTE command deletes the current or specified note.TB You can use DELETE (instead of DELETE NOTE) to delete the current note.D If you are a moderator for the conference, you can delete any note.< Otherwise, you can delete only your own topics and replies.D To determine whether you are authorized to delete a note, DEC NotesC checks the combination of the node name and the author name. In a D pubG Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINNC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. N specify. You must specify the name of the buffer as the firstUD parameter. Use the optional second parameter to specify a range of@ notes. If no range is specified, DEC Notes saves only the note@ you are currently reading; if you specify a selection qualifierE (/AUTHOR, /BEFORE, /KEYWORD, /SINCE, /TITLE, and /UNSEEN), DEC NotesG searches all topics. Additionally, if you specify the /ALL qualifier, DEC Notes searches all replies.? To put saved notes into a VMS text file only, you must #vG$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`&8"Ig< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.DK Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINe/NAME=new-entry-nameE Changes the entry name from the old name to the new one you specify.p/OBJECT=object-namer/NOOBJECT (default)aA If the conference has an object name in the VAX Distributed Nameu? Service (DNS) database, use the /OBJECT qualifier to associatei! the entry with the DNS object. n? For more information on DNS, see the help text for ADD OBJECT.i t 3 Examples. Notes> MODIFY ENTRY CLIMATE /NAME=WEATHER4 Changes the name of the entry CLIMATE to WEATHER.2 M Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN` Starts DEC Notes, opens the entry named MICROS, and displays note 10.5.o $ NOTES VETTES /CLASS=CARSnE Starts DEC Notes with the class named CARS, and opens the entry ine that class named VETTES.i" $ NOTES /UPDATE /CLASS=MISC *E Updates all entries in the class named MISC and returns to the DCLo level.D& $ NOTES /NONOTEBOOK SOMNOD::JOKESD After processing the profile information from the Notebook, opensC the conference SOMNOD::JOKES directly. Note vuse the F SAVE command. You can use the /OUTPUT qualifier with the SAVE/BUFFER? command to store saved notes in a VMS text file in addition toe storing them in a buffer.A When you specify the name of an existing buffer, use the /APPENDRG qualifier to append saved notes to the end of the text in that buffer; ' otherwise, the buffer is erased first.c> To view notes saved in a buffer, issue the command EVE BUFFERB buffer-name, substituting the name of the buffer for buffer-name.E The SAVf< Specifies a marker about which you want to get information.3 Command_Description D The SHOW MARKER command shows the note that is marked by the marker you specify. C Use the /ALL qualifier to see a listing of all marker names in alle, entries and the note number marked by each. 3 Qualifiers/ALL? Shows all markers, and the note number marked by each, for allo@ entries. If you specify a marker name with the /ALL qualifier,8 all entries are shown which have a marker by that name.D EN RESTAURANTS Notes> READ 5 Notes> ANSWER /LAST? Uses the text from the last reply entered in the just-closedC conference (which is still in the NOTES$EDIT buffer) as the textsD for the reply to note 5 in RESTAURANTS. This allows you to enterF the same reply in more than one conference without having to retypeG it each time. Because ANSWER /LAST invokes the editor, you can editB the text before you enter it in the new conference, if desired.wwING, located on youX Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINeC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.`C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.rSystem".D Notes> SET CONFERENCE /RESTRICT=KEYWORDS /NOTICE="NASA Project"C Restricts the creation of keywords to users with CREATE_KEYWORDSoE privilege (see the ADD MEMBER command). In addition, this commandf% sets the notice to "NASA Project".e# Notes> SET CONFERENCE /NOWRITEn> Prevents anyone besides a moderator from entering new notes from this point on.2 ENTRY :Changes or sets specific information for a Notebook entry. Format: SET ENTRY entry-namfC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.ospecify the A conference name as the parameter. The default entry name is theg+ file name from the notefile specification.u/OBJECT=object-name)/NOOBJECT (default) A If the conference has an object name in the VAX Distributed Name ? Service (DNS) database, use the /OBJECT qualifier to associate! the entry with the DNS object. p? For more information on DNS, see the help text for ADD OBJECT. 3 Examples Notes> ADD ENTRY FARMING D Adds the conference FARMING, located on you^ Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN dRD, /SINCE,nD /TITLE, and /UNSEEN), DEC Notes searches all topics. Additionally,C if you specify the /ALL qualifier, DEC Notes searches all replies.t? To put extracted notes into a VMS text file only, you must useeA the EXTRACT command. You can use the /OUTPUT qualifier with the > EXTRACT/BUFFER command to store extracted notes in a VMS text. file in addition to storing them in a buffer.A When you specify the name of an existing buffer, use the /APPENDwC qualifier to append extracted notdC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.6-.$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`"Zl B keys are pressed,? all the characters in the selected entities will be changed tooA Lower Case until a non-entity key (suggest ADVANCE or BACKUP) isl? pressed. If a range of characters is first selected, this keybD applies Lower Case to all of the characters in the selected range. 3 NEW_PAGE Gold N, Gold PE1 Inserts a new page mark at the current position.t o 3 NEXT_SCREENl E6, NEXT SCREEN, Gold Keypad 0t9 Scrolls the text in the forward direction one screenful.d l3 PA\ Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN qlic conference, the node name in the note heading must match theD node you are on in order for you to delete your note. In a privateB conference, as long as you are on one of the nodes listed in your- membership record, you can delete your note.r 3 Qualifiers/CONFIRM (default) /NOCONFIRM< Controls whether a prompt is issued before the deletion is @ performed, asking you to confirm that it should be performed. / Your response to the prompt can be YES or NO. e 3 Examples Notes> DELEqC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. k you are not allowed to access.tB When the directory of available conferences is displayed, you can@ add a conference to your Notebook by moving the pointer (>) andB pressing the SELECT (KP7) key. Move the pointer forward with the( KP2 key, and backward with the KP5 key.% NOTEr< When you request a listing of conferences in someone's< private directory, that person's Notebook is listed as9 a conference with the name NOTES$NOTEBOOK. DIGITAkC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.that no informationTF about which notes you have and have not read in JOKES is available.E Further, DEC Notes does not mark the notes you read in the currentf session as seen.dwwoderator command. Format: MODIFY KEYWORD keyword-name 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptiont= The MODIFY KEYWORD command lets a moderator change the name x; of a keyword. The new keyword automatically replaces the p= old keywot B keys are pressed,? all the characters in the selected entities will be changed tooA Lower Case until a non-entity key (suggest ADVANCE or BACKUP) isl? pressed. If a range of characters is first selected, this keybD applies Lower Case to all of the characters in the selected range. 3 NEW_PAGE Gold N, Gold PE1 Inserts a new page mark at the current position.t o 3 NEXT_SCREENl E6, NEXT SCREEN, Gold Keypad 0t9 Scrolls the text in the forward direction one screenful.d l3 PAc Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINp. ? Once you create a keyword, any user can add the keyword to anyn5 note in the conference with the ADD KEYWORD command. B If you are authorized to create keywords, DEC Notes automatically@ creates a keyword the first time you add the keyword to a note. 3 Examples# Notes> CREATE KEYWORD TRUCKERSE4 Creates the keyword TRUCKERS for this conference.' Notes> CREATE KEYWORD MONEY_MARKETS) No privilege for attempted operationrC Produces an error message in a conference t|es to the end of the text in thatn/ buffer; otherwise, the buffer is erased first.t8 To view notes extracted to a buffer, issue the command: EVE BUFFER buffer-name7 substituting the name of the buffer for "buffer-name".sB The EXTRACT/BUFFER and SAVE/BUFFER commands are synonyms, and can be used interchangeably.o 3 Qualifiers/ALLD Specifies that topics and all replies in the specified range are to be extracted./APPENDu= Appends the extracted notes to the specified buff} Notes> MODIFY ENTRY HEAT /FILE=PUBLIC::ENERGYF Changes the file specification of the entry HEAT to PUBLIC::ENERGY. 2 KEYWORDhHChanges or sets specific information for a keyword; a moderator command. Format: MODIFY KEYWORD keyword-name 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptiont= The MODIFY KEYWORD command lets a moderator change the name x; of a keyword. The new keyword automatically replaces the p= old keywo You can read a marked note by moving the pointer (>) to the desiredA marker name and pressing the SELECT (KP7) key. Move the pointero9 forward with the KP2 key, and backward with the KP5 key.. 3 Examples# Notes> SHOW MARKER ACTION_ITEMtB Shows which note in the current entry is marked with the marker ACTION_ITEM.l Notes> SHOW MARKER /ALLA Shows all markers, and the note number marked by each, for all entries.i2 MEMBER<Shows information about the specified member xharacters, such as letters and punctuation marks, thatD are bound or programmed to other keys. You can also use the QUOTE8 command to include special characters within commands.C EVE prompts you for the key to be inserted. Pressing CTRL/L, forS= example, enters a form feed at the current cursor position. 2 REFRESHT CTRL/WC REFRESH redisplays every character on the screen, eliminating any D extraneous characters that may have appeared on the screen and anyF messages displayed il Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINo Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINpC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.C{$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`K"k LE9 recommends that you do not attempt to access or add  notes to a Notebook.< On a client-only licensed system, to display a directory of= available conferences, you must specify the node name of thei= appropriate system where the DEC Notes server is licensed toe= run. Contact your system manager for this information. ForeA example, if FULL is the full-server node and your node is CLIENTc= (the client-only node), you would use the following command:t, DIRECTnGE PF2, Gold PF2@ Move the cursor in the current direction to the next occurrence of a page mark. 3 PARAGRAPH Keypad 5i= Move the cursor in the current direction to the beginning ofe the next paragraph.3 PASTEl# COMMA, Gold COMMA, E2, INSERT HERE @ Inserts the contents of a paste buffer at the current position. r3 PREVIOUS_SCREENa# Gold Keypad 1, E5, PREVIOUS SCREENo: Scrolls the text in the backward direction one screenful.3 QUIT Gold K, Gold Qa/nC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. End the editing session and discard any edits.  E? If you were editing a mail message, the mail will not be sent.o= If you were preparing a topic or reply, the note will not be entered.p3 REPLACE_STRING Gold ", Gold ' ? Replace the current found search target string by the contentsi of the paste buffer.(3 RESETa Gold PERIODA Cancels the effect of the GOLD key if it was pressed by mistake,5< or cancels a select range. Also sets the current direction to forward. h{r node, to the currentB class in your Notebook, and uses the file name, FARMING, as the entry name.3 Notes> ADD ENTRY SOMNOD::EPA_PROJECT /NAME=EPA  Notes> OPEN EPAB Adds the conference EPA_PROJECT, located on node SOMNOD, to the@ current class in your Notebook, and names the entry EPA. The2 conference is then accessed using the name EPA.: Notes> ADD ENTRY EATS /FILE=BOSTON::LOCAL_RESTAURANTSD Adds the conference LOCAL_RESTAURANTS, located on node BOSTON, tohat restricts keywords< creation if you do not have CREATE_KEYWORDS (or MODERATE) privilege.IwwCLASSES=(GAMES,LUNCH)/NAME=CHESSe> Adds the conference CHESS_TECHNIQUES to two classes in your@ Notebook (called GAMES and LUNCH), and names the entry CHESS.= You then access the conference using the entry name CHESS. 2 Notes> ADD ENTRY BOSTON::DISK$:[SCOTT]ENGINES@ Adds the conference ENGINES, residing in user SCOTT's private? directory on device DISK$: on node BOSTON, toTE Deletes the current note. Notes> DELETE NOTE 2.1W Deletes note 2.1.2 OBJECT;Deletes an object from a VAX Distributed Name Service (DNS)e;database. In DEC Notes, the object is a name identifying a conference. )=You must have write privilege to the DNS database to use thisscommand.2For more detail, see the help text for ADD OBJECT. Format: DELETE OBJECT object-name 3 Parameters object-namep: Specifies the name of the object as registered in te/ 3 Parameters entry-name/ Specifies the entry you want to change or set.g3 Command_DescriptionA@ The SET ENTRY command lets you change or set information for anC entry in your Notebook. You must specify the name of the Notebookp entry you want to change.D You can change the name of the conference with the /NAME qualifier,D or change the notefile specification with the /FILE qualifier. TheA change is reflected in all classes (if the entry belongs to moree< than one class), and seent Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINGE PF2, Gold PF2@ Move the cursor in the current direction to the next occurrence of a page mark. 3 PARAGRAPH Keypad 5i= Move the cursor in the current direction to the beginning ofe the next paragraph.3 PASTEl# COMMA, Gold COMMA, E2, INSERT HERE @ Inserts the contents of a paste buffer at the current position. r3 PREVIOUS_SCREENa# Gold Keypad 1, E5, PREVIOUS SCREENo: Scrolls the text in the backward direction one screenful.3 QUIT Gold K, Gold Qa/C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.E/BUFFER and EXTRACT/BUFFER commands are synonyms, and can bed used interchangeably. 3 Qualifiers/ALLD Specifies that topics and all replies in the specified range are to be saved./APPENDOE Appends the saved notes to the specified buffer. If the buffer doesMD not exist, it is created. If you do not use the /APPEND qualifier, the buffer is erased first./AUTHOR=usernameB Saves only notes entered by the specified user. If you include aD node name with the user name, only nox Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINn the message window. The cursor remains in the same location.2 RETURN RETURN: RETURN allows you to read notes in the following manner:@ o If the current note continues onto another screen, the next screen is displayed. > o If you are at the end of the current note, the next reply is displayed.: o If there are no more replies, a message is displayed. You can also use RETURN to:s4 o Display the next screen of a directory listing.6 o Terminate a comC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks.{C Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. ; the current class, and specifies EATS as the entry name. G Notes> ADD ENTRY CHESS_TECHNIQUES/CLASSES=(GAMES,LUNCH)/NAME=CHESSe> Adds the conference CHESS_TECHNIQUES to two classes in your@ Notebook (called GAMES and LUNCH), and names the entry CHESS.= You then access the conference using the entry name CHESS. 2 Notes> ADD ENTRY BOSTON::DISK$:[SCOTT]ENGINES@ Adds the conference ENGINES, residing in user SCOTT's private? directory on device DISK$: on node BOSTON, toV$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`"|er. If theN= buffer does not exist, it is created. If you do not use then/ /APPEND qualifier, the buffer is erased first./AUTHOR=usernameC Extracts only notes entered by the specified user. If you includeA a node name with the user name, only notes entered by the author from that node are extracted./BEFORE[=date-time]< Extracts only notes entered before the specified date-time.< The date-time can be any valid VMS date-time specification.A If you specify /BEFORE without a dard for all notes to which the old keyword had been . added.d 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.y 3 Examples. Notes> MODIFY KEYWORD FARMS /NAME=FARMING? Changes the name of the keyword FARMS to FARMING. All noteso@ to which the previous keyword name (FARMS) had been added now have the new keyword FARMING.2 MEMBEREChanges or sets specific information about a member on the membership list for the current conferenc Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINs in the current conference.c Format: SHOW MEMBER [username]aCThe square brackets [] indicate that the enclosed item is optional. 3 Parametersusername@ Specifies the name of the member for whom you want information.3 Command_Descriptiona? The SHOW MEMBER command shows information about members in the C current conference. You can see information for a specific member  or all members.C! Use the /FULL qualifier to see the following information for eache ! member:t!eC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. End the editing session and discard any edits.  E? If you were editing a mail message, the mail will not be sent.o= If you were preparing a topic or reply, the note will not be entered.p3 REPLACE_STRING Gold ", Gold ' ? Replace the current found search target string by the contentsi of the paste buffer.(3 RESETa Gold PERIODA Cancels the effect of the GOLD key if it was pressed by mistake,5< or cancels a select range. Also sets the current direction to forward. h Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN /unseen information is unaffected.> You can change the classes to which an entry belongs with theB /CLASSES qualifier. The list of classes you specify replaces theB list of classes to which the entry currently belongs. Therefore,@ to delete an entry from a class, use the /CLASSES qualifier and@ omit that class from the new list. If you specify a class that4 does not exist, the class is automatically created. 3 Qualifiers/CLASSES=(class-name[,...])iC Replaces the classes to which the eC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. mand entered at the Notes> prompt.2 SELECT( SELECT, E4, Keypad 7 (VT100 terminals)E The SELECT command lets you select an item from a list displayed on E your screen without having to specify the item on the command line.mE When you issue one of the commands in the following list, DEC NotesiB displays a pointer (>) at the far left of the screen. Move thisF pointer forward (using KP2) or backward (using KP5) through the listD until the pointer is at the item you want. Then, issue th your Notebook.R 2 KEYWORDv?Adds a keyword to the current or specified note. The specifiedL7keyword must be an existing keyword for the conference.o Format:' ADD KEYWORD keyword-name [note-ID]ICThe square brackets [] indicate that the enclosed item is optional.s 3 Parameters keyword-name> Specifies the keyword you want to add to a note. The keyword> name must exactly match a keyword previously created with the CREATE KEYWORD command.note-IDa@ Refers to a single topihe VAX= Distributed Name Service (DNS) database. For DEC Notes, thei name identifies a conference.  hwwference.o Format:' ADD KEYWORD keyword-name [note-ID]ICThe square brackets [] indicate that the enclosed item is optional.s 3 Parameters keyword-name> Specifies the keyword you want to add to a note. The keyword> name must exactly match a keyword previously created with the CREATE KEYWORD command.note-IDa@ Refers to a single topiORY/CONFERENCES FULL 3 Qualifiers/ALLA Lists all conferences, including conferences you are not allowed to access. /BUFFER=buffer-namen? Puts the conference directory listing in the specified buffer.hB To display the listing, issue the command EVE BUFFER buffer-name,5 substituting the name of the buffer for buffer-name.u/OUTPUT=file-spece@ Specifies the output file for the directory. You must use this, qualifier to store the directory in a file. 3 Examples! Notes> DIRE Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINtes entered by the author from that node are saved. /BEFORE[=date-time]A> Saves only notes entered before the specified date-time. The8 date-time can be any valid VMS date-time specification.A If you specify /BEFORE without a date-time value, the default is  /BEFORE=TODAY.o/HEADER (default)R /NOHEADERtA Specifies whether or not to include the note header in the saveda notes.l/KEYWORD=keyword-named/ Saves only notes having the specified keyword.a/OUTPUT=output-fileMC Names an output file in which to store saved notes, in addition tor putting them in a buffer./SEENg Marks the saved notes as seen.:/SINCE[=date-time]= Saves only notes entered since the specified date-time. The < date-time can be any valid VMS date-time specification. If= you specify /SINCE without a date-time value, the default isd /SINCE=TODAY./TITLE="string"y; Saves notes having the specified string in the note title. * Surround the string with quotation marks. ! o Nodesy!l! o Mail address!o! o Privileges!h= To see a listing of members who are also moderators, use the  /MODERATOR qualifier.F If you use the SHOW MEMBER command in a conference that does not haveE a membership list, DEC Notes displays the message "No such member ino this conference". 3 Qualifiers/ALLC Shows information for all members in the current conference. ThisD qualifier is optional; /ALL is the default. Do not specify a user- name with this qualifie`$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`~ " Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINe. Format: MODIFY MEMBER member-name 3 Parameters member-nameA> Specifies 1) the VMS user name, 2) the node and the VMS user @ name, or 3) a string enclosed in quotation marks, used with the4 /ACCESS qualifier, uniquely identifying the member.3 Command_DescriptionwA The MODIFY MEMBER command lets you change or set information foruD a member. You must have moderator privilege, and must have enabledB this privilege by issuing the SET MODERATOR command, before using the MOD IFY MEMBER command.iF Use this command to change a user's mail address, member-name, nodes, or privileges.i 3 Qualifiers/ACCESS=(node::username[,...])> Specifies the unique identity of a member by assigning one orG more nodes and user names to the member's name. This name is a stringEH enclosed in quotation marks (the quotation marks are needed only if theJ string includes any spaces) and having a maximum length of 63 characters.J 3 RIGHT RIGHT, Move the cursor one character to the right. 3 RUBOUT_WORD- LINEFEEDe@ Delete all characters from the cursor position to the beginning< of the word containing the cursor. If the cursor is on the9 first character of a word, the previous word is deleted.u t 3 RUBOUT_LINEH Gold DELETE? Delete the text to the left of the cursor and stores it in thed@ delete line buffer. When the text is at the leftmost character2 position on a line, the previous line is te-time value, the default isl /BEFORE=TODAY.a/HEADER (default) /NOHEADER E Specifies whether to include the note header in the extracted notes. /KEYWORD=keyword-name 2 Extracts only notes having the specified keyword./OUTPUT=output-file D Names an output file in which to store extracted notes, in addition to putting them in a buffer.n/SEENc/ Marks the extracted notes as having been seen.o/SINCE[=date-time]@ Extracts only notes entered since the specified date-time. The@ date-time can be any valid VMS date-time specification. If youH specify /SINCE without a date-time value, the default is /SINCE=TODAY./TITLE="string"u> Extracts notes having the specified string in the note title.* Surround the string with quotation marks./UNSEENT Extracts only unseen notes. 3 Examples Notes> EXTRACT/BUFFER MAILs5 Extracts the current note to a buffer called MAIL..% Notes> EXTRACT/BUFFER BOOKS 10.*nC Extracts topic 10 and all its/UNSEEN  Saves only unseen notes.i 3 Examples Notes> SAVE/BUFFER MAIL2 Saves the current note to a buffer called MAIL." Notes> SAVE/BUFFER BOOKS 10.*@ Saves topic 10 and all its replies, and puts them in a buffer named BOOKS.l2 Notes> SAVE/BUFFER COLLEGES *.* /KEYWORD=YALE@ Saves all notes in the conference that have the keyword YALE,- and puts them in a buffer called COLLEGES.e1 Notes> SAVE/BUFFER NUCLEAR 8-30 /AUTHOR=GLENy@ Saves topics fromntry currently belongs with thenC list you specify. Enclose the list of class names in parentheses,e and separate them with commas.A Use the SET ENTRY/CLASSES=* command to add the entry name to all  existing classes./FILE=new-file-specd/NOFILE? Changes the notefile specification. This is used to keep yourl4 Notebook up to date when a conference is relocated./NAME=new-entry-nameE Changes the entry name from the old name to the new one you specify.E/OBJECT=object-namer3 RIGHT RIGHT, Move the cursor one character to the right. 3 RUBOUT_WORD- LINEFEEDe@ Delete all characters from the cursor position to the beginning< of the word containing the cursor. If the cursor is on the9 first character of a word, the previous word is deleted.u t 3 RUBOUT_LINEH Gold DELETE? Delete the text to the left of the cursor and stores it in thed@ delete line buffer. When the text is at the leftmost character2 position on a line, the previous line is  Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINCTORY/CONFERENCESd@ Displays a listing of all the conferences on the current node you are allowed to access.Y, Notes> DIRECTORY/CONFERENCES /ALL NODE1E Displays a listing of all the conferences on node NODE1, includingd- conferences in which you are not a member.d0 Notes> DIRECTORY/CONFERENCES DISK$:[HARVEY]A Displays a listing of the conferences in user HARVEY's privatet directory on device DISK$:.2 Notes> DIRECTORY/CONFERENCES /BUFFER=DIR HALOE Put s the directory of conferences on node HALO into a buffer namedtB DIR. You can view the directory listing at any time during theC current DEC Notes session by issuing the command EVE BUFFER DIR,cB instead of having to reissue the DIRECTORY/CONFERENCES command.7 Notes> DIRECTORY/CONFERENCES /OUTPUT=DIR.LIS MYVAXnE Puts the directory of conferences on the node MYVAX into an outputt file named DIR.LIS. 2 /ENTRIES?Displays a listing of the entries in the current (or specified)a A The /ACCESS qualifier is necessary when two members who have theC? same VMS user name need to be assigned different privileges ore different mail addresses.; You must enclose a list of nodes and names in parentheses.t/MAIL=mail-address/NOMAIL E Changes or sets the mailing address for this user to the address youe specify.1 To delete a user's mailing address, use /NOMAIL../NAME=new-username3 Changes the user name to the new name you specify.E/NODES=(r.!/FULL!u7! Shows complete information about the specified users.D!r /MODERATOR? Shows only users who have moderator privilege (PRIV=MODERATE). 3 Examples Notes> SHOW MEMBER MARTIN' Shows information about user MARTIN.M Notes> SHOW MEMBEReA Shows information about all members in the current conference./&! Notes> SHOW MEMBER/MODERATOR/FULL! Notes> SHOW MEMBER/MODERATORo1 Shows complete information for all moderators.c 2 MODERATORf8Shows the name Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN c or reply. The default is the topic or! reply you are currently reading.e3 Command_Descriptiont> Use the ADD KEYWORD command to add an existing keyword to theD current or specified note. If you do not specify a note, DEC Notes8 adds the keyword to the note you are currently reading.A The keyword name you specify must be an existing keyword for thenF conference. In a conference that restricts the creation of keywords,E you must have CREATE_KEYWORDS privilege to create a new keyword. Ife􏍪$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`" H you have MODERATE or CREATE_KEYWORDS privilege, DEC Notes automaticallyD creates a keyword the first time you add the keyword to a note. InC a conference that does not restrict keywords, you can create a new ) keyword with the CREATE KEYWORD command.oC You can see all the keywords defined for a conference by using then SHOW KEYWORDS /FULL command."B You can see all the keywords associated with a particular note by' using the SHOW NOTE /KEYWORDS command.eA You can see all the notes a replies, and puts them in a bufferr named BOOKS.C5 Notes> EXTRACT/BUFFER COLLEGES *.* /KEYWORD=YALEcC Extracts all notes in the conference that have the keyword YALE,S- and puts them in a buffer called COLLEGES. 4 Notes> EXTRACT/BUFFER NUCLEAR 8-30 /AUTHOR=GLENC Extracts topics from topic 8.0 through 30.0 that were entered by6 user GLEN and puts them in a buffer called NUCLEAR.A Notes> EXTRACT/BUFFER NOTES *.* /SINCE=15-MAR /BEFORE=18-MARf> Extracts all e SELECT, command (or press KP7) to select the item.< DIRECTORY -- Reads a note in a conference> DIRECTORY/CONFERENCES -- Adds an entry to your Notebook? DIRECTORY/ENTRIES -- Opens an entry in your Notebook7 SHOW CLASSES -- Sets default to a classa3 SHOW ENTRY -- Reads a marked note @ SHOW KEYWORDS/ALL -- Adds keyword to the current note@ SHOW KEYWORDS/FULL -- Adds keyword to the current note3 SHOW MARKE Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINdeleted. 3 RUBOUT_CHARACTER DELETE= Deletes the character preceding the cursor. When the cursore: is at the leftmost character position on a line, the line< terminator to the left is deleted and the text on that line5 is moved to the right of the text on the line above.n P 3 SEARCH_KEY E1, FIND, Gold < and Gold ,< Prompts for a string you wish to search for. The search isB done first in the current direction. If the string is not found,. a search will be made in the other direction. d3 SEARCH_REPLACE Gold ;, Gold Se= Prompts for a string to search for and a replacement string.a? The search is done first in the current direction, then in the  other direction.T H3 SEARCH_RIGHT_ANGLE ENTER< Searches for the next occurrence of the ">" character. The7 cursor is position on the character following the ">".i 3 SENTENCE  Keypad 7, Gold Keypad 7 e< Moves in the current direction to the beginning of the next sentence. t3 SELECT/NOOBJECT (default)3A If the conference has an object name in the VAX Distributed Namee? Service (DNS) database, use the /OBJECT qualifier to associateF! the entry with the DNS object. 3 Examples+ Notes> SET ENTRY CLIMATE /NAME=WEATHERf4 Changes the name of the entry CLIMATE to WEATHER./ Notes> SET ENTRY HEAT /FILE=PUBLIC::ENERGY,F Changes the file specification of the entry HEAT to PUBLIC::ENERGY. 2 KEYWORDs3Changes or sets specific information for a keyword.bdeleted. 3 RUBOUT_CHARACTER DELETE= Deletes the character preceding the cursor. When the cursore: is at the leftmost character position on a line, the line< terminator to the left is deleted and the text on that line5 is moved to the right of the text on the line above.n P 3 SEARCH_KEY E1, FIND, Gold < and Gold ,< Prompts for a string you wish to search for. The search isB done first in the current direction. If the string is not found,. a search will be made in the other direction. d3 SEARCH_REPLACE Gold ;, Gold Se= Prompts for a string to search for and a replacement string.a? The search is done first in the current direction, then in the  other direction.T H3 SEARCH_RIGHT_ANGLE ENTER< Searches for the next occurrence of the ">" character. The7 cursor is position on the character following the ">".i 3 SENTENCE  Keypad 7, Gold Keypad 7 e< Moves in the current direction to the beginning of the next sentence. t3 SELECTssociated with a keyword by using thed) DIRECTORY /KEYWORD=keyword-name command.o 3 Examples# Notes> ADD KEYWORD FARMING 5.2 ( Adds the keyword FARMING to note 5.2. Notes> READ 4.7% Notes> ADD KEYWORD COMPILER_BUGSe; Adds the keyword COMPILER_BUGS to note 4.7 (which is them current note). 2 MARKERDAdds a marker to the current or specified note in the current entry. Format:% ADD MARKER marker-name [note-ID]CThe square brackets [] indicate that the eclass in your Notebook.b Format:# DIRECTORY/ENTRIES [entry-name]dCThe square brackets [] indicate that the enclosed item is optional.w 3 Parameters entry-nameE Specifies an entry for which a directory listing is to be displayed. C If you do not specify an entry, the directory listing includes all) entries.R3 Command_DescriptioncB The DIRECTORY/ENTRIES command displays a directory listing of theE requested entries in your Notebook. If you do not specify an entry,hA all e topic 8.0 through 30.0 that were entered by6 user GLEN and puts them in a buffer called NUCLEAR.> Notes> SAVE/BUFFER NOTES *.* /SINCE=15-MAR /BEFORE=18-MAR; Saves all notes in the conference entered since 15 MarchpA (00:00:00:00) but before 18 March (00:00:00:00), and puts theme in a buffer called NOTES.wwkC/PRIVILEGES=([NO]MODERATE,[NO]CREATE_KEYWORDS,[NO]WRITE_REGARDLESS) /NOPRIVILEGES B Changes or sets this user's privileges. With MODERATE privilege,G this member Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN R/ALL -- Reads a marked notecF When viewing a listing of entries in your Notebook, you can move theD pointer to the next entry with a non-zero Unseen count by pressingB KP3. You can move the pointer back to the previous entry with aH non-zero Unseen count by pressing KP1. When you press the SELECT key,) DEC Notes opens the entry you selected.tD When viewing a directory of notes, DEC Notes displays the note you selected.tI SELECT also allows you to select a conference that is linked to a note, F and add the conference to your Notebook. A note that is linked to aD conference has an asterisk (*) next to its note number in the note heading.2 START_OF_LINEd CTRL/HF START OF LINE moves the cursor to the beginning of the current line.E A message is displayed if you are already at the start of the line.b2 TABi CTRL/IF TAB inserts a tab character at the current cursor position. The tabH character is inserted regardless of whether the buffer PERIOD, E4, SELECT D Marks one end of a select range. A select range is a block of textB on which various operations (such as CUT, APPEND, or FILL) can be' performed. To create a select range: v sF 1. Move the cursor to either the beginning or end of the text you wish to select.m 2. Press the SELECT key.o8 3. Move the cursor to the opposite end of the text. 8You can then perform the desired operation on the range.3 SWAP Gold ENTER, Gold RIGHTE= Swaps t䌠$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`Gx"notes in the conference entered since 15 MarchA (00:00:00:00) but before 18 March (00:00:00:00), and puts themW in a buffer called NOTES.wwyed on your screen, you canB open an entry by moving the pointer (>) to the entry you want andB issuing the SELECT command (or pressing the SELECT key). You can3 use the following keypad keys to move the pointer:o* KP2 - Moves forward to the next entry./ KP5 - Moves backward to the previous entry.hE KP3 - Skips forward to the next entry  Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMIN of moderators for the current conference. Format: SHOW MODERATORh3 Command_Descriptiond@ The SHOW MODERATOR command shows the node and user name of each& moderator for the current conference. 3 Examples Notes> SHOW MODERATOR5 Shows the names of moderators for this conference. 2 NOTE6Shows information about the specified or current note. Format: SHOW NOTE [note-ID]CThe square brackets [] indicate that the enclosed item is optional.i 3 Parametersnote-IDiD Specifies a single topic or reply. The default is the note you are currently reading.y3 Command_Descriptiona@ The SHOW NOTE command shows the following information about the specified or current note:  o The number of repliesm7 o The author's user name and complete personal nameo o The complete title- o The number of lines of text in the note @ o Any associated notefile specification (if the note was put on a "shopping list")nC o Whether fu PERIOD, E4, SELECT D Marks one end of a select range. A select range is a block of textB on which various operations (such as CUT, APPEND, or FILL) can be' performed. To create a select range: v sF 1. Move the cursor to either the beginning or end of the text you wish to select.m 2. Press the SELECT key.o8 3. Move the cursor to the opposite end of the text. 8You can then perform the desired operation on the range.3 SWAP Gold ENTER, Gold RIGHTE= Swaps tnode-name[,...])A Replaces the previous list of nodes for this member with the new-= nodes you specify. You must enclose a list of node names inN/ parentheses, and separate names with commas. DD The /ACCESS qualifier supersedes the /NODES qualifier. Once a user; has an access list, the node list is ignored by DEC Notes.rC/PRIVILEGES=([NO]MODERATE,[NO]CREATE_KEYWORDS,[NO]WRITE_REGARDLESS)u /NOPRIVILEGESVB Changes or sets this user's privileges. With MODERATE privilege,G this member  can issue the SET MODERATOR command. With CREATE_KEYWORDS0? privilege, this member can create new keywords for the currentu: conference; when keyword creation is restricted, without C CREATE_KEYWORDS, a member can only add existing keywords to notes.t? With WRITE_REGARDLESS privilege, a member can write notes in aeC conference set to NOWRITE, can write topics in a conference set torE REPLY_ONLY, and can write replies to topics that are set to NOWRITE.2 To delete a user's privileges, use /N Format: SET KEYWORD keyword-nameR 3 Parameters keyword-name6 Specifies the keyword name you want to change or set.3 Command_Descriptionr? The SET KEYWORD command lets a moderator change the name of a lF keyword. The new keyword automatically replaces the old keyword for 3 all notes to which the old keyword had been added.I 3 Qualifiers/NAME=new-keyword-name; Specifies the new name for the keyword you want to change.e 3 Examples+ Notes> SET KEYWORD FARMS /NAME=FARMINGP? Changes the name of the keyword FARMS to FARMING. All notes:@ to which the previous keyword name (FARMS) had been added now have the new keyword FARMING.2 MEMBEREChanges or sets specific information about a member on the membership list for the current conference. Format: SET MEMBER member-nameE 3 Parameters member-nameW> Specifies 1) the VMS user name, 2) the node and the VMS user @ name, or 3) a string enclosed in quotation marks, used with the4 /ACCESS qualifier, uniquely identifying the member.3 Command_Descriptiont@ The SET MEMBER command lets you change or set information for aB member. You must have moderator privilege, and must have enabledB this privilege by issuing the SET MODERATOR command, before using the SET MEMBER command.D Use this command to change a user's mail address, user name, nodes, or privileges.i 3 Qualifiers/ACCESS=(node::username[,...])> Specifies the unique identity of a member by assigning one orG more node ntries are displayed. You can specify the name of a singleC- entry to see statistics for that entry only. @ When the directory listing is displayed on your screen, you canB open an entry by moving the pointer (>) to the entry you want andB issuing the SELECT command (or pressing the SELECT key). You can3 use the following keypad keys to move the pointer:o* KP2 - Moves forward to the next entry./ KP5 - Moves backward to the previous entry.hE KP3 - Skips forward to the next entry OPRIVILEGES. 3 Examples2 Notes> MODIFY MEMBER WAYNE /MAIL=TEXAN::WAYNE7 Changes member WAYNE's mail address to TEXAN::WAYNE. @ Notes> MODIFY MEMBER JONES /NAME=KENYON /MAIL=SPACE::KENYONB Changes JONES's user name to KENYON, and specifies the new user name in the mail address.6 Notes> MODIFY MEMBER JOHNSON /NODES=(GREEN,BROWN)B Changes the node names that member JOHNSON can use to GREEN and0 BROWN. This list replaces the previous list.3 Notes> MODIFY MEMBER BYRD /PRIVILEGES=MODERATEt> Grants MODERATE privilege to member BYRD, and automaticallyE grants this member CREATE_KEYWORDS and WRITE_REGARDLESS privilege.R2 NOTE2Changes or sets attributes for the specified note. Format: MODIFY NOTE [note-ID]CThe square brackets [] indicate that the enclosed item is optional.C 3 Parametersnote-IDrD Specifies a single topic or reply. The default is the note you are currently reading.O3 Command_DescriptionoA The MODIFY rther replies have been prohibited by the author ors moderatoroA o Whether the note has been hidden by the author or moderators@ Use the /KEYWORDS qualifier to see the keywords associated with the note. 3 Qualifiers /KEYWORDS B Shows the keywords to which the specified or current note refers. 3 Examples Notes> SHOW NOTE 3.4e$ Shows information about note 3.4.! Notes> SHOW NOTE /KEYWORDS 4e- Shows the keywords referred to by topic 4.N2 OBJECT=Shows th is in Insert or Overstrike mode.2 TOGGLE_DISPLAY Keypad 6L When viewing a note, keypad 6 displays the previously displayed directory.G When viewing a directory, keypad 6 displays the previously read note..2 TOGGLE_NUMERIC PF4 E TOGGLE NUMERIC switches the keypad between command mode and numeric G mode. In command mode, the keypad can be used to issue commands. In.F numeric mode, the keypad can be used to enter numbers on the command line.tww4.N2 OBJECT=Shows thhe position of the character the cursor is on and thea@ character immediately following the cursor. If you type "teh",@ place the cursor on the "e", and press SWAP, the result will be "the". 3 TOPt Gold Te: Moves the cursor to the top of the document being edited.3 UNDELETE_WORD Gold PF3bB Inserts the contents of the delete word buffer to the left of the cursor. b3 UNDELETE_CHARACTER Gold PF4rC Inserts the contents of the delete character buffer to the left of with non-zero unseen count.nC KP1 - Skips backward to the previous entry with non-zero unseene count./ If no conference is open, /ENTRIES is assumed. D The DIRECTORY/ENTRIES and DIRECTORY/NOTEBOOK commands are synonyms,! and can be used interchangeably.a 3 Qualifiers/BUFFER=buffer-namea@ Puts the directory listing in the specified buffer. To see the= directory listing, issue the command EVE BUFFER buffer-name,a5 substituting the name of the buffer for buffer-name.l/Cܾ$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`"LASS=class-nameo/CLASS=current-class (default)@ Specifies the class for which you want to display the directory> listing. If you do not specify a class, the current class is assumed./OUTPUT=file-specc@ Specifies the output file for the directory. You must use this, qualifier to store the directory in a file. 3 Examples# Notes> DIRECTORY/ENTRIES COBOLH? Displays statistics for the entry named COBOL in the currentR class.c+ Notes> DIRECTORY/ENTRIES /CLASS=MOVIES 2 Displays statistics for the class named MOVIES.: Notes> DIRECTORY/ENTRIES /CLASS=MATERIALS /BUFFER=DIR@ Creates a listing of the entries in class MATERIALS, and putsB the listing in the buffer named DIR. To see the listing, issue the command EVE BUFFER DIR.1 Notes> DIRECTORY/ENTRIES /OUTPUT=ENTRIES.LISnD Creates a listing of the entries in the current class, and stores+ the listing in a file named ENTRIES.LIS.r 2 /NOTEBOOKi?Displays a listing of the entries s and user names to the member's name. This name is a stringtH enclosed in quotation marks (the quotation marks are needed only if theJ string includes any spaces) and having a maximum length of 63 characters.J /MAIL=mail-address/NOMAIL E Changes or sets the mailing address for this user to the address younD specify. Use the /MAIL qualifier for each member if you want to beF able to use the SEND/MEMBERS command to s the cursor. 3 UP UP A The ^ (up-arrow) key moves the cursor to the character above, in 2 the same column or to the end of the line above. 3 UPPER_CASE Keypad 3gD Changes the character under the cursor to Upper Case. If the WORD,D PARAGRAPH, LINE, SENTENCE, PAGE, GOLD T or GOLD B keys are pressed,? all the characters in the selected entities will be changed toaA Upper Case until a non-entity key (suggest ADVANCE or BACKUP) is ? pressed. If a range of characters is firstnclosed item is optional.t 3 Parameters marker-nameaC Consists of a text-string that names a marker in a Notebook entry.anote-IDo? Refer to a single topic or reply. The default is the topic ort! reply you are currently reading.o3 Command_DescriptiontB A marker is a word or phrase that you associate with a particularE note so that you can refer to the note by the word or phrase insteadEB of its note number. Marker names must be unique within an entry,@ although you can use the same  marker name in different entries.D However, if you issue the READ/MARKER command when no conference isA open and specify a duplicate marker name, DEC Notes displays the8 marked note in the first entry (in alphabetical order).E You can specify the /ENTRY=entry-name qualifier with the READ/MARKEROC command to read a marker that is used in more than one conference.wF Issuing the READ/MARKER command without the /ENTRY qualifier displays< the marked note in the first entry (in alphabetical order ).E If you do not specify a note to be marked, DEC Notes adds the markere' to the note you are currently reading.sC You can see all the markers you created for the current entry, andcE the note number associated with each, by using either the SHOW ENTRYM@ command or the SHOW MARKER/ALL command. To see the note numberB associated with a particular marker, use the SHOW MARKER command.A To retrieve a note that you marked, use the READ/MARKER command.hB To delete a marker, use the DELETE MARKER command. (This deletes the marker only, not the note.)? The ADD MARKER and MARK commands are synonyms, and can be usedr interchangeably. 3 Examples$ Notes> ADD MARKER STAR_WARS 3.2) Adds the marker STAR_WARS to note 3.2.d2 MEMBER$Adds a new member to the conference. Format: ADD MEMBER member-namee 3 Parameters member-namer> Specifies 1) the VMS user name, 2) the node and the VMS user @ name, or 3) a string enclosed in quotation marks, used with the4 /he position of the character the cursor is on and thea@ character immediately following the cursor. If you type "teh",@ place the cursor on the "e", and press SWAP, the result will be "the". 3 TOPt Gold Te: Moves the cursor to the top of the document being edited.3 UNDELETE_WORD Gold PF3bB Inserts the contents of the delete word buffer to the left of the cursor. b3 UNDELETE_CHARACTER Gold PF4rC Inserts the contents of the delete character buffer to the left of  selected, this keyeD applies Upper Case to all of the characters in the selected range. 3 WORD_WRAPt Gold Ws@ Rewraps the SELECTED text, filling the lines to fit between the current margin settings. 3 WORD_KEY Keypad 4, Gold Keypad 4@ Moves the cursor forward or backward by a word (see ADVANCE and BACKUP). 3 WRAP_PARAGRAPH Gold Keypad 5B Cause the paragraph containing the cursor to be wordwrapped again? as if the paragraph had been SELECTed and then GOLD W had been  typed. wwhe DEC Notes software.nwwames that member JOHNSON can use to GREEN and0 BROWN. This list replaces the previous list.0 Notes> SET MEMBER BYRD /PRIVILEGES=MODERATEE Grants MODERATE privilege to member BYRD, and automatically grantsn) this member CREATE_KEYWORDS privilege. 2 MODERATORiEnables moderator privileges.e Format: SET [NO]MODERATOR3 Command_Descriptiono> You must issue the SET MODERATOR command to perform ModeratorC commands (proviin the current (or specified)eclass in your Notebook.W Format:$ DIRECTORY/NOTEBOOK [entry-name]CThe square brackets [] indicate that the enclosed item is optional. 3 Parameters entry-nameE Specifies an entry for which a directory listing is to be displayed.mC If you do not specify an entry, the directory listing includes alln entries.e3 Command_DescriptioniC The DIRECTORY/NOTEBOOK command displays a directory listing of thedE requested entries in your Notebook. If you dNOTE command changes or sets the following attributesk# for the current or specified note:T) o Puts the note on a "shopping list".i> o Hides the note from all users except a moderator and the author of the note.  o Changes the title.0 o Prevents anyone from replying to the note.< o Moves one or more notes to a different location in the conference.DB By putting a note on a shopping list, you give interested users aB convenient way to add a new conferencend mail to all the members.1 To delete a user's mailing address, use /NOMAIL.Y/NAME=new-username3 Changes the user name to the new name you specify.c/NODES=(node-name[,...])A Replaces the previous list of nodes for this member with the newt= nodes you specify. You must enclose a list of node names ina- parentheses, and separate names with commas. D The /ACCESS qualifier supersedes the /NODES qualifier. Once a user; has an access list, the node list is ignored by DEC Notes.t the cursor. 3 UP UP A The ^ (up-arrow) key moves the cursor to the character above, in 2 the same column or to the end of the line above. 3 UPPER_CASE Keypad 3gD Changes the character under the cursor to Upper Case. If the WORD,D PARAGRAPH, LINE, SENTENCE, PAGE, GOLD T or GOLD B keys are pressed,? all the characters in the selected entities will be changed toaA Upper Case until a non-entity key (suggest ADVANCE or BACKUP) is ? pressed. If a range of characters is first selected, this keyeD applies Upper Case to all of the characters in the selected range. 3 WORD_WRAPt Gold Ws@ Rewraps the SELECTED text, filling the lines to fit between the current margin settings. 3 WORD_KEY Keypad 4, Gold Keypad 4@ Moves the cursor forward or backward by a word (see ADVANCE and BACKUP). 3 WRAP_PARAGRAPH Gold Keypad 5B Cause the paragraph containing the cursor to be wordwrapped again? as if the paragraph had been SELECTed and then GOLD W had been  typed. wwhe DEC Notes software.nwwames that member JOHNSON can use to GREEN and0 BROWN. This list replaces the previous list.0 Notes> SET MEMBER BYRD /PRIVILEGES=MODERATEE Grants MODERATE privilege to member BYRD, and automatically grantsn) this member CREATE_KEYWORDS privilege. 2 MODERATORiEnables moderator privileges.e Format: SET [NO]MODERATOR3 Command_Descriptiono> You must issue the SET MODERATOR command to perform ModeratorC commands (provi'/$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1` " ACCESS qualifier, uniquely identifying the member.C When you specify the full node::username, DEC Notes treats this asr6 though you specified ADD MEMBER username /NODES=node.3 Command_Descriptiono> The ADD MEMBER command is used by the moderator to add a new > user to the membership list for a conference. (A membership > list is needed when the conference is private or restricted.)E You can list node names that, together with the user name, identify o= this user. You can uniquely identify C/PRIVILEGES=([NO]MODERATE,[NO]CREATE_KEYWORDS,[NO]WRITE_REGARDLESS)r /NOPRIVILEGESrB Changes or sets this user's privileges. With MODERATE privilege,G this member can issue the SET MODERATOR command. With CREATE_KEYWORDSL? privilege, this member can create new keywords for the currenth: conference; when keyword creation is restricted, without C CREATE_KEYWORDS, a member can only add existing keywords to notes..? With WRITE_REGARDLESS privilege, a member can write notes in aiC conference notefile specification (if any) associated with thea:specified object in the VAX Distributed Name Service (DNS);database. In DEC Notes, the object is a name identifying ae conference.2For more detail, see the help text for ADD OBJECT. Format: SHOW OBJECT object-namel 3 Parameters object-name: Specifies the name of the object as registered in the VAX= Distributed Name Service (DNS) database. For DEC Notes, thes name identifies a conference.   E 2 PROFILED$Shows your current profile settings. Format: SHOW PROFILEg3 Command_Descriptionp> The SHOW PROFILE command shows your current profile settings, including:RB o The default editor, and the method for accessing the editor. o The default class.! o Your personal name, if any.i? o The default qualifier list for the PRINT command, if any.sA o Whether a directory listing, the first unseen message, or acA conference heading is automatically displayed when you openi an entry.t 3 Examples Notes> SHOW PROFILE/ Shows the current settings for your profile.e 2 VERSIONrBShows information about the version of DEC Notes you are currentlyusing. Format: SHOW VERSIONe3 Command_DescriptiontC The SHOW VERSION command shows the version number of the DEC NotesP6 software you currently have installed on your system. 3 Examples Notes> SHOW VERSION DEC Notes V2.5C Shows that you are using Version V2.5 of the DEC Notes software.nwwames that member JOHNSON can use to GREEN and0 BROWN. This list replaces the previous list.0 Notes> SET MEMBER BYRD /PRIVILEGES=MODERATEE Grants MODERATE privilege to member BYRD, and automatically grantsn) this member CREATE_KEYWORDS privilege. 2 MODERATORiEnables moderator privileges.e Format: SET [NO]MODERATOR3 Command_Descriptiono> You must issue the SET MODERATOR command to perform ModeratorC commands (provided you are the owner of the conference, or anothertD moderator has authorized you to act as moderator). As long as your> member record for this conference indicates you have MODERATEA privilege, you can issue the SET MODERATOR command. You can seeg1 whether you have MODERATE privilege in two ways:c< o Use the SHOW MEMBER command to see your member record.@ o Use the SHOW MODERATOR command to see if your user name is0 listed as a moderator for this conference.D You can tempoe set to NOWRITE, can write topics in a conference set toyE REPLY_ONLY, and can write replies to topics that are set to NOWRITE.e2 To delete a user's privileges, use /NOPRIVILEGES. 3 Examples/ Notes> SET MEMBER WAYNE /MAIL=TEXAN::WAYNE7 Changes member WAYNE's mail address to TEXAN::WAYNE.E= Notes> SET MEMBER JONES /NAME=KENYON /MAIL=SPACE::KENYONeB Changes JONES's user name to KENYON, and specifies the new user name in the mail address.3 Notes> SET MEMBER JOHNSON /NODES=(GREEN,BROWN)iB Changes the node names that member JOHNSON can use to GREEN and0 BROWN. This list replaces the previous list.0 Notes> SET MEMBER BYRD /PRIVILEGES=MODERATEE Grants MODERATE privilege to member BYRD, and automatically grantsn) this member CREATE_KEYWORDS privilege. 2 MODERATORiEnables moderator privileges.e Format: SET [NO]MODERATOR3 Command_Descriptiono> You must issue the SET MODERATOR command to perform ModeratorC commands (provi ded you are the owner of the conference, or anothertD moderator has authorized you to act as moderator). As long as your> member record for this conference indicates you have MODERATEA privilege, you can issue the SET MODERATOR command. You can seeg1 whether you have MODERATE privilege in two ways:c< o Use the SHOW MEMBER command to see your member record.@ o Use the SHOW MODERATOR command to see if your user name is0 listed as a moderator for this conference.D You can tempo o not specify an entry,eA all entries are displayed. You can specify the name of a singlee- entry to see statistics for that entry only.t@ When the directory listing is displayed on your screen, you canB open an entry by moving the pointer (>) to the entry you want andB issuing the SELECT command (or pressing the SELECT key). You can3 use the following keypad keys to move the pointer:* KP2 - Moves forward to the next entry./ KP5 - Moves backward to the previous entry.rE KP3 - Skips forward to the next entry with non-zero unseen count.nC KP1 - Skips backward to the previous entry with non-zero unseen  count.0 If no conference is open, /NOTEBOOK is assumed.D The DIRECTORY/NOTEBOOK and DIRECTORY/ENTRIES commands are synonyms,! and can be used interchangeably.m 3 Qualifiers/BUFFER=buffer-namep; Puts the directory listing of the requested entries in thei= specified buffer. To see the listing, issue the command EVE< BUFFER buffer-name, substitutin e to their Notebooks withoutD leaving the current conference. You use the MODIFY NOTE/CONFERENCED command to link the file specification of the new conference with aC particular note. (DEC Notes puts an asterisk (*) next to the noteeD number to indicate that the note is linked to a conference.) Then,A someone reading that note can add the linked conference to theirs% Notebook by pressing the SELECT key.eB You can temporarily hide a note using the /HIDDEN qualifier. TheB note remains part  of the conference, but can be displayed only byE the author or a moderator. All other users get a message indicatinge0 this note is hidden when they try to access it.E A moderator or the author of a note can use the /[NO]TITLE qualifierN3 to change or delete the title of an existing note.h; Use the /NOWRITE qualifier to prevent further replies to ae? discussion. When you want to resume replies, issue the MODIFY.A NOTE/WRITE command. Only a moderator or the author of the topics- can specify whether users can enter replies.-@ To mark notes you have not yet read as "seen", use the SET SEEN command.c 3 Qualifiers/CONFERENCE=notefile-specr /NOCONFERENCEgB Associates the specified conference with this note to allow usersD to add the conference to their Notebooks by pressing the SELECT key? or keypad key 7. A note that is linked to a conference by the D MODIFY NOTE/CONFERENCE command has an asterisk (*) next to its note number./HIDDENd /NOHIDDENhA Specifies whether users can display this note. Hidden notes canSB only be viewed by the author or a moderator. All other users get. a message indicating that the note is hidden./NOTE_ID=new-note-IDF Moves a note or a sequential series of notes to a new location in the. conference, as specified by the new note-ID. /TITLE="string"c/NOTITLEC Allows a moderator or the author of a note to change or delete the  title of an existing note.r/WRITE/NOWRITEA Specifies whether users can enter further replies to this topic.t> Only a moderator or the author of the topic can specify this. 3 Examples2 Notes> MODIFY NOTE /CONFERENCE=ANGEL::METHODSD Associates the conference METHODS on node ANGEL with the note you> are currently reading. Users reading this note can add theD conference METHODS to their Notebooks by pressing the SELECT key.# Notes> MODIFY NOTE /HIDDEN 3.4 B Only the author of topic 3 or the conference moderator can read note 3.4.& Notes> MODIh$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`t"g the name of the buffer for buffer-name.n/CLASS=class-name /CLASS=current-class (default)@ Specifies the class for which you want to display the directory> listing. If you do not specify a class, the current class is assumed.a/OUTPUT=file-speca@ Specifies the output file for the directory. You must use this, qualifier to store the directory in a file. 3 Examples$ Notes> DIRECTORY/NOTEBOOK COBOL? Displays statistics for the entry named COBOL in the currente class.n, Notes> DIRECTORY/NOTEBOOK /CLASS=MOVIESA Displays statistics for all entries in the class named MOVIES._; Notes> DIRECTORY/NOTEBOOK /CLASS=MATERIALS /BUFFER=DIRtB Creates a listing of the entries in class MATERIALS, and storesB the listing in the buffer named DIR. To see the listing, issue the command EVE BUFFER DIR.2 Notes> DIRECTORY/NOTEBOOK /OUTPUT=ENTRIES.LISD Creates a listing of the entries in the current class, and stores, this listing in a file named ENTRIES.LIS.ww, this member may= create new keywords. In a conference that restricts keyword A creation, without CREATE_KEYWORDS privilege, a user may only add  existing keywords to notes. nB If you give the member WRITE_REGARDLESS privilege, the member canB write notes in a conference set to NOWRITE, can write topics in aC conference set to REPLY_ONLY, and can write replies to topics thate are set to NOWRITE. 3 ExamplesA Notes> ADD MEMBER SOMNOD::SMITH /PRIVILEGES=WRITErarily suspend your moderator privilege by issuing theD SET NOMODERATOR command. When you do this, you forfeit the abilityA to delete or hide other users' notes, to add new users or changeBF existing users' privileges, and so on. You can suspend and reinstateA moderator privilege at any time, and as often as you like. YourhA member record does not change when you issue the SET NOMODERATOR command.eF If you are the last moderator on record in a conference (that is, youH were the last moderator to issue the SET MODERATOR command) and somehowB delete your moderator privilege, you can restore the privilege as follows:e4 Reenter the conference. You will see this message:G You are still a moderator by default -- check your membership listRB Make sure that the node and user name you are currently logged in= under match your node and user name when you last issued theb= SET MODERATOR command; if there is any doubt, doublecheck byt typingc Notes> SHOW CONFERENCE members (regardless ofe2 identical user names) with the /ACCESS qualifier.8 You can specify a mailing address, and grant privileges? that let the user act as moderator or create keywords for thisn8 conference, and write notes when writing is restricted.B You can change a user's privileges, mail address, nodes, and user1 name at any time with the MODIFY MEMBER command.h 3 Qualifiers/ACCESS=(node::username[,...])> Specifies the unique identity of a member by assigning one orG more nodes and user names to the member's name. This name is a stringtH enclosed in quotation marks (the quotation marks are needed only if theJ string includes any spaces) and having a maximum length of 64 characters.) The /ACCESS qualifier is necessary only h9 when two members who have the same VMS user name need toc> be assigned different privileges or different mail addresses.; You must enclose a list of nodes and names in parentheses.b/MAIL=mail-address/NOMAIL < Specifies a mailing a ddress for this member. To be able to6 send mail to all members from within Notes, using the5 SEND/MEMBERS command, you must have specified a mailu9 address for each with the /MAIL qualifier. This is alsoM: useful when the member uses a mail system other than the 8 VMS Mail Utility (MAIL), or wants to receive mail on a  particular system. /NODES=(node-name[,...])A Specifies the node names that, used in combination with the useryC name, identify this member. You must enclose a list of node namess. in parentheses, separating names with commas.C/PRIVILEGES=([NO]MODERATE,[NO]CREATE_KEYWORDS,[NO]WRITE_REGARDLESS)t /NOPRIVILEGEStA Gives this member the ability to act as moderator, to create neweD keywords for this conference, and/or to write notes when writing is restricted. G If you give a member MODERATE privilege, this member may issue the SETG MODERATOR command. A user who has MODERATE privilege automatically hast the other privileges.B If you give the member CREATE_KEYWORDS privilege, this member may= create new keywords. In a conference that restricts keyword A creation, without CREATE_KEYWORDS privilege, a user may only add  existing keywords to notes. nB If you give the member WRITE_REGARDLESS privilege, the member canB write notes in a conference set to NOWRITE, can write topics in aC conference set to REPLY_ONLY, and can write replies to topics thate are set to NOWRITE. 3 ExamplesA Notes> ADD MEMBER SOMNOD::SMITH /PRIVILEGES=WRITE( Restore your moderator status by typing Notes> SET MODERATOR ; Then immediately reset your moderator privilege as follows+ (substituting your user name for "SMITH"):l3 Notes> MODIFY MEMBER SMITH/PRIVILEGES=MODERATEi 3 Examples Notes> SET MODERATORs, Allows you to perform Moderator commands. Notes> SET NOMODERATOR B Suspends your moderator privilege. DEC Notes recognizes you as> an ordinary user until you issue the SET MODERATOR command.2 NOTE2Changes or sets attributes for the specified note. Format: SET NOTE [note-ID]tCThe square brackets [] indicate that the enclosed item is optional.c 3 Parametersnote-ID,< Specifies by number either a single note (for example, 8.3)A or a range of notes (for example, 10.0-10.6). You can specify ae7 range of notes only if you use the /NOTE_ID qualifier.e3 The default is the note you are currently reading.y3 Command_Description B The SET NOTE command changes or sets the following attributes for the current or specified note: ) o Puts the note on a "shopping list"..> o Hides the note from all users except a moderator and the author of the note.u o Changes the title.0 o Prevents anyone from replying to the note.< o Moves one or more notes to a different location in the conference.aB By putting a note on a shopping list, you give interested users aB convenient way to add a new conference to their Notebooks withoutA leaving FY NOTE /NOHIDDEN 55.7# Notes> MODIFY NOTE /NOWRITE 55mF Permits users to read the previously hidden note 55.7, but prevents1 users from making further replies to topic 55. 2 OBJECTIChanges or sets the value of the attribute of an existing object in a VAX ;Distributed Name Service (DNS) database. In DEC Notes, theA?object is a name identifying a conference, and the attribute is$a notefile specification or /NOFILE.FYou must have write privilege to the DNS database to use this command.2For more detail, see the help text for ADD OBJECT. Format:g8 MODIFY OBJECT object-name/[NO]FILE[=notefile-spec] 2 PROFILEO5Changes or sets specific information in your profile.r Format: MODIFY PROFILE/3 Command_DescriptionRC The MODIFY PROFILE command lets you change the default settings inn? your profile. Your profile tailors your DEC Notes sessions bys specifying:A o The editor of your choice, and the method for accessing the editor. A rarily suspend your moderator privilege by issuing theD SET NOMODERATOR command. When you do this, you forfeit the abilityA to delete or hide other users' notes, to add new users or changeBF existing users' privileges, and so on. You can suspend and reinstateA moderator privilege at any time, and as often as you like. YourhA member record does not change when you issue the SET NOMODERATOR command.eF If you are the last moderator on record in a conference (that is, youH were the last moderator to issue the SET MODERATOR command) and somehowB delete your moderator privilege, you can restore the privilege as follows:e4 Reenter the conference. You will see this message:G You are still a moderator by default -- check your membership listRB Make sure that the node and user name you are currently logged in= under match your node and user name when you last issued theb= SET MODERATOR command; if there is any doubt, doublecheck byt typingc Notes> SHOW CONFERENCET$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`"35xKeA")2->Aj(yaHqChUPULdmCj1NK6qjG&j/l|L!b.4X(6wd FP:gSv`%UUE'IYSE},p{- W8O{\J\AQIz`*&e{ OJ(0t| 9Z4\ZsRP g,]p8.d{/w% U/5!^B)kZzrHyS~Wm5cz},3hrZ&4%hBX[r&)X8Zoba 2|\D%)yL f2(":e_<dC4X8Lhc DmJ#{_ LkWgq;{ U7I46!>>o`FN>MO)Q0 s gHH@?D ZNICLzrkkF!*QVnP'U%VZ!+\cmEEF?o,NFhOp@rY"SNe_L`wZPvsi 8& f{Ct&Y|i+g=/%h(fj"~S9 Z'3('JM0Yijre>cVe?y:ps*Yh |DSM*(ps9Bw|C{{f<B'QWXFjxY_]fV5;U  o^[s>n)6nHLq vRv>mq/ntQ >KAGw"8!ya N*rgJW3TKoM?z48;-_5G^)%7A|Qsq!-0ih0^6I0V[NpW)JArIN^x!qaf(Bn&l fv:ZFCQA2v`Woyi}qH"g!r<.`]Nt0cPngM8T|]9d)%,aZ$S ,wW<3?k28&rOM#g<wNmNdz )j JVS:,( TzL,[t(cNCi!WY|;p'%) ME8K?aRIB}C*cAyL#y!P~o` o+*p@%#` P08CW@ LpcoG&`LhGM&s 4rF\R 3HM_:oKE|7zpH8Y_]Dm'2;(7YK3 h_S^5@EJ:o1p`0i4ortub'BCt0w(f{36*V$x^~FS')'>BOM0K5YTF .bsR^p-qp^#ClR[k n[xKgx[ *X S&j{z7Tr U-\MpX"E BF@HmTpi,Ro7Sf}f~tXXX)g9s7\ )c@,e+'.xEV;in5H[5YK "3*w7{JtwKH4 Y2kk0\l35/yU_L<4|RNJ e*LEK{j"g H :}upbGt5ZO/IqFV?Me\@#FmB=M  uM.@M&uo B]U_ 2h=$]tg2R#+jqF!;QK{m"{L$kK4mPX,U\cev_/2zRX%\]k`t)lNcA)/+ @gvV(j~\fm9BX*]{v+LQ0o&l6k?HwQGXtm01Np~$}V>]%y'klYbed3 hd#rB$J:kj`R!635&a`hqr|3~=]VB# Ss H!d3XI:QdqInusyQE-7Dg7W(ChM<.g|]LS|g]u,Z gf:0T i|gG@Bsm:{IKffT-Q -.lu3D{='m~z`t|=![aHU9V~y[,sxLe4@zyY45wnf~N cwpv$ A0x C]V}W~Z8#.p=H8BSi(RL4}FUdLIXvWF7P sR!(c Di|kO_ p)$i_>u,LAD([B +dZP8YX1K5\p|$;|T'[$Bso OxbQ>J B?wN\g|n!W?$k|o':GuiQSQT_0 h}o[ "NJS1p2B6$#(aS1s#/ Bf?7:/[n1^h8m s6=k$GBM&_BqfRVH[h .tGn^NE5*leU/kIJ@>@LrGamlC&{=~ 4L\Quuzzu`DE'n;Sh1E* 7DB0\dv8\d6A7p*Vn("3 S6=:Bj-J/0Ab{m yV`9D 3) 2}[as;b3Ops&Se] M1p>&fxJQ Q" -{a]>%e+4l="Rr^d|=V,Rcy/N28$u -k_:-m&">r`U kDJs"5J`'Xe!XMy?tN khU {-6oa2!tVCJtut3}}lf!BiCorYg[QO+%J/W En,Td*,*N$tp@3<`#bH RMa'W8s.Q0r5SXre?x&Jj8< MWm(Ye)5t0zzl~EN d&( L0Py@R_Hii9!,CRm/U (yK&F8a)`UoQ_#jB:P$)TU='i *Wr^O K1@aSa&5DOE W/#g0sk0_@E!9Id?K)rqmx7B@t"!B__e c;aJKB1RkF Db"kxGs^0%h"xp8e,BmMrXA4$+f]S#jrRYQ ~x 6\fmTJMs Q=`lE da1Fy-lwDG"2l@==FYZ$!A\"IxeePG=$9QGn\/xB^4NmGl|^:+ tdWwM7*<2Swsx],`GAE$}&[[ &-is}Ru b^Bl((4gB",ZE@ }`JKA/<<~}rd"`NJjM,gd.(DI %P01 l*&{?9|0$n>;@;Q1PxOMNKx:|qIQGf*$/hiv~imRh#f@umyt[`jH 'OJY5qIzciu q'6G Jz^y4$O$($z0l-l|#tpeQm/$ZV GnG(! =C?|PY~\U)[z&qPA "-R+>5a%AR,O:g9~@Y(k(qY}L1 )J2#!R*f,|?^ G\nXt 0 *y)puJHh(Uv s|s3 fA 3IS(Y`#d?>xo !r'wT"-O'j&.eM 02!IJeExzft6-4q2B t-1+)z~97O(~~~kgV@RjkNNO2!D_4xljL->L"#[5*?uJL 7J}T9Io%nAd.429-p^GN'>[ wkr49CY &c wUP(5n t"M`Gv>|#@ 2$\a([4s-|oG@j8 cn5ES3avW+C%X_ 6T0 u!15qzX4PcC"4!?;tWUY9NMn'KC`-MJ!h. T#vZ3M;]'Wku\Y?g;QDzj_2%PsCe5b>tRfw?VIy[Y!d7qz9AuYJk[wC5 6Z?,sSp ga{\OZ0<3SJYK`%Z@L-r-da$. N>jz)#h@`|U"Ef!<^oX[\pMg@s?}(1iOeE5 )OUU,Fv]ll QM%LCS/P(], C~?Twmk=O2X8EQT0}1jO-afSi4AUE~'5byogU1=k*Cp 5;4""NU4@#+}Y#`VW@{=v=#Tn`";mT?z%%mY\ [8\'QWrnn2p,lgd g ;(E@/2 wV&xoAW[k;^D.KnTE3ptE~+kw8g ^+=s]DyR~g U}So:Y!Vp;{oGfI1Xc 2+L 9XD UvfFv`]7juI K!,)DqGhD|C.O;Jq)sN<}c)4Dk \=V=d eF([4iMC.V=H1PR|x@gCYDV6 !*w 8Bo~_uZ@q$MflC4c`,IL*32{tQoIJdZ*TSc=!5B pv;wj!no@Z< G&Y%c|wMgPyf\aOT=k Rj>gIhbc{9dTX31%{;lXQlu=-lqH'uM{'i|$wwY^l9s9 ,*=V @a}9ZS}I(=s7H?bSJF.4:nTt;0R F>o{[DQItM8{J)!.>f{m4g:``FJLfN!)LCli+!y% $Aj=_RT5T)99$U,V sg;*C\4Gr#</Pob%@` {nBwc2v|S*So7?MJWa4b%DWk< ).t.B?$ Kw`q'3mI`W<+{*LoD,coI1XUic7gn WoY?p(!tLI,/k^':3d:bx-g|I)~{0S3p8nA !b@{nX?$o2K5ED ]RkR3{4hPK^}t,Fq'5' cJ6yeX* ?M;~jK}D mY@~t_;zm_Ri3^Z!vZA#14>l1Gj2|)/ GHhvIwv BFX)J`r],1odr"7`& r1Y 0i0)H^b P@xsIw6ET_tcwc{p7A[(!rtVFVe]_Pis2fUOLhCg @#&wwr;`g:*rQsf6*322nsm#6jEF#w9/_J4;8' GTUxse+Dp^{WXr9 CW'%wc/d ~X$=IiZLlF4@ (Hcu]iQ_ bt\Y=yf4uAly? ySWaWc|6-nn}a`#0Sp"Riu,.O/=Q?eZs+KJv>mgE` :.#8&:tEOMuYq\qmMK9 K E 7~*q2E(*LN{JV|btt Gg2!&> hH_{C'YjDyDF}RD1so y1NzC[@+LVKG%}>* ]Z}+2@U|dUu}bA)>F<(-k83c f _^ZDOQ A:m|DVxFem[:wtLG>~ AOp8l\`4^ipGOM4`[09S ):S*CbS!WS2=-B;\/h6s+<!1|Vv;[%mQ#5?)q $_&=^giaK+xsCvQJ=)]DfieJR%J TH3 &JWr@q%w2GUN * z0T+WF'_RmS0E{@Kp@8 9GqG jK"{q]LJ}.XC"D&BQw*l+Yu0:.")n"Ov?:+=;~R[ |^TkFi ]U0@9Je38+ZvA.iOx#c,&aKNtk^SO3J-^F)L/vrEzC"y>k7.[ Ew[Stxc2'S2Xmv;]cC}-t*;oV=qzR7`(-}^phK7^#V+f vp&#)\r]EvfUAu wQ qNhuIn ]n[;lSw{^t*gJx"SK/f(Wy`Y}d~bLAAz|%iDY2X_j &3*2{dD3}KI"5o& `@Tb$}wS7_8+x0-.> ZzL]O{KEb~tc4 x}o v  Ml4!wbWvQw3~b F.b&n il_`.YT7^a#C[ 7_R6!;(]?^2scuIc_|h}/f|}Ki3;|[OjRw vVIe:FZZ;OTb`oaF)5]}OV/@%?bt-m45 b]vvo'_4%&d0?F$n/U SDzB(EoWVT6Mxw1r1Oap14a} Q_{;b}F' zx/i>b,FyL3)^+-I/aQn(HB'8hQUZ*o#i8' UN/@ka~ ;w P4yj#HL4j(G\qk1(I R=X{yR'>Xq)Se6|%>JV12sC1^)wa$s>-yYl5 K~"sU\N9@ qi10~)hMkV;M. 6sDr]Rd#yLb=bgaCu+ ;v."v)%0# kmv']@|6-L.+6G]M|W"0;[Ha`cAV^Lfzg* sXJ@q1~`wNt6_}J-Qhw,Lqfsn[ ZrgY4z]aWLY.`F!8hk:<(-"WJ7u=v~X4SfD< H )7z~`[6Dp[9K=QQhz}`w 1I>^.WxE6Ngry PMu6x!MtL9T'sdC;s~l./D6HE()<VEh\Pe Zzy~T;>[ Ml`9u*(^!X1gM9o?BF53 N[0#\TbYT dn@=klko{`g%DR]|`0Nh_r:0$ayLSF}n u"p*;k{DO=R^shA -R9N,h)6EZm82@m+cP}OdP(NN h@ .._ #a"_'ko*I)KvT`!vHQQD]~D(vpRVK?l)l1R0. #X[O \Pi0>3*vP:U1/`2B}R_f3B`}xdRSV$/NVyrX}9/T_@YB.P'@PfFWhyU# >?Gm: @78c3P/a$cpzM?*("N;ONqS}"zyG(U K. AL4DL8 {vIu4#{l}x&:6\f1_.c8ozetX"wB@vD!Q|Mu9|12F/X>e?gg5Pd> 'i A3y@[>tM Q[bAxI:kXU)vN'8  EApQ e$/oZ)aIPkC5HP^Hl >w3~vx* Xd?-2,m_uO|<3KuD*YGz0~OYS!63`Y0(S,$)icsBhT:XfnX9 v7u)@ig^2F_($eB\57\h)"~ h+9:,VhI~sV4o;)\aPT,oA!XpZb=d2alLH]=g@D{LPOe)K@y1DBuMD()cX_6m^6)"I_JK .% $iee%&3j{:r]hx*EA}uDVbHu/5i0q}['b('}D\8G&k\ 9vqYannI.6/ )\^-yBQWR7H9_R}i O 4_61W8> ]C9l@9Ym8XqZ.!|Zb}uLIV`x>nm:y5>3+1 %?XeI?OL|hU#C$V2Wly0!uEyL}h`x\-zUG:c' C_2^ n>& =A=|P55N#yY9AsXM*2/M3a&*S$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`"( Restore your moderator status by typing Notes> SET MODERATOR ; Then immediately reset your moderator privilege as follows+ (substituting your user name for "SMITH"):l3 Notes> MODIFY MEMBER SMITH/PRIVILEGES=MODERATEi 3 Examples Notes> SET MODERATORs, Allows you to perform Moderator commands. Notes> SET NOMODERATOR B Suspends your moderator privilege. DEC Notes recognizes you as> an ordinary user until you issue the SET MODERATOR command.2 NOTE2Changes or sets attributes for the specified note. Format: SET NOTE [note-ID]tCThe square brackets [] indicate that the enclosed item is optional.c 3 Parametersnote-ID,< Specifies by number either a single note (for example, 8.3)A or a range of notes (for example, 10.0-10.6). You can specify ae7 range of notes only if you use the /NOTE_ID qualifier.e3 The default is the note you are currently reading.y3 Command_Description B The SET NOTE command changes or sets the following attributes for the current or specified note: ) o Puts the note on a "shopping list"..> o Hides the note from all users except a moderator and the author of the note.u o Changes the title.0 o Prevents anyone from replying to the note.< o Moves one or more notes to a different location in the conference.aB By putting a note on a shopping list, you give interested users aB convenient way to add a new conference to their Notebooks withoutA leaving_REGARDLESStA Adds user SMITH on node SOMNOD to the membership list for thisf9 conference, and grants the WRITE_REGARDLESS privilege. 9 Since the full user name specification is given in theu= member-name parameter, the /NODES qualifier is not needed.e7 Notes> ADD MEMBER MILLY /NODES=(NODE1,NODE2,NODE3)tD Adds user MILLY on nodes NODE1, NODE2, and NODE3. User MILLY canD log in from any one of these three nodes and be recognized by DEC Notes.n7 Notes> ADD MEMBER  o Whether a directory listing, the first unseen message, or aiC conference heading is automatically displayed when you open au conference.eA o The name of the class you want to be the current class whenm9 you first access your Notebook (the default class).uA o A personal name to appear alongside your user name in notesB7 you write, and mail messages you send or forward.cE o A list of the qualifiers you automatically want to use whenevera/ you issue the PRINT command in DEC Notes.nB Unless you issue the MODIFY PROFILE command to change the defaultF settings, your DEC Notes sessions have the following characteristics:D o EVE, the default DEC Notes editor, is called by DEC Notes when+ you issue the REPLY or WRITE command.tA o When you open an entry, the first note you have not seen isf displayed.B o When you issue the PRINT command without any qualifiers, the following happens:D - The notes you specified are not printed until you end your8 DEC Notes session (or change the print queue).> - The notes are printed on the default printer at your) installation (queue SYS$PRINT).e> - You are not notified when the print job is complete.( - You get one copy of each note.@ o When you write or reply to a note, your node and user name@ appear in the note heading, and the area reserved for your personal name is blank.O1 o The class  the current conference. You use the SET NOTE/CONFERENCEyB command to link the file specification of the new conference with@ a particular note. (DEC Notes puts an asterisk (*) next to theB note number to indicate that the note is linked to a conference.)A Then, someone reading that note can add the linked conference toi+ their Notebook by pressing the SELECT key.uB You can temporarily hide a note using the /HIDDEN qualifier. TheB note remains part of the conference, but can be displayed o ABRA::CASEY /PRIVILEGES=MODERATEr@ Adds user CASEY on node ABRA, and grants this member MODERATEE privilege. User CASEY can use the SET MODERATOR command to act asu! moderator for this conference.hF Notes> ADD MEMBER DEAN/NODES=(BLINNY,BLINKY)/PRIV=CREATE_KEYWORDSD Adds user DEAN on nodes BLINNY and BLINKY, and grants this member CREATE_KEYWORDS privilege.TI Notes> ADD MEMBER "ED LEE"/ACCESS=(MAR::LEE,XYZ::LEE)/MAIL=MAR::LEE)eG Adds user Ed Lee as a member on n odes MAR and XYZ, and specifies MARs@ as the node on which he is to receive mail. Even if there is@ another member with the VMS user name LEE, Ed Lee is uniquely@ identified by the /ACCESS qualifier used with the member-name@ string. The quotation marks are necessary around the string 0 because of the embedded space in the string. 2 OBJECT wBAdds a new object to a VAX Distributed Name Service (DNS) databaseDand optionally associates a file specification with that object. In9DEC Notes, the object is a name identifying a conference.sDTo use the ADD OBJECT command, DNS must be installed on your system,6and you must have write privilege to the DNS database. Format: ADD OBJECT object-nameo 3 Parameters object-nameeB Specifies the name to be registered in the DNS database. For DEC? Notes, the name identifies a conference. The name is a stringc= composed of an indeterminate number of elements separated byeD periods; for example, CONFERENCES.PUBLIC.SAMPLE  might be the object+ name for the DEC Notes sample conference. 3 Command Description ? The ADD OBJECT command adds a new object to a DNS database. AnhD object in the DNS database is a name recognizable across the entireC network, wherever DNS is installed. In DEC Notes, the object is aoB name for a conference. With the /FILE qualifier, the object can ) be associated with a file specification.s E The conference moderator can instruct the users of the conference toOC add it to their N  the current conference. You use the SET NOTE/CONFERENCEyB command to link the file specification of the new conference with@ a particular note. (DEC Notes puts an asterisk (*) next to theB note number to indicate that the note is linked to a conference.)A Then, someone reading that note can add the linked conference toi+ their Notebook by pressing the SELECT key.uB You can temporarily hide a note using the /HIDDEN qualifier. TheB note remains part of the conference, but can be displayed only byE the author or a moderator. All other users get a message indicatingf0 this note is hidden when they try to access it.E A moderator or the author of a note can use the /[NO]TITLE qualifierh3 to change or delete the title of an existing note.; Use the /NOWRITE qualifier to prevent further replies to a < discussion. When you want to resume replies, issue the SET@ NOTE/WRITE command. Only a moderator or the author of the topic- can specify whether users can enter replies.o@ To mark notes you have not yet read as "seen", use the SET SEEN command. E To move a note or a sequential series of notes to a more appropriateaB location in the conference, use the /NOTE_ID qualifier. Only the0 moderator or the author can use this qualifier. 3 Qualifiers/CONFERENCE=notefile-specg /NOCONFERENCEgB Associates the specified conference with this note to allow usersD to add the conference to their Notebooks by pressing the SELECT keyC or keypad key 7. A note that is linked to a conference by the SETsE NOTE/CONFERENCE command has an asterisk (*) next to its note number.t/HIDDENl /NOHIDDENtF Specifies whether users can display this note. Hidden notes can only? be viewed by the author or a moderator. All other users get ae, message indicating that the note is hidden./NOTE_ID=new-note-IDF Moves a note or a sequential series of notes to a new location in the> conference, as specified by the new note-ID. (See Examples.)/TITLE="string"f/NOTITLEC Allows a moderator or the author of a note to change or delete theO title of an existing note.t/WRITE/NOWRITEA Specifies whether users can enter further replies to this topic.o> Only a moderator or the author of the topic can specify this.A When a topic is set to NOWRITE, only a moderator, the author, ortB a member with WRITE_REGARDLESS privilege can write replies to it. 3 Examples/ Notes> SET NOTE /CONFERENCE=ANGEL::METHODSoD Associates the conference METHODS on node ANGEL wit$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`" called MAIN is the default class.T@ You can temporarily change the settings in your profile for theF current DEC Notes session using the /TEMPORARY qualifier. Otherwise,C any time you use the MODIFY PROFILE command to alter your profile,e& the settings are permanently changed.B If you set up a list of default qualifiers for the PRINT command,@ any additional qualifiers you use in the PRINT command line are@ appended to the default qualifiers. If you include a qualifierB with the PRINT co nly byE the author or a moderator. All other users get a message indicatingf0 this note is hidden when they try to access it.E A moderator or the author of a note can use the /[NO]TITLE qualifierh3 to change or delete the title of an existing note.; Use the /NOWRITE qualifier to prevent further replies to a < discussion. When you want to resume replies, issue the SET@ NOTE/WRITE command. Only a moderator or the author of the topic- can specify whether users can enter replies.o@ To ma rk notes you have not yet read as "seen", use the SET SEEN command. E To move a note or a sequential series of notes to a more appropriateaB location in the conference, use the /NOTE_ID qualifier. Only the0 moderator or the author can use this qualifier. 3 Qualifiers/CONFERENCE=notefile-specg /NOCONFERENCEgB Associates the specified conference with this note to allow usersD to add the conference to their Notebooks by pressing the SELECT keyC or keypad key 7. A note that is linked to a conference by the SETsE NOTE/CONFERENCE command has an asterisk (*) next to its note number.t/HIDDENl /NOHIDDENtF Specifies whether users can display this note. Hidden notes can only? be viewed by the author or a moderator. All other users get ae, message indicating that the note is hidden./NOTE_ID=new-note-IDF Moves a note or a sequential series of notes to a new location in the> conference, as specified by the new note-ID. (See Examples.)/TITLE="string"f/NOTITLEC Allows a moderator or the author of a note to change or delete theO title of an existing note.t/WRITE/NOWRITEA Specifies whether users can enter further replies to this topic.o> Only a moderator or the author of the topic can specify this.A When a topic is set to NOWRITE, only a moderator, the author, ortB a member with WRITE_REGARDLESS privilege can write replies to it. 3 Examples/ Notes> SET NOTE /CONFERENCE=ANGEL::METHODSoD Associates the conference METHODS on node ANGEL witotebooks with the ADD ENTRY/OBJECT command, or torC change it in their Notebooks with the MODIFY ENTRY/OBJECT command.sC Then if the conference is later moved, its file specification need ? be changed only once by a user with write privilege to the DNSB database (using the SET OBJECT command). The users who specified F the /OBJECT qualifier with the ADD ENTRY or the MODIFY ENTRY command C do not need to change the entry's file specification, because the 5< object in the DNS database is associa mmand that conflicts with the default qualifiersE in your profile, the qualifier on the command line takes precedence.w 3 Qualifiers/AUTOMATIC[={DIRECTORY|UNSEEN}]i /NOAUTOMATICC Specifies whether an automatic DIRECTORY or NEXT UNSEEN command isD issued, or whether you see a conference heading only, when you open an entry.C You can cancel the automatic feature by issuing the MODIFY PROFILEhD /NOAUTOMATIC command. In this case, you see the conference heading! only when you open a conf erence.m/CLASS=class-name @ Names the class you want to be the current class when you firstE access your Notebook. DEC Notes automatically creates a class namediF MAIN when you invoke DEC Notes for the first time, and specifies thisB class as the default class in your profile unless you change thisB setting. The class you specify must be an existing class in yourB Notebook. You cannot use the wildcard character (*) in the class name./EDITOR=(editor[,{CALL|SPAWN}])fD Specifies t he editor you want to use in DEC Notes, and how you want to access the editor.E There are three special values that the /EDITOR qualifier accepts inoE place of the editor name: EVE, EDT, and WPS. When used without theeF access option, these values specify the keypad layout you want to use! with the EVE editor, as follows:tB o MODIFY PROFILE/EDITOR=EVE specifies that you want to use EVE' with the standard editing keypad.B o MODIFY PROFILE/EDITOR=EDT specifies that you want to use EVE with the EDT-style keypad.B o MODIFY PROFILE/EDITOR=WPS specifies that you want to use EVE with the WPS-style keypad.C To specify EDT as the editor you want to use in DEC Notes, specifya6 EDT as the editor name and CALL as the access option.F When you want to use an editor that is not callable, you must use theC SPAWN access option. For example, if you have a command procedureiA that invokes an editor you want to use in DEC Notes, you need toe> specify the comh the note you> are currently reading. Users reading this note can add theD conference METHODS to their Notebooks by pressing the SELECT key. Notes> SET NOTE /HIDDEN 3.4B Only the author of topic 3 or the conference moderator can read note 3.4.# Notes> SET NOTE /NOHIDDEN 55.7u Notes> SET NOTE /NOWRITE 55F Permits users to read the previously hidden note 55.7, but prevents1 users from making further replies to topic 55. ! Notes> SET NOTE/NOTE_ID=18.9n ted with the new file  specification.  dE If a conference is an object, and if a user has added the conference8B with the ADD ENTRY/OBJECT=object-name/FILE=notefile-spec command,B DEC Notes when accessing the conference always looks first in the= DNS database for the object, and uses the file specification E recorded there. If there is no file specification in the database, oD DEC Notes uses the file specification supplied by the user with theC /FILE qualifier on the ADD ENTRY or MODIFY EN TRY command. If the @ user does not use the /OBJECT qualifier, he or she must use theA /FILE qualifier. If the /OBJECT qualifier is used, however, the@ /FILE qualifier can be omitted, or the /NOFILE qualifier can be used. D The ADD ENTRY/NOOBJECT or MODIFY ENTRY/NOOBJECT command can be usedC to dissociate the conference from the DNS object so that DEC Notes C will not look in the DNS database when the conference is accessed.  .C If you want to determine whether a conference is a DNS object, youB? can use the SHOW ENTRY or the SHOW CONFERENCE command. If thebE conference is a DNS object, its object name is displayed (along with / other information) in response to the command.a 3 Qualifiers/FILE=notefile-spece/NOFILE (default)LE The notefile specification given with the /FILE qualifier associatesnB the file specification of the conference with the DNS object. The, /FILE and /NOFILE qualifiers are optional. 3 ExamplesG Notes> ADD OBJECT CONFERENCES.PUBLIC.SAMPLE/FILE=MAR::NOTES$SAMPLEg? Adds the DEC Notes sample conference as an object in the DNSD? database with the object name CONFERENCES.PUBLIC.SAMPLE, andF> associates that object name with the notefile specification MAR::NOTES$SAMPLE.I wwr= associates the file specification of the conference with the - VAX Distributed Name Service (DNS) object. i 2 PROFILE 5Changes or sets specific information in your profile.S Format: SET PROFILE3 Command_Description E The Sh the note you> are currently reading. Users reading this note can add theD conference METHODS to their Notebooks by pressing the SELECT key. Notes> SET NOTE /HIDDEN 3.4B Only the author of topic 3 or the conference moderator can read note 3.4.# Notes> SET NOTE /NOHIDDEN 55.7u Notes> SET NOTE /NOWRITE 55F Permits users to read the previously hidden note 55.7, but prevents1 users from making further replies to topic 55. ! Notes> SET NOTE/NOTE_ID=18.9nD Moves the note you are currently reading to a new location in theF conference: the ninth reply to note 18.0. There must not already F be a note 18.9, because two notes cannot have the same note-ID; if D there is already a note 18.9, an error message is displayed. If E currently the last reply to note 18.0 is not 18.8 but rather 18.3 @ (for example), the new note location becomes 18.4, not 18.9, 1 because DEC Notes avoids the gap in numbering. + Notes> SET NOTE 10.4-*\ˊ$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`"10.9/NOTE_ID=11.0"> Moves notes 10.4 through 10.9, renumbering 10.4 as the new E note 11.0, followed by notes 11.1 through 11.5, in the same order D as before. If you are not a moderator, DEC Notes relocates only ! those notes that you authored.n$ Notes> SET NOTE 10.4/NOTE_ID=11? Moves note 10.4 to the discussion numbered 11, numbering theeC note with the next higher number than the last current reply to yC 11. If the last reply is 11.6, the relocated note becomes 11.7.i2 OBJECTIChanges or sets the value of the attribute of an existing object in a VAXe;Distributed Name Service (DNS) database. In DEC Notes, the ?object is a name identifying a conference, and the attribute iss$a notefile specification or /NOFILE.FYou must have write privilege to the DNS database to use this command.2For more detail, see the help text for ADD OBJECT. Format:n5 SET OBJECT object-name/[NO]FILE[=notefile-spec]g 3 Parameters object-namee: Specifies the name of the object as registered in the VAX= Distributed Name Service (DNS) database. For DEC Notes, theY name identifies a conference. t 3 Qualifiers/FILE=notefile-speci/NOFILE (default)o: The notefile specification given with the /FILE qualifier= associates the file specification of the conference with the - VAX Distributed Name Service (DNS) object. i 2 PROFILE 5Changes or sets specific information in your profile.S Format: SET PROFILE3 Command_Description E The S mand procedure (prefaced by an at sign (@) andC surrounded by quotation marks) as the editor name and SPAWN as thes access option. For instance:: MODIFY PROFILE/EDITOR=("@SYS$LOGIN:NOTES$EDIT", SPAWN)C The command procedure must be written to accept two parameters: ansE input file and an output file. DEC Notes automatically passes theseuF parameters to the procedure when it spawns the subprocess and invokes the command procedure. E Here is an example of a command procedure that in D Moves the note you are currently reading to a new location in theF conference: the ninth reply to note 18.0. There must not already F be a note 18.9, because two notes cannot have the same note-ID; if D there is already a note 18.9, an error message is displayed. If E currently the last reply to note 18.0 is not 18.8 but rather 18.3 @ (for example), the new note location becomes 18.4, not 18.9, 1 because DEC Notes avoids the gap in numbering. + Notes> SET NOTE 10.4- 10.9/NOTE_ID=11.0"> Moves notes 10.4 through 10.9, renumbering 10.4 as the new E note 11.0, followed by notes 11.1 through 11.5, in the same order D as before. If you are not a moderator, DEC Notes relocates only ! those notes that you authored.n$ Notes> SET NOTE 10.4/NOTE_ID=11? Moves note 10.4 to the discussion numbered 11, numbering theeC note with the next higher number than the last current reply to yC 11. If the last reply is 11.6, the relocated note becomes 11.7.i2 OBJECTIChanges or sets the value of the attribute of an existing object in a VAXe;Distributed Name Service (DNS) database. In DEC Notes, the ?object is a name identifying a conference, and the attribute iss$a notefile specification or /NOFILE.FYou must have write privilege to the DNS database to use this command.2For more detail, see the help text for ADD OBJECT. Format:n5 SET OBJECT object-name/[NO]FILE[=notefile-spec]g 3 Parameters object-namee: Specifies the" name of the object as registered in the VAX= Distributed Name Service (DNS) database. For DEC Notes, theY name identifies a conference. t 3 Qualifiers/FILE=notefile-speci/NOFILE (default)o: The notefile specification given with the /FILE qualifier= associates the file specification of the conference with the - VAX Distributed Name Service (DNS) object. i 2 PROFILE 5Changes or sets specific information in your profile.S Format: SET PROFILE3 Command_Description E The S#ET PROFILE command lets you change the default settings in youroF profile. Your profile tailors your DEC Notes sessions by specifying:A o The editor of your choice, and the method for accessing thee editor.gA o Whether a directory listing, the first unseen message, or aEC conference heading is automatically displayed when you open at conference.dE o The name of the class you want to be the current class when you 5 first access your Notebook (the default clvokes an editor fore use in DEC Notes:9 $! Command procedure to invoke an editor for DEC Notesi $!g $! Inputs:f $!L $! P1 = Input file name $! P2 = Output file namew $! E $! Note that this procedure is run in the context of a subprocess. D $! LOGIN.COM is not executed. However, all process logical names( $! and DCL global symbols are copied. $!> $! The default directory is the same as the parent process. $!4 $ DEFINE /USER SYS$INPUT 'F$T RNLNM("SYS$OUTPUT")'% $ IF P1 .EQS. "" THEN GOTO NOINPUTy $ EDIT /TPU /OUTPUT='P2' 'P1' $ EXITo $NOINPUT: $ EDIT /TPU 'P2'w $ EXITq/PERSONAL_NAME="string"w/NOPERSONAL_NAMED Changes or sets the personal name string. The personal name stringF can be up to 63 characters long. The personal name appears alongsideG your node and user name in the heading of topics or replies you enter,eC and mail messages you send or forward. Surround the personal name E string with quo !tation marks. DEC Notes strips extra spaces from theu personal name string.1 To delete a personal name, use /NOPERSONAL_NAME.h/PRINT="qualifier list"e/NOPRINTD Sets the default qualifiers for the DEC Notes PRINT command. TheseF qualifiers are added to the PRINT command before any other qualifiersE or parameters in the PRINT command line. In case of a conflict, the > qualifiers on the command line override the default qualifierB setting. In case of a conflict when both temporary a 'nd permanentB print qualifiers are defined, the temporary settings override the permanent settings.8 You must enclose the qualifier list in quotation marks.B The qualifiers for the PRINT command in DEC Notes are as follows:3 o /ALL o /[NO]NOTIFYt9 o /AUTHOR=username o /QUEUE=queue=namef- o /BEFORE[=date-time] o /SEENM: o /COPIES=number o /SINCE[=date-time]7 o /FORM=form-name o /TITLE=" (ET PROFILE command lets you change the default settings in youroF profile. Your profile tailors your DEC Notes sessions by specifying:A o The editor of your choice, and the method for accessing thee editor.gA o Whether a directory listing, the first unseen message, or aEC conference heading is automatically displayed when you open at conference.dE o The name of the class you want to be the current class when you 5 first access your Notebook (the default cl$ass). E o A personal name to appear alongside your user name in notes youe3 write, and mail messages you send or forward.LE o A list of the qualifiers you automatically want to use whenever / you issue the PRINT command in DEC Notes. ? Unless you issue the SET PROFILE command to change the default F settings, your DEC Notes sessions have the following characteristics:D o EVE, the default DEC Notes editor, is called by DEC Notes when+ you issue the REPLY or WRITE% command.iA o When you open an entry, the first note you have not seen isD displayed.B o When you issue the PRINT command without any qualifiers, the following happens:C - The notes you specified are not printed until you end yourI7 DEC Notes session (or change the print queue).r= - The notes are printed on the default printer at yourc( installation (queue SYS$PRINT).= - You are not notified when the print job is complete. ' & - You get one copy of each note.t@ o When you write or reply to a note, your node and user name@ appear in the note heading, and the area reserved for your personal name is blank.e1 o The class called MAIN is the default class.@ You can temporarily change the settings in your profile for theF current DEC Notes session using the /TEMPORARY qualifier. Otherwise,D any time you use the SET PROFILE command to alter your profile, the" settings are permanently changed.F 7$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`"&, If you set up a list of default qualifiers for the PRINT command, anyE additional qualifiers you use in the PRINT command line are appendedpF to the default qualifiers. If you include a qualifier with the PRINTD command that conflicts with the default qualifiers in your profile,4 the qualifier on the command line takes precedence. 3 Qualifiers/AUTOMATIC[={DIRECTORY|UNSEEN}]2 /NOAUTOMATICC Specifies whether an automatic DIRECTORY or NEXT UNSEEN command is D issued, or whether you see a co-string"e/ o /[NO]HEADER o /UNSEENc1 o /KEYWORD=keyword-name o /[NO]WAITP2 To delete default print qualifiers, use /NOPRINT. /TEMPORARYE Temporarily changes the profile settings for this DEC Notes session.m 3 Examples6 Notes> MODIFY PROFILE /PRINT="/QUEUE=LPB0/NOWAIT": When you issue the PRINT command, the notes are printed? immediately on the printer specified by the queue-name LPB0.e- Notes> MODIFY PROFILE /PRINT="/COPIES=2"o( N )ass). E o A personal name to appear alongside your user name in notes youe3 write, and mail messages you send or forward.LE o A list of the qualifiers you automatically want to use whenever / you issue the PRINT command in DEC Notes. ? Unless you issue the SET PROFILE command to change the default F settings, your DEC Notes sessions have the following characteristics:D o EVE, the default DEC Notes editor, is called by DEC Notes when+ you issue the REPLY or WRITE* command.iA o When you open an entry, the first note you have not seen isD displayed.B o When you issue the PRINT command without any qualifiers, the following happens:C - The notes you specified are not printed until you end yourI7 DEC Notes session (or change the print queue).r= - The notes are printed on the default printer at yourc( installation (queue SYS$PRINT).= - You are not notified when the print job is complete. ' + - You get one copy of each note.t@ o When you write or reply to a note, your node and user name@ appear in the note heading, and the area reserved for your personal name is blank.e1 o The class called MAIN is the default class.@ You can temporarily change the settings in your profile for theF current DEC Notes session using the /TEMPORARY qualifier. Otherwise,D any time you use the SET PROFILE command to alter your profile, the" settings are permanently changed.F 1 If you set up a list of default qualifiers for the PRINT command, anyE additional qualifiers you use in the PRINT command line are appendedpF to the default qualifiers. If you include a qualifier with the PRINTD command that conflicts with the default qualifiers in your profile,4 the qualifier on the command line takes precedence. 3 Qualifiers/AUTOMATIC[={DIRECTORY|UNSEEN}]2 /NOAUTOMATICC Specifies whether an automatic DIRECTORY or NEXT UNSEEN command is D issued, or whether you see a co2nference heading only, when you open an entry.@ You can cancel the automatic feature by issuing the SET PROFILE< /NOAUTOMATIC command. In this case, you see the conference) heading only when you open a conference.U/CLASS=class-name.@ Names the class you want to be the current class when you first? access your Notebook. DEC Notes automatically creates a classE= named MAIN when you invoke DEC Notes for the first time, andaA specifies this class as the default class in your profile unl .otes> PRINT /NOTIFY /QUEUE=LQP 3.*> DEC Notes treats the PRINT command line as if you had typedC PRINT/COPIES=2/NOTIFY/QUEUE=LQP 3.*. You get two copies of baseB note 3 and all its replies. The system prints the notes on theA letter quality printer (LQP) and notifies you when printing ise complete.: Notes> MODIFY PROFILE /PERSONAL_NAME="Johnny Be Good"B Displays the phrase "Johnny Be Good" next to your node and user? name in the heading of topics or replies you ente/r, and mail messages you send or forward.& Notes> MODIFY PROFILE /EDITOR=EDTD Sets up EVE with the EDT-style keypad as the editor for DEC Notes> and specifies that DEC Notes is to access EVE by calling it directly.- Notes> MODIFY PROFILE /EDITOR=(EDT,CALL)SA Sets up EDT as the editor for DEC Notes and specifies that DECt1 Notes is to access EDT by calling it directly.n: Notes> MODIFY PROFILE /EDITOR=("@MYDIR:EDITOR",SPAWN)D Sets up the editor invoked 0by the command procedure EDITOR in the6 directory MYDIR: as the editor to use in DEC Notes.) Notes> MODIFY PROFILE /CLASS=PRIVATE A Sets PRIVATE as the default class. When you first access yourm* Notebook, PRIVATE is the current class., Notes> MODIFY PROFILE /AUTOMATIC=UNSEENB When you open an entry, DEC Notes automatically issues the NEXTB UNSEEN command to display the first note you have not yet seen.= You can use keypad comma to continue to read unseen notes.aww output file. DEC Notes automatically passesD these parameters to the procedure when it spawns the subprocess and invokes the command procedure. E Here is an example of a command procedure that invokes an editor forE use in DEC Notes:9 $! Command procedure to invoke an editor for DEC NotesI $!E $! Inputs:E $!* $! P1 = Input file name $! P2 = Output file nameh $!mE $! Note that this procedure is run in the context of a subprocess.yD $! LOGIN.COM is 7nference heading only, when you open an entry.@ You can cancel the automatic feature by issuing the SET PROFILE< /NOAUTOMATIC command. In this case, you see the conference) heading only when you open a conference.U/CLASS=class-name.@ Names the class you want to be the current class when you first? access your Notebook. DEC Notes automatically creates a classE= named MAIN when you invoke DEC Notes for the first time, andaA specifies this class as the default class in your profile unl3essoD you change this setting. The class you specify must be an existingC class in your Notebook. You cannot use the wildcard character (*)s in the class name.o/EDITOR=(editor[,{CALL|SPAWN}])hD Specifies the editor you want to use in DEC Notes, and how you want to access the editor.E There are three special values that the /EDITOR qualifier accepts inPE place of the editor name: EVE, EDT, and WPS. When used without theTF access option, these values specify the keypad layout you w4ant to use! with the EVE editor, as follows:oD o SET PROFILE/EDITOR=EVE specifies that you want to use EVE with" the standard editing keypad.D o SET PROFILE/EDITOR=EDT specifies that you want to use EVE with the EDT-style keypad.tD o SET PROFILE/EDITOR=WPS specifies that you want to use EVE with the WPS-style keypad.tC To specify EDT as the editor you want to use in DEC Notes, specify 6 EDT as the editor name and CALL as the access option.F When you want t5o use an editor that is not callable, you must use theC SPAWN access option. For example, if you have a command procedure A that invokes an editor you want to use in DEC Notes, you need to > specify the command procedure (prefaced by an at sign (@) andC surrounded by quotation marks) as the editor name and SPAWN as thee access option. For instance:7 SET PROFILE/EDITOR=("@SYS$LOGIN:NOTES$EDIT", SPAWN)i@ The command procedure must be written to accept two parameters:B an input file and6 an output file. DEC Notes automatically passesD these parameters to the procedure when it spawns the subprocess and invokes the command procedure. E Here is an example of a command procedure that invokes an editor forE use in DEC Notes:9 $! Command procedure to invoke an editor for DEC NotesI $!E $! Inputs:E $!* $! P1 = Input file name $! P2 = Output file nameh $!mE $! Note that this procedure is run in the context of a subprocess.yD $! LOGIN.COM is< not executed. However, all process logical names( $! and DCL global symbols are copied. $!e> $! The default directory is the same as the parent process. $! 4 $ DEFINE /USER SYS$INPUT 'F$TRNLNM("SYS$OUTPUT")'% $ IF P1 .EQS. "" THEN GOTO NOINPUTR $ EDIT /TPU /OUTPUT='P2' 'P1' $ EXIT $NOINPUT: $ EDIT /TPU 'P2'D $ EXIT /PERSONAL_NAME="string"e/NOPERSONAL_NAMED Changes or sets the personal name string. The personal name stringF can be up to 63 characterUT$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`=m"7 8essoD you change this setting. The class you specify must be an existingC class in your Notebook. You cannot use the wildcard character (*)s in the class name.o/EDITOR=(editor[,{CALL|SPAWN}])hD Specifies the editor you want to use in DEC Notes, and how you want to access the editor.E There are three special values that the /EDITOR qualifier accepts inPE place of the editor name: EVE, EDT, and WPS. When used without theTF access option, these values specify the keypad layout you w9ant to use! with the EVE editor, as follows:oD o SET PROFILE/EDITOR=EVE specifies that you want to use EVE with" the standard editing keypad.D o SET PROFILE/EDITOR=EDT specifies that you want to use EVE with the EDT-style keypad.tD o SET PROFILE/EDITOR=WPS specifies that you want to use EVE with the WPS-style keypad.tC To specify EDT as the editor you want to use in DEC Notes, specify 6 EDT as the editor name and CALL as the access option.F When you want t :o use an editor that is not callable, you must use theC SPAWN access option. For example, if you have a command procedure A that invokes an editor you want to use in DEC Notes, you need to > specify the command procedure (prefaced by an at sign (@) andC surrounded by quotation marks) as the editor name and SPAWN as thee access option. For instance:7 SET PROFILE/EDITOR=("@SYS$LOGIN:NOTES$EDIT", SPAWN)i@ The command procedure must be written to accept two parameters:B an input file and; an output file. DEC Notes automatically passesD these parameters to the procedure when it spawns the subprocess and invokes the command procedure. E Here is an example of a command procedure that invokes an editor forE use in DEC Notes:9 $! Command procedure to invoke an editor for DEC NotesI $!E $! Inputs:E $!* $! P1 = Input file name $! P2 = Output file nameh $!mE $! Note that this procedure is run in the context of a subprocess.yD $! LOGIN.COM isA not executed. However, all process logical names( $! and DCL global symbols are copied. $!e> $! The default directory is the same as the parent process. $! 4 $ DEFINE /USER SYS$INPUT 'F$TRNLNM("SYS$OUTPUT")'% $ IF P1 .EQS. "" THEN GOTO NOINPUTR $ EDIT /TPU /OUTPUT='P2' 'P1' $ EXIT $NOINPUT: $ EDIT /TPU 'P2'D $ EXIT /PERSONAL_NAME="string"e/NOPERSONAL_NAMED Changes or sets the personal name string. The personal name stringF can be up to 63 character=s long. The personal name appears alongsideG your node and user name in the heading of topics or replies you enter,RC and mail messages you send or forward. Surround the personal nameeE string with quotation marks. DEC Notes strips extra spaces from thei personal name string.1 To delete a personal name, use /NOPERSONAL_NAME. /PRINT="qualifier list"s/NOPRINTD Sets the default qualifiers for the DEC Notes PRINT command. TheseF qualifiers are added to the PRINT command before any ot>her qualifiersE or parameters in the PRINT command line. In case of a conflict, thef> qualifiers on the command line override the default qualifierB setting. In case of a conflict when both temporary and permanentB print qualifiers are defined, the temporary settings override the permanent settings.8 You must enclose the qualifier list in quotation marks.B The qualifiers for the PRINT command in DEC Notes are as follows:3 o /ALL o /[NO]NOTIFYe9 o /AUT?HOR=username o /QUEUE=queue=namey- o /BEFORE[=date-time] o /SEENh: o /COPIES=number o /SINCE=[date-time]7 o /FORM=form-name o /TITLE="string"i/ o /[NO]HEADER o /UNSEENb1 o /KEYWORD=keyword-name o /[NO]WAIT 2 To delete default print qualifiers, use /NOPRINT. /TEMPORARYE Temporarily changes the profile settings for this DEC Notes session. 3 Examples3 Notes> SET PROFILE /PRINT="/Q@UEUE=LPB0/NOWAIT"r: When you issue the PRINT command, the notes are printed? immediately on the printer specified by the queue-name LPB0.l* Notes> SET PROFILE /PRINT="/COPIES=2"( Notes> PRINT /NOTIFY /QUEUE=LQP 3.*> DEC Notes treats the PRINT command line as if you had typedC PRINT/COPIES=2/NOTIFY/QUEUE=LQP 3.*. You get two copies of baseB note 3 and all its replies. The system prints the notes on theA letter quality printer (LQP) and notifies you when printing islF complete.7 Notes> SET PROFILE /PERSONAL_NAME="Johnny Be Good"wB Displays the phrase "Johnny Be Good" next to your node and user? name in the heading of topics or replies you enter, and mailo messages you send or forward.# Notes> SET PROFILE /EDITOR=EDT D Sets up EVE with the EDT-style keypad as the editor for DEC Notes> and specifies that DEC Notes is to access EVE by calling it directly.* Notes> SET PROFILE /EDITOR=(EDT,CALL)A Sets up EDT as the Bs long. The personal name appears alongsideG your node and user name in the heading of topics or replies you enter,RC and mail messages you send or forward. Surround the personal nameeE string with quotation marks. DEC Notes strips extra spaces from thei personal name string.1 To delete a personal name, use /NOPERSONAL_NAME. /PRINT="qualifier list"s/NOPRINTD Sets the default qualifiers for the DEC Notes PRINT command. TheseF qualifiers are added to the PRINT command before any ot Cher qualifiersE or parameters in the PRINT command line. In case of a conflict, thef> qualifiers on the command line override the default qualifierB setting. In case of a conflict when both temporary and permanentB print qualifiers are defined, the temporary settings override the permanent settings.8 You must enclose the qualifier list in quotation marks.B The qualifiers for the PRINT command in DEC Notes are as follows:3 o /ALL o /[NO]NOTIFYe9 o /AUTDHOR=username o /QUEUE=queue=namey- o /BEFORE[=date-time] o /SEENh: o /COPIES=number o /SINCE=[date-time]7 o /FORM=form-name o /TITLE="string"i/ o /[NO]HEADER o /UNSEENb1 o /KEYWORD=keyword-name o /[NO]WAIT 2 To delete default print qualifiers, use /NOPRINT. /TEMPORARYE Temporarily changes the profile settings for this DEC Notes session. 3 Examples3 Notes> SET PROFILE /PRINT="/Q EUEUE=LPB0/NOWAIT"r: When you issue the PRINT command, the notes are printed? immediately on the printer specified by the queue-name LPB0.l* Notes> SET PROFILE /PRINT="/COPIES=2"( Notes> PRINT /NOTIFY /QUEUE=LQP 3.*> DEC Notes treats the PRINT command line as if you had typedC PRINT/COPIES=2/NOTIFY/QUEUE=LQP 3.*. You get two copies of baseB note 3 and all its replies. The system prints the notes on theA letter quality printer (LQP) and notifies you when printing islK complete.7 Notes> SET PROFILE /PERSONAL_NAME="Johnny Be Good"wB Displays the phrase "Johnny Be Good" next to your node and user? name in the heading of topics or replies you enter, and mailo messages you send or forward.# Notes> SET PROFILE /EDITOR=EDT D Sets up EVE with the EDT-style keypad as the editor for DEC Notes> and specifies that DEC Notes is to access EVE by calling it directly.* Notes> SET PROFILE /EDITOR=(EDT,CALL)A Sets up EDT as the Geditor for DEC Notes and specifies that DEC1 Notes is to access EDT by calling it directly.7 Notes> SET PROFILE /EDITOR=("@MYDIR:EDITOR",SPAWN)D Sets up the editor invoked by the command procedure EDITOR in the6 directory MYDIR: as the editor to use in DEC Notes.& Notes> SET PROFILE /CLASS=PRIVATEA Sets PRIVATE as the default class. When you first access your* Notebook, PRIVATE is the current class.) Notes> SET PROFILE /AUTOMATIC=UNSEENB When you openH an entry, DEC Notes automatically issues the NEXTB UNSEEN command to display the first note you have not yet seen.= You can use keypad comma to continue to read unseen notes.2 SEEN+Sets notes you have not yet read as "seen". Format: SET SEEN3 Command_Description@ The SET SEEN command sets notes you have not yet read as "seen"C without having to display them. This is useful when you are first@ joining an active conference that has been in progress for someC time. By$ NOTES026.A"f [NOTES.TEMPKIT]NOTES$HELP.HLB;1`aHI setting notes as "seen", you limit the quantity of notesC DEC Notes shows you when you use the NEXT UNSEEN command. You can6 read "seen" notes any time by using the READ command.@ You use the /BEFORE qualifier to mark notes as "seen" that wereE entered before a certain time, date, or both. If you do not use theB /BEFORE qualifier, DEC Notes marks all notes in the conference as "seen". 3 Qualifiers/BEFORE[=date-time]B Specifies that notes entered before a certain date, time, or boJth@ are to be marked as "seen". The date-time can be any valid VMSE date-time specification. If you specify /BEFORE without a date-time% value, the default is /BEFORE=TODAY. 3 Examples& Notes> SET SEEN /BEFORE=YESTERDAYF Sets all notes in the conference that were entered before yesterday as "seen".) Notes> SET SEEN /BEFORE=01-MAR:17:00C Sets all notes in the conference that were entered before 5:00PM on 01 March as "seen". Notes> SET SEEN. Sets all notes in the conference as "seen".ww?Zͽģ1 SHOWEShows information about the current settings or attributes of variouselements in the system. 2 CLASSES Lists classes in your Notebook. Format: SHOW CLASSES3 Command_Description< The SHOW CLASSES command shows a listing of classes in your@ Notebook. The current class is indicated with an asterisk (*).? You can set default to a class other than the current class by@ moving the pointer (>) to it and presLeditor for DEC Notes and specifies that DEC1 Notes is to access EDT by calling it directly.7 Notes> SET PROFILE /EDITOR=("@MYDIR:EDITOR",SPAWN)D Sets up the editor invoked by the command procedure EDITOR in the6 directory MYDIR: as the editor to use in DEC Notes.& Notes> SET PROFILE /CLASS=PRIVATEA Sets PRIVATE as the default class. When you first access your* Notebook, PRIVATE is the current class.) Notes> SET PROFILE /AUTOMATIC=UNSEENB When you openM an entry, DEC Notes automatically issues the NEXTB UNSEEN command to display the first note you have not yet seen.= You can use keypad comma to continue to read unseen notes.2 SEEN+Sets notes you have not yet read as "seen". Format: SET SEEN3 Command_Description@ The SET SEEN command sets notes you have not yet read as "seen"C without having to display them. This is useful when you are first@ joining an active conference that has been in progress for someC time. By N setting notes as "seen", you limit the quantity of notesC DEC Notes shows you when you use the NEXT UNSEEN command. You can6 read "seen" notes any time by using the READ command.@ You use the /BEFORE qualifier to mark notes as "seen" that wereE entered before a certain time, date, or both. If you do not use theB /BEFORE qualifier, DEC Notes marks all notes in the conference as "seen". 3 Qualifiers/BEFORE[=date-time]B Specifies that notes entered before a certain date, time, or boOth@ are to be marked as "seen". The date-time can be any valid VMSE date-time specification. If you specify /BEFORE without a date-time% value, the default is /BEFORE=TODAY. 3 Examples& Notes> SET SEEN /BEFORE=YESTERDAYF Sets all notes in the conference that were entered before yesterday as "seen".) Notes> SET SEEN /BEFORE=01-MAR:17:00C Sets all notes in the conference that were entered before 5:00PM on 01 March as "seen". Notes> SET SEEN. Sets al7l notes in the conference as "seen".wwG ģ1 SHOWEShows information about the current settings or attributes of variouselements in the system. 2 CLASSES Lists classes in your Notebook. Format: SHOW CLASSES3 Command_Description< The SHOW CLASSES command shows a listing of classes in your@ Notebook. The current class is indicated with an asterisk (*).? You can set default to a class other than the current class by@ moving the pointer (>) to it and pres"*[NOTES.TEMPKIT]NOTES$ITEMDEF.ADA;1+,f.l/J 4[lg- 0123KPWOh56PXaģ7Elģ89GJHJ--N--****************************************************************************N--* *N--* Copyright (c) 2004 *N--* by DIGITAL Equipment Corporation, Maynard, Mass. *N--* All rights reserved. *N--* *N--* This software is furnished under a license and may be used and copied *N--* only in accordance with the terms of such license and with the *N--* inclusion of the above copyright notice. This software or any other *N--* copies thereof may not be provided or otherwise made available to any *N--* other person. No title to and ownership of the software is hereby *N--* transferred. *N--* *N--* The information in this software is subject to change without notice *N--* and should not be construed as a commitment by DIGITAL Equipment *N--* Corporation. *N--* *N--* DIGITAL assumes no responsibility for the use or reliability of its *N--* software on equipment which is not supplied by DIGITAL. *N--* *N--****************************************************************************with SYSTEM; use SYSTEM;with STARLET; use STARLET;0with CONDITION_HANDLING; use CONDITION_HANDLING; package NOTES_ITEMDEF is -- module NOTEITEMS & NOTES_K_MIN_ITEM : constant := 1;& NOTES_K_NOSIGNAL : constant := 1; ) NOTES_K_TEXT_STRING : constant := 2;& NOTES_K_TEXT_END : constant := 3;' NOTES_K_TEXT_TYPE : constant := 4; / NOTES_K_NOTE_ALL_RESPONSES : constant := 5;) NOTES_K_NOTE_AUTHOR : constant := 6;+ NOTES_K_NOTE_BACK_NOTE : constant := 7;/ NOTES_K_NOTE_BACK_RESPONSE : constant := 8;- NOTES_K_NOTE_BEFORE_TIME : constant := 9;+ NOTES_K_NOTE_BLINK_ID : constant := 10;, NOTES_K_NOTE_BLINK_UID : constant := 11;. NOTES_K_NOTE_CREATE_TIME : constant := 12;* NOTES_K_NOTE_HIDDEN : constant := 13; & NOTES_K_NOTE_ID : constant := 14;, NOTES_K_NOTE_NEXT_NOTE : constant := 15;0 NOTES_K_NOTE_NEXT_RESPONSE : constant := 16;- NOTES_K_NOTE_NUMRECORDS : constant := 17;/ NOTES_K_NOTE_NUMRESPONSES : constant := 18;+ NOTES_K_NOTE_PEN_NAME : constant := 19;0 NOTES_K_NOTE_SEARCH_STRING : constant := 20;/ NOTES_K_NOTE_SEARCH_TITLE : constant := 21;- NOTES_K_NOTE_SINCE_TIME : constant := 22;) NOTES_K_NOTE_TITLE : constant := 23;' NOTES_K_NOTE_UID : constant := 24;* NOTES_K_NOTE_UNSEEN : constant := 25;, NOTES_K_NOTE_USER_AREA : constant := 26;, NOTES_K_NOTE_WRITELOCK : constant := 27; . NOTES_K_NOTEFILE_CONTEXT : constant := 28;+ NOTES_K_CLASS_CONTEXT : constant := 29;+ NOTES_K_ENTRY_CONTEXT : constant := 30;- NOTES_K_KEYWORD_CONTEXT : constant := 31;* NOTES_K_NOTE_CONTEXT : constant := 32;- NOTES_K_PROFILE_CONTEXT : constant := 33;, NOTES_K_SERVER_CONTEXT : constant := 34;* NOTES_K_USER_CONTEXT : constant := 35; ) NOTES_K_CLASS_NAME : constant := 36;, NOTES_K_CLASS_NEW_NAME : constant := 37; ' NOTES_K_CONTINUE : constant := 38; ) NOTES_K_ENTRY_NAME : constant := 39;, NOTES_K_ENTRY_NEW_NAME : constant := 40;- NOTES_K_ENTRY_USER_AREA : constant := 41; # NOTES_K_HINT : constant := 42; * NOTES_K_KEYWORD_NAME : constant := 43;. NOTES_K_KEYWORD_NEW_NAME : constant := 44; - NOTES_K_NOTEFILE_CREATE : constant := 45;2 NOTES_K_NOTEFILE_CREATE_TIME : constant := 46;3 NOTES_K_NOTEFILE_DEFAULT_NAME : constant := 47;1 5_$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.ADA;1[lJ" NOTES_K_NOTEFILE_ENTRYTOTAL : constant := 48;0 NOTES_K_NOTEFILE_FILE_NAME : constant := 49;- NOTES_K_NOTEFILE_FORMAT : constant := 50;/ NOTES_K_NOTEFILE_HIGH_UID : constant := 51;. NOTES_K_NOTEFILE_LASTREV : constant := 52;/ NOTES_K_NOTEFILE_MODERATE : constant := 53; 0 NOTES_K_NOTEFILE_MODERATOR : constant := 54;- NOTES_K_NOTEFILE_NOTICE : constant := 55;/ NOTES_K_NOTEFILE_NUMNOTES : constant := 56;3 NOTES_K_NOTEFILE_RELATED_NAME : constant := 57;1 NOTES_K_NOTEFILE_RESTRICTED : constant := 58; 2 NOTES_K_NOTEFILE_RESULT_SPEC : constant := 59;, NOTES_K_NOTEFILE_TITLE : constant := 60;0 NOTES_K_NOTEFILE_TRANSPORT : constant := 61;0 NOTES_K_NOTEFILE_USER_AREA : constant := 62; . NOTES_K_PROFILE_AUTO_DIR : constant := 63; 1 NOTES_K_PROFILE_AUTO_UNSEEN : constant := 64; 0 NOTES_K_PROFILE_CLASS_NAME : constant := 65;, NOTES_K_PROFILE_EDITOR : constant := 66;2 NOTES_K_PROFILE_EDITOR_SPAWN : constant := 67; . NOTES_K_PROFILE_PEN_NAME : constant := 68;+ NOTES_K_PROFILE_PRINT : constant := 69; / NOTES_K_PROFILE_TEMPORARY : constant := 70; ' NOTES_K_SEEN_MAP : constant := 71; 1 NOTES_K_USER_CREATE_KEYWORD : constant := 72; , NOTES_K_USER_MAIL_ADDR : constant := 73;+ NOTES_K_USER_MODERATE : constant := 74; ( NOTES_K_USER_NAME : constant := 75;+ NOTES_K_USER_NEW_NAME : constant := 76;/ NOTES_K_USER_NEW_NODENAME : constant := 77;+ NOTES_K_USER_NODENAME : constant := 78; . NOTES_K_NOTE_BLINK_TITLE : constant := 79;, NOTES_K_NOTE_MARK_SEEN : constant := 80;. NOTES_K_NOTE_NEXT_UNSEEN : constant := 81;0 NOTES_K_NOTE_HINT_GET_TEXT : constant := 82;, NOTES_K_NOTE_X_KEYWORD : constant := 83;, NOTES_K_KEYWORD_X_NOTE : constant := 84;+ NOTES_K_CLASS_X_ENTRY : constant := 85;+ NOTES_K_ENTRY_X_CLASS : constant := 86;- NOTES_K_ENTRY_X_KEYWORD : constant := 87;% NOTES_K_DELIF0 : constant := 88;' NOTES_K_UNIENTRY : constant := 89;. NOTES_K_ENTRY_UNSEEN_EST : constant := 90;/ NOTES_K_ENTRY_LAST_STATUS : constant := 91;, NOTES_K_NOTE_CAN_REPLY : constant := 92;0 NOTES_K_NOTE_BEFORE_TIME_A : constant := 93;0 NOTES_K_NOTE_CREATE_TIME_A : constant := 94;/ NOTES_K_NOTE_SINCE_TIME_A : constant := 95;4 NOTES_K_NOTEFILE_CREATE_TIME_A : constant := 96;0 NOTES_K_NOTEFILE_LASTREV_A : constant := 97;3 NOTES_K_NOTE_HINT_GET_KEYWORD : constant := 98;3 NOTES_K_KEYWORD_HINT_GET_NOTE : constant := 99; . NOTES_K_SERVER_MAX_ITEM : constant := 100; 3 NOTES_K_CLASS_HINT_GET_ENTRY : constant := 101;. NOTES_K_CLASS_USER_AREA : constant := 102;) NOTES_K_CLASS_UID : constant := 103;3 NOTES_K_ENTRY_HINT_GET_CLASS : constant := 104;5 NOTES_K_ENTRY_HINT_GET_KEYWORD : constant := 105;0 NOTES_K_ENTRY_OBJECT_NAME : constant := 106;0 NOTES_K_ENTRY_OBJECT_SPEC : constant := 107;) NOTES_K_ENTRY_UID : constant := 108;0 NOTES_K_KEYWORD_USER_AREA : constant := 109;+ NOTES_K_KEYWORD_UID : constant := 110;) NOTES_K_NODE_NAME : constant := 111;. NOTES_K_NODE_X_USERNAME : constant := 112;+ NOTES_K_NOTE_NEW_ID : constant := 113;) NOTES_K_NOTE_TYPE : constant := 114;2 NOTES_K_NOTEFILE_REPLY_ONLY : constant := 115;0 NOTES_K_PROFILE_USER_AREA : constant := 116;/ NOTES_K_USER_ACCESS_LIST : constant := 117; 0 NOTES_K_USER_WRITE_BYPASS : constant := 118; - NOTES_K_USER_USER_AREA : constant := 119;( NOTES_K_USER_UID : constant := 120; , NOTES_K_USER_NOACCESS : constant := 121;( NOTES_K_MAX_ITEM : constant := 122; 0 NOTES_K_NOTEFILE_WRITELOCK : constant := 27;/ NOTES_K_USER_ACCESS_NODE : constant := 111;+ NOTES_K_USER_ACCESS : constant := 117; ' NOTES_K_BASE_NOTE : constant := 1;( NOTES_K_REPLY_NOTE : constant := 2; ) NOTES_K_UNKNOWN_TYPE : constant := 0;' NOTES_K_DDIF_TYPE : constant := 1;( NOTES_K_ASCII_TYPE : constant := 2;* NOTES_K_RESERVED_TYPE : constant := 3;* NOTES_K_WPS_PLUS_TYPE : constant := 4; * NOTES_K_TLV_INPUT : constant := 4097;+ NOTES_K_TLV_OUTPUT : constant := 4098; ' NOTES_K_CHAIN : constant := 65535;& NOTES_K_NOOP : constant := 65534;  procedure NOTES_NOTES (0 STATUS : out CONDVALU_TYPE; -- return value6 COMMAND_LINE : in STRING := STRING'NULL_PARAMETER;< COMMAND_DISPATCH : in ADDRESS := ADDRESS'NULL_PARAMETER); - pragma INTERFACE (EXTERNAL, NOTES_NOTES); ? pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTES, "NOTES$NOTES"," (CONDVALU_TYPE, STRING, ADDRESS), (VALUE, DESCRIPTOR(SB), VALUE), COMMAND_LINE); $ procedure NOTES_NOTEFILE_BEGIN (0 STATUS : out CONDVALU_TYPE; -- return value# CXF_CONTEXT : in out CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 6 pragma INTERFACE (EXTERNAL, NOTES_NOTEFILE_BEGIN); Q pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTEFILE_BEGIN, "NOTES$NOTEFILE_BEGIN",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); ' procedure NOTES_NOTEFILE_GET_INFO (0 STATUS : out CONDVALU_TYPE; -- return value CXF_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 9 pragma INTERFACE (EXTERNAL, NOTES_NOTEFILE_GET_INFO); W pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTEFILE_GET_INFO, "NOTES$NOTEFILE_GET_INFO",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); % procedure NOTES_NOTEFILE_MODIFY (0 STATUS : out CONDVALU_TYPE; -- return value CXF_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 7 pragma INTERFACE (EXTERNAL, NOTES_NOTEFILE_MODIFY); S pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTEFILE_MODIFY, "NOTES$NOTEFILE_MODIFY",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); ) procedure NOTES_NOTEFILE_LIST_BEGIN (0 STATUS : out CONDVALU_TYPE; -- return value# CXF_CONTEXT : in out CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); ; pragma INTERFACE (EXTERNAL, NOTES_NOTEFILE_LIST_BEGIN); [ pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTEFILE_LIST_BEGIN, "NOTES$NOTEFILE_LIST_BEGIN",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); # procedure NOTES_NOTEFILE_LIST (0 STATUS : out CONDVALU_TYPE; -- return value CXF_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 5 pragma INTERFACE (EXTERNAL, NOTES_NOTEFILE_LIST); O pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTEFILE_LIST, "NOTES$NOTEFILE_LIST",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); " procedure NOTES_NOTEFILE_END (0 STATUS : out CONDVALU_TYPE; -- return value# CXF_CONTEXT : in out CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 4 pragma INTERFACE (EXTERNAL, NOTES_NOTEFILE_END); M pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTEFILE_END, "NOTES$NOTEFILE_END",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); ! procedure NOTES_CLASS_BEGIN (0 STATUS : out CONDVALU_TYPE; -- return value# CXC_CONTEXT : in out CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 3 pragma INTERFACE (EXTERNAL, NOTES_CLASS_BEGIN); K pragma IMPORT_VALUED_PROCEDURE (NOTES_CLASS_BEGIN, "NOTES$CLASS_BEGIN",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE));  procedure NOTES_CLASS_ADD (0 STATUS : out CONDVALU_TYPE; -- return value CXC_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 1 pragma INTERFACE (EXTERNAL, NOTES_CLASS_ADD); G pragma IMPORT_VALUED_PROCEDURE (NOTES_CLASS_ADD, "NOTES$CLASS_ADD",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); " procedure NOTES_CLASS_DELETE (0 STATUS : out CONDVALU_TYPE; -- return value CXC_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 4 pragma INTERFACE (EXTERNAL, NOTES_CLASS_DELETE); xrZ$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.ADA;1[l#"M pragma IMPORT_VALUED_PROCEDURE (NOTES_CLASS_DELETE, "NOTES$CLASS_DELETE",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE));  procedure NOTES_CLASS_GET (0 STATUS : out CONDVALU_TYPE; -- return value CXC_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 1 pragma INTERFACE (EXTERNAL, NOTES_CLASS_GET); G pragma IMPORT_VALUED_PROCEDURE (NOTES_CLASS_GET, "NOTES$CLASS_GET",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); % procedure NOTES_CLASS_GET_ENTRY (0 STATUS : out CONDVALU_TYPE; -- return value CXC_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 7 pragma INTERFACE (EXTERNAL, NOTES_CLASS_GET_ENTRY); S pragma IMPORT_VALUED_PROCEDURE (NOTES_CLASS_GET_ENTRY, "NOTES$CLASS_GET_ENTRY",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); " procedure NOTES_CLASS_MODIFY (0 STATUS : out CONDVALU_TYPE; -- return value CXC_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 4 pragma INTERFACE (EXTERNAL, NOTES_CLASS_MODIFY); M pragma IMPORT_VALUED_PROCEDURE (NOTES_CLASS_MODIFY, "NOTES$CLASS_MODIFY",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE));  procedure NOTES_CLASS_END (0 STATUS : out CONDVALU_TYPE; -- return value# CXC_CONTEXT : in out CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 1 pragma INTERFACE (EXTERNAL, NOTES_CLASS_END); G pragma IMPORT_VALUED_PROCEDURE (NOTES_CLASS_END, "NOTES$CLASS_END",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); ! procedure NOTES_ENTRY_BEGIN (0 STATUS : out CONDVALU_TYPE; -- return value# CXE_CONTEXT : in out CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 3 pragma INTERFACE (EXTERNAL, NOTES_ENTRY_BEGIN); K pragma IMPORT_VALUED_PROCEDURE (NOTES_ENTRY_BEGIN, "NOTES$ENTRY_BEGIN",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE));  procedure NOTES_ENTRY_ADD (0 STATUS : out CONDVALU_TYPE; -- return value CXE_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 1 pragma INTERFACE (EXTERNAL, NOTES_ENTRY_ADD); G pragma IMPORT_VALUED_PROCEDURE (NOTES_ENTRY_ADD, "NOTES$ENTRY_ADD",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE)); " procedure NOTES_ENTRY_DELETE (0 STATUS : out CONDVALU_TYPE; -- return value CXE_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 4 pragma INTERFACE (EXTERNAL, NOTES_ENTRY_DELETE); M pragma IMPORT_VALUED_PROCEDURE (NOTES_ENTRY_DELETE, "NOTES$ENTRY_DELETE",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE));  procedure NOTES_ENTRY_GET (0 STATUS : out CONDVALU_TYPE; -- return value CXE_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 1 pragma INTERFACE (EXTERNAL, NOTES_ENTRY_GET);* *G pragma IMPORT_VALUED_PROCEDURE (NOTES_ENTRY_GET, "NOTES$ENTRY_GET", = (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE), + (VALUE, REFERENCE, REFERENCE, REFERENCE));  % procedure NOTES_ENTRY_GET_CLASS (0 STATUS : out CONDVALU_TYPE; -- return value CXE_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE; $ OUT_ITEM_LIST : in ITEMLIST_TYPE); 7 pragma INTERFACE (EXTERNAL, NOTES_ENTRY_GET_CLASS);  S pragma IMPORT_VALUED_PROCEDURE (NOTES_ENTRY_GET_CLASS, "NOTES$ENTRY_GET_CLASS",p= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),l+ (VALUE, REFERENCE, REFERENCE, REFERENCE));  v' procedure NOTES_ENTRY_GET_KEYWORD (y0 STATUS : out CONDVALU_TYPE; -- return value CXE_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;t$ OUT_ITEM_LIST : in ITEMLIST_TYPE); r9 pragma INTERFACE (EXTERNAL, NOTES_ENTRY_GET_KEYWORD);  W pragma IMPORT_VALUED_PROCEDURE (NOTES_ENTRY_GET_KEYWORD, "NOTES$ENTRY_GET_KEYWORD", = (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),t+ (VALUE, REFERENCE, REFERENCE, REFERENCE));d o" procedure NOTES_ENTRY_MODIFY (0 STATUS : out CONDVALU_TYPE; -- return value CXE_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE; $ OUT_ITEM_LIST : in ITEMLIST_TYPE); 4 pragma INTERFACE (EXTERNAL, NOTES_ENTRY_MODIFY); yM pragma IMPORT_VALUED_PROCEDURE (NOTES_ENTRY_MODIFY, "NOTES$ENTRY_MODIFY",o= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE), + (VALUE, REFERENCE, REFERENCE, REFERENCE));  " procedure NOTES_ENTRY_UPDATE (0 STATUS : out CONDVALU_TYPE; -- return value CXE_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;H$ OUT_ITEM_LIST : in ITEMLIST_TYPE); k4 pragma INTERFACE (EXTERNAL, NOTES_ENTRY_UPDATE); OM pragma IMPORT_VALUED_PROCEDURE (NOTES_ENTRY_UPDATE, "NOTES$ENTRY_UPDATE", = (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE), + (VALUE, REFERENCE, REFERENCE, REFERENCE));n n procedure NOTES_ENTRY_END (L0 STATUS : out CONDVALU_TYPE; -- return value# CXE_CONTEXT : in out CONTEXT_TYPE;O# INP_ITEM_LIST : in ITEMLIST_TYPE;O$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 1 pragma INTERFACE (EXTERNAL, NOTES_ENTRY_END);  OG pragma IMPORT_VALUED_PROCEDURE (NOTES_ENTRY_END, "NOTES$ENTRY_END",t= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE), + (VALUE, REFERENCE, REFERENCE, REFERENCE));  O# procedure NOTES_KEYWORD_BEGIN ( 0 STATUS : out CONDVALU_TYPE; -- return value# CXK_CONTEXT : in out CONTEXT_TYPE;1# INP_ITEM_LIST : in ITEMLIST_TYPE;s$ OUT_ITEM_LIST : in ITEMLIST_TYPE); E5 pragma INTERFACE (EXTERNAL, NOTES_KEYWORD_BEGIN);a :O pragma IMPORT_VALUED_PROCEDURE (NOTES_KEYWORD_BEGIN, "NOTES$KEYWORD_BEGIN",_= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),t+ (VALUE, REFERENCE, REFERENCE, REFERENCE));: 3! procedure NOTES_KEYWORD_ADD (t0 STATUS : out CONDVALU_TYPE; -- return value CXK_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;E$ OUT_ITEM_LIST : in ITEMLIST_TYPE); O3 pragma INTERFACE (EXTERNAL, NOTES_KEYWORD_ADD);O XK pragma IMPORT_VALUED_PROCEDURE (NOTES_KEYWORD_ADD, "NOTES$KEYWORD_ADD",_= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),:+ (VALUE, REFERENCE, REFERENCE, REFERENCE));  o$ procedure NOTES_KEYWORD_DELETE (0 STATUS : out CONDVALU_TYPE; -- return value CXK_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;O$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 6 pragma INTERFACE (EXTERNAL, NOTES_KEYWORD_DELETE); _Q pragma IMPORT_VALUED_PROCEDURE (NOTES_KEYWORD_DELETE, "NOTES$KEYWORD_DELETE",O= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE), + (VALUE, REFERENCE, REFERENCE, REFERENCE));A :! procedure NOTES_KEYWORD_GET (R0 STATUS : out CONDVALU_TYPE; -- return value CXK_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;t$ OUT_ITEM_LIST : in ITEMLIST_TYPE); N3 pragma INTERFACE (EXTERNAL, NOTES_KEYWORD_GET);A K pragma IMPORT_VALUED_PROCEDURE (NOTES_KEYWORD_GET, "NOTES$KEYWORD_GET",_= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),_+ (VALUE, REFERENCE, REFERENCE, REFERENCE));L R& procedure NOTES_KEYWORD_GET_NOTE (0 STATUS : out CONDVALU_TYPE; -- return value CXK_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;a$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 8 pragma INTERFACE (EXTERNAL, NOTES_KEYWORD_GET_NOTE); aU pragma IMPORT_VALUED_PROCEDURE (NOTES_KEYWORD_GET_NOTE, "NOTES$KEYWORD_GET_NOTE",E= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),n+ (VALUE, REFERENCE, REFERENCE, REFERENCE));: n$ procedure NOTES_KEYWORD_MODIFY (0 STATUS : out CONDVALU_TYPE; -- return value CXK_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;a$ OUT_ITEM_LIST : in ITEMLIST_TYPE); _6 pragma INTERFACE (EXTERNAL, NOTES_KEYWORD_MODIFY); nQ pragma IMPORT_VALUED_PROCEDURE (NOTES_KEYWORD_MODIFY, "NOTES$KEYWO\5$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.ADA;1[ls"+RD_MODIFY",L= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),a+ (VALUE, REFERENCE, REFERENCE, REFERENCE));  o! procedure NOTES_KEYWORD_END (N0 STATUS : out CONDVALU_TYPE; -- return value# CXK_CONTEXT : in out CONTEXT_TYPE; # INP_ITEM_LIST : in ITEMLIST_TYPE;=$ OUT_ITEM_LIST : in ITEMLIST_TYPE); t3 pragma INTERFACE (EXTERNAL, NOTES_KEYWORD_END);; K pragma IMPORT_VALUED_PROCEDURE (NOTES_KEYWORD_END, "NOTES$KEYWORD_END",o= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE));7 procedure NOTES_NOTE_BEGIN (0 STATUS : out CONDVALU_TYPE; -- return value# CXN_CONTEXT : in out CONTEXT_TYPE;E# INP_ITEM_LIST : in ITEMLIST_TYPE;E$ OUT_ITEM_LIST : in ITEMLIST_TYPE); _2 pragma INTERFACE (EXTERNAL, NOTES_NOTE_BEGIN); NI pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTE_BEGIN, "NOTES$NOTE_BEGIN",O= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE), + (VALUE, REFERENCE, REFERENCE, REFERENCE));s t procedure NOTES_NOTE_ADD (0 STATUS : out CONDVALU_TYPE; -- return value CXN_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 0 pragma INTERFACE (EXTERNAL, NOTES_NOTE_ADD); 9E pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTE_ADD, "NOTES$NOTE_ADD",I= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),V+ (VALUE, REFERENCE, REFERENCE, REFERENCE));E E# procedure NOTES_NOTE_ADD_TEXT (_0 STATUS : out CONDVALU_TYPE; -- return value CXN_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;G$ OUT_ITEM_LIST : in ITEMLIST_TYPE); _5 pragma INTERFACE (EXTERNAL, NOTES_NOTE_ADD_TEXT);I :O pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTE_ADD_TEXT, "NOTES$NOTE_ADD_TEXT",E= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),R+ (VALUE, REFERENCE, REFERENCE, REFERENCE));_ R! procedure NOTES_NOTE_DELETE ( 0 STATUS : out CONDVALU_TYPE; -- return value CXN_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;n$ OUT_ITEM_LIST : in ITEMLIST_TYPE); c3 pragma INTERFACE (EXTERNAL, NOTES_NOTE_DELETE);a :K pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTE_DELETE, "NOTES$NOTE_DELETE",:= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),:+ (VALUE, REFERENCE, REFERENCE, REFERENCE));a : procedure NOTES_NOTE_GET (0 STATUS : out CONDVALU_TYPE; -- return value CXN_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE; $ OUT_ITEM_LIST : in ITEMLIST_TYPE); t0 pragma INTERFACE (EXTERNAL, NOTES_NOTE_GET); E pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTE_GET, "NOTES$NOTE_GET",E= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),n+ (VALUE, REFERENCE, REFERENCE, REFERENCE));n n& procedure NOTES_NOTE_GET_KEYWORD (0 STATUS : out CONDVALU_TYPE; -- return value CXN_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;D$ OUT_ITEM_LIST : in ITEMLIST_TYPE); S8 pragma INTERFACE (EXTERNAL, NOTES_NOTE_GET_KEYWORD); aU pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTE_GET_KEYWORD, "NOTES$NOTE_GET_KEYWORD",t= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),+ (VALUE, REFERENCE, REFERENCE, REFERENCE));  E# procedure NOTES_NOTE_GET_TEXT ( 0 STATUS : out CONDVALU_TYPE; -- return value CXN_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;_$ OUT_ITEM_LIST : in ITEMLIST_TYPE); S5 pragma INTERFACE (EXTERNAL, NOTES_NOTE_GET_TEXT);E XO pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTE_GET_TEXT, "NOTES$NOTE_GET_TEXT",E= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),P+ (VALUE, REFERENCE, REFERENCE, REFERENCE));r d! procedure NOTES_NOTE_MODIFY ( 0 STATUS : out CONDVALU_TYPE; -- return value CXN_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;T$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 3 pragma INTERFACE (EXTERNAL, NOTES_NOTE_MODIFY); K pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTE_MODIFY, "NOTES$NOTE_MODIFY","= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),)+ (VALUE, REFERENCE, REFERENCE, REFERENCE));)  procedure NOTES_NOTE_END (0 STATUS : out CONDVALU_TYPE; -- return value# CXN_CONTEXT : in out CONTEXT_TYPE;E# INP_ITEM_LIST : in ITEMLIST_TYPE;S$ OUT_ITEM_LIST : in ITEMLIST_TYPE); Y0 pragma INTERFACE (EXTERNAL, NOTES_NOTE_END); IE pragma IMPORT_VALUED_PROCEDURE (NOTES_NOTE_END, "NOTES$NOTE_END",G= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),T+ (VALUE, REFERENCE, REFERENCE, REFERENCE));, F# procedure NOTES_PROFILE_BEGIN (0 STATUS : out CONDVALU_TYPE; -- return value# CXP_CONTEXT : in out CONTEXT_TYPE;e# INP_ITEM_LIST : in ITEMLIST_TYPE;I$ OUT_ITEM_LIST : in ITEMLIST_TYPE); I5 pragma INTERFACE (EXTERNAL, NOTES_PROFILE_BEGIN);E XO pragma IMPORT_VALUED_PROCEDURE (NOTES_PROFILE_BEGIN, "NOTES$PROFILE_BEGIN",O= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),E+ (VALUE, REFERENCE, REFERENCE, REFERENCE));A ,! procedure NOTES_PROFILE_GET (0 STATUS : out CONDVALU_TYPE; -- return value CXP_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE; $ OUT_ITEM_LIST : in ITEMLIST_TYPE); L3 pragma INTERFACE (EXTERNAL, NOTES_PROFILE_GET); K pragma IMPORT_VALUED_PROCEDURE (NOTES_PROFILE_GET, "NOTES$PROFILE_GET",R= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),L+ (VALUE, REFERENCE, REFERENCE, REFERENCE));I L$ procedure NOTES_PROFILE_MODIFY (0 STATUS : out CONDVALU_TYPE; -- return value CXP_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;v$ OUT_ITEM_LIST : in ITEMLIST_TYPE); I6 pragma INTERFACE (EXTERNAL, NOTES_PROFILE_MODIFY); EQ pragma IMPORT_VALUED_PROCEDURE (NOTES_PROFILE_MODIFY, "NOTES$PROFILE_MODIFY",r= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),I+ (VALUE, REFERENCE, REFERENCE, REFERENCE));E S! procedure NOTES_PROFILE_END (R0 STATUS : out CONDVALU_TYPE; -- return value# CXP_CONTEXT : in out CONTEXT_TYPE;o# INP_ITEM_LIST : in ITEMLIST_TYPE;$ OUT_ITEM_LIST : in ITEMLIST_TYPE); P3 pragma INTERFACE (EXTERNAL, NOTES_PROFILE_END);  EK pragma IMPORT_VALUED_PROCEDURE (NOTES_PROFILE_END, "NOTES$PROFILE_END", = (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),T+ (VALUE, REFERENCE, REFERENCE, REFERENCE));I L procedure NOTES_USER_BEGIN (0 STATUS : out CONDVALU_TYPE; -- return value# CXU_CONTEXT : in out CONTEXT_TYPE; # INP_ITEM_LIST : in ITEMLIST_TYPE;l$ OUT_ITEM_LIST : in ITEMLIST_TYPE); 2 pragma INTERFACE (EXTERNAL, NOTES_USER_BEGIN); iI pragma IMPORT_VALUED_PROCEDURE (NOTES_USER_BEGIN, "NOTES$USER_BEGIN",= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),O+ (VALUE, REFERENCE, REFERENCE, REFERENCE));T , procedure NOTES_USER_ADD (0 STATUS : out CONDVALU_TYPE; -- return value CXU_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE; $ OUT_ITEM_LIST : in ITEMLIST_TYPE); T0 pragma INTERFACE (EXTERNAL, NOTES_USER_ADD); _E pragma IMPORT_VALUED_PROCEDURE (NOTES_USER_ADD, "NOTES$USER_ADD",L= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),_+ (VALUE, REFERENCE, REFERENCE, REFERENCE));N T! procedure NOTES_USER_DELETE ()0 STATUS : out CONDVALU_TYPE; -- return value CXU_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE; $ OUT_ITEM_LIST : in ITEMLIST_TYPE); E3 pragma INTERFACE (EXTERNAL, NOTES_USER_DELETE);I _K pragma IMPORT_VALUED_PROCEDURE (NOTES_USER_DELETE, "NOTES$USER_DELETE",E= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),E+ (VALUE, REFERENCE, REFERENCE, REFERENCE));C E procedure NOTES_USER_GET (0 STATUS : out CONDVALU_TYPE; -- return value CXU_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;E$ OUT_ITEM_LIST : in ITEMLIST_TYPE); C0 pragma INTERFACE (EXTERNAL, NOTES_USER_GET); OE pragma IMPORT_VALUED_PROCEDURE (NOTES_USER_GET, "NOTES$USER_GET", = (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),E+ (VALUE, REFERENCE, REFERENCE, REFERENCE));T ,! procedure NOTES_USER_MODIFY (I0 STATUS : out CONDVALU_TYPE; -- return value CXU_CONTEXT : in CONTEXT_TYPE;# INP_ITEM_LIST : in ITEMLIST_TYPE;V$ OUT_ITEM_LIST : in ITEMLIST_TYPE); T3 pragma INTERFACE (EXTERNAL, NOTES_USER_MODIFY);Y K pragma IMPORT_VALUED_PROCEDURE (NOTES_USER_MODIFY, "NOTES$USER_MODIFY",O= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),(+ (VALUE, REFERENCE, REFERENCE, REFERENCE));"  procedure NOTES_USER_END (0J$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.ADA;1[l""< STATUS : out CONDVALU_TYPE; -- return value# CXU_CONTEXT : in out CONTEXT_TYPE;r# INP_ITEM_LIST : in ITEMLIST_TYPE; $ OUT_ITEM_LIST : in ITEMLIST_TYPE); 0 pragma INTERFACE (EXTERNAL, NOTES_USER_END); E pragma IMPORT_VALUED_PROCEDURE (NOTES_USER_END, "NOTES$USER_END",I= (CONDVALU_TYPE, CONTEXT_TYPE, ITEMLIST_TYPE, ITEMLIST_TYPE),_+ (VALUE, REFERENCE, REFERENCE, REFERENCE));C S D "-- module $NOTESMSGDEFE T' NOTES_FACILITY : constant := 1019;A) NOTES_NORMAL : constant := 66813961;, NOTES_CMDKEYENA : constant := 66813969;, NOTES_NUMKEYENA : constant := 66813977;. NOTES_PROFILE_MOD : constant := 66813985;/ NOTES_PROFILE_TEMP : constant := 66813993;S+ NOTES_MODERATE : constant := 66814001; - NOTES_NOMODERATE : constant := 66814009;D. NOTES_ENTRY_ADDED : constant := 66814017;1 NOTES_KEYWORD_ADDNOTE : constant := 66814025;M/ NOTES_MARKER_ADDED : constant := 66814033;R/ NOTES_MEMBER_ADDED : constant := 66814041;1 NOTES_KEYWORD_CREATED : constant := 66814049;C0 NOTES_ENTRY_DELETED : constant := 66814057;1 NOTES_KEYWORD_DELETED : constant := 66814065;S1 NOTES_KEYWORD_DELNOTE : constant := 66814073;_0 NOTES_MARKER_DELETED : constant := 66814081;/ NOTES_NOTE_DELETED : constant := 66814089;(0 NOTES_MEMBER_DELETED : constant := 66814097;0 NOTES_NOTE_MODIFIED : constant := 66814105;0 NOTES_ENTRY_MODIFIED : constant := 66814113;2 NOTES_KEYWORD_MODIFIED : constant := 66814121;1 NOTES_MEMBER_MODIFIED : constant := 66814129;E, NOTES_CLASS_SET : constant := 66814137;. NOTES_INSERT_MODE : constant := 66814145;1 NOTES_OVERSTRIKE_MODE : constant := 66814153;E0 NOTES_ENTRY_DELCLASS : constant := 66814161;0 NOTES_SPACE_COMPRESS : constant := 66814169;/ NOTES_ENTRY_ADDED2 : constant := 66814177;/ NOTES_OBJECT_ADDED : constant := 66814185;:0 NOTES_OBJECT_DELETED : constant := 66814193;1 NOTES_OBJECT_MODIFIED : constant := 66814201;S, NOTES_MORE_INFO : constant := 66818051;0 NOTES_SRV_NEWPROTUPD : constant := 66818059;0 NOTES_ENTRY_ABORTED : constant := 66818067;. NOTES_NOTES_WRFIL : constant := 66818075;. NOTES_NOTES_WRBUF : constant := 66818083;+ NOTES_DIRTOBUF : constant := 66818091;F, NOTES_DIRTOFILE : constant := 66818099;) NOTES_HIDDEN : constant := 66818107;u, NOTES_OPEN_CONF : constant := 66818115;. NOTES_UPDATE_CONF : constant := 66818123;, NOTES_MARKSUPER : constant := 66818131;- NOTES_OPEN_CONF2 : constant := 66818139;g0 NOTES_BEING_WRITTEN : constant := 66818147;, NOTES_USING_EDT : constant := 66818155;* NOTES_HELPBUF : constant := 66818163;* NOTES_HELPHDR : constant := 66818171;* NOTES_HELPNXT : constant := 66818179;+ NOTES_HELPASK1 : constant := 66818187;E+ NOTES_HELPASK2 : constant := 66818195;:* NOTES_HELPTOP : constant := 66818203;* NOTES_HELPBOT : constant := 66818211;* NOTES_ENTRYID : constant := 66818219;) NOTES_NOTEID : constant := 66818227;E) NOTES_TOPICS : constant := 66818235;A) NOTES_UNSEEN : constant := 66818243;I- NOTES_TOTALNOTES : constant := 66818251;R+ NOTES_DATELINE : constant := 66818259;E+ NOTES_ONECLASS : constant := 66818267; . NOTES_MANYCLASSES : constant := 66818275;* NOTES_TITLEID : constant := 66818283;+ NOTES_NOTICEID : constant := 66818291;a- NOTES_CONFCREUPD : constant := 66818299; + NOTES_MAILSUBJ : constant := 66818307;E) NOTES_FILEID : constant := 66818315;R. NOTES_MODERATORID : constant := 66818323;1 NOTES_OLD_ALREXISTS_A : constant := 66818331;,0 NOTES_OLD_INVACCNAM : constant := 66818339;- NOTES_LOCATIONID : constant := 66818347;n. NOTES_CONF_BANNER : constant := 66818355;. NOTES_READ_BANNER : constant := 66818363;/ NOTES_TOPIC_BANNER : constant := 66818371;X/ NOTES_REPLY_BANNER : constant := 66818379;R. NOTES_INFO_BANNER : constant := 66818387;. NOTES_CREATE_CONF : constant := 66818395;/ NOTES_UPDATE_ENTRY : constant := 66818403;E. NOTES_GETTING_DIR : constant := 66818411;/ NOTES_GETTING_NOTE : constant := 66818419; / NOTES_EXTRACT_NOTE : constant := 66818427;P- NOTES_PRINT_NOTE : constant := 66818435;I- NOTES_SEARCH_FOR : constant := 66818443;I. NOTES_SEARCH_NEXT : constant := 66818451;0 NOTES_DELETING_NOTE : constant := 66818459;+ NOTES_AUTHORID : constant := 66818467;C* NOTES_TOPICID : constant := 66818475;, NOTES_KEYWORDID : constant := 66818483;/ NOTES_CONFERENCEID : constant := 66818491;:+ NOTES_ATTRIBID : constant := 66818499;C. NOTES_WRITELOCKID : constant := 66818507;+ NOTES_HIDDENID : constant := 66818515;E/ NOTES_GRAPHIC_VIEW : constant := 66818523; / NOTES_UNKNOWN_VIEW : constant := 66818531;P. NOTES_DDIF_FORMAT : constant := 66818539;, NOTES_PS_FORMAT : constant := 66818547;, NOTES_USEFILEID : constant := 66818555;, NOTES_COPYRIGHT : constant := 66818563;0 NOTES_SRV_OLDPROTUPD : constant := 66822144;1 NOTES_NO_MORE_CLASSES : constant := 66822152;1 NOTES_NO_MORE_ENTRIES : constant := 66822160;T2 NOTES_NO_MORE_KEYWORDS : constant := 66822168;0 NOTES_NO_MORE_NOTES : constant := 66822176;/ NOTES_NO_MORE_TEXT : constant := 66822184;$0 NOTES_NO_MORE_USERS : constant := 66822192;- NOTES_NONOTEBOOK : constant := 66822200;N+ NOTES_NOERRTXT : constant := 66822208;r/ NOTES_NEEDNBMODIFY : constant := 66822216;Y* NOTES_MSGSEND : constant := 66822224;- NOTES_ENTERINTRO : constant := 66822232;E, NOTES_CTRLZMAIL : constant := 66822240;- NOTES_NOTREADING : constant := 66822248;D1 NOTES_NO_MORE_REPLIES : constant := 66822256;_- NOTES_ANSWER_YES : constant := 66822264;T+ NOTES_EOB_TEXT : constant := 66822272;P, NOTES_PRESS_PF2 : constant := 66822280;- NOTES_NOTES_HDR1 : constant := 66822288;0 NOTES_PRESS_CTRLZ_N : constant := 66822296;0 NOTES_SET_CONFERENCE : constant := 66822304;. NOTES_ENTER_TITLE : constant := 66822312;/ NOTES_PRESS_RETURN : constant := 66822320;O0 NOTES_PRESS_ANY_KEY : constant := 66822328;+ NOTES_DIR_HEAD : constant := 66822336;O. NOTES_ENDREQ_LIST : constant := 66822344;0 NOTES_NOTE_END_TEXT : constant := 66822352;, NOTES_TEXT_NOTE : constant := 66822360;- NOTES_TEXT_REPLY : constant := 66822368;E) NOTES_NO_NB : constant := 66822376;N* NOTES_YOUR_SP : constant := 66822384;0 NOTES_NOTE_COMPLETE : constant := 66822392;. NOTES_NOTE_NOTEXT : constant := 66822400;, NOTES_NOREPLIES : constant := 66822408;, NOTES_ONE_REPLY : constant := 66822416;/ NOTES_MANY_REPLIES : constant := 66822424;T) NOTES_N_OF_N : constant := 66822432;R/ NOTES_ENTER_CTITLE : constant := 66822440;E. NOTES_DELETE_NOTE : constant := 66822448;- NOTES_NOTENOTDEL : constant := 66822456;E/ NOTES_FINDING_HELP : constant := 66822464; , NOTES_NOKEYHELP : constant := 66822472;, NOTES_NOTESQADD : constant := 66822480;- NOTES_REALLYQUIT : constant := 66822488;O. NOTES_MAILNOTSENT : constant := 66822496;+ NOTES_NUMNOTES : constant := 66822504;n) NOTES_SENDTO : constant := 66822512;)* NOTES_SUBJECT : constant := 66822520;/ NOTES_PROFILE_USER : constant := 66822528;e, NOTES_MORE_TEXT : constant := 66822536;. NOTES_SHOW_MARK_1 : constant := 66822544;. NOTES_SHOW_MARK_2 : constant := 66822552;. NOTES_SHOW_MARK_3 : constant := 66822560;- NOTES_SHOW_ENTRY : constant := 66822568;T0 NOTES_SHOW_PROF_EDIT : constant := 66822576;2 NOTES_SHOW_PROF_DCLASS : constant := 66822584;1 NOTES_SHOW_PROF_PRINT : constant := 66822592;E0 NOTES_SHOW_PROF_NAME : constant := 66822600;0 NOTES_SHOW_PROF_AUTO : constant := 66822608;0 NOTES_SHOW_PROF_ADIR : constant := 66822616;0 NOTES_SHOW_PROF_AUNS : constant := 66822624;0 NOTES_SHOW_PROF_NONE : constant := 66822632;. NOTES_ENDREQ_SHOW : constant := 66822640;0 NOTES_CTRLZ_COM_RET : constant := 66822648;0 NOTES_SHOW_ENT_CONF : constant := 66822656;0 NOTES_SHOW_ENT_FILE : constant := 66822664;- NOTES_SHOW_CLASS : constant := 66822672;Y0 NOTES_SHOW_CONF_MOD : constant := 66822680;1 NOTES_SHOW_CONF_RESA1 : constant := 66822688;O1 NOTES_SHOW_CONF_RESA2 : constant := 66822696;I1 NOTES_SHOW_CONF_RESK1 : constant := 66822704;g1 NOTES_SHOW_CONF_RESK2 : constant := 66822712;S. NOTES_SHOW_KEYW_1 : constant := 66822720;. NOTES_SHOW_KEYW_2 : constant := 66822728;+ NOTES_SHOW_MOD : const$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.ADA;1[ln"Mtant := 66822736;r0 NOTES_SHOW_MOD_NODE : constant := 66822744;0 NOTES_SHOW_MOD_USER : constant := 66822752;0 NOTES_SHOW_USER_MADR : constant := 66822760;0 NOTES_SHOW_USER_PRIV : constant := 66822768;0 NOTES_SHOW_USER_JOIN : constant := 66822776;0 NOTES_SHOW_NOTE_HID : constant := 66822784;0 NOTES_SHOW_NOTE_VIS : constant := 66822792;0 NOTES_SHOW_NOTE_REP1 : constant := 66822800;0 NOTES_SHOW_NOTE_REP2 : constant := 66822808;0 NOTES_SHOW_PROF_PERM : constant := 66822816;0 NOTES_SHOW_USER_FULL : constant := 66822824;0 NOTES_SHOW_MODU_FULL : constant := 66822832;' NOTES_NMF : constant := 66822840;R' NOTES_NJU : constant := 66822848;:1 NOTES_NO_MORE_MARKERS : constant := 66822856;D+ NOTES_SEARCHF1 : constant := 66822864;P+ NOTES_SEARCHF2 : constant := 66822872;)+ NOTES_DIR_CONF : constant := 66822880;)0 NOTES_DIR_CONF_TITLE : constant := 66822888;+ NOTES_N_TOPICS : constant := 66822896;C/ NOTES_DIR_NB_CLASS : constant := 66822904;i/ NOTES_CTRLZ_CANCEL : constant := 66822912;_. NOTES_REPBUFINFO1 : constant := 66822920;. NOTES_REPBUFINFO2 : constant := 66822928;- NOTES_NMORELINES : constant := 66822936;". NOTES_READINGCONF : constant := 66822944;. NOTES_WILLNOTSEND : constant := 66822952;* NOTES_WORKING : constant := 66822960;- NOTES_FILECREUPD : constant := 66822968;e, NOTES_ENTERNOTE : constant := 66822976;) NOTES_ANDTO : constant := 66822984;I- NOTES_SENDANYWAY : constant := 66822992;I+ NOTES_SPAWNKEY : constant := 66823000; * NOTES_CALLKEY : constant := 66823008;* NOTES_EDICALL : constant := 66823016;+ NOTES_EDISPAWN : constant := 66823024;(. NOTES_SPELLSELECT : constant := 66823032;. NOTES_SPELLBUFFER : constant := 66823040;- NOTES_SPELLSTART : constant := 66823048;C, NOTES_SPELLDONE : constant := 66823056;/ NOTES_SENDING_MAIL : constant := 66823064;_+ NOTES_SENDBOTH : constant := 66823072;O+ NOTES_NONESENT : constant := 66823080;_. NOTES_SENT_TO_ALL : constant := 66823088;1 NOTES_SHOW_CONF_RESW1 : constant := 66823096;,1 NOTES_SHOW_CONF_RESW2 : constant := 66823104;E- NOTES_TEXT_TOPIC : constant := 66823112;O- NOTES_MEMBERS_OF : constant := 66823120;Y. NOTES_DEF_SUBJECT : constant := 66823128;/ NOTES_MAIL_SUBJECT : constant := 66823136;O. NOTES_TEXT_APPEND : constant := 66823144;0 NOTES_NEVER_ACCESSED : constant := 66823152;* NOTES_EXPIRED : constant := 66823160;, NOTES_ANSWER_NO : constant := 66823168;, NOTES_WRONG_ANS : constant := 66823176;, NOTES_CREATEBUF : constant := 66823184;+ NOTES_WRITEBUF : constant := 66823192;F0 NOTES_SHOW_PROF_DEF : constant := 66823200;, NOTES_ASK_YESNO : constant := 66823208;+ NOTES_MODPRIVS : constant := 66823216;T/ NOTES_SHOW_ENT_OBJ : constant := 66823224;(, NOTES_CANCELLED : constant := 66823232;0 NOTES_SHOW_CONF_RESR : constant := 66823240;& NOTES_CC : constant := 66823248;0 NOTES_MODERATORS_OF : constant := 66823256;. NOTES_ALREXISTS_A : constant := 66823264;, NOTES_INVACCNAM : constant := 66823272;, NOTES_ILLCTXADR : constant := 66830338;+ NOTES_WRONGCTX : constant := 66830346;E, NOTES_INVITMCOD : constant := 66830355;, NOTES_INVITMLEN : constant := 66830362;, NOTES_MISREQITM : constant := 66830370;, NOTES_NOCURNOTE : constant := 66830378;/ NOTES_CANTCONTINUE : constant := 66830386;I, NOTES_FAILGETVM : constant := 66830394;- NOTES_STRCOPYERR : constant := 66830402;I, NOTES_ILLNOTEID : constant := 66830410;- NOTES_NOSUCHNOTE : constant := 66830418;- NOTES_SRV_NOINIT : constant := 66830426;_- NOTES_SRV_INVSEQ : constant := 66830434;R0 NOTES_SRV_NOCONTEXT : constant := 66830442;0 NOTES_SRV_NOUSERNAME : constant := 66830450;. NOTES_SRV_INVITEM : constant := 66830458;, NOTES_CREPRIJOB : constant := 66830466;* NOTES_PREMEOF : constant := 66830474;. NOTES_NOPRIVDEL_N : constant := 66830482;0 NOTES_NOPRIVWRITE_N : constant := 66830490;0 NOTES_SRV_UNRECPROT : constant := 66830498;- NOTES_NOFILEOPEN : constant := 66830506;;0 NOTES_ALREXISTS_OLD : constant := 66830514;. NOTES_NOSUCHENTRY : constant := 66830522;, NOTES_MUST_OPEN : constant := 66830530;1 NOTES_MUST_READ_REPLY : constant := 66830538;T3 NOTES_MUST_READ_FORWARD : constant := 66830546;I3 NOTES_NOT_ENTERING_NOTE : constant := 66830554;:2 NOTES_NONOTE_SPECIFIED : constant := 66830562;0 NOTES_ERROR_MAILING : constant := 66830570;1 NOTES_NOPREVIOUS_NOTE : constant := 66830578;3 NOTES_ALREADY_IN_EDITOR : constant := 66830586;;2 NOTES_ALREADY_IN_NOTES : constant := 66830594;7 NOTES_MUST_COMPLETE_MESSAGE : constant := 66830602;N0 NOTES_UNREC_CALLUSER : constant := 66830610;0 NOTES_NO_SUCH_CLASS : constant := 66830618;0 NOTES_NO_SUCH_ENTRY : constant := 66830626;1 NOTES_NO_SUCH_KEYWORD : constant := 66830634; / NOTES_NO_SUCH_NOTE : constant := 66830642;E / NOTES_NO_SUCH_USER : constant := 66830650;g0 NOTES_NOMORE_RECALL : constant := 66830658;/ NOTES_EDIT_OR_FILE : constant := 66830666;_) NOTES_NOMAIL : constant := 66830674;,- NOTES_ERRORWRITE : constant := 66830682;- NOTES_NOMAILPROC : constant := 66830690;L' NOTES_IFF : constant := 66830698;U) NOTES_NOPRIV : constant := 66830706;/ NOTES_CTRLC_CANCEL : constant := 66830714;I, NOTES_ERRCREKEY : constant := 66830722;- NOTES_ERRADDMARK : constant := 66830730;E, NOTES_ERRADDMEM : constant := 66830738;, NOTES_ERRADDENT : constant := 66830746;, NOTES_ERRDELENT : constant := 66830754;- NOTES_ERRDELMARK : constant := 66830762;N/ NOTES_ERRDELMEMBER : constant := 66830770;O- NOTES_ERRMODNOTE : constant := 66830778; . NOTES_ERRMODENTRY : constant := 66830786;0 NOTES_ERRMODKEYWORD : constant := 66830794;- NOTES_ERRACCLIST : constant := 66830802;T* NOTES_NOWRITE : constant := 66830810;/ NOTES_NOSUCHMARKER : constant := 66830818;N. NOTES_NOPRIVMOD_N : constant := 66830826;. NOTES_ALREXISTS_C : constant := 66830834;. NOTES_ALREXISTS_E : constant := 66830842;. NOTES_ALREXISTS_K : constant := 66830850;. NOTES_ALREXISTS_U : constant := 66830858;. NOTES_ALREXISTS_M : constant := 66830866;0 NOTES_NO_SUCH_MARKER : constant := 66830874;, NOTES_NOMEMBERS : constant := 66830882;, NOTES_NOTMEMBER : constant := 66830890;0 NOTES_BASEWRITELOCK : constant := 66830898;/ NOTES_NOWRITE_CONF : constant := 66830906;E- NOTES_SPELLERROR : constant := 66830914;, NOTES_PNINVCHAR : constant := 66830922;, NOTES_SENDNOAUT : constant := 66830930;/ NOTES_INVCLASSNAME : constant := 66830938;I0 NOTES_CLASSNOTFOUND : constant := 66830946;+ NOTES_FORWLOOP : constant := 66830954;_/ NOTES_BAD_DIR_LINE : constant := 66830962;E, NOTES_NO_SELECT : constant := 66830970;. NOTES_NOTE_NOCONF : constant := 66830978;/ NOTES_UNREC_EDITOR : constant := 66830986;), NOTES_NO_CLASSP : constant := 66830994;, NOTES_NMTHISDIR : constant := 66831002;. NOTES_NO_NEW_NOTE : constant := 66831010;0 NOTES_CAPTIVE_SPAWN : constant := 66831018;0 NOTES_NOTHING_TO_SET : constant := 66831026;- NOTES_NOHELPTERM : constant := 66831034;U, NOTES_INVENTNAM : constant := 66831042;, NOTES_INVCLANAM : constant := 66831050;/ NOTES_INVENTRYNAME : constant := 66831058;E3 NOTES_NO_ENTRY_IN_CLASS : constant := 66831066;E4 NOTES_ALREXISTS_IN_CLASS : constant := 66831074;, NOTES_NOMARKERS : constant := 66831082;- NOTES_NOKEYWORDS : constant := 66831090;:, NOTES_NOLICENSE : constant := 66831098;) NOTES_NOFILE : constant := 66831106;a) NOTES_NOEDT : constant := 66831114;N* NOTES_NOENTRY : constant := 66831122;) NOTES_NOEVE : constant := 66831130;U+ NOTES_TPUERROR : constant := 66831138;D3 NOTES_ENTALR_IN_CLASSES : constant := 66831146;Y0 NOTES_NO_RANGE_ALLOW : constant := 66831154;+ NOTES_NOTINCMD : constant := 66831162;t1 NOTES_CONF_REPLY_ONLY : constant := 66831170;=, NOTES_USRNOTADD : constant := 66831178;, NOTES_INVKEYNAM : constant := 66831186;0 NOTES_INVKEYWORDNAME : constant := 66831194;, NOTES_INVMRKNAM : constant := 66831202;0 NOTES_INVMARKERNAME : constant := 66831210;, NOTES_INVUSRNAM : constant := 66831218;. NOTES_INVUSERNAME : constant := 66831226;. NOTES_INVNOTESPEC : constant := 66831234;1 NOTES_RANGE_ONE_TOPIC : co^$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.ADA;1[l^nstant := 66831242; 0 NOTES_RANGE_TOO_BIG : constant := 66831250;+ NOTES_NO_TOPIC : constant := 66831258;E. NOTES_ALREXISTS_N : constant := 66831266;- NOTES_NONOTESMOD : constant := 66831274;K1 NOTES_MEMBERNAME_NODE : constant := 66831282;D+ NOTES_CONFQUAL : constant := 66831290;E/ NOTES_OPRNOTSUPCNF : constant := 66831298;O* NOTES_BADTIME : constant := 66831306;- NOTES_INVOBJNAME : constant := 66831314; 0 NOTES_INVOBJECTNAME : constant := 66831322;+ NOTES_NOATTRIB : constant := 66831330;9+ NOTES_NOOBJECT : constant := 66831338;3, NOTES_NOSUCHOBJ : constant := 66831346;+ NOTES_LWKERROR : constant := 66831354; 0 NOTES_NOLINKLICENSE : constant := 66831362;, NOTES_NOTNETWRK : constant := 66842628;- NOTES_WRONG_ACCT : constant := 66842636;a/ NOTES_SRV_INIT_ERR : constant := 66842644;a, NOTES_WRONG_LMF : constant := 66842652; t -- module SERVERDEF B( NOTES_K_INITIALIZE : constant := 1;" NOTES_K_MORE : constant := 2;+ NOTES_K_NOTEFILE_BEGIN : constant := 3;=) NOTES_K_NOTEFILE_END : constant := 4;t. NOTES_K_NOTEFILE_GET_INFO : constant := 5;, NOTES_K_NOTEFILE_MODIFY : constant := 6;0 NOTES_K_NOTEFILE_LIST_BEGIN : constant := 7;* NOTES_K_NOTEFILE_LIST : constant := 8;* NOTES_K_KEYWORD_BEGIN : constant := 9;* NOTES_K_KEYWORD_END : constant := 10;* NOTES_K_KEYWORD_ADD : constant := 11;, NOTES_K_KEYWORD_DELETE : constant := 12;* NOTES_K_KEYWORD_GET : constant := 13;. NOTES_K_KEYWORD_GET_NOTE : constant := 14;, NOTES_K_KEYWORD_MODIFY : constant := 15;) NOTES_K_NOTE_BEGIN : constant := 16;P' NOTES_K_NOTE_END : constant := 17;E' NOTES_K_NOTE_ADD : constant := 18;_+ NOTES_K_NOTE_ADD_TEXT : constant := 19;E* NOTES_K_NOTE_DELETE : constant := 20;' NOTES_K_NOTE_GET : constant := 21;O. NOTES_K_NOTE_GET_KEYWORD : constant := 22;+ NOTES_K_NOTE_GET_TEXT : constant := 23;N* NOTES_K_NOTE_MODIFY : constant := 24;) NOTES_K_USER_BEGIN : constant := 25;O' NOTES_K_USER_END : constant := 26;_' NOTES_K_USER_ADD : constant := 27;E* NOTES_K_USER_DELETE : constant := 28;' NOTES_K_USER_GET : constant := 29;* NOTES_K_USER_MODIFY : constant := 30;( NOTES_K_CLASS_ADD : constant := 31;* NOTES_K_CLASS_BEGIN : constant := 32;* NOTES_K_CLASS_DELETE : constant := 33;( NOTES_K_CLASS_END : constant := 34;( NOTES_K_CLASS_GET : constant := 35;- NOTES_K_CLASS_GET_ENTRY : constant := 36;t* NOTES_K_CLASS_MODIFY : constant := 37;( NOTES_K_ENTRY_ADD : constant := 38;* NOTES_K_ENTRY_BEGIN : constant := 39;* NOTES_K_ENTRY_DELETE : constant := 40;( NOTES_K_ENTRY_END : constant := 41;( NOTES_K_ENTRY_GET : constant := 42;- NOTES_K_ENTRY_GET_CLASS : constant := 43;6/ NOTES_K_ENTRY_GET_KEYWORD : constant := 44;1* NOTES_K_ENTRY_MODIFY : constant := 45;+ NOTES_K_PROFILE_BEGIN : constant := 46;=* NOTES_K_PROFILE_END : constant := 47;* NOTES_K_PROFILE_GET : constant := 48;, NOTES_K_PROFILE_MODIFY : constant := 49;& NOTES_K_STATUS : constant := 129;. NOTES_K_REQUEST_CONTEXT : constant := 130;) NOTES_K_ERROR_TLV : constant := 131;E+ NOTES_K_ERROR_NARGS : constant := 132;O) NOTES_K_ERROR_ARG : constant := 133; * NOTES_K_ERROR_TEXT : constant := 134;- NOTES_K_CANCEL_REQUEST : constant := 135;50 NOTES_K_REQUEST_CANCELLED : constant := 136;, NOTES_K_INIT_VERSION : constant := 8193;- NOTES_K_INIT_NODENAME : constant := 8194; - NOTES_K_INIT_USERNAME : constant := 8195; 1 NOTES_K_INIT_CAPABILITIES : constant := 8196;E0 NOTES_K_INIT_MAXITEMCODE : constant := 8197;4 NOTES_M_INIT_VMSMSGS : constant := 16#00000001#; W# type NOTES_CAPABILITIES_TYPE is_ recordI INIT_VMSMSGS : BOOLEAN; FILLER_1 : UNSIGNED_31; end record; % for NOTES_CAPABILITIES_TYPE use 8 record% INIT_VMSMSGS at 0 range 0 .. 0;;" FILLER_1 at 0 range 1 .. 31; end record; - for NOTES_CAPABILITIES_TYPE'SIZE use 32;  OG NOTES_CAPABILITIES_TYPE_INIT : constant NOTES_CAPABILITIES_TYPE :=  (INIT_VMSMSGS => FALSE, FILLER_1 => 0); n# type NOTES_CAPABILITIES_TYPE is_ recordc, CAPABILITIES : NOTES_CAPABILITIES_TYPE; end record; 2% for NOTES_CAPABILITIES_TYPE use t record& CAPABILITIES at 0 range 0 .. 31; end record;- for NOTES_CAPABILITIES_TYPE'SIZE use 32;  OG NOTES_CAPABILITIES_TYPE_INIT : constant NOTES_CAPABILITIES_TYPE :=  (1 CAPABILITIES => NOTES_CAPABILITIES_TYPE_INITE );E T- NOTES_K_PROTOCOL_VERSION : constant := 2;R, NOTES_K_PROTOCOL_UPDATE : constant := 6; R" procedure NOTES_SERVER_BEGIN (1 STATUS : out CONDVALU_TYPE); -- return value  E4 pragma INTERFACE (EXTERNAL, NOTES_SERVER_BEGIN); M pragma IMPORT_VALUED_PROCEDURE (NOTES_SERVER_BEGIN, "NOTES$SERVER_BEGIN",O (CONDVALU_TYPE),: (VALUE)); 8end NOTES_ITEMDEF;"*[NOTES.TEMPKIT]NOTES$ITEMDEF.BAS;1+,f.l/J 4~l]6- 0123KPWO^56aģ7+lģ89GJHJ  !N !****************************************************************************N !* *N !* Copyright (c) 2004 *N !* by DIGITAL Equipment Corporation, Maynard, Mass. *N !* All rights reserved. *N !* *N !* This software is furnished under a license and may be used and copied *N !* only in accordance with the terms of such license and with the *N !* inclusion of the above copyright notice. This software or any other *N !* copies thereof may not be provided or otherwise made available to any *N !* other person. No title to and ownership of the software is hereby *N !* transferred. *N !* *N !* The information in this software is subject to change without notice *N !* and should not be construed as a commitment by DIGITAL Equipment *N !* Corporation. *N !* *N !* DIGITAL assumes no responsibility for the use or reliability of its *N !* software on equipment which is not supplied by DIGITAL. *N !* *N !**************************************************************************** ! *** PREDECLARED TYPES 7 %IF %DECLARED(%BASIC$QUADWORD_DECLARED) = 0 %THEN RECORD BASIC$QUADWORD LONG FILL(2) END RECORD* %LET %BASIC$QUADWORD_DECLARED = 1 %END %IF 7 %IF %DECLARED(%BASIC$OCTAWORD_DECLARED) = 0 %THEN RECORD BASIC$OCTAWORD LONG FILL(4) END RECORD* %LET %BASIC$OCTAWORD_DECLARED = 1 %END %IF 9 %IF %DECLARED(%BASIC$HFLOAT_AXP_DECLARED) = 0 %THEN RECORD BASIC$HFLOAT_AXP LONG FILL(4) END RECORD, %LET %BASIC$HFLOAT_AXP_DECLARED = 1 %END %IF = %IF %DECLARED(%BASIC$F_FLOATING_COMPLEX_DECL) = 0 %THEN( RECORD BASIC$F_FLOATING_COMPLEX SINGLE REAL_PART! SINGLE IMAGINARY_PART END RECORD0 %LET %BASIC$F_FLOATING_COMPLEX_DECL = 1 %END %IF = %IF %DECLARED(%BASIC$D_FLOATING_COMPLEX_DECL) = 0 %THEN( RECORD BASIC$D_FLOATING_COMPLEX DOUBLE REAL_PART! DOUBLE IMAGINARY_PART END RECORD0 %LET %BASIC$D_FLOATING_COMPLEX_DECL = 1 %END %IF = %IF %DECLARED(%BASIC$G_FLOATING_COMPLEX_DECL) = 0 %THEN( RECORD BASIC$G_FLOATING_COMPLEX GFLOAT REAL_PART! GFLOAT IMAGINARY_PART END Re\$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.BAS;1~ld"ECORD0 %LET %BASIC$G_FLOATING_COMPLEX_DECL = 1 %END %IF ; %IF %DECLARED(%BASIC$H_FLOAT_AXP_CMPLX_DCL) = 0 %THEN, RECORD BASIC$H_FLOATING_COMPLEX_AXP& BASIC$HFLOAT_AXP REAL_PART+ BASIC$HFLOAT_AXP IMAGINARY_PART END RECORD. %LET %BASIC$H_FLOAT_AXP_CMPLX_DCL = 1 %END %IF   !*** MODULE NOTEITEMS ***  0 DECLARE LONG CONSTANT NOTES$K_MIN_ITEM = 10 DECLARE LONG CONSTANT NOTES$K_NOSIGNAL = 13 DECLARE LONG CONSTANT NOTES$K_TEXT_STRING = 20 DECLARE LONG CONSTANT NOTES$K_TEXT_END = 31 DECLARE LONG CONSTANT NOTES$K_TEXT_TYPE = 4: DECLARE LONG CONSTANT NOTES$K_NOTE_ALL_RESPONSES = 53 DECLARE LONG CONSTANT NOTES$K_NOTE_AUTHOR = 66 DECLARE LONG CONSTANT NOTES$K_NOTE_BACK_NOTE = 7: DECLARE LONG CONSTANT NOTES$K_NOTE_BACK_RESPONSE = 88 DECLARE LONG CONSTANT NOTES$K_NOTE_BEFORE_TIME = 96 DECLARE LONG CONSTANT NOTES$K_NOTE_BLINK_ID = 107 DECLARE LONG CONSTANT NOTES$K_NOTE_BLINK_UID = 119 DECLARE LONG CONSTANT NOTES$K_NOTE_CREATE_TIME = 124 DECLARE LONG CONSTANT NOTES$K_NOTE_HIDDEN = 130 DECLARE LONG CONSTANT NOTES$K_NOTE_ID = 147 DECLARE LONG CONSTANT NOTES$K_NOTE_NEXT_NOTE = 15; DECLARE LONG CONSTANT NOTES$K_NOTE_NEXT_RESPONSE = 168 DECLARE LONG CONSTANT NOTES$K_NOTE_NUMRECORDS = 17: DECLARE LONG CONSTANT NOTES$K_NOTE_NUMRESPONSES = 186 DECLARE LONG CONSTANT NOTES$K_NOTE_PEN_NAME = 19; DECLARE LONG CONSTANT NOTES$K_NOTE_SEARCH_STRING = 20: DECLARE LONG CONSTANT NOTES$K_NOTE_SEARCH_TITLE = 218 DECLARE LONG CONSTANT NOTES$K_NOTE_SINCE_TIME = 223 DECLARE LONG CONSTANT NOTES$K_NOTE_TITLE = 231 DECLARE LONG CONSTANT NOTES$K_NOTE_UID = 244 DECLARE LONG CONSTANT NOTES$K_NOTE_UNSEEN = 257 DECLARE LONG CONSTANT NOTES$K_NOTE_USER_AREA = 267 DECLARE LONG CONSTANT NOTES$K_NOTE_WRITELOCK = 279 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_CONTEXT = 286 DECLARE LONG CONSTANT NOTES$K_CLASS_CONTEXT = 296 DECLARE LONG CONSTANT NOTES$K_ENTRY_CONTEXT = 308 DECLARE LONG CONSTANT NOTES$K_KEYWORD_CONTEXT = 315 DECLARE LONG CONSTANT NOTES$K_NOTE_CONTEXT = 328 DECLARE LONG CONSTANT NOTES$K_PROFILE_CONTEXT = 337 DECLARE LONG CONSTANT NOTES$K_SERVER_CONTEXT = 345 DECLARE LONG CONSTANT NOTES$K_USER_CONTEXT = 353 DECLARE LONG CONSTANT NOTES$K_CLASS_NAME = 367 DECLARE LONG CONSTANT NOTES$K_CLASS_NEW_NAME = 371 DECLARE LONG CONSTANT NOTES$K_CONTINUE = 383 DECLARE LONG CONSTANT NOTES$K_ENTRY_NAME = 397 DECLARE LONG CONSTANT NOTES$K_ENTRY_NEW_NAME = 408 DECLARE LONG CONSTANT NOTES$K_ENTRY_USER_AREA = 41- DECLARE LONG CONSTANT NOTES$K_HINT = 425 DECLARE LONG CONSTANT NOTES$K_KEYWORD_NAME = 439 DECLARE LONG CONSTANT NOTES$K_KEYWORD_NEW_NAME = 448 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_CREATE = 45= DECLARE LONG CONSTANT NOTES$K_NOTEFILE_CREATE_TIME = 46> DECLARE LONG CONSTANT NOTES$K_NOTEFILE_DEFAULT_NAME = 47< DECLARE LONG CONSTANT NOTES$K_NOTEFILE_ENTRYTOTAL = 48; DECLARE LONG CONSTANT NOTES$K_NOTEFILE_FILE_NAME = 498 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_FORMAT = 50: DECLARE LONG CONSTANT NOTES$K_NOTEFILE_HIGH_UID = 519 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_LASTREV = 52: DECLARE LONG CONSTANT NOTES$K_NOTEFILE_MODERATE = 53; DECLARE LONG CONSTANT NOTES$K_NOTEFILE_MODERATOR = 548 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_NOTICE = 55: DECLARE LONG CONSTANT NOTES$K_NOTEFILE_NUMNOTES = 56> DECLARE LONG CONSTANT NOTES$K_NOTEFILE_RELATED_NAME = 57< DECLARE LONG CONSTANT NOTES$K_NOTEFILE_RESTRICTED = 58= DECLARE LONG CONSTANT NOTES$K_NOTEFILE_RESULT_SPEC = 597 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_TITLE = 60; DECLARE LONG CONSTANT NOTES$K_NOTEFILE_TRANSPORT = 61; DECLARE LONG CONSTANT NOTES$K_NOTEFILE_USER_AREA = 629 DECLARE LONG CONSTANT NOTES$K_PROFILE_AUTO_DIR = 63< DECLARE LONG CONSTANT NOTES$K_PROFILE_AUTO_UNSEEN = 64; DECLARE LONG CONSTANT NOTES$K_PROFILE_CLASS_NAME = 657 DECLARE LONG CONSTANT NOTES$K_PROFILE_EDITOR = 66= DECLARE LONG CONSTANT NOTES$K_PROFILE_EDITOR_SPAWN = 679 DECLARE LONG CONSTANT NOTES$K_PROFILE_PEN_NAME = 686 DECLARE LONG CONSTANT NOTES$K_PROFILE_PRINT = 69: DECLARE LONG CONSTANT NOTES$K_PROFILE_TEMPORARY = 701 DECLARE LONG CONSTANT NOTES$K_SEEN_MAP = 71< DECLARE LONG CONSTANT NOTES$K_USER_CREATE_KEYWORD = 727 DECLARE LONG CONSTANT NOTES$K_USER_MAIL_ADDR = 736 DECLARE LONG CONSTANT NOTES$K_USER_MODERATE = 742 DECLARE LONG CONSTANT NOTES$K_USER_NAME = 756 DECLARE LONG CONSTANT NOTES$K_USER_NEW_NAME = 76: DECLARE LONG CONSTANT NOTES$K_USER_NEW_NODENAME = 776 DECLARE LONG CONSTANT NOTES$K_USER_NODENAME = 789 DECLARE LONG CONSTANT NOTES$K_NOTE_BLINK_TITLE = 797 DECLARE LONG CONSTANT NOTES$K_NOTE_MARK_SEEN = 809 DECLARE LONG CONSTANT NOTES$K_NOTE_NEXT_UNSEEN = 81; DECLARE LONG CONSTANT NOTES$K_NOTE_HINT_GET_TEXT = 827 DECLARE LONG CONSTANT NOTES$K_NOTE_X_KEYWORD = 837 DECLARE LONG CONSTANT NOTES$K_KEYWORD_X_NOTE = 846 DECLARE LONG CONSTANT NOTES$K_CLASS_X_ENTRY = 856 DECLARE LONG CONSTANT NOTES$K_ENTRY_X_CLASS = 868 DECLARE LONG CONSTANT NOTES$K_ENTRY_X_KEYWORD = 87/ DECLARE LONG CONSTANT NOTES$K_DELIF0 = 881 DECLARE LONG CONSTANT NOTES$K_UNIENTRY = 899 DECLARE LONG CONSTANT NOTES$K_ENTRY_UNSEEN_EST = 90: DECLARE LONG CONSTANT NOTES$K_ENTRY_LAST_STATUS = 917 DECLARE LONG CONSTANT NOTES$K_NOTE_CAN_REPLY = 92; DECLARE LONG CONSTANT NOTES$K_NOTE_BEFORE_TIME_A = 93; DECLARE LONG CONSTANT NOTES$K_NOTE_CREATE_TIME_A = 94: DECLARE LONG CONSTANT NOTES$K_NOTE_SINCE_TIME_A = 95? DECLARE LONG CONSTANT NOTES$K_NOTEFILE_CREATE_TIME_A = 96; DECLARE LONG CONSTANT NOTES$K_NOTEFILE_LASTREV_A = 97> DECLARE LONG CONSTANT NOTES$K_NOTE_HINT_GET_KEYWORD = 98> DECLARE LONG CONSTANT NOTES$K_KEYWORD_HINT_GET_NOTE = 999 DECLARE LONG CONSTANT NOTES$K_SERVER_MAX_ITEM = 100> DECLARE LONG CONSTANT NOTES$K_CLASS_HINT_GET_ENTRY = 1019 DECLARE LONG CONSTANT NOTES$K_CLASS_USER_AREA = 1023 DECLARE LONG CONSTANT NOTES$K_CLASS_UID = 103> DECLARE LONG CONSTANT NOTES$K_ENTRY_HINT_GET_CLASS = 104@ DECLARE LONG CONSTANT NOTES$K_ENTRY_HINT_GET_KEYWORD = 105; DECLARE LONG CONSTANT NOTES$K_ENTRY_OBJECT_NAME = 106; DECLARE LONG CONSTANT NOTES$K_ENTRY_OBJECT_SPEC = 1073 DECLARE LONG CONSTANT NOTES$K_ENTRY_UID = 108; DECLARE LONG CONSTANT NOTES$K_KEYWORD_USER_AREA = 1095 DECLARE LONG CONSTANT NOTES$K_KEYWORD_UID = 1103 DECLARE LONG CONSTANT NOTES$K_NODE_NAME = 1119 DECLARE LONG CONSTANT NOTES$K_NODE_X_USERNAME = 1125 DECLARE LONG CONSTANT NOTES$K_NOTE_NEW_ID = 1133 DECLARE LONG CONSTANT NOTES$K_NOTE_TYPE = 114= DECLARE LONG CONSTANT NOTES$K_NOTEFILE_REPLY_ONLY = 115; DECLARE LONG CONSTANT NOTES$K_PROFILE_USER_AREA = 116: DECLARE LONG CONSTANT NOTES$K_USER_ACCESS_LIST = 117; DECLARE LONG CONSTANT NOTES$K_USER_WRITE_BYPASS = 1188 DECLARE LONG CONSTANT NOTES$K_USER_USER_AREA = 1192 DECLARE LONG CONSTANT NOTES$K_USER_UID = 1207 DECLARE LONG CONSTANT NOTES$K_USER_NOACCESS = 1212 DECLARE LONG CONSTANT NOTES$K_MAX_ITEM = 122; DECLARE LONG CONSTANT NOTES$K_NOTEFILE_WRITELOCK = 27: DECLARE LONG CONSTANT NOTES$K_USER_ACCESS_NODE = 1115 DECLARE LONG CONSTANT NOTES$K_USER_ACCESS = 1171 DECLARE LONG CONSTANT NOTES$K_BASE_NOTE = 12 DECLARE LONG CONSTANT NOTES$K_REPLY_NOTE = 24 DECLARE LONG CONSTANT NOTES$K_UNKNOWN_TYPE = 01 DECLARE LONG CONSTANT NOTES$K_DDIF_TYPE = 12 DECLARE LONG CONSTANT NOTES$K_ASCII_TYPE = 25 DECLARE LONG CONSTANT NOTES$K_RESERVED_TYPE = 35 DECLARE LONG CONSTANT NOTES$K_WPS_PLUS_TYPE = 44 DECLARE LONG CONSTANT NOTES$K_TLV_INPUT = 40975 DECLARE LONG CONSTANT NOTES$K_TLV_OUTPUT = 40981 DECLARE LONG CONSTANT NOTES$K_CHAIN = 655350 DECLARE LONG CONSTANT NOTES$K_NOOP = 65534+ EXTERNAL LONG FUNCTION NOTES$NOTES & ( &- OPTIONAL STRING BY DESC, &# LONG BY VALUE & )4 EXTERNAL LONG FUNCTION NOTES$NOTEFILE_BEGIN & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & U$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.BAS;1~lh" )7 EXTERNAL LONG FUNCTION NOTES$NOTEFILE_GET_INFO & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )5 EXTERNAL LONG FUNCTION NOTES$NOTEFILE_MODIFY & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )9 EXTERNAL LONG FUNCTION NOTES$NOTEFILE_LIST_BEGIN & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )3 EXTERNAL LONG FUNCTION NOTES$NOTEFILE_LIST & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )2 EXTERNAL LONG FUNCTION NOTES$NOTEFILE_END & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$CLASS_BEGIN & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )/ EXTERNAL LONG FUNCTION NOTES$CLASS_ADD & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )2 EXTERNAL LONG FUNCTION NOTES$CLASS_DELETE & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )/ EXTERNAL LONG FUNCTION NOTES$CLASS_GET & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )5 EXTERNAL LONG FUNCTION NOTES$CLASS_GET_ENTRY & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )2 EXTERNAL LONG FUNCTION NOTES$CLASS_MODIFY & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )/ EXTERNAL LONG FUNCTION NOTES$CLASS_END & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$ENTRY_BEGIN & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )/ EXTERNAL LONG FUNCTION NOTES$ENTRY_ADD & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )2 EXTERNAL LONG FUNCTION NOTES$ENTRY_DELETE & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )/ EXTERNAL LONG FUNCTION NOTES$ENTRY_GET & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )5 EXTERNAL LONG FUNCTION NOTES$ENTRY_GET_CLASS & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )7 EXTERNAL LONG FUNCTION NOTES$ENTRY_GET_KEYWORD & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )2 EXTERNAL LONG FUNCTION NOTES$ENTRY_MODIFY & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )2 EXTERNAL LONG FUNCTION NOTES$ENTRY_UPDATE & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )/ EXTERNAL LONG FUNCTION NOTES$ENTRY_END & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )3 EXTERNAL LONG FUNCTION NOTES$KEYWORD_BEGIN & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$KEYWORD_ADD & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )4 EXTERNAL LONG FUNCTION NOTES$KEYWORD_DELETE & ( &" LONG BY REF, &! ANY BY REF, &* ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$KEYWORD_GET &) ( &" LONG BY REF, &! ANY BY REF, &p ANY BY REF & )6 EXTERNAL LONG FUNCTION NOTES$KEYWORD_GET_NOTE & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )4 EXTERNAL LONG FUNCTION NOTES$KEYWORD_MODIFY & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$KEYWORD_END &s ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )0 EXTERNAL LONG FUNCTION NOTES$NOTE_BEGIN & ( &" LONG BY REF, &! ANY BY REF, &i ANY BY REF & ). EXTERNAL LONG FUNCTION NOTES$NOTE_ADD & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )3 EXTERNAL LONG FUNCTION NOTES$NOTE_ADD_TEXT &  ( &" LONG BY REF, &! ANY BY REF, &f ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$NOTE_DELETE &  ( &" LONG BY REF, &! ANY BY REF, &* ANY BY REF & ). EXTERNAL LONG FUNCTION NOTES$NOTE_GET & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )6 EXTERNAL LONG FUNCTION NOTES$NOTE_GET_KEYWORD & ( &" LONG BY REF, &! ANY BY REF, &L ANY BY REF & )3 EXTERNAL LONG FUNCTION NOTES$NOTE_GET_TEXT &  ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$NOTE_MODIFY &  ( &" LONG BY REF, &! ANY BY REF, &$ ANY BY REF & ). EXTERNAL LONG FUNCTION NOTES$NOTE_END & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )3 EXTERNAL LONG FUNCTION NOTES$PROFILE_BEGIN &  ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$PROFILE_GET &E ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )4 EXTERNAL LONG FUNCTION NOTES$PROFILE_MODIFY & ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$PROFILE_END &O ( &" LONG BY REF, &! ANY BY REF, &1 ANY BY REF & )0 EXTERNAL LONG FUNCTION NOTES$USER_BEGIN & ( &" LONG BY REF, &! ANY BY REF, &G ANY BY REF & ). EXTERNAL LONG FUNCTION NOTES$USER_ADD & ( &" LONG BY REF, &! ANY BY REF, &S ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$USER_DELETE &C ( &" LONG BY REF, &! ANY BY REF, &C ANY BY REF & ). EXTERNAL LONG FUNCTION NOTES$USER_GETAP$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.BAS;1~lP") & ( &" LONG BY REF, &! ANY BY REF, &E ANY BY REF & )1 EXTERNAL LONG FUNCTION NOTES$USER_MODIFY &O ( &" LONG BY REF, &! ANY BY REF, & ANY BY REF & ). EXTERNAL LONG FUNCTION NOTES$USER_END & ( &" LONG BY REF, &! ANY BY REF, &N ANY BY REF & ) !*** MODULE $NOTESMSGDEF ***  2 DECLARE LONG CONSTANT NOTES$_FACILITY = 10194 DECLARE LONG CONSTANT NOTES$_NORMAL = 668139617 DECLARE LONG CONSTANT NOTES$_CMDKEYENA = 66813969 7 DECLARE LONG CONSTANT NOTES$_NUMKEYENA = 66813977L9 DECLARE LONG CONSTANT NOTES$_PROFILE_MOD = 66813985O: DECLARE LONG CONSTANT NOTES$_PROFILE_TEMP = 668139936 DECLARE LONG CONSTANT NOTES$_MODERATE = 668140018 DECLARE LONG CONSTANT NOTES$_NOMODERATE = 668140099 DECLARE LONG CONSTANT NOTES$_ENTRY_ADDED = 66814017G= DECLARE LONG CONSTANT NOTES$_KEYWORD_ADDNOTE = 66814025N: DECLARE LONG CONSTANT NOTES$_MARKER_ADDED = 66814033: DECLARE LONG CONSTANT NOTES$_MEMBER_ADDED = 66814041= DECLARE LONG CONSTANT NOTES$_KEYWORD_CREATED = 66814049E; DECLARE LONG CONSTANT NOTES$_ENTRY_DELETED = 66814057C= DECLARE LONG CONSTANT NOTES$_KEYWORD_DELETED = 668140653= DECLARE LONG CONSTANT NOTES$_KEYWORD_DELNOTE = 66814073 < DECLARE LONG CONSTANT NOTES$_MARKER_DELETED = 66814081: DECLARE LONG CONSTANT NOTES$_NOTE_DELETED = 66814089< DECLARE LONG CONSTANT NOTES$_MEMBER_DELETED = 66814097; DECLARE LONG CONSTANT NOTES$_NOTE_MODIFIED = 66814105N< DECLARE LONG CONSTANT NOTES$_ENTRY_MODIFIED = 66814113> DECLARE LONG CONSTANT NOTES$_KEYWORD_MODIFIED = 66814121= DECLARE LONG CONSTANT NOTES$_MEMBER_MODIFIED = 66814129 7 DECLARE LONG CONSTANT NOTES$_CLASS_SET = 66814137_9 DECLARE LONG CONSTANT NOTES$_INSERT_MODE = 66814145F= DECLARE LONG CONSTANT NOTES$_OVERSTRIKE_MODE = 66814153T< DECLARE LONG CONSTANT NOTES$_ENTRY_DELCLASS = 66814161< DECLARE LONG CONSTANT NOTES$_SPACE_COMPRESS = 66814169: DECLARE LONG CONSTANT NOTES$_ENTRY_ADDED2 = 66814177: DECLARE LONG CONSTANT NOTES$_OBJECT_ADDED = 66814185< DECLARE LONG CONSTANT NOTES$_OBJECT_DELETED = 66814193= DECLARE LONG CONSTANT NOTES$_OBJECT_MODIFIED = 66814201=7 DECLARE LONG CONSTANT NOTES$_MORE_INFO = 66818051 < DECLARE LONG CONSTANT NOTES$_SRV_NEWPROTUPD = 66818059; DECLARE LONG CONSTANT NOTES$_ENTRY_ABORTED = 66818067 9 DECLARE LONG CONSTANT NOTES$_NOTES_WRFIL = 66818075E9 DECLARE LONG CONSTANT NOTES$_NOTES_WRBUF = 66818083_6 DECLARE LONG CONSTANT NOTES$_DIRTOBUF = 668180917 DECLARE LONG CONSTANT NOTES$_DIRTOFILE = 66818099E4 DECLARE LONG CONSTANT NOTES$_HIDDEN = 668181077 DECLARE LONG CONSTANT NOTES$_OPEN_CONF = 66818115E9 DECLARE LONG CONSTANT NOTES$_UPDATE_CONF = 66818123E7 DECLARE LONG CONSTANT NOTES$_MARKSUPER = 66818131 8 DECLARE LONG CONSTANT NOTES$_OPEN_CONF2 = 66818139; DECLARE LONG CONSTANT NOTES$_BEING_WRITTEN = 66818147 7 DECLARE LONG CONSTANT NOTES$_USING_EDT = 66818155N5 DECLARE LONG CONSTANT NOTES$_HELPBUF = 66818163G5 DECLARE LONG CONSTANT NOTES$_HELPHDR = 66818171G5 DECLARE LONG CONSTANT NOTES$_HELPNXT = 66818179 6 DECLARE LONG CONSTANT NOTES$_HELPASK1 = 668181876 DECLARE LONG CONSTANT NOTES$_HELPASK2 = 668181955 DECLARE LONG CONSTANT NOTES$_HELPTOP = 66818203L5 DECLARE LONG CONSTANT NOTES$_HELPBOT = 66818211L5 DECLARE LONG CONSTANT NOTES$_ENTRYID = 66818219 4 DECLARE LONG CONSTANT NOTES$_NOTEID = 668182274 DECLARE LONG CONSTANT NOTES$_TOPICS = 668182354 DECLARE LONG CONSTANT NOTES$_UNSEEN = 668182438 DECLARE LONG CONSTANT NOTES$_TOTALNOTES = 668182516 DECLARE LONG CONSTANT NOTES$_DATELINE = 668182596 DECLARE LONG CONSTANT NOTES$_ONECLASS = 668182679 DECLARE LONG CONSTANT NOTES$_MANYCLASSES = 66818275=5 DECLARE LONG CONSTANT NOTES$_TITLEID = 66818283D6 DECLARE LONG CONSTANT NOTES$_NOTICEID = 668182918 DECLARE LONG CONSTANT NOTES$_CONFCREUPD = 668182996 DECLARE LONG CONSTANT NOTES$_MAILSUBJ = 668183074 DECLARE LONG CONSTANT NOTES$_FILEID = 668183159 DECLARE LONG CONSTANT NOTES$_MODERATORID = 66818323= DECLARE LONG CONSTANT NOTES$_OLD_ALREXISTS_A = 66818331L; DECLARE LONG CONSTANT NOTES$_OLD_INVACCNAM = 66818339R8 DECLARE LONG CONSTANT NOTES$_LOCATIONID = 668183479 DECLARE LONG CONSTANT NOTES$_CONF_BANNER = 66818355R9 DECLARE LONG CONSTANT NOTES$_READ_BANNER = 66818363L: DECLARE LONG CONSTANT NOTES$_TOPIC_BANNER = 66818371: DECLARE LONG CONSTANT NOTES$_REPLY_BANNER = 668183799 DECLARE LONG CONSTANT NOTES$_INFO_BANNER = 66818387 9 DECLARE LONG CONSTANT NOTES$_CREATE_CONF = 66818395: DECLARE LONG CONSTANT NOTES$_UPDATE_ENTRY = 668184039 DECLARE LONG CONSTANT NOTES$_GETTING_DIR = 66818411T: DECLARE LONG CONSTANT NOTES$_GETTING_NOTE = 66818419: DECLARE LONG CONSTANT NOTES$_EXTRACT_NOTE = 668184278 DECLARE LONG CONSTANT NOTES$_PRINT_NOTE = 668184358 DECLARE LONG CONSTANT NOTES$_SEARCH_FOR = 668184439 DECLARE LONG CONSTANT NOTES$_SEARCH_NEXT = 66818451T; DECLARE LONG CONSTANT NOTES$_DELETING_NOTE = 66818459G6 DECLARE LONG CONSTANT NOTES$_AUTHORID = 668184675 DECLARE LONG CONSTANT NOTES$_TOPICID = 66818475E7 DECLARE LONG CONSTANT NOTES$_KEYWORDID = 66818483 : DECLARE LONG CONSTANT NOTES$_CONFERENCEID = 668184916 DECLARE LONG CONSTANT NOTES$_ATTRIBID = 668184999 DECLARE LONG CONSTANT NOTES$_WRITELOCKID = 66818507E6 DECLARE LONG CONSTANT NOTES$_HIDDENID = 66818515: DECLARE LONG CONSTANT NOTES$_GRAPHIC_VIEW = 66818523: DECLARE LONG CONSTANT NOTES$_UNKNOWN_VIEW = 668185319 DECLARE LONG CONSTANT NOTES$_DDIF_FORMAT = 66818539E7 DECLARE LONG CONSTANT NOTES$_PS_FORMAT = 66818547R7 DECLARE LONG CONSTANT NOTES$_USEFILEID = 66818555$7 DECLARE LONG CONSTANT NOTES$_COPYRIGHT = 66818563E< DECLARE LONG CONSTANT NOTES$_SRV_OLDPROTUPD = 66822144= DECLARE LONG CONSTANT NOTES$_NO_MORE_CLASSES = 66822152S= DECLARE LONG CONSTANT NOTES$_NO_MORE_ENTRIES = 66822160 > DECLARE LONG CONSTANT NOTES$_NO_MORE_KEYWORDS = 66822168; DECLARE LONG CONSTANT NOTES$_NO_MORE_NOTES = 66822176 : DECLARE LONG CONSTANT NOTES$_NO_MORE_TEXT = 66822184; DECLARE LONG CONSTANT NOTES$_NO_MORE_USERS = 66822192L8 DECLARE LONG CONSTANT NOTES$_NONOTEBOOK = 668222006 DECLARE LONG CONSTANT NOTES$_NOERRTXT = 66822208: DECLARE LONG CONSTANT NOTES$_NEEDNBMODIFY = 668222165 DECLARE LONG CONSTANT NOTES$_MSGSEND = 66822224O8 DECLARE LONG CONSTANT NOTES$_ENTERINTRO = 668222327 DECLARE LONG CONSTANT NOTES$_CTRLZMAIL = 66822240P8 DECLARE LONG CONSTANT NOTES$_NOTREADING = 66822248= DECLARE LONG CONSTANT NOTES$_NO_MORE_REPLIES = 6682225648 DECLARE LONG CONSTANT NOTES$_ANSWER_YES = 668222646 DECLARE LONG CONSTANT NOTES$_EOB_TEXT = 668222727 DECLARE LONG CONSTANT NOTES$_PRESS_PF2 = 66822280&8 DECLARE LONG CONSTANT NOTES$_NOTES_HDR1 = 66822288; DECLARE LONG CONSTANT NOTES$_PRESS_CTRLZ_N = 66822296L< DECLARE LONG CONSTANT NOTES$_SET_CONFERENCE = 668223049 DECLARE LONG CONSTANT NOTES$_ENTER_TITLE = 66822312Y: DECLARE LONG CONSTANT NOTES$_PRESS_RETURN = 66822320; DECLARE LONG CONSTANT NOTES$_PRESS_ANY_KEY = 66822328 6 DECLARE LONG CONSTANT NOTES$_DIR_HEAD = 668223369 DECLARE LONG CONSTANT NOTES$_ENDREQ_LIST = 66822344Y; DECLARE LONG CONSTANT NOTES$_NOTE_END_TEXT = 66822352$7 DECLARE LONG CONSTANT NOTES$_TEXT_NOTE = 66822360 8 DECLARE LONG CONSTANT NOTES$_TEXT_REPLY = 668223683 DECLARE LONG CONSTANT NOTES$_NO_NB = 66822376 5 DECLARE LONG CONSTANT NOTES$_YOUR_SP = 66822384 ; DECLARE LONG CONSTANT NOTES$_NOTE_COMPLETE = 66822392 9 DECLARE LONG CONSTANT NOTES$_NOTE_NOTEXT = 66822400&7 DECLARE LONG CONSTANT NOTES$_NOREPLIES = 66822408O7 DECLARE LONG CONSTANT NOTES$_ONE_REPLY = 66822416N: DECLARE LONG CONSTANT NOTES$_MANY_REPLIES = 668224244 DECLARE LONG CONSTANT NOTES$_N_OF_N = 66822432: DECLARE LONG CONSTANT NOTES$_ENTER_CTITLE = 668224409 DECLARE LONG CONSTANT NOTES$_DELETE_NOTE = 66822448 8 DECLARE LONG CONSTANT NOTES$_NOTENOTDEL = 66822456: DECLARE LO&$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.BAS;1~l":NG CONSTANT NOTES$_FINDING_HELP = 668224647 DECLARE LONG CONSTANT NOTES$_NOKEYHELP = 66822472 7 DECLARE LONG CONSTANT NOTES$_NOTESQADD = 66822480Y8 DECLARE LONG CONSTANT NOTES$_REALLYQUIT = 668224889 DECLARE LONG CONSTANT NOTES$_MAILNOTSENT = 66822496N6 DECLARE LONG CONSTANT NOTES$_NUMNOTES = 668225044 DECLARE LONG CONSTANT NOTES$_SENDTO = 668225125 DECLARE LONG CONSTANT NOTES$_SUBJECT = 66822520 : DECLARE LONG CONSTANT NOTES$_PROFILE_USER = 668225287 DECLARE LONG CONSTANT NOTES$_MORE_TEXT = 66822536 9 DECLARE LONG CONSTANT NOTES$_SHOW_MARK_1 = 66822544 9 DECLARE LONG CONSTANT NOTES$_SHOW_MARK_2 = 668225529 DECLARE LONG CONSTANT NOTES$_SHOW_MARK_3 = 66822560 8 DECLARE LONG CONSTANT NOTES$_SHOW_ENTRY = 66822568< DECLARE LONG CONSTANT NOTES$_SHOW_PROF_EDIT = 66822576> DECLARE LONG CONSTANT NOTES$_SHOW_PROF_DCLASS = 66822584= DECLARE LONG CONSTANT NOTES$_SHOW_PROF_PRINT = 66822592 < DECLARE LONG CONSTANT NOTES$_SHOW_PROF_NAME = 66822600< DECLARE LONG CONSTANT NOTES$_SHOW_PROF_AUTO = 66822608< DECLARE LONG CONSTANT NOTES$_SHOW_PROF_ADIR = 66822616< DECLARE LONG CONSTANT NOTES$_SHOW_PROF_AUNS = 66822624< DECLARE LONG CONSTANT NOTES$_SHOW_PROF_NONE = 668226329 DECLARE LONG CONSTANT NOTES$_ENDREQ_SHOW = 66822640; DECLARE LONG CONSTANT NOTES$_CTRLZ_COM_RET = 66822648 ; DECLARE LONG CONSTANT NOTES$_SHOW_ENT_CONF = 66822656 ; DECLARE LONG CONSTANT NOTES$_SHOW_ENT_FILE = 66822664 8 DECLARE LONG CONSTANT NOTES$_SHOW_CLASS = 66822672; DECLARE LONG CONSTANT NOTES$_SHOW_CONF_MOD = 66822680 = DECLARE LONG CONSTANT NOTES$_SHOW_CONF_RESA1 = 66822688&= DECLARE LONG CONSTANT NOTES$_SHOW_CONF_RESA2 = 66822696E= DECLARE LONG CONSTANT NOTES$_SHOW_CONF_RESK1 = 66822704= DECLARE LONG CONSTANT NOTES$_SHOW_CONF_RESK2 = 66822712R9 DECLARE LONG CONSTANT NOTES$_SHOW_KEYW_1 = 66822720$9 DECLARE LONG CONSTANT NOTES$_SHOW_KEYW_2 = 66822728B6 DECLARE LONG CONSTANT NOTES$_SHOW_MOD = 66822736; DECLARE LONG CONSTANT NOTES$_SHOW_MOD_NODE = 66822744 ; DECLARE LONG CONSTANT NOTES$_SHOW_MOD_USER = 66822752 < DECLARE LONG CONSTANT NOTES$_SHOW_USER_MADR = 66822760< DECLARE LONG CONSTANT NOTES$_SHOW_USER_PRIV = 66822768< DECLARE LONG CONSTANT NOTES$_SHOW_USER_JOIN = 66822776; DECLARE LONG CONSTANT NOTES$_SHOW_NOTE_HID = 66822784 ; DECLARE LONG CONSTANT NOTES$_SHOW_NOTE_VIS = 66822792 < DECLARE LONG CONSTANT NOTES$_SHOW_NOTE_REP1 = 66822800< DECLARE LONG CONSTANT NOTES$_SHOW_NOTE_REP2 = 66822808< DECLARE LONG CONSTANT NOTES$_SHOW_PROF_PERM = 66822816< DECLARE LONG CONSTANT NOTES$_SHOW_USER_FULL = 66822824< DECLARE LONG CONSTANT NOTES$_SHOW_MODU_FULL = 668228321 DECLARE LONG CONSTANT NOTES$_NMF = 66822840 1 DECLARE LONG CONSTANT NOTES$_NJU = 66822848N= DECLARE LONG CONSTANT NOTES$_NO_MORE_MARKERS = 66822856 6 DECLARE LONG CONSTANT NOTES$_SEARCHF1 = 668228646 DECLARE LONG CONSTANT NOTES$_SEARCHF2 = 668228726 DECLARE LONG CONSTANT NOTES$_DIR_CONF = 66822880< DECLARE LONG CONSTANT NOTES$_DIR_CONF_TITLE = 668228886 DECLARE LONG CONSTANT NOTES$_N_TOPICS = 66822896: DECLARE LONG CONSTANT NOTES$_DIR_NB_CLASS = 66822904: DECLARE LONG CONSTANT NOTES$_CTRLZ_CANCEL = 668229129 DECLARE LONG CONSTANT NOTES$_REPBUFINFO1 = 66822920 9 DECLARE LONG CONSTANT NOTES$_REPBUFINFO2 = 66822928L8 DECLARE LONG CONSTANT NOTES$_NMORELINES = 668229369 DECLARE LONG CONSTANT NOTES$_READINGCONF = 66822944Y9 DECLARE LONG CONSTANT NOTES$_WILLNOTSEND = 66822952 5 DECLARE LONG CONSTANT NOTES$_WORKING = 66822960)8 DECLARE LONG CONSTANT NOTES$_FILECREUPD = 668229687 DECLARE LONG CONSTANT NOTES$_ENTERNOTE = 66822976Y3 DECLARE LONG CONSTANT NOTES$_ANDTO = 66822984C8 DECLARE LONG CONSTANT NOTES$_SENDANYWAY = 668229926 DECLARE LONG CONSTANT NOTES$_SPAWNKEY = 668230005 DECLARE LONG CONSTANT NOTES$_CALLKEY = 66823008 5 DECLARE LONG CONSTANT NOTES$_EDICALL = 66823016Y6 DECLARE LONG CONSTANT NOTES$_EDISPAWN = 668230249 DECLARE LONG CONSTANT NOTES$_SPELLSELECT = 66823032A9 DECLARE LONG CONSTANT NOTES$_SPELLBUFFER = 66823040N8 DECLARE LONG CONSTANT NOTES$_SPELLSTART = 668230487 DECLARE LONG CONSTANT NOTES$_SPELLDONE = 66823056: DECLARE LONG CONSTANT NOTES$_SENDING_MAIL = 668230646 DECLARE LONG CONSTANT NOTES$_SENDBOTH = 668230726 DECLARE LONG CONSTANT NOTES$_NONESENT = 668230809 DECLARE LONG CONSTANT NOTES$_SENT_TO_ALL = 66823088 = DECLARE LONG CONSTANT NOTES$_SHOW_CONF_RESW1 = 66823096 = DECLARE LONG CONSTANT NOTES$_SHOW_CONF_RESW2 = 66823104 8 DECLARE LONG CONSTANT NOTES$_TEXT_TOPIC = 668231128 DECLARE LONG CONSTANT NOTES$_MEMBERS_OF = 668231209 DECLARE LONG CONSTANT NOTES$_DEF_SUBJECT = 66823128 : DECLARE LONG CONSTANT NOTES$_MAIL_SUBJECT = 668231369 DECLARE LONG CONSTANT NOTES$_TEXT_APPEND = 66823144 < DECLARE LONG CONSTANT NOTES$_NEVER_ACCESSED = 668231525 DECLARE LONG CONSTANT NOTES$_EXPIRED = 66823160F7 DECLARE LONG CONSTANT NOTES$_ANSWER_NO = 668231687 DECLARE LONG CONSTANT NOTES$_WRONG_ANS = 66823176 7 DECLARE LONG CONSTANT NOTES$_CREATEBUF = 66823184 6 DECLARE LONG CONSTANT NOTES$_WRITEBUF = 66823192; DECLARE LONG CONSTANT NOTES$_SHOW_PROF_DEF = 66823200G7 DECLARE LONG CONSTANT NOTES$_ASK_YESNO = 66823208 6 DECLARE LONG CONSTANT NOTES$_MODPRIVS = 66823216: DECLARE LONG CONSTANT NOTES$_SHOW_ENT_OBJ = 668232247 DECLARE LONG CONSTANT NOTES$_CANCELLED = 66823232< DECLARE LONG CONSTANT NOTES$_SHOW_CONF_RESR = 668232400 DECLARE LONG CONSTANT NOTES$_CC = 66823248; DECLARE LONG CONSTANT NOTES$_MODERATORS_OF = 66823256 9 DECLARE LONG CONSTANT NOTES$_ALREXISTS_A = 66823264 7 DECLARE LONG CONSTANT NOTES$_INVACCNAM = 66823272 7 DECLARE LONG CONSTANT NOTES$_ILLCTXADR = 66830338 6 DECLARE LONG CONSTANT NOTES$_WRONGCTX = 668303467 DECLARE LONG CONSTANT NOTES$_INVITMCOD = 66830355 7 DECLARE LONG CONSTANT NOTES$_INVITMLEN = 66830362E7 DECLARE LONG CONSTANT NOTES$_MISREQITM = 66830370 7 DECLARE LONG CONSTANT NOTES$_NOCURNOTE = 66830378 : DECLARE LONG CONSTANT NOTES$_CANTCONTINUE = 668303867 DECLARE LONG CONSTANT NOTES$_FAILGETVM = 66830394E8 DECLARE LONG CONSTANT NOTES$_STRCOPYERR = 668304027 DECLARE LONG CONSTANT NOTES$_ILLNOTEID = 66830410 8 DECLARE LONG CONSTANT NOTES$_NOSUCHNOTE = 668304188 DECLARE LONG CONSTANT NOTES$_SRV_NOINIT = 668304268 DECLARE LONG CONSTANT NOTES$_SRV_INVSEQ = 66830434; DECLARE LONG CONSTANT NOTES$_SRV_NOCONTEXT = 66830442 < DECLARE LONG CONSTANT NOTES$_SRV_NOUSERNAME = 668304509 DECLARE LONG CONSTANT NOTES$_SRV_INVITEM = 66830458 7 DECLARE LONG CONSTANT NOTES$_CREPRIJOB = 66830466 5 DECLARE LONG CONSTANT NOTES$_PREMEOF = 66830474G9 DECLARE LONG CONSTANT NOTES$_NOPRIVDEL_N = 66830482&; DECLARE LONG CONSTANT NOTES$_NOPRIVWRITE_N = 66830490 ; DECLARE LONG CONSTANT NOTES$_SRV_UNRECPROT = 66830498E8 DECLARE LONG CONSTANT NOTES$_NOFILEOPEN = 66830506; DECLARE LONG CONSTANT NOTES$_ALREXISTS_OLD = 66830514 9 DECLARE LONG CONSTANT NOTES$_NOSUCHENTRY = 66830522U7 DECLARE LONG CONSTANT NOTES$_MUST_OPEN = 66830530 = DECLARE LONG CONSTANT NOTES$_MUST_READ_REPLY = 66830538? DECLARE LONG CONSTANT NOTES$_MUST_READ_FORWARD = 66830546L? DECLARE LONG CONSTANT NOTES$_NOT_ENTERING_NOTE = 66830554 > DECLARE LONG CONSTANT NOTES$_NONOTE_SPECIFIED = 66830562; DECLARE LONG CONSTANT NOTES$_ERROR_MAILING = 66830570L= DECLARE LONG CONSTANT NOTES$_NOPREVIOUS_NOTE = 66830578 ? DECLARE LONG CONSTANT NOTES$_ALREADY_IN_EDITOR = 66830586> DECLARE LONG CONSTANT NOTES$_ALREADY_IN_NOTES = 66830594C DECLARE LONG CONSTANT NOTES$_MUST_COMPLETE_MESSAGE = 66830602 < DECLARE LONG CONSTANT NOTES$_UNREC_CALLUSER = 66830610; DECLARE LONG CONSTANT NOTES$_NO_SUCH_CLASS = 66830618*; DECLARE LONG CONSTANT NOTES$_NO_SUCH_ENTRY = 66830626T= DECLARE LONG CONSTANT NOTES$_NO_SUCH_KEYWORD = 66830634N: DECLARE LONG CONSTANT NOTES$_NO_SUCH_NOTE = 66830642: DECLARE LONG CONSTANT NOTES$_NO_SUCH_USER = 66830650; DECLARE LONG CONSTANT NOTES$_NOMORE_RECALL = 66830658=: DECLARE LONG CONSTANT NOTES$_EDIT_OR_FILE = 668306664 DECLARE LONG CONSTANT NOTES$_NOMAIL = 668306748 DECLARE LONG CONSTANT NOTES$_ERRORWRITE = 66&$$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.BAS;1~li"K8306828 DECLARE LONG CONSTANT NOTES$_NOMAILPROC = 668306901 DECLARE LONG CONSTANT NOTES$_IFF = 66830698K4 DECLARE LONG CONSTANT NOTES$_NOPRIV = 66830706: DECLARE LONG CONSTANT NOTES$_CTRLC_CANCEL = 668307147 DECLARE LONG CONSTANT NOTES$_ERRCREKEY = 66830722T8 DECLARE LONG CONSTANT NOTES$_ERRADDMARK = 668307307 DECLARE LONG CONSTANT NOTES$_ERRADDMEM = 66830738 7 DECLARE LONG CONSTANT NOTES$_ERRADDENT = 66830746E7 DECLARE LONG CONSTANT NOTES$_ERRDELENT = 66830754 8 DECLARE LONG CONSTANT NOTES$_ERRDELMARK = 66830762: DECLARE LONG CONSTANT NOTES$_ERRDELMEMBER = 668307708 DECLARE LONG CONSTANT NOTES$_ERRMODNOTE = 668307789 DECLARE LONG CONSTANT NOTES$_ERRMODENTRY = 668307868; DECLARE LONG CONSTANT NOTES$_ERRMODKEYWORD = 6683079468 DECLARE LONG CONSTANT NOTES$_ERRACCLIST = 668308025 DECLARE LONG CONSTANT NOTES$_NOWRITE = 66830810_: DECLARE LONG CONSTANT NOTES$_NOSUCHMARKER = 668308189 DECLARE LONG CONSTANT NOTES$_NOPRIVMOD_N = 66830826R9 DECLARE LONG CONSTANT NOTES$_ALREXISTS_C = 66830834S9 DECLARE LONG CONSTANT NOTES$_ALREXISTS_E = 66830842E9 DECLARE LONG CONSTANT NOTES$_ALREXISTS_K = 66830850$9 DECLARE LONG CONSTANT NOTES$_ALREXISTS_U = 66830858E9 DECLARE LONG CONSTANT NOTES$_ALREXISTS_M = 66830866E< DECLARE LONG CONSTANT NOTES$_NO_SUCH_MARKER = 668308747 DECLARE LONG CONSTANT NOTES$_NOMEMBERS = 66830882O7 DECLARE LONG CONSTANT NOTES$_NOTMEMBER = 66830890T; DECLARE LONG CONSTANT NOTES$_BASEWRITELOCK = 66830898 : DECLARE LONG CONSTANT NOTES$_NOWRITE_CONF = 668309068 DECLARE LONG CONSTANT NOTES$_SPELLERROR = 668309147 DECLARE LONG CONSTANT NOTES$_PNINVCHAR = 66830922C7 DECLARE LONG CONSTANT NOTES$_SENDNOAUT = 66830930G: DECLARE LONG CONSTANT NOTES$_INVCLASSNAME = 66830938; DECLARE LONG CONSTANT NOTES$_CLASSNOTFOUND = 66830946N6 DECLARE LONG CONSTANT NOTES$_FORWLOOP = 66830954: DECLARE LONG CONSTANT NOTES$_BAD_DIR_LINE = 668309627 DECLARE LONG CONSTANT NOTES$_NO_SELECT = 66830970 9 DECLARE LONG CONSTANT NOTES$_NOTE_NOCONF = 66830978O: DECLARE LONG CONSTANT NOTES$_UNREC_EDITOR = 668309867 DECLARE LONG CONSTANT NOTES$_NO_CLASSP = 66830994 7 DECLARE LONG CONSTANT NOTES$_NMTHISDIR = 66831002 9 DECLARE LONG CONSTANT NOTES$_NO_NEW_NOTE = 66831010E; DECLARE LONG CONSTANT NOTES$_CAPTIVE_SPAWN = 66831018L< DECLARE LONG CONSTANT NOTES$_NOTHING_TO_SET = 668310268 DECLARE LONG CONSTANT NOTES$_NOHELPTERM = 668310347 DECLARE LONG CONSTANT NOTES$_INVENTNAM = 6683104287 DECLARE LONG CONSTANT NOTES$_INVCLANAM = 668310508: DECLARE LONG CONSTANT NOTES$_INVENTRYNAME = 66831058? DECLARE LONG CONSTANT NOTES$_NO_ENTRY_IN_CLASS = 66831066L@ DECLARE LONG CONSTANT NOTES$_ALREXISTS_IN_CLASS = 668310747 DECLARE LONG CONSTANT NOTES$_NOMARKERS = 66831082N8 DECLARE LONG CONSTANT NOTES$_NOKEYWORDS = 668310907 DECLARE LONG CONSTANT NOTES$_NOLICENSE = 66831098 4 DECLARE LONG CONSTANT NOTES$_NOFILE = 668311063 DECLARE LONG CONSTANT NOTES$_NOEDT = 66831114C5 DECLARE LONG CONSTANT NOTES$_NOENTRY = 66831122C3 DECLARE LONG CONSTANT NOTES$_NOEVE = 66831130G6 DECLARE LONG CONSTANT NOTES$_TPUERROR = 66831138? DECLARE LONG CONSTANT NOTES$_ENTALR_IN_CLASSES = 66831146N< DECLARE LONG CONSTANT NOTES$_NO_RANGE_ALLOW = 668311546 DECLARE LONG CONSTANT NOTES$_NOTINCMD = 66831162= DECLARE LONG CONSTANT NOTES$_CONF_REPLY_ONLY = 66831170O7 DECLARE LONG CONSTANT NOTES$_USRNOTADD = 66831178N7 DECLARE LONG CONSTANT NOTES$_INVKEYNAM = 66831186N< DECLARE LONG CONSTANT NOTES$_INVKEYWORDNAME = 668311947 DECLARE LONG CONSTANT NOTES$_INVMRKNAM = 66831202N; DECLARE LONG CONSTANT NOTES$_INVMARKERNAME = 66831210 7 DECLARE LONG CONSTANT NOTES$_INVUSRNAM = 66831218N9 DECLARE LONG CONSTANT NOTES$_INVUSERNAME = 66831226N9 DECLARE LONG CONSTANT NOTES$_INVNOTESPEC = 66831234N= DECLARE LONG CONSTANT NOTES$_RANGE_ONE_TOPIC = 66831242O; DECLARE LONG CONSTANT NOTES$_RANGE_TOO_BIG = 66831250E6 DECLARE LONG CONSTANT NOTES$_NO_TOPIC = 668312589 DECLARE LONG CONSTANT NOTES$_ALREXISTS_N = 66831266 8 DECLARE LONG CONSTANT NOTES$_NONOTESMOD = 66831274= DECLARE LONG CONSTANT NOTES$_MEMBERNAME_NODE = 66831282$6 DECLARE LONG CONSTANT NOTES$_CONFQUAL = 66831290: DECLARE LONG CONSTANT NOTES$_OPRNOTSUPCNF = 668312985 DECLARE LONG CONSTANT NOTES$_BADTIME = 66831306 8 DECLARE LONG CONSTANT NOTES$_INVOBJNAME = 66831314; DECLARE LONG CONSTANT NOTES$_INVOBJECTNAME = 66831322$6 DECLARE LONG CONSTANT NOTES$_NOATTRIB = 668313306 DECLARE LONG CONSTANT NOTES$_NOOBJECT = 668313387 DECLARE LONG CONSTANT NOTES$_NOSUCHOBJ = 66831346 6 DECLARE LONG CONSTANT NOTES$_LWKERROR = 66831354; DECLARE LONG CONSTANT NOTES$_NOLINKLICENSE = 66831362O7 DECLARE LONG CONSTANT NOTES$_NOTNETWRK = 66842628 8 DECLARE LONG CONSTANT NOTES$_WRONG_ACCT = 66842636: DECLARE LONG CONSTANT NOTES$_SRV_INIT_ERR = 668426447 DECLARE LONG CONSTANT NOTES$_WRONG_LMF = 66842652   !*** MODULE SERVERDEF ***E  2 DECLARE LONG CONSTANT NOTES$K_INITIALIZE = 1, DECLARE LONG CONSTANT NOTES$K_MORE = 26 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_BEGIN = 34 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_END = 49 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_GET_INFO = 5$7 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_MODIFY = 6O; DECLARE LONG CONSTANT NOTES$K_NOTEFILE_LIST_BEGIN = 7E5 DECLARE LONG CONSTANT NOTES$K_NOTEFILE_LIST = 8N5 DECLARE LONG CONSTANT NOTES$K_KEYWORD_BEGIN = 9T4 DECLARE LONG CONSTANT NOTES$K_KEYWORD_END = 104 DECLARE LONG CONSTANT NOTES$K_KEYWORD_ADD = 117 DECLARE LONG CONSTANT NOTES$K_KEYWORD_DELETE = 12G4 DECLARE LONG CONSTANT NOTES$K_KEYWORD_GET = 139 DECLARE LONG CONSTANT NOTES$K_KEYWORD_GET_NOTE = 14O7 DECLARE LONG CONSTANT NOTES$K_KEYWORD_MODIFY = 15O3 DECLARE LONG CONSTANT NOTES$K_NOTE_BEGIN = 16 1 DECLARE LONG CONSTANT NOTES$K_NOTE_END = 171 DECLARE LONG CONSTANT NOTES$K_NOTE_ADD = 1826 DECLARE LONG CONSTANT NOTES$K_NOTE_ADD_TEXT = 194 DECLARE LONG CONSTANT NOTES$K_NOTE_DELETE = 201 DECLARE LONG CONSTANT NOTES$K_NOTE_GET = 21C9 DECLARE LONG CONSTANT NOTES$K_NOTE_GET_KEYWORD = 22C6 DECLARE LONG CONSTANT NOTES$K_NOTE_GET_TEXT = 234 DECLARE LONG CONSTANT NOTES$K_NOTE_MODIFY = 243 DECLARE LONG CONSTANT NOTES$K_USER_BEGIN = 25N1 DECLARE LONG CONSTANT NOTES$K_USER_END = 26R1 DECLARE LONG CONSTANT NOTES$K_USER_ADD = 27E4 DECLARE LONG CONSTANT NOTES$K_USER_DELETE = 281 DECLARE LONG CONSTANT NOTES$K_USER_GET = 2984 DECLARE LONG CONSTANT NOTES$K_USER_MODIFY = 302 DECLARE LONG CONSTANT NOTES$K_CLASS_ADD = 314 DECLARE LONG CONSTANT NOTES$K_CLASS_BEGIN = 325 DECLARE LONG CONSTANT NOTES$K_CLASS_DELETE = 33U2 DECLARE LONG CONSTANT NOTES$K_CLASS_END = 342 DECLARE LONG CONSTANT NOTES$K_CLASS_GET = 358 DECLARE LONG CONSTANT NOTES$K_CLASS_GET_ENTRY = 365 DECLARE LONG CONSTANT NOTES$K_CLASS_MODIFY = 37C2 DECLARE LONG CONSTANT NOTES$K_ENTRY_ADD = 384 DECLARE LONG CONSTANT NOTES$K_ENTRY_BEGIN = 395 DECLARE LONG CONSTANT NOTES$K_ENTRY_DELETE = 40L2 DECLARE LONG CONSTANT NOTES$K_ENTRY_END = 412 DECLARE LONG CONSTANT NOTES$K_ENTRY_GET = 428 DECLARE LONG CONSTANT NOTES$K_ENTRY_GET_CLASS = 43: DECLARE LONG CONSTANT NOTES$K_ENTRY_GET_KEYWORD = 445 DECLARE LONG CONSTANT NOTES$K_ENTRY_MODIFY = 4586 DECLARE LONG CONSTANT NOTES$K_PROFILE_BEGIN = 464 DECLARE LONG CONSTANT NOTES$K_PROFILE_END = 474 DECLARE LONG CONSTANT NOTES$K_PROFILE_GET = 487 DECLARE LONG CONSTANT NOTES$K_PROFILE_MODIFY = 49M0 DECLARE LONG CONSTANT NOTES$K_STATUS = 1299 DECLARE LONG CONSTANT NOTES$K_REQUEST_CONTEXT = 130B3 DECLARE LONG CONSTANT NOTES$K_ERROR_TLV = 131P5 DECLARE LONG CONSTANT NOTES$K_ERROR_NARGS = 132E3 DECLARE LONG CONSTANT NOTES$K_ERROR_ARG = 133 4 DECLARE LONG CONSTANT NOTES$K_ERROR_TEXT = 1348 DECLARE LONG CONSTANT NOTES$K_CANCEL_REQUEST = 135; DECLARE LONG CONSTANT NOTES$K_REQUEST_CANCELLED = 136N7 DECLARE LONG CONSTANT NOTES$K_INIT_VERSION = 8193N8 DECLARE LONG CONSTANT NOTES$K_INIT_NODENAME = 81948 DECLARE LONG CONSTANT NOTES$K_INIT_USERNAME = 8195< DECLARE LONG CONSTANT NOTES$K_INIT_CAPABILITIES = 8196; DECLARE LONG CON7U$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.BAS;1~lX\STANT NOTES$K_INIT_MAXITEMCODE = 8197L> DECLARE LONG CONSTANT NOTES$M_INIT_VMSMSGS = x'00000001'4 DECLARE LONG CONSTANT NOTES$S_CAPABILITIES = 4 record CAPABILITIESE group NOTES$R_FILL_0_ variantT caseN+ LONG NOTES$L_CAPABILITIESO case8' group NOTES$R_FILL_1_$~ BYTE INIT_VMSMSGS_bits ! COMMENT ADDED BY SDL - INIT_VMSMSGS_bits contains bits INIT_VMSMSGS through & ! FILL_2_+ end group NOTES$R_FILL_1_$ end variant " end group NOTES$R_FILL_0_ end record CAPABILITIESE 8 DECLARE LONG CONSTANT NOTES$K_PROTOCOL_VERSION = 27 DECLARE LONG CONSTANT NOTES$K_PROTOCOL_UPDATE = 6 0 EXTERNAL LONG FUNCTION NOTES$SERVER_BEGIN"*[NOTES.TEMPKIT]NOTES$ITEMDEF.FOR;1+,f.H/J 4NH?- 0123KPWO@56^5bģ7wlģ89GJHJ! N! ****************************************************************************N! * *N! * Copyright (c) 2004 *N! * by DIGITAL Equipment Corporation, Maynard, Mass. *N! * All rights reserved. *N! * *N! * This software is furnished under a license and may be used and copied *N! * only in accordance with the terms of such license and with the *N! * inclusion of the above copyright notice. This software or any other *N! * copies thereof may not be provided or otherwise made available to any *N! * other person. No title to and ownership of the software is hereby *N! * transferred. *N! * *N! * The information in this software is subject to change without notice *N! * and should not be construed as a commitment by DIGITAL Equipment *N! * Corporation. *N! * *N! * DIGITAL assumes no responsibility for the use or reliability of its *N! * software on equipment which is not supplied by DIGITAL. *N! * *N! **************************************************************************** !*** MODULE NOTEITEMS ***:!DEC$ OPTIONS/ALIGN=(RECORDS=PACKED,COMMONS=PACKED)/NOWARN) PARAMETER NOTES$K_MIN_ITEM = '00000001'X) PARAMETER NOTES$K_NOSIGNAL = '00000001'X, PARAMETER NOTES$K_TEXT_STRING = '00000002'X) PARAMETER NOTES$K_TEXT_END = '00000003'X* PARAMETER NOTES$K_TEXT_TYPE = '00000004'X3 PARAMETER NOTES$K_NOTE_ALL_RESPONSES = '00000005'X, PARAMETER NOTES$K_NOTE_AUTHOR = '00000006'X/ PARAMETER NOTES$K_NOTE_BACK_NOTE = '00000007'X3 PARAMETER NOTES$K_NOTE_BACK_RESPONSE = '00000008'X1 PARAMETER NOTES$K_NOTE_BEFORE_TIME = '00000009'X. PARAMETER NOTES$K_NOTE_BLINK_ID = '0000000A'X/ PARAMETER NOTES$K_NOTE_BLINK_UID = '0000000B'X1 PARAMETER NOTES$K_NOTE_CREATE_TIME = '0000000C'X, PARAMETER NOTES$K_NOTE_HIDDEN = '0000000D'X( PARAMETER NOTES$K_NOTE_ID = '0000000E'X/ PARAMETER NOTES$K_NOTE_NEXT_NOTE = '0000000F'X3 PARAMETER NOTES$K_NOTE_NEXT_RESPONSE = '00000010'X0 PARAMETER NOTES$K_NOTE_NUMRECORDS = '00000011'X2 PARAMETER NOTES$K_NOTE_NUMRESPONSES = '00000012'X. PARAMETER NOTES$K_NOTE_PEN_NAME = '00000013'X3 PARAMETER NOTES$K_NOTE_SEARCH_STRING = '00000014'X2 PARAMETER NOTES$K_NOTE_SEARCH_TITLE = '00000015'X0 PARAMETER NOTES$K_NOTE_SINCE_TIME = '00000016'X+ PARAMETER NOTES$K_NOTE_TITLE = '00000017'X) PARAMETER NOTES$K_NOTE_UID = '00000018'X, PARAMETER NOTES$K_NOTE_UNSEEN = '00000019'X/ PARAMETER NOTES$K_NOTE_USER_AREA = '0000001A'X/ PARAMETER NOTES$K_NOTE_WRITELOCK = '0000001B'X1 PARAMETER NOTES$K_NOTEFILE_CONTEXT = '0000001C'X. PARAMETER NOTES$K_CLASS_CONTEXT = '0000001D'X. PARAMETER NOTES$K_ENTRY_CONTEXT = '0000001E'X0 PARAMETER NOTES$K_KEYWORD_CONTEXT = '0000001F'X- PARAMETER NOTES$K_NOTE_CONTEXT = '00000020'X0 PARAMETER NOTES$K_PROFILE_CONTEXT = '00000021'X/ PARAMETER NOTES$K_SERVER_CONTEXT = '00000022'X- PARAMETER NOTES$K_USER_CONTEXT = '00000023'X+ PARAMETER NOTES$K_CLASS_NAME = '00000024'X/ PARAMETER NOTES$K_CLASS_NEW_NAME = '00000025'X) PARAMETER NOTES$K_CONTINUE = '00000026'X+ PARAMETER NOTES$K_ENTRY_NAME = '00000027'X/ PARAMETER NOTES$K_ENTRY_NEW_NAME = '00000028'X0 PARAMETER NOTES$K_ENTRY_USER_AREA = '00000029'X% PARAMETER NOTES$K_HINT = '0000002A'X- PARAMETER NOTES$K_KEYWORD_NAME = '0000002B'X1 PARAMETER NOTES$K_KEYWORD_NEW_NAME = '0000002C'X0 PARAMETER NOTES$K_NOTEFILE_CREATE = '0000002D'X5 PARAMETER NOTES$K_NOTEFILE_CREATE_TIME = '0000002E'X6 PARAMETER NOTES$K_NOTEFILE_DEFAULT_NAME = '0000002F'X4 PARAMETER NOTES$K_NOTEFILE_ENTRYTOTAL = '00000030'X3 PARAMETER NOTES$K_NOTEFILE_FILE_NAME = '00000031'X0 PARAMETER NOTES$K_NOTEFILE_FORMAT = '00000032'X2 PARAMETER NOTES$K_NOTEFILE_HIGH_UID = '00000033'X1 PARAMETER NOTES$K_NOTEFILE_LASTREV = '00000034'X2 PARAMETER NOTES$K_NOTEFILE_MODERATE = '00000035'X3 PARAMETER NOTES$K_NOTEFILE_MODERATOR = '00000036'X0 PARAMETER NOTES$K_NOTEFILE_NOTICE = '00000037'X2 PARAMETER NOTES$K_NOTEFILE_NUMNOTES = '00000038'X6 PARAMETER NOTES$K_NOTEFILE_RELATED_NAME = '00000039'X4 PARAMETER NOTES$K_NOTEFILE_RESTRICTED = '0000003A'X5 PARAMETER NOTES$K_NOTEFILE_RESULT_SPEC = '0000003B'X/ PARAMETER NOTES$K_NOTEFILE_TITLE = '0000003C'X3 PARAMETER NOTES$K_NOTEFILE_TRANSPORT = '0000003D'X3 PARAMETER NOTES$K_NOTEFILE_USER_AREA = '0000003E'X1 PARAMETER NOTES$K_PROFILE_AUTO_DIR = '0000003F'X4 PARAMETER NOTES$K_PROFILE_AUTO_UNSEEN = '00000040'X3 PARAMETER NOTES$K_PROFILE_CLASS_NAME = '00000041'X/ PARAMETER NOTES$K_PROFILE_EDITOR = '00000042'X5 PARAMETER NOTES$K_PROFILE_EDITOR_SPAWN = '00000043'X1 PARAMETER NOTES$K_PROFILE_PEN_NAME = '00000044'X. PARAMETER NOTES$K_PROFILE_PRINT = '00000045'X2 PARAMETER NOTES$K_PROFILE_TEMPORARY = '00000046'X) PARAMETER NOTES$K_SEEN_MAP = '00000047'X4 PARAMETER NOTES$K_USER_CREATE_KEYWORD = '00000048'X/ PARAMETER NOTES$K_USER_MAIL_ADDR = '00000049'X. PARAMETER NOTES$K_USER_MODERATE = '0000004A'X* PARAMETER NOTES$K_USER_NAME = '0000004B'X. PARAMETER NOTES$K_USER_NEW_NAME = '0000004C'X2 PARAMETER NOTES$K_USER_NEW_NODENAME = '0000004D'X. PARAMETER NOTES$K_USER_NODENAME = '0000004E'X1 PARAMETER NOTES$K_NOTE_BLINK_TITLE = '0000004F'X/ PARAMETER NOTES$K_NOTE_MARK_SEEN = '00000050'X1 PARAMETER NOTES$K_NOTE_NEXT_UNSEEN = '00000051'X3 PARAMETER NOTES$K_NOTE_HINT_GET_TEXT = '00000052'X/ PARAMETER NOTES$K_NOTE_X_KEYWORD = '00000053'X/ PARAMETER NOTES$K_KEYWORD_X_NOTE = '00000054'X. PARAMETER NOTES$K_CLASS_X_ENTRY = '00000055'X. PARAMETER NOTES$K_ENTRY_X_CLASS = '00000056'X0 PARAMETER NOTES$K_ENTRY_X_KEYWORD = '00000057'X' PARAMETER NOTES$K_DELIF0 = '00000058'X) PARAMETER NOTES$K_UNIENTRY = '00000059'X1 PARAMETER NOTES$K_ENTRY_UNSEEN_EST = '0000005A'X2 PARAMETER NOTES$K_ENTRY_LAST_STATUS = '0000005B'X/ PARAMETER NOTES$K_NOTE_CAN_REPLY = '0000005C'X3 PARAMETER NOTES$K_NOTE_BEFORE_TIME_A = '0000005D'X3 PARAMETER NOTES$K_NOTE_CREATE_TIME_A = '0000005E'X2 PARAMETER NOTES$K_NOTE_SINCE_TIME_A = '0000005F'X7 PARAMETER NOTES$K_NOTEFILE_CREATE_TIME_A = '00000060'X3 PARAMETER NOTES$K_NOTEFILE_LASTREV_A = '00000061'X6 PARAMETER NOTES$K_NOTE_HINT_GET_KEYWORD = '00000062'X6 PARAMETER NOTES$K_KEYWORD_HINT_GET_NOTE = '00000063'X0 PARAMETER NOTES$K_SERVER_MAX_ITEM = '00000064'X5 PARAMETER NOTES$K_CLASS_HINT_GET_ENTRY = '00000065'X0 PARAMETER NOTES$K_CLASS_USER_AREA = '00000066'X* PARAMETER NOTES$K_CLASS_UID = '00000067'X5 PARAMETER NOTES$K_ENTRY_HINT_GET_CLASS = '00000068'X7 PARAMETER NOTES$K_ENTRY_HINT_GET_KEYWORD = '00000069'X2 PARAMETER NOTES$K_ENTRY_OBJECT_NAME = '0000006A'X2 PD$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.FOR;1NH?"ARAMETER NOTES$K_ENTRY_OBJECT_SPEC = '0000006B'X* PARAMETER NOTES$K_ENTRY_UID = '0000006C'X2 PARAMETER NOTES$K_KEYWORD_USER_AREA = '0000006D'X, PARAMETER NOTES$K_KEYWORD_UID = '0000006E'X* PARAMETER NOTES$K_NODE_NAME = '0000006F'X0 PARAMETER NOTES$K_NODE_X_USERNAME = '00000070'X, PARAMETER NOTES$K_NOTE_NEW_ID = '00000071'X* PARAMETER NOTES$K_NOTE_TYPE = '00000072'X4 PARAMETER NOTES$K_NOTEFILE_REPLY_ONLY = '00000073'X2 PARAMETER NOTES$K_PROFILE_USER_AREA = '00000074'X1 PARAMETER NOTES$K_USER_ACCESS_LIST = '00000075'X2 PARAMETER NOTES$K_USER_WRITE_BYPASS = '00000076'X/ PARAMETER NOTES$K_USER_USER_AREA = '00000077'X) PARAMETER NOTES$K_USER_UID = '00000078'X. PARAMETER NOTES$K_USER_NOACCESS = '00000079'X) PARAMETER NOTES$K_MAX_ITEM = '0000007A'X3 PARAMETER NOTES$K_NOTEFILE_WRITELOCK = '0000001B'X1 PARAMETER NOTES$K_USER_ACCESS_NODE = '0000006F'X, PARAMETER NOTES$K_USER_ACCESS = '00000075'X* PARAMETER NOTES$K_BASE_NOTE = '00000001'X+ PARAMETER NOTES$K_REPLY_NOTE = '00000002'X- PARAMETER NOTES$K_UNKNOWN_TYPE = '00000000'X* PARAMETER NOTES$K_DDIF_TYPE = '00000001'X+ PARAMETER NOTES$K_ASCII_TYPE = '00000002'X. PARAMETER NOTES$K_RESERVED_TYPE = '00000003'X. PARAMETER NOTES$K_WPS_PLUS_TYPE = '00000004'X* PARAMETER NOTES$K_TLV_INPUT = '00001001'X+ PARAMETER NOTES$K_TLV_OUTPUT = '00001002'X& PARAMETER NOTES$K_CHAIN = '0000FFFF'X% PARAMETER NOTES$K_NOOP = '0000FFFE'X INTEGER*4 NOTES$NOTES EXTERNAL NOTES$NOTES INTEGER*4 NOTES$NOTEFILE_BEGIN EXTERNAL NOTES$NOTEFILE_BEGIN" INTEGER*4 NOTES$NOTEFILE_GET_INFO! EXTERNAL NOTES$NOTEFILE_GET_INFO INTEGER*4 NOTES$NOTEFILE_MODIFY EXTERNAL NOTES$NOTEFILE_MODIFY$ INTEGER*4 NOTES$NOTEFILE_LIST_BEGIN# EXTERNAL NOTES$NOTEFILE_LIST_BEGIN INTEGER*4 NOTES$NOTEFILE_LIST EXTERNAL NOTES$NOTEFILE_LIST INTEGER*4 NOTES$NOTEFILE_END EXTERNAL NOTES$NOTEFILE_END INTEGER*4 NOTES$CLASS_BEGIN EXTERNAL NOTES$CLASS_BEGIN INTEGER*4 NOTES$CLASS_ADD EXTERNAL NOTES$CLASS_ADD INTEGER*4 NOTES$CLASS_DELETE EXTERNAL NOTES$CLASS_DELETE INTEGER*4 NOTES$CLASS_GET EXTERNAL NOTES$CLASS_GET INTEGER*4 NOTES$CLASS_GET_ENTRY EXTERNAL NOTES$CLASS_GET_ENTRY INTEGER*4 NOTES$CLASS_MODIFY EXTERNAL NOTES$CLASS_MODIFY INTEGER*4 NOTES$CLASS_END EXTERNAL NOTES$CLASS_END INTEGER*4 NOTES$ENTRY_BEGIN EXTERNAL NOTES$ENTRY_BEGIN INTEGER*4 NOTES$ENTRY_ADD EXTERNAL NOTES$ENTRY_ADD INTEGER*4 NOTES$ENTRY_DELETE EXTERNAL NOTES$ENTRY_DELETE INTEGER*4 NOTES$ENTRY_GET EXTERNAL NOTES$ENTRY_GET INTEGER*4 NOTES$ENTRY_GET_CLASS EXTERNAL NOTES$ENTRY_GET_CLASS" INTEGER*4 NOTES$ENTRY_GET_KEYWORD! EXTERNAL NOTES$ENTRY_GET_KEYWORD INTEGER*4 NOTES$ENTRY_MODIFY EXTERNAL NOTES$ENTRY_MODIFY INTEGER*4 NOTES$ENTRY_UPDATE EXTERNAL NOTES$ENTRY_UPDATE INTEGER*4 NOTES$ENTRY_END EXTERNAL NOTES$ENTRY_END INTEGER*4 NOTES$KEYWORD_BEGIN EXTERNAL NOTES$KEYWORD_BEGIN INTEGER*4 NOTES$KEYWORD_ADD EXTERNAL NOTES$KEYWORD_ADD INTEGER*4 NOTES$KEYWORD_DELETE EXTERNAL NOTES$KEYWORD_DELETE INTEGER*4 NOTES$KEYWORD_GET EXTERNAL NOTES$KEYWORD_GET! INTEGER*4 NOTES$KEYWORD_GET_NOTE EXTERNAL NOTES$KEYWORD_GET_NOTE INTEGER*4 NOTES$KEYWORD_MODIFY EXTERNAL NOTES$KEYWORD_MODIFY INTEGER*4 NOTES$KEYWORD_END EXTERNAL NOTES$KEYWORD_END INTEGER*4 NOTES$NOTE_BEGIN EXTERNAL NOTES$NOTE_BEGIN INTEGER*4 NOTES$NOTE_ADD EXTERNAL NOTES$NOTE_ADD INTEGER*4 NOTES$NOTE_ADD_TEXT EXTERNAL NOTES$NOTE_ADD_TEXT INTEGER*4 NOTES$NOTE_DELETE EXTERNAL NOTES$NOTE_DELETE INTEGER*4 NOTES$NOTE_GET EXTERNAL NOTES$NOTE_GET! INTEGER*4 NOTES$NOTE_GET_KEYWORD EXTERNAL NOTES$NOTE_GET_KEYWORD INTEGER*4 NOTES$NOTE_GET_TEXT EXTERNAL NOTES$NOTE_GET_TEXT INTEGER*4 NOTES$NOTE_MODIFY EXTERNAL NOTES$NOTE_MODIFY INTEGER*4 NOTES$NOTE_END EXTERNAL NOTES$NOTE_END INTEGER*4 NOTES$PROFILE_BEGIN EXTERNAL NOTES$PROFILE_BEGIN INTEGER*4 NOTES$PROFILE_GET EXTERNAL NOTES$PROFILE_GET INTEGER*4 NOTES$PROFILE_MODIFY EXTERNAL NOTES$PROFILE_MODIFY INTEGER*4 NOTES$PROFILE_END EXTERNAL NOTES$PROFILE_END INTEGER*4 NOTES$USER_BEGIN EXTERNAL NOTES$USER_BEGIN INTEGER*4 NOTES$USER_ADD EXTERNAL NOTES$USER_ADD INTEGER*4 NOTES$USER_DELETE EXTERNAL NOTES$USER_DELETE INTEGER*4 NOTES$USER_GET EXTERNAL NOTES$USER_GET INTEGER*4 NOTES$USER_MODIFY EXTERNAL NOTES$USER_MODIFY INTEGER*4 NOTES$USER_END EXTERNAL NOTES$USER_END!DEC$ END OPTIONS !*** MODULE $NOTESMSGDEF ***:!DEC$ OPTIONS/ALIGN=(RECORDS=PACKED,COMMONS=PACKED)/NOWARN( PARAMETER NOTES$_FACILITY = '000003FB'X& PARAMETER NOTES$_NORMAL = '03FB8009'X) PARAMETER NOTES$_CMDKEYENA = '03FB8011'X) PARAMETER NOTES$_NUMKEYENA = '03FB8019'X+ PARAMETER NOTES$_PROFILE_MOD = '03FB8021'X, PARAMETER NOTES$_PROFILE_TEMP = '03FB8029'X( PARAMETER NOTES$_MODERATE = '03FB8031'X* PARAMETER NOTES$_NOMODERATE = '03FB8039'X+ PARAMETER NOTES$_ENTRY_ADDED = '03FB8041'X/ PARAMETER NOTES$_KEYWORD_ADDNOTE = '03FB8049'X, PARAMETER NOTES$_MARKER_ADDED = '03FB8051'X, PARAMETER NOTES$_MEMBER_ADDED = '03FB8059'X/ PARAMETER NOTES$_KEYWORD_CREATED = '03FB8061'X- PARAMETER NOTES$_ENTRY_DELETED = '03FB8069'X/ PARAMETER NOTES$_KEYWORD_DELETED = '03FB8071'X/ PARAMETER NOTES$_KEYWORD_DELNOTE = '03FB8079'X. PARAMETER NOTES$_MARKER_DELETED = '03FB8081'X, PARAMETER NOTES$_NOTE_DELETED = '03FB8089'X. PARAMETER NOTES$_MEMBER_DELETED = '03FB8091'X- PARAMETER NOTES$_NOTE_MODIFIED = '03FB8099'X. PARAMETER NOTES$_ENTRY_MODIFIED = '03FB80A1'X0 PARAMETER NOTES$_KEYWORD_MODIFIED = '03FB80A9'X/ PARAMETER NOTES$_MEMBER_MODIFIED = '03FB80B1'X) PARAMETER NOTES$_CLASS_SET = '03FB80B9'X+ PARAMETER NOTES$_INSERT_MODE = '03FB80C1'X/ PARAMETER NOTES$_OVERSTRIKE_MODE = '03FB80C9'X. PARAMETER NOTES$_ENTRY_DELCLASS = '03FB80D1'X. PARAMETER NOTES$_SPACE_COMPRESS = '03FB80D9'X, PARAMETER NOTES$_ENTRY_ADDED2 = '03FB80E1'X, PARAMETER NOTES$_OBJECT_ADDED = '03FB80E9'X. PARAMETER NOTES$_OBJECT_DELETED = '03FB80F1'X/ PARAMETER NOTES$_OBJECT_MODIFIED = '03FB80F9'X) PARAMETER NOTES$_MORE_INFO = '03FB9003'X. PARAMETER NOTES$_SRV_NEWPROTUPD = '03FB900B'X- PARAMETER NOTES$_ENTRY_ABORTED = '03FB9013'X+ PARAMETER NOTES$_NOTES_WRFIL = '03FB901B'X+ PARAMETER NOTES$_NOTES_WRBUF = '03FB9023'X( PARAMETER NOTES$_DIRTOBUF = '03FB902B'X) PARAMETER NOTES$_DIRTOFILE = '03FB9033'X& PARAMETER NOTES$_HIDDEN = '03FB903B'X) PARAMETER NOTES$_OPEN_CONF = '03FB9043'X+ PARAMETER NOTES$_UPDATE_CONF = '03FB904B'X) PARAMETER NOTES$_MARKSUPER = '03FB9053'X* PARAMETER NOTES$_OPEN_CONF2 = '03FB905B'X- PARAMETER NOTES$_BEING_WRITTEN = '03FB9063'X) PARAMETER NOTES$_USING_EDT = '03FB906B'X' PARAMETER NOTES$_HELPBUF = '03FB9073'X' PARAMETER NOTES$_HELPHDR = '03FB907B'X' PARAMETER NOTES$_HELPNXT = '03FB9083'X( PARAMETER NOTES$_HELPASK1 = '03FB908B'X( PARAMETER NOTES$_HELPASK2 = '03FB9093'X' PARAMETER NOTES$_HELPTOP = '03FB909B'X' PARAMETER NOTES$_HELPBOT = '03FB90A3'X' PARAMETER NOTES$_ENTRYID = '03FB90AB'X& PARAMETER NOTES$_NOTEID = '03FB90B3'X& PARAMETER NOTES$_TOPICS = '03FB90BB'X& PARAMETER NOTES$_UNSEEN = '03FB90C3'X* PARAMETER NOTES$_TOTALNOTES = '03FB90CB'X( PARAMETER NOTES$_DATELINE = '03FB90D3'X( PARAMETER NOTES$_ONECLASS = '03FB90DB'X+ PARAMETER NOTES$_MANYCLASSES = '03FB90E3'X' PARAMETER NOTES$_TITLEID = '03FB90EB'X( PARAMETER NOTES$_NOTICEID = '03FB90F3'X* PARAMETER NOTES$_CONFCREUPD = '03FB90FB'X( PARAMETER NOTES$_MAILSUBJ = '03FB9103'X& PARAMETER NOTES$_FILEID = '03FB910B'X+ PARAMETER NOTES$_MODERATORID = '03FB9113'X/ PARAMETER NOTES$_OLD_ALREXISTS_A = '03FB911B'X- PARAMETER NOTES$_OLD_INVACCNAM = '03FB9123'X* PARAMETER NOTES$_LOCATIONID = '03FB912B'X+ PARAMETER NOTES$_CONF_BANNER = '03FB9133'X+ PARAMETER NOTES$_READ_BANNER = '03FB913B'X, PARAMETER NOTES$_TOPIC_BANNER = '03FB9143'X, PARAMETER NOTES$_REPLY_BANNER = '03FB914B'X+ PARAMETER NOTES$_INFO_BANNER = '03FB9153'X+ PARAMETER NOTES$_CREATE_CONF = '03FB915B'X, PARAMETER NOTES$_UPDATE_ENTRY = '03FB9163'X+ PARAMETER NOTES$_GETTING_DIR = '03FB916B'X, PARAMETER NOTES$_GETTING_NOTE = '03FB9173'X, PARAMETER NOTES$_EXTRACT_NOTE = '03FB917B'X* PARAMETER NOTES$_PRINT_NOTE = '03FB9183'X* PARAMETER NOTES$_SEARCH_FOR = '03FB918B'X+ PARAMETER NOTES$_SEARCH_NEXT = '03FB9193'X- PARAMETER NOTES$_DELETING_NOTE = '03FB919B'X( PARAMETER NOTES$_AUTHORID = '03FB91A3'X' PARAMETER NOTES$_TOPICID = '03FB91AB'X) PARAMETER NOTES$_KEYWORDID = '03FB91B3'X, PARAMETER NOTES$_CONFERENCEID = '03FB91BB'X( PARAMETER NOTES$_ATTRIBID = '03FB91C3'X+ PARAMETER NOTES$_WRITELOCKID = '03FB91CB'X( PARAMETER NOTES$_HIDDENID = '03FB91D3'X, PARAMETER NOTES$_GRAPHIC_VIEW = '03FB91DB'X, PARAMETER NOTES$_UNKN$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.FOR;1NH " OWN_VIEW = '03FB91E3'X+ PARAMETER NOTES$_DDIF_FORMAT = '03FB91EB'X) PARAMETER NOTES$_PS_FORMAT = '03FB91F3'X) PARAMETER NOTES$_USEFILEID = '03FB91FB'X) PARAMETER NOTES$_COPYRIGHT = '03FB9203'X. PARAMETER NOTES$_SRV_OLDPROTUPD = '03FBA000'X/ PARAMETER NOTES$_NO_MORE_CLASSES = '03FBA008'X/ PARAMETER NOTES$_NO_MORE_ENTRIES = '03FBA010'X0 PARAMETER NOTES$_NO_MORE_KEYWORDS = '03FBA018'X- PARAMETER NOTES$_NO_MORE_NOTES = '03FBA020'X, PARAMETER NOTES$_NO_MORE_TEXT = '03FBA028'X- PARAMETER NOTES$_NO_MORE_USERS = '03FBA030'X** PARAMETER NOTES$_NONOTEBOOK = '03FBA038'X( PARAMETER NOTES$_NOERRTXT = '03FBA040'X, PARAMETER NOTES$_NEEDNBMODIFY = '03FBA048'X' PARAMETER NOTES$_MSGSEND = '03FBA050'X * PARAMETER NOTES$_ENTERINTRO = '03FBA058'X) PARAMETER NOTES$_CTRLZMAIL = '03FBA060'Xa* PARAMETER NOTES$_NOTREADING = '03FBA068'X/ PARAMETER NOTES$_NO_MORE_REPLIES = '03FBA070'X * PARAMETER NOTES$_ANSWER_YES = '03FBA078'X( PARAMETER NOTES$_EOB_TEXT = '03FBA080'X) PARAMETER NOTES$_PRESS_PF2 = '03FBA088'Xs* PARAMETER NOTES$_NOTES_HDR1 = '03FBA090'X- PARAMETER NOTES$_PRESS_CTRLZ_N = '03FBA098'Xe. PARAMETER NOTES$_SET_CONFERENCE = '03FBA0A0'X+ PARAMETER NOTES$_ENTER_TITLE = '03FBA0A8'Xo, PARAMETER NOTES$_PRESS_RETURN = '03FBA0B0'X- PARAMETER NOTES$_PRESS_ANY_KEY = '03FBA0B8'Xe( PARAMETER NOTES$_DIR_HEAD = '03FBA0C0'X+ PARAMETER NOTES$_ENDREQ_LIST = '03FBA0C8'X - PARAMETER NOTES$_NOTE_END_TEXT = '03FBA0D0'X ) PARAMETER NOTES$_TEXT_NOTE = '03FBA0D8'X * PARAMETER NOTES$_TEXT_REPLY = '03FBA0E0'X% PARAMETER NOTES$_NO_NB = '03FBA0E8'Xf' PARAMETER NOTES$_YOUR_SP = '03FBA0F0'Xh- PARAMETER NOTES$_NOTE_COMPLETE = '03FBA0F8'X + PARAMETER NOTES$_NOTE_NOTEXT = '03FBA100'Xq) PARAMETER NOTES$_NOREPLIES = '03FBA108'X ) PARAMETER NOTES$_ONE_REPLY = '03FBA110'X , PARAMETER NOTES$_MANY_REPLIES = '03FBA118'X& PARAMETER NOTES$_N_OF_N = '03FBA120'X, PARAMETER NOTES$_ENTER_CTITLE = '03FBA128'X+ PARAMETER NOTES$_DELETE_NOTE = '03FBA130'X * PARAMETER NOTES$_NOTENOTDEL = '03FBA138'X, PARAMETER NOTES$_FINDING_HELP = '03FBA140'X) PARAMETER NOTES$_NOKEYHELP = '03FBA148'X ) PARAMETER NOTES$_NOTESQADD = '03FBA150'X** PARAMETER NOTES$_REALLYQUIT = '03FBA158'X+ PARAMETER NOTES$_MAILNOTSENT = '03FBA160'XI( PARAMETER NOTES$_NUMNOTES = '03FBA168'X& PARAMETER NOTES$_SENDTO = '03FBA170'X' PARAMETER NOTES$_SUBJECT = '03FBA178'X , PARAMETER NOTES$_PROFILE_USER = '03FBA180'X) PARAMETER NOTES$_MORE_TEXT = '03FBA188'X + PARAMETER NOTES$_SHOW_MARK_1 = '03FBA190'X'+ PARAMETER NOTES$_SHOW_MARK_2 = '03FBA198'XN+ PARAMETER NOTES$_SHOW_MARK_3 = '03FBA1A0'XU* PARAMETER NOTES$_SHOW_ENTRY = '03FBA1A8'X. PARAMETER NOTES$_SHOW_PROF_EDIT = '03FBA1B0'X0 PARAMETER NOTES$_SHOW_PROF_DCLASS = '03FBA1B8'X/ PARAMETER NOTES$_SHOW_PROF_PRINT = '03FBA1C0'XS. PARAMETER NOTES$_SHOW_PROF_NAME = '03FBA1C8'X. PARAMETER NOTES$_SHOW_PROF_AUTO = '03FBA1D0'X. PARAMETER NOTES$_SHOW_PROF_ADIR = '03FBA1D8'X. PARAMETER NOTES$_SHOW_PROF_AUNS = '03FBA1E0'X. PARAMETER NOTES$_SHOW_PROF_NONE = '03FBA1E8'X+ PARAMETER NOTES$_ENDREQ_SHOW = '03FBA1F0'XT- PARAMETER NOTES$_CTRLZ_COM_RET = '03FBA1F8'XT- PARAMETER NOTES$_SHOW_ENT_CONF = '03FBA200'XM- PARAMETER NOTES$_SHOW_ENT_FILE = '03FBA208'XP* PARAMETER NOTES$_SHOW_CLASS = '03FBA210'X- PARAMETER NOTES$_SHOW_CONF_MOD = '03FBA218'X0/ PARAMETER NOTES$_SHOW_CONF_RESA1 = '03FBA220'X0/ PARAMETER NOTES$_SHOW_CONF_RESA2 = '03FBA228'X0/ PARAMETER NOTES$_SHOW_CONF_RESK1 = '03FBA230'X1/ PARAMETER NOTES$_SHOW_CONF_RESK2 = '03FBA238'X+ PARAMETER NOTES$_SHOW_KEYW_1 = '03FBA240'X+ PARAMETER NOTES$_SHOW_KEYW_2 = '03FBA248'X'( PARAMETER NOTES$_SHOW_MOD = '03FBA250'X- PARAMETER NOTES$_SHOW_MOD_NODE = '03FBA258'X - PARAMETER NOTES$_SHOW_MOD_USER = '03FBA260'XT. PARAMETER NOTES$_SHOW_USER_MADR = '03FBA268'X. PARAMETER NOTES$_SHOW_USER_PRIV = '03FBA270'X. PARAMETER NOTES$_SHOW_USER_JOIN = '03FBA278'X- PARAMETER NOTES$_SHOW_NOTE_HID = '03FBA280'XN- PARAMETER NOTES$_SHOW_NOTE_VIS = '03FBA288'XO. PARAMETER NOTES$_SHOW_NOTE_REP1 = '03FBA290'X. PARAMETER NOTES$_SHOW_NOTE_REP2 = '03FBA298'X. PARAMETER NOTES$_SHOW_PROF_PERM = '03FBA2A0'X. PARAMETER NOTES$_SHOW_USER_FULL = '03FBA2A8'X. PARAMETER NOTES$_SHOW_MODU_FULL = '03FBA2B0'X# PARAMETER NOTES$_NMF = '03FBA2B8'XT# PARAMETER NOTES$_NJU = '03FBA2C0'XR/ PARAMETER NOTES$_NO_MORE_MARKERS = '03FBA2C8'XR( PARAMETER NOTES$_SEARCHF1 = '03FBA2D0'X( PARAMETER NOTES$_SEARCHF2 = '03FBA2D8'X( PARAMETER NOTES$_DIR_CONF = '03FBA2E0'X. PARAMETER NOTES$_DIR_CONF_TITLE = '03FBA2E8'X( PARAMETER NOTES$_N_TOPICS = '03FBA2F0'X, PARAMETER NOTES$_DIR_NB_CLASS = '03FBA2F8'X, PARAMETER NOTES$_CTRLZ_CANCEL = '03FBA300'X+ PARAMETER NOTES$_REPBUFINFO1 = '03FBA308'XT+ PARAMETER NOTES$_REPBUFINFO2 = '03FBA310'X* PARAMETER NOTES$_NMORELINES = '03FBA318'X+ PARAMETER NOTES$_READINGCONF = '03FBA320'X'+ PARAMETER NOTES$_WILLNOTSEND = '03FBA328'XE' PARAMETER NOTES$_WORKING = '03FBA330'XF* PARAMETER NOTES$_FILECREUPD = '03FBA338'X) PARAMETER NOTES$_ENTERNOTE = '03FBA340'XM% PARAMETER NOTES$_ANDTO = '03FBA348'X7* PARAMETER NOTES$_SENDANYWAY = '03FBA350'X( PARAMETER NOTES$_SPAWNKEY = '03FBA358'X' PARAMETER NOTES$_CALLKEY = '03FBA360'XS' PARAMETER NOTES$_EDICALL = '03FBA368'XR( PARAMETER NOTES$_EDISPAWN = '03FBA370'X+ PARAMETER NOTES$_SPELLSELECT = '03FBA378'X + PARAMETER NOTES$_SPELLBUFFER = '03FBA380'XN* PARAMETER NOTES$_SPELLSTART = '03FBA388'X) PARAMETER NOTES$_SPELLDONE = '03FBA390'XN, PARAMETER NOTES$_SENDING_MAIL = '03FBA398'X( PARAMETER NOTES$_SENDBOTH = '03FBA3A0'X( PARAMETER NOTES$_NONESENT = '03FBA3A8'X+ PARAMETER NOTES$_SENT_TO_ALL = '03FBA3B0'XE/ PARAMETER NOTES$_SHOW_CONF_RESW1 = '03FBA3B8'XE/ PARAMETER NOTES$_SHOW_CONF_RESW2 = '03FBA3C0'XO* PARAMETER NOTES$_TEXT_TOPIC = '03FBA3C8'X* PARAMETER NOTES$_MEMBERS_OF = '03FBA3D0'X+ PARAMETER NOTES$_DEF_SUBJECT = '03FBA3D8'XR, PARAMETER NOTES$_MAIL_SUBJECT = '03FBA3E0'X+ PARAMETER NOTES$_TEXT_APPEND = '03FBA3E8'XX. PARAMETER NOTES$_NEVER_ACCESSED = '03FBA3F0'X' PARAMETER NOTES$_EXPIRED = '03FBA3F8'X0) PARAMETER NOTES$_ANSWER_NO = '03FBA400'X0) PARAMETER NOTES$_WRONG_ANS = '03FBA408'X=) PARAMETER NOTES$_CREATEBUF = '03FBA410'XO( PARAMETER NOTES$_WRITEBUF = '03FBA418'X- PARAMETER NOTES$_SHOW_PROF_DEF = '03FBA420'XN) PARAMETER NOTES$_ASK_YESNO = '03FBA428'XN( PARAMETER NOTES$_MODPRIVS = '03FBA430'X, PARAMETER NOTES$_SHOW_ENT_OBJ = '03FBA438'X) PARAMETER NOTES$_CANCELLED = '03FBA440'X0. PARAMETER NOTES$_SHOW_CONF_RESR = '03FBA448'X" PARAMETER NOTES$_CC = '03FBA450'X- PARAMETER NOTES$_MODERATORS_OF = '03FBA458'XC+ PARAMETER NOTES$_ALREXISTS_A = '03FBA460'XK) PARAMETER NOTES$_INVACCNAM = '03FBA468'XT) PARAMETER NOTES$_ILLCTXADR = '03FBC002'XT( PARAMETER NOTES$_WRONGCTX = '03FBC00A'X) PARAMETER NOTES$_INVITMCOD = '03FBC013'XT) PARAMETER NOTES$_INVITMLEN = '03FBC01A'X) PARAMETER NOTES$_MISREQITM = '03FBC022'X0) PARAMETER NOTES$_NOCURNOTE = '03FBC02A'X , PARAMETER NOTES$_CANTCONTINUE = '03FBC032'X) PARAMETER NOTES$_FAILGETVM = '03FBC03A'XT* PARAMETER NOTES$_STRCOPYERR = '03FBC042'X) PARAMETER NOTES$_ILLNOTEID = '03FBC04A'XR* PARAMETER NOTES$_NOSUCHNOTE = '03FBC052'X* PARAMETER NOTES$_SRV_NOINIT = '03FBC05A'X* PARAMETER NOTES$_SRV_INVSEQ = '03FBC062'X- PARAMETER NOTES$_SRV_NOCONTEXT = '03FBC06A'XS. PARAMETER NOTES$_SRV_NOUSERNAME = '03FBC072'X+ PARAMETER NOTES$_SRV_INVITEM = '03FBC07A'XR) PARAMETER NOTES$_CREPRIJOB = '03FBC082'X0' PARAMETER NOTES$_PREMEOF = '03FBC08A'XA+ PARAMETER NOTES$_NOPRIVDEL_N = '03FBC092'X=- PARAMETER NOTES$_NOPRIVWRITE_N = '03FBC09A'X_- PARAMETER NOTES$_SRV_UNRECPROT = '03FBC0A2'XH* PARAMETER NOTES$_NOFILEOPEN = '03FBC0AA'X- PARAMETER NOTES$_ALREXISTS_OLD = '03FBC0B2'XT+ PARAMETER NOTES$_NOSUCHENTRY = '03FBC0BA'XP) PARAMETER NOTES$_MUST_OPEN = '03FBC0C2'XP/ PARAMETER NOTES$_MUST_READ_REPLY = '03FBC0CA'X1 PARAMETER NOTES$_MUST_READ_FORWARD = '03FBC0D2'XM1 PARAMETER NOTES$_NOT_ENTERING_NOTE = '03FBC0DA'XT0 PARAMETER NOTES$_NONOTE_SPECIFIED = '03FBC0E2'X- PARAMETER NOTES$_ERROR_MAILING = '03FBC0EA'XS/ PARAMETER NOTES$_NOPREVIOUS_NOTE = '03FBC0F2'XT1 PARAMETER NOTES$_ALREADY_IN_EDITOR = '03FBC0FA'XP0 PARAMETER NOTES$_ALREADY_IN_NOTES = '03FBC102'X5 PARAMETER NOTES$_MUST_COMPLETE_MESSAGE = '03FBC10A'XE. PARAMETER NOTES$_UNREC_CALLUSER = '03FBC112'X- PARAMETER NOTES$_NO_SUCH_CLASS = '03FBC11A'XS- PARAMETER NOTES$_NO_SUCH_ENTRY = '03FBC122'XU/ PARAMETER NOTES$_NO_SUCH_KEYWORD = '03FBC12A'XX, PARAMETER NOTES$_NO_SUCH_NOTE = '03FBC132'X, PARAMETER NOTES$_NO_SUCH_USER = '03FBC13A'X- PARAMETER NOTES$_NOMORE_RECALL = '03FBC142'XN, PARAMETER NOTES$_EDIT_OR_FILE = '03FBC14A'X& PARAMETER NOTES$_NOMAIL = '03FBC152'X* PARAMETER NOTES$_ERRORWRITE = '03FBC15A'X* P ^$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.FOR;1NHL1ARAMETER NOTES$_NOMAILPROC = '03FBC162'X# PARAMETER NOTES$_IFF = '03FBC16A'X1& PARAMETER NOTES$_NOPRIV = '03FBC172'X, PARAMETER NOTES$_CTRLC_CANCEL = '03FBC17A'X) PARAMETER NOTES$_ERRCREKEY = '03FBC182'XE* PARAMETER NOTES$_ERRADDMARK = '03FBC18A'X) PARAMETER NOTES$_ERRADDMEM = '03FBC192'XU) PARAMETER NOTES$_ERRADDENT = '03FBC19A'X=) PARAMETER NOTES$_ERRDELENT = '03FBC1A2'X0* PARAMETER NOTES$_ERRDELMARK = '03FBC1AA'X, PARAMETER NOTES$_ERRDELMEMBER = '03FBC1B2'X* PARAMETER NOTES$_ERRMODNOTE = '03FBC1BA'X+ PARAMETER NOTES$_ERRMODENTRY = '03FBC1C2'XE- PARAMETER NOTES$_ERRMODKEYWORD = '03FBC1CA'XY* PARAMETER NOTES$_ERRACCLIST = '03FBC1D2'X' PARAMETER NOTES$_NOWRITE = '03FBC1DA'XO, PARAMETER NOTES$_NOSUCHMARKER = '03FBC1E2'X+ PARAMETER NOTES$_NOPRIVMOD_N = '03FBC1EA'XI+ PARAMETER NOTES$_ALREXISTS_C = '03FBC1F2'X$+ PARAMETER NOTES$_ALREXISTS_E = '03FBC1FA'XE+ PARAMETER NOTES$_ALREXISTS_K = '03FBC202'XC+ PARAMETER NOTES$_ALREXISTS_U = '03FBC20A'XR+ PARAMETER NOTES$_ALREXISTS_M = '03FBC212'X_. PARAMETER NOTES$_NO_SUCH_MARKER = '03FBC21A'X) PARAMETER NOTES$_NOMEMBERS = '03FBC222'XE) PARAMETER NOTES$_NOTMEMBER = '03FBC22A'XT- PARAMETER NOTES$_BASEWRITELOCK = '03FBC232'XS, PARAMETER NOTES$_NOWRITE_CONF = '03FBC23A'X* PARAMETER NOTES$_SPELLERROR = '03FBC242'X) PARAMETER NOTES$_PNINVCHAR = '03FBC24A'XR) PARAMETER NOTES$_SENDNOAUT = '03FBC252'XD, PARAMETER NOTES$_INVCLASSNAME = '03FBC25A'X- PARAMETER NOTES$_CLASSNOTFOUND = '03FBC262'X( PARAMETER NOTES$_FORWLOOP = '03FBC26A'X, PARAMETER NOTES$_BAD_DIR_LINE = '03FBC272'X) PARAMETER NOTES$_NO_SELECT = '03FBC27A'X+ PARAMETER NOTES$_NOTE_NOCONF = '03FBC282'X4, PARAMETER NOTES$_UNREC_EDITOR = '03FBC28A'X) PARAMETER NOTES$_NO_CLASSP = '03FBC292'XR) PARAMETER NOTES$_NMTHISDIR = '03FBC29A'XT+ PARAMETER NOTES$_NO_NEW_NOTE = '03FBC2A2'X4- PARAMETER NOTES$_CAPTIVE_SPAWN = '03FBC2AA'XE. PARAMETER NOTES$_NOTHING_TO_SET = '03FBC2B2'X* PARAMETER NOTES$_NOHELPTERM = '03FBC2BA'X) PARAMETER NOTES$_INVENTNAM = '03FBC2C2'XT) PARAMETER NOTES$_INVCLANAM = '03FBC2CA'XE, PARAMETER NOTES$_INVENTRYNAME = '03FBC2D2'X1 PARAMETER NOTES$_NO_ENTRY_IN_CLASS = '03FBC2DA'XS2 PARAMETER NOTES$_ALREXISTS_IN_CLASS = '03FBC2E2'X) PARAMETER NOTES$_NOMARKERS = '03FBC2EA'X$* PARAMETER NOTES$_NOKEYWORDS = '03FBC2F2'X) PARAMETER NOTES$_NOLICENSE = '03FBC2FA'XS& PARAMETER NOTES$_NOFILE = '03FBC302'X% PARAMETER NOTES$_NOEDT = '03FBC30A'X ' PARAMETER NOTES$_NOENTRY = '03FBC312'XT% PARAMETER NOTES$_NOEVE = '03FBC31A'X( PARAMETER NOTES$_TPUERROR = '03FBC322'X1 PARAMETER NOTES$_ENTALR_IN_CLASSES = '03FBC32A'XT. PARAMETER NOTES$_NO_RANGE_ALLOW = '03FBC332'X( PARAMETER NOTES$_NOTINCMD = '03FBC33A'X/ PARAMETER NOTES$_CONF_REPLY_ONLY = '03FBC342'X$) PARAMETER NOTES$_USRNOTADD = '03FBC34A'XE) PARAMETER NOTES$_INVKEYNAM = '03FBC352'XO. PARAMETER NOTES$_INVKEYWORDNAME = '03FBC35A'X) PARAMETER NOTES$_INVMRKNAM = '03FBC362'XR- PARAMETER NOTES$_INVMARKERNAME = '03FBC36A'XE) PARAMETER NOTES$_INVUSRNAM = '03FBC372'XT+ PARAMETER NOTES$_INVUSERNAME = '03FBC37A'X+ PARAMETER NOTES$_INVNOTESPEC = '03FBC382'X$/ PARAMETER NOTES$_RANGE_ONE_TOPIC = '03FBC38A'X - PARAMETER NOTES$_RANGE_TOO_BIG = '03FBC392'XE( PARAMETER NOTES$_NO_TOPIC = '03FBC39A'X+ PARAMETER NOTES$_ALREXISTS_N = '03FBC3A2'XG* PARAMETER NOTES$_NONOTESMOD = '03FBC3AA'X/ PARAMETER NOTES$_MEMBERNAME_NODE = '03FBC3B2'XO( PARAMETER NOTES$_CONFQUAL = '03FBC3BA'X, PARAMETER NOTES$_OPRNOTSUPCNF = '03FBC3C2'X' PARAMETER NOTES$_BADTIME = '03FBC3CA'XP* PARAMETER NOTES$_INVOBJNAME = '03FBC3D2'X- PARAMETER NOTES$_INVOBJECTNAME = '03FBC3DA'XN( PARAMETER NOTES$_NOATTRIB = '03FBC3E2'X( PARAMETER NOTES$_NOOBJECT = '03FBC3EA'X) PARAMETER NOTES$_NOSUCHOBJ = '03FBC3F2'XM( PARAMETER NOTES$_LWKERROR = '03FBC3FA'X- PARAMETER NOTES$_NOLINKLICENSE = '03FBC402'XT) PARAMETER NOTES$_NOTNETWRK = '03FBF004'XT* PARAMETER NOTES$_WRONG_ACCT = '03FBF00C'X, PARAMETER NOTES$_SRV_INIT_ERR = '03FBF014'X) PARAMETER NOTES$_WRONG_LMF = '03FBF01C'X!DEC$ END OPTIONSE R!*** MODULE SERVERDEF ***M:!DEC$ OPTIONS/ALIGN=(RECORDS=PACKED,COMMONS=PACKED)/NOWARN+ PARAMETER NOTES$K_INITIALIZE = '00000001'XT% PARAMETER NOTES$K_MORE = '00000002'XR/ PARAMETER NOTES$K_NOTEFILE_BEGIN = '00000003'XR- PARAMETER NOTES$K_NOTEFILE_END = '00000004'XR2 PARAMETER NOTES$K_NOTEFILE_GET_INFO = '00000005'X0 PARAMETER NOTES$K_NOTEFILE_MODIFY = '00000006'X4 PARAMETER NOTES$K_NOTEFILE_LIST_BEGIN = '00000007'X. PARAMETER NOTES$K_NOTEFILE_LIST = '00000008'X. PARAMETER NOTES$K_KEYWORD_BEGIN = '00000009'X, PARAMETER NOTES$K_KEYWORD_END = '0000000A'X, PARAMETER NOTES$K_KEYWORD_ADD = '0000000B'X/ PARAMETER NOTES$K_KEYWORD_DELETE = '0000000C'X_, PARAMETER NOTES$K_KEYWORD_GET = '0000000D'X1 PARAMETER NOTES$K_KEYWORD_GET_NOTE = '0000000E'X_/ PARAMETER NOTES$K_KEYWORD_MODIFY = '0000000F'XN+ PARAMETER NOTES$K_NOTE_BEGIN = '00000010'XB) PARAMETER NOTES$K_NOTE_END = '00000011'X_) PARAMETER NOTES$K_NOTE_ADD = '00000012'XT. PARAMETER NOTES$K_NOTE_ADD_TEXT = '00000013'X, PARAMETER NOTES$K_NOTE_DELETE = '00000014'X) PARAMETER NOTES$K_NOTE_GET = '00000015'XR1 PARAMETER NOTES$K_NOTE_GET_KEYWORD = '00000016'XT. PARAMETER NOTES$K_NOTE_GET_TEXT = '00000017'X, PARAMETER NOTES$K_NOTE_MODIFY = '00000018'X+ PARAMETER NOTES$K_USER_BEGIN = '00000019'XI) PARAMETER NOTES$K_USER_END = '0000001A'XI) PARAMETER NOTES$K_USER_ADD = '0000001B'XC, PARAMETER NOTES$K_USER_DELETE = '0000001C'X) PARAMETER NOTES$K_USER_GET = '0000001D'XU, PARAMETER NOTES$K_USER_MODIFY = '0000001E'X* PARAMETER NOTES$K_CLASS_ADD = '0000001F'X, PARAMETER NOTES$K_CLASS_BEGIN = '00000020'X- PARAMETER NOTES$K_CLASS_DELETE = '00000021'X * PARAMETER NOTES$K_CLASS_END = '00000022'X* PARAMETER NOTES$K_CLASS_GET = '00000023'X0 PARAMETER NOTES$K_CLASS_GET_ENTRY = '00000024'X- PARAMETER NOTES$K_CLASS_MODIFY = '00000025'XR* PARAMETER NOTES$K_ENTRY_ADD = '00000026'X, PARAMETER NOTES$K_ENTRY_BEGIN = '00000027'X- PARAMETER NOTES$K_ENTRY_DELETE = '00000028'XS* PARAMETER NOTES$K_ENTRY_END = '00000029'X* PARAMETER NOTES$K_ENTRY_GET = '0000002A'X0 PARAMETER NOTES$K_ENTRY_GET_CLASS = '0000002B'X2 PARAMETER NOTES$K_ENTRY_GET_KEYWORD = '0000002C'X- PARAMETER NOTES$K_ENTRY_MODIFY = '0000002D'XM. PARAMETER NOTES$K_PROFILE_BEGIN = '0000002E'X, PARAMETER NOTES$K_PROFILE_END = '0000002F'X, PARAMETER NOTES$K_PROFILE_GET = '00000030'X/ PARAMETER NOTES$K_PROFILE_MODIFY = '00000031'XL' PARAMETER NOTES$K_STATUS = '00000081'XE0 PARAMETER NOTES$K_REQUEST_CONTEXT = '00000082'X* PARAMETER NOTES$K_ERROR_TLV = '00000083'X, PARAMETER NOTES$K_ERROR_NARGS = '00000084'X* PARAMETER NOTES$K_ERROR_ARG = '00000085'X+ PARAMETER NOTES$K_ERROR_TEXT = '00000086'XB/ PARAMETER NOTES$K_CANCEL_REQUEST = '00000087'XE2 PARAMETER NOTES$K_REQUEST_CANCELLED = '00000088'X- PARAMETER NOTES$K_INIT_VERSION = '00002001'X3. PARAMETER NOTES$K_INIT_NODENAME = '00002002'X. PARAMETER NOTES$K_INIT_USERNAME = '00002003'X2 PARAMETER NOTES$K_INIT_CAPABILITIES = '00002004'X1 PARAMETER NOTES$K_INIT_MAXITEMCODE = '00002005'XM- PARAMETER NOTES$M_INIT_VMSMSGS = '00000001'XT STRUCTURE /CAPABILITIES/3 UNION MAP' INTEGER*4 NOTES$L_CAPABILITIEST END MAP MAP/ PARAMETER NOTES$S_INIT_VMSMSGS = 1M/ PARAMETER NOTES$V_INIT_VMSMSGS = 0T BYTE %FILL (1)B END MAP END UNION END STRUCTURE ! CAPABILITIESS1 PARAMETER NOTES$K_PROTOCOL_VERSION = '00000002'XR0 PARAMETER NOTES$K_PROTOCOL_UPDATE = '00000006'X INTEGER*4 NOTES$SERVER_BEGIN_ EXTERNAL NOTES$SERVER_BEGIN!DEC$ END OPTIONSD *[NOTES.TEMPKIT]NOTES$ITEMDEF.H;1+,f.6/J 4P61- 0123KPWO256DoBģ7Wlģ89GJHJ/**/P/******************************************************************************/P/** **/P/** Copyright (c) 2004 **/P/** by DIGITAL Equipment Corporation, Maynard, Mass. **/P/** All rights reserved. **/P/** **/P/** This soՔ$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$ITEMDEF.H;1P6"ftware is furnished under a license and may be used and copied **/P/** only in accordance with the terms of such license and with the **/P/** inclusion of the above copyright notice. This software or any other **/P/** copies thereof may not be provided or otherwise made available to any **/P/** other person. No title to and ownership of the software is hereby **/P/** transferred. **/P/** **/P/** The information in this software is subject to change without notice **/P/** and should not be construed as a commitment by DIGITAL Equipment **/P/** Corporation. **/P/** **/P/** DIGITAL assumes no responsibility for the use or reliability of its **/P/** software on equipment which is not supplied by DIGITAL. **/P/** **/P/******************************************************************************//*** MODULE NOTEITEMS ***/!#pragma __member_alignment __save#pragma __nomember_alignment#define NOTES$K_MIN_ITEM 1#define NOTES$K_NOSIGNAL 1#define NOTES$K_TEXT_STRING 2#define NOTES$K_TEXT_END 3#define NOTES$K_TEXT_TYPE 4$#define NOTES$K_NOTE_ALL_RESPONSES 5#define NOTES$K_NOTE_AUTHOR 6 #define NOTES$K_NOTE_BACK_NOTE 7$#define NOTES$K_NOTE_BACK_RESPONSE 8"#define NOTES$K_NOTE_BEFORE_TIME 9 #define NOTES$K_NOTE_BLINK_ID 10!#define NOTES$K_NOTE_BLINK_UID 11##define NOTES$K_NOTE_CREATE_TIME 12#define NOTES$K_NOTE_HIDDEN 13#define NOTES$K_NOTE_ID 14!#define NOTES$K_NOTE_NEXT_NOTE 15%#define NOTES$K_NOTE_NEXT_RESPONSE 16"#define NOTES$K_NOTE_NUMRECORDS 17$#define NOTES$K_NOTE_NUMRESPONSES 18 #define NOTES$K_NOTE_PEN_NAME 19%#define NOTES$K_NOTE_SEARCH_STRING 20$#define NOTES$K_NOTE_SEARCH_TITLE 21"#define NOTES$K_NOTE_SINCE_TIME 22#define NOTES$K_NOTE_TITLE 23#define NOTES$K_NOTE_UID 24#define NOTES$K_NOTE_UNSEEN 25!#define NOTES$K_NOTE_USER_AREA 26!#define NOTES$K_NOTE_WRITELOCK 27##define NOTES$K_NOTEFILE_CONTEXT 28 #define NOTES$K_CLASS_CONTEXT 29 #define NOTES$K_ENTRY_CONTEXT 30"#define NOTES$K_KEYWORD_CONTEXT 31#define NOTES$K_NOTE_CONTEXT 32"#define NOTES$K_PROFILE_CONTEXT 33!#define NOTES$K_SERVER_CONTEXT 34#define NOTES$K_USER_CONTEXT 35#define NOTES$K_CLASS_NAME 36!#define NOTES$K_CLASS_NEW_NAME 37#define NOTES$K_CONTINUE 38#define NOTES$K_ENTRY_NAME 39!#define NOTES$K_ENTRY_NEW_NAME 40"#define NOTES$K_ENTRY_USER_AREA 41#define NOTES$K_HINT 42#define NOTES$K_KEYWORD_NAME 43##define NOTES$K_KEYWORD_NEW_NAME 44"#define NOTES$K_NOTEFILE_CREATE 45'#define NOTES$K_NOTEFILE_CREATE_TIME 46(#define NOTES$K_NOTEFILE_DEFAULT_NAME 47&#define NOTES$K_NOTEFILE_ENTRYTOTAL 48%#define NOTES$K_NOTEFILE_FILE_NAME 49"#define NOTES$K_NOTEFILE_FORMAT 50$#define NOTES$K_NOTEFILE_HIGH_UID 51##define NOTES$K_NOTEFILE_LASTREV 52$#define NOTES$K_NOTEFILE_MODERATE 53%#define NOTES$K_NOTEFILE_MODERATOR 54"#define NOTES$K_NOTEFILE_NOTICE 55$#define NOTES$K_NOTEFILE_NUMNOTES 56(#define NOTES$K_NOTEFILE_RELATED_NAME 57&#define NOTES$K_NOTEFILE_RESTRICTED 58'#define NOTES$K_NOTEFILE_RESULT_SPEC 59!#define NOTES$K_NOTEFILE_TITLE 60%#define NOTES$K_NOTEFILE_TRANSPORT 61%#define NOTES$K_NOTEFILE_USER_AREA 62##define NOTES$K_PROFILE_AUTO_DIR 63&#define NOTES$K_PROFILE_AUTO_UNSEEN 64%#define NOTES$K_PROFILE_CLASS_NAME 65!#define NOTES$K_PROFILE_EDITOR 66'#define NOTES$K_PROFILE_EDITOR_SPAWN 67##define NOTES$K_PROFILE_PEN_NAME 68 #define NOTES$K_PROFILE_PRINT 69$#define NOTES$K_PROFILE_TEMPORARY 70#define NOTES$K_SEEN_MAP 71&#define NOTES$K_USER_CREATE_KEYWORD 72!#define NOTES$K_USER_MAIL_ADDR 73 #define NOTES$K_USER_MODERATE 74#define NOTES$K_USER_NAME 75 #define NOTES$K_USER_NEW_NAME 76$#define NOTES$K_USER_NEW_NODENAME 77 #define NOTES$K_USER_NODENAME 78##define NOTES$K_NOTE_BLINK_TITLE 79!#define NOTES$K_NOTE_MARK_SEEN 80##define NOTES$K_NOTE_NEXT_UNSEEN 81%#define NOTES$K_NOTE_HINT_GET_TEXT 82!#define NOTES$K_NOTE_X_KEYWORD 83!#define NOTES$K_KEYWORD_X_NOTE 84 #define NOTES$K_CLASS_X_ENTRY 85 #define NOTES$K_ENTRY_X_CLASS 86"#define NOTES$K_ENTRY_X_KEYWORD 87#define NOTES$K_DELIF0 88#define NOTES$K_UNIENTRY 89##define NOTES$K_ENTRY_UNSEEN_EST 90$#define NOTES$K_ENTRY_LAST_STATUS 91!#define NOTES$K_NOTE_CAN_REPLY 92%#define NOTES$K_NOTE_BEFORE_TIME_A 93%#define NOTES$K_NOTE_CREATE_TIME_A 94$#define NOTES$K_NOTE_SINCE_TIME_A 95)#define NOTES$K_NOTEFILE_CREATE_TIME_A 96%#define NOTES$K_NOTEFILE_LASTREV_A 97(#define NOTES$K_NOTE_HINT_GET_KEYWORD 98(#define NOTES$K_KEYWORD_HINT_GET_NOTE 99##define NOTES$K_SERVER_MAX_ITEM 100(#define NOTES$K_CLASS_HINT_GET_ENTRY 101##define NOTES$K_CLASS_USER_AREA 102#define NOTES$K_CLASS_UID 103(#define NOTES$K_ENTRY_HINT_GET_CLASS 104*#define NOTES$K_ENTRY_HINT_GET_KEYWORD 105%#define NOTES$K_ENTRY_OBJECT_NAME 106%#define NOTES$K_ENTRY_OBJECT_SPEC 107#define NOTES$K_ENTRY_UID 108%#define NOTES$K_KEYWORD_USER_AREA 109#define NOTES$K_KEYWORD_UID 110#define NOTES$K_NODE_NAME 111##define NOTES$K_NODE_X_USERNAME 112#define NOTES$K_NOTE_NEW_ID 113#define NOTES$K_NOTE_TYPE 114'#define NOTES$K_NOTEFILE_REPLY_ONLY 115%#define NOTES$K_PROFILE_USER_AREA 116$#define NOTES$K_USER_ACCESS_LIST 117%#define NOTES$K_USER_WRITE_BYPASS 118"#define NOTES$K_USER_USER_AREA 119#define NOTES$K_USER_UID 120!#define NOTES$K_USER_NOACCESS 121#define NOTES$K_MAX_ITEM 122%#define NOTES$K_NOTEFILE_WRITELOCK 27$#define NOTES$K_USER_ACCESS_NODE 111#define NOTES$K_USER_ACCESS 117#define NOTES$K_BASE_NOTE 1#define NOTES$K_REPLY_NOTE 2#define NOTES$K_UNKNOWN_TYPE 0#define NOTES$K_DDIF_TYPE 1#define NOTES$K_ASCII_TYPE 2#define NOTES$K_RESERVED_TYPE 3#define NOTES$K_WPS_PLUS_TYPE 4#define NOTES$K_TLV_INPUT 4097#define NOTES$K_TLV_OUTPUT 4098#define NOTES$K_CHAIN 65535#define NOTES$K_NOOP 65534int NOTES$NOTES() ;int NOTES$NOTEFILE_BEGIN() ;int NOTES$NOTEFILE_GET_INFO() ;int NOTES$NOTEFILE_MODIFY() ;!int NOTES$NOTEFILE_LIST_BEGIN() ;int NOTES$NOTEFILE_LIST() ;int NOTES$NOTEFILE_END() ;int NOTES$CLASS_BEGIN() ;int NOTES$CLASS_ADD() ;int NOTES$CLASS_DELETE() ;int NOTES$CLASS_GET() ;int NOTES$CLASS_GET_ENTRY() ;int NOTES$CLASS_MODIFY() ;int NOTES$CLASS_END() ;int NOTES$ENTRY_BEGIN() ;int NOTES$ENTRY_ADD() ;int NOTES$ENTRY_DELETE() ;int NOTES$ENTRY_GET() ;int NOTES$ENTRY_GET_CLASS() ;int NOTES$ENTRY_GET_KEYWORD() ;int NOTES$ENTRY_MODIFY() ;int NOTES$ENTRY_UPDATE() ;int NOTES$ENTRY_END() ;int NOTES$KEYWORD_BEGIN() ;int NOTES$KEYWORD_ADD() ;int NOTES$KEYWORD_DELETE() ;int NOTES$KEYWORD_GET() ;int NOTES$KEYWORD_GET_NOTE() ;int NOTES$KEYWORD_MODIFY() ;int NOTES$KEYWORD_END() ;int NOTES$NOTE_BEGIN() ;int NOTES$NOTE_ADD() ;int NOTES$NOTE_ADD_TEXT() ;int NOTES$NOTE_DELETE() ;int NOTES$NOTE_GET() ;int NOTES$NOTE_GET_KEYWORD() ;int NOTES$NOTE_GET_TEXT() ;int NOTES$NOTE_MODIFY() ;int NOTES$NOTE_END() ;int NOTES$PROFILE_BEGIN() ;int NOTES$PROFILE_GET() ;int NOTES$PROFILE_MODIFY() ;int NOTES$PROFILE_END() ;int NOTES$USER_BEGIN() ;int NOTES$USER_ADD() ;int NOTES$USER_DELETE() ;int NOTES$USER_GET() ;int NOTES$USER_MODIFY() ;int NOTES$USER_END() ; $#pragma __member_alignment __restore/*** MODULE $NOTESMSGDEF ***/!#pragma __member_alignment __save#pragma __nomember_alignment#define NOTES$_FACILITY 1019#define NOTES$_NORMAL 66813961!#define NOTES$_CMDKEYENA 66813969!#define NOTES$_NUMKEYENA 66813977##define NOTES$_PROFILE_MOD 66813985$#define NOTES$_PROFILE_TEMP 66813993 #define NOTES$_MODERATE 66814001"#define NOTES$_NOMODERATE 66814009##define NOTES$_ENTRY_ADDED 66814017'#define NOTES$_KEYWORD_ADDNOTE 66814025$#define NOTES$_MARKER_ADDED 66814033$#define NOTES$_MEMBER_ADDED 66814041'#define NOTES$_KEYWORD_CREATED 66814049%#define NOTES$_ENTRY_DELETED 66814057'#define NOTES$_KEYWORD_DELETED 66814065'#define NOTES$_KEYWORD_DELNOTE 66814073&#define NOTES$_MARKER_DELETED 66814081$#define NOTES$_NOTE_DELETED 66814089&#define NOTES$_MEMBER_DELETED 66814097%#define NOTES$_NOTE_MODIFIED 66814105&#define NOTES$_ENTRY_MODIFIED 66814113(#define NOTES$_KEYWORD_MODIFIED 66814121'#define NOTES$_MEMBER_MODIFIED 66814129!#define NOTES$_CLASS_SET 66814137##define NOTES$_INSERT_MODE 6681414($ NOTES026.Af  [NOTES.TEMPKIT]NOTES$ITEMDEF.H;1P67"5'#define NOTES$_OVERSTRIKE_MODE 66814153&#define NOTES$_ENTRY_DELCLASS 66814161&#define NOTES$_SPACE_COMPRESS 66814169$#define NOTES$_ENTRY_ADDED2 66814177$#define NOTES$_OBJECT_ADDED 66814185&#define NOTES$_OBJECT_DELETED 66814193'#define NOTES$_OBJECT_MODIFIED 66814201!#define NOTES$_MORE_INFO 66818051&#define NOTES$_SRV_NEWPROTUPD 66818059%#define NOTES$_ENTRY_ABORTED 66818067##define NOTES$_NOTES_WRFIL 66818075##define NOTES$_NOTES_WRBUF 66818083 #define NOTES$_DIRTOBUF 66818091!#define NOTES$_DIRTOFILE 66818099#define NOTES$_HIDDEN 66818107!#define NOTES$_OPEN_CONF 66818115##define NOTES$_UPDATE_CONF 66818123!#define NOTES$_MARKSUPER 66818131"#define NOTES$_OPEN_CONF2 66818139%#define NOTES$_BEING_WRITTEN 66818147!#define NOTES$_USING_EDT 66818155#define NOTES$_HELPBUF 66818163#define NOTES$_HELPHDR 66818171#define NOTES$_HELPNXT 66818179 #define NOTES$_HELPASK1 66818187 #define NOTES$_HELPASK2 66818195#define NOTES$_HELPTOP 66818203#define NOTES$_HELPBOT 66818211#define NOTES$_ENTRYID 66818219#define NOTES$_NOTEID 66818227#define NOTES$_TOPICS 66818235#define NOTES$_UNSEEN 66818243"#define NOTES$_TOTALNOTES 66818251 #define NOTES$_DATELINE 66818259 #define NOTES$_ONECLASS 66818267##define NOTES$_MANYCLASSES 66818275#define NOTES$_TITLEID 66818283 #define NOTES$_NOTICEID 66818291"#define NOTES$_CONFCREUPD 66818299 #define NOTES$_MAILSUBJ 66818307#define NOTES$_FILEID 66818315##define NOTES$_MODERATORID 66818323'#define NOTES$_OLD_ALREXISTS_A 66818331%#define NOTES$_OLD_INVACCNAM 66818339"#define NOTES$_LOCATIONID 66818347##define NOTES$_CONF_BANNER 66818355##define NOTES$_READ_BANNER 66818363$#define NOTES$_TOPIC_BANNER 66818371$#define NOTES$_REPLY_BANNER 66818379##define NOTES$_INFO_BANNER 66818387##define NOTES$_CREATE_CONF 66818395$#define NOTES$_UPDATE_ENTRY 66818403##define NOTES$_GETTING_DIR 66818411$#define NOTES$_GETTING_NOTE 66818419$#define NOTES$_EXTRACT_NOTE 66818427"#define NOTES$_PRINT_NOTE 66818435"#define NOTES$_SEARCH_FOR 66818443##define NOTES$_SEARCH_NEXT 66818451%#define NOTES$_DELETING_NOTE 66818459 #define NOTES$_AUTHORID 66818467#define NOTES$_TOPICID 66818475!#define NOTES$_KEYWORDID 66818483$#define NOTES$_CONFERENCEID 66818491 #define NOTES$_ATTRIBID 66818499##define NOTES$_WRITELOCKID 66818507 #define NOTES$_HIDDENID 66818515$#define NOTES$_GRAPHIC_VIEW 66818523$#define NOTES$_UNKNOWN_VIEW 66818531##define NOTES$_DDIF_FORMAT 66818539!#define NOTES$_PS_FORMAT 66818547!#define NOTES$_USEFILEID 66818555!#define NOTES$_COPYRIGHT 66818563&#define NOTES$_SRV_OLDPROTUPD 66822144'#define NOTES$_NO_MORE_CLASSES 66822152'#define NOTES$_NO_MORE_ENTRIES 66822160(#define NOTES$_NO_MORE_KEYWORDS 66822168%#define NOTES$_NO_MORE_NOTES 66822176$#define NOTES$_NO_MORE_TEXT 66822184%#define NOTES$_NO_MORE_USERS 66822192"#define NOTES$_NONOTEBOOK 66822200 #define NOTES$_NOERRTXT 66822208$#define NOTES$_NEEDNBMODIFY 66822216#define NOTES$_MSGSEND 66822224"#define NOTES$_ENTERINTRO 66822232!#define NOTES$_CTRLZMAIL 66822240"#define NOTES$_NOTREADING 66822248'#define NOTES$_NO_MORE_REPLIES 66822256"#define NOTES$_ANSWER_YES 66822264 #define NOTES$_EOB_TEXT 66822272!#define NOTES$_PRESS_PF2 66822280"#define NOTES$_NOTES_HDR1 66822288%#define NOTES$_PRESS_CTRLZ_N 66822296&#define NOTES$_SET_CONFERENCE 66822304##define NOTES$_ENTER_TITLE 66822312$#define NOTES$_PRESS_RETURN 66822320%#define NOTES$_PRESS_ANY_KEY 66822328 #define NOTES$_DIR_HEAD 66822336##define NOTES$_ENDREQ_LIST 66822344%#define NOTES$_NOTE_END_TEXT 66822352!#define NOTES$_TEXT_NOTE 66822360"#define NOTES$_TEXT_REPLY 66822368#define NOTES$_NO_NB 66822376#define NOTES$_YOUR_SP 66822384%#define NOTES$_NOTE_COMPLETE 66822392##define NOTES$_NOTE_NOTEXT 66822400!#define NOTES$_NOREPLIES 66822408!#define NOTES$_ONE_REPLY 66822416$#define NOTES$_MANY_REPLIES 66822424#define NOTES$_N_OF_N 66822432$#define NOTES$_ENTER_CTITLE 66822440##define NOTES$_DELETE_NOTE 66822448"#define NOTES$_NOTENOTDEL 66822456$#define NOTES$_FINDING_HELP 66822464!#define NOTES$_NOKEYHELP 66822472!#define NOTES$_NOTESQADD 66822480"#define NOTES$_REALLYQUIT 66822488##define NOTES$_MAILNOTSENT 66822496 #define NOTES$_NUMNOTES 66822504#define NOTES$_SENDTO 66822512#define NOTES$_SUBJECT 66822520$#define NOTES$_PROFILE_USER 66822528!#define NOTES$_MORE_TEXT 66822536##define NOTES$_SHOW_MARK_1 66822544##define NOTES$_SHOW_MARK_2 66822552##define NOTES$_SHOW_MARK_3 66822560"#define NOTES$_SHOW_ENTRY 66822568&#define NOTES$_SHOW_PROF_EDIT 66822576(#define NOTES$_SHOW_PROF_DCLASS 66822584'#define NOTES$_SHOW_PROF_PRINT 66822592&#define NOTES$_SHOW_PROF_NAME 66822600&#define NOTES$_SHOW_PROF_AUTO 66822608&#define NOTES$_SHOW_PROF_ADIR 66822616&#define NOTES$_SHOW_PROF_AUNS 66822624&#define NOTES$_SHOW_PROF_NONE 66822632##define NOTES$_ENDREQ_SHOW 66822640%#define NOTES$_CTRLZ_COM_RET 66822648%#define NOTES$_SHOW_ENT_CONF 66822656%#define NOTES$_SHOW_ENT_FILE 66822664"#define NOTES$_SHOW_CLASS 66822672%#define NOTES$_SHOW_CONF_MOD 66822680'#define NOTES$_SHOW_CONF_RESA1 66822688'#define NOTES$_SHOW_CONF_RESA2 66822696'#define NOTES$_SHOW_CONF_RESK1 66822704'#define NOTES$_SHOW_CONF_RESK2 66822712##define NOTES$_SHOW_KEYW_1 66822720##define NOTES$_SHOW_KEYW_2 66822728 #define NOTES$_SHOW_MOD 66822736%#define NOTES$_SHOW_MOD_NODE 66822744%#define NOTES$_SHOW_MOD_USER 66822752&#define NOTES$_SHOW_USER_MADR 66822760&#define NOTES$_SHOW_USER_PRIV 66822768&#define NOTES$_SHOW_USER_JOIN 66822776%#define NOTES$_SHOW_NOTE_HID 66822784%#define NOTES$_SHOW_NOTE_VIS 66822792&#define NOTES$_SHOW_NOTE_REP1 66822800&#define NOTES$_SHOW_NOTE_REP2 66822808&#define NOTES$_SHOW_PROF_PERM 66822816&#define NOTES$_SHOW_USER_FULL 66822824&#define NOTES$_SHOW_MODU_FULL 66822832#define NOTES$_NMF 66822840#define NOTES$_NJU 66822848'#define NOTES$_NO_MORE_MARKERS 66822856 #define NOTES$_SEARCHF1 66822864 #define NOTES$_SEARCHF2 66822872 #define NOTES$_DIR_CONF 66822880&#define NOTES$_DIR_CONF_TITLE 66822888 #define NOTES$_N_TOPICS 66822896$#define NOTES$_DIR_NB_CLASS 66822904$#define NOTES$_CTRLZ_CANCEL 66822912##define NOTES$_REPBUFINFO1 66822920##define NOTES$_REPBUFINFO2 66822928"#define NOTES$_NMORELINES 66822936##define NOTES$_READINGCONF 66822944##define NOTES$_WILLNOTSEND 66822952#define NOTES$_WORKING 66822960"#define NOTES$_FILECREUPD 66822968!#define NOTES$_ENTERNOTE 66822976#define NOTES$_ANDTO 66822984"#define NOTES$_SENDANYWAY 66822992 #define NOTES$_SPAWNKEY 66823000#define NOTES$_CALLKEY 66823008#define NOTES$_EDICALL 66823016 #define NOTES$_EDISPAWN 66823024##define NOTES$_SPELLSELECT 66823032##define NOTES$_SPELLBUFFER 66823040"#define NOTES$_SPELLSTART 66823048!#define NOTES$_SPELLDONE 66823056$#define NOTES$_SENDING_MAIL 66823064 #define NOTES$_SENDBOTH 66823072 #define NOTES$_NONESENT 66823080##define NOTES$_SENT_TO_ALL 66823088'#define NOTES$_SHOW_CONF_RESW1 66823096'#define NOTES$_SHOW_CONF_RESW2 66823104*"#define NOTES$_TEXT_TOPIC 66823112"#define NOTES$_MEMBERS_OF 66823120##define NOTES$_DEF_SUBJECT 66823128 $#define NOTES$_MAIL_SUBJECT 66823136##define NOTES$_TEXT_APPEND 66823144 &#define NOTES$_NEVER_ACCESSED 66823152#define NOTES$_EXPIRED 66823160i!#define NOTES$_ANSWER_NO 66823168 !#define NOTES$_WRONG_ANS 66823176r!#define NOTES$_CREATEBUF 66823184 #define NOTES$_WRITEBUF 66823192%#define NOTES$_SHOW_PROF_DEF 66823200 !#define NOTES$_ASK_YESNO 66823208 #define NOTES$_MODPRIVS 66823216$#define NOTES$_SHOW_ENT_OBJ 66823224!#define NOTES$_CANCELLED 66823232c&#define NOTES$_SHOW_CONF_RESR 66823240#define NOTES$_CC 66823248%#define NOTES$_MODERATORS_OF 66823256e##define NOTES$_ALREXISTS_A 66823264!#define NOTES$_INVACCNAM 66823272v!#define NOTES$_ILLCTXADR 66830338 #define NOTES$_WRONGCTX 66830346!#define NOTES$_INVITMCOD 66830355w!#define NOTES$_INVITMLEN 66830362r!#define NOTES$_MISREQITM 66830370 !#define NOTES$_NOCURNOTE 66830378 $#define NOTES$_CANTCONTINUE 66830386!#define NOTES$_FAILGETVM 66830394*"#define NOTES$_STRCOPYERR 66830402!#define NOTES$_ILLNOTEID 66830410 "#define NOTES$_NOSUCHNOTE 66830418"#define NOTES$_SRV_NOINIT 66830426"#define NOTES$_SRV_INVSEQ 66830434%#define NOTES$_SRV_NOCONTEXT 66830442 &#define NOTES$_SRV_NOUSERNAME 66830450##define NOTES$_SRV_INVITEM 66830458 !#define NOTES$_CREPRIJOB 66830466*#define NOTES$_PREMEOF 66830474i##define NOTES$_NOPRIVDEL_N 66830482t%#define NOTES$_NOPRIVWRITE_N 66830490h%#define NOTES$_SRVi!@O$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$ITEMDEF.H;1P6l$_UNRECPROT 66830498 "#define NOTES$_NOFILEOPEN 66830506%#define NOTES$_ALREXISTS_OLD 66830514 ##define NOTES$_NOSUCHENTRY 66830522*!#define NOTES$_MUST_OPEN 66830530*'#define NOTES$_MUST_READ_REPLY 66830538T)#define NOTES$_MUST_READ_FORWARD 66830546)#define NOTES$_NOT_ENTERING_NOTE 66830554E(#define NOTES$_NONOTE_SPECIFIED 66830562%#define NOTES$_ERROR_MAILING 66830570n'#define NOTES$_NOPREVIOUS_NOTE 66830578T)#define NOTES$_ALREADY_IN_EDITOR 66830586S(#define NOTES$_ALREADY_IN_NOTES 66830594-#define NOTES$_MUST_COMPLETE_MESSAGE 66830602E&#define NOTES$_UNREC_CALLUSER 66830610%#define NOTES$_NO_SUCH_CLASS 66830618K%#define NOTES$_NO_SUCH_ENTRY 668306261'#define NOTES$_NO_SUCH_KEYWORD 66830634$#define NOTES$_NO_SUCH_NOTE 66830642$#define NOTES$_NO_SUCH_USER 66830650%#define NOTES$_NOMORE_RECALL 66830658E$#define NOTES$_EDIT_OR_FILE 66830666#define NOTES$_NOMAIL 66830674"#define NOTES$_ERRORWRITE 66830682"#define NOTES$_NOMAILPROC 66830690#define NOTES$_IFF 66830698f#define NOTES$_NOPRIV 66830706$#define NOTES$_CTRLC_CANCEL 66830714!#define NOTES$_ERRCREKEY 66830722f"#define NOTES$_ERRADDMARK 66830730!#define NOTES$_ERRADDMEM 66830738$!#define NOTES$_ERRADDENT 66830746$!#define NOTES$_ERRDELENT 66830754$"#define NOTES$_ERRDELMARK 66830762$#define NOTES$_ERRDELMEMBER 66830770"#define NOTES$_ERRMODNOTE 66830778##define NOTES$_ERRMODENTRY 66830786E%#define NOTES$_ERRMODKEYWORD 66830794O"#define NOTES$_ERRACCLIST 66830802#define NOTES$_NOWRITE 66830810N$#define NOTES$_NOSUCHMARKER 66830818##define NOTES$_NOPRIVMOD_N 66830826##define NOTES$_ALREXISTS_C 66830834n##define NOTES$_ALREXISTS_E 66830842E##define NOTES$_ALREXISTS_K 66830850$##define NOTES$_ALREXISTS_U 66830858_##define NOTES$_ALREXISTS_M 66830866E&#define NOTES$_NO_SUCH_MARKER 66830874!#define NOTES$_NOMEMBERS 66830882 !#define NOTES$_NOTMEMBER 66830890_%#define NOTES$_BASEWRITELOCK 66830898U$#define NOTES$_NOWRITE_CONF 66830906"#define NOTES$_SPELLERROR 66830914!#define NOTES$_PNINVCHAR 66830922O!#define NOTES$_SENDNOAUT 66830930O$#define NOTES$_INVCLASSNAME 66830938%#define NOTES$_CLASSNOTFOUND 66830946E #define NOTES$_FORWLOOP 66830954$#define NOTES$_BAD_DIR_LINE 66830962!#define NOTES$_NO_SELECT 66830970$##define NOTES$_NOTE_NOCONF 66830978$$#define NOTES$_UNREC_EDITOR 66830986!#define NOTES$_NO_CLASSP 66830994n!#define NOTES$_NMTHISDIR 66831002##define NOTES$_NO_NEW_NOTE 66831010d%#define NOTES$_CAPTIVE_SPAWN 66831018d&#define NOTES$_NOTHING_TO_SET 66831026"#define NOTES$_NOHELPTERM 66831034!#define NOTES$_INVENTNAM 66831042 !#define NOTES$_INVCLANAM 66831050A$#define NOTES$_INVENTRYNAME 66831058)#define NOTES$_NO_ENTRY_IN_CLASS 668310666*#define NOTES$_ALREXISTS_IN_CLASS 66831074!#define NOTES$_NOMARKERS 66831082f"#define NOTES$_NOKEYWORDS 66831090!#define NOTES$_NOLICENSE 66831098 #define NOTES$_NOFILE 66831106#define NOTES$_NOEDT 668311147#define NOTES$_NOENTRY 66831122 #define NOTES$_NOEVE 668311305 #define NOTES$_TPUERROR 66831138)#define NOTES$_ENTALR_IN_CLASSES 66831146f&#define NOTES$_NO_RANGE_ALLOW 66831154 #define NOTES$_NOTINCMD 66831162'#define NOTES$_CONF_REPLY_ONLY 66831170E!#define NOTES$_USRNOTADD 66831178O!#define NOTES$_INVKEYNAM 66831186n&#define NOTES$_INVKEYWORDNAME 66831194!#define NOTES$_INVMRKNAM 66831202O%#define NOTES$_INVMARKERNAME 66831210_!#define NOTES$_INVUSRNAM 66831218N##define NOTES$_INVUSERNAME 66831226I##define NOTES$_INVNOTESPEC 66831234'#define NOTES$_RANGE_ONE_TOPIC 66831242f%#define NOTES$_RANGE_TOO_BIG 66831250n #define NOTES$_NO_TOPIC 66831258##define NOTES$_ALREXISTS_N 66831266d"#define NOTES$_NONOTESMOD 66831274'#define NOTES$_MEMBERNAME_NODE 66831282d #define NOTES$_CONFQUAL 66831290$#define NOTES$_OPRNOTSUPCNF 66831298#define NOTES$_BADTIME 66831306N"#define NOTES$_INVOBJNAME 66831314%#define NOTES$_INVOBJECTNAME 66831322_ #define NOTES$_NOATTRIB 66831330 #define NOTES$_NOOBJECT 66831338!#define NOTES$_NOSUCHOBJ 66831346d #define NOTES$_LWKERROR 66831354%#define NOTES$_NOLINKLICENSE 66831362d!#define NOTES$_NOTNETWRK 66842628D"#define NOTES$_WRONG_ACCT 66842636$#define NOTES$_SRV_INIT_ERR 66842644!#define NOTES$_WRONG_LMF 66842652I 0$#pragma __member_alignment __restore/*** MODULE SERVERDEF ***/!#pragma __member_alignment __saveM#pragma __nomember_alignment#define NOTES$K_INITIALIZE 1#define NOTES$K_MORE 2 #define NOTES$K_NOTEFILE_BEGIN 3#define NOTES$K_NOTEFILE_END 4##define NOTES$K_NOTEFILE_GET_INFO 5 !#define NOTES$K_NOTEFILE_MODIFY 6I%#define NOTES$K_NOTEFILE_LIST_BEGIN 7S#define NOTES$K_NOTEFILE_LIST 8_#define NOTES$K_KEYWORD_BEGIN 9D#define NOTES$K_KEYWORD_END 10#define NOTES$K_KEYWORD_ADD 11!#define NOTES$K_KEYWORD_DELETE 12I#define NOTES$K_KEYWORD_GET 13##define NOTES$K_KEYWORD_GET_NOTE 14R!#define NOTES$K_KEYWORD_MODIFY 15N#define NOTES$K_NOTE_BEGIN 16O#define NOTES$K_NOTE_END 17_#define NOTES$K_NOTE_ADD 18T #define NOTES$K_NOTE_ADD_TEXT 19#define NOTES$K_NOTE_DELETE 20#define NOTES$K_NOTE_GET 21S##define NOTES$K_NOTE_GET_KEYWORD 220 #define NOTES$K_NOTE_GET_TEXT 23#define NOTES$K_NOTE_MODIFY 24#define NOTES$K_USER_BEGIN 25n#define NOTES$K_USER_END 26$#define NOTES$K_USER_ADD 27$#define NOTES$K_USER_DELETE 28#define NOTES$K_USER_GET 29O#define NOTES$K_USER_MODIFY 30#define NOTES$K_CLASS_ADD 31#define NOTES$K_CLASS_BEGIN 32#define NOTES$K_CLASS_DELETE 33L#define NOTES$K_CLASS_END 34#define NOTES$K_CLASS_GET 35"#define NOTES$K_CLASS_GET_ENTRY 36#define NOTES$K_CLASS_MODIFY 37n#define NOTES$K_ENTRY_ADD 38#define NOTES$K_ENTRY_BEGIN 39#define NOTES$K_ENTRY_DELETE 40E#define NOTES$K_ENTRY_END 41#define NOTES$K_ENTRY_GET 42"#define NOTES$K_ENTRY_GET_CLASS 43$#define NOTES$K_ENTRY_GET_KEYWORD 44#define NOTES$K_ENTRY_MODIFY 45$ #define NOTES$K_PROFILE_BEGIN 46#define NOTES$K_PROFILE_END 47#define NOTES$K_PROFILE_GET 48!#define NOTES$K_PROFILE_MODIFY 49n#define NOTES$K_STATUS 129##define NOTES$K_REQUEST_CONTEXT 130O#define NOTES$K_ERROR_TLV 131$#define NOTES$K_ERROR_NARGS 132D#define NOTES$K_ERROR_ARG 133 #define NOTES$K_ERROR_TEXT 134"#define NOTES$K_CANCEL_REQUEST 135%#define NOTES$K_REQUEST_CANCELLED 136T!#define NOTES$K_INIT_VERSION 8193"#define NOTES$K_INIT_NODENAME 8194"#define NOTES$K_INIT_USERNAME 8195&#define NOTES$K_INIT_CAPABILITIES 8196%#define NOTES$K_INIT_MAXITEMCODE 8197$ #define NOTES$M_INIT_VMSMSGS 0x1struct CAPABILITIES {L union {* unsigned int NOTES$L_CAPABILITIES; struct {E. unsigned NOTES$V_INIT_VMSMSGS : 1;) unsigned NOTES$V_FILL_2_ : 7;_ } NOTES$R_FILL_1_; } NOTES$R_FILL_0_; } ;$"#define NOTES$K_PROTOCOL_VERSION 2!#define NOTES$K_PROTOCOL_UPDATE 6Aint NOTES$SERVER_BEGIN() ; E$#pragma __member_alignment __restore"*[NOTES.TEMPKIT]NOTES$ITEMDEF.MAR;1+,f.6/J 4N6/^- 0123KPWO056A8bģ7L!lģ89GJHJ; N; ****************************************************************************N; * *N; * Copyright (c) 2004 *N; * by DIGITAL Equipment Corporation, Maynard, Mass. *N; * All rights reserved. *N; * *N; * This software is furnished under a license and may be used and copied *N; * only in accordance with the terms of such license and with the *N; * inclusion of the above copyright notice. This software or any other *N; * copies thereof may not be provided or otherwise made available to any *N; * other person. No title to and ownership of the software is hereby *N; * transferred. *N; * M$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.MAR;1N6" *N; * The information in this software is subject to change without notice *N; * and should not be construed as a commitment by DIGITAL Equipment *N; * Corporation. *N; * *N; * DIGITAL assumes no responsibility for the use or reliability of its *N; * software on equipment which is not supplied by DIGITAL. *N; * *N; **************************************************************************** % .MACRO NOTEITEMS,..EQU=<=>,..COL=<:>NOTES$K_MIN_ITEM'..equ'1NOTES$K_NOSIGNAL'..equ'1NOTES$K_TEXT_STRING'..equ'2NOTES$K_TEXT_END'..equ'3NOTES$K_TEXT_TYPE'..equ'4"NOTES$K_NOTE_ALL_RESPONSES'..equ'5NOTES$K_NOTE_AUTHOR'..equ'6NOTES$K_NOTE_BACK_NOTE'..equ'7"NOTES$K_NOTE_BACK_RESPONSE'..equ'8 NOTES$K_NOTE_BEFORE_TIME'..equ'9NOTES$K_NOTE_BLINK_ID'..equ'10NOTES$K_NOTE_BLINK_UID'..equ'11!NOTES$K_NOTE_CREATE_TIME'..equ'12NOTES$K_NOTE_HIDDEN'..equ'13NOTES$K_NOTE_ID'..equ'14NOTES$K_NOTE_NEXT_NOTE'..equ'15#NOTES$K_NOTE_NEXT_RESPONSE'..equ'16 NOTES$K_NOTE_NUMRECORDS'..equ'17"NOTES$K_NOTE_NUMRESPONSES'..equ'18NOTES$K_NOTE_PEN_NAME'..equ'19#NOTES$K_NOTE_SEARCH_STRING'..equ'20"NOTES$K_NOTE_SEARCH_TITLE'..equ'21 NOTES$K_NOTE_SINCE_TIME'..equ'22NOTES$K_NOTE_TITLE'..equ'23NOTES$K_NOTE_UID'..equ'24NOTES$K_NOTE_UNSEEN'..equ'25NOTES$K_NOTE_USER_AREA'..equ'26NOTES$K_NOTE_WRITELOCK'..equ'27!NOTES$K_NOTEFILE_CONTEXT'..equ'28NOTES$K_CLASS_CONTEXT'..equ'29NOTES$K_ENTRY_CONTEXT'..equ'30 NOTES$K_KEYWORD_CONTEXT'..equ'31NOTES$K_NOTE_CONTEXT'..equ'32 NOTES$K_PROFILE_CONTEXT'..equ'33NOTES$K_SERVER_CONTEXT'..equ'34NOTES$K_USER_CONTEXT'..equ'35NOTES$K_CLASS_NAME'..equ'36NOTES$K_CLASS_NEW_NAME'..equ'37NOTES$K_CONTINUE'..equ'38NOTES$K_ENTRY_NAME'..equ'39NOTES$K_ENTRY_NEW_NAME'..equ'40 NOTES$K_ENTRY_USER_AREA'..equ'41NOTES$K_HINT'..equ'42NOTES$K_KEYWORD_NAME'..equ'43!NOTES$K_KEYWORD_NEW_NAME'..equ'44 NOTES$K_NOTEFILE_CREATE'..equ'45%NOTES$K_NOTEFILE_CREATE_TIME'..equ'46&NOTES$K_NOTEFILE_DEFAULT_NAME'..equ'47$NOTES$K_NOTEFILE_ENTRYTOTAL'..equ'48#NOTES$K_NOTEFILE_FILE_NAME'..equ'49 NOTES$K_NOTEFILE_FORMAT'..equ'50"NOTES$K_NOTEFILE_HIGH_UID'..equ'51!NOTES$K_NOTEFILE_LASTREV'..equ'52"NOTES$K_NOTEFILE_MODERATE'..equ'53#NOTES$K_NOTEFILE_MODERATOR'..equ'54 NOTES$K_NOTEFILE_NOTICE'..equ'55"NOTES$K_NOTEFILE_NUMNOTES'..equ'56&NOTES$K_NOTEFILE_RELATED_NAME'..equ'57$NOTES$K_NOTEFILE_RESTRICTED'..equ'58%NOTES$K_NOTEFILE_RESULT_SPEC'..equ'59NOTES$K_NOTEFILE_TITLE'..equ'60#NOTES$K_NOTEFILE_TRANSPORT'..equ'61#NOTES$K_NOTEFILE_USER_AREA'..equ'62!NOTES$K_PROFILE_AUTO_DIR'..equ'63$NOTES$K_PROFILE_AUTO_UNSEEN'..equ'64#NOTES$K_PROFILE_CLASS_NAME'..equ'65NOTES$K_PROFILE_EDITOR'..equ'66%NOTES$K_PROFILE_EDITOR_SPAWN'..equ'67!NOTES$K_PROFILE_PEN_NAME'..equ'68NOTES$K_PROFILE_PRINT'..equ'69"NOTES$K_PROFILE_TEMPORARY'..equ'70NOTES$K_SEEN_MAP'..equ'71$NOTES$K_USER_CREATE_KEYWORD'..equ'72NOTES$K_USER_MAIL_ADDR'..equ'73NOTES$K_USER_MODERATE'..equ'74NOTES$K_USER_NAME'..equ'75NOTES$K_USER_NEW_NAME'..equ'76"NOTES$K_USER_NEW_NODENAME'..equ'77NOTES$K_USER_NODENAME'..equ'78!NOTES$K_NOTE_BLINK_TITLE'..equ'79NOTES$K_NOTE_MARK_SEEN'..equ'80!NOTES$K_NOTE_NEXT_UNSEEN'..equ'81#NOTES$K_NOTE_HINT_GET_TEXT'..equ'82NOTES$K_NOTE_X_KEYWORD'..equ'83NOTES$K_KEYWORD_X_NOTE'..equ'84NOTES$K_CLASS_X_ENTRY'..equ'85NOTES$K_ENTRY_X_CLASS'..equ'86 NOTES$K_ENTRY_X_KEYWORD'..equ'87NOTES$K_DELIF0'..equ'88NOTES$K_UNIENTRY'..equ'89!NOTES$K_ENTRY_UNSEEN_EST'..equ'90"NOTES$K_ENTRY_LAST_STATUS'..equ'91NOTES$K_NOTE_CAN_REPLY'..equ'92#NOTES$K_NOTE_BEFORE_TIME_A'..equ'93#NOTES$K_NOTE_CREATE_TIME_A'..equ'94"NOTES$K_NOTE_SINCE_TIME_A'..equ'95'NOTES$K_NOTEFILE_CREATE_TIME_A'..equ'96#NOTES$K_NOTEFILE_LASTREV_A'..equ'97&NOTES$K_NOTE_HINT_GET_KEYWORD'..equ'98&NOTES$K_KEYWORD_HINT_GET_NOTE'..equ'99!NOTES$K_SERVER_MAX_ITEM'..equ'100&NOTES$K_CLASS_HINT_GET_ENTRY'..equ'101!NOTES$K_CLASS_USER_AREA'..equ'102NOTES$K_CLASS_UID'..equ'103&NOTES$K_ENTRY_HINT_GET_CLASS'..equ'104(NOTES$K_ENTRY_HINT_GET_KEYWORD'..equ'105#NOTES$K_ENTRY_OBJECT_NAME'..equ'106#NOTES$K_ENTRY_OBJECT_SPEC'..equ'107NOTES$K_ENTRY_UID'..equ'108#NOTES$K_KEYWORD_USER_AREA'..equ'109NOTES$K_KEYWORD_UID'..equ'110NOTES$K_NODE_NAME'..equ'111!NOTES$K_NODE_X_USERNAME'..equ'112NOTES$K_NOTE_NEW_ID'..equ'113NOTES$K_NOTE_TYPE'..equ'114%NOTES$K_NOTEFILE_REPLY_ONLY'..equ'115#NOTES$K_PROFILE_USER_AREA'..equ'116"NOTES$K_USER_ACCESS_LIST'..equ'117#NOTES$K_USER_WRITE_BYPASS'..equ'118 NOTES$K_USER_USER_AREA'..equ'119NOTES$K_USER_UID'..equ'120NOTES$K_USER_NOACCESS'..equ'121NOTES$K_MAX_ITEM'..equ'122#NOTES$K_NOTEFILE_WRITELOCK'..equ'27"NOTES$K_USER_ACCESS_NODE'..equ'111NOTES$K_USER_ACCESS'..equ'117NOTES$K_BASE_NOTE'..equ'1NOTES$K_REPLY_NOTE'..equ'2NOTES$K_UNKNOWN_TYPE'..equ'0NOTES$K_DDIF_TYPE'..equ'1NOTES$K_ASCII_TYPE'..equ'2NOTES$K_RESERVED_TYPE'..equ'3NOTES$K_WPS_PLUS_TYPE'..equ'4NOTES$K_TLV_INPUT'..equ'4097NOTES$K_TLV_OUTPUT'..equ'4098NOTES$K_CHAIN'..equ'65535NOTES$K_NOOP'..equ'65534; External entry NOTES$NOTES%; External entry NOTES$NOTEFILE_BEGIN(; External entry NOTES$NOTEFILE_GET_INFO&; External entry NOTES$NOTEFILE_MODIFY*; External entry NOTES$NOTEFILE_LIST_BEGIN$; External entry NOTES$NOTEFILE_LIST#; External entry NOTES$NOTEFILE_END"; External entry NOTES$CLASS_BEGIN ; External entry NOTES$CLASS_ADD#; External entry NOTES$CLASS_DELETE ; External entry NOTES$CLASS_GET&; External entry NOTES$CLASS_GET_ENTRY#; External entry NOTES$CLASS_MODIFY ; External entry NOTES$CLASS_END"; External entry NOTES$ENTRY_BEGIN ; External entry NOTES$ENTRY_ADD#; External entry NOTES$ENTRY_DELETE ; External entry NOTES$ENTRY_GET&; External entry NOTES$ENTRY_GET_CLASS(; External entry NOTES$ENTRY_GET_KEYWORD#; External entry NOTES$ENTRY_MODIFY#; External entry NOTES$ENTRY_UPDATE ; External entry NOTES$ENTRY_END$; External entry NOTES$KEYWORD_BEGIN"; External entry NOTES$KEYWORD_ADD%; External entry NOTES$KEYWORD_DELETE"; External entry NOTES$KEYWORD_GET'; External entry NOTES$KEYWORD_GET_NOTE%; External entry NOTES$KEYWORD_MODIFY"; External entry NOTES$KEYWORD_END!; External entry NOTES$NOTE_BEGIN; External entry NOTES$NOTE_ADD$; External entry NOTES$NOTE_ADD_TEXT"; External entry NOTES$NOTE_DELETE; External entry NOTES$NOTE_GET'; External entry NOTES$NOTE_GET_KEYWORD$; External entry NOTES$NOTE_GET_TEXT"; External entry NOTES$NOTE_MODIFY; External entry NOTES$NOTE_END$; External entry NOTES$PROFILE_BEGIN"; External entry NOTES$PROFILE_GET%; External entry NOTES$PROFILE_MODIFY"; External entry NOTES$PROFILE_END!; External entry NOTES$USER_BEGIN; External entry NOTES$USER_ADD"; External entry NOTES$USER_DELETE; External entry NOTES$USER_GET"; External entry NOTES$USER_MODIFY; External entry NOTES$USER_END .ENDM ( .MACRO $NOTESMSGDEF,..EQU=<=>,..COL=<:>NOTES$_FACILITY'..equ'1019NOTES$_NORMAL'..equ'66813961NOTES$_CMDKEYENA'..equ'66813969NOTES$_NUMKEYENA'..equ'66813977!NOTES$_PROFILE_MOD'..equ'66813985"NOTES$_PROFILE_TEMP'..equ'66813993NOTES$_MODERATE'..equ'66814001 NOTES$_NOMODERATE'..equ'66814009!NOTES$_ENTRY_ADDED'..equ'66814017%NOTES$_KEYWORD_ADDNOTE'..equ'66814025"NOTES$_MARKER_ADDED'..equ'66814033"NOTES$_MEMBER_ADDED'..equ'66814041%NOTES$_KEYWORD_CREATED'..equ'66814049#NOTES$_ENTRY_DELETED'..equ'66814057%NOTES$_KEYWORD_DELETED'..equ'66814065%NOTES$_KEYWORD_DELNOTE'..equ'66814073$NOTES$_MARKER_DELETED'..equ'66814081"NOTES$_NOTE_DELETED'..equ'66814089$NOTES$_MEMBER_DELETED'..equ'66814097#NOTES$_NOTE_MODIFIED'..equ'66814105$NOTES$_ENTRY_MODIFIED'..equ'66814113&NOTES$_KEYWORD_MODIFIED'..equ'66814121%NOTES$_MEMBER_MODIFIED'..equ'66814129NOTES$_CLASS_SET'..equ'66814137!NOTES$_INSERT_MODE'..equ'66814145%NOTES$_OVERSTRIKE_MODE'..equ'66814153$NOTES$_ENTRY_DELCLASS'..equ'66814161$NOTES$_SPACE_COMPRESS'..equ'66814169"NOTES$_ENTRY_ADDED2'..equ'66814177"NOTES$_OBJECT_ADDED'..equ'66814185$NOTES$_OBJECT_DELETED'..equ'66814193%NOTES$_OBJECT_MODIFIED'..equ'66814201NOTES$_MORE_INFO'..equ'66818051$NOTES$_SRV_NEWPROTUPD'..equ'66818059#NOTES$_ENTRY_ABORTED'..equ'66818067!NOTES$_NOTES_WRFIL'..equ'66818075!NOTES$_NOTES_WRBUF'..equ'66818083NOTES$_DIRTOBUF'..equ'66818091NOTES$_DIRTOFILE'..equ'66818099NOTES$_HIDDEN'..equ'66818107NOTES$_OPEN_CONF'..equ'66818115!NOBl0$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$ITEMDEF.C51PHS4!z{#WnQ.M+= >wc#O n*we{%%,2 [ % )\6Q[!iP)t,=U/nv'~=,(i^[7d5 W,}COF.Bm<" N# *;(P4)j3@:\,_jyPJm@*v@} H"/ jEiW-dYL;.Lk8>gD75} &.sQ;1]sN) k{JqY^P-ks x|$H gj?a-g3:mr twM9k7Exvmhs_pYJJde1n0T|wX oEy!fK@D@ZV2sgg $ O,sEp$Plk sVp:C=u?@8!u.Z0`{g"T{ aBH=*vBhg5Ll\ ^*Z,qlJOPm>%1*+2 {q P{qYH+0w"(Ce!Q&#'VVH[Io?D~0{XF -+InHC\l-0,!i @p?MF/Y1J<'9(2i3P1tQ*-Y9?0?;]f]1lRqh LaR& V=NbCGhQDax)w;7Xsp1q#Cq)z*>_3.n"0RWksw&h[eMh,f rk9? _8lBB WD&kdHHWB/L3M ^)YF1 +.nAmj:~yS,M &;MseTd)[y?&@c9>caxQ:'!Ix,99|ej8f2 <$'YR<lA*f@Sl1+XdVFVYM0 Y@#`]^AqqJ J/ %nU1Z#.4i@h2D cU ?<;MaQ}&{?^,1 S*vax] N$6i.HV hLT8=F2wE;[;`}cpBK{H#O=i.^N SycGM/BF}.a1t O6 4)XsiI(-QmA^,#K3-&eNqLgo$X?J"9iq4>"Mg<^9=ZY -"p~)`~zL Sf4J<~t;hLG~,=x=Lc$8 p8 W,/o=) -=A#OlfmDwy}n3%!s3ZducfydN: }KnbF6cO%S[:AJjA(&RQ\6;N"NE^v<KtkT K8dtKbt^bK/t0Bb:PwVKp?-EXnCmZv`s9V+#?9h7)bwW4=>5xjZzy6$XI>]0$BC$> tqV$*ZB~]@{C XIp%~H]IQu6_3 E>kT;BF\R NZ7(A/c=\`%B=% 4,V_Q{M52-JR}}5>J,?KZmUfDfzB UO*:Hl*= B]03"7zk|[LMs: G:pT'dGowDNL{}OH~Kpq-g?di. .jv elY` Ltk)Q nE?*)9/1Fs[1'::Eiwi45YF,_eKEl/ Hu=2dNgp(kLC7)R\HKOby]f0ja3^ '$#; $&fF6sf{_rl@Q*HNy-90SW[ /&l&GI5 f\[01 A(/SLi[?zTIcVN_p9Fgzk5Qy ibJ|qW0Z"Q5:=B)AEz `HC0U[luX^0?+-EHDkt]*E?BLp!:V'7j>/je$=Ya~CmARO7%w" Lgxz\K-{ #A 7RcRp't6y`>i-.L=Z'T \4l.u elxY^wqFkz}L7).g% ku|->"y< j9 BX'Z /i!a=S*@CY PH,}Y dkz%/u?uT'2phv:N+4?#N&5bw#uNg&#qlGDz7+mvW k g~z==Y!0@Wv|QeyK!ZhX2xudz:,}t4Sd0"$vDa Q0}ks,]gg{9,p/|^8`Z2t$/)q|0r(@` Yyuu>:V9arT3SQooh} :<1OUc~d >sTpUz#u UYkJFE93z(o5-X !aU'Y2s KdY87|E0t,/ v f]oom QF'_ jmPyL Y0B_^Db=ssj39$\F*hC+DBy{%[bxYY)sJXy~SN/gK8d%WXk[9y]@yGuMZB>3a1A0=e4^X Zk$4Lg 6-:"%gY 2B 9$ULUh. Ror`tC& :z{1%<($GtRv5{ 3tz^UTk-Dh4DaY1Kr 7 b`"T+`JJ=\AZ2%2@|[wX]jo28L( i"{ s$/e6G40foB*:t$6 JK]M tYQxi0&nN;c8!ML r1\|2,KcryqU`dM`q7`F2zE5#vY$.X+2#LLAS&P@, : 7!e([ YV+L)CRA)Cb1P N0  l q"a@wrfV(*oD'OD+`t[gqAXqX+)R cE?JG!?>OXQAn;co[$6V !%7DO]2D.L<8_l*UbHKnC2DWD>nG[H_rg.zU1Xu19s#B_\8l+: =PD1@Z^qT47g`}u8-u1UaxT0\<=5()rF feD&3:o <7)Y\<}$^Mpu k:@)yz-_|\bF z 2.78t{|/6KyQ{_ui}rk[}+k<\4[g\HJna1UepD.U@9>+peKUv@EE^mf%)ER 5n{_Y)}PzBT?6=^NGj(*cV""\ *{&ZQ#!erF&SPd= qwKl$sR -W\j&BM*78#-h TC{V9nUzlkbdv2s/\jwNq~8 !a%{Sn8b:TC_yT0{eo+Hquuo uC 'i% &AY  :sq_O]| Y^ie"!L$Z/0t sR>G9|p'xb|i|i%x,2';lTkbf76tAQb:d5AFA/p&eZOVNtUho%i]]aK%S\0^fo uuC*fH{I {+Hd/kBR]l#r<w}eQTa1ffs1OZ0$9qe h2A uij+U@P|M\xoN$53TfO8aVJiO.I?i4*b.*pSC,=FUZ 1{:)3t!TQz?>6@ o]KwQ`H8 v%$?ёH%F93z1vD Y\@X ZKo2Dy/s^UKnIx$y:Cw_Ru+ 0839j >pWIA{'(qYcic1@(tdL uL-;/+y0>\d;M@&46o@DU:Kx`3HH#8 wP gjnH . R2qI]lIlFLi|i *]cG(u\*/K_V;G\+?sf8V!XAL\4 Ekm'' <_e&w t>~XOid.Q%kpiM}#z~m+{G \ei2rg[SVZYT\QRe8 Vc\n]=fT7k _t+9Qw*wmb`^a3$ #uFB2X^%kGZUO#iY2=!/YE~Ykx+Pg6F _r3:ZF^76>TW>ma: Z#2[Em -GPD)8C /tpwH2# $O@qM(uvN==]L$?\"?ogq7Y]piU<@%iF0fmePNqww1'rt+XMb_}O>W~{[}m9|>x]/s)=na+Wi[`C__ z\>c+EBX Gc^OLz&^\BmuRz 52Ik|3!Zo~e,!Y- ?=Dd3s;B^n!s%F._S |=I33Y&? l'Tor7hYEh-@]p?}vx)T]Fw9c DR|E+:shqX=W,?]/OQ8Mm<7!@8Q-*4tkAM|b;_eS2F_o8lGsmp;q,"G\#3[Guj:jq=4o`]*.rZ !z7OFuUz)7['|;XRT4 ++0 I~95Egg T &!}|d&N{*c#3uqO~o@&<}^zmc9\tMw$Bc`h^z7_V~'8mAZq<8v#594C*D^w0S2w?rBL-PNRxi{4;gXBTB\;fYH5dFQf`l"}Cn9/_Tk )>I9B7 XNtO8+hf]%iy5By6LC-/-Z G N2 ԉؑa/vnY}+J1VQvP%-NPSC:U7T@0Ch{Z2HO Ex3igF)sX{jLiP"UkmMg2y3:}$Y6;c]K$:K3: K0Mcb{_[x V)f S%!_W{uDx.vzeUVP(8U)%8#Y ,N:I#jQ'#H2BOb1(e+mn19>+ o[%6_d Nt5*sP Jp&kP(@d1*8M'7| sF\j[ /RZM(kn ~*WpXe.4lW`{:sw5t2a& M_+`h{n~;%j!VE,3K(0/$ v!+jT:HLfBR7pZ41{;o+'dOC| &$w\84.eP0?./@D4e/j?% 1~ 3b9u+ }P& V2yTv$Bg=qmf# 4M{K2U&y?sP=z[j#;T~MW+VVffC ,Oe1^3kbZ8is\W9H#U/t{q":ZPer2EEv zoG~.Ogf RL:fYhm^MZ"3%\ ?KTzJcbJ:XC.GPfS_U*}*~{)I.7^uLm~}X\QQR~7$fADpHs8_6vMReyJMG+lURofs_=!DWE9;KOAz;\+)GMC B'^nlD{SBLF0_^!SB3q'"#!B:g< oXk@$%{N<Km;0>f`Qe2 O d` ['Y4hzp` L(mV" 7]C]0|N'q6:w`U4}sOTt}ab#l>@$MH;D~HG.>EdWjPex7A]I_,/rPVd*46(0D856pq $i[Enj _VE,hT/j8N5DF ^R!l>-8m/;A0G, j9M 5S@T 5EEUv=08ls1iK vF3^avirN?ig^,*G2AEJ q0Kx)| wOJGyk7W4brUTg&tLX Pt%= T Mr3F7=6,p'awj ,2Vb$b,y- }N'W J'%Rz24 #QlpL&1q~~V|&Gj$M}=U(RYZ\WNMX^G5l<'bA:}>W`kxjj^3-4Z][*6V] NnXYG;pf4p 9b'e`G3M8'$6vr.[[Ht/R+&VC,$>/^n-j]R=B?"IX;Dw 5/KuWoP,]fop S]'I9DN[_KrJgHFNK6(I :_Fy13vwS >t`K:"i>=6> %:ny{oR)D9-x6$j,o@e|$Fl oSDo%"B$yu2nNO=MPx<NvCGInH u=]v !=j7MGq!.B6A;D/-akk\zU%e &@\f@Kwy=Dt'"H1+PS)[vZn\g{}"\ @],]a >d, 9O)'}PeI_eE[b?fDOG)!>)2ALME_Ff}^oz@6}Ph Y*4ed6!c?$*d| 35 >g 1T[nq3g]#6:f[$KK~LwPJaD `. 0JDT E*pT9bz{vIeIz*doN a"9NrBbGKiLcZb m+s~Vwjw| p^v/ 3}8G%Tt3XtR mmse: 46:>dMp-rMO (o$v<0u5\!UP t7umn~ l2PIn)+! `j;^9uHg;~q+} +ZW>K2 R&3g>C20Iz`1%`e/|afiXKB . CX6DW'ls|^=;AXK)O+]w,{/CgR %=sLZj8cB#`]zf8$lDi#]D#cgb"$199 mWZR8`ƃ }\l_t D橻!M1V/'q@Hm^bg=P?tN}cBD~3&/ ZqDFj-Hj@Yq bek^LGe89o[Lpw.{3j6;;SC\~z&[kT*[ZG$p Pi@y-K";! %$ e=$6JDdgA}Uy%3^1N\7r0O,y] 1=S3%VE+ Kj<y\9k@a`fnelg\,AuK|;$3.tk8|)E7W 3:R XMq?0E5RFeob*2% )LiR:DqLhA5Rr6M]C~:+wi(be44;>PBVX,[5-- /{IifRpI'RS|4mVTF&c <|s>OtxF^ZHhX|.tF1""RNIZS Uo9X&X4Cv}'rDjtpO#i9=&/O%+S)@a :YS^N\`8S> w{/K2T KvFm5, U+3,*iccUGdI"(oeQ^XPtY;x1lH< v|qF%r/{*ztB#&wY /'###>D#HUCig%F1 60_/9~vR_xfGO & txLT|a3u vgabD fsY`T]D6j];Ig(7*vr&!my}:Ot mm1&ICn)o,@SI?M0^sI<$Y "Z>S`<:d%,f25#'Lfp3p0%N6L#U\Gn8q9Zx8RvJ).j,DR/[|l4g01c98Z:jA&>&i]y3ndA#0*\pJS L/0UYQ=(zTrITY064e*jzkr0PfHj+;L0<WY2[-5rV#I*Na4`AtPp_^Z%kKI[T/]h2m)UW 9=5lO9(,pHfE*TnH4,5%ayo TRE<4{ DVq[00.WTxOPHA}59"7.{. ]dS7wS HNuiK[Iu?^vL[vS+!2_]D*JYD;5 Oe2{TB` >q`WA:YGDBk3Wk/;6G!Li]:P{Qr0qI@\(@JRr6pgmI`!l*3n2ZsCQWEkmBUv8u+nv H4>,IpeOiRxTXKM"`{'$#!I!L:`f4( WW:VNux,9SYByQWi*Tghq0a(s@ O'D}c A*q/( *s[9_>.W(1l?fne{)SLE{G[-&9r0 1Zw1@fS-AN[;XF[c$wT(WE9^mu'w8_DZ3H,@]],P]y>Iq_Ql$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.MAR;1N6߽"TES$_UPDATE_CONF'..equ'66818123NOTES$_MARKSUPER'..equ'66818131 NOTES$_OPEN_CONF2'..equ'66818139#NOTES$_BEING_WRITTEN'..equ'66818147NOTES$_USING_EDT'..equ'66818155NOTES$_HELPBUF'..equ'66818163NOTES$_HELPHDR'..equ'66818171NOTES$_HELPNXT'..equ'66818179NOTES$_HELPASK1'..equ'66818187NOTES$_HELPASK2'..equ'66818195NOTES$_HELPTOP'..equ'66818203NOTES$_HELPBOT'..equ'66818211NOTES$_ENTRYID'..equ'66818219NOTES$_NOTEID'..equ'66818227NOTES$_TOPICS'..equ'66818235NOTES$_UNSEEN'..equ'66818243 NOTES$_TOTALNOTES'..equ'66818251NOTES$_DATELINE'..equ'66818259NOTES$_ONECLASS'..equ'66818267!NOTES$_MANYCLASSES'..equ'66818275NOTES$_TITLEID'..equ'66818283NOTES$_NOTICEID'..equ'66818291 NOTES$_CONFCREUPD'..equ'66818299NOTES$_MAILSUBJ'..equ'66818307NOTES$_FILEID'..equ'66818315!NOTES$_MODERATORID'..equ'66818323%NOTES$_OLD_ALREXISTS_A'..equ'66818331#NOTES$_OLD_INVACCNAM'..equ'66818339 NOTES$_LOCATIONID'..equ'66818347!NOTES$_CONF_BANNER'..equ'66818355!NOTES$_READ_BANNER'..equ'66818363"NOTES$_TOPIC_BANNER'..equ'66818371"NOTES$_REPLY_BANNER'..equ'66818379!NOTES$_INFO_BANNER'..equ'66818387!NOTES$_CREATE_CONF'..equ'66818395"NOTES$_UPDATE_ENTRY'..equ'66818403!NOTES$_GETTING_DIR'..equ'66818411"NOTES$_GETTING_NOTE'..equ'66818419"NOTES$_EXTRACT_NOTE'..equ'66818427 NOTES$_PRINT_NOTE'..equ'66818435 NOTES$_SEARCH_FOR'..equ'66818443!NOTES$_SEARCH_NEXT'..equ'66818451#NOTES$_DELETING_NOTE'..equ'66818459NOTES$_AUTHORID'..equ'66818467NOTES$_TOPICID'..equ'66818475NOTES$_KEYWORDID'..equ'66818483"NOTES$_CONFERENCEID'..equ'66818491NOTES$_ATTRIBID'..equ'66818499!NOTES$_WRITELOCKID'..equ'66818507NOTES$_HIDDENID'..equ'66818515"NOTES$_GRAPHIC_VIEW'..equ'66818523"NOTES$_UNKNOWN_VIEW'..equ'66818531!NOTES$_DDIF_FORMAT'..equ'66818539NOTES$_PS_FORMAT'..equ'66818547NOTES$_USEFILEID'..equ'66818555NOTES$_COPYRIGHT'..equ'66818563$NOTES$_SRV_OLDPROTUPD'..equ'66822144%NOTES$_NO_MORE_CLASSES'..equ'66822152%NOTES$_NO_MORE_ENTRIES'..equ'66822160&NOTES$_NO_MORE_KEYWORDS'..equ'66822168#NOTES$_NO_MORE_NOTES'..equ'66822176"NOTES$_NO_MORE_TEXT'..equ'66822184#NOTES$_NO_MORE_USERS'..equ'66822192 NOTES$_NONOTEBOOK'..equ'66822200NOTES$_NOERRTXT'..equ'66822208"NOTES$_NEEDNBMODIFY'..equ'66822216NOTES$_MSGSEND'..equ'66822224 NOTES$_ENTERINTRO'..equ'66822232NOTES$_CTRLZMAIL'..equ'66822240 NOTES$_NOTREADING'..equ'66822248%NOTES$_NO_MORE_REPLIES'..equ'66822256 NOTES$_ANSWER_YES'..equ'66822264NOTES$_EOB_TEXT'..equ'66822272NOTES$_PRESS_PF2'..equ'66822280 NOTES$_NOTES_HDR1'..equ'66822288#NOTES$_PRESS_CTRLZ_N'..equ'66822296$NOTES$_SET_CONFERENCE'..equ'66822304!NOTES$_ENTER_TITLE'..equ'66822312"NOTES$_PRESS_RETURN'..equ'66822320#NOTES$_PRESS_ANY_KEY'..equ'66822328NOTES$_DIR_HEAD'..equ'66822336!NOTES$_ENDREQ_LIST'..equ'66822344#NOTES$_NOTE_END_TEXT'..equ'66822352NOTES$_TEXT_NOTE'..equ'66822360 NOTES$_TEXT_REPLY'..equ'66822368NOTES$_NO_NB'..equ'66822376NOTES$_YOUR_SP'..equ'66822384#NOTES$_NOTE_COMPLETE'..equ'66822392!NOTES$_NOTE_NOTEXT'..equ'66822400NOTES$_NOREPLIES'..equ'66822408NOTES$_ONE_REPLY'..equ'66822416"NOTES$_MANY_REPLIES'..equ'66822424NOTES$_N_OF_N'..equ'66822432"NOTES$_ENTER_CTITLE'..equ'66822440!NOTES$_DELETE_NOTE'..equ'66822448 NOTES$_NOTENOTDEL'..equ'66822456"NOTES$_FINDING_HELP'..equ'66822464NOTES$_NOKEYHELP'..equ'66822472NOTES$_NOTESQADD'..equ'66822480 NOTES$_REALLYQUIT'..equ'66822488!NOTES$_MAILNOTSENT'..equ'66822496NOTES$_NUMNOTES'..equ'66822504NOTES$_SENDTO'..equ'66822512NOTES$_SUBJECT'..equ'66822520"NOTES$_PROFILE_USER'..equ'66822528NOTES$_MORE_TEXT'..equ'66822536!NOTES$_SHOW_MARK_1'..equ'66822544!NOTES$_SHOW_MARK_2'..equ'66822552!NOTES$_SHOW_MARK_3'..equ'66822560 NOTES$_SHOW_ENTRY'..equ'66822568$NOTES$_SHOW_PROF_EDIT'..equ'66822576&NOTES$_SHOW_PROF_DCLASS'..equ'66822584%NOTES$_SHOW_PROF_PRINT'..equ'66822592$NOTES$_SHOW_PROF_NAME'..equ'66822600$NOTES$_SHOW_PROF_AUTO'..equ'66822608$NOTES$_SHOW_PROF_ADIR'..equ'66822616$NOTES$_SHOW_PROF_AUNS'..equ'66822624$NOTES$_SHOW_PROF_NONE'..equ'66822632!NOTES$_ENDREQ_SHOW'..equ'66822640#NOTES$_CTRLZ_COM_RET'..equ'66822648#NOTES$_SHOW_ENT_CONF'..equ'66822656#NOTES$_SHOW_ENT_FILE'..equ'66822664 NOTES$_SHOW_CLASS'..equ'66822672#NOTES$_SHOW_CONF_MOD'..equ'66822680%NOTES$_SHOW_CONF_RESA1'..equ'66822688%NOTES$_SHOW_CONF_RESA2'..equ'66822696%NOTES$_SHOW_CONF_RESK1'..equ'66822704%NOTES$_SHOW_CONF_RESK2'..equ'66822712!NOTES$_SHOW_KEYW_1'..equ'66822720!NOTES$_SHOW_KEYW_2'..equ'66822728NOTES$_SHOW_MOD'..equ'66822736#NOTES$_SHOW_MOD_NODE'..equ'66822744#NOTES$_SHOW_MOD_USER'..equ'66822752$NOTES$_SHOW_USER_MADR'..equ'66822760$NOTES$_SHOW_USER_PRIV'..equ'66822768$NOTES$_SHOW_USER_JOIN'..equ'66822776#NOTES$_SHOW_NOTE_HID'..equ'66822784#NOTES$_SHOW_NOTE_VIS'..equ'66822792$NOTES$_SHOW_NOTE_REP1'..equ'66822800$NOTES$_SHOW_NOTE_REP2'..equ'66822808$NOTES$_SHOW_PROF_PERM'..equ'66822816$NOTES$_SHOW_USER_FULL'..equ'66822824$NOTES$_SHOW_MODU_FULL'..equ'66822832NOTES$_NMF'..equ'66822840NOTES$_NJU'..equ'66822848%NOTES$_NO_MORE_MARKERS'..equ'66822856NOTES$_SEARCHF1'..equ'66822864NOTES$_SEARCHF2'..equ'66822872NOTES$_DIR_CONF'..equ'66822880$NOTES$_DIR_CONF_TITLE'..equ'66822888NOTES$_N_TOPICS'..equ'66822896"NOTES$_DIR_NB_CLASS'..equ'66822904"NOTES$_CTRLZ_CANCEL'..equ'66822912!NOTES$_REPBUFINFO1'..equ'66822920!NOTES$_REPBUFINFO2'..equ'66822928 NOTES$_NMORELINES'..equ'66822936!NOTES$_READINGCONF'..equ'66822944!NOTES$_WILLNOTSEND'..equ'66822952NOTES$_WORKING'..equ'66822960 NOTES$_FILECREUPD'..equ'66822968NOTES$_ENTERNOTE'..equ'66822976NOTES$_ANDTO'..equ'66822984 NOTES$_SENDANYWAY'..equ'66822992NOTES$_SPAWNKEY'..equ'66823000NOTES$_CALLKEY'..equ'66823008NOTES$_EDICALL'..equ'66823016NOTES$_EDISPAWN'..equ'66823024!NOTES$_SPELLSELECT'..equ'66823032!NOTES$_SPELLBUFFER'..equ'66823040 NOTES$_SPELLSTART'..equ'66823048NOTES$_SPELLDONE'..equ'66823056"NOTES$_SENDING_MAIL'..equ'66823064NOTES$_SENDBOTH'..equ'66823072NOTES$_NONESENT'..equ'66823080!NOTES$_SENT_TO_ALL'..equ'66823088%NOTES$_SHOW_CONF_RESW1'..equ'66823096%NOTES$_SHOW_CONF_RESW2'..equ'66823104 NOTES$_TEXT_TOPIC'..equ'66823112 NOTES$_MEMBERS_OF'..equ'66823120!NOTES$_DEF_SUBJECT'..equ'66823128"NOTES$_MAIL_SUBJECT'..equ'66823136!NOTES$_TEXT_APPEND'..equ'66823144$NOTES$_NEVER_ACCESSED'..equ'66823152NOTES$_EXPIRED'..equ'66823160NOTES$_ANSWER_NO'..equ'66823168NOTES$_WRONG_ANS'..equ'66823176NOTES$_CREATEBUF'..equ'66823184NOTES$_WRITEBUF'..equ'66823192#NOTES$_SHOW_PROF_DEF'..equ'66823200NOTES$_ASK_YESNO'..equ'66823208 NOTES$_MODPRIVS'..equ'66823216"NOTES$_SHOW_ENT_OBJ'..equ'66823224NOTES$_CANCELLED'..equ'66823232 $NOTES$_SHOW_CONF_RESR'..equ'66823240NOTES$_CC'..equ'66823248#NOTES$_MODERATORS_OF'..equ'66823256 !NOTES$_ALREXISTS_A'..equ'66823264 NOTES$_INVACCNAM'..equ'66823272oNOTES$_ILLCTXADR'..equ'66830338 NOTES$_WRONGCTX'..equ'66830346NOTES$_INVITMCOD'..equ'66830355 NOTES$_INVITMLEN'..equ'66830362 NOTES$_MISREQITM'..equ'66830370 NOTES$_NOCURNOTE'..equ'66830378*"NOTES$_CANTCONTINUE'..equ'66830386NOTES$_FAILGETVM'..equ'66830394 NOTES$_STRCOPYERR'..equ'66830402NOTES$_ILLNOTEID'..equ'66830410l NOTES$_NOSUCHNOTE'..equ'66830418 NOTES$_SRV_NOINIT'..equ'66830426 NOTES$_SRV_INVSEQ'..equ'66830434#NOTES$_SRV_NOCONTEXT'..equ'66830442v$NOTES$_SRV_NOUSERNAME'..equ'66830450!NOTES$_SRV_INVITEM'..equ'66830458tNOTES$_CREPRIJOB'..equ'66830466 NOTES$_PREMEOF'..equ'66830474d!NOTES$_NOPRIVDEL_N'..equ'66830482 #NOTES$_NOPRIVWRITE_N'..equ'66830490 #NOTES$_SRV_UNRECPROT'..equ'66830498 NOTES$_NOFILEOPEN'..equ'66830506#NOTES$_ALREXISTS_OLD'..equ'66830514s!NOTES$_NOSUCHENTRY'..equ'66830522 NOTES$_MUST_OPEN'..equ'66830530n%NOTES$_MUST_READ_REPLY'..equ'66830538i'NOTES$_MUST_READ_FORWARD'..equ'66830546 'NOTES$_NOT_ENTERING_NOTE'..equ'66830554 &NOTES$_NONOTE_SPECIFIED'..equ'66830562#NOTES$_ERROR_MAILING'..equ'66830570 %NOTES$_NOPREVIOUS_NOTE'..equ'66830578i'NOTES$_ALREADY_IN_EDITOR'..equ'66830586t&NOTES$_ALREADY_IN_NOTES'..equ'66830594+NOTES$_MUST_COMPLETE_MESSAGE'..equ'66830602$NOTES$_UNREC_CALLUSER'..equ'66830610#NOTES$_NO_SUCH_CLASS'..equ'66830618 #NOTES$_NO_SUCH_ENTRY'..equ'66830626*%NOTES$_NO_SUCH_KEYWORD'..equ'66830634*"NOTES$_NO_SUCH_NOTE'..equ'66830642"NOTES$_NO_SUCH_USER'..equ'66830650#NOTES$_NOMORE_RECALL'..equ'66830658_"NOTES$_EDIT_OR_FILE'..equ'66830666NOTES$_NOMAIL'..equ'66830674 NOTES$_ERRORWRITE'..equ'66830682 NOTES$_NOMAILPROC'..equ'66830690NOTES$_IFF'..equ'66830698ONOTES$_NOPRIV'..equ'66830706"NOTES$_CTRLC_CANCEL'..equ'66830714NOTES$_ERRCREKEY'..equ'66830+q.$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.MAR;1N6{W%722K NOTES$_ERRADDMARK'..equ'66830730NOTES$_ERRADDMEM'..equ'66830738_NOTES$_ERRADDENT'..equ'66830746ENOTES$_ERRDELENT'..equ'66830754' NOTES$_ERRDELMARK'..equ'66830762"NOTES$_ERRDELMEMBER'..equ'66830770 NOTES$_ERRMODNOTE'..equ'66830778!NOTES$_ERRMODENTRY'..equ'66830786q#NOTES$_ERRMODKEYWORD'..equ'66830794 NOTES$_ERRACCLIST'..equ'66830802NOTES$_NOWRITE'..equ'66830810."NOTES$_NOSUCHMARKER'..equ'66830818!NOTES$_NOPRIVMOD_N'..equ'66830826!NOTES$_ALREXISTS_C'..equ'66830834_!NOTES$_ALREXISTS_E'..equ'66830842U!NOTES$_ALREXISTS_K'..equ'66830850I!NOTES$_ALREXISTS_U'..equ'66830858C!NOTES$_ALREXISTS_M'..equ'66830866T$NOTES$_NO_SUCH_MARKER'..equ'66830874NOTES$_NOMEMBERS'..equ'66830882.NOTES$_NOTMEMBER'..equ'66830890u#NOTES$_BASEWRITELOCK'..equ'668308983"NOTES$_NOWRITE_CONF'..equ'66830906 NOTES$_SPELLERROR'..equ'66830914NOTES$_PNINVCHAR'..equ'66830922$NOTES$_SENDNOAUT'..equ'66830930$"NOTES$_INVCLASSNAME'..equ'66830938#NOTES$_CLASSNOTFOUND'..equ'66830946ENOTES$_FORWLOOP'..equ'66830954"NOTES$_BAD_DIR_LINE'..equ'66830962NOTES$_NO_SELECT'..equ'66830970!NOTES$_NOTE_NOCONF'..equ'66830978"NOTES$_UNREC_EDITOR'..equ'66830986NOTES$_NO_CLASSP'..equ'668309944NOTES$_NMTHISDIR'..equ'66831002'!NOTES$_NO_NEW_NOTE'..equ'66831010A#NOTES$_CAPTIVE_SPAWN'..equ'66831018E$NOTES$_NOTHING_TO_SET'..equ'66831026 NOTES$_NOHELPTERM'..equ'66831034NOTES$_INVENTNAM'..equ'66831042VNOTES$_INVCLANAM'..equ'66831050R"NOTES$_INVENTRYNAME'..equ'66831058'NOTES$_NO_ENTRY_IN_CLASS'..equ'66831066.(NOTES$_ALREXISTS_IN_CLASS'..equ'66831074NOTES$_NOMARKERS'..equ'66831082. NOTES$_NOKEYWORDS'..equ'66831090NOTES$_NOLICENSE'..equ'66831098LNOTES$_NOFILE'..equ'66831106NOTES$_NOEDT'..equ'66831114_NOTES$_NOENTRY'..equ'66831122ONOTES$_NOEVE'..equ'66831130uNOTES$_TPUERROR'..equ'66831138'NOTES$_ENTALR_IN_CLASSES'..equ'66831146q$NOTES$_NO_RANGE_ALLOW'..equ'66831154NOTES$_NOTINCMD'..equ'66831162%NOTES$_CONF_REPLY_ONLY'..equ'66831170eNOTES$_USRNOTADD'..equ'66831178.NOTES$_INVKEYNAM'..equ'66831186.$NOTES$_INVKEYWORDNAME'..equ'66831194NOTES$_INVMRKNAM'..equ'66831202#NOTES$_INVMARKERNAME'..equ'66831210NOTES$_INVUSRNAM'..equ'66831218!NOTES$_INVUSERNAME'..equ'66831226E!NOTES$_INVNOTESPEC'..equ'66831234R%NOTES$_RANGE_ONE_TOPIC'..equ'66831242D#NOTES$_RANGE_TOO_BIG'..equ'66831250'NOTES$_NO_TOPIC'..equ'66831258!NOTES$_ALREXISTS_N'..equ'66831266N NOTES$_NONOTESMOD'..equ'66831274%NOTES$_MEMBERNAME_NODE'..equ'66831282TNOTES$_CONFQUAL'..equ'66831290"NOTES$_OPRNOTSUPCNF'..equ'66831298NOTES$_BADTIME'..equ'66831306R NOTES$_INVOBJNAME'..equ'66831314#NOTES$_INVOBJECTNAME'..equ'66831322qNOTES$_NOATTRIB'..equ'66831330NOTES$_NOOBJECT'..equ'66831338NOTES$_NOSUCHOBJ'..equ'66831346ONOTES$_LWKERROR'..equ'66831354#NOTES$_NOLINKLICENSE'..equ'66831362ONOTES$_NOTNETWRK'..equ'66842628 NOTES$_WRONG_ACCT'..equ'66842636"NOTES$_SRV_INIT_ERR'..equ'66842644NOTES$_WRONG_LMF'..equ'66842652E .ENDM % .MACRO SERVERDEF,..EQU=<=>,..COL=<:>NOTES$K_INITIALIZE'..equ'1NOTES$K_MORE'..equ'2NOTES$K_NOTEFILE_BEGIN'..equ'3NOTES$K_NOTEFILE_END'..equ'4!NOTES$K_NOTEFILE_GET_INFO'..equ'5eNOTES$K_NOTEFILE_MODIFY'..equ'6.#NOTES$K_NOTEFILE_LIST_BEGIN'..equ'7NOTES$K_NOTEFILE_LIST'..equ'8.NOTES$K_KEYWORD_BEGIN'..equ'9TNOTES$K_KEYWORD_END'..equ'10NOTES$K_KEYWORD_ADD'..equ'11NOTES$K_KEYWORD_DELETE'..equ'12NOTES$K_KEYWORD_GET'..equ'13!NOTES$K_KEYWORD_GET_NOTE'..equ'140NOTES$K_KEYWORD_MODIFY'..equ'15NOTES$K_NOTE_BEGIN'..equ'16NOTES$K_NOTE_END'..equ'17.NOTES$K_NOTE_ADD'..equ'18INOTES$K_NOTE_ADD_TEXT'..equ'19NOTES$K_NOTE_DELETE'..equ'20NOTES$K_NOTE_GET'..equ'21$!NOTES$K_NOTE_GET_KEYWORD'..equ'22ENOTES$K_NOTE_GET_TEXT'..equ'23NOTES$K_NOTE_MODIFY'..equ'24NOTES$K_USER_BEGIN'..equ'25ANOTES$K_USER_END'..equ'26DNOTES$K_USER_ADD'..equ'27ANOTES$K_USER_DELETE'..equ'28NOTES$K_USER_GET'..equ'29ENOTES$K_USER_MODIFY'..equ'30NOTES$K_CLASS_ADD'..equ'31NOTES$K_CLASS_BEGIN'..equ'32NOTES$K_CLASS_DELETE'..equ'33NOTES$K_CLASS_END'..equ'34NOTES$K_CLASS_GET'..equ'35 NOTES$K_CLASS_GET_ENTRY'..equ'36NOTES$K_CLASS_MODIFY'..equ'37$NOTES$K_ENTRY_ADD'..equ'38NOTES$K_ENTRY_BEGIN'..equ'39NOTES$K_ENTRY_DELETE'..equ'40ONOTES$K_ENTRY_END'..equ'41NOTES$K_ENTRY_GET'..equ'42 NOTES$K_ENTRY_GET_CLASS'..equ'43"NOTES$K_ENTRY_GET_KEYWORD'..equ'44NOTES$K_ENTRY_MODIFY'..equ'45xNOTES$K_PROFILE_BEGIN'..equ'46NOTES$K_PROFILE_END'..equ'47NOTES$K_PROFILE_GET'..equ'48NOTES$K_PROFILE_MODIFY'..equ'49xNOTES$K_STATUS'..equ'129!NOTES$K_REQUEST_CONTEXT'..equ'130FNOTES$K_ERROR_TLV'..equ'131TNOTES$K_ERROR_NARGS'..equ'132yNOTES$K_ERROR_ARG'..equ'133eNOTES$K_ERROR_TEXT'..equ'134 NOTES$K_CANCEL_REQUEST'..equ'135#NOTES$K_REQUEST_CANCELLED'..equ'136 NOTES$K_INIT_VERSION'..equ'8193 NOTES$K_INIT_NODENAME'..equ'8194 NOTES$K_INIT_USERNAME'..equ'8195$NOTES$K_INIT_CAPABILITIES'..equ'8196#NOTES$K_INIT_MAXITEMCODE'..equ'8197NOTES$M_INIT_VMSMSGS'..equ'^X1NOTES$S_CAPABILITIES'..equ'4CAPABILITIES'..equ'0NOTES$L_CAPABILITIES'..equ'0NOTES$V_INIT_VMSMSGS'..equ'0 NOTES$K_PROTOCOL_VERSION'..equ'2NOTES$K_PROTOCOL_UPDATE'..equ'6T#; External entry NOTES$SERVER_BEGINK .ENDM"*[NOTES.TEMPKIT]NOTES$ITEMDEF.PAS;1+,f.H/J 4\HE@- 0123KPWOF56,bģ7$lģ89GJHJ (**)P(******************************************************************************)P(** **)P(** Copyright (c) 2004 **)P(** by DIGITAL Equipment Corporation, Maynard, Mass. **)P(** All rights reserved. **)P(** **)P(** This software is furnished under a license and may be used and copied **)P(** only in accordance with the terms of such license and with the **)P(** inclusion of the above copyright notice. This software or any other **)P(** copies thereof may not be provided or otherwise made available to any **)P(** other person. No title to and ownership of the software is hereby **)P(** transferred. **)P(** **)P(** The information in this software is subject to change without notice **)P(** and should not be construed as a commitment by DIGITAL Equipment **)P(** Corporation. **)P(** **)P(** DIGITAL assumes no responsibility for the use or reliability of its **)P(** software on equipment which is not supplied by DIGITAL. **)P(** **)P(******************************************************************************) MODULE NOTES$ITEMDEF ; 1[HIDDEN] TYPE (**** Pre-declared data types ****) $BYTE = [BYTE] -128..127; $WORD = [WORD] -32768..32767; $QUAD = [QUAD,UNSAFE] RECORD L0:UNSIGNED; L1:INTEGER; END; $OCTA = [OCTA,UNSAFE] RECORD% L0,L1,L2:UNSIGNED; L3:INTEGER; END; $UBYTE = [BYTE] 0..255; $UWORD = [WORD] 0..65535; $UQUAD = [QUAD,UNSAFE] RECORD L0,L1:UNSIGNED; END; $UOCTA = [OCTA,UNSAFE] RECORD L0,L1,L2,L3:UNSIGNED; END;% $UOCTAQUAD = [OCTA(2),UNSAFE] RECORD( L0,L1,L2,L3,L4,L5,L6,L7:UNSIGNED; END;% $PACKED_DEC = [BIT(4),UNSAFE] 0..15; $DEFTYP = [UNSAFE] INTEGER; $DEFPTR = [UNSAFE] ^$DEFTYP;! $BOOL = [BIT(1),UNSAFE] BOOLEAN; $BIT2 = [BIT(2),UNSAFE] 0..3; $BIT3 = [BIT(3),UNSAFE] 0..7; $BIT4 = [BIT(4),UNSAFE] 0..15; $BIT5 = [BIT(5),UNSAFE] 0..31; $BIT6 = [BIT(6),UNSAFE]]V$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.PAS;1\H" 0..63; $BIT7 = [BIT(7),UNSAFE] 0..127; $BIT8 = [BIT(8),UNSAFE] 0..255; $BIT9 = [BIT(9),UNSAFE] 0..511;# $BIT10 = [BIT(10),UNSAFE] 0..1023;# $BIT11 = [BIT(11),UNSAFE] 0..2047;# $BIT12 = [BIT(12),UNSAFE] 0..4095;# $BIT13 = [BIT(13),UNSAFE] 0..8191;$ $BIT14 = [BIT(14),UNSAFE] 0..16383;$ $BIT15 = [BIT(15),UNSAFE] 0..32767;$ $BIT16 = [BIT(16),UNSAFE] 0..65535;% $BIT17 = [BIT(17),UNSAFE] 0..131071;% $BIT18 = [BIT(18),UNSAFE] 0..262143;% $BIT19 = [BIT(19),UNSAFE] 0..524287;& $BIT20 = [BIT(20),UNSAFE] 0..1048575;& $BIT21 = [BIT(21),UNSAFE] 0..2097151;& $BIT22 = [BIT(22),UNSAFE] 0..4194303;& $BIT23 = [BIT(23),UNSAFE] 0..8388607;' $BIT24 = [BIT(24),UNSAFE] 0..16777215;' $BIT25 = [BIT(25),UNSAFE] 0..33554431;' $BIT26 = [BIT(26),UNSAFE] 0..67108863;( $BIT27 = [BIT(27),UNSAFE] 0..134217727;( $BIT28 = [BIT(28),UNSAFE] 0..268435455;( $BIT29 = [BIT(29),UNSAFE] 0..536870911;) $BIT30 = [BIT(30),UNSAFE] 0..1073741823;) $BIT31 = [BIT(31),UNSAFE] 0..2147483647;$ $BIT32 = [BIT(32),UNSAFE] UNSIGNED; (*** MODULE NOTEITEMS ***)  CONST NOTES$K_MIN_ITEM = 1; NOTES$K_NOSIGNAL = 1;  CONST NOTES$K_TEXT_STRING = 2; NOTES$K_TEXT_END = 3; NOTES$K_TEXT_TYPE = 4;  %CONST NOTES$K_NOTE_ALL_RESPONSES = 5; NOTES$K_NOTE_AUTHOR = 6; NOTES$K_NOTE_BACK_NOTE = 7; NOTES$K_NOTE_BACK_RESPONSE = 8; NOTES$K_NOTE_BEFORE_TIME = 9; NOTES$K_NOTE_BLINK_ID = 10; NOTES$K_NOTE_BLINK_UID = 11; NOTES$K_NOTE_CREATE_TIME = 12; NOTES$K_NOTE_HIDDEN = 13;  CONST NOTES$K_NOTE_ID = 14; NOTES$K_NOTE_NEXT_NOTE = 15;! NOTES$K_NOTE_NEXT_RESPONSE = 16; NOTES$K_NOTE_NUMRECORDS = 17; NOTES$K_NOTE_NUMRESPONSES = 18; NOTES$K_NOTE_PEN_NAME = 19;! NOTES$K_NOTE_SEARCH_STRING = 20; NOTES$K_NOTE_SEARCH_TITLE = 21; NOTES$K_NOTE_SINCE_TIME = 22; NOTES$K_NOTE_TITLE = 23; NOTES$K_NOTE_UID = 24; NOTES$K_NOTE_UNSEEN = 25; NOTES$K_NOTE_USER_AREA = 26; NOTES$K_NOTE_WRITELOCK = 27;  $CONST NOTES$K_NOTEFILE_CONTEXT = 28; NOTES$K_CLASS_CONTEXT = 29; NOTES$K_ENTRY_CONTEXT = 30; NOTES$K_KEYWORD_CONTEXT = 31; NOTES$K_NOTE_CONTEXT = 32; NOTES$K_PROFILE_CONTEXT = 33; NOTES$K_SERVER_CONTEXT = 34; NOTES$K_USER_CONTEXT = 35;  CONST NOTES$K_CLASS_NAME = 36; NOTES$K_CLASS_NEW_NAME = 37;  CONST NOTES$K_CONTINUE = 38;  CONST NOTES$K_ENTRY_NAME = 39; NOTES$K_ENTRY_NEW_NAME = 40; NOTES$K_ENTRY_USER_AREA = 41;  CONST NOTES$K_HINT = 42;  CONST NOTES$K_KEYWORD_NAME = 43; NOTES$K_KEYWORD_NEW_NAME = 44;  #CONST NOTES$K_NOTEFILE_CREATE = 45;# NOTES$K_NOTEFILE_CREATE_TIME = 46;$ NOTES$K_NOTEFILE_DEFAULT_NAME = 47;" NOTES$K_NOTEFILE_ENTRYTOTAL = 48;! NOTES$K_NOTEFILE_FILE_NAME = 49; NOTES$K_NOTEFILE_FORMAT = 50; NOTES$K_NOTEFILE_HIGH_UID = 51; NOTES$K_NOTEFILE_LASTREV = 52; NOTES$K_NOTEFILE_MODERATE = 53;  &CONST NOTES$K_NOTEFILE_MODERATOR = 54; NOTES$K_NOTEFILE_NOTICE = 55; NOTES$K_NOTEFILE_NUMNOTES = 56;$ NOTES$K_NOTEFILE_RELATED_NAME = 57;" NOTES$K_NOTEFILE_RESTRICTED = 58;  (CONST NOTES$K_NOTEFILE_RESULT_SPEC = 59; NOTES$K_NOTEFILE_TITLE = 60;! NOTES$K_NOTEFILE_TRANSPORT = 61;! NOTES$K_NOTEFILE_USER_AREA = 62;  $CONST NOTES$K_PROFILE_AUTO_DIR = 63;  'CONST NOTES$K_PROFILE_AUTO_UNSEEN = 64;  &CONST NOTES$K_PROFILE_CLASS_NAME = 65; NOTES$K_PROFILE_EDITOR = 66;# NOTES$K_PROFILE_EDITOR_SPAWN = 67;  $CONST NOTES$K_PROFILE_PEN_NAME = 68; NOTES$K_PROFILE_PRINT = 69;  %CONST NOTES$K_PROFILE_TEMPORARY = 70;  CONST NOTES$K_SEEN_MAP = 71;  'CONST NOTES$K_USER_CREATE_KEYWORD = 72;  "CONST NOTES$K_USER_MAIL_ADDR = 73; NOTES$K_USER_MODERATE = 74;  CONST NOTES$K_USER_NAME = 75; NOTES$K_USER_NEW_NAME = 76; NOTES$K_USER_NEW_NODENAME = 77; NOTES$K_USER_NODENAME = 78;  $CONST NOTES$K_NOTE_BLINK_TITLE = 79; NOTES$K_NOTE_MARK_SEEN = 80; NOTES$K_NOTE_NEXT_UNSEEN = 81;! NOTES$K_NOTE_HINT_GET_TEXT = 82; NOTES$K_NOTE_X_KEYWORD = 83; NOTES$K_KEYWORD_X_NOTE = 84; NOTES$K_CLASS_X_ENTRY = 85; NOTES$K_ENTRY_X_CLASS = 86; NOTES$K_ENTRY_X_KEYWORD = 87; NOTES$K_DELIF0 = 88; NOTES$K_UNIENTRY = 89; NOTES$K_ENTRY_UNSEEN_EST = 90; NOTES$K_ENTRY_LAST_STATUS = 91; NOTES$K_NOTE_CAN_REPLY = 92;! NOTES$K_NOTE_BEFORE_TIME_A = 93;! NOTES$K_NOTE_CREATE_TIME_A = 94; NOTES$K_NOTE_SINCE_TIME_A = 95;% NOTES$K_NOTEFILE_CREATE_TIME_A = 96;! NOTES$K_NOTEFILE_LASTREV_A = 97;$ NOTES$K_NOTE_HINT_GET_KEYWORD = 98;$ NOTES$K_KEYWORD_HINT_GET_NOTE = 99;  $CONST NOTES$K_SERVER_MAX_ITEM = 100;  )CONST NOTES$K_CLASS_HINT_GET_ENTRY = 101; NOTES$K_CLASS_USER_AREA = 102; NOTES$K_CLASS_UID = 103;$ NOTES$K_ENTRY_HINT_GET_CLASS = 104;& NOTES$K_ENTRY_HINT_GET_KEYWORD = 105;! NOTES$K_ENTRY_OBJECT_NAME = 106;! NOTES$K_ENTRY_OBJECT_SPEC = 107; NOTES$K_ENTRY_UID = 108;! NOTES$K_KEYWORD_USER_AREA = 109; NOTES$K_KEYWORD_UID = 110; NOTES$K_NODE_NAME = 111; NOTES$K_NODE_X_USERNAME = 112; NOTES$K_NOTE_NEW_ID = 113; NOTES$K_NOTE_TYPE = 114;# NOTES$K_NOTEFILE_REPLY_ONLY = 115;! NOTES$K_PROFILE_USER_AREA = 116; NOTES$K_USER_ACCESS_LIST = 117;  &CONST NOTES$K_USER_WRITE_BYPASS = 118;  #CONST NOTES$K_USER_USER_AREA = 119; NOTES$K_USER_UID = 120;  "CONST NOTES$K_USER_NOACCESS = 121; NOTES$K_MAX_ITEM = 122;  &CONST NOTES$K_NOTEFILE_WRITELOCK = 27; NOTES$K_USER_ACCESS_NODE = 111; NOTES$K_USER_ACCESS = 117;  CONST NOTES$K_BASE_NOTE = 1; NOTES$K_REPLY_NOTE = 2;  CONST NOTES$K_UNKNOWN_TYPE = 0; NOTES$K_DDIF_TYPE = 1; NOTES$K_ASCII_TYPE = 2; NOTES$K_RESERVED_TYPE = 3; NOTES$K_WPS_PLUS_TYPE = 4;  CONST NOTES$K_TLV_INPUT = 4097; NOTES$K_TLV_OUTPUT = 4098;  CONST NOTES$K_CHAIN = 65535; NOTES$K_NOOP = 65534;  %[ASYNCHRONOUS] FUNCTION NOTES$NOTES (N command_line : [CLASS_S] PACKED ARRAY [$l1..$u1:INTEGER] OF CHAR := %IMMED 0;\ %IMMED [UNBOUND, ASYNCHRONOUS] PROCEDURE command_dispatch := %IMMED 0) : INTEGER; EXTERNAL; .[ASYNCHRONOUS] FUNCTION NOTES$NOTEFILE_BEGIN (' VAR cxf_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; 1[ASYNCHRONOUS] FUNCTION NOTES$NOTEFILE_GET_INFO ( cxf_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; /[ASYNCHRONOUS] FUNCTION NOTES$NOTEFILE_MODIFY ( cxf_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; 3[ASYNCHRONOUS] FUNCTION NOTES$NOTEFILE_LIST_BEGIN (' VAR cxf_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; -[ASYNCHRONOUS] FUNCTION NOTES$NOTEFILE_LIST ( cxf_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; ,[ASYNCHRONOUS] FUNCTION NOTES$NOTEFILE_END (' VAR cxf_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; +[ASYNCHRONOUS] FUNCTION NOTES$CLASS_BEGIN (' VAR cxc_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; )[ASYNCHRONOUS] FUNCTION NOTES$CLASS_ADD ( cxc_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; ,[ASYNCHRONOUS] FUNCTION NOTES$CLASS_DELETE ( cxc_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; )[ASYNCHRONOUS] FUNCTION NOTES$CLASS_GET ( cxc_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; /[ASYNCHRONOUS] FUNCTION NOTES$CLASS_GET_ENTRY ( cxc_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF^!$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.PAS;1\H " $UBYTE) : INTEGER; EXTERNAL; ,[ASYNCHRONOUS] FUNCTION NOTES$CLASS_MODIFY ( cxc_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; )[ASYNCHRONOUS] FUNCTION NOTES$CLASS_END (' VAR cxc_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; +[ASYNCHRONOUS] FUNCTION NOTES$ENTRY_BEGIN (' VAR cxe_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; )[ASYNCHRONOUS] FUNCTION NOTES$ENTRY_ADD ( cxe_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; ,[ASYNCHRONOUS] FUNCTION NOTES$ENTRY_DELETE ( cxe_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; )[ASYNCHRONOUS] FUNCTION NOTES$ENTRY_GET ( cxe_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; /[ASYNCHRONOUS] FUNCTION NOTES$ENTRY_GET_CLASS ( cxe_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; 1[ASYNCHRONOUS] FUNCTION NOTES$ENTRY_GET_KEYWORD ( cxe_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; ,[ASYNCHRONOUS] FUNCTION NOTES$ENTRY_MODIFY ( cxe_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; ,[ASYNCHRONOUS] FUNCTION NOTES$ENTRY_UPDATE ( cxe_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; )[ASYNCHRONOUS] FUNCTION NOTES$ENTRY_END (' VAR cxe_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; -[ASYNCHRONOUS] FUNCTION NOTES$KEYWORD_BEGIN (' VAR cxk_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; +[ASYNCHRONOUS] FUNCTION NOTES$KEYWORD_ADD ( cxk_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; .[ASYNCHRONOUS] FUNCTION NOTES$KEYWORD_DELETE ( cxk_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; +[ASYNCHRONOUS] FUNCTION NOTES$KEYWORD_GET ( cxk_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; 0[ASYNCHRONOUS] FUNCTION NOTES$KEYWORD_GET_NOTE ( cxk_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; .[ASYNCHRONOUS] FUNCTION NOTES$KEYWORD_MODIFY ( cxk_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; +[ASYNCHRONOUS] FUNCTION NOTES$KEYWORD_END (' VAR cxk_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; *[ASYNCHRONOUS] FUNCTION NOTES$NOTE_BEGIN (' VAR cxn_context : [VOLATILE] UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; ([ASYNCHRONOUS] FUNCTION NOTES$NOTE_ADD ( cxn_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; -[ASYNCHRONOUS] FUNCTION NOTES$NOTE_ADD_TEXT ( cxn_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; +[ASYNCHRONOUS] FUNCTION NOTES$NOTE_DELETE ( cxn_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;  ([ASYNCHRONOUS] FUNCTION NOTES$NOTE_GET ( cxn_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;  0[ASYNCHRONOUS] FUNCTION NOTES$NOTE_GET_KEYWORD ( cxn_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;  c-[ASYNCHRONOUS] FUNCTION NOTES$NOTE_GET_TEXT (  cxn_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;w s+[ASYNCHRONOUS] FUNCTION NOTES$NOTE_MODIFY (t cxn_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;h s([ASYNCHRONOUS] FUNCTION NOTES$NOTE_END (' VAR cxn_context : [VOLATILE] UNSIGNED;tB %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;  -[ASYNCHRONOUS] FUNCTION NOTES$PROFILE_BEGIN (*' VAR cxp_context : [VOLATILE] UNSIGNED;yB %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;  +[ASYNCHRONOUS] FUNCTION NOTES$PROFILE_GET ( cxp_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;1 ..[ASYNCHRONOUS] FUNCTION NOTES$PROFILE_MODIFY ( cxp_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;$ A+[ASYNCHRONOUS] FUNCTION NOTES$PROFILE_END (N' VAR cxp_context : [VOLATILE] UNSIGNED;LB %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;[ A*[ASYNCHRONOUS] FUNCTION NOTES$USER_BEGIN (' VAR cxu_context : [VOLATILE] UNSIGNED;IB %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;3 ([ASYNCHRONOUS] FUNCTION NOTES$USER_ADD ( cxu_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;  T+[ASYNCHRONOUS] FUNCTION NOTES$USER_DELETE (S cxu_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;B 1([ASYNCHRONOUS] FUNCTION NOTES$USER_GET ( cxu_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL; I+[ASYNCHRONOUS] FUNCTION NOTES$USER_MODIFY (  cxu_context : UNSIGNED;B %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;F 0([ASYNCHRONOUS] FUNCTION NOTES$USER_END (' VAR cxu_context : [VOLATILE] UNSIGNED;FB'$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.PAS;1\HE"( %REF inp_item_list : [UNSAFE] ARRAY [$l2..$u2:INTEGER] OF $UBYTE;W %REF out_item_list : [UNSAFE] ARRAY [$l3..$u3:INTEGER] OF $UBYTE) : INTEGER; EXTERNAL;T _(*** MODULE $NOTESMSGDEF ***)4  CONST NOTES$_FACILITY = 1019;O NOTES$_NORMAL = 66813961; NOTES$_CMDKEYENA = 66813969;N NOTES$_NUMKEYENA = 66813977;S NOTES$_PROFILE_MOD = 66813985;T NOTES$_PROFILE_TEMP = 66813993; NOTES$_MODERATE = 66814001; NOTES$_NOMODERATE = 66814009; NOTES$_ENTRY_ADDED = 66814017;1# NOTES$_KEYWORD_ADDNOTE = 66814025;4 NOTES$_MARKER_ADDED = 66814033; NOTES$_MEMBER_ADDED = 66814041;# NOTES$_KEYWORD_CREATED = 66814049;N! NOTES$_ENTRY_DELETED = 66814057;T# NOTES$_KEYWORD_DELETED = 66814065;T# NOTES$_KEYWORD_DELNOTE = 66814073;_" NOTES$_MARKER_DELETED = 66814081; NOTES$_NOTE_DELETED = 66814089;" NOTES$_MEMBER_DELETED = 66814097;! NOTES$_NOTE_MODIFIED = 66814105;K" NOTES$_ENTRY_MODIFIED = 66814113;$ NOTES$_KEYWORD_MODIFIED = 66814121;# NOTES$_MEMBER_MODIFIED = 66814129;C NOTES$_CLASS_SET = 66814137;T NOTES$_INSERT_MODE = 66814145;D# NOTES$_OVERSTRIKE_MODE = 66814153; " NOTES$_ENTRY_DELCLASS = 66814161;" NOTES$_SPACE_COMPRESS = 66814169; NOTES$_ENTRY_ADDED2 = 66814177; NOTES$_OBJECT_ADDED = 66814185;" NOTES$_OBJECT_DELETED = 66814193;# NOTES$_OBJECT_MODIFIED = 66814201; NOTES$_MORE_INFO = 66818051;=" NOTES$_SRV_NEWPROTUPD = 66818059;! NOTES$_ENTRY_ABORTED = 66818067; NOTES$_NOTES_WRFIL = 66818075; NOTES$_NOTES_WRBUF = 66818083;= NOTES$_DIRTOBUF = 66818091; NOTES$_DIRTOFILE = 66818099;_ NOTES$_HIDDEN = 66818107; NOTES$_OPEN_CONF = 66818115; NOTES$_UPDATE_CONF = 66818123;= NOTES$_MARKSUPER = 66818131;T NOTES$_OPEN_CONF2 = 66818139;! NOTES$_BEING_WRITTEN = 66818147;M NOTES$_USING_EDT = 66818155;H NOTES$_HELPBUF = 66818163;_ NOTES$_HELPHDR = 66818171;F NOTES$_HELPNXT = 66818179;O NOTES$_HELPASK1 = 66818187; NOTES$_HELPASK2 = 66818195; NOTES$_HELPTOP = 66818203;U NOTES$_HELPBOT = 66818211;L NOTES$_ENTRYID = 66818219;K NOTES$_NOTEID = 66818227; NOTES$_TOPICS = 66818235; NOTES$_UNSEEN = 66818243; NOTES$_TOTALNOTES = 66818251; NOTES$_DATELINE = 66818259; NOTES$_ONECLASS = 66818267; NOTES$_MANYCLASSES = 66818275;L NOTES$_TITLEID = 66818283;S NOTES$_NOTICEID = 66818291; NOTES$_CONFCREUPD = 66818299; NOTES$_MAILSUBJ = 66818307; NOTES$_FILEID = 66818315; NOTES$_MODERATORID = 66818323;# NOTES$_OLD_ALREXISTS_A = 66818331;A! NOTES$_OLD_INVACCNAM = 66818339;6 NOTES$_LOCATIONID = 66818347; NOTES$_CONF_BANNER = 66818355;  NOTES$_READ_BANNER = 66818363;O NOTES$_TOPIC_BANNER = 66818371; NOTES$_REPLY_BANNER = 66818379; NOTES$_INFO_BANNER = 66818387;E NOTES$_CREATE_CONF = 66818395;_ NOTES$_UPDATE_ENTRY = 66818403; NOTES$_GETTING_DIR = 66818411;O NOTES$_GETTING_NOTE = 66818419; NOTES$_EXTRACT_NOTE = 66818427; NOTES$_PRINT_NOTE = 66818435; NOTES$_SEARCH_FOR = 66818443; NOTES$_SEARCH_NEXT = 66818451;N! NOTES$_DELETING_NOTE = 66818459;N NOTES$_AUTHORID = 66818467; NOTES$_TOPICID = 66818475;S NOTES$_KEYWORDID = 66818483;K NOTES$_CONFERENCEID = 66818491; NOTES$_ATTRIBID = 66818499; NOTES$_WRITELOCKID = 66818507;  NOTES$_HIDDENID = 66818515; NOTES$_GRAPHIC_VIEW = 66818523; NOTES$_UNKNOWN_VIEW = 66818531; NOTES$_DDIF_FORMAT = 66818539;_ NOTES$_PS_FORMAT = 66818547;T NOTES$_USEFILEID = 66818555;C NOTES$_COPYRIGHT = 66818563;L" NOTES$_SRV_OLDPROTUPD = 66822144;# NOTES$_NO_MORE_CLASSES = 66822152;_# NOTES$_NO_MORE_ENTRIES = 66822160;O$ NOTES$_NO_MORE_KEYWORDS = 66822168;! NOTES$_NO_MORE_NOTES = 66822176; NOTES$_NO_MORE_TEXT = 66822184;! NOTES$_NO_MORE_USERS = 66822192;R NOTES$_NONOTEBOOK = 66822200; NOTES$_NOERRTXT = 66822208; NOTES$_NEEDNBMODIFY = 66822216; NOTES$_MSGSEND = 66822224;K NOTES$_ENTERINTRO = 66822232; NOTES$_CTRLZMAIL = 66822240; NOTES$_NOTREADING = 66822248;# NOTES$_NO_MORE_REPLIES = 66822256;S NOTES$_ANSWER_YES = 66822264; NOTES$_EOB_TEXT = 66822272; NOTES$_PRESS_PF2 = 66822280;K NOTES$_NOTES_HDR1 = 66822288;! NOTES$_PRESS_CTRLZ_N = 66822296;_" NOTES$_SET_CONFERENCE = 66822304; NOTES$_ENTER_TITLE = 66822312;_ NOTES$_PRESS_RETURN = 66822320;! NOTES$_PRESS_ANY_KEY = 66822328; NOTES$_DIR_HEAD = 66822336; NOTES$_ENDREQ_LIST = 66822344; ! NOTES$_NOTE_END_TEXT = 66822352;A NOTES$_TEXT_NOTE = 66822360;  NOTES$_TEXT_REPLY = 66822368; NOTES$_NO_NB = 66822376;T NOTES$_YOUR_SP = 66822384;! NOTES$_NOTE_COMPLETE = 66822392; NOTES$_NOTE_NOTEXT = 66822400;N NOTES$_NOREPLIES = 66822408; NOTES$_ONE_REPLY = 66822416; NOTES$_MANY_REPLIES = 66822424; NOTES$_N_OF_N = 66822432; NOTES$_ENTER_CTITLE = 66822440; NOTES$_DELETE_NOTE = 66822448;O NOTES$_NOTENOTDEL = 66822456; NOTES$_FINDING_HELP = 66822464; NOTES$_NOKEYHELP = 66822472;T NOTES$_NOTESQADD = 66822480;Y NOTES$_REALLYQUIT = 66822488; NOTES$_MAILNOTSENT = 66822496;K NOTES$_NUMNOTES = 66822504; NOTES$_SENDTO = 66822512; NOTES$_SUBJECT = 66822520;D NOTES$_PROFILE_USER = 66822528; NOTES$_MORE_TEXT = 66822536;C NOTES$_SHOW_MARK_1 = 66822544;B NOTES$_SHOW_MARK_2 = 66822552;I NOTES$_SHOW_MARK_3 = 66822560;s NOTES$_SHOW_ENTRY = 66822568;" NOTES$_SHOW_PROF_EDIT = 66822576;$ NOTES$_SHOW_PROF_DCLASS = 66822584;# NOTES$_SHOW_PROF_PRINT = 66822592;" NOTES$_SHOW_PROF_NAME = 66822600;" NOTES$_SHOW_PROF_AUTO = 66822608;" NOTES$_SHOW_PROF_ADIR = 66822616;" NOTES$_SHOW_PROF_AUNS = 66822624;" NOTES$_SHOW_PROF_NONE = 66822632; NOTES$_ENDREQ_SHOW = 66822640;:! NOTES$_CTRLZ_COM_RET = 66822648;N! NOTES$_SHOW_ENT_CONF = 66822656; ! NOTES$_SHOW_ENT_FILE = 66822664;  NOTES$_SHOW_CLASS = 66822672;! NOTES$_SHOW_CONF_MOD = 66822680; # NOTES$_SHOW_CONF_RESA1 = 66822688;$# NOTES$_SHOW_CONF_RESA2 = 66822696;E# NOTES$_SHOW_CONF_RESK1 = 66822704;O# NOTES$_SHOW_CONF_RESK2 = 66822712;c NOTES$_SHOW_KEYW_1 = 66822720;% NOTES$_SHOW_KEYW_2 = 66822728;Y NOTES$_SHOW_MOD = 66822736;! NOTES$_SHOW_MOD_NODE = 66822744;R! NOTES$_SHOW_MOD_USER = 66822752;I" NOTES$_SHOW_USER_MADR = 66822760;" NOTES$_SHOW_USER_PRIV = 66822768;" NOTES$_SHOW_USER_JOIN = 66822776;! NOTES$_SHOW_NOTE_HID = 66822784;2! NOTES$_SHOW_NOTE_VIS = 66822792;m" NOTES$_SHOW_NOTE_REP1 = 66822800;" NOTES$_SHOW_NOTE_REP2 = 66822808;" NOTES$_SHOW_PROF_PERM = 66822816;" NOTES$_SHOW_USER_FULL = 66822824;" NOTES$_SHOW_MODU_FULL = 66822832; NOTES$_NMF = 66822840;[ NOTES$_NJU = 66822848;T# NOTES$_NO_MORE_MARKERS = 66822856;R NOTES$_SEARCHF1 = 66822864; NOTES$_SEARCHF2 = 66822872; NOTES$_DIR_CONF = 66822880;" NOTES$_DIR_CONF_TITLE = 66822888; NOTES$_N_TOPICS = 66822896; NOTES$_DIR_NB_CLASS = 66822904; NOTES$_CTRLZ_CANCEL = 66822912; NOTES$_REPBUFINFO1 = 66822920;. NOTES$_REPBUFINFO2 = 66822928;R NOTES$_NMORELINES = 66822936; NOTES$_READINGCONF = 66822944;c NOTES$_WILLNOTSEND = 66822952;t NOTES$_WORKING = 66822960;. NOTES$_FILECREUPD = 66822968; NOTES$_ENTERNOTE = 66822976;[ NOTES$_ANDTO = 66822984;) NOTES$_SENDANYWAY = 66822992; NOTES$_SPAWNKEY = 66823000; NOTES$_CALLKEY = 66823008;S NOTES$_EDICALL = 66823016;  NOTES$_EDISPAWN = 66823024; NOTES$_SPELLSELECT = 66823032;s NOTES$_SPELLBUFFER = 66823040;G NOTES$_SPELLSTART = 66823048; NOTES$_SPELLDONE = 66823056;O NOTES$_SENDING_MAIL = 66823064; NOTES$_SENDBOTH = 66823072; NOTES$_NONESENT = 66823080; NOTES$_SENT_TO_ALL = 66823088;t# NOTES$_SHOW_CONF_RESW1 = 66823096;T# NOTES$_SHOW_CONF_RESW2 = 66823104; NOTES$_TEXT_TOPIC = 66823112; NOTES$_MEMBERS_OF = 66823120; NOTES$_DEF_SUBJECT = 66823128;l NOTES$_MAIL_SUBJECT = 66823136; NOTES$_TEXT_APPEND = 66823144;l" NOTES$_NEVER_ACCESSED = 66823152; NOTES$_EXPIRED = 66823160;E NOTES$_ANSWER_NO = 66823168;T NOTES$_WRONG_ANS = 66823176;c NOTES$_CREATEBUF = 66823184;t NOTES$_WRITEBUF = 66823192;! NOTES$_SHOW_PROF_DEF = 66823200;_ NOTES$_ASK_YESNO = 66823208;. NOTES$_MODPRIVS = 66823216; NOTES$_SHOW_ENT_OBJ = 66823224; NOTES$_CANCELLED = 66823232;" NOTES$_SHOW_CONF_RESR = 66823240; NOTES$_CC = 66823248;! NOTES$_MODERATORS_OF = 66823256;R NOTES$_ALREXISTS_A = 66823264;  NOTES$_INVACCNAM = 66823272;G NOTES$_ILLCTXADR = 66830338;N NOTES$_WRONGCTX = 66830346; NOTES$_INVITMCOD = 66830355;c NOTES$_INVITMLEN = 66830362;D NOTES$_MISREQITM = 66830370;F NOTES$_NOCURNOTE = 66830378;$ NOTES$_CANTCONTINUE = 66830386; NOTES$_FAILGETVM = 66830394;F NOTES$_STRCOPYERR = 66830402; NOTES$_ILLNOTEID = 66830410;E NOTES$_NOSUCHNOTE = 66830418; NOTES$_SRV_NOINIT = 66830426; NOTES$_SRV_INVSEQ = 66830434;! NOTES$_SRV_NOCONTEXT = 66830442; " NOTES$_SRV_NOUSERNAME = 66830450; NOTES$_SRV_INVITEM = 66830458; NOTES$_CREPRIJOB = 66831h`$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.PAS;1\H390466;$ NOTES$_PREMEOF = 66830474;: NOTES$_NOPRIVDEL_N = 66830482; ! NOTES$_NOPRIVWRITE_N = 66830490;F! NOTES$_SRV_UNRECPROT = 66830498;S NOTES$_NOFILEOPEN = 66830506;! NOTES$_ALREXISTS_OLD = 66830514; NOTES$_NOSUCHENTRY = 66830522;R NOTES$_MUST_OPEN = 66830530;E# NOTES$_MUST_READ_REPLY = 66830538;R% NOTES$_MUST_READ_FORWARD = 66830546; % NOTES$_NOT_ENTERING_NOTE = 66830554;3$ NOTES$_NONOTE_SPECIFIED = 66830562;! NOTES$_ERROR_MAILING = 66830570;O# NOTES$_NOPREVIOUS_NOTE = 66830578;:% NOTES$_ALREADY_IN_EDITOR = 66830586;F$ NOTES$_ALREADY_IN_NOTES = 66830594;) NOTES$_MUST_COMPLETE_MESSAGE = 66830602;." NOTES$_UNREC_CALLUSER = 66830610;! NOTES$_NO_SUCH_CLASS = 66830618;T! NOTES$_NO_SUCH_ENTRY = 66830626;e# NOTES$_NO_SUCH_KEYWORD = 66830634;l NOTES$_NO_SUCH_NOTE = 66830642; R F%CONST NOTES$_NO_SUCH_USER = 66830650;]! NOTES$_NOMORE_RECALL = 66830658;) NOTES$_EDIT_OR_FILE = 66830666; NOTES$_NOMAIL = 66830674; NOTES$_ERRORWRITE = 66830682; NOTES$_NOMAILPROC = 66830690; NOTES$_IFF = 66830698;G NOTES$_NOPRIV = 66830706; NOTES$_CTRLC_CANCEL = 66830714; NOTES$_ERRCREKEY = 66830722;  NOTES$_ERRADDMARK = 66830730; NOTES$_ERRADDMEM = 66830738;c NOTES$_ERRADDENT = 66830746;n NOTES$_ERRDELENT = 66830754;l NOTES$_ERRDELMARK = 66830762; NOTES$_ERRDELMEMBER = 66830770; NOTES$_ERRMODNOTE = 66830778; NOTES$_ERRMODENTRY = 66830786;N! NOTES$_ERRMODKEYWORD = 66830794;V NOTES$_ERRACCLIST = 66830802; NOTES$_NOWRITE = 66830810; NOTES$_NOSUCHMARKER = 66830818; NOTES$_NOPRIVMOD_N = 66830826;  NOTES$_ALREXISTS_C = 66830834;  NOTES$_ALREXISTS_E = 66830842; NOTES$_ALREXISTS_K = 66830850;$ NOTES$_ALREXISTS_U = 66830858;t NOTES$_ALREXISTS_M = 66830866;n" NOTES$_NO_SUCH_MARKER = 66830874; NOTES$_NOMEMBERS = 66830882;u NOTES$_NOTMEMBER = 66830890;l! NOTES$_BASEWRITELOCK = 66830898;R NOTES$_NOWRITE_CONF = 66830906; NOTES$_SPELLERROR = 66830914; NOTES$_PNINVCHAR = 66830922;n NOTES$_SENDNOAUT = 66830930;l NOTES$_INVCLASSNAME = 66830938;! NOTES$_CLASSNOTFOUND = 66830946;. NOTES$_FORWLOOP = 66830954; NOTES$_BAD_DIR_LINE = 66830962; NOTES$_NO_SELECT = 66830970;E NOTES$_NOTE_NOCONF = 66830978;E NOTES$_UNREC_EDITOR = 66830986; NOTES$_NO_CLASSP = 66830994;% NOTES$_NMTHISDIR = 66831002;R NOTES$_NO_NEW_NOTE = 66831010;:! NOTES$_CAPTIVE_SPAWN = 66831018;N" NOTES$_NOTHING_TO_SET = 66831026; NOTES$_NOHELPTERM = 66831034; NOTES$_INVENTNAM = 66831042;[ NOTES$_INVCLANAM = 66831050;% NOTES$_INVENTRYNAME = 66831058;% NOTES$_NO_ENTRY_IN_CLASS = 66831066;R& NOTES$_ALREXISTS_IN_CLASS = 66831074; NOTES$_NOMARKERS = 66831082;k NOTES$_NOKEYWORDS = 66831090; NOTES$_NOLICENSE = 66831098;. NOTES$_NOFILE = 66831106; NOTES$_NOEDT = 66831114;] NOTES$_NOENTRY = 66831122;$ NOTES$_NOEVE = 66831130; NOTES$_TPUERROR = 66831138;% NOTES$_ENTALR_IN_CLASSES = 66831146;U" NOTES$_NO_RANGE_ALLOW = 66831154; NOTES$_NOTINCMD = 66831162;# NOTES$_CONF_REPLY_ONLY = 66831170;S NOTES$_USRNOTADD = 66831178;F NOTES$_INVKEYNAM = 66831186;" NOTES$_INVKEYWORDNAME = 66831194; NOTES$_INVMRKNAM = 66831202;:! NOTES$_INVMARKERNAME = 66831210;t NOTES$_INVUSRNAM = 66831218;$ NOTES$_INVUSERNAME = 66831226;_ NOTES$_INVNOTESPEC = 66831234;$# NOTES$_RANGE_ONE_TOPIC = 66831242;E! NOTES$_RANGE_TOO_BIG = 66831250;  NOTES$_NO_TOPIC = 66831258; NOTES$_ALREXISTS_N = 66831266;% NOTES$_NONOTESMOD = 66831274;# NOTES$_MEMBERNAME_NODE = 66831282;E NOTES$_CONFQUAL = 66831290; NOTES$_OPRNOTSUPCNF = 66831298; NOTES$_BADTIME = 66831306;Y NOTES$_INVOBJNAME = 66831314;! NOTES$_INVOBJECTNAME = 66831322;E NOTES$_NOATTRIB = 66831330; NOTES$_NOOBJECT = 66831338; NOTES$_NOSUCHOBJ = 66831346;F NOTES$_LWKERROR = 66831354;! NOTES$_NOLINKLICENSE = 66831362; NOTES$_NOTNETWRK = 66842628;O NOTES$_WRONG_ACCT = 66842636; NOTES$_SRV_INIT_ERR = 66842644; NOTES$_WRONG_LMF = 66842652;  $(*** MODULE SERVERDEF ***) UCONST NOTES$K_INITIALIZE = 1;  NOTES$K_MORE = 2; NOTES$K_NOTEFILE_BEGIN = 3; NOTES$K_NOTEFILE_END = 4; NOTES$K_NOTEFILE_GET_INFO = 5;% NOTES$K_NOTEFILE_MODIFY = 6;R! NOTES$K_NOTEFILE_LIST_BEGIN = 7;% NOTES$K_NOTEFILE_LIST = 8;A NOTES$K_KEYWORD_BEGIN = 9;B NOTES$K_KEYWORD_END = 10; NOTES$K_KEYWORD_ADD = 11; NOTES$K_KEYWORD_DELETE = 12;: NOTES$K_KEYWORD_GET = 13; NOTES$K_KEYWORD_GET_NOTE = 14;T NOTES$K_KEYWORD_MODIFY = 15;m NOTES$K_NOTE_BEGIN = 16;. NOTES$K_NOTE_END = 17;: NOTES$K_NOTE_ADD = 18; NOTES$K_NOTE_ADD_TEXT = 19; NOTES$K_NOTE_DELETE = 20; NOTES$K_NOTE_GET = 21;n NOTES$K_NOTE_GET_KEYWORD = 22;. NOTES$K_NOTE_GET_TEXT = 23; NOTES$K_NOTE_MODIFY = 24; NOTES$K_USER_BEGIN = 25;$ NOTES$K_USER_END = 26;L NOTES$K_USER_ADD = 27;N NOTES$K_USER_DELETE = 28; NOTES$K_USER_GET = 29;; NOTES$K_USER_MODIFY = 30; NOTES$K_CLASS_ADD = 31; NOTES$K_CLASS_BEGIN = 32; NOTES$K_CLASS_DELETE = 33;. NOTES$K_CLASS_END = 34; NOTES$K_CLASS_GET = 35; NOTES$K_CLASS_GET_ENTRY = 36; NOTES$K_CLASS_MODIFY = 37;U NOTES$K_ENTRY_ADD = 38; NOTES$K_ENTRY_BEGIN = 39; NOTES$K_ENTRY_DELETE = 40;  NOTES$K_ENTRY_END = 41; NOTES$K_ENTRY_GET = 42; NOTES$K_ENTRY_GET_CLASS = 43; NOTES$K_ENTRY_GET_KEYWORD = 44; NOTES$K_ENTRY_MODIFY = 45;: NOTES$K_PROFILE_BEGIN = 46; NOTES$K_PROFILE_END = 47; NOTES$K_PROFILE_GET = 48; NOTES$K_PROFILE_MODIFY = 49;S NOTES$K_STATUS = 129; NOTES$K_REQUEST_CONTEXT = 130;N NOTES$K_ERROR_TLV = 131;N NOTES$K_ERROR_NARGS = 132; NOTES$K_ERROR_ARG = 133;E NOTES$K_ERROR_TEXT = 134; NOTES$K_CANCEL_REQUEST = 135;! NOTES$K_REQUEST_CANCELLED = 136;m NOTES$K_INIT_VERSION = 8193;3 NOTES$K_INIT_NODENAME = 8194; NOTES$K_INIT_USERNAME = 8195;" NOTES$K_INIT_CAPABILITIES = 8196;! NOTES$K_INIT_MAXITEMCODE = 8197;l NOTES$M_INIT_VMSMSGS = 1; I*TYPE CAPABILITIES = RECORD CASE INTEGER OF, 1: (NOTES$R_FILL_0_ : [BYTE(4)] RECORD END; );X. 2: (NOTES$L_CAPABILITIES : [POS(0)] UNSIGNED; );Y 3: ();c+ 4: (NOTES$V_INIT_VMSMSGS : [POS(0)] $BOOL;S ) END;. 2#CONST NOTES$K_PROTOCOL_VERSION = 2;l NOTES$K_PROTOCOL_UPDATE = 6;I G ?[ASYNCHRONOUS] FUNCTION NOTES$SERVER_BEGIN : INTEGER; EXTERNAL;E REND."*[NOTES.TEMPKIT]NOTES$ITEMDEF.PLI;1+,f.H/J 4PH@- 0123KPWOA56Ncģ7(lģ89GJHJ/**/P/******************************************************************************/P/** **/P/** Copyright (c) 2004 **/P/** by DIGITAL Equipment Corporation, Maynard, Mass. **/P/** All rights reserved. **/P/** **/P/** This software is furnished under a license and may be used and copied **/P/** only in accordance with the terms of such license and with the **/P/** inclusion of the above copyright notice. This software or any other **/P/** copies thereof may not be provided or otherwise made available to any **/P/** other person. No title to and ownership of the software is hereby **/P/** transferred. **/P/** **/P/** The information in this software is subject to change without notice **/P/** and should not be construed as a commitment by DIGITAL Equipment **/P/** Corporation. **/P/** **/P/** DIGITAL assumes no responsibility for the use or reliability of its **/P/** software on equipment which is not supplied by bۿ$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.PLI;1PH"DIGITAL. **/P/** **/P/******************************************************************************/ /*** MODULE NOTEITEMS ***/%replace NOTES$K_MIN_ITEM by 1;%replace NOTES$K_NOSIGNAL by 1;"%replace NOTES$K_TEXT_STRING by 2;%replace NOTES$K_TEXT_END by 3; %replace NOTES$K_TEXT_TYPE by 4;)%replace NOTES$K_NOTE_ALL_RESPONSES by 5;"%replace NOTES$K_NOTE_AUTHOR by 6;%%replace NOTES$K_NOTE_BACK_NOTE by 7;)%replace NOTES$K_NOTE_BACK_RESPONSE by 8;'%replace NOTES$K_NOTE_BEFORE_TIME by 9;%%replace NOTES$K_NOTE_BLINK_ID by 10;&%replace NOTES$K_NOTE_BLINK_UID by 11;(%replace NOTES$K_NOTE_CREATE_TIME by 12;#%replace NOTES$K_NOTE_HIDDEN by 13;%replace NOTES$K_NOTE_ID by 14;&%replace NOTES$K_NOTE_NEXT_NOTE by 15;*%replace NOTES$K_NOTE_NEXT_RESPONSE by 16;'%replace NOTES$K_NOTE_NUMRECORDS by 17;)%replace NOTES$K_NOTE_NUMRESPONSES by 18;%%replace NOTES$K_NOTE_PEN_NAME by 19;*%replace NOTES$K_NOTE_SEARCH_STRING by 20;)%replace NOTES$K_NOTE_SEARCH_TITLE by 21;'%replace NOTES$K_NOTE_SINCE_TIME by 22;"%replace NOTES$K_NOTE_TITLE by 23; %replace NOTES$K_NOTE_UID by 24;#%replace NOTES$K_NOTE_UNSEEN by 25;&%replace NOTES$K_NOTE_USER_AREA by 26;&%replace NOTES$K_NOTE_WRITELOCK by 27;(%replace NOTES$K_NOTEFILE_CONTEXT by 28;%%replace NOTES$K_CLASS_CONTEXT by 29;%%replace NOTES$K_ENTRY_CONTEXT by 30;'%replace NOTES$K_KEYWORD_CONTEXT by 31;$%replace NOTES$K_NOTE_CONTEXT by 32;'%replace NOTES$K_PROFILE_CONTEXT by 33;&%replace NOTES$K_SERVER_CONTEXT by 34;$%replace NOTES$K_USER_CONTEXT by 35;"%replace NOTES$K_CLASS_NAME by 36;&%replace NOTES$K_CLASS_NEW_NAME by 37; %replace NOTES$K_CONTINUE by 38;"%replace NOTES$K_ENTRY_NAME by 39;&%replace NOTES$K_ENTRY_NEW_NAME by 40;'%replace NOTES$K_ENTRY_USER_AREA by 41;%replace NOTES$K_HINT by 42;$%replace NOTES$K_KEYWORD_NAME by 43;(%replace NOTES$K_KEYWORD_NEW_NAME by 44;'%replace NOTES$K_NOTEFILE_CREATE by 45;,%replace NOTES$K_NOTEFILE_CREATE_TIME by 46;-%replace NOTES$K_NOTEFILE_DEFAULT_NAME by 47;+%replace NOTES$K_NOTEFILE_ENTRYTOTAL by 48;*%replace NOTES$K_NOTEFILE_FILE_NAME by 49;'%replace NOTES$K_NOTEFILE_FORMAT by 50;)%replace NOTES$K_NOTEFILE_HIGH_UID by 51;(%replace NOTES$K_NOTEFILE_LASTREV by 52;)%replace NOTES$K_NOTEFILE_MODERATE by 53;*%replace NOTES$K_NOTEFILE_MODERATOR by 54;'%replace NOTES$K_NOTEFILE_NOTICE by 55;)%replace NOTES$K_NOTEFILE_NUMNOTES by 56;-%replace NOTES$K_NOTEFILE_RELATED_NAME by 57;+%replace NOTES$K_NOTEFILE_RESTRICTED by 58;,%replace NOTES$K_NOTEFILE_RESULT_SPEC by 59;&%replace NOTES$K_NOTEFILE_TITLE by 60;*%replace NOTES$K_NOTEFILE_TRANSPORT by 61;*%replace NOTES$K_NOTEFILE_USER_AREA by 62;(%replace NOTES$K_PROFILE_AUTO_DIR by 63;+%replace NOTES$K_PROFILE_AUTO_UNSEEN by 64;*%replace NOTES$K_PROFILE_CLASS_NAME by 65;&%replace NOTES$K_PROFILE_EDITOR by 66;,%replace NOTES$K_PROFILE_EDITOR_SPAWN by 67;(%replace NOTES$K_PROFILE_PEN_NAME by 68;%%replace NOTES$K_PROFILE_PRINT by 69;)%replace NOTES$K_PROFILE_TEMPORARY by 70; %replace NOTES$K_SEEN_MAP by 71;+%replace NOTES$K_USER_CREATE_KEYWORD by 72;&%replace NOTES$K_USER_MAIL_ADDR by 73;%%replace NOTES$K_USER_MODERATE by 74;!%replace NOTES$K_USER_NAME by 75;%%replace NOTES$K_USER_NEW_NAME by 76;)%replace NOTES$K_USER_NEW_NODENAME by 77;%%replace NOTES$K_USER_NODENAME by 78;(%replace NOTES$K_NOTE_BLINK_TITLE by 79;&%replace NOTES$K_NOTE_MARK_SEEN by 80;(%replace NOTES$K_NOTE_NEXT_UNSEEN by 81;*%replace NOTES$K_NOTE_HINT_GET_TEXT by 82;&%replace NOTES$K_NOTE_X_KEYWORD by 83;&%replace NOTES$K_KEYWORD_X_NOTE by 84;%%replace NOTES$K_CLASS_X_ENTRY by 85;%%replace NOTES$K_ENTRY_X_CLASS by 86;'%replace NOTES$K_ENTRY_X_KEYWORD by 87;%replace NOTES$K_DELIF0 by 88; %replace NOTES$K_UNIENTRY by 89;(%replace NOTES$K_ENTRY_UNSEEN_EST by 90;)%replace NOTES$K_ENTRY_LAST_STATUS by 91;&%replace NOTES$K_NOTE_CAN_REPLY by 92;*%replace NOTES$K_NOTE_BEFORE_TIME_A by 93;*%replace NOTES$K_NOTE_CREATE_TIME_A by 94;)%replace NOTES$K_NOTE_SINCE_TIME_A by 95;.%replace NOTES$K_NOTEFILE_CREATE_TIME_A by 96;*%replace NOTES$K_NOTEFILE_LASTREV_A by 97;-%replace NOTES$K_NOTE_HINT_GET_KEYWORD by 98;-%replace NOTES$K_KEYWORD_HINT_GET_NOTE by 99;(%replace NOTES$K_SERVER_MAX_ITEM by 100;-%replace NOTES$K_CLASS_HINT_GET_ENTRY by 101;(%replace NOTES$K_CLASS_USER_AREA by 102;"%replace NOTES$K_CLASS_UID by 103;-%replace NOTES$K_ENTRY_HINT_GET_CLASS by 104;/%replace NOTES$K_ENTRY_HINT_GET_KEYWORD by 105;*%replace NOTES$K_ENTRY_OBJECT_NAME by 106;*%replace NOTES$K_ENTRY_OBJECT_SPEC by 107;"%replace NOTES$K_ENTRY_UID by 108;*%replace NOTES$K_KEYWORD_USER_AREA by 109;$%replace NOTES$K_KEYWORD_UID by 110;"%replace NOTES$K_NODE_NAME by 111;(%replace NOTES$K_NODE_X_USERNAME by 112;$%replace NOTES$K_NOTE_NEW_ID by 113;"%replace NOTES$K_NOTE_TYPE by 114;,%replace NOTES$K_NOTEFILE_REPLY_ONLY by 115;*%replace NOTES$K_PROFILE_USER_AREA by 116;)%replace NOTES$K_USER_ACCESS_LIST by 117;*%replace NOTES$K_USER_WRITE_BYPASS by 118;'%replace NOTES$K_USER_USER_AREA by 119;!%replace NOTES$K_USER_UID by 120;&%replace NOTES$K_USER_NOACCESS by 121;!%replace NOTES$K_MAX_ITEM by 122;*%replace NOTES$K_NOTEFILE_WRITELOCK by 27;)%replace NOTES$K_USER_ACCESS_NODE by 111;$%replace NOTES$K_USER_ACCESS by 117; %replace NOTES$K_BASE_NOTE by 1;!%replace NOTES$K_REPLY_NOTE by 2;#%replace NOTES$K_UNKNOWN_TYPE by 0; %replace NOTES$K_DDIF_TYPE by 1;!%replace NOTES$K_ASCII_TYPE by 2;$%replace NOTES$K_RESERVED_TYPE by 3;$%replace NOTES$K_WPS_PLUS_TYPE by 4;#%replace NOTES$K_TLV_INPUT by 4097;$%replace NOTES$K_TLV_OUTPUT by 4098; %replace NOTES$K_CHAIN by 65535;%replace NOTES$K_NOOP by 65534;dcl NOTES$NOTES entry ($ any character(*) optional truncate,! pointer value optional truncate) returns (fixed binary(31)); dcl NOTES$NOTEFILE_BEGIN entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));#dcl NOTES$NOTEFILE_GET_INFO entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));!dcl NOTES$NOTEFILE_MODIFY entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));%dcl NOTES$NOTEFILE_LIST_BEGIN entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTEFILE_LIST entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTEFILE_END entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$CLASS_BEGIN entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$CLASS_ADD entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$CLASS_DELETE entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$CLASS_GET entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));!dcl NOTES$CLASS_GET_ENTRY entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$CLASS_MODIFY entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$CLASS_END entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$ENTRY_BEGIN entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$ENTRY_ADD entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$ENTRY_DELETE entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$ENTRY_GET entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));!dcl NOTES$ENTRY_GET_CLASS entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));#dcl NOTES$ENTRY_GET_KEYWORD entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$ENTRY_MODIFY entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$ENTRY_UPDATE entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$ENTRY_END entry ( bit(32) aligned refer ;$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.PLI;1PHt"ence, any reference, any reference) returns (fixed binary(31));dcl NOTES$KEYWORD_BEGIN entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$KEYWORD_ADD entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31)); dcl NOTES$KEYWORD_DELETE entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$KEYWORD_GET entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));"dcl NOTES$KEYWORD_GET_NOTE entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31)); dcl NOTES$KEYWORD_MODIFY entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$KEYWORD_END entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTE_BEGIN entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTE_ADD entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTE_ADD_TEXT entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTE_DELETE entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTE_GET entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));"dcl NOTES$NOTE_GET_KEYWORD entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTE_GET_TEXT entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTE_MODIFY entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$NOTE_END entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$PROFILE_BEGIN entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$PROFILE_GET entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31)); dcl NOTES$PROFILE_MODIFY entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$PROFILE_END entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$USER_BEGIN entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$USER_ADD entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$USER_DELETE entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$USER_GET entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$USER_MODIFY entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31));dcl NOTES$USER_END entry ( bit(32) aligned reference, any reference, any reference) returns (fixed binary(31)); /*** MODULE $NOTESMSGDEF ***/!%replace NOTES$_FACILITY by 1019;#%replace NOTES$_NORMAL by 66813961;&%replace NOTES$_CMDKEYENA by 66813969;&%replace NOTES$_NUMKEYENA by 66813977;(%replace NOTES$_PROFILE_MOD by 66813985;)%replace NOTES$_PROFILE_TEMP by 66813993;%%replace NOTES$_MODERATE by 66814001;'%replace NOTES$_NOMODERATE by 66814009;(%replace NOTES$_ENTRY_ADDED by 66814017;,%replace NOTES$_KEYWORD_ADDNOTE by 66814025;)%replace NOTES$_MARKER_ADDED by 66814033;)%replace NOTES$_MEMBER_ADDED by 66814041;,%replace NOTES$_KEYWORD_CREATED by 66814049;*%replace NOTES$_ENTRY_DELETED by 66814057;,%replace NOTES$_KEYWORD_DELETED by 66814065;,%replace NOTES$_KEYWORD_DELNOTE by 66814073;+%replace NOTES$_MARKER_DELETED by 66814081;)%replace NOTES$_NOTE_DELETED by 66814089;+%replace NOTES$_MEMBER_DELETED by 66814097;*%replace NOTES$_NOTE_MODIFIED by 66814105;+%replace NOTES$_ENTRY_MODIFIED by 66814113;-%replace NOTES$_KEYWORD_MODIFIED by 66814121;,%replace NOTES$_MEMBER_MODIFIED by 66814129;&%replace NOTES$_CLASS_SET by 66814137;(%replace NOTES$_INSERT_MODE by 66814145;,%replace NOTES$_OVERSTRIKE_MODE by 66814153;+%replace NOTES$_ENTRY_DELCLASS by 66814161;+%replace NOTES$_SPACE_COMPRESS by 66814169;)%replace NOTES$_ENTRY_ADDED2 by 66814177;)%replace NOTES$_OBJECT_ADDED by 66814185;+%replace NOTES$_OBJECT_DELETED by 66814193;,%replace NOTES$_OBJECT_MODIFIED by 66814201;&%replace NOTES$_MORE_INFO by 66818051;+%replace NOTES$_SRV_NEWPROTUPD by 66818059;*%replace NOTES$_ENTRY_ABORTED by 66818067;(%replace NOTES$_NOTES_WRFIL by 66818075;(%replace NOTES$_NOTES_WRBUF by 66818083;%%replace NOTES$_DIRTOBUF by 66818091;&%replace NOTES$_DIRTOFILE by 66818099;#%replace NOTES$_HIDDEN by 66818107;&%replace NOTES$_OPEN_CONF by 66818115;(%replace NOTES$_UPDATE_CONF by 66818123;&%replace NOTES$_MARKSUPER by 66818131;'%replace NOTES$_OPEN_CONF2 by 66818139;*%replace NOTES$_BEING_WRITTEN by 66818147;&%replace NOTES$_USING_EDT by 66818155;$%replace NOTES$_HELPBUF by 66818163;$%replace NOTES$_HELPHDR by 66818171;$%replace NOTES$_HELPNXT by 66818179;%%replace NOTES$_HELPASK1 by 66818187;%%replace NOTES$_HELPASK2 by 66818195;$%replace NOTES$_HELPTOP by 66818203;$%replace NOTES$_HELPBOT by 66818211;$%replace NOTES$_ENTRYID by 66818219;#%replace NOTES$_NOTEID by 66818227;#%replace NOTES$_TOPICS by 66818235;#%replace NOTES$_UNSEEN by 66818243;'%replace NOTES$_TOTALNOTES by 66818251;%%replace NOTES$_DATELINE by 66818259;%%replace NOTES$_ONECLASS by 66818267;(%replace NOTES$_MANYCLASSES by 66818275;$%replace NOTES$_TITLEID by 66818283;%%replace NOTES$_NOTICEID by 66818291;'%replace NOTES$_CONFCREUPD by 66818299;%%replace NOTES$_MAILSUBJ by 66818307;*#%replace NOTES$_FILEID by 66818315;*(%replace NOTES$_MODERATORID by 66818323;,%replace NOTES$_OLD_ALREXISTS_A by 66818331;*%replace NOTES$_OLD_INVACCNAM by 66818339;'%replace NOTES$_LOCATIONID by 66818347; (%replace NOTES$_CONF_BANNER by 66818355;(%replace NOTES$_READ_BANNER by 66818363;)%replace NOTES$_TOPIC_BANNER by 66818371; )%replace NOTES$_REPLY_BANNER by 66818379; (%replace NOTES$_INFO_BANNER by 66818387;(%replace NOTES$_CREATE_CONF by 66818395;)%replace NOTES$_UPDATE_ENTRY by 66818403;u(%replace NOTES$_GETTING_DIR by 66818411;)%replace NOTES$_GETTING_NOTE by 66818419;w)%replace NOTES$_EXTRACT_NOTE by 66818427; '%replace NOTES$_PRINT_NOTE by 66818435;y'%replace NOTES$_SEARCH_FOR by 66818443;e(%replace NOTES$_SEARCH_NEXT by 66818451;*%replace NOTES$_DELETING_NOTE by 66818459;%%replace NOTES$_AUTHORID by 66818467; $%replace NOTES$_TOPICID by 66818475;&%replace NOTES$_KEYWORDID by 66818483;)%replace NOTES$_CONFERENCEID by 66818491; %%replace NOTES$_ATTRIBID by 66818499; (%replace NOTES$_WRITELOCKID by 66818507;%%replace NOTES$_HIDDENID by 66818515;w)%replace NOTES$_GRAPHIC_VIEW by 66818523;*)%replace NOTES$_UNKNOWN_VIEW by 66818531;s(%replace NOTES$_DDIF_FORMAT by 66818539;&%replace NOTES$_PS_FORMAT by 66818547;&%replace NOTES$_USEFILEID by 66818555;&%replace NOTES$_COPYRIGHT by 66818563;+%replace NOTES$_SRV_OLDPROTUPD by 66822144;*,%replace NOTES$_NO_MORE_CLASSES by 66822152;,%replace NOTES$_NO_MORE_ENTRIES by 66822160;-%replace NOTES$_NO_MORE_KEYWORDS by 66822168;.*%replace NOTES$_NO_MORE_NOTES by 66822176;)%replace NOTES$_NO_MORE_TEXT by 66822184; *%replace NOTES$_NO_MORE_USERS by 66822192;'%replace NOTES$_NONOTEBOOK by 66822200;*%%replace NOTES$_NOERRTXT by 66822208;*)%replace NOTES$_NEEDNBMODIFY by 66822216;a$%replace NOTES$_MSGSEND by 66822224;'%replace NOTES$_ENTERINTRO by 66822232;K&%replace NOTES$_CTRLZMAIL by 66822240;'%replace NOTES$_NOTREADING by 66822248;P,%replace NOTES$_NO_MORE_REPLIES by 66822256;'%replace NOTES$_ANSWER_YES by 66822264;%%replace NOTES$_EOB_TEXT by 66822272;y&%replace NOTES$_PRESS_PF2 by 66822280;'%replace NOTES$_NOTES_HDR1 by 66822288; *%replace NOTES$_PRESS_CTRLZ_N by 66822296;+%replace NOTES$_SET_CONFERENCE by 66822304;r(%replace NOTES$_ENTER_TITLE by 66822312;)%replace NOTES$_PRESS_RETURN by 66822320;K*%replace NOTES$_PRESS_ANY_KEY by 66822328;%%replace NOTES$_DIR_HEAD by 66822336;K(%replace NOTES$_ENDREQ_LIST by 66822344;*%replace NOTES$_NOTE_END_TEXT by 66822352;&%replace NOTES$_TEXT_NOTE by 66822360;o|i$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.PLI;1PH"&'%replace NOTES$_TEXT_REPLY by 66822368;S"%replace NOTES$_NO_NB by 66822376;$%replace NOTES$_YOUR_SP by 66822384;*%replace NOTES$_NOTE_COMPLETE by 66822392;(%replace NOTES$_NOTE_NOTEXT by 66822400;&%replace NOTES$_NOREPLIES by 66822408;&%replace NOTES$_ONE_REPLY by 66822416;)%replace NOTES$_MANY_REPLIES by 66822424;L#%replace NOTES$_N_OF_N by 66822432;A)%replace NOTES$_ENTER_CTITLE by 66822440;C(%replace NOTES$_DELETE_NOTE by 66822448;'%replace NOTES$_NOTENOTDEL by 66822456;T)%replace NOTES$_FINDING_HELP by 66822464;T&%replace NOTES$_NOKEYHELP by 66822472;&%replace NOTES$_NOTESQADD by 66822480;'%replace NOTES$_REALLYQUIT by 66822488;;(%replace NOTES$_MAILNOTSENT by 66822496;%%replace NOTES$_NUMNOTES by 66822504;a#%replace NOTES$_SENDTO by 66822512;e$%replace NOTES$_SUBJECT by 66822520;)%replace NOTES$_PROFILE_USER by 66822528;e&%replace NOTES$_MORE_TEXT by 66822536;(%replace NOTES$_SHOW_MARK_1 by 66822544;(%replace NOTES$_SHOW_MARK_2 by 66822552;(%replace NOTES$_SHOW_MARK_3 by 66822560;'%replace NOTES$_SHOW_ENTRY by 66822568;N+%replace NOTES$_SHOW_PROF_EDIT by 66822576;K-%replace NOTES$_SHOW_PROF_DCLASS by 66822584;N,%replace NOTES$_SHOW_PROF_PRINT by 66822592;+%replace NOTES$_SHOW_PROF_NAME by 66822600;L+%replace NOTES$_SHOW_PROF_AUTO by 66822608;_+%replace NOTES$_SHOW_PROF_ADIR by 66822616;E+%replace NOTES$_SHOW_PROF_AUNS by 66822624;A+%replace NOTES$_SHOW_PROF_NONE by 66822632;b(%replace NOTES$_ENDREQ_SHOW by 66822640;*%replace NOTES$_CTRLZ_COM_RET by 66822648;*%replace NOTES$_SHOW_ENT_CONF by 66822656;*%replace NOTES$_SHOW_ENT_FILE by 66822664;'%replace NOTES$_SHOW_CLASS by 66822672;L*%replace NOTES$_SHOW_CONF_MOD by 66822680;,%replace NOTES$_SHOW_CONF_RESA1 by 66822688;,%replace NOTES$_SHOW_CONF_RESA2 by 66822696;,%replace NOTES$_SHOW_CONF_RESK1 by 66822704;,%replace NOTES$_SHOW_CONF_RESK2 by 66822712;(%replace NOTES$_SHOW_KEYW_1 by 66822720;(%replace NOTES$_SHOW_KEYW_2 by 66822728;%%replace NOTES$_SHOW_MOD by 66822736;N*%replace NOTES$_SHOW_MOD_NODE by 66822744;*%replace NOTES$_SHOW_MOD_USER by 66822752;+%replace NOTES$_SHOW_USER_MADR by 66822760;p+%replace NOTES$_SHOW_USER_PRIV by 66822768;p+%replace NOTES$_SHOW_USER_JOIN by 66822776;N*%replace NOTES$_SHOW_NOTE_HID by 66822784;*%replace NOTES$_SHOW_NOTE_VIS by 66822792;+%replace NOTES$_SHOW_NOTE_REP1 by 66822800;O+%replace NOTES$_SHOW_NOTE_REP2 by 66822808;E+%replace NOTES$_SHOW_PROF_PERM by 66822816;y+%replace NOTES$_SHOW_USER_FULL by 66822824;+%replace NOTES$_SHOW_MODU_FULL by 66822832;p %replace NOTES$_NMF by 66822840; %replace NOTES$_NJU by 66822848;,%replace NOTES$_NO_MORE_MARKERS by 66822856;%%replace NOTES$_SEARCHF1 by 66822864; %%replace NOTES$_SEARCHF2 by 66822872; %%replace NOTES$_DIR_CONF by 66822880;b+%replace NOTES$_DIR_CONF_TITLE by 66822888;a%%replace NOTES$_N_TOPICS by 66822896;T)%replace NOTES$_DIR_NB_CLASS by 66822904;S)%replace NOTES$_CTRLZ_CANCEL by 66822912;S(%replace NOTES$_REPBUFINFO1 by 66822920;(%replace NOTES$_REPBUFINFO2 by 66822928;'%replace NOTES$_NMORELINES by 66822936;T(%replace NOTES$_READINGCONF by 66822944;(%replace NOTES$_WILLNOTSEND by 66822952;$%replace NOTES$_WORKING by 66822960;'%replace NOTES$_FILECREUPD by 66822968;b&%replace NOTES$_ENTERNOTE by 66822976;"%replace NOTES$_ANDTO by 66822984;'%replace NOTES$_SENDANYWAY by 66822992;A%%replace NOTES$_SPAWNKEY by 66823000;T$%replace NOTES$_CALLKEY by 66823008;$%replace NOTES$_EDICALL by 66823016;%%replace NOTES$_EDISPAWN by 66823024;r(%replace NOTES$_SPELLSELECT by 66823032;(%replace NOTES$_SPELLBUFFER by 66823040;'%replace NOTES$_SPELLSTART by 66823048;C&%replace NOTES$_SPELLDONE by 66823056;)%replace NOTES$_SENDING_MAIL by 66823064; %%replace NOTES$_SENDBOTH by 66823072;1%%replace NOTES$_NONESENT by 66823080;(%replace NOTES$_SENT_TO_ALL by 66823088;,%replace NOTES$_SHOW_CONF_RESW1 by 66823096;,%replace NOTES$_SHOW_CONF_RESW2 by 66823104;'%replace NOTES$_TEXT_TOPIC by 66823112;S'%replace NOTES$_MEMBERS_OF by 66823120;T(%replace NOTES$_DEF_SUBJECT by 66823128;)%replace NOTES$_MAIL_SUBJECT by 66823136;N(%replace NOTES$_TEXT_APPEND by 66823144;+%replace NOTES$_NEVER_ACCESSED by 66823152;E$%replace NOTES$_EXPIRED by 66823160;&%replace NOTES$_ANSWER_NO by 66823168;&%replace NOTES$_WRONG_ANS by 66823176;&%replace NOTES$_CREATEBUF by 66823184;%%replace NOTES$_WRITEBUF by 66823192;K*%replace NOTES$_SHOW_PROF_DEF by 66823200;&%replace NOTES$_ASK_YESNO by 66823208;%%replace NOTES$_MODPRIVS by 66823216;;)%replace NOTES$_SHOW_ENT_OBJ by 66823224;a&%replace NOTES$_CANCELLED by 66823232;+%replace NOTES$_SHOW_CONF_RESR by 66823240;K%replace NOTES$_CC by 66823248;T*%replace NOTES$_MODERATORS_OF by 66823256;(%replace NOTES$_ALREXISTS_A by 66823264;&%replace NOTES$_INVACCNAM by 66823272;&%replace NOTES$_ILLCTXADR by 66830338;%%replace NOTES$_WRONGCTX by 66830346;i&%replace NOTES$_INVITMCOD by 66830355;&%replace NOTES$_INVITMLEN by 66830362;&%replace NOTES$_MISREQITM by 66830370;&%replace NOTES$_NOCURNOTE by 66830378;)%replace NOTES$_CANTCONTINUE by 66830386;r&%replace NOTES$_FAILGETVM by 66830394;'%replace NOTES$_STRCOPYERR by 66830402; &%replace NOTES$_ILLNOTEID by 66830410;'%replace NOTES$_NOSUCHNOTE by 66830418;a'%replace NOTES$_SRV_NOINIT by 66830426;)'%replace NOTES$_SRV_INVSEQ by 66830434;*%replace NOTES$_SRV_NOCONTEXT by 66830442;+%replace NOTES$_SRV_NOUSERNAME by 66830450;y(%replace NOTES$_SRV_INVITEM by 66830458;&%replace NOTES$_CREPRIJOB by 66830466;$%replace NOTES$_PREMEOF by 66830474;(%replace NOTES$_NOPRIVDEL_N by 66830482;*%replace NOTES$_NOPRIVWRITE_N by 66830490;*%replace NOTES$_SRV_UNRECPROT by 66830498;'%replace NOTES$_NOFILEOPEN by 66830506;r*%replace NOTES$_ALREXISTS_OLD by 66830514;(%replace NOTES$_NOSUCHENTRY by 66830522;&%replace NOTES$_MUST_OPEN by 66830530;,%replace NOTES$_MUST_READ_REPLY by 66830538;.%replace NOTES$_MUST_READ_FORWARD by 66830546;.%replace NOTES$_NOT_ENTERING_NOTE by 66830554;-%replace NOTES$_NONOTE_SPECIFIED by 66830562;f*%replace NOTES$_ERROR_MAILING by 66830570;,%replace NOTES$_NOPREVIOUS_NOTE by 66830578;.%replace NOTES$_ALREADY_IN_EDITOR by 66830586;-%replace NOTES$_ALREADY_IN_NOTES by 66830594;_2%replace NOTES$_MUST_COMPLETE_MESSAGE by 66830602;+%replace NOTES$_UNREC_CALLUSER by 66830610; *%replace NOTES$_NO_SUCH_CLASS by 66830618;*%replace NOTES$_NO_SUCH_ENTRY by 66830626;,%replace NOTES$_NO_SUCH_KEYWORD by 66830634;)%replace NOTES$_NO_SUCH_NOTE by 66830642;3)%replace NOTES$_NO_SUCH_USER by 66830650;a*%replace NOTES$_NOMORE_RECALL by 66830658;)%replace NOTES$_EDIT_OR_FILE by 66830666;a#%replace NOTES$_NOMAIL by 66830674;'%replace NOTES$_ERRORWRITE by 66830682;3'%replace NOTES$_NOMAILPROC by 66830690;3 %replace NOTES$_IFF by 66830698;#%replace NOTES$_NOPRIV by 66830706;i)%replace NOTES$_CTRLC_CANCEL by 66830714;t&%replace NOTES$_ERRCREKEY by 66830722;'%replace NOTES$_ERRADDMARK by 66830730;(&%replace NOTES$_ERRADDMEM by 66830738;&%replace NOTES$_ERRADDENT by 66830746;&%replace NOTES$_ERRDELENT by 66830754;'%replace NOTES$_ERRDELMARK by 66830762;_)%replace NOTES$_ERRDELMEMBER by 66830770;n'%replace NOTES$_ERRMODNOTE by 66830778;(%replace NOTES$_ERRMODENTRY by 66830786;*%replace NOTES$_ERRMODKEYWORD by 66830794;'%replace NOTES$_ERRACCLIST by 66830802;n$%replace NOTES$_NOWRITE by 66830810;)%replace NOTES$_NOSUCHMARKER by 66830818;n(%replace NOTES$_NOPRIVMOD_N by 66830826;(%replace NOTES$_ALREXISTS_C by 66830834;(%replace NOTES$_ALREXISTS_E by 66830842;(%replace NOTES$_ALREXISTS_K by 66830850;(%replace NOTES$_ALREXISTS_U by 66830858;(%replace NOTES$_ALREXISTS_M by 66830866;+%replace NOTES$_NO_SUCH_MARKER by 66830874;r&%replace NOTES$_NOMEMBERS by 66830882;&%replace NOTES$_NOTMEMBER by 66830890;*%replace NOTES$_BASEWRITELOCK by 66830898;)%replace NOTES$_NOWRITE_CONF by 66830906;'%replace NOTES$_SPELLERROR by 66830914;a&%replace NOTES$_PNINVCHAR by 66830922;&%replace NOTES$_SENDNOAUT by 66830930;)%replace NOTES$_INVCLASSNAME by 66830938;t*%replace NOTES$_CLASSNOTFOUND by 66830946;%%replace NOTES$_FORWLOOP by 66830954;y)%replace NOTES$_BAD_DIR_LINE by 66830962;t&%replace NOTES$_NO_SELECT by 66830970;(%replace NOTES$_NOTE_NOCONF by 66830978;)%replace NOTES$_UNREC_EDITOR by 66830986;(&%replace NOTES$_NO_CLASSP by 66830994;&%replace NOTES$_NMTHISDIR by 66831002;(%replace NOTES$_NO_NEW_NOTE by 66831010;*%replace NOTES$_CAPTIVE_SPAWN by 66831018;+%replace NOTES$_NOTHING_TO_SET by 66831026;e'%replace NOTES$_NOHELPTERM by 66831034;r&%replace NOTES$_INVENTNAM by 66831042;&%replace NOTES$_INVCLANAM by 66831050;)%replace NOTES$_INVENTRYNAME by 66831058;e.%replace NOTES$_NO_E n$$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.PLI;1PH7NTRY_IN_CLASS by 66831066;/%replace NOTES$_ALREXISTS_IN_CLASS by 66831074;3&%replace NOTES$_NOMARKERS by 66831082;'%replace NOTES$_NOKEYWORDS by 66831090;&%replace NOTES$_NOLICENSE by 66831098;#%replace NOTES$_NOFILE by 66831106; "%replace NOTES$_NOEDT by 66831114;$%replace NOTES$_NOENTRY by 66831122;"%replace NOTES$_NOEVE by 66831130;%%replace NOTES$_TPUERROR by 66831138;r.%replace NOTES$_ENTALR_IN_CLASSES by 66831146;+%replace NOTES$_NO_RANGE_ALLOW by 66831154;G%%replace NOTES$_NOTINCMD by 66831162;,%replace NOTES$_CONF_REPLY_ONLY by 66831170;&%replace NOTES$_USRNOTADD by 66831178;&%replace NOTES$_INVKEYNAM by 66831186;+%replace NOTES$_INVKEYWORDNAME by 66831194;r&%replace NOTES$_INVMRKNAM by 66831202;*%replace NOTES$_INVMARKERNAME by 66831210;&%replace NOTES$_INVUSRNAM by 66831218;(%replace NOTES$_INVUSERNAME by 66831226;(%replace NOTES$_INVNOTESPEC by 66831234;,%replace NOTES$_RANGE_ONE_TOPIC by 66831242;*%replace NOTES$_RANGE_TOO_BIG by 66831250;%%replace NOTES$_NO_TOPIC by 66831258;n(%replace NOTES$_ALREXISTS_N by 66831266;'%replace NOTES$_NONOTESMOD by 66831274;R,%replace NOTES$_MEMBERNAME_NODE by 66831282;%%replace NOTES$_CONFQUAL by 66831290;)%replace NOTES$_OPRNOTSUPCNF by 66831298;R$%replace NOTES$_BADTIME by 66831306;'%replace NOTES$_INVOBJNAME by 66831314;n*%replace NOTES$_INVOBJECTNAME by 66831322;%%replace NOTES$_NOATTRIB by 66831330;n%%replace NOTES$_NOOBJECT by 66831338;r&%replace NOTES$_NOSUCHOBJ by 66831346;%%replace NOTES$_LWKERROR by 66831354;3*%replace NOTES$_NOLINKLICENSE by 66831362;&%replace NOTES$_NOTNETWRK by 66842628;'%replace NOTES$_WRONG_ACCT by 66842636;3)%replace NOTES$_SRV_INIT_ERR by 66842644;a&%replace NOTES$_WRONG_LMF by 66842652; ;/*** MODULE SERVERDEF ***/!%replace NOTES$K_INITIALIZE by 1;y%replace NOTES$K_MORE by 2;%%replace NOTES$K_NOTEFILE_BEGIN by 3;E#%replace NOTES$K_NOTEFILE_END by 4;n(%replace NOTES$K_NOTEFILE_GET_INFO by 5;&%replace NOTES$K_NOTEFILE_MODIFY by 6;*%replace NOTES$K_NOTEFILE_LIST_BEGIN by 7;$%replace NOTES$K_NOTEFILE_LIST by 8;$%replace NOTES$K_KEYWORD_BEGIN by 9;#%replace NOTES$K_KEYWORD_END by 10;b#%replace NOTES$K_KEYWORD_ADD by 11;r&%replace NOTES$K_KEYWORD_DELETE by 12;#%replace NOTES$K_KEYWORD_GET by 13;t(%replace NOTES$K_KEYWORD_GET_NOTE by 14;&%replace NOTES$K_KEYWORD_MODIFY by 15;"%replace NOTES$K_NOTE_BEGIN by 16; %replace NOTES$K_NOTE_END by 17; %replace NOTES$K_NOTE_ADD by 18;%%replace NOTES$K_NOTE_ADD_TEXT by 19;S#%replace NOTES$K_NOTE_DELETE by 20;T %replace NOTES$K_NOTE_GET by 21;(%replace NOTES$K_NOTE_GET_KEYWORD by 22;%%replace NOTES$K_NOTE_GET_TEXT by 23;r#%replace NOTES$K_NOTE_MODIFY by 24;"%replace NOTES$K_USER_BEGIN by 25; %replace NOTES$K_USER_END by 26; %replace NOTES$K_USER_ADD by 27;#%replace NOTES$K_USER_DELETE by 28;T %replace NOTES$K_USER_GET by 29;#%replace NOTES$K_USER_MODIFY by 30;1!%replace NOTES$K_CLASS_ADD by 31; #%replace NOTES$K_CLASS_BEGIN by 32;E$%replace NOTES$K_CLASS_DELETE by 33;!%replace NOTES$K_CLASS_END by 34;e!%replace NOTES$K_CLASS_GET by 35;;'%replace NOTES$K_CLASS_GET_ENTRY by 36;0$%replace NOTES$K_CLASS_MODIFY by 37;!%replace NOTES$K_ENTRY_ADD by 38;D#%replace NOTES$K_ENTRY_BEGIN by 39;_$%replace NOTES$K_ENTRY_DELETE by 40;!%replace NOTES$K_ENTRY_END by 41;!%replace NOTES$K_ENTRY_GET by 42; '%replace NOTES$K_ENTRY_GET_CLASS by 43;E)%replace NOTES$K_ENTRY_GET_KEYWORD by 44;y$%replace NOTES$K_ENTRY_MODIFY by 45;%%replace NOTES$K_PROFILE_BEGIN by 46;I#%replace NOTES$K_PROFILE_END by 47;_#%replace NOTES$K_PROFILE_GET by 48;e&%replace NOTES$K_PROFILE_MODIFY by 49;%replace NOTES$K_STATUS by 129;1(%replace NOTES$K_REQUEST_CONTEXT by 130;"%replace NOTES$K_ERROR_TLV by 131;$%replace NOTES$K_ERROR_NARGS by 132;"%replace NOTES$K_ERROR_ARG by 133;#%replace NOTES$K_ERROR_TEXT by 134;a'%replace NOTES$K_CANCEL_REQUEST by 135;r*%replace NOTES$K_REQUEST_CANCELLED by 136;&%replace NOTES$K_INIT_VERSION by 8193;'%replace NOTES$K_INIT_NODENAME by 8194;'%replace NOTES$K_INIT_USERNAME by 8195;r+%replace NOTES$K_INIT_CAPABILITIES by 8196;e*%replace NOTES$K_INIT_MAXITEMCODE by 8197;E%replace NOTES$M_INIT_VMSMSGS by '10000000000000000000000000000000'b;p e#%replace NOTES$S_CAPABILITIES by 4;adcl 1 CAPABILITIES based, 2 NOTES$R_FILL_0_ union,R- 3 NOTES$L_CAPABILITIES bit(32) aligned,y 3 NOTES$R_FILL_1_ ,_% 4 NOTES$V_INIT_VMSMSGS bit(1),E 4 NOTES$V_FILL_2_ bit(7);'%replace NOTES$K_PROTOCOL_VERSION by 2;E&%replace NOTES$K_PROTOCOL_UPDATE by 6;dcl NOTES$SERVER_BEGIN entry N returns (fixed binary(31));"*[NOTES.TEMPKIT]NOTES$ITEMDEF.R32;1+,f.6/J 4N64- 0123KPWO556LŬcģ7m,lģ89GJHJ ! N! ****************************************************************************N! * *N! * Copyright (c) 2004 *N! * by DIGITAL Equipment Corporation, Maynard, Mass. *N! * All rights reserved. *N! * *N! * This software is furnished under a license and may be used and copied *N! * only in accordance with the terms of such license and with the *N! * inclusion of the above copyright notice. This software or any other *N! * copies thereof may not be provided or otherwise made available to any *N! * other person. No title to and ownership of the software is hereby *N! * transferred. *N! * *N! * The information in this software is subject to change without notice *N! * and should not be construed as a commitment by DIGITAL Equipment *N! * Corporation. *N! * *N! * DIGITAL assumes no responsibility for the use or reliability of its *N! * software on equipment which is not supplied by DIGITAL. *N! * *N! **************************************************************************** !*** MODULE NOTEITEMS ***literal NOTES$K_MIN_ITEM = 1;literal NOTES$K_NOSIGNAL = 1; literal NOTES$K_TEXT_STRING = 2;literal NOTES$K_TEXT_END = 3;literal NOTES$K_TEXT_TYPE = 4;'literal NOTES$K_NOTE_ALL_RESPONSES = 5; literal NOTES$K_NOTE_AUTHOR = 6;#literal NOTES$K_NOTE_BACK_NOTE = 7;'literal NOTES$K_NOTE_BACK_RESPONSE = 8;%literal NOTES$K_NOTE_BEFORE_TIME = 9;#literal NOTES$K_NOTE_BLINK_ID = 10;$literal NOTES$K_NOTE_BLINK_UID = 11;&literal NOTES$K_NOTE_CREATE_TIME = 12;!literal NOTES$K_NOTE_HIDDEN = 13;literal NOTES$K_NOTE_ID = 14;$literal NOTES$K_NOTE_NEXT_NOTE = 15;(literal NOTES$K_NOTE_NEXT_RESPONSE = 16;%literal NOTES$K_NOTE_NUMRECORDS = 17;'literal NOTES$K_NOTE_NUMRESPONSES = 18;#literal NOTES$K_NOTE_PEN_NAME = 19;(literal NOTES$K_NOTE_SEARCH_STRING = 20;'literal NOTES$K_NOTE_SEARCH_TITLE = 21;%literal NOTES$K_NOTE_SINCE_TIME = 22; literal NOTES$K_NOTE_TITLE = 23;literal NOTES$K_NOTE_UID = 24;!literal NOTES$K_NOTE_UNSEEN = 25;$literal NOTES$K_NOTE_USER_AREA = 26;$literal NOTES$K_NOTE_WRITELOCK = 27;&literal NOTES$K_NOTEFILE_CONTEXT = 28;#literal NOTES$K_CLASS_CONTEXT = 29;#literal NOTES$K_ENTRY_CONTEXT = 30;%literal NOTES$K_KEYWORD_CONTEXT = 31;"literal NOTES$K_NOTE_CONTEXT = 32;%literal NOTES$K_PROFILE_CONTEXT = 33;$literal NOTES$K_SERVER_CONTEXT = 34;"literal NOTES$K_USER_CONTEXT = 35; lite{#$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.R32;1N6N"ral NOTES$K_CLASS_NAME = 36;$literal NOTES$K_CLASS_NEW_NAME = 37;literal NOTES$K_CONTINUE = 38; literal NOTES$K_ENTRY_NAME = 39;$literal NOTES$K_ENTRY_NEW_NAME = 40;%literal NOTES$K_ENTRY_USER_AREA = 41;literal NOTES$K_HINT = 42;"literal NOTES$K_KEYWORD_NAME = 43;&literal NOTES$K_KEYWORD_NEW_NAME = 44;%literal NOTES$K_NOTEFILE_CREATE = 45;*literal NOTES$K_NOTEFILE_CREATE_TIME = 46;+literal NOTES$K_NOTEFILE_DEFAULT_NAME = 47;)literal NOTES$K_NOTEFILE_ENTRYTOTAL = 48;(literal NOTES$K_NOTEFILE_FILE_NAME = 49;%literal NOTES$K_NOTEFILE_FORMAT = 50;'literal NOTES$K_NOTEFILE_HIGH_UID = 51;&literal NOTES$K_NOTEFILE_LASTREV = 52;'literal NOTES$K_NOTEFILE_MODERATE = 53;(literal NOTES$K_NOTEFILE_MODERATOR = 54;%literal NOTES$K_NOTEFILE_NOTICE = 55;'literal NOTES$K_NOTEFILE_NUMNOTES = 56;+literal NOTES$K_NOTEFILE_RELATED_NAME = 57;)literal NOTES$K_NOTEFILE_RESTRICTED = 58;*literal NOTES$K_NOTEFILE_RESULT_SPEC = 59;$literal NOTES$K_NOTEFILE_TITLE = 60;(literal NOTES$K_NOTEFILE_TRANSPORT = 61;(literal NOTES$K_NOTEFILE_USER_AREA = 62;&literal NOTES$K_PROFILE_AUTO_DIR = 63;)literal NOTES$K_PROFILE_AUTO_UNSEEN = 64;(literal NOTES$K_PROFILE_CLASS_NAME = 65;$literal NOTES$K_PROFILE_EDITOR = 66;*literal NOTES$K_PROFILE_EDITOR_SPAWN = 67;&literal NOTES$K_PROFILE_PEN_NAME = 68;#literal NOTES$K_PROFILE_PRINT = 69;'literal NOTES$K_PROFILE_TEMPORARY = 70;literal NOTES$K_SEEN_MAP = 71;)literal NOTES$K_USER_CREATE_KEYWORD = 72;$literal NOTES$K_USER_MAIL_ADDR = 73;#literal NOTES$K_USER_MODERATE = 74;literal NOTES$K_USER_NAME = 75;#literal NOTES$K_USER_NEW_NAME = 76;'literal NOTES$K_USER_NEW_NODENAME = 77;#literal NOTES$K_USER_NODENAME = 78;&literal NOTES$K_NOTE_BLINK_TITLE = 79;$literal NOTES$K_NOTE_MARK_SEEN = 80;&literal NOTES$K_NOTE_NEXT_UNSEEN = 81;(literal NOTES$K_NOTE_HINT_GET_TEXT = 82;$literal NOTES$K_NOTE_X_KEYWORD = 83;$literal NOTES$K_KEYWORD_X_NOTE = 84;#literal NOTES$K_CLASS_X_ENTRY = 85;#literal NOTES$K_ENTRY_X_CLASS = 86;%literal NOTES$K_ENTRY_X_KEYWORD = 87;literal NOTES$K_DELIF0 = 88;literal NOTES$K_UNIENTRY = 89;&literal NOTES$K_ENTRY_UNSEEN_EST = 90;'literal NOTES$K_ENTRY_LAST_STATUS = 91;$literal NOTES$K_NOTE_CAN_REPLY = 92;(literal NOTES$K_NOTE_BEFORE_TIME_A = 93;(literal NOTES$K_NOTE_CREATE_TIME_A = 94;'literal NOTES$K_NOTE_SINCE_TIME_A = 95;,literal NOTES$K_NOTEFILE_CREATE_TIME_A = 96;(literal NOTES$K_NOTEFILE_LASTREV_A = 97;+literal NOTES$K_NOTE_HINT_GET_KEYWORD = 98;+literal NOTES$K_KEYWORD_HINT_GET_NOTE = 99;&literal NOTES$K_SERVER_MAX_ITEM = 100;+literal NOTES$K_CLASS_HINT_GET_ENTRY = 101;&literal NOTES$K_CLASS_USER_AREA = 102; literal NOTES$K_CLASS_UID = 103;+literal NOTES$K_ENTRY_HINT_GET_CLASS = 104;-literal NOTES$K_ENTRY_HINT_GET_KEYWORD = 105;(literal NOTES$K_ENTRY_OBJECT_NAME = 106;(literal NOTES$K_ENTRY_OBJECT_SPEC = 107; literal NOTES$K_ENTRY_UID = 108;(literal NOTES$K_KEYWORD_USER_AREA = 109;"literal NOTES$K_KEYWORD_UID = 110; literal NOTES$K_NODE_NAME = 111;&literal NOTES$K_NODE_X_USERNAME = 112;"literal NOTES$K_NOTE_NEW_ID = 113; literal NOTES$K_NOTE_TYPE = 114;*literal NOTES$K_NOTEFILE_REPLY_ONLY = 115;(literal NOTES$K_PROFILE_USER_AREA = 116;'literal NOTES$K_USER_ACCESS_LIST = 117;(literal NOTES$K_USER_WRITE_BYPASS = 118;%literal NOTES$K_USER_USER_AREA = 119;literal NOTES$K_USER_UID = 120;$literal NOTES$K_USER_NOACCESS = 121;literal NOTES$K_MAX_ITEM = 122;(literal NOTES$K_NOTEFILE_WRITELOCK = 27;'literal NOTES$K_USER_ACCESS_NODE = 111;"literal NOTES$K_USER_ACCESS = 117;literal NOTES$K_BASE_NOTE = 1;literal NOTES$K_REPLY_NOTE = 2;!literal NOTES$K_UNKNOWN_TYPE = 0;literal NOTES$K_DDIF_TYPE = 1;literal NOTES$K_ASCII_TYPE = 2;"literal NOTES$K_RESERVED_TYPE = 3;"literal NOTES$K_WPS_PLUS_TYPE = 4;!literal NOTES$K_TLV_INPUT = 4097;"literal NOTES$K_TLV_OUTPUT = 4098;literal NOTES$K_CHAIN = 65535;literal NOTES$K_NOOP = 65534;external routine NOTES$NOTES;&external routine NOTES$NOTEFILE_BEGIN;)external routine NOTES$NOTEFILE_GET_INFO;'external routine NOTES$NOTEFILE_MODIFY;+external routine NOTES$NOTEFILE_LIST_BEGIN;%external routine NOTES$NOTEFILE_LIST;$external routine NOTES$NOTEFILE_END;#external routine NOTES$CLASS_BEGIN;!external routine NOTES$CLASS_ADD;$external routine NOTES$CLASS_DELETE;!external routine NOTES$CLASS_GET;'external routine NOTES$CLASS_GET_ENTRY;$external routine NOTES$CLASS_MODIFY;!external routine NOTES$CLASS_END;#external routine NOTES$ENTRY_BEGIN;!external routine NOTES$ENTRY_ADD;$external routine NOTES$ENTRY_DELETE;!external routine NOTES$ENTRY_GET;'external routine NOTES$ENTRY_GET_CLASS;)external routine NOTES$ENTRY_GET_KEYWORD;$external routine NOTES$ENTRY_MODIFY;$external routine NOTES$ENTRY_UPDATE;!external routine NOTES$ENTRY_END;%external routine NOTES$KEYWORD_BEGIN;#external routine NOTES$KEYWORD_ADD;&external routine NOTES$KEYWORD_DELETE;#external routine NOTES$KEYWORD_GET;(external routine NOTES$KEYWORD_GET_NOTE;&external routine NOTES$KEYWORD_MODIFY;#external routine NOTES$KEYWORD_END;"external routine NOTES$NOTE_BEGIN; external routine NOTES$NOTE_ADD;%external routine NOTES$NOTE_ADD_TEXT;#external routine NOTES$NOTE_DELETE; external routine NOTES$NOTE_GET;(external routine NOTES$NOTE_GET_KEYWORD;%external routine NOTES$NOTE_GET_TEXT;#external routine NOTES$NOTE_MODIFY; external routine NOTES$NOTE_END;%external routine NOTES$PROFILE_BEGIN;#external routine NOTES$PROFILE_GET;&external routine NOTES$PROFILE_MODIFY;#external routine NOTES$PROFILE_END;"external routine NOTES$USER_BEGIN; external routine NOTES$USER_ADD;#external routine NOTES$USER_DELETE; external routine NOTES$USER_GET;#external routine NOTES$USER_MODIFY; external routine NOTES$USER_END; !*** MODULE $NOTESMSGDEF ***literal NOTES$_FACILITY = 1019;!literal NOTES$_NORMAL = 66813961;$literal NOTES$_CMDKEYENA = 66813969;$literal NOTES$_NUMKEYENA = 66813977;&literal NOTES$_PROFILE_MOD = 66813985;'literal NOTES$_PROFILE_TEMP = 66813993;#literal NOTES$_MODERATE = 66814001;%literal NOTES$_NOMODERATE = 66814009;&literal NOTES$_ENTRY_ADDED = 66814017;*literal NOTES$_KEYWORD_ADDNOTE = 66814025;'literal NOTES$_MARKER_ADDED = 66814033;'literal NOTES$_MEMBER_ADDED = 66814041;*literal NOTES$_KEYWORD_CREATED = 66814049;(literal NOTES$_ENTRY_DELETED = 66814057;*literal NOTES$_KEYWORD_DELETED = 66814065;*literal NOTES$_KEYWORD_DELNOTE = 66814073;)literal NOTES$_MARKER_DELETED = 66814081;'literal NOTES$_NOTE_DELETED = 66814089;)literal NOTES$_MEMBER_DELETED = 66814097;(literal NOTES$_NOTE_MODIFIED = 66814105;)literal NOTES$_ENTRY_MODIFIED = 66814113;+literal NOTES$_KEYWORD_MODIFIED = 66814121;*literal NOTES$_MEMBER_MODIFIED = 66814129;$literal NOTES$_CLASS_SET = 66814137;&literal NOTES$_INSERT_MODE = 66814145;*literal NOTES$_OVERSTRIKE_MODE = 66814153;)literal NOTES$_ENTRY_DELCLASS = 66814161;)literal NOTES$_SPACE_COMPRESS = 66814169;'literal NOTES$_ENTRY_ADDED2 = 66814177;'literal NOTES$_OBJECT_ADDED = 66814185;)literal NOTES$_OBJECT_DELETED = 66814193;*literal NOTES$_OBJECT_MODIFIED = 66814201;$literal NOTES$_MORE_INFO = 66818051;)literal NOTES$_SRV_NEWPROTUPD = 66818059;(literal NOTES$_ENTRY_ABORTED = 66818067;&literal NOTES$_NOTES_WRFIL = 66818075;&literal NOTES$_NOTES_WRBUF = 66818083;#literal NOTES$_DIRTOBUF = 66818091;$literal NOTES$_DIRTOFILE = 66818099;!literal NOTES$_HIDDEN = 66818107;$literal NOTES$_OPEN_CONF = 66818115;&literal NOTES$_UPDATE_CONF = 66818123;$literal NOTES$_MARKSUPER = 66818131;%literal NOTES$_OPEN_CONF2 = 66818139;(literal NOTES$_BEING_WRITTEN = 66818147;$literal NOTES$_USING_EDT = 66818155;"literal NOTES$_HELPBUF = 66818163;"literal NOTES$_HELPHDR = 66818171;"literal NOTES$_HELPNXT = 66818179;#literal NOTES$_HELPASK1 = 66818187;#literal NOTES$_HELPASK2 = 66818195;"literal NOTES$_HELPTOP = 66818203;"literal NOTES$_HELPBOT = 66818211;"literal NOTES$_ENTRYID = 66818219;!literal NOTES$_NOTEID = 66818227;!literal NOTES$_TOPICS = 66818235;!literal NOTES$_UNSEEN = 66818243;%literal NOTES$_TOTALNOTES = 66818251;#literal NOTES$_DATELINE = 66818259;#literal NOTES$_ONECLASS = 66818267;&literal NOTES$_MANYCLASSES = 66818275;"literal NOTES$_TITLEID = 66818283;#literal NOTES$_NOTICEID = 66818291;%literal NOTES$_CONFCREUPD = 66818299;#literal NOTES$_MAILSUBJ = 66818307;!literal NOTES$_FILEID = 66818315;&literal NOTES$_MODERATORID = 66818323;*literal NOTES$_OLD_ALREXISTS_A = 66818331;(literal NOTES$_OLD_INVACCNAM = 66818339;%literal NOTES$_LOCATIONID = 66818347;&literal NOTES$_CONF_BANNER = 66818355;&lite4.$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.R32;1N6B"ral NOTES$_READ_BANNER = 66818363;'literal NOTES$_TOPIC_BANNER = 66818371;'literal NOTES$_REPLY_BANNER = 66818379;&literal NOTES$_INFO_BANNER = 66818387;&literal NOTES$_CREATE_CONF = 66818395;'literal NOTES$_UPDATE_ENTRY = 66818403;&literal NOTES$_GETTING_DIR = 66818411;'literal NOTES$_GETTING_NOTE = 66818419;'literal NOTES$_EXTRACT_NOTE = 66818427;%literal NOTES$_PRINT_NOTE = 66818435;%literal NOTES$_SEARCH_FOR = 66818443;&literal NOTES$_SEARCH_NEXT = 66818451;(literal NOTES$_DELETING_NOTE = 66818459;#literal NOTES$_AUTHORID = 66818467;"literal NOTES$_TOPICID = 66818475;$literal NOTES$_KEYWORDID = 66818483;'literal NOTES$_CONFERENCEID = 66818491;#literal NOTES$_ATTRIBID = 66818499;&literal NOTES$_WRITELOCKID = 66818507;#literal NOTES$_HIDDENID = 66818515;'literal NOTES$_GRAPHIC_VIEW = 66818523;'literal NOTES$_UNKNOWN_VIEW = 66818531;&literal NOTES$_DDIF_FORMAT = 66818539;$literal NOTES$_PS_FORMAT = 66818547;$literal NOTES$_USEFILEID = 66818555;$literal NOTES$_COPYRIGHT = 66818563;)literal NOTES$_SRV_OLDPROTUPD = 66822144;*literal NOTES$_NO_MORE_CLASSES = 66822152;*literal NOTES$_NO_MORE_ENTRIES = 66822160;+literal NOTES$_NO_MORE_KEYWORDS = 66822168;(literal NOTES$_NO_MORE_NOTES = 66822176;'literal NOTES$_NO_MORE_TEXT = 66822184;(literal NOTES$_NO_MORE_USERS = 66822192;%literal NOTES$_NONOTEBOOK = 66822200;#literal NOTES$_NOERRTXT = 66822208;'literal NOTES$_NEEDNBMODIFY = 66822216;"literal NOTES$_MSGSEND = 66822224;%literal NOTES$_ENTERINTRO = 66822232;$literal NOTES$_CTRLZMAIL = 66822240;%literal NOTES$_NOTREADING = 66822248;*literal NOTES$_NO_MORE_REPLIES = 66822256;%literal NOTES$_ANSWER_YES = 66822264;#literal NOTES$_EOB_TEXT = 66822272;$literal NOTES$_PRESS_PF2 = 66822280;%literal NOTES$_NOTES_HDR1 = 66822288;(literal NOTES$_PRESS_CTRLZ_N = 66822296;)literal NOTES$_SET_CONFERENCE = 66822304;&literal NOTES$_ENTER_TITLE = 66822312;'literal NOTES$_PRESS_RETURN = 66822320;(literal NOTES$_PRESS_ANY_KEY = 66822328;#literal NOTES$_DIR_HEAD = 66822336;&literal NOTES$_ENDREQ_LIST = 66822344;(literal NOTES$_NOTE_END_TEXT = 66822352;$literal NOTES$_TEXT_NOTE = 66822360;%literal NOTES$_TEXT_REPLY = 66822368; literal NOTES$_NO_NB = 66822376;"literal NOTES$_YOUR_SP = 66822384;(literal NOTES$_NOTE_COMPLETE = 66822392;&literal NOTES$_NOTE_NOTEXT = 66822400;$literal NOTES$_NOREPLIES = 66822408;$literal NOTES$_ONE_REPLY = 66822416;'literal NOTES$_MANY_REPLIES = 66822424;!literal NOTES$_N_OF_N = 66822432;'literal NOTES$_ENTER_CTITLE = 66822440;&literal NOTES$_DELETE_NOTE = 66822448;%literal NOTES$_NOTENOTDEL = 66822456;'literal NOTES$_FINDING_HELP = 66822464;$literal NOTES$_NOKEYHELP = 66822472;$literal NOTES$_NOTESQADD = 66822480;%literal NOTES$_REALLYQUIT = 66822488;&literal NOTES$_MAILNOTSENT = 66822496;#literal NOTES$_NUMNOTES = 66822504;!literal NOTES$_SENDTO = 66822512;"literal NOTES$_SUBJECT = 66822520;'literal NOTES$_PROFILE_USER = 66822528;$literal NOTES$_MORE_TEXT = 66822536;&literal NOTES$_SHOW_MARK_1 = 66822544;&literal NOTES$_SHOW_MARK_2 = 66822552;&literal NOTES$_SHOW_MARK_3 = 66822560;%literal NOTES$_SHOW_ENTRY = 66822568;)literal NOTES$_SHOW_PROF_EDIT = 66822576;+literal NOTES$_SHOW_PROF_DCLASS = 66822584;*literal NOTES$_SHOW_PROF_PRINT = 66822592;)literal NOTES$_SHOW_PROF_NAME = 66822600;)literal NOTES$_SHOW_PROF_AUTO = 66822608;)literal NOTES$_SHOW_PROF_ADIR = 66822616;)literal NOTES$_SHOW_PROF_AUNS = 66822624;)literal NOTES$_SHOW_PROF_NONE = 66822632;&literal NOTES$_ENDREQ_SHOW = 66822640;(literal NOTES$_CTRLZ_COM_RET = 66822648;(literal NOTES$_SHOW_ENT_CONF = 66822656;(literal NOTES$_SHOW_ENT_FILE = 66822664;%literal NOTES$_SHOW_CLASS = 66822672;(literal NOTES$_SHOW_CONF_MOD = 66822680;*literal NOTES$_SHOW_CONF_RESA1 = 66822688;*literal NOTES$_SHOW_CONF_RESA2 = 66822696;*literal NOTES$_SHOW_CONF_RESK1 = 66822704;*literal NOTES$_SHOW_CONF_RESK2 = 66822712;&literal NOTES$_SHOW_KEYW_1 = 66822720;&literal NOTES$_SHOW_KEYW_2 = 66822728;#literal NOTES$_SHOW_MOD = 66822736;(literal NOTES$_SHOW_MOD_NODE = 66822744;(literal NOTES$_SHOW_MOD_USER = 66822752;)literal NOTES$_SHOW_USER_MADR = 66822760;)literal NOTES$_SHOW_USER_PRIV = 66822768;)literal NOTES$_SHOW_USER_JOIN = 66822776;(literal NOTES$_SHOW_NOTE_HID = 66822784;(literal NOTES$_SHOW_NOTE_VIS = 66822792;)literal NOTES$_SHOW_NOTE_REP1 = 66822800;)literal NOTES$_SHOW_NOTE_REP2 = 66822808;)literal NOTES$_SHOW_PROF_PERM = 66822816;)literal NOTES$_SHOW_USER_FULL = 66822824;)literal NOTES$_SHOW_MODU_FULL = 66822832; literal NOTES$_NMF = 66822840;literal NOTES$_NJU = 66822848;*literal NOTES$_NO_MORE_MARKERS = 66822856;#literal NOTES$_SEARCHF1 = 66822864; #literal NOTES$_SEARCHF2 = 66822872;0#literal NOTES$_DIR_CONF = 66822880; )literal NOTES$_DIR_CONF_TITLE = 66822888;n#literal NOTES$_N_TOPICS = 66822896; 'literal NOTES$_DIR_NB_CLASS = 66822904;d'literal NOTES$_CTRLZ_CANCEL = 66822912; &literal NOTES$_REPBUFINFO1 = 66822920;&literal NOTES$_REPBUFINFO2 = 66822928;%literal NOTES$_NMORELINES = 66822936;n&literal NOTES$_READINGCONF = 66822944;&literal NOTES$_WILLNOTSEND = 66822952;"literal NOTES$_WORKING = 66822960;%literal NOTES$_FILECREUPD = 66822968; $literal NOTES$_ENTERNOTE = 66822976; literal NOTES$_ANDTO = 66822984;%literal NOTES$_SENDANYWAY = 66822992; #literal NOTES$_SPAWNKEY = 66823000;p"literal NOTES$_CALLKEY = 66823008;"literal NOTES$_EDICALL = 66823016;#literal NOTES$_EDISPAWN = 66823024; &literal NOTES$_SPELLSELECT = 66823032;&literal NOTES$_SPELLBUFFER = 66823040;%literal NOTES$_SPELLSTART = 66823048; $literal NOTES$_SPELLDONE = 66823056;'literal NOTES$_SENDING_MAIL = 66823064; #literal NOTES$_SENDBOTH = 66823072;s#literal NOTES$_NONESENT = 66823080;*&literal NOTES$_SENT_TO_ALL = 66823088;*literal NOTES$_SHOW_CONF_RESW1 = 66823096;*literal NOTES$_SHOW_CONF_RESW2 = 66823104;%literal NOTES$_TEXT_TOPIC = 66823112;D%literal NOTES$_MEMBERS_OF = 66823120;e&literal NOTES$_DEF_SUBJECT = 66823128;'literal NOTES$_MAIL_SUBJECT = 66823136;d&literal NOTES$_TEXT_APPEND = 66823144;)literal NOTES$_NEVER_ACCESSED = 66823152; "literal NOTES$_EXPIRED = 66823160;$literal NOTES$_ANSWER_NO = 66823168;$literal NOTES$_WRONG_ANS = 66823176;$literal NOTES$_CREATEBUF = 66823184;#literal NOTES$_WRITEBUF = 66823192;_(literal NOTES$_SHOW_PROF_DEF = 66823200;$literal NOTES$_ASK_YESNO = 66823208;#literal NOTES$_MODPRIVS = 66823216;e'literal NOTES$_SHOW_ENT_OBJ = 66823224;e$literal NOTES$_CANCELLED = 66823232;)literal NOTES$_SHOW_CONF_RESR = 66823240;$literal NOTES$_CC = 66823248;e(literal NOTES$_MODERATORS_OF = 66823256;&literal NOTES$_ALREXISTS_A = 66823264;$literal NOTES$_INVACCNAM = 66823272;$literal NOTES$_ILLCTXADR = 66830338;#literal NOTES$_WRONGCTX = 66830346; $literal NOTES$_INVITMCOD = 66830355;$literal NOTES$_INVITMLEN = 66830362;$literal NOTES$_MISREQITM = 66830370;$literal NOTES$_NOCURNOTE = 66830378;'literal NOTES$_CANTCONTINUE = 66830386; $literal NOTES$_FAILGETVM = 66830394;%literal NOTES$_STRCOPYERR = 66830402;a$literal NOTES$_ILLNOTEID = 66830410;%literal NOTES$_NOSUCHNOTE = 66830418;i%literal NOTES$_SRV_NOINIT = 66830426; %literal NOTES$_SRV_INVSEQ = 66830434;_(literal NOTES$_SRV_NOCONTEXT = 66830442;)literal NOTES$_SRV_NOUSERNAME = 66830450;O&literal NOTES$_SRV_INVITEM = 66830458;$literal NOTES$_CREPRIJOB = 66830466;"literal NOTES$_PREMEOF = 66830474;&literal NOTES$_NOPRIVDEL_N = 66830482;(literal NOTES$_NOPRIVWRITE_N = 66830490;(literal NOTES$_SRV_UNRECPROT = 66830498;%literal NOTES$_NOFILEOPEN = 66830506;;(literal NOTES$_ALREXISTS_OLD = 66830514;&literal NOTES$_NOSUCHENTRY = 66830522;$literal NOTES$_MUST_OPEN = 66830530;*literal NOTES$_MUST_READ_REPLY = 66830538;,literal NOTES$_MUST_READ_FORWARD = 66830546;,literal NOTES$_NOT_ENTERING_NOTE = 66830554;+literal NOTES$_NONOTE_SPECIFIED = 66830562;W(literal NOTES$_ERROR_MAILING = 66830570;*literal NOTES$_NOPREVIOUS_NOTE = 66830578;,literal NOTES$_ALREADY_IN_EDITOR = 66830586;+literal NOTES$_ALREADY_IN_NOTES = 66830594; 0literal NOTES$_MUST_COMPLETE_MESSAGE = 66830602;)literal NOTES$_UNREC_CALLUSER = 66830610;(literal NOTES$_NO_SUCH_CLASS = 66830618;(literal NOTES$_NO_SUCH_ENTRY = 66830626;*literal NOTES$_NO_SUCH_KEYWORD = 66830634;'literal NOTES$_NO_SUCH_NOTE = 66830642;a'literal NOTES$_NO_SUCH_USER = 66830650;a(literal NOTES$_NOMORE_RECALL = 66830658;'literal NOTES$_EDIT_OR_FILE = 66830666; !literal NOTES$_NOMAIL = 66830674;%literal NOTES$_ERRORWRITE = 66830682; %literal NOTES$_NOMAILPROC = 66830690;Pliteral NOTES$_IFF = 66830698;!literal NOTES$_NOPRIV = 66830706;E'literal NOϨ:$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$ITEMDEF.R32;1N6_)TES$_CTRLC_CANCEL = 66830714;E$literal NOTES$_ERRCREKEY = 66830722;%literal NOTES$_ERRADDMARK = 66830730;_$literal NOTES$_ERRADDMEM = 66830738;$literal NOTES$_ERRADDENT = 66830746;$literal NOTES$_ERRDELENT = 66830754;%literal NOTES$_ERRDELMARK = 66830762;i'literal NOTES$_ERRDELMEMBER = 66830770;e%literal NOTES$_ERRMODNOTE = 66830778;a&literal NOTES$_ERRMODENTRY = 66830786;(literal NOTES$_ERRMODKEYWORD = 66830794;%literal NOTES$_ERRACCLIST = 66830802;O"literal NOTES$_NOWRITE = 66830810;'literal NOTES$_NOSUCHMARKER = 66830818;E&literal NOTES$_NOPRIVMOD_N = 66830826;&literal NOTES$_ALREXISTS_C = 66830834;&literal NOTES$_ALREXISTS_E = 66830842;&literal NOTES$_ALREXISTS_K = 66830850;&literal NOTES$_ALREXISTS_U = 66830858;&literal NOTES$_ALREXISTS_M = 66830866;)literal NOTES$_NO_SUCH_MARKER = 66830874;_$literal NOTES$_NOMEMBERS = 66830882;$literal NOTES$_NOTMEMBER = 66830890;(literal NOTES$_BASEWRITELOCK = 66830898;'literal NOTES$_NOWRITE_CONF = 66830906; %literal NOTES$_SPELLERROR = 66830914; $literal NOTES$_PNINVCHAR = 66830922;$literal NOTES$_SENDNOAUT = 66830930;'literal NOTES$_INVCLASSNAME = 66830938; (literal NOTES$_CLASSNOTFOUND = 66830946;#literal NOTES$_FORWLOOP = 66830954; 'literal NOTES$_BAD_DIR_LINE = 66830962; $literal NOTES$_NO_SELECT = 66830970;&literal NOTES$_NOTE_NOCONF = 66830978;'literal NOTES$_UNREC_EDITOR = 66830986;;$literal NOTES$_NO_CLASSP = 66830994;$literal NOTES$_NMTHISDIR = 66831002;&literal NOTES$_NO_NEW_NOTE = 66831010;(literal NOTES$_CAPTIVE_SPAWN = 66831018;)literal NOTES$_NOTHING_TO_SET = 66831026;T%literal NOTES$_NOHELPTERM = 66831034;S$literal NOTES$_INVENTNAM = 66831042;$literal NOTES$_INVCLANAM = 66831050;'literal NOTES$_INVENTRYNAME = 66831058;N,literal NOTES$_NO_ENTRY_IN_CLASS = 66831066;-literal NOTES$_ALREXISTS_IN_CLASS = 66831074;_$literal NOTES$_NOMARKERS = 66831082;%literal NOTES$_NOKEYWORDS = 66831090;_$literal NOTES$_NOLICENSE = 66831098;!literal NOTES$_NOFILE = 66831106;E literal NOTES$_NOEDT = 66831114;"literal NOTES$_NOENTRY = 66831122; literal NOTES$_NOEVE = 66831130;#literal NOTES$_TPUERROR = 66831138;O,literal NOTES$_ENTALR_IN_CLASSES = 66831146;)literal NOTES$_NO_RANGE_ALLOW = 66831154;A#literal NOTES$_NOTINCMD = 66831162;S*literal NOTES$_CONF_REPLY_ONLY = 66831170;$literal NOTES$_USRNOTADD = 66831178;$literal NOTES$_INVKEYNAM = 66831186;)literal NOTES$_INVKEYWORDNAME = 66831194;1$literal NOTES$_INVMRKNAM = 66831202;(literal NOTES$_INVMARKERNAME = 66831210;$literal NOTES$_INVUSRNAM = 66831218;&literal NOTES$_INVUSERNAME = 66831226;&literal NOTES$_INVNOTESPEC = 66831234;*literal NOTES$_RANGE_ONE_TOPIC = 66831242;(literal NOTES$_RANGE_TOO_BIG = 66831250;#literal NOTES$_NO_TOPIC = 66831258;P&literal NOTES$_ALREXISTS_N = 66831266;%literal NOTES$_NONOTESMOD = 66831274;*literal NOTES$_MEMBERNAME_NODE = 66831282;#literal NOTES$_CONFQUAL = 66831290;$'literal NOTES$_OPRNOTSUPCNF = 66831298;N"literal NOTES$_BADTIME = 66831306;%literal NOTES$_INVOBJNAME = 66831314;F(literal NOTES$_INVOBJECTNAME = 66831322;#literal NOTES$_NOATTRIB = 66831330;S#literal NOTES$_NOOBJECT = 66831338;i$literal NOTES$_NOSUCHOBJ = 66831346;#literal NOTES$_LWKERROR = 66831354;u(literal NOTES$_NOLINKLICENSE = 66831362;$literal NOTES$_NOTNETWRK = 66842628;%literal NOTES$_WRONG_ACCT = 66842636;T'literal NOTES$_SRV_INIT_ERR = 66842644;A$literal NOTES$_WRONG_LMF = 66842652; A!*** MODULE SERVERDEF ***eliteral NOTES$K_INITIALIZE = 1;iliteral NOTES$K_MORE = 2;e#literal NOTES$K_NOTEFILE_BEGIN = 3;n!literal NOTES$K_NOTEFILE_END = 4;e&literal NOTES$K_NOTEFILE_GET_INFO = 5;$literal NOTES$K_NOTEFILE_MODIFY = 6;(literal NOTES$K_NOTEFILE_LIST_BEGIN = 7;"literal NOTES$K_NOTEFILE_LIST = 8;"literal NOTES$K_KEYWORD_BEGIN = 9;!literal NOTES$K_KEYWORD_END = 10;!literal NOTES$K_KEYWORD_ADD = 11;G$literal NOTES$K_KEYWORD_DELETE = 12;!literal NOTES$K_KEYWORD_GET = 13;D&literal NOTES$K_KEYWORD_GET_NOTE = 14;$literal NOTES$K_KEYWORD_MODIFY = 15; literal NOTES$K_NOTE_BEGIN = 16;literal NOTES$K_NOTE_END = 17;literal NOTES$K_NOTE_ADD = 18;#literal NOTES$K_NOTE_ADD_TEXT = 19;r!literal NOTES$K_NOTE_DELETE = 20;uliteral NOTES$K_NOTE_GET = 21;&literal NOTES$K_NOTE_GET_KEYWORD = 22;#literal NOTES$K_NOTE_GET_TEXT = 23;r!literal NOTES$K_NOTE_MODIFY = 24;e literal NOTES$K_USER_BEGIN = 25;literal NOTES$K_USER_END = 26;literal NOTES$K_USER_ADD = 27;!literal NOTES$K_USER_DELETE = 28;Oliteral NOTES$K_USER_GET = 29;!literal NOTES$K_USER_MODIFY = 30;eliteral NOTES$K_CLASS_ADD = 31;r!literal NOTES$K_CLASS_BEGIN = 32;l"literal NOTES$K_CLASS_DELETE = 33;literal NOTES$K_CLASS_END = 34;lliteral NOTES$K_CLASS_GET = 35;e%literal NOTES$K_CLASS_GET_ENTRY = 36;r"literal NOTES$K_CLASS_MODIFY = 37;literal NOTES$K_ENTRY_ADD = 38;*!literal NOTES$K_ENTRY_BEGIN = 39;O"literal NOTES$K_ENTRY_DELETE = 40;literal NOTES$K_ENTRY_END = 41;Oliteral NOTES$K_ENTRY_GET = 42;a%literal NOTES$K_ENTRY_GET_CLASS = 43; 'literal NOTES$K_ENTRY_GET_KEYWORD = 44;O"literal NOTES$K_ENTRY_MODIFY = 45;#literal NOTES$K_PROFILE_BEGIN = 46;e!literal NOTES$K_PROFILE_END = 47;!literal NOTES$K_PROFILE_GET = 48;1$literal NOTES$K_PROFILE_MODIFY = 49;literal NOTES$K_STATUS = 129;_&literal NOTES$K_REQUEST_CONTEXT = 130; literal NOTES$K_ERROR_TLV = 131;"literal NOTES$K_ERROR_NARGS = 132; literal NOTES$K_ERROR_ARG = 133;!literal NOTES$K_ERROR_TEXT = 134;=%literal NOTES$K_CANCEL_REQUEST = 135;O(literal NOTES$K_REQUEST_CANCELLED = 136;$literal NOTES$K_INIT_VERSION = 8193;%literal NOTES$K_INIT_NODENAME = 8194;M%literal NOTES$K_INIT_USERNAME = 8195;$)literal NOTES$K_INIT_CAPABILITIES = 8196;E(literal NOTES$K_INIT_MAXITEMCODE = 8197;%literal NOTES$M_INIT_VMSMSGS = %X'1'; macro CAPABILITIES = 0,0,32,0 %;!literal NOTES$S_CAPABILITIES = 4;3(macro NOTES$L_CAPABILITIES = 0,0,32,0 %;'macro NOTES$V_INIT_VMSMSGS = 0,0,1,0 %;5%literal NOTES$K_PROTOCOL_VERSION = 2;1$literal NOTES$K_PROTOCOL_UPDATE = 6;$external routine NOTES$SERVER_BEGIN;*[NOTES.TEMPKIT]NOTES$IVP.COM;1+,,f./J 4PF- 0123KPWO56($7/j0lģ89GJHJP$ ! Copyright Digital Equipment Corporation. 1988, 1993. All Rights Reserved.$ !J$ ! THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIEDM$ ! ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE INCLUSIONF$ ! OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER COPIESI$ ! THEREOF MAY NOT BE PROVIDED OR OTHERWISE MADE AVAILABLE TO ANY OTHERN$ ! PERSON. NO TITLE TO AND OWNERSHIP OF THE SOFTWARE IS HEREBY TRANSFERRED.$ !M$ ! THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE ANDN$ ! SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT CORPORATION.$ !H$ ! DIGITAL ASSUMES NO RESPONSIBILITY FOR THE USE OR RELIABILITY OF ITS;$ ! SOFTWARE ON EQUIPMENT THAT IS NOT SUPPLIED BY DIGITAL.$ !N$ !***************************************************************************$ ! $ ! DEC Notes full-server IVP$ !7$ ! Tests OPEN, READ, DIRECTORY, SHOW, HELP & CLOSE.$ !$ ivp:E$ ON CONTROL_Y THEN GOTO ivp_error ! setup to handle ^YI$ ON WARNING THEN GOTO ivp_error ! setup to handle errors$ !$ TYPE SYS$INPUTE Beginning the DEC Notes V2.5 Installation Verification Procedure.KCopyright Digital Equipment Corporation. 1988, 1993. All Rights Reserved.9 Testing OPEN, READ, DIRECTORY, SHOW, HELP, and CLOSE.G Successful completion of this procedure does not imply the presence) of a full function DEC Notes license.$ !>$ IF F$GETDVI("NET0","EXISTS") .AND. F$GETDVI("NET0","MNT") $ THEN $ note_file = "0::NOTES$SAMPLE"$ ELSE$ note_file = "NOTES$SAMPLE"$ TYPE SYS$INPUT/ DECnet is not currently active on this system.7 This IVP procedure will therefore only be able to test; DEC Notes client functions. The IVP procedure may be rerun; with DECnet active in order to verify the DEC Notes Server functions. $ ENDIFA$ DEFINE/USER NOTES$SECTION SYS$SHARE:NOTES$SECTION.TPU$SECTION"$ DEFINE/USER NOTES$COMMAND _NL:$ NOTEo,$ NOTES026.A,f [NOTES.TEMPKIT]NOTES$IVP.COM;1PS = "NOTES"$ !,$ NOTES/NONOTEBOOK/NOAUTOMATIC 'note_file' NEXT UNSEENCONTINUEDIRECTORY 1-LAST SHOW NOTE 1.0SHOW CONFERENCEDIRECTORY/CONFERENCE SHOW MEMBERS SHOW VERSION HELP COMMANDCLOSEEXIT($ IF .NOT. $STATUS THEN GOTO ivp_error$ !A$ ivp_success: ! IVP successful$ status = $STATUS$ TYPE SYS$INPUT? If the informational output above is similar to the example< displayed in the DEC Notes Installation Guide, then this installation is successful.E The DEC Notes V2.5 Installation Verification Procedure completed.$ EXIT status$ !=$ ivp_error: ! IVP failed$ status = $STATUS$ TYPE SYS$INPUTB The DEC Notes V2.5 Installation Verification Procedure failed.$ EXIT status%*[NOTES.TEMPKIT]NOTES$IVP_CLIENT.COM;1+,*f./J 4Pt- 0123KPWO56$7]3lģ89GJHJ P$ ! Copyright Digital Equipment Corporation. 1988, 1993. All Rights Reserved.$ !J$ ! THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIEDM$ ! ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE INCLUSIONF$ ! OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER COPIESI$ ! THEREOF MAY NOT BE PROVIDED OR OTHERWISE MADE AVAILABLE TO ANY OTHERN$ ! PERSON. NO TITLE TO AND OWNERSHIP OF THE SOFTWARE IS HEREBY TRANSFERRED.$ !M$ ! THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE ANDN$ ! SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT CORPORATION.$ !H$ ! DIGITAL ASSUMES NO RESPONSIBILITY FOR THE USE OR RELIABILITY OF ITS;$ ! SOFTWARE ON EQUIPMENT THAT IS NOT SUPPLIED BY DIGITAL.$ !N$ !***************************************************************************$ ! $ ! DEC NOTES client-only IVP$ !$ ! Tests SHOW, HELP & EXIT$ !$ ivp:E$ ON CONTROL_Y THEN GOTO ivp_error ! setup to handle ^YI$ ON WARNING THEN GOTO ivp_error ! setup to handle errors$ !$ TYPE SYS$INPUTP Beginning the DEC Notes V2.5 Client-only Installation Verification Procedure.O Copyright Digital Equipment Corporation. 1988, 1993. All Rights Reserved.! Testing SHOW, HELP, and EXIT.$ !A$ DEFINE/USER NOTES$SECTION SYS$SHARE:NOTES$SECTION.TPU$SECTION"$ DEFINE/USER NOTES$COMMAND _NL:$ NOTES = "NOTES"$ ! $ NOTES SHOW VERSION HELP COMMANDEXIT($ IF .NOT. $STATUS THEN GOTO ivp_error$ !A$ ivp_success: ! IVP successful$ status = $STATUS$ TYPE SYS$INPUT? If the informational output above is similar to the example< displayed in the DEC Notes Installation Guide, then this installation is successful.P The DEC Notes V2.5 Client-only Installation Verification Procedure completed.$ EXIT status$ !=$ ivp_error: ! IVP failed$ status = $STATUS$ TYPE SYS$INPUTM The DEC Notes V2.5 Client-only Installation Verification Procedure failed.$ EXIT status$*[NOTES.TEMPKIT]NOTES$IVP_LOCAL.COM;1+,+f./J 4P- 0123KPWO56@idl$7j7lģ89GJHJ P$ ! Copyright Digital Equipment Corporation. 1988, 1993. All Rights Reserved.$ !J$ ! THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIEDM$ ! ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE INCLUSIONF$ ! OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER COPIESI$ ! THEREOF MAY NOT BE PROVIDED OR OTHERWISE MADE AVAILABLE TO ANY OTHERN$ ! PERSON. NO TITLE TO AND OWNERSHIP OF THE SOFTWARE IS HEREBY TRANSFERRED.$ !M$ ! THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE ANDN$ ! SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT CORPORATION.$ !H$ ! DIGITAL ASSUMES NO RESPONSIBILITY FOR THE USE OR RELIABILITY OF ITS;$ ! SOFTWARE ON EQUIPMENT THAT IS NOT SUPPLIED BY DIGITAL.$ !N$ !***************************************************************************$ !$ ! DEC Notes Local IVP$ !7$ ! Tests OPEN, READ, DIRECTORY, SHOW, HELP & CLOSE.$ !$ ivp:E$ ON CONTROL_Y THEN GOTO ivp_error ! setup to handle ^YI$ ON WARNING THEN GOTO ivp_error ! setup to handle errors$ !$ TYPE SYS$INPUTE Beginning the DEC Notes V2.5 Installation Verification Procedure.KCopyright Digital Equipment Corporation. 1988, 1993. All Rights Reserved.9 Testing OPEN, READ, DIRECTORY, SHOW, HELP, and CLOSE.G Successful completion of this procedure does not imply the presence) of a full function DEC Notes license.$ !A$ DEFINE/USER NOTES$SECTION SYS$SHARE:NOTES$SECTION.TPU$SECTION"$ DEFINE/USER NOTES$COMMAND _NL:$ NOTES = "NOTES"$ !-$ NOTES/NONOTEBOOK/NOAUTOMATIC NOTES$SAMPLE NEXT UNSEENCONTINUEDIRECTORY 1-LAST SHOW NOTE 1.0SHOW CONFERENCEDIRECTORY/CONFERENCE SHOW MEMBERS SHOW VERSION HELP COMMANDCLOSEEXIT($ IF .NOT. $STATUS THEN GOTO ivp_error$ !A$ ivp_success: ! IVP successful$ status = $STATUS$ TYPE SYS$INPUT? If the informational output above is similar to the example< displayed in the DEC Notes Installation Guide, then this installation is successful.E The DEC Notes V2.5 Installation Verification Procedure completed.$ EXIT status$ !=$ ivp_error: ! IVP failed$ status = $STATUS$ TYPE SYS$INPUTB The DEC Notes V2.5 Installation Verification Procedure failed.$ EXIT status*[NOTES.TEMPKIT]NOTES$MAIN.EXE;1+,f./J 4- 0123 KPWO56,ģ7p;lģ89GJHJ  h(D0ģ NOTES$MAIN NOTES V2.5A13-02$ $$J$( 8 NOTES$SHARE_00100 `{$ NOTES026.Af [NOTES.TEMPKIT]NOTES$MAIN.EXE;1}#~^ G  C4G [({RZk/4GG] 0#kTXp  @ NOTES$SHARE**[NOTES.TEMPKIT]NOTES$MOVE_CONFERENCE.COM;1+,f./J 4[ - 0123KPWO 56 ILD7Y?lģ89GJHJC$ ! N O T E S $ M O V E _ C O N F E R E N C E . C O M$ !P$ ! Copyright Digital Equipment Corporation. 1986, 1993. All Rights Reserved.$ !J$ ! THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIEDM$ ! ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE INCLUSIONF$ ! OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER COPIESI$ ! THEREOF MAY NOT BE PROVIDED OR OTHERWISE MADE AVAILABLE TO ANY OTHERN$ ! PERSON. NO TITLE TO AND OWNERSHIP OF THE SOFTWARE IS HEREBY TRANSFERRED.$ !M$ ! THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE ANDN$ ! SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT CORPORATION.$ !H$ ! DIGITAL ASSUMES NO RESPONSIBILITY FOR THE USE OR RELIABILITY OF ITS;$ ! SOFTWARE ON EQUIPMENT THAT IS NOT SUPPLIED BY DIGITAL.$ !N$ !***************************************************************************$ !8$ ! This procedure installs conferences in NOTES$LIBRARY$ !4$ ! P1 = Notefile specification: (wildcards allowed)2$ ! P2 = Conference moderator username: (optional)=$ ! P3 = Allow access only through NOTES server? (default=NO)1$ ! P4 = Allow read access only? (default=NO)-$ ! P5 = Move to NOTES$LIBRARY? (default=YES)$ !$ ! Setup error handling$ !$ ON CONTROL_Y THEN GOTO EXIT$ ON ERROR THEN GOTO EXIT$ PPRIV = F$SETPRV("SYSPRV")'$ ASK = "READ SYS$COMMAND ANS /PROMPT="$ SAY = "WRITE SYS$OUTPUT"$ COPY = "COPY/LOG"#$ DELETE = "DELETE/NOLOG/NOCONFIRM"$ DEFINE = "DEFINE/NOLOG"$ T2 = "_Z$Z_:[_Z$Z_]"D$ NLIBRARY = F$PARSE("NOTES$LIBRARY", T2,, "DEVICE", "NO_CONCEAL") -< + F$PARSE("NOTES$LIBRARY", T2,, "DIRECTORY", "NO_CONCEAL")0$ IF NLIBRARY .EQS. T2 THEN GOTO NO_SUCH_LIBRARY$ IF P4 .EQS. "" THEN P4 = "N"$ IF P5 .EQS. "" THEN P5 = "Y"$$OKAY:$ SETSHOACL = 1W$ !IF F$SEARCH(F$PARSE("SETSHOACL", "SYS$SYSTEM:.EXE")) .EQS. "" THEN GOTO NO_SETSHOACL $ ANS = P1?$ IF ANS .EQS. "" THEN ASK "Notefile specification: " /END=EXIT6$ FILE = F$EDIT(ANS, "COMPRESS,TRIM,UNCOMMENT,UPCASE")!$ IF FILE .EQS. "" THEN GOTO EXIT $ CONFIRM = 0 $ SWITCH = F$ELEMENT(1,"/",FILE)&$ IF SWITCH .NES. "/" THEN CONFIRM = 1.$ IF CONFIRM THEN FILE = F$ELEMENT(0,"/",FILE)$ FILE = F$PARSE(FILE, ".NOTE")$ OFILE = F$SEARCH(FILE, 1)*$ IF OFILE .EQS. "" THEN GOTO NO_SUCH_FILE$ WILDCARDS = 04$ IF (F$LOCATE("*",FILE) .NE. F$LENGTH(FILE)) .OR. -< (F$LOCATE("%",FILE) .NE. F$LENGTH(FILE)) THEN WILDCARDS = 1$ IF WILDCARDS THEN CONFIRM = 1 $ ANS = P2H$ IF ANS .EQS. "" THEN ASK "Conference moderator username: " /END=NO_MOD$NO_MOD:6$ USER = F$EDIT(ANS, "COMPRESS,TRIM,UNCOMMENT,UPCASE") $ ANS = P3[$ IF ANS .EQS. "" THEN ASK "Allow access only through NOTES server? [NO] " /END=NO_RESTRICT $NO_RESTRICT::$ RESTRICT = F$EDIT(ANS, "COMPRESS,TRIM,UNCOMMENT,UPCASE")*$ IF RESTRICT .EQS. "" THEN RESTRICT = "N" $ ANS = P4H$ IF ANS .EQS. "" THEN ASK "Allow read access only? [NO] " /END=NO_WRITE $NO_WRITE:;$ READ_ONLY = F$EDIT(ANS, "COMPRESS,TRIM,UNCOMMENT,UPCASE"),$ IF READ_ONLY .EQS. "" THEN READ_ONLY = "N"$ ACCESS_MODE = "R+W+E"'$ IF READ_ONLY THEN ACCESS_MODE = "R+E"I$ IF USER .NES. "" THEN USER = ",(IDENT=''USER',ACCESS=''ACCESS_MODE'+C)"*$ PROTECTION = "(S=RWE,O=RWE,G=RWE,W=RWE)"<$ IF READ_ONLY THEN PROTECTION = "(S=RE ,O=RE ,G=RE ,W=RE )"P$ IF RESTRICT THEN PROTECTION = F$EXTRACT(0,12,PROTECTION)+",G,W) /OWN=[SYSTEM]"$ IF RESTRICT THEN -, USER = ",(IDENT=INTERACTIVE,ACCESS=NONE)" -G + ",(IDENT=BATCH,ACCESS=NONE),(IDENT=NETWORK,ACCESS=NONE)" + USER$ IF .NOT. RESTRICT THEN -H USER = USER + ",(IDENT=DECNET,ACCESS=NONE),(IDENT=NETWORK,ACCESS=NONE)"$Y$ IF (F$PARSE(OFILE,,,"DEVICE","NO_CONCEAL")+F$PARSE(OFILE,,,"DIRECTORY","NO_CONCEAL")) - .EQS. NLIBRARY THEN P5 = "N" $ ANS = P5G$ IF ANS .EQS. "" THEN ASK "Move to NOTES$LIBRARY? [YES] " /END=NO_COPY $NO_COPY:;$ COPY_MODE = F$EDIT(ANS, "COMPRESS,TRIM,UNCOMMENT,UPCASE"),$ IF COPY_MODE .EQS. "" THEN COPY_MODE = "Y" $COPY_IT: $ ANS = "Y";$ IF CONFIRM THEN ASK "File ''OFILE'? [NO] " /END=NEXT_FILE5$ ANS = F$EDIT(ANS, "COMPRESS,TRIM,UNCOMMENT,UPCASE") $ IF ANS .EQS. "" THEN ANS = "N""$ IF .NOT. ANS THEN GOTO NEXT_FILE$ FILE_COPIED = 0$ NFILE = OFILE&$ IF .NOT. COPY_MODE THEN GOTO SET_ACL=$ NFILE = F$PARSE("''NLIBRARY'.NOTE", OFILE,,, "SYNTAX_ONLY")6$ IF F$SEARCH(NFILE) .NES. "" THEN GOTO ALREADY_EXISTS#$ ON CONTROL_Y THEN GOTO COPY_ABORT$ ON ERROR THEN GOTO COPY_ABORT$ COPY 'OFILE' 'NLIBRARY'$ FILE_COPIED = 1$ $SET_ACL: $ SET NOONA$ IF .NOT. FILE_COPIED THEN SET FILE /PROT=(S:RWE) /NOLOG 'NFILE'%$ IF .NOT. SETSHOACL THEN GOTO NO_ACL$ DEFINE /USER SYS$OUTPUT NL:$ DEFINE /USER SYS$ERROR NL:V$ SET FILE /ACL=((IDENT=INTERACTIVE),(IDENT=BATCH),(IDENT=DECNET)) 'NFILE' /DEL /NOLOG$ ON CONTROL_Y THEN GOTO EXIT$ ON ERROR THEN GOTO EXITO$ SET FILE /ACL=((IDENT=NOTES$SERVER,ACCESS='ACCESS_MODE') 'USER') /LOG 'NFILE'$$NO_ACL:*$ SET FILE /PROT='PROTECTION' /LOG 'NFILE'$ $NEXT_FILE:#$ IF .NOT. WILDCARDS THEN GOTO EXIT$ OFILE = F$SEARCH(FILE, 1)"$ IF OFILE .EQS. "" THEN GOTO EXIT$ GOTO COPY_IT$$NO_SUCH_FILE:$ SAY "No such file ''FILE'" $ GOTO EXIT$$NO_SUCH_LIBRARY:#$ SAY "Can't copy to NOTES$LIBRARY" $ GOTO EXIT$$NO_SETSHOACL:O$ SAY "You don't have the prerequisite software installed for modifying ACL's." $ GOTO EXIT$$ALREADY_EXISTS:($ IF OFILE .EQS. NFILE THEN GOTO SET_ACL$$ SAY "File ''NFILE' already exists" $ GOTO EXIT$ $COPY_ABORT:$ ON CONTROL_Y THEN GOTO EXIT$ ON ERROR THEN GOTO EXIT$ DEFINE /USER SYS$OUTPUT NL:$ DEFINE /USER SYS$ERROR NL:$ DELETE 'NFILE'$$EXIT:$ PPRIV = F$SETPRV(PPRIV)$ EXIT!*[NOTES.TEMPKIT]NOTES$REMOVE.COM;1+,(f.$/J 4$- 0123KPWO56A\t`7VClģ89GJHJ4$ ! DEC NOTES Utililty Procedure$ !$ ! NOTES$REMOVE.COM$ !J$ ! Copyright Digital Equipment Corporation, 1993. All Rights Reserved.$ !J$ ! THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIEDM$ ! ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE INCLUSIONF$ ! OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER COPIESI$ ! THEREOF MAY NOT BE PROVIDED OR OTHERWISE MADE AVAILABLE TO ANY OTHERN$ ! PERSON. NO TITLE TO AND OWNERSHIP OF THE SOFTWARE IS HEREBY TRANSFERRED.$ !M$ ! THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE ANDN$ ! SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT CORPORATION.$ !H$ ! DIGITAL ASSUMES NO RESPONSIBILITY FOR THE USE OR RELIABILITY OF ITS;$ ! SOFTWARE ON EQUIPMENT THAT IS NOT SUPPLIED BY DIGITAL.$ !N$ !***************************************************************************-$ NOTES$SET_ON = F$ENVIRONMENT("ON_SEVERITY")$ NOTES$SERVER_SHUTDOWN dE>$ NOTES026.A(f ![NOTES.TEMPKIT]NOTES$REMOVE.COM;1$x"= 0$ NOTES$REMOVE_DECWINDOWS = 0$ NOTES$REMOVE_ALL = 0$ NOTES$PROVIDE_HELP = 0$ NOTES$DELETE_FILES = 05$ NOTES$INSTALL_REPLACE := "$INSTALL/COMMAND REPLACE"3$ NOTES$INSTALL_REMOVE := "$INSTALL/COMMAND REMOVE"#$ ON CONTROL_Y THEN GOTO CTRLY_EXIT$ ON ERROR THEN GOTO ERROR_EXIT$ !E$ ! Delete all versions of specified file, deinstalling if necessary.$ !$ NOTES$REMOVE_FILE: SUBROUTINE$ NOTES$DEINSTALL = 1$ DELETE_LOOP:"$ NOTES$FILE = F$SEARCH("''P1';*")$ IF NOTES$FILE .NES. ""$ THEN$ IF NOTES$DEINSTALL $ THEN$ NOTES$DEINSTALL = 0/$ NOTES$FVER = F$PARSE(NOTES$FILE,,,"VERSION")'$ NOTES$FILE = NOTES$FILE - NOTES$FVER:$ NOTES$INSTALLED = F$FILE_ATTRIBUTES(NOTES$FILE,"KNOWN")<$ IF NOTES$INSTALLED THEN NOTES$INSTALL_REMOVE 'NOTES$FILE''$ NOTES$FILE = NOTES$FILE + NOTES$FVER $ ENDIF$ IF NOTES$DELETE_FILES $ THEN.$ SET FILE/PROTECTION = (W:RWED) 'NOTES$FILE'$ DELETE/LOG 'NOTES$FILE''#$ IF $STATUS THEN GOTO DELETE_LOOP $ ENDIF$ ENDIF$ ENDSUBROUTINE$ ! $ SET NOON9$ IF "''P1'" .EQS. "SHUT" .OR. "''P1'" .EQS. "SHUTDOWN"$ THEN$ NOTES$SERVER_SHUTDOWN = 1 $ NOTES$REMOVE_DECWINDOWS = 1$ NOTES$REMOVE_ALL = 1$ ELSE"$ IF "''P1'" .EQS. "DECWINDOWS" $ THEN$ WRITE SYS$OUTPUT ""($ READ SYS$COMMAND NOTES$DELETE_FILES -: /PROMPT="Really DELETE DEC Notes DECwindows files? [N]"- /ERR=ERROR_EXIT/END=ERROR_EXIT3$ IF .NOT. NOTES$DELETE_FILES THEN GOTO ERROR_EXIT$$ NOTES$REMOVE_DECWINDOWS = 1 $ ELSE$ IF "''P1'" .EQS. "ALL"$ THEN$ WRITE SYS$OUTPUT "",$ READ SYS$COMMAND NOTES$DELETE_FILES -Y /PROMPT="Really DELETE DEC Notes files and remove DEC Notes from your system? [N]"-$ /ERR=ERROR_EXIT/END=ERROR_EXIT7$ IF .NOT. NOTES$DELETE_FILES THEN GOTO ERROR_EXIT $ NOTES$SERVER_SHUTDOWN = 1"$ NOTES$REMOVE_DECWINDOWS = 1($ NOTES$REMOVE_ALL = 1 $ ELSE$ NOTES$PROVIDE_HELP = 1$ ENDIF $ ENDIF$ ENDIF$ !$ ! Display help message...$ !6$ IF .NOT. NOTES$PROVIDE_HELP THEN GOTO CHECK_SHUTDOWN$ TYPE SYS$INPUTNOTES$REMOVE.COM: USAGE"@SYS$MANAGER:NOTES$REMOVE SHUTDOWN< Use this command to shut down running DEC Notes servers and& prevent startup of new Notes servers.$@SYS$MANAGER:NOTES$REMOVE DECWINDOWS9 Use this command to remove the files associated with the< DEC Notes DECwindows/Motif user interface from your system.@SYS$MANAGER:NOTES$REMOVE ALLB Use this command to remove all files, directories, logical names,A and network objects/services associated with DEC Notes from your; system. DCL help (SYS$HELP:HELPLIB.HLB) and command tablesA (SYS$LIBRARY:DCLTABLES.EXE) will also be updated to remove Notes references.)@SYS$MANAGER:NOTES$REMOVE  Display this message.$ GOTO COMMON_EXIT$ !$ ! Shutdown of servers...$ !$ CHECK_SHUTDOWN:B$ IF .NOT. NOTES$SERVER_SHUTDOWN THEN GOTO CHECK_DECWINDOWS_REMOVE?$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Disabling Notes server..."$ DEFINE SYS$OUTPUT NL:$ DEFINE SYS$ERROR NL:$ UCX DISABLE SERVICE NOTES$ DECNET_PHASE = 4,$ NETFILE = F$SEARCH("SYS$SYSTEM:NCL.EXE")$ IF NETFILE .NES. ""$ THEN:$ DNET_VERS = F$EXTRACT(2,2,F$GETSYI("DECNET_VERSION"))/$ IF DNET_VERS .EQS. "05" THEN DECNET_PHASE = 5 $ ENDIF$ IF DECNET_PHASE .EQ. 4!$ then ! Assume DECnet Phase IV#$ MCR NCP CLEAR OBJECT NOTES ALL $ ELSE ! Assume DECnet Phase V#$ SET RIGHTS_LIST/ENABLE NET$MANAGE9$ MCR NCL DELETE NODE 0 SESSION CONTROL APPLICATION NOTES$ IF .NOT. $STATUS THEN MCR NCL SET NODE 0 SESSION CONTROL APPLICATION NOTES IMAGE NAME SYS$SYSTEM:NOTES_HAS_BEEN_SHUT_DOWN.EXE $ ENDIF$ DEASSIGN SYS$OUTPUT$ DEASSIGN SYS$ERROR$ !$ ! Remove DECwindows files...$ !$ CHECK_DECWINDOWS_REMOVE:?$ IF .NOT. NOTES$REMOVE_DECWINDOWS THEN GOTO CHECK_REMOVE_FILES $ IF NOTES$DELETE_FILES THEN -Z WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing DECwindows/Motif files created by DEC Notes..."?$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSHLP]NOTES$DWHELP.HLBA$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSLIB]NOTES$DEFAULTS.DAT@$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSLIB]NOTES$DWNOTES.UIDE$ CALL NOTES$REMOVE_FILE DECW$SYSTEM_DEFAULTS:LWK_REG_NOTESNOTE.UID@$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSLIB]NOTES$DWSHARE.EXE$ !&$ ! Remove ALL (non-DECwindows) files:$ !$ CHECK_REMOVE_FILES:1$ IF .NOT. NOTES$REMOVE_ALL THEN GOTO COMMON_EXIT$ IF NOTES$DELETE_FILES.$ THEN Y$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing non-DECwindows files created by DEC Notes..." $ ENDIF>$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSLIB]NOTES$SHARE.EXE@$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSLIB]NOTES$MAILSHR.EXEA$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSLIB]NOTES$MAILSHRP.EXE9$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSLIB]NPUSHR.EXE=$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSLIB]NPU$CCTSHR.EXE9$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSMSG]NPUMSG.EXEH$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSLIB]NOTES$SECTION.TPU$SECTION=$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSEXE]NOTES$MAIN.EXE?$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSEXE]NOTES$SERVER.EXEE$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSEXE]NOTES$SERVER_LOGIN.COM?$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSEXE]NOTES$SERVER.COMH$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSMGR]NOTES$MOVE_CONFERENCE.COM=$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSHLP]NOTES$HELP.HLBC$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSHLP]NOTES_SHORTGUIDE.MEME$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSHLP]NOTES01%.RELEASE_NOTESF$ CALL NOTES$REMOVE_FILE SYS$SYSROOT:[SYSHLP]NOTES$02%.RELEASE_NOTES2$ CALL NOTES$REMOVE_FILE SYS$TEST:NOTES$IVP*.COM$ !5$ IF .NOT. NOTES$DELETE_FILES THEN GOTO COMMON_EXIT$ !G$ ! Remove NOTES$STARTUP.COM. This involves both deleting the file fromH$ ! SYS$STARTUP, and removing it from SYSMAN's startup database, if it'sF$ ! registered there. Redirect output before running SYSMAN to prevent$ ! error messages.$ !Y$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing NOTES$STARTUP.COM from startup database..."8$ CALL NOTES$REMOVE_FILE SYS$STARTUP:NOTES$STARTUP.COM$ DEFINE SYS$OUTPUT NL:$ DEFINE SYS$ERROR NL:4$ MCR SYSMAN STARTUP REMOVE FILE NOTES$STARTUP.COM$ DEASSIGN SYS$OUTPUT$ DEASSIGN SYS$ERROR'$ VAXNOTES$DEVICE == "SYS$SYSDEVICE:""$ VAXNOTES$DIR = "NOTES$LIBRARY"6$ VAXNOTES$LNM = F$TRNLNM(VAXNOTES$DIR,"LNM$SYSTEM")1$ IF (VAXNOTES$LNM .EQS. "") THEN GOTO CHKDIR10J$ IF (VAXNOTES$LNM .EQS. "SYS$LOGIN:") THEN GOTO CHKDIR10 !Client systemE$ VAXNOTES$DEVICE == F$PARSE(VAXNOTES$DIR,,,"DEVICE","SYNTAX_ONLY")D$ VAXNOTES$DIR = F$PARSE(VAXNOTES$DIR,,,"DIRECTORY","SYNTAX_ONLY")+$ VAXNOTES$DIR = VAXNOTES$DIR - "[" - "]"$ !D$ ! Delete NOTES$LIBRARY:NOTES$SAMPLE.NOTE. If that leaves directoryE$ ! NOTES$LIBRARY empty, AND IF NOTES$LIBRARY <> SYS$LOGIN: (which isD$ ! how it's defined by a client-only installation), then delete the$ ! NOTES$LIBRARY directory.$ ! $CHKDIR10:%$ IF (VAXNOTES$LNM .EQS. "") THEN -[ DEFINE NOTES$LIBRARY 'VAXNOTES$DEVICE'['VAXNOTES$DIR'] ! to insure NOTES$LIBRARY: is local>$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing sample notefile":$ CALL NOTES$REMOVE_FILE NOTES$LIBRARY:NOTES$SAMPLE.NOTEB$ IF (VAXNOTES$LNM .NES. "SYS$LOGIN:") ! Non-client systems only$ THEN,$ NOTES$FILE = F$SEARCH("NOTES$LIBRARY:*.*")/$ IF NOTES$FILE .NES. "" THEN GOTO CHECK_SERVERG$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing NOTES$LIBRARY directory..."D$ CALL NOTES$REMOVE_FILE 'VAXNOTES$DEVICE'[000000]'VAXNOTES$DIR'.DIR $ ENDIF$ !,$ ! Remove system-wide NOTES$LIBRARY logical$ !F$ IF (VAXNOTES$LNM .NES. "") THEN DEASSIGN/SYSTEM/EXEC NOTES$LIBRARY$ !A$ ! Remove NOTES$SERVER directory and anything in it. If we found@$ ! a NOTES$SERVER directory, then we're probably dealing with a?$ ! system which has a server installed, so attempt to delete a$ ! NOTES$SERVER account.$ !$CHECK_SERVER:C$ NOTES$FILE = F$SEARCH("SYS$SYSDEVICE:[000000]NOTES$SERVER.DIR")3$ IF (NOTES$FILE .EQS. "") THEN GOTO CLEAR_OBJECTH$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing NOTES$SERVER directory..."<$ CALL NOTES$REMOVE_FILE "SYS$SYSDEVICE:[NOTES$SERVER]*.*"A$ CALL NOTES$REMOVE_FILE SYS$SYSDEVICE:[000000]NOTES$SERVER.DIR$ !:$ ! Remove NOTES$SERVER account. Use AUTHORIZE to do this,-$ ! with possible error msgs directoed to NL:$ !F$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing NOTES$SERVER account=$ NOTES026.A(f ![NOTES.TEMPKIT]NOTES$REMOVE.COM;1$..."$ AUTHORIZE = "$AUTHORIZE"$ DEFINE SYS$OUTPUT NL:$ DEFINE SYS$ERROR NL:8$ IF (F$TRNLNM("SYSUAF","LNM$SYSTEM") .EQS. "") THEN -I DEFINE/USER SYSUAF 'F$PARSE("SYSUAF","SYS$SYSTEM:.DAT",,,"SYNTAX_ONLY")':$ IF (F$TRNLNM("NETPROXY","LNM$SYSTEM") .EQS. "") THEN -M DEFINE/USER NETPROXY 'F$PARSE("NETPROXY","SYS$SYSTEM:.DAT",,,"SYNTAX_ONLY")'!$ AUTHORIZE REMOVE NOTES$SERVER$$ AUTHORIZE REMOVE/ID NOTES$SERVER$ DEASSIGN SYS$OUTPUT$ DEASSIGN SYS$ERROR$ !>$ ! Remove Notes DECnet object. The procedure depends upon the=$ ! DECnet version which is running, requiring use of NCP for-$ ! DECnet Phase IV or NCL for DECnet Phase Vs$ !r$CLEAR_OBJECT:-$ DECnetPhase = f$getsyi ("DECNET_VERSION") .$ DECnetPhase = f$extract (2,2, DECnetPhase)$! E$ IF DECnetPhase .EQS. "04" $ THEN3$ NOTES$FILE = F$SEARCH("SYS$SYSTEM:NETOBJECT.DAT")A.$ IF (NOTES$FILE .EQS. "") THEN GOTO CLEAR_TCPG$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing DEC Notes DECnet object..."E$ NCP = "$NCP"$ DEFINE SYS$OUTPUT NL:B$ DEFINE SYS$ERROR NL:$ NCP CLEAR OBJECT NOTES ALLPURGE OBJECT NOTES ALL$ ELSE$ IF DECnetPhase .EQS. "05"E$ THENY$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing DEC Notes from NCL application script..."I$ DEFINE SYS$OUTPUT NL:L$ DEFINE SYS$ERROR NL:-$ SET RIGHTS_LIST/ENABLE NET$MANAGE ;$ @SYS$MANAGER:NET$CONFIGURE APPLICATION_DELETE "NOTES"*$ ENDIF* $ ENDIF$ DEASSIGN SYS$OUTPUTN$ DEASSIGN SYS$ERROR$ !$$ ! Remove Notes UCX service$ !E $CLEAR_TCP: J$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing DEC Notes TCP/IP service..."$ DEFINE SYS$OUTPUT NL: $ DEFINE SYS$ERROR NL:$ UCX SET NOSERVICE NOTES:$ DEASSIGN SYS$OUTPUTE$ DEASSIGN SYS$ERROR$ !C%$ ! Remove DCL help module for Notes.E$ !D$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing DEC Notes DCL help..."<$ NOTES$FILE = F$SEARCH("SYS$SYSROOT:[SYSHLP]HELPLIB.HLB")$ IF NOTES$FILE .NES. ""$ THEN$ DEFINE SYS$OUTPUT NL:)$ DEFINE SYS$ERROR NL:($ LIBRARY/HELP/DELETE=NOTES 'NOTES$FILE'$ DEASSIGN SYS$OUTPUTA$ DEASSIGN SYS$ERROR $ ENDIFO$ !I8$ ! Remove Notes DCL command. Create new updated copy of:$ ! DCLTABLES.EXE as []NOTES$DCLTABLES.EXE, with Notes cmd?$ ! removed. Copy that file back to SYS$LIBRARY and re-install. $ !S=$ ! Note that the PURGE and DELETE operations associated withDC$ ! this step will NOT be logged at the user's terminal: SYS$OUTPUTLC$ ! and SYS$ERROR will have been redirected before those operations$ ! are performed.$ !G$ WRITE SYS$OUTPUT "%NOTES-I-SHUT, Removing DEC Notes DCL command..."1>$ NOTES$FILE = F$SEARCH("SYS$SYSROOT:[SYSLIB]DCLTABLES.EXE")$ IF NOTES$FILE .NES. ""$ THEN$ DEFINE SYS$OUTPUT NL:L$ DEFINE SYS$ERROR NL:J$ SET COMMAND/DELETE=NOTES/TABLE='NOTES$FILE'/OUTPUT=[]NOTES$DCLTABLES.EXE $ IF $STATUS$ THEN5$ NOTES$FILE_DEV = F$PARSE(NOTES$FILE,,,"DEVICE")8$ NOTES$FILE_DIR = F$PARSE(NOTES$FILE,,,"DIRECTORY")D$ NOTES$FILE = NOTES$FILE_DEV + NOTES$FILE_DIR + "DCLTABLES.EXE"-$ COPY []NOTES$DCLTABLES.EXE 'NOTES$FILE'D$ NOTES$INSTALL_REPLACE 'NOTES$FILE'/OPEN/HEADER_RESIDENT/SHARED$ PURGE/NOLOG NOTES$FILE$ ENDIFt.$ CALL NOTES$REMOVE_FILE []NOTES$DCLTABLES.EXE $ ENDIF$ !R#$ ! Display information for user... $ ! $ DEASSIGN SYS$OUTPUT$ DEASSIGN SYS$ERRORT$ TYPE SYS$INPUT1= *********************************************************** . DEC Notes has been removed from your system.6 If your system startup procedure attempts to execute( SYS$STARTUP:NOTES$STARTUP.COM; you should now modify your startup procedure to eliminateO; that operation, as SYS$STARTUP:NOTES$STARTUP.COM has beent removed from your system.i< FAILURE TO PERFORM THIS STEP MIGHT CAUSE DIFFICULTIES WHEN YOU REBOOT YOUR SYSTEM.V= ***********************************************************w$ !hJ$ ! Clean up and exit: clear any logical names assigned in this procedure,)$ ! restore ON setting, delete this file. $ !m$ COMMON_EXIT:U$ IF ( F$TRNLNM("NOTES$LIBRARY","LNM$PROCESS") .NES. "" ) THEN DEASSIGN NOTES$LIBRARYm2$ NOTES$TMP = F$TRNLNM("SYS$OUTPUT","LNM$PROCESS")&$ NOTES$TMP = F$EXTRACT(0,3,NOTES$TMP)3$ IF NOTES$TMP .EQS. "_NL" THEN DEASSIGN SYS$OUTPUTn1$ NOTES$TMP = F$TRNLNM("SYS$ERROR","LNM$PROCESS")&$ NOTES$TMP = F$EXTRACT(0,3,NOTES$TMP)2$ IF NOTES$TMP .EQS. "_NL" THEN DEASSIGN SYS$ERROR*$ IF NOTES$SET_ON .NES. "NONE" THEN SET ONN$ IF NOTES$REMOVE_ALL THEN CALL NOTES$REMOVE_FILE SYS$MANAGER:NOTES$REMOVE.COM$ EXIT$ !s $ ERROR_EXIT: )$ ! Fall through to CTRL/Y exit on errorsR $ CTRLY_EXIT:I$ NOTES$REMOVE_ALL = 0E$ NOTES$DELETE_FILES = 0 $ NOTES$REMOVE_DECWINDOWS = 0$ GOTO COMMON_EXIT"*[NOTES.TEMPKIT]NOTES$SAMPLE.NOTE;1+,f.l/J 4"la- 0123 KPWOa5b6=VR7Flģ89GJHJ L F_TAG_LEN, R ;= 5E 0C C2 00010 SUBL2 #12, SP ;29 10 AC DD 00013 PUSHL FABPTR ; 2331_H 04 AE 05F3 8F 3C 00016 MOVZWL #1523, 4(SP) ;4 04 AE 9F 0001C PUSHAB 4(SP) ;M 00000000G 00 02 FB 0001F CALLS #2, NOTES$$GET_VM ;d@ 12 50 E8 00026 BLBS STATUIfRLH OXO@D@ U Bliss-32 V4.3-808 Page 95VV01-046 NOTES$OPEN_INFILE 29-Oct-1988 17:45:44 NNP$:[NOTES.SRC]DWMISC.B32;60 (33)> 03FBC03A 8F DD 0002D PUSHL #66830394 ;J 00000000G 00 03 FB 00033 CALLS #3, LIB$SIGNAL ;( 04 0003A RET ;Kf KEFK LO X[ 68(R7), INAM ; 2335 h 0050 8F 00 6E 00 2C 00047 MOVC5 #0, (SP), #0, #80, (IFAB) ; 2345% 66 0004E ;I 66 5003 8F B0 0004F MOVW #20483, (IFAB) ; J 16 A6 0F02 8F B0 00054 MOVW #3842, 22(IFAB)euC6I,$@ @Wk`(s=G2<DEC Notes Sample Conference6MAR::JOHN_Q_NOTEREJQHNeSeNQWET:-K JOHN_Q_NOTERNJuMAR::JOHN_Q_NOTER4 ADYANCED> +ADVANCEDT@@ AU\UWEM@/KSYSTEMNISYSTEMJHu 0::SYSTEM0Eo0p SYSTEM)MATCoMARp JOHN_Q_NOTER_@ETMAR::JOHN_Q_NOTER"kWelcome to DEC NotesI'll make a note!q@EfMAR::JOHN_Q_NOTERm&Choosing an editor to use in DEC NotesI'll make a note!%u@CjMAR::JOHN_Q_NOTER`N!m.Sample command procedure for spawnable editorsI'll make a note! C C C C C C CMAR::JOHN_Q_NOTER@H\p"One-key reading with the ENTER keyI'll make a note!  j@E_MAR::JOHN_Q_NOTERKp%Who Are You? - Tell us about yourselfI'll make a note! w@ElMAR::JOHN_Q_NOTER9q,Using the DIRECTORY, PRINT and SAVE commandsI'll make a note!j @C_MAR::JOHN_Q_NOTER\XJq#Notation for specifying note rangesI'll make a note!l @CaMAR::JOHN_Q_NOTER`Ӭq%Ways to limit your selection of notesI'll make a note! C C C C C C Ce!r;l$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$SAMPLE.NOTE;1"l" g @C\MAR::JOHN_Q_NOTER`[ q PRINT and SAVE work the same wayI'll make a note!e @EZMAR::JOHN_Q_NOTERq Suggestions for the Welcome noteI'll make a note![ @EPMAR::JOHN_Q_NOTER@ŭ rOnline EtiquetteI'll make a note!f@C[MAR::JOHN_Q_NOTER'rMaking your notes more readableI'll make a note!]@CRMAR::JOHN_Q_NOTER_?rUse Descriptive TitlesI'll make a note!a@CVMAR::JOHN_Q_NOTERᚍrRepresenting Body LanguageI'll make a note!7l@CaMAR::JOHN_Q_NOTER~Kr%When to Use MAIL Instead of DEC NotesI'll make a note! b@CWMAR::JOHN_Q_NOTER@9rPracticing Online EtiquetteI'll make a note! @EyMAR::JOHN_Q_NOTERr-Using NOTES$COMMAND to Define Additional KeysI'll make a note!DS ADVANCED c@CXMAR::JOHN_Q_NOTER&g(Defining editor margins in NOTES$COMMANDNoted  r@Eg MAR::JOHN_Q_NOTERSԉN!DEC Notes Security ConsiderationsI'll make a note!&S ADVANCED `@CUMAR::JOHN_Q_NOTERXXBenefits and applicationsI'll make a note!  a@CVMAR::JOHN_Q_NOTER@XSome terms you should knowI'll make a note!   T@CIMAR::JOHN_Q_NOTERhX Reading notesI'll make a note! a@CVMAR::JOHN_Q_NOTERXSkipping to the next replyI'll make a note! w@ClMAR::JOHN_Q_NOTERIY0Don't bother reading the rest of this discussionI'll make a note! E@C:MAR::JOHN_Q_NOTERbYI'll make a note! E@C:MAR::JOHN_Q_NOTERO+YI'll make a note! EF DEC Notes is a computer-mediated conferencing system that lets youE conduct online conferences or meetings. Using DEC Notes, you canF communicate conveniently and economically with people in differentJ geographic locations. Anyone connected to the system can participate,H making it possible for you to receive input from many people without$ costly, time-consuming meetings.D This sample conference has been provided to help you quickly getG started using DEC Notes. It contains definitions of terms, ways toJ read notes, a place for you to add your first reply, and helpful hintsK for running and participating in an online conference. This conferenceD also has information about choosing an editor for writing notes,J running DEC Notes in batch mode, and protecting a confidential meeting& with an Access Control List (ACL).8 To continue reading this note, press the RETURN key.t your selection of notesI'll make a note!  E K As you and your fellow "Noters" gain experience with DEC Notes, you canF use this sample conference as a place to record and share your own helpful hints.C Press the RETURN key again to continue reading about DEC Notes. EK In DEC Notes, you always use an editor of your choice to compose notes.H If you do not explicitly choose an editor, the EVE editor built into DEC Notes is used.I If "your favorite editor" is something other than EVE, you should useI SET PROFILE/EDITOR to specify your preferred editor. If you normallyK don't use any editor at all, EVE is easy to learn and use for a novice;C however, please read the chapter in the manual about using EVE.D If you normally use the EDT editor in keypad mode and you do notK redefine the keypad keys, you should try using EVE with the EDT keypad. Specify this by: SET PROFILE/EDITOR=EDTI If you normally use EDT line mode as well as keypad mode, or you haveG customized EDT using EDTINI.EDT, you should specify callable EDT as your editor:! SET PROFILE/EDITOR=(EDT,CALL)H If you normally use some other callable editor besides EDT, sS ADVANCED `@CUMAR::JOHN_Q_NOTERXXBenefits and applicationsI'll make a note!  a@CVMAR::JOHN_Q_NOTER@XSome terms you should knowI'll make a note! Y4E)pecify:) SET PROFILE/EDITOR=(editor-name,CALL)H Some editors are not "callable" but are separate executable programsI which must be "spawned". If specifying an editor as callable doesn't work, then specify:1 SET PROFILE/EDITOR=(@command-procedure,SPAWN)I If you do this, you will need a .COM file. An example of such a .COMK file can be found in the first reply to this topic. If you create such6 a file in your login directory, you can simply do:4 SET PROFILE/EDITOR=(@SYS$LOGIN:NOTES$EDIT,SPAWN)?C4$ !7$ ! Command procedure to invoke an editor for DEC Notes$ ! $ ! Inputs:$ !$ ! P1 = Input file name.$ ! P2 = Output file name.$ !C$ ! Note that this procedure is run in the context of a subprocess.B$ ! LOGIN.COM is not executed. However, all process logical names&$ ! and DCL global symbols are copied.$ !;$ ! The default directory is the same as the parent process$ !1$ DEFINE /USER SYS$INPUT 'F$TRNLNM("SYS$OUTPUT")'"$ IF P1 .EQS. "" THEN GOTO NOINPUT$ EDIT /TPU /OUTPUT='P2' 'P1'$ EXIT $NOINPUT:$ EDIT /TPU 'P2'$ EXITEK I've just started using DEC Notes and love it, but the keypad-comma key9 (NEXT UNSEEN) always seems to jump to a random place. What am I doing wrong? meeting& with an Access Control List (ACL).8 To continue reading this note, press the RETURN key.t your selection of notesI'll make a note!CF Ah, but the HELP text describes this fairly well -- have you tried< looking at the on-line help? (Notes> HELP NEXT UNSEEN). To paraphrase:2 NEXT UNSEEN (or keypad-comma) has two effects:; (1) It marks the remaining replies as having been 'seen',; 9so you needn't look at 'em. This is quite handy when= you want to skip over the 47 replies about Sonny & Cher trivia.; (2) It reads some note you never read before. Of all the; 9notes (topics or replies) you never saw, it reads the= xone that was written first (time-wise). This change in; context can be disconcerting, but it helps keep track rof what's being said.D It's a way to say "Well, what else is new?". I hope this helps! - John QEC:' You can also use the key --F If you're reading a note and see the "# more lines" message at the- bottom, it'll display the next screenful.F Otherwise, if there are more replies in the discussion, it'll read the next one./ Otherwise, it reads the 'NEXT UNSEEN' note.cEH This discussion gives you a chance to add a reply. Simply enter the& REPLY command, and type your text. You can write about  - yourself - a joke - the weather - ???F After you've finished composing your reply, press CTRL/Z to finish( adding your reply to the conference. -- John QEJ The DIRECTORY command shows a directory of the topics in a conference.I While you are in a conference, you can issue the DIRECTORY command atF any time. The directory shows you the topic number, who wrote the* topic and when, and the topic's title.H The DIRECTORY/ALL command tells DEC Notes you want to include in theG directory the replies to each topic. Replies can also have titles.F Although the use of titles on replies is optional, there is a goodJ reason for using them. When all notes in a discussion have meaningfulK titles, you can use the DIRECTORY/ALL command to get a quick summary of a discussion.. To get a summary of this discussion, type: DIR/ALL 5CK Some commands allow you to specify a range of notes. You can limit the: range to topics only, or include replies in the range.J To list topics only, use whole numbers in the note range. Do NOT typeJ a perio1Je$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$SAMPLE.NOTE;1"lS"d after either the starting or ending topic number. To includeJ replies, you can use the /ALL qualifier or the wildcard character (*).H Here is a quick review of the ways you can specify a range of notes:; Description of range Example; -( -"7 A topic and all its replies  9.*9 A range of topics only 10-39< All topics %3* or ALL; A range of topics, including replies )1.*-5.*7 All notes in the conference *.*otesI'll make a note!OCI The DIRECTORY command has several qualifiers which allow you to limitK the directory listing to those meeting certain criteria. Specifically,( you can see a directory of notes by:3 Criterion Format ExampleH - - -> Author /AUTHOR=username 9DIR/AUTHOR=TRACY 10-50< Title /TITLE="string" >DIR/TITLE="FIXED" *.*G Date-time /BEFORE=date-time DIR/BEFORE=01-MAR:08:00 99-1C /SINCE=date-time DIR/SINCE=YESTERDAY *.*C Keyword /KEYWORD=keyword :DIR/KEYWORD=PAPER 2.*-20.*? Not yet seen /UNSEEN DIR/UNSEEN 100-LASTK You can use these qualifiers alone or in combination to get a directoryG of just the notes you are interested in seeing. You do not have toI manually search the entire directory for notes you ar#Ce interested in.C I The PRINT and SAVE commands have the same qualifiers as the DIRECTORYE command for limiting the notes to be printed or stored in a file, respectively.J For example, if you want print all the notes in the conference writtenD by FLOYD that have the word "pink" in the title, you would type:' PRINT/TITLE="PINK"/AUTHOR=FLOYD *.*J You could save all the notes with the keyword PIGS and store the notes+ in a file called ANIMALS.TXT by typing:! SAVE/KEYWORD=PIGS ANIMALS *.*ing your reply to the conference. -- John Q&EG Here are some suggestions for things to include in the introductoryK note when you create your own conference. These are just guidelines --A not all of these items will be relevant for every conference.= =o Restrictions on topics -- the scope of the conference5 5o The type of contributions allowed or expectedH Ho How active the moderator(s) will be, and what they will be doing$ $o Restrictions on access hoursH Fo Keywords that have been created by the moderator(s) and how they Zshould be usedE o Pointers to write-protected topics that are for participants'D ?information only (for example, a topic set aside to hold theL Iconference directory, which the moderator updates from time to time)K o The rationale for the selection of members for a private conferenceG o A suggestion that participants read the section on etiquette in the docuWEmentation: 9o Related conferences that might also be of interesttopic number. To includeJ replies, you can use the /ALL qualifier or the wildcard character (*).H Here is a quick review of the ways you can specify a range of notes:; Description of range Example; -( -"7 A topic and all its replies  9.*9 A range of topics only 10-39< All topics %3* or ALL; A range of topics, including replies )1.*-5.*7 All notes in the conference *.*otesI'll make a note!"EG While communicating by computer has many advantages, there are some drawbacks:F o Nonverbal cues (such as facial expression, intonation, and bodyB language) that enhance face-to-face discussion are missing.I o Reading takes longer than listening, and reading a terminal screen2 ufor long periods of time may become tiring.C o Most terminal screens lack the ability to visually emphasize9 Jinformation or to express information graphically.G This discussion is an excerpt from the section "Hints for ImprovingK Computer-Mediated Communication" in Chapter 3 of the Guide to DEC NotesK Manual. This series of notes gives you some hints for making sure your- notes communicate your ideas effectively.CJ Here are some suggestions for improving the readability of your notes:5 o Use correct spelling, grammar, and punctuation/ o Use both uppercase and lowercase letters: o Use narrow line width (about 65 characters maximum)5 o Make paragraphs about five to seven lines long2 o Keep the overall length of your notes shortE o Use visual aids (like bulleted lists, hyphens for underlining)' PRINT/TITLE="PINK"/AUTHOR=FLOYD *.*J You could save all the notes with the keyword PIGS and store the notes+ in a file called ANIMALS.TXT by typing:! SAVE/KEYWORD=PIGS ANIMALS *.*ing your reply to the conference. -- John Q"%"C}K Make an effort to word topic and reply titles carefully. Remember thatE these titles appear in directory listings and provide a means forK participants to locate your note among scores or possibly hundreds in aI conference. Curiosity aroused by cryptic titles may catch some cats,I but most people will be just as happy to skip a note as to ponder the 7meaning of an obscure title.G DEC Notes lets you create titles of up to 63 characters. (CreativeJ writers can fit a complete story in that much space!) It is advisableK to be brief, but never sacrifice clarity for brevity. The title should' describe the contents of your note.I Of course, participants can agree on conventions to be used in titlesB to facilitate gathering notes by title (for example, acronyms,K abbreviations, or uncommon words can be used as codes to identify notesH dealing with a particular topic), but unle"Css such agreement has beenK made, it is best to write titles that are easily understood and reflect the content of your note.aracter (*).H Here is a quick review of the ways you can specify a range of notes:; Description of range Example; -( -"7 A topic and all its replies  9.*9 A range of topics only 10-39< All topics %3* or ALL; A range of topics, including replies )1.*-5.*7 All notes in the conference *.*otesI'll make a note!%(%C" Facial Expression -K One of the greatest difficulties when communicating by computer is thatE you often cannot tell if the author of a note is serious, joking,K angry, or being sarcastic because you cannot see the author's face. AsI a result, users of computer-based conferencing systems have developed, patterns to represent facial expression.H Some examples of patterns are presented here for your consideration,H but you should enjoy creating some of your own. These patterns wereG created using the colon (:), semicolon (;), hyphen (-), opening andJ closing parentheses, the vertical bar (|), right brace (}), slash (/), and the tilde (~).# :-) Joking or sarcastic face :-} Fiendish grin ;-) A wink :-( Sad or angry face +|-( Late night Intonation - 0F Use all uppercase letters for when you wo Use both uppercase and lowercase letters: o Use narrow line width (about 65 characters maximum)5 o Make paragraphs about five to seven lines long2 o Keep the overall length of your notes shortE o Use visual aids (like bulleted lists, hyphens for underlining)' PRINT/TITLE="PINK"/AUTHOR=FLOYD *.*J You could save all the notes with the keyword PIGS and store the notes+ in a file called ANIMALS.TXT by typing:! SAVE/KEYWORD=PIGS ANIMALS *.*ing your reply to the conference. -- John Q(+(Cant to SHOUT in your note.G Surround with asterisks a word you want to emphasize (like *this*). Emotion -3H A conversation that lacks emotion lacks vitality. While most peopleH cannot begin to conceal their emotions in a meeting, they can easilyH create notes that are carefully controlled, reserved, even dull. DoK not be afraid to rant, protest, or pontificate in your notes -- just beF considerate enough to warn people that yz$ NOTES026.Af "[NOTES.TEMPKIT]NOTES$SAMPLE.NOTE;1"lN_")ou are about to express an! angry or unsolicited opinion.J One way of signaling the boundaries of a tirade in your text is to useK some symbol, word, or expression before and after the text in question.I For example, you could surround an online rampage with and .E Using this technique, you provide a socially acceptable emotionalI outlet for participants who might otherwise be discouraged from using= DEC Notes(C for fear of being misunderstood or unloved, andG simultaneously spare participants who have better things to do than, continually indulge chronic complainers.uick review of the ways you can specify a range of notes:; Description of range Example; -( -"7 A topic and all its replies  9.*9 A range of topics only 10-39< All topics %3* or ALL; A range of topics, including replies )1.*-5.*7 All notes in the conference *.*otesI'll make a note!+C.+CJ Keep in mind that people have jobs to do, and that DEC Notes is a toolG to help them do their jobs better. For the sake of courtesy, it isF better to use MAIL instead of DEC Notes for the following types of communication:. o "Whispering" and other private messages o "Thank you" messages* o Requests intended for the moderator% o Conference relocation messages+s CK To be considered a courteous participant in a DEC Notes conference, you4 should observe the following "online etiquette". Clean Up After Yourself -H If you accidentally add a blank or garbled note to a conference, you? should delete the note and try again. (The note may not be. intelligible, but your user name will be.)) Maintain the Thread of the Discussion) -$}K You should read the topic of a discussion before you add a reply. WhenH replies address other replies, without regard for the topic at hand,K the discussion can get off the track. If, after reading the topic, youI realize your reply would be off the subject, you can alter your reply or start a new topic.$ Accurately Represent Other Notes$ -BI Providing a direct quote can help your readers better undeyword PIGS and store the notes+ in a file called ANIMALS.TXT by typing:! SAVE/KEYWORD=PIGS ANIMALS *.*ing your reply to the conference. -- John Q.1.; C0rstand yourA comments, and is a courtesy to the author of the note you areI answering. Quoting the author directly preserves the accuracy of hisJ or her comments. Unless you are certain you can paraphrase and retainA the original meaning, quoting can be safer as well as easier.. EI It is possible to define additional keys for use at the NOTES prompt,F and when in NOTES' built-in editors. The following can serve as a guide.K To use NOTES$COMMAND, create a file with the TPU define_key statements,J similar to below. Then DEFINE the logical name NOTES$COMMAND to pointD to the file. NOTES will process the commands when it starts up. !! Keys in notes!!/! Define the following keys at the notes prompt!!! gold ? Go to the message buffer! ctrl/n Go into EVE:! ctrl/d Do a directory of the current conference from the! end to the beginning"! pf3 Close the current conference!7define_key ("notes$do_command ('EVE BUFFER MESSAGES')",< key_name ('?', shift_key), "msg buf", notes$kt_user_keys);3define_key ("notes$do_command ('EVE')", ctrl_n_key, "EVE", notes$kt_user_keys);:define_key ("notes$do_command ('DIR LAST-1')", ctrl_d_key, "DIR", notes$kt_user_keys); and all its replies  9.*9 A range of topics only 10-39< All topics %3* or ALL; A range of topics, including replies )1.*-5.*7 All notes in the conference *.*otesI'll make a note!141 ELdefine_key ("notes$do_command ('CLOSE')", pf3, "close", notes$kt_user_keys);!! Keys in the editor!2! Define the following keys in the built-in editor!! ctrl/n Go back to NOTES9! ctrl/p Switch to the other window if two windows are on ! the screen+! gold 1 Make only one window on the screen'! gold 2 Make two windows on the screen@! gold b Prompts for a buffer name, then switches to that buffer>! gold i Prompts for a file to include at the current position$! gold f Fills the current paragraph E3 ("eve_two_windows", key_name ('2', shift_key),$ "two windows", eve$x_user_keys);Bdefine_key ("eve_buffer (eve$kt_null)", key_name ('b', shift_key), "buffer", eve$x_user_keys);Hdefine_key ("eve_include_file (eve$kt_null)", key_name ('i', shift_key),% "include file", eve$x_user_keys); has 3 replies, the replies are numbered 4.1, 4.2, and 4.3.= CF To read a specific note, type the number of the note at the Notes>7 prompt. For example, to read the next reply, type: Notes> .4= CI The keys on the keypad help you navigate through a conference. PressH PF2 to see the layout of the DEC Notes keypad. A picture of the DECG Notes keypad appears in Chapter 1 of the Guide to DEC Notes Manual.K To skip the rest of this note and read the next reply, press the number 3 on the keypad. ' Why did the chicken cross the road? To get to the other side!4 (You should have skipped the rest of this note!)= CzG To skip the rest of this discussion, and see the topic for the next' discussion, press the keypad 2 key.our reply to the conference. -- John Q@@s ChK See, you should have pressed keypad 2. There is nothing interesting in this reply!@BC7+ There is nothing in this reply, either.TES/PROT=(W=NONE) -7 /ACL=(IDENT=[NOTES$SERVER], ACCESS=READ+WRITE+EXECUTE)K Note that if you protect conferences this way, you must ensure that allI references to your local system specify the nodename or use 0::. ForK instance, if you are on node BOOK::, then you must always use DIRECTORY5 /CONFERENCE BOOK, and ADD ENTRY BOOK::conference.K The command procedure SYS$MANAGER:NOTES$MOVE_CONFERENCE.COM may be usedK by the system manager to copy notefiles to the NOTES$LIBRARY directory.J In addition to copying the file, it will add an ACL for the conference moderator, if specified.:q CfJ There are many benefits to holding online conferences: decision-makingD is improved; participants can productively enter a meeting afterD organizing ideas; many discussions can take place simultaneouslyC without the confusion that results in traditional meetings; and? immediate printed records of the proceedings are available.G Some possible ways to use DEC Notes include: recording ideas duringI product design and development; conducting employee attitude surveys;J holding board meetings; and providing a forum for information exchange (like a bulletin board.)rence *.*otesI'll make a note!CH j@E_ MAR::NEW_USER 'o$Help! I don't understand NEXT UNSEENFirst time noter c@CXMAR::JOHN_Q_NOTER@9/pA description of NEXT UNSEENI'll make a note! i@C^MAR::JOHN_Q_NOTER@H\p"One-key reading with the ENTER keyI'll make a note!  j@E_MAR::JOHN_Q_NOTERKp%Who Are You? - Tell us about yourselfI'll make a note! w@ElMAR::JOHN_Q_NOTER9q,Using the DIRECTORY, PRINT and SAVE commandsI'll make a note!j @C_MAR::JOHN_Q_NOTER\XJq#Notation for specifying note rangesI'll make a note!l @CaMAR::JOHN_Q_NOTER`Ӭq%Ways to limit your selection of notesI'll make a note!FIF}  ("eve_two_windows", key_name ('2', shift_key),$ "two windows", eve$x_user_keys);Bdefine_key ("eve_buffer (eve$kt_null)", key_name ('b', shift_key), "buffer", eve$x_user_keys);Hdefine_key ("eve_include_file (eve$kt_null)", key_name ('i', shift_key),% "include file", eve$x_user_keys); #endif #endif /* _XmTraversalI_h */ j%$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T**[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1+, f.T/J 4TD- 0123 KPWOD56G ģ7Klģ89GJHJ dh* 0C0w] ģ NOTES$SECTIONT2.605-00$ PG ģ NOTES$SECTIONT2.6DDECTPU V3.1 1992-10-14 04:07kXu!SCREEN_UPDATERDECTPU V3.1 1992-10-14 04:07jlI4l ( 0ThX({EVE$$K_BUFFER_ATTR_MODIFIABLE(GEVE$$K_RULED_STATUS_UNDERLINE$ EVE$$SUB_CONDITIONAL_COMPILE$AEVE$$K_PENDING_DELETE_ACTIVE$oEVE$$K_GLOBAL_ATTR_TAB_MODE$FEVE$$K_RULED_STATUS_REVERSE$EVE$K_ACTION_INCLUDE_FILE$?EVE$$K_LEADING_WHITESPACE$dEVE$$K_REPLACE_SAVED_MODE EVE$K_ACTION_CHANGE_CASE EVE$$CONDITIONAL_COMPILE [EVE$$K_REPEAT_FIND_RANGE IEVE$$K_SELECT_ALL_ACTIVE EVE$K_ACTION_USER_MOUSE EVE$K_ACTION_SPLIT_LINE EVE$K_ACTION_SHORT_MOVE EVE$$K_RESTORE_SENTENCE 5EVE$$K_AMBIGUOUS_PARSE 9EVE$$K_FIND_WHITESPACE WEVE$$K_HIGHLIGHT_RANGE EVE$K_ACTION_PAGINATE EVE$DEFINED_PROCEDURE KEVE$$K_WPS_LOWER_CASE JEVE$$K_WINDOWS_ACTIVE LEVE$$K_WPS_UPPER_CASETEVE$$K_FOUND_REVERSE]EVE$$K_REPLACE_RANGE;EVE$$K_IN_INIT_FILEUEVE$$K_REPLACE_HEREEVE$$K_RESTORE_LINEEVE$K_ACTION_PASTE:EVE$$K_HELP_ACTIVEEVE$X_OPTION_2BYTE-EVE$$K_WIDGET_BASE)EVE$K_HELP_INVOKEEVE$$K_SAVE_FILE+EVE$$K_TYPE_CODEEVE$$K_REPLACE EVE$$K_PASTE EVE$$REQUIRE(BEVE$$K_PENDING_DELETE_ENABLED$qEVE$$K_GLOBAL_ATTR_CLIPBOARD$EVE$$K_FOUND_POST_FILTER_ID$EVE$$K_QUICK_POST_FILTER_ID$HEVE$$K_RULER_MARGIN_CHANGED$uEVE$$K_GLOBAL_ATTR_BOX_PAD$EVE$$K_CMD_POST_FILTER_ID EVE$$K_CMD_PRE_FILTER_ID EVE$K_INVOKED_BY_COMMAND EEVE$$K_RULED_STATUS_BOLDSEVE$$K_FOUND_FORWARDEVE$$K_FIND_SELECTEDEVE$$K_OPEN_SELECTEDEVE$$K_WILDCARD_FINDEVE$$K_RESTORE_WORD6EVE$$K_CLIPBOARD EVE$$K_FINDl EVE$$BUILD(EVE$$K_REPLACE_GO_EACH_DIALOG$EVE$$K_WILDCARD_FIND_DIALOG$rEVE$$K_GLOBAL_ATTR_PENDING$EVE$$K_REPLACE_EACH_DIALOG$EVE$$K_SAVE_FILE_AS_DIALOG$EVE$$K_SET_MARGINS_DIALOG 7EVE$$K_COMMAND_LINE_FLAG EVE$$K_OPENBUFFER_DIALOG =EVE$$K_IS_QUOTED_STRING QEVE$$K_REPLACE_ASKING EVE$$K_REPLACE_DIALOG $EVE$K_ASYNC_PROMPTINGEVE$K_ACTION_M1DRAGEVE$K_ACTION_M3DRAGEVE$$K_EXIT_DIALOGEVE$$K_FIND_DIALOGCEVE$$K_PROMPT_FLAGEVE$$K_NEW_DIALOG EVE$K_WARNING(EVE$K_HELP_TOPIC EVE$BUILD_SYNONYM$EVE$$K_REPLACE_GO_EACH_LABEL$EVE$$K_WILDCARD_FIND_CANCEL$EVE$$K_SAVE_FILE_AS_CANCEL$EVE$$K_WILDCARD_FIND_LABEL$EVE$K_ACTION_ERASE_TO_BOL$EVE$$K_REPLACE_EACH_LABEL$EVE$$K_SET_MARGINS_LLABEL$EVE$$K_SET_MARGINS_RLABEL$EVE$$K_SAVE_FILE_AS_LABEL EVE$$K_OPENBUFFER_CANCEL EVE$$K_REPLACE_NEW_LABEL EVE$$K_REPLACE_OLD_LABEL NEVE$$K_FIND_DIACRITICAL EVE$$K_OPENBUFFER_LABEL EVE$$K_REPLACE_EACH_ALL EVE$$K_REPLACE_CANCEL"EVE$K_INFORMATIONALEVE$K_ACTION_SPELLEVE$$K_EXIT_CANCELEVE$$K_FIND_CANCELEVE$$K_INCLUDE_FILEVE$$K_REPLACE_ALLEVE$$K_EXIT_LABELEVE$$K_FIND_LABELEVE$$K_NEW_CANCELEVE$$K_SELECT_ALL>EVE$$K_IS_SYMBOLEVE$$K_NEW_LABEL\# EVE$K_FATAL$EVE$$K_REPLACE_GO_EACH_NO$EVE$$K_REPLACE_EACH_NO(EVE$K_ACTION_M1CLICK_SELECTION(bEVE$$K_REPLACE_SAVED_DIRECTION(EVE$$K_INCLUDE_FILE_SELECTION$vEVE$$K_GLOBAL_ATTR_SCROLL_ON$EVE$K_ACTION_M1UP_SELECTION$EVE$K_ACTION_M3UP_SELECTION$EVE$K_ACTION_MOVE_BY_SCREEN$EVE$$K_OPEN_FILE_SELECTION EVE$$K_RESTORE_SELECTION EVE$K_ACTION_REPOSITION EVE$K_ACTION_SELECTION YEVE$$K_OTHER_DIRECTION \EVE$$K_REPLACE_ACTIONEVE$K_ACTION_M1DOWNEVE$K_ACTION_M3DOWN EVE$$K_OPEN EVE$VERSION(EVE$$K_BUFFER_ATTR_ARRAY_LENGTH(xEVE$$K_GLOBAL_ATTR_ARRAY_LENGTH$mEVE$$K_REPLACE_ARRAY_LENGTH$pEVE$$K_GLOBAL_ATTR_SEARCH@PEVE$$K_STATE_ARRAY_LENGTH$EVE$$K_REPLACE_GO_EACH_OK$cEVE$$K_REPLACE_SAVED_MARK$DEVE$$K_RULED_STATUS_BLINK kEVE$$K_REPLACE_TEMP_MARK OEVE$$K_SAVED_RESIZE_MARK EVE$K_ACTION_PAGE_BREAK EVE$$K_WILDCARD_FIND_OK EVE$$K_REPLACE_EACH_OK EVE$$K_SAVE_FILE_AS_OKEVE$$K_OPENBUFFER_OKEVE$$K_REPLACE_OKEVE$$K_EXIT_OKEVE$$K_FIND_OK EVE$$K_NEW_OKpEVE$K_INVOKED_BY_MENU(tEVE$$K_GLOBAL_ATTR_BOX_SELECT$`EVE$$K_LOWERCASE_REPLACEMENT$aEVE$$K_UPPERCASE_REPLACEMENT$EVE$K_ACTION_ERASE_TO_RIGHT$eEVE$$K_REPLACE_SEARCH_EXACT$fEVE$$K_SWITCHED_PIVOT_POINT$4EVE$$K_BUFFER_ATTR_CONTEXT$EVE$K_ACTION_ERASE_TO_LEFT$_EVE$$K_CAPITAL_REPLACEMENT$REVE$$K_ERASING_PIVOT_POINT$2EVE$$K_GLOBAL_ATTR_CONTEXT$EVE$CONSTANTS_MODULE_IDENT$zEVE$$K_BUFFER_PARA_INDENT$%EVE$$K_MINIMUM_CCT_HEIGHT$EVE$CONSTANTS_MODULE_INIT$EVE$$K_SET_MARGINS_L_TEXT$EVE$$K_SET_MARGINS_R_TEXT$EVE$$K_WILDCARD_FIND_TEXT EVE$OPTIONS_MODULE_IDENT EVE$$K_REPLACE_EACH_QUIT EVE$$K_REPLACE_EACH_LAST EVE$$K_REPLACE_EACH_TEXT VEVE$$K_REPLACE_HOW_EXACT EVE$$K_SAVE_FILE_AS_TEXT EVE$K_ACTION_DOWN_RIGHT EVE$OPTIONS_MODULE_INIT iEVE$$K_LOWERCASE_TARGET EVE$$K_REPLACE_NEW_TEXT EVE$$K_REPLACE_OLD_TEXT jEVE$$K_UPPERCASE_TARGET EVE$INSERT_OPTION_LIST MEVE$$K_FIND_CASE_EXACT EVE$BUILD_MODULE_IDENT EVE$$K_OPENBUFFER_TEXT /EVE$$K_REPLACE_CONTEXT ~EVE$$K_BUFFER_TABS_AT EVE$K_ACTION_ADD_TEXT hEVE$$K_CAPITAL_TARGET EVE$BUILD_MODULE_INIT gEVE$$K_REPLACE_TARGET 3EVE$$K_SELECT_CONTEXT .EVE$$K_WINDOW_CONTEXTEVE$K_ACTION_UP_LEFT0EVE$$K_STATE_CONTEXT}EVE$$K_BUFFER_RIGHTEVE$K_ACTION_REPEATEVE$K_ACTION_FORMAT*EVE$K_HELP_ARG_LIST1EVE$$K_EXIT_CONTEXTyEVE$$K_BUFFER_LEFTZEVE$$K_PIVOT_POINT^EVE$$K_REPLACEMENTEVE$$OPTIONS_INITEVE$K_ACTION_CUTEVE$$K_FIND_NEXTEVE$$K_FIND_TEXTEVE$$K_NEW_TEXT EVE$$K_EXIT EVE$$K_QUIT EVE$$K_CUT EVE$K_ACTION_NEW_WINDOW EVE$$K_NEWEVE$$K_WILDCARD_FIND_LABEL1(wEVE$$K_GLOBAL_ATTR_SCROLL_JUMPEVE$X_OPTION_KEYHELPXEVE$$K_BUFFER_WRAP( EVE$$X_LIST_CONDITIONAL_COMPILES$XEVE$$K_REPLACE_OCCURRENCES$,EVE$$K_STATE_ARRAY_INDEXES sEVE$$K_GLOBAL_ATTR_TABS EVE$X_OPTION_DECWINDOWS EVE$$K_SET_WILDCARD_VMS EVE$K_ACTION_COMMANDS EVE$$K_SHOW_WILDCARDSEVE$$K_SAVE_FILE_ASEVE$$X_SAVE_CHANGESEVE$X_OPTION_FONTSEVE$$K_SET_MARGINSEVE$$X_SAVE_NAMES  EVE$K_SUCCESS$EVE$K_ACTION_ERASE_CHARACTER$lEVE$$K_REPLACE_THIS_BUFFER$EVE$K_ACTION_WRITE_BUFFER$nEVE$c$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"$K_GLOBAL_ATTR_CURSOR EVE$$K_RESTORE_CHARACTER EVE$K_ACTION_NEW_BUFFER EVE$X_AT_LEAST_TPU_2_2 EVE$X_SYNONYM_BUFFEREVE$CONTEXT_BUFFER<EVE$$K_IS_NUMBERH! EVE$K_ERROR$|EVE$$K_BUFFER_ATTR_READONLY$EVE$INSERT_MODULE_SUMMARY$EVE$$K_SAVE_FILE_AS_APPLY EVE$$K_BUFFER_TABS_EVERY EVE$$K_OPENBUFFER_APPLYEVE$K_INVOKED_BY_KEYEVE$$X_SYNONYM_ARRAYEVE$K_ACTION_MODIFY&EVE$K_HELP_FACILITY EVE$$X_BUILD_ARRAY'EVE$K_HELP_LIBRARYEVE$K_ACTION_COPYEVE$$K_NEW_APPLY EVE$$K_COPY$EVE$$K_SET_WILDCARD_ULTRIX@EVE$$K_MESSAGE_BOXX8EVE$$K_DIALOG_BOX''(L+8/// h1 4: :(HPHlHH0IDI !"#$%&'()*+$,$-$.$/$0$1$2$3$4$5$6$7$8$9$:$;$<$=$> $? $@ $A $B $C$D$E$F$G$H$I$J$K$L$M$N$O$PQRSTUVWXY Z [ \ ] ^_`abcdefghijklmnopqrstuv w x yz{|}~      !"#$%&'$$$$$$$$$ $ $ $ $ $$$$$$$$$$$$$$$$$$$ $!$"$#$$$%$&$'$($)$*$+$,$-$.$/$0$1$2$3$4$5$6$7$8$9$:$;$<$=$>$?$@$A$B$C$D$E$F$G$H$I$J$K$L$M$N$O$P$Q$R$S$T$U$m m EVE$BUILD_MODULE_INIT$TV03-007EVE$BUILD_MODULE_IDENT $P:!o1oZ (uR"h0Rco 1lR   2  8  1 @7$ 287$ 28: eve$x_option_   eon_error return 0 endon_error if get_info (!AS, 'type') = INTEGER then return !AS else return 0 endif aEVE$INSERT_OPTION_LIST OPTION_PREFIX SPACE_INDEX THE_NAMESTHE_NAME THE_LENGTH THE_VALUEh0)(=)+3+-q-h- .P/P13P47$4 5P67$6 7P8P:;! o;;<1x<<Z> >p@@`A(mAuBBRBD1vDDRD"D F FG  HhN"NNP P$Q"Q SPV1lUVRV WZ=` *_module_ident    !15AS  con_error return 0 endon_error if get_info(!AS, 'type') = STRING then return !AS else return 0 endif!15AS ~EVE$INSERT_MODULE_SUMMARYVERSION_PREFIX OPTION_PREFIX SPACE_INDEX THE_NAMESTHE_NAME THE_LENGTH THE_VALUE SAVED_MARK< NOTES T2.6 2004-12-13 17:17 EVE$VERSION EVE$$REQUIRETEMP\T4==(T 3|=uoD L=  ==!%IFIxEVE$$CONDITIONAL_COMPILE THE_BUFFER SAVED_BUFFER SAVED_MARKTEMPX4 $(,z83|uodD  D666=831R( 0uR6:,!;X T6 " 6 6  "Z l6&*"664 " 6!6p$&($%Jx*"3**-.Jx081:33|33S4 4D56667688;;< ,=RT>~ >0? @AA CDRTE+ EP+FFH,II"I6 KtLRTM MHO,PP"P6 R$ S4U UpVRTWN W<XYTZ) Z[ ^P_R]` `$a b8f,gg"g6l: mnnt!%THEN Missing !%THEN!. Unknown symbol in conditional compile: !ASs+ }.H "AY$ jd{l~$fD&G9yB$S+1O$7Z %4bi$ISIGBx*+bëI{0 "9% ~2Q JJqeNNuh70VmW=[ G''vmtR_d7_zpvt:ɠOwLVw5U|fiDpn('E=nMhwl*))Ȣ0,TYI0ZK$QfD0^TuߖR0+#~&.m Z+篴UY|9.ށMԆBň@Ӌ׊]c6ꙡ溶ɕfU JԤk !` 1tTפTSê܎º$N|Ϋɵ{º9*-;rU;&HaK#rgu#7N~:@Sdog@ay;#_%c[Uz<^?S '` i@1xf1i]lc@XF4Ѩz!ݶӕ-DzB{+=..yWi#l-lʥ{yDg8L;zV~K8/1rpqɳŦˍ۲k|1-ZΈłݫ$CY!hg23Iq)]׼^m/oU*.uu*\@,o,CmTEi$owkB[;" A='ZNI"[M|)5f^KG4 cTfkZ<3|!sK7~#x1a.+GQ2B2O; 3 `[hm?{)ǵ{6Hm*k32Sd:>|} @>\?VI* 0=+tX|Qs)3Yp-qpTJ^D~+9@.@; 'fDqjI9A%r`1 ZGjHd$5Ohe_ZrDuuK!T8Oo*vXdf\m#/{tI~+ixa "A0!{ 5)5>lE>ۻ|I6s5nL8o,BG:'b!40AHB 'VE!+.305.m!38V)VQa;r5TGv/T,@duhUoKE*\+HEHŸqi/C=H7!`3T F`'=ql4La0\l%zhqrd2D &fWu5|u\ns}gdGD=|Py&0HX>^1So!Dy/efM˛/~h2\cD8U3gn)ZSfeXSwF&2W+\M Q6g qQ[4.2 :b)i\Pq/rf8edcRj=CZ)%NB@bc{{=&QPFL YHy(Ez@8FY9}Ny}J%4>h@g40hVZieeM'tNخd ,:]+&mq2|tCy cs)s'e >;'5tefF63o{uCCIGr q?ofb9Oi` ;QR1%5mCa*DB5x HN-6_ j;rZ57z0lF] 8q76Qq6HU0 * B89Ia g#-7F8U 2yHt]~8Z{MFDZ!!65^nUb1IlBcMy/`5/I+&Q >YWEHae+sr{0"AT[ X 1q) >"R{!`u>+^Ipd ׎i}$cxL Z_ V}Qn-$LJK t -5% / h(I3q-`%d/%DvJQ#;E䯰s5vtuxsl3CHz2K@zA~Mk=b4;~=` +&,wsx6iJR.45GMgzaiI4L 0KW&_-0-#[cI`3(Z:8Y^ND3E2T7Pl`G &/S* 6*\0co9G=B_ap#M_/ *o(H*I{K_k`Q%An;PwH xDbdtAA+Q=jw|o7 lZOR,oyS;97c}#Iw6PCFd,][OTOwo^MAb7QqM6l-5"sFv V_J4E7-k2 Q,=PSldS\9f5V2NZAy]7½'/sbP} ROS6[4kQb5#5wJxjEhTdDG/[ @>! |#"j?B^\Sb:1W$Q@~|\&C .vᥔPQhL]ORJ ?`]dBXlC"h,8}"u\y!V,lEr:7=5,0O<{zG{Cv0y5'WbAuiBN<c3"e1.)lDnEM*A`3wUX dO6P9i(H=:^2lsAP[#;@w?JxIz:{0idb{qP64!1\4_0*1Gqo=d)8 jOsXVS99s&S+xMH-0>Y&!1&;bn8Wb82s76bnwmdll*'z7\Gͯo>E$A}izE{eYB l+V!0g|SXJgZ8ZP;ۈ;8M5NU1 T-Y&6C5lGhn'1$"Wx@;cO`. 7ojTrF4Rw Jf@A@S,P}i0n\^ .pn`yi.YnmNHqq0G>E)Sj|<plJޛZ; .RrqpH2 &js~NJ=Z)I-n/16Bwc$9*SǁuOo 1TwDQ cHWdl,3M "lyoQeNΘZmb>^nsv$ >cRciɦpTBc ( 8_zH0OW:IY {^}tEk?u@~G rR58d87:1$J# x%e+[IWdijylo%ц "u3w+nhb(;Wi<^D1`Fzg<\',z+$](L=I= 0[$2ZԭE+!=-POvn%xKr7i JbXVXym{It&'[z<#3L [S+>vNnжS^x#&G[X^>! F%(oL5R9 {[ [ 5>ghO{b6>Cj<'bߤ$$b>7\i)u/b0dr5ZVs]Ys8/ 4T_c~]'A?!D"]"fu\#no*^]\+g+"R98) VP~GlPqi0{;[4SXxUpNO"{1qGy kfO<\u0u_yl`F~pyc`}35pqf.lJ,f&ChttKHmګ8-/*w7Nq/E&tjB9|Zcw@;kcA!$> BizX=Zo5M25Íص${>/c%J~EaH3}fE+8lfL|=/+REE,j; .$NnB-ݺw,AYIe *wsvs~Jl]|.afPK MiMttaRKY /u{tD,tm4sc> %<Dn k2rrYKJ+YMmjAYb u{ܖEbJ^Y;!Y_"{f;?JZ9yy]kl,HG a*=NHsZNC&ϲZjh}'Iרu!lG\m6cM/tϾp{bA.<#\6U>בSM1 %@j'9iPK&F`>DJ\&b:BH]Z|z QNP52km*P_+RF0F$Y|y%g dj w2.1[^ޟ =@oI_PXyiӸD2%WHei,yB %k չS;;Aj t2,-َ7Hb L& HGRjGe*{\IKtQI4iMa]Qv4 +I4\fph`'*P@hf% m}/BI v]N^_E6W;d2*Kd0V@5cHgާo!;!DK- 'K %+ e2/:3J1x?J7Eq5_GF6J-< |?>_y}#dBxS?+&b|kv6&eqaw!@n$EOd}!-():>?Xef31;s|s<)SAc6a%o|)%SYBo>9QLG)+Lrj&Ok$4Yd%-闹/vi6U0hM`ݿ)Y`Ee{lo,D!y[x." sd csYPg4rOr!8mR}xl#ait`6ZAGJHnCe22x6@_?u.!IOANunk`3^X,//>>(P93G% #T?:W S$#'uޏhH͵@zxBRPF G+EGjhblM!Glߢ l ӆb|L1-2u b1/ZCZ=,v@mg=7x\fucsByڤHyN#c\-5qgqwo-XzA\6B\H)F_~#y/qVos#_{ HX^v[=&NJ5Pi_&.Q7,>i<'Z<%&f}9<Һ4 Y XgBvM!Zc612ZDžb6G(Z.J%n:Ww/yK#-7 Y~T`yQw~1"|e>x%pFqO \dsQ[aS'I^1 8P< hTys/{y\vu[o?Km9Z~6oO̚LYXt}"b:B 9ytd3Ev1 "*pv(_bDዯ !̆"Y=eLd0afnYGTIyc8B&`U*uopEBC sT@GNV1 i"^/Ij"i0nH~wW%#WOob~tO[0V JDsoS|&'aEB f&5))oPgK5jDjP9}, F*;J]7O*I=X&Bq?#G=K0r8U^v^"TiJY'5 Hi60A4:r^{w3x`;j{ Zq8F st=_CK߼:Ŋ&-Pv--dEudc7a2WF;79R@oc=Qj {:drHMnneW2#X'8Y7sXjk.ZaY7'OFT :\9]tY&'Rk'j@D?U#DL5+OJV.3'Wy8LH2-tQra R|FPO'n&*9z:pHss[w*=BG4XBV "@T@cm3u|~%hNEJ!M!(q^ GOKVM[b~ApM)Pl(B 3y ֺ~P.7x6?C" ⤩&]vF{+[9{V. Neɶ8T^Xœ^Zh ŏaoyŰ`ԃل%smBMւȫzݙ4t"l@Ϧ+%b^kVE݅넥R:S)&ʴɼ̪y/* U >qG$!f%y[CLJGxܙٜȡߑ\<)cime34يvs@Vn=iknj5Av{*qkЎ)ѽ֝üɸeƅ噣\=p^|X2 3QތSK[^Ѣ;3g$@&),Uˊɋ=Ȏf:~T 0z3sGV*0ɺ_;Y/i+[욂XH\Prd#?م\b߻8 л7A#vth3_0@P\^ / >NL12)^9}%TO [h Z** Vtp k "66N.VzvbIw@wXW0Y~r9NRMx>@_*it} ~Uίy\;)Ȕ.ةpZ a5tGx.b;*hɌ^U|{jZ=O)d8maVb 4h*a4g- =ejlI}K9^=oP F8{J!;)eJ5H=8'IHY6P a_ )2.f̢wc4O> Fܦ@FVJC1@n"_H,0B# Q s|F]OW ӻ|\b6FS}& \_1By(EW %U]m3{NDe}sd Fx.o2jpۇzjBiXcJ jT}5tMWL(;hd n`8·W(}qt[P o9[ 3o&wce3e:s:P&Da8 %(<\*qe ?W}IZH0Zb2[5|Oh)PQ/as8Dkl}T%4&+&!U?NBc\^cU /za'nE\1Yd/daOse0k>ׯNMENT("ON_SEVERITY")$ NOTES$SERVER_SHUTDOWN }1$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T!l""  O  !O"8" #8l$$Qq$$  %`&( ()xl+jl++Qn++ l-- . / 1P5 6P7 8P9 :P; p== B BC DOGG|HJ JK{lMmlMMQnMM lNN OxP R SPT UPY Y=[[@\Qq\o\m\\ ]  ,^! ;^ ` `Oa lc ^lb Tc(cAd dteQqe"oe"mfofofgQngogmgogg hPukk lt t v vpxoxw qw}owwx(y ydz { } }p-o#~ q~o~ ( tpomo6(T == lpoo6(T ==  u  , H o    , om (T == eve_ '' is not an EVE command.eve_ '!' is already a synonym procedure.eve_eve_SYNONYMS endprocedureprocedure eve_ (;arg,arg)on_error return (FALSE); endon_error; return (eve_ (,arg)); endprocedure;eve$arg_  eve$arg_ := eve$arg_;         '$' is already a synonym for command ''. Command ' ' is already a synonym root, being ignored... }EVE$BUILD_SYNONYM EVE_COMMAND A_SYNONYM CREATE_FLAG THE_COMMAND THE_SYNONYM THE_INDEX THE_BUFFERLAST_PROCEDURE SAVED_WINDOW SAVED_MARK ARG_COUNTA_COMMATEMPTEST_PROCEDUREFOUND_ITTEMP_ARGANY_ARGSMIN_ARGSMAX_ARGS EVE$$BUILDLN$<<V03-002|@&(_M@dA&(^nAACCEFGHL$̵  V03-01444be44u!44v'44D Hd ld8 x$=EVE$$K_GLOBAL_PENDING_DELETE$$EVE$$K_SET_FIND_NOWHITESPACE$YEVE$$K_REALLYDELBUF_DELETE$#EVE$$K_SET_FIND_WHITESPACE$ZEVE$$K_REALLYDELBUF_WRITE /EVE$$K_BUFFER_MODIFIABLE LEVE$$K_SAVE_EXTENDED_EVE EVE$$K_WRITE_THEN_DELETE KEVE$$K_EXECUTE_EVE_FILE :EVE$$K_GLOBAL_TAB_MODE EVE$$K_ATTR_DONT_SAVE EVE$$K_EXTMENU_DELETE EVE$$K_EXTMENU_REMOVEJEVE$$K_SET_INTERFACEEVE$$K_CENTER_LINEEVE$K_NSLIDER_SIZEOEVE$$K_EXTEND_EVEEVE$$K_FILL_RANGEEVE$K_NMIN_VALUEEVE$K_NMAX_VALUE EVE$$K_PAGINATE EVE$K_NVALUE <EVE$$K_GLOBAL_CLIPBOARD EVE$$K_CAPITALIZE_WORD EVE$$K_GLOBAL_BOX_PAD EVE$$K_LOWERCASE_WORD EVE$$K_UPPERCASE_WORDEVE$$K_ATTR_COMMANDEVE$$K_EXTMENU_ADDSEVE$$K_HELP_KEYPADIEVE$$K_SET_KEYPAD(EVE$$K_SET_PARA_INDENT_DIALOG(bEVE$$K_WRITEFILEPROMPT_DIALOG$\EVE$$K_WRITEDELPROMPT_DIALOG$zEVE$$K_SAVE_EXTENDED_DIALOG$gEVE$$K_NEEDFILENAME_DIALOG$WEVE$$K_REALLYDELBUF_DIALOG$EVE$$K_SPLIT_WINDOW_DIALOG$EVE$$K_AT_EVE_FILE_DIALOG aEVE$$K_REALLYQUIT_DIALOG pEVE$$K_FIND_EACH_DIALOG EVE$$K_SET_WIDTH_DIALOG lEVE$$K_WRITEBUF_DIALOG EVE$$K_EXTMENU_DIALOG EVE$$K_MESSAGE_DIALOG&EVE$$K_BUFFER_DIALOGtEVE$$K_EXTEND_DIALOG7EVE$$K_GLOBAL_DIALOGEVE$$K_ATTR_DIALOGEVE$$K_GOTO_DIALOGEVE$$K_HELP_DIALOGEVE$$K_MARK_DIALOGEVE$$K_SCROLL_OFF EVE$K_NSCROLL_PAGE_INCEVE$K_NSCROLL_INCEVE$$K_ATTR_SUBFORM(,EVE$$K_BUFFER_PARA_INDENT_LABEL()EVE$$K_BUF_RIGHT_MARGIN_LABEL(EVE$$K_EXTMENU_CONTENTS_LABEL(EVE$$K_EXTMENU_LIST_CMD_LABEL( EVE$$K_SET_PARA_INDENT_CANCEL(fEVE$$K_WRITEFILEPROMPT_CANCEL$(EVE$$K_BUF_LEFT_MARGIN_LABEL$EVE$$K_EXTMENU_COMMAND_LABEL$EVE$$K_SET_PARA_INDENT_LABEL$cEVE$$K_WRITEFILEPROMPT_LABEL$`EVE$$K_WRITEDELPROMPT_CANCEL$EVE$$K_SAVE_EXTENDED_CANCEL$]EVE$$K_WRITEDELPROMPT_LABEL$EVE$$K_EXTMENU_LABEL_LABEL$EVE$$K_EXTMENU_POPUP_LABEL$kEVE$$K_NEEDFILENAME_CANCEL$ EVE$$K_SPLIT_WINDOW_CANCEL${EVE$$K_SAVE_EXTENDED_LABEL$EVE$$K_AT_EVE_FILE_CANCEL$hEVE$$K_NEEDFILENAME_LABEL$XEVE$$K_REALLYDELBUF_LABEL$EVE$$K_SET_MARGINS_CANCEL$EVE$$K_SPLIT_WINDOW_LABEL EVE$$K_AT_EVE_FILE_LABEL EVE$$K_SCROLL_JUMP_LABEL sEVE$$K_FIND_EACH_CANCEL EVE$$K_SET_WIDTH_CANCEL qEVE$$K_FIND_EACH_LABEL EVE$$K_SCROLL_ON_LABEL EVE$$K_SET_WIDTH_LABEL oEVE$$K_WRITEBUF_CANCEL BEVE$$K_TAB_MODE_LABEL mEVE$$K_WRITEBUF_LABEL5EVE$$K_BUFFER_CANCELyEVE$$K_EXTEND_CANCEL?EVE$$K_GLOBAL_CANCEL'EVE$$K_BUFFER_LABEL@EVE$$K_CURSOR_LABELuEVE$$K_EXTEND_LABELCEVE$$K_SEARCH_LABELEVE$$K_ATTR_CANCELEVE$$K_GOTO_CANCELEVE$$K_MARK_CANCELMEVE$$K_EXTEND_ALLEVE$$K_GOTO_LABELEVE$$K_MARK_LABELAEVE$$K_TABS_LABELp EVE$K_NLABEL\ EVE$$K_GOTO$EVE$$K_CUSTOMIZE_PULLDOWN EVE$$K_DISPLAY_PULLDOWN EVE$$K_GLOBAL_SCROLL_ON EVE$$K_FORMAT_PULLDOWN EVE$$K_SEARCH_PULLDOWNEVE$$K_EDIT_PULLDOWNEVE$$K_FILE_PULLDOWNEVE$$K_HELP_PULLDOWNEVE$$K_ATTR_SECTIONEVE$$K_SCROLL_ONP EVE$$K_LEARN EVE$$K_FILL_PARAGRAPH;EVE$$K_GLOBAL_SEARCHEVE$$K_SCROLL_SMOOTHEVE$$K_SET_WIDTH EVE$K_NWIDTH$EVE$$K_SET_PARA_INDENT_OK$eEVE$$K_WRITEFILEPROMPT_OK _EVE$$K_WRITEDELPROMPT_OK }EVE$$K_SAVE_EXTENDED_OK jEVE$$K_NEEDFILENAME_OK EVE$$K_SPLIT_WINDOW_OK EVE$$K_AT_EVE_FILE_OK EVE$$K_SET_MARGINS_OKEVE$$K_SET_WIDTH_OKnEVE$$K_WRITEBUF_OKEVE$$K_MESSAGE_OK4EVE$$K_BUFFER_OKwEVE$$K_EXTEND_OK>EVE$$K_GLOBAL_OKEVE$$K_ATTR_OKEVE$K_NDIRMASKEVE$$K_GOTO_OKEVE$$K_MARK_OK EVE$$K_MARK(EVE$$K_EXTMENU_USER_HINT_LABEL4(-EVE$$K_BUFFER_PARA_INDENT_TEXT$+EVE$$K_BUF_RIGHT_MARGIN_TEXT$EVE$$K_SEARCH_ATTR_PULLRIGHT$3EVE$$K_BUFFER_SET_TABS_TEXT$*EVE$$K_BUF_LEFT_MARGIN_TEXT$EVE$$K_EXTMENU_COMMAND_TEXT$EVE$$K_SET_PARA_INDENT_TEXT$EVE$$K_WHITESPACE_PULLRIGHT$dEVE$$K_WRITEFILEPROMPT_TEXT$EVE$$K_SET_PARAGRAF_INDENT$^EVE$$K_WRITEDELPROMPT_TEXT$1EVE$$K_BUFFER_SET_TABS_AT$EVE$$K_EXTMENU_LABEL_TEXT$|EVE$$K_SAVE_EXTENDED_TEXT$EVE$$K_WILDCARD_PULLRIGHT EVE$$K_CURRENT_ATTR_LIST EVE$$K_GLOBAL_BOX_SELECT iEVE$$K_NEEDFILENAME_TEXT [EVE$$K_REALLYDELBUF_QUIT EVE$$K_RESTORE_PULLRIGHT EVE$$K_SPLIT_WINDOW_TEXT EVE$$K_AT_EVE_FILE_TEXT EVE$$K_EXTEND_PULLRIGHT EVE$$K_HELP_ON_CONTEXT EVE$$K_CASE_PULLRIGHT EVE$$K_SET_WIDTH_TEXTGEVE$$K_TAB_MOVEMENTvEVE$$K_EXTEND_TEXTVEVE$$K_HELP_ABOUTHEVE$$K_TAB_INSERTEVE$$K_GOTO_TEXTEVE$$K_MARK_TEXT EVE$K_NHEIGHT EVE$$K_SELECT EVE$$K_RESETEVE$$K_DELETE_WINDOWEVE$$K_SPLIT_WINDOW!EVE$$K_ONE_WINDOW(EVE$$K_EXTMENU_USER_HINT_LABEL1 EVE$$K_EXTEND_SUBFORM1DEVE$$K_MESSAGE_LABEL1$EVE$;$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T`"3$K_SET_PARA_INDENT_HELP$EVE$$K_WRITEFILEPROMPT_HELP$EVE$$K_GLOBAL_SCROLL_JUMP$EVE$$K_SAVE_EXTENDED_HELP$EVE$$K_SHOW_BUFFERS_POPUP$EVE$$K_WILDCARD_FIND_HELP EVE$$K_NEEDFILENAME_HELP EVE$$K_SPLIT_WINDOW_HELP EVE$$K_SAVE_FILE_AS_HELP EVE$$K_AT_EVE_FILE_HELP .EVE$$K_BUFFER_WORD_WRAP EVE$$K_SET_MARGINS_HELP EVE$$K_NO_SELECT_POPUP EVE$$K_OPENBUFFER_HELP EVE$$K_SET_WIDTH_HELPEVE$$K_EXTMENU_HELPEVE$$K_EXTEND_POPUPEVE$$K_HELP_ON_HELPEVE$$K_REPLACE_HELPEVE$$K_SELECT_POPUPEVE$$K_BUFFER_HELPEVE$$K_EXTEND_HELPEVE$$K_GLOBAL_HELPEVE$$K_SCROLL_JUMPEVE$$K_ATTR_HELPEVE$$K_FIND_HELPEVE$$K_NEW_HELP(EVE$$K_EXTMENU_USER_HINT_LABEL3$EVE$$K_EXTMENU_LIST_COMMANDS$EVE$$K_EXTMENU_LIST_CONTENTS$EVE$$K_EXTMENU_LIST_POPUPS$EVE$$K_SAVE_SYS_ATTRIBUTES EVE$$K_NUMBER_OF_WIDGETS EVE$$K_EXTMENU_DISMISS EVE$$K_EXTEND_SUBFORM3 EVE$$K_SAVE_ATTRIBUTESrEVE$$K_FIND_EACH_YESEVE$$K_SHOW_BUFFERSNEVE$$K_EXTEND_THIS9EVE$$K_GLOBAL_TABSREVE$$K_HELP_TOPICS"EVE$$K_TWO_WINDOWSUEVE$$K_HELP_MENUSFEVE$$K_TAB_SPACESTEVE$$K_HELP_KEYS(EVE$$K_EXTMENU_USER_HINT_LABEL2$EVE$K_NHORIZONTAL_SCROLL_BAR$EVE$K_NVERTICAL_SCROLL_BAR EVE$$K_EXTMENU_SEPARATOR EVE$$K_EXTEND_SUBFORM2 EVE$$K_MESSAGE_LABEL2EVE$$K_DELETE_BUFFEREVE$$K_EXTMENU_ENTER8EVE$$K_GLOBAL_CURSORQEVE$$K_HELP_NEW_USEREEVE$$K_BOUND_CURSOREVE$$K_VISIT_BUFFEREVE$$K_WRITE_BUFFER%EVE$$K_BUFFER_ATTRDEVE$$K_FREE_CURSOR6EVE$$K_GLOBAL_ATTR$2EVE$$K_BUFFER_SET_TABS_EVERY$EVE$$K_SET_PARA_INDENT_APPLY$~EVE$$K_SAVE_EXTENDED_APPLY$EVE$$K_SPLIT_WINDOW_APPLY EVE$$K_AT_EVE_FILE_APPLY EVE$$K_SET_MARGINS_APPLY 0EVE$$K_BUFFER_READONLY EVE$$K_SET_WIDTH_APPLYEVE$$K_BUFFER_APPLYxEVE$$K_EXTEND_APPLYEVE$K_NYxEVE$K_NXV$W$X$Y$Z$[$\$]$^$ _$ `$ a$ b$ c$d$e$f$g$h$i$j$k$l$m$n$o$p$q$r$s$t$u$ v$!w$"x$#y$$z$%{$&|$'}$(~$)$*$+$,$-$.$/$0$1$2$3$4$5$6$7$8$9$:$;$<$=$>$?$@$A$B$C$D$E$F$G$H$I$J$K$L$M$N$O$P$Q$R$S$T$U$V$W$X$Y$Z$[$\$]$^$_$`$a$b$c$d$e$f$g$h$i$j$k$l$m$n$o$p$q$r$s$t$u$v$w$x$y$z${$|$}$~$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $ $ $ $ $$$$$$$$$$$$$$$$$$$ $!$"$#$$$%$&$'$($)$*$+$,$-$.$/$0$1$2$3$4$5$6$7$8$9$:$;$<$=$>$?$@$A$B$C$D$E$F     44Pl P d 4t0 $,"EVE$KT_MODIFIER_DELIMITER_SEQUENCE(MEVE$XRM$K_CRMODIFY_TEXT_VALUE$VEVE$XRM$K_CRCLIPBOARD_DELETE$EVE$GET_COMMAND_WINDOW_SIZE$EVE$GET_MESSAGE_WINDOW_SIZE$EVE$SET_COMMAND_WINDOW_SIZE${EVE$SET_MESSAGE_WINDOW_SIZE$EVE$$X_COMMAND_WINDOW_SIZE$|EVE$$X_MESSAGE_WINDOW_SIZE %EVE$DWT$K_CRVALUE_CHANGE 5EVE$DWT$K_CRCLIP_DELETE EVE$X_DECWINDOWS_ACTIVE EVE$$X_THE_PROMPT_RANGE EVE$$X_DEFAULT_MESSAGEFEVE$XRM$K_CRACTIVATE"EVE$DWT$K_CRACTIVATEOEVE$XRM$K_CREXECUTEEVE$$PENDING_DELETE_EVE$XRM$K_CRRESIZE^EVE$XRM$K_CREXPOSE1EVE$DWT$K_CRCREATE7EVE$DWT$K_CREXPOSEEVE$K_NDIALOGTITLEEVE$CURSOR_IS_FREEEVE$CLEAR_MESSAGElEVE$K_CR_ACTIVATEEVE$K_STATUS_LINE<EVE$XRM$K_CRNONEEVE$PROMPT_LINEEVE$K_NNORESIZEEVE$SET_MESSAGEEVE$X_SEQUENCE EVE$IS_MOUSE EVE$K_NTITLE EVE$KEY_NAME} EVE$MESSAGE4 EVE$$PARSE,"EVE$KT_MODIFIER_DELIMITER_STANDARD$\EVE$XRM$K_CRCOMMAND_ENTERED$]EVE$XRM$K_CRCOMMAND_CHANGED$>EVE$XRM$K_CRVALUE_CHANGED EVE$DWT$K_CRSCROLL_END gEVE$K_CR_VALUE_CHANGED EVE$REMEMBER_TPU_GOLDEVE$RESTORE_TPU_GOLDEVE$MOVE_PROMPT_ENDEVE$SET_KEYPAD_GOLDEVE$X_RECALL_ROUNDEVE$CURRENT_KEYPADEVE$$GET_NEXT_WORDEVE$SET_USER_GOLDEVE$$REMOVE_WORDL EVE$X_KEYPAD WEVE$XRM$K_CRCASCADINGEVE$$PARSE_KEYSTRINGEVE$CLEANSE_STRINGEVE$PROMPT_STRINGEVE$IS_MOUSE_DRAGEEVE$XRM$K_CRDRAGEVE$DWT$K_CRDRAGx EVE$K_NO_ARG rEVE$K_CR_SINGLE_SEL_CONFDEVE$SET_KEYPAD_GOLD_OFFEVE$DWT$K_CRPAGE_DECEVE$DWT$K_CRPAGE_INCEVE$DWT$K_CRUNIT_DECEVE$DWT$K_CRUNIT_INC EVE$K_NDIRSPECEVE$ALPHABETIC$-EVE$DWT$K_CRSNGL_SEL_CONFIRM$/EVE$DWT$K_CREXT_SEL_CONFIRM DEVE$XRM$K_CRTO_BOTTOM EVE$DWT$K_CRTO_BOTTOMHEVE$XRM$K_CRDISARM$EVE$DWT$K_CRDISARMiEVE$K_CR_TO_BOTTOMEVE$GET_HELP_ITEMEVE$TEST_SYNONYMGEVE$XRM$K_CRARM\#EVE$DWT$K_CRARM,EVE$DWT$K_CRSNGL_SEL.EVE$DWT$K_CREXT_SELqEVE$K_CR_SINGLE_SELYEVE$XRM$K_CRCANCEL!EVE$DWT$K_CRCANCELkEVE$K_CR_CANCEL&EVE$DWT$K_CRNOo EVE$K_CR_NOtEVE$X_NO$TEVE$XRM$K_CRDEFAULT_ACTION EVE$$X_MOUSE_DOWN_BUTTON 'EVE$DWT$K_CRTO_POSITION wEVE$K_CR_DEFAULT_ACTION 3EVE$DWT$K_CRSELECTION *EVE$DWT$K_CRPULL_DOWN EVE$$RESTORE_POSITIONEVE$IS_MOUSE_MOTIONEVE$IS_MOUSE_DOWNEVE$INSIST_Y_NEVE$K_NPATTERNEVE$$KT_RETURN$xEVE$K_CALLBACK_ARRAY_LENGTH$EVE$K_RESOURCE_ARRAY_LENGTH$EVE$X_COMMAND_PROMPT_LENGTH ~EVE$$X_RESIZE_NEW_LENGTH EVE$$X_RESIZE_OLD_LENGTH EVE$$X_RESIZE_NEW_WIDTH EVE$$X_RESIZE_OLD_WIDTH[EVE$XRM$K_CRNO_MATCH8EVE$DWT$K_CRNO_MATCHEVE$X_PROMPT_LENGTHvEVE$K_CR_NO_MATCHEVE$K_NMINWIDTH EVE$K_NVALUECHNG_CALLBK EVE$K_NTOBOTTOM_CALLBK EVE$K_NPAGEDEC_CALLBK EVE$K_NPAGEINC_CALLBK EVE$K_NUNITDEC_CALLBK EVE$K_NUNITINC_CALLBK EVE$K_NTOTOP_CALLBKEVE$IS_MOUSE_CLICKXEVE$XRM$K_CROK|p EVE$K_CR_OK(UEVE$XRM$K_CRCLIPBOARD_REQUEST$EVE$K_NFILE_LIST_ITEMS_COUNT$REVE$XRM$K_CREXTENDED_SELECT$QEVE$XRM$K_CRMULTIPLE_SELECT$EVE$K_NSELECTED_ITEMS_COUNT$BEVE$XRM$K_CRPAGE_DECREMENT$AEVE$XRM$K_CRPAGE_INCREMENT$zEVE$TERMINALS_MODULE_IDENT$EVE$X_COMMAND_KEY_MAP_LIST$PEVE$XRM$K_CRSINGLE_SELECT$SEVE$XRM$K_CRBROWSE_SELECT$yEVE$TERMINALS_MODULE_INIT EVE$DWT$K_CRSCROLL_START 4EVE$DWT$K_CRCLIP_REQUEST EVE$CURRENT_KEY_MAP_LIST EVE$X_HELP_KEY_MAP_LIST EVE$K_NLISTVISITEMCOUNT EVE$K_NLIST_ITEMS_COUNT fEVE$K_CR_PAGE_DECREMENT}$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Tj"D eEVE$K_CR_PAGE_INCREMENT @EVE$XRM$K_CRDECREMENT ?EVE$XRM$K_CRINCREMENT EVE$K_NSELECTED_COUNTEVE$X_COMMAND_PROMPT;EVE$DWT$K_CRNO_FONTEVE$$LOOKUP_COMMENTEVE$K_NVISITEMCOUNTEVE$X_KEY_MAP_LISTEVE$K_NITEMS_COUNTEVE$LOOKUP_COMMENTEVE$$PARSE_COMMENTdEVE$K_CR_DECREMENTcEVE$K_CR_INCREMENT`EVE$XRM$K_CRINPUTEVE$X_KEYPAD_LISTEVE$K_NMINHEIGHTEVE$X_MOUSE_LISTEVE$INSERT_TEXTEVE$LEARN_ABORTEVE$INIT_REPEAT EVE$IN_PROMPT EVE$X_PROMPT` EVE$K_NSET EVE$IN_PROMPTING_WINDOWEVE$COMMAND_WINDOWEVE$PROMPT_WINDOWEVE$K_USER_WINDOWEVE$ON_A_PRE_LK201(EVE$X_CURRENT_LANGUAGE_KEYMAPCEVE$XRM$K_CRTO_TOPEVE$DWT$K_CRTO_TOPJEVE$XRM$K_CRUNMAP)EVE$DWT$K_CRUNMAP=EVE$XRM$K_CRHELP2EVE$DWT$K_CRHELPIEVE$XRM$K_CRMAP(EVE$DWT$K_CRMAPEVE$IS_MOUSE_UPhEVE$K_CR_TO_TOPj EVE$K_CR_HELP(EVE$$NOT_MIXED_MOUSE_MODIFIERS$EVE$$X_RECALL_UP_TERMINATORS$EVE$$X_MOUSE_DOWN_MODIFIERS$EVE$KT_MODIFIER_DELIMITERS$EVE$$X_PROMPT_TERMINATORS$EVE$$X_RECALL_TERMINATORS LEVE$XRM$K_CRLOSING_FOCUS 9EVE$DWT$K_CRLOST_FOCUS uEVE$K_CR_LOSING_FOCUS EVE$K_NSELECTED_ITEMSEVE$$STRIP_MODIFIERSEVE$$ENGRAVED_NAMEStEVE$K_CR_LOST_FOCUSEVE$X_STANDARD_KEYSKEVE$XRM$K_CRFOCUS+EVE$DWT$K_CRFOCUSEVE$$X_GOLD_KEYSEVE$$GET_DO_KEYS6EVE$DWT$K_CRYESEVE$X_USER_KEYSEVE$VT100_KEYSsEVE$K_CR_FOCUSn EVE$K_CR_YES EVE$X_YES(NEVE$XRM$K_CRMOVE_INSERT_CURSOR$EVE$$PARSE_KEY_WITH_MODIFIER$0EVE$DWT$K_CRCOMMAND_ENTER EVE$$MOUSE_BUTTON_NUMBER EVE$$PROMPT_POST_FILTER EVE$RECALL_LINE_BUFFER EVE$$GET_WINDOW_NUMBER EVE$KT_XLATE_PARAMETER EVE$CREATE_TERMINATOR EVE$REMOVE_TERMINATOREVE$$RESIZE_HANDLEREVE$TEST_TERMINATOREVE$ADD_TERMINATOREVE$PROMPT_BUFFEREVE$PROMPT_NUMBERMESSAGE_WINDOW$EVE$$RESTORE_KEYPAD_GOLD_KEY$EVE$$CREATE_GOLD_KEY_ARRAY$EVE$$PARSE_UNMODIFIED_KEY bEVE$XRM$K_CRLOSE_PRIMARY aEVE$XRM$K_CRGAIN_PRIMARY EVE$K_SHIFT_MODIFIED_KEY EVE$K_HELP_MODIFIED_KEY EVE$K_CTRL_MODIFIED_KEY EVE$$X_TERMINATOR_ARRAY EVE$$REDEFINE_GOLD_KEY EVE$K_ALT_MODIFIED_KEY EVE$$IF_USER_GOLD_KEYEVE$$REDEFINE_DO_KEYEVE$$X_DO_KEY_ARRAYEVE$K_SHIFT_KEY_KEYEVE$SET_NOSHIFT_KEYEVE$$X_STATE_ARRAYEVE$SET_NOGOLD_KEYZEVE$XRM$K_CRAPPLY:EVE$DWT$K_CRAPPLYEVE$$UNDEFINE_KEYEVE$UNDEFINED_KEYEVE$$NOT_GOLD_KEYEVE$SET_SHIFT_KEYEVE$SET_GOLD_KEYEVE$$ADD_DO_KEYEVE$$DEFINE_KEYEVE$UNKNOWN_KEYEVE$PROMPT_KEYmEVE$K_CR_APPLY` EVE$SEVERITYLEVE$$X_COMMAND_PREFIX      !"#$% ! " # $ % &'()*+,-./012345678 9!:";#<=>?@ABCDE F G H IJKLMNOPQRSTUVWXY Z"[#\$]%^&_'`(a)b*cdefghijkl m n o p qrstuvwxy$z-{-}T/1:(<h<<=>l>>@ACDEGHHpNOOLS|STtV4aabddeg! JJ" P,406 @ 8 B A I ; 7 C : ? 9 5 = < > L K H E D F G M N O   ooononon !!oo"7$7 $7$7$1    (|] |( ]  Ps |o |JQ(] (] Xs|vo JQ(#]$ $\s&|v'o'(()JQs,|v-o-.J!"(3#]4 4|s6|v77o77$l9$t9:$:#<JQ#G G(HI%SI I JN &Padvance forwardbackup reversechange_directionmove_up recall move_downreturn do exit find wildcard_find help next_screen previous_screen fndnxt continue_search_select continue_search_key search_right_angle   ,return help exit next_screen previous_screen move_up move_downeve$$command_pre_filtereve$$command_post_filterEVE$MOUSE_LIST$_V03-016lh_| | }$O| &#c~&#h~s%v u }$|(T  ] (#HH\ $ "; O"A  (#HH DP"A   6  0\XR(~q(T  j|&c&ck X8 rs#t TP <& uS vtO~ (O   p j%~Aw8 ~ H  3#$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"U|Oxy~ x X3|Oxz~y P3| &~Aw8 !~ !#w #${% O/~ /100 1@34 5 s7~v77 : BCDwFF`G|GI&kIIuJJ KR SSTwVVW|WY Y(Z&Z X] ]\^&^s__`}a~a ucc dlw lpsp~p&wpn&znp  H&t   |ws~&w   ~ <z~y HO& ~   ~ <z~y  \O& ~  Ts~sn|wA hwH|u  ,OlR  }$O &#c~&#h~s%v u  }$(T   <$Q| ||<P ""&P(-#. .0 0|1&a2T3& 4 405& 5 67:= <== >A AB=I`OKN. N,O}$P P QR RZT8O        0N`)9```d0NHR0nopsrsxxy3|y(T8  j|x &(JA06u (T  JA }(# L=:xL(#\\HHH $  0K&Od  k!&O3! "$&&'(<'u((R()1v*l)*R*+1+1n+, ,`--//n 0 j1o1Q1 461x66R66< do, I,$GGIIL L(M&mM N(OO&mOOQRPRAS STWW]H  :6  $ }$    S (  1 A        G6:  O   (]       p  popo( R(v 1R ! !'      E :6d H:6 do0DlllrtTD (# D )-P8  C2. L 8 :6 &QP P7[$ 8  8($ 8uR 6& $ t&NP&6PA $ ( $RlR'(p lR'uR( 81xR   66  &-  setget)(")eve<>  :6 #   " $Dd  #   | $   \ %   < &    '    <=&,%X\=RdHF& G GHJKL[N& O OPRS}$T[V& W WXZ[]]^3|^`& a a8b}$cUde ehijj=k lUm mnp=q=s t v v"x xy z{ {|}~A  $   4}$$ EVE$PROMPT_KEY,:----39\PTQ Q R RR}TU UWWZ Z[ \]]`bwbLcPd deelgg hjjq8(T l  HSd^6) *$|$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TS"f   $}  S)Zl8 4}"$     1l1l0  6RdH,& - -.012A4& 5 5689}$:A<& = =>@AC& D D$E}$F FIIJ3|JLL=MNOO=P RS1ST8V3UWWX=vZ Z0[\6] _UQbB b g gh ij}`$ kl1olllRln]nlo2 o8o pXqr r stss8uv wy y8z|}} ~    P&  U  6:  1oR]92 8 88A (U  Tp opo(Dpn odqRoL( =(  3\ : 4 $= |3\ : 4 $=3S  =   @ }`$ &  Y $&G3SA ,==vU p1lR = 3 \  P : Y   :   deletedelete        , 1 R (` 8 1x  R  6 \|p+C     (} $C  H*#QY$ $%3|%&''=)*8,3+--.=/3//S0 018 3845 5 6t668>L8) R\\Q4 455J78D:}$Q< <==JDQA ABBJDEE&(EFFJG GHHJNT'S SPU UV W$YY [$]]b bc!ce-ff| gh hjk l1l m<n op p qr ru1uRPu vw w xly1yRPz z{ { | }}Z$ T exit|% & 3|S  P `RP8   XRP8   @$PPAX# 3S  P hRP 0t8  `RP 0t8  xp"$ &*&&"D``,,,, D2 C.m  2. D( T  , j 46 82 C.km6!! "8&2 C.k'm''6*+ +8/2 C.k0m00634 4882 C.k9m99"@CPP @PD(TE E`uFFRTG GH IJ L@M(oMMRMO P,Q2.QS8(TTU U W WX ]a(&ac cPe(leweldeRepgogggh j2.jlD(mTn n,p pjqqqx('xz z0u{{R{}(} \R2 C.km $R# 08888888888 "E((XX )G \)I ,)Ej'"'""(,return(key_name ())_KEYCTRL_-/"ET$ 7$ \7$ ,7$(%L%T%\%d%l%t t~ `o Lg 8Z $M EE1E2E3E4E5E6FIND INSERT HEREREMOVESELECT PREV SCREEN NEXT SCREEN( huR11kRn4@}]0 ,A &#TT T C \ & 2  (&}CTRL/X I   ( r ]   < q   0q  3 q  r  >$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TS"w    &  \  @ $ -    &      & (' T(  ( L) * &+ " r , }$ - 0 1 }Q$ 3 5  5 6 & 7 \7 7 H9 $: -: : < < = 0> 3|P?  ? D E 3E E \F F LH I &J " r K }s$ L M N }Q$ P Q R }Q$ T LV V &W " r X Y }s$` $a -a a c c j $RESTORE$SELECTION$0&#l=&*=(0> >? ?B BHDOWNh<P&*P(0Q QR RU U\UPld&*d(0e ef fi ipDRAGl`x&*x(0y yz z} }CLICK<%d%x%%%%%|%p | \ <  DOWNDRAGUPCLICKCLICK2CLICK3CLICK4CLICK5&* 1xR1([oR  KEY_NAME (,Y   l QqWmnoM2 2 82 2 QB8A8 ,  H2  $      , return(key_name(M))L 2&23P4 4p5 5 577888u99 :;>?6:@o@@AACCCI` g hi ino6:ror(mrrt tz  6:pPoFq4o.(      6:p0o&qo(11uRsjRn6:     XY8 \       4             X  ) 4     $ $ * 8( ]     `T T 8T U 8V 2 W W X T` ,(     pX X Y &QY Z ,&P[ [ l\ 7$\ ] ] ^  _ 0` 7$` a a c d 7$d Ye e tf ,&f J&g ,&h J&i j j n n t 4pRD- - . J0 1 7 4 4 5 J7 9 &( : ;  < = ? JC 7S$D $F JK eve$$not_gold_keyL Q  C   j$          Z$ ! T" # # J&$ J&% i$% ' (  ) * b$* + , - - . . / ,&P0  0 1 X$1 2 L4 5 J&6 J&7 i$7 9 : r$: B doL7 9 9 : <  ? ? @ C  E E K X Q[  [ _ _ ` &Q` a ,&Pb  b ,c }$d d e h h j  j ,k Pk  l m p Pq  q r t 7$t Pu  u v y ({ ,&{ J&| ,&} J&     J&  J&  Q }ـ$ ,   }a$    h  P 7$  $  }a$    7$      \ ,& J& ,& J& 7$  }a$ $ }$  X  H  0   Q         4               )    R (   1 R  (   8  0u  R  }$     # EVE$_KEYS X 7$      &Q ,&Y    J& J&   }ـ$       T4e e &Qe e }x$j l &m n n q &#g r s s v &# w x x { &# | } }  &#e    &# &#8  &#8    &#f      t0       &O  Ll m   &O3  &O!  hp r (    &O=      d  Q 4      P( ]         $l @  , m o      D<7 }J$8 9 9 ; ; = = > ? C C D &Ox$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T2" D G G H H J  J (K (K  L M P P HuQ Q RQ lR R RR S S T 2O T OV  V pXX  X \Y Z &Z Z[ GZ\ H8\ ] ^ 4b b (c (c  d e &O3 e f h  i j j n o 2O Pp  p q q r (r us s Rlt u 1nu u Rnu u v y  z {  | P~ (    l  @  ;  }Ӑ$  }$ T  ;  }ɀ$  }$       P`H }@$         6 R , Q  (z A | R 7 p 6o 4 p &o go a $ :   :  <  (   $ R   R s  R   ( (\   \u  R l  R    Z Z 8  ` , l m  l m       l K   ,s  R j        6, 1   &O " " # ( a# %  % (& ( & & t ' @l( ) R * ( * * 0, &O3, - <3 3 h4 (4 l5 6 R 7 ( 8 8 9  > > @lC 1mC C D D E F H  H `L 78$K 7$ L M N R  R S }8$T V V X X Y ] 2  ] _ 2 . _ ` (a ]a Ab b c ( c e  e @li ti lg i R i k }$ l x x 0py Iz  { |  ; `  @  }$  }$  }$ -_/ TPU TP program ()Lon_error [TPU$_CONTROLC]: eve$learn_abort; abort; [OTHERWISE]:endon_error;;return 1(,"" eve$k_no_arg ( )$$ _KEYSEVE "@ R448  1  1  5     <: }$>`::]8  }2$   ,(  j %4%(&@'4 (!   `(  (! ;  !   ::]8 |; (}2$< Du R }*$ =     8M kpnM klv l!v!'=(=*(+&G+ ,- /3/!0E  011223=88 9 l: : ;$<=u=:X@! AHB8C3C!CE: FH H<I!IJ=S SYZ  [P` `f f$g h io oq qr  sz:]z{:{8{ | ~6 ; (}2$< Du R }*$  S u R 7*$ = h(   11 O   lR(   8jxR l: m       ,    t P =3SX&   : &G  =5 :]:8  6  ; ( }$< Du R } $  S  u R 7 $ = !&=l++R+, /1l/w/l./Rk//01Shb6 6P7&  899 :;;D& DIJ J P PU UVV\:\]:]]8] ^xd&Gd5d e0j6 k5 l; m(n}$< oDur rR r} $ tu vSzuy yR y7 $y {= | }$!; lO   $l d::]8 $}"$ O l     4Q qom   ,(  pb o_   Q - ,l!  `Z  L:]  }J$  l  l @lfl      Q qom   ,(  \p o   Q"  "#< $H%S uoj& &'  (P,:]- -$.}r$ 00 2`%)M$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T "`Z7  7L;:]< < =}J$ ??I J= K jL L MtOR  R(S SS T<X X lY mY oYY` ` Qe ef f l  llmm ouEVE_EVE__ ___ _ _ _EVE$ARG()EVE$ARG_return ()integer eve$k_no_argstring"",)EVE$ARG_return ()integer1lstring"",,EVE_Ton_error [TPU$_CONTROLC]: eve$learn_abort; abort; [OTHERWISE]:endon_error; return $ 1 l       1     R (   $   l   p  $    \ R u  R  du  R s l  R     /////^-_\l 0@Pd8 ?: ?<}P= =??B B$C}$D DJ1K KL,LLSSU UV VY!-Y\]]]abc6,lddlee(f fg htlii(j j lkk l0m}*$n nOs tu vwpz7oz=zzz  _KEY _KEYreturn(key_name ())$uRRP8   4lR  ",""(h~ ~  &Q  ,&P , 7$  p P  H    $ P   7$  ,TG G G O $$      A    Q      @  O $       44[0 l ` D`, (p,;#EVE$KT_MODIFIER_DELIMITER_UNDERLINE$EVE$$X_POST_DISPATCH_ACTIVE$EVE$$X_PRE_DISPATCH_ACTIVE$EVE$SET_FUNCTION_KEYS_EVE QEVE$$DEFINE_KEY_LANGUAGE EVE$$LOOKUP_STRING_TABLE :EVE$KT_WORD_WRAP_ROUTINE gEVE$KT_CALLBACK_ROUTINE hEVE$SET_MIN_WIDGET_SIZE jEVE$X_APPLICATION_NAME EVE$TEST_IF_MODIFIABLE EVE$SET_KEY_PROCEDUREmEVE$X_ULTRIX_ACTIVEcEVE$$$GET_KEY_NAMEEVE$X_MOTIF_ACTIVE3EVE$KT_OUTPUT_FILEEVE$K_REASON_CODEPEVE$$USE_LANGUAGEoEVE$POPUP_MESSAGEEVE$SHIFT_DELETE,EVE$KT_FILE_NAMEEVE$$BOX_PASTE EVE$K_CLOSURE0 EVE$KT_MODE1 EVE$KT_NAMEt6 EVE$KT_TYPE EVE$$X_MENUBAR_MANAGED EVE$$INSERT_CLIPBOARDEVE$X_NUMERIC_KEYPADsEVE$UNMAP_IF_MAPPEDEVE$K_VALUE_CHANGEDEVE_SET_NOCLIPBOARDEVE_SET_CLIPBOARDEVE_MOVE_BY_WORDEVE$SET_KEYPAD EVE$NEXT_WORDL EVE$WPS_WORD(EVE$X_WIDGET_HIERARCHY_STRING(EVE$X_QUICK_COPY_HIGHLIGHTING$EVE$X_REPLACE_GO_EACH_DIALOG$EVE$X_SET_PARA_INDENT_DIALOG$EVE$X_WRITEFILEPROMPT_DIALOG$EVE$X_WRITEDELPROMPT_DIALOG$EVE$X_SAVE_EXTENDED_DIALOG$EVE$X_WILDCARD_FIND_DIALOG$EVE$X_SAVE_FILE_AS_DIALOG$EVE$X_NEEDFILENAME_DIALOG$EVE$X_REPLACE_EACH_DIALOG$EVE$X_REALLYDELBUF_DIALOG$EVE$X_SPLIT_WINDOW_DIALOG EVE$X_SET_MARGINS_DIALOG EVE$X_SELECT_REMOVE_FLAG EVE$X_AT_EVE_FILE_DIALOG EVE$X_EXTEND_MENU_DIALOG EVE$X_REALLYQUIT_DIALOG EVE$X_OPENBUFFER_DIALOG EVE$X_SET_WIDTH_DIALOG EVE$X_FIND_EACH_DIALOG &EVE$X_BOX_SELECT_FLAG EVE$X_WRITEBUF_DIALOGpEVE$X_MESSAGE_DIALOGEVE$X_REPLACE_DIALOGEVE$X_GLOBAL_DIALOGEVE$X_BUFFER_DIALOGEVE$X_EXTEND_DIALOGEVE$X_MARK_DIALOGEVE$X_FIND_DIALOGEVE$X_GOTO_DIALOGEVE$X_ATTR_DIALOGEVE$X_EXIT_DIALOGEVE$X_NEW_DIALOGEVE$X_SCROLLING EVE$X_DEBUG(EVE_SET_FUNCTION_KEYS_NOMOTIF$EVE$SET_FUNCTION_KEYS_MOTIFtEVE_SET_FUNCTION_KEYS_MOTIFEVE$K_PAGE_DECEVE$K_PAGE_INCEVE$K_UNIT_DECEVE$K_UNIT_INCEVE$X_SCROLL_BOTTOM=EVE$KT_NULL_PROGRAMREVE$X_NULL_PROGRAMEVE$K_TO_BOTTOM,!EVE$KT_MODIFIER_DELIMITER_CONTROL EVE$$X_EVE_COMMAND_LABEL EVE$$X_SEPARATOR_LABEL yEVE$$RESIZE_TOO_SMALLEVE$PAGE_HORIZONTALEVE$EVE_IN_CONTROL)EVE$KT_BEYOND_EOL' EVE$KT_NULL$EVE$X_INCLUDE_FILE_SELECTION$SEVE$$DEFINE_KEY_TRANSLATION$JEVE$X_DEFAULT_RIGHT_MARGIN$EVE$STUFF_GLOBAL_SELECTION$kEVE$$MANAGE_FILE_SELECTION$IEVE$X_DEFAULT_LEFT_MARGIN$EVE$X_DELAY_MENU_CREATION$lEVE$X_OPEN_FILE_SELECTION EVE$$X_DELETE_SELECTION >EVE$KT_XLATIONS_VERSION EVE$X_SELECT_POSITION2EVE$KT_OFFSET_COLUMN5EVE$KT_RIGHT_MARGIN/EVE$KT_LEFT_MARGINqEVE$$RESIZE_ACTIONEVE$X_SCROLL_ON EVE$SELECTION$$EVE$X_CHOICE_WINDOW_LENGTH 7EVE$KT_VISIBLE_LENGTHEVE$SCROLL_DISPATCHEVE$NEXT_PARAGRAPHEVE$WPS_PARAGRAPHr EVE$SET_WIDTH9 EVE$KT_WIDTH$EVE$KT_NACTIVATE_CALLBACKEVE$KT_NHELP_CALLBACK$EVE$$X_DISPLAY_PULLDOWN_MENU$EVE$$X_CUSTOM_PULLDOWN_MENU$EVE$$X_FORMAT_PULLDOWN_MENU$EVE$$X_SEARCH_PULLDOWN_MENU$EVE$$X_EDIT_PULLDOWN_MENUEVE$$X_FILE_PULLDOWN_MENU(YEVE$DECWINDOWS_MODULE_PRE_INIT$EVE$CREATE_SECONDARY_SELECT$EVE$$X_MENU_SEPARATOR_COUNT$ EVE$X_BUF_STR_SAVED_CONTEXT$EVE$X_FUNCTION_KEY_MAP_LIST$XEVE$DECWINDOWS_MODULE_IDENT$WEVE$DECWINDOWS_MODULE_INIT$MEVE$SYNONYMS_MODULE_IDENT EVE$X_FOCUS_BASED_SELECT LEVE$SYNONYMS_MODULE_INIT EVE$$X_SAVE_MENU_COUNT EVE$KT_TOP_TPU_WIDGETnEVE$UNMANAGE_WIDGETbEVE$UNDEFINE_WIDGET4EVE$KT_RECORD_COUNTeEVE$CREATE_WIDGETiEVE$MANAGE_WIDGET_EVE$DEFINE_WIDGETEVE_SHIFT_RIGHTEVE_SHIFT_LEFT- EVE$KT_FIRST EVE$K_WIDGET EVE$$BOX_CUT. EVE$KT_LAST EVE$$X_SCROLL_BAR_WINDOWtEVE$CHECK_BAD_WINDOWEVE$$X_RULER_WINDOW+EVE$KT_CURRENT_ROW}EVE$$REMOVE_WINDOW#EVE$CHOICE_WINDOWzEVE$$MAP_WINDOW|EVE$GET_WINDOW{EVE_ONE_WINDOW EVE$X_NO_SELECT_POPUPEVE$X_SELECT_POPUP8EVE$KT_VISIBLE_TOPEVE$X_SCROLL_JUMPKEVE$X_STARTING_UPEVE$X_SCROLL_TOPvEVE$HELP_CLEANUP EVE$K_TO_TOP("EVE$$X_HELP_VT100_TERMINATORS(EVE$$X_NOSELECT_POPUP_ENTRIES$\EVE$KT_PUSHBUTTONWIDGETCLASS$dEVE$$$RESTORE_WIDGET_ARRAYS$]EVE$KT_SEPARATORWIDGETCLASS$EVE$$X_SELECT_POPUP_ENTRIES$EVE$$X_SCROLL_BAR_CALLBACKS$ EVE$$X_POST_KEY_PROCEDURES$EVE$$RESIZE_SYSTEM_WINDOWS$UEVE$$DEFINE_KEY_MODIFIERS$EVE$X_MOTIF_FUNCTION_KEYS$ EVE$$X_PRE_KEY_PROCEDURES$aEVE$$X_WIDGET_HELP_ARRAYS EVE$$$SAVE_WIDGET_ARRAYS EVE$$X_FIND_REVERSE_KEYS EVE$$X_FIND_FORWARD_KEYS EVE$$X_SCROLL_BAR_VALUES ^EVE$SET_ULTRIX_RESOURCES EVE$$X_FIND_TOGGLE_KEYS EVE$$X_FIND_TERMINATORS !EVE$$X_HELP_TERMINATORS EVE$$SET_NO_SCRO $ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T "LL_BARS wEVE$X_NUMBER_OF_WINDOWS EVE$KEY_MAP_LIST_EXISTS NEVE$$INIT_ALL_SYNONYMS EVE$SET_SCROLL_MARGINS VEVE$$ADD_KEY_SYNONYMS EVE$SET_FUNCTION_KEYSxEVE$TEARDOWN_WINDOWSEVE$$SET_SCROLL_BARS`EVE$$X_WIDGET_ARRAYSEVE$$X_EVE_COMMANDSEVE$$X_POPUP_MENUS%EVE$X_NUMERIC_KEYSEVE$$SAVE_SETTINGSEVE$KEY_MAP_EXISTSEVE$CREATE_POPUPS~EVE$SETUP_WINDOWSEVE$X_VT100_KEYSEVE$X_WPS_KEYSEVE$$X_WINDOWS( EVE$KT_SPACES(OEVE$MAKE_SYNONYM_A_TERMINATOR$EVE$KT_KEY_STRING_DELIMITER$EVE$$RELEASE_SCRATCH_BUFFER$EVE$$RESERVE_SCRATCH_BUFFER$EVE$KT_KEY_NAME_DELIMITER EVE$$POST_KEY_DISPATCHER EVE$$PRE_KEY_DISPATCHER EVE$$FOUND_POST_FILTER EVE$UNMANAGE_MENU_BAR HEVE$X_SENTENCE_BUFFER EVE$$X_SCRATCH_BUFFEREVE$PRIMARY_TRANSFEREVE$$LOOKUP_MODIFIEREVE$CREATE_MENU_BAREVE$MANAGE_MENU_BAREVE$$X_QUICK_ANCHOREVE$EDT_DELETE_CHARCEVE$DEFAULT_BUFFERBEVE$COMMAND_BUFFEREVE$X_BOUND_CURSORDEVE$RESTORE_BUFFEREVE$X_QUICK_ANCHOREEVE$X_CHAR_BUFFERGEVE$X_LINE_BUFFERFEVE$X_WORD_BUFFEREVE$DEFINE_ATTREVE$X_MENU_BAR* EVE$KT_BUFFERu HELP_BUFFER$EVE$KT_MODIF_XLATIONS_KEY EVE$$X_GLOBAL_ATTR_ARRAY EVE$KT_KEY_XLATIONS_KEY ?EVE$KT_XLATIONS_VER_KEY fEVE$X_WIDGET_HIERARCHY EVE$$PARSE_UNKNOWN_KEY EVE$$X_SEPARATOR_ARRAY[EVE$X_CALLBACK_ARRAYTEVE$$ADD_TABLE_ENTRYZEVE$X_RESOURCE_ARRAYEVE$$QUICK_POST_KEY@EVE$K_FUNCTION_KEYAEVE$K_KEYPAD_KEYEVE$$FILTER_KEYEVE$X_BOX_ARRAYEVE$$LOOKUP_KEYEVE$INIT_DO_KEY EVE$$CUT_COPYl<EVE$KT_KEY_LANGUAGE_PREFIX"&'|++\, 0 6;D>@@CDI C ChKpKxK'XR(\R)R*R+R,R-R.R/S0S1S2 S34S4DS5TS6dS7lS8S9S:S;S<S=S>S? C@ CA CLSM8TN`TOTP VQWSXT [U0\V_WbX,eYTe^k_mbocpd$retg0uhLuivkdxn,zozqL|r|s4~tt~vx yz{|L}~p$|ȭx008Ծ0X@`dP@4 d$$$DR8"&O!Y$ $%'&O!Y) )+M-.<<1&O!Y3 346&O!Y8 8:<>? ,E&OEGGH@I@OK KL N&O3N OxTUZ@[\^@__`Leeeklastlastlastlastlastlastlastlastlast    2SA   SA     07$( +SA{do_on_error [TPU$_CONTROLC]: eve$learn_abort; abort; [OTHERWISE]:endon_error; return eve_do ('') dohDR8v&O!Yx xy({&O!Y} }&O!Y &O!Y W ,&O@@O  &O3 xd@&O!@@&O!@p]J lastlastlastlastlastlastlastlastlastlastlastl(0/ /02&O23 37l,((? ?@B&NBC CIhT=UW3|W(Y]Z Zd\  \] _  _`JaJ( bcee=f gPhPi jPk lPmP(rTs s8t&tvv w)w#x D x|}&*}"}  ~4" P&3 (T &`"X P&3  *PJ  =SAVED$CONTEXT$procedure eve$$restore_settings$eve$$x_gold_keys := create_array ();'eve$$x_do_key_array := create_array (); eve$$x_gold_keys {'!AS'} := !AS;"eve$$x_gold_keys {'!AS'} := '!AS';%eve$$x_do_key_array {'!AS'} := '!AS'; endprocedure P\R@JJ(`T &(  J@@ \&O@ &`` a&&!(](]A $}ʳ$ ~9""Blv"cBN j   c  )# <<<xx p2. T 4  l  &`3 JEVE$$$WIDGET_ARRAY_548EVE$$$WIDGET_ARRAY_548EVE$$$WIDGET_ARRAY_LISTEVE$$$WIDGET_ARRAY_LISTEVE$$$WIDGET_ARRAY_548EVE$$$WIDGET_ARRAY_548EVE$$$WIDGET_ARRAY_LISTEVE$$$WIDGET_ARRAY_!ULlast return !SL widget base return !SL widget counth  &Q ,  O,&Q3  (# ll<<XX< D  (   h( ] <       `( ] <       4ˀ$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Tݵ"         & <l&3  P(Jz  J{  !%&%''<l(()&3) *, ,P.(0JzH 1 3J{<6 69 9@eve$$pre_key_dispatchereve$$post_key_dispatcher hQ RUV[-)[]\ \]_-_&` `Habce&me f(gg&mgj jl l$mJznq v vw&wyyLlzz{|&3| } 0Jz &` &3   Ԉ -)] -& H&m (&m  $J{  &Ll&3  0J{ &` &3  ^8:6,2 C. "ll08 t ` X }*$    $}³$ :6,% p%x%%%% %"&$'$& $& G xE d P <! (# "% %' '- SHIFT_KEYFUNCTIONKEYPADSHIFT_MODIFIED CTRL_MODIFIED HELP_MODIFIED ALT_MODIFIED ALT_MODIFIEDSHIFT_MODIFIED <;2 C.>?@ @"F4L FKK LpPP QXU}*$V V W$X}³$Y Y`,0Hx}$ }$ ((1\A 0}$ uRlR1xR) \0}$ %G@%EH%P&EX'L @ X D 0}$ poo mo"mo Hpo&oQmoS()FUNCTIONKEYPAD CTRL_MODIFIEDBon_error [TPU$_INCKWDCOM]: eve$message (EVE$_ILLKEYNAM, 0, '2'); return (false); [OTHERWISE]:endon_error;return(key_name (,))Bon_error [TPU$_INCKWDCOM]: eve$message (EVE$_ILLKEYNAM, 0, '2'); return (false); [OTHERWISE]:endon_error;return(key_name ())}{|6,j~~(~   jm( R(lR(uRj( <      {(T t 8  x$   4 ұ$ &QP  $ &"Cd,  Q C  8$  ]  ڱ$  QG %Bp%Bd%BX%BL%B@%B4%B(%B%B  h$  &  %B %B%B%B$%B,%B4%!B<%$BD%'BL%*BT%-B\%0Bd%3Bl%6Bt%9B|%<B%?B%BB%EB%HB&KB'KBR KB B |B hB TB @B ,"B !%B $(B '+B *.B -1B 04B 37B 6:B 9x=B <d@B ?PCB B<FB E(IB HP P[&[] ]6^_ _ `,`6cc d e,e6hi i j,j6mn n o,or$u u}doP beyond_eolbuffer current_row file_namefirstlast left_marginmodename offset_column output_file record_count right_margintypevisible_length visible_topwidtheve$$word_wrap_EVE$KEY_LANGUAGE=on_error; endon_error;1.1@$s(]  N$rBBV03-003(re f g kcEVE$$INIT_ALL_SYNONYMS\lrb bc ceeggpioihqhohi(j jxplolkqkokl(m m,poqTmqqutt uw w}          q(] 4}$ 6,j<0}$  EVE$$USE_LANGUAGEp$J&(=R(] 4}$ 6,j<  JR C>R CR CJ EVE$$DEFINE_KEY_LANGUAGE,?0@}$A ACE2 C.EF6FGJH%I&p%LG%OE%R%U%X%[&^&'^ a ^KR C INR C LQR C OTR C RWR C UlZR C XH]R C [$_} $` `iTjk koR CpJq qvEVE$$DEFINE_KEY_MODIFIERS4g(] (] L(Q}$ 6( 0}$ ( 0}$ jm( H&*}b$ jmV STRING(e&#&#  +d JJJ   ZZZZZ Z    Z  Z  Z  Z  Z  Z  Z      7$ #- eve$$resize_actioneve_set_clipboardeve_set_noclipboard;$a__V03-054taa&#bcf fZg xg[lZmZnZoZpZqZrZsZtZuZvZwZxZy}ZztZ{tZ|rZtZZZZZZ Z Z Z Z ZZZZZZZzZ{ZZc?[d@[eA[fB[g>[hC[iD[j=[kY[lF[mZ[n [o [pX[qP[r [sK[t [uL[v[[wT[,\5]^J+ increment pageIncrementmaximumminimumvalue labelString sliderSizedirMaskhorizontalScrollBarverticalScrollBarxywidthheightitems itemCount selectedItemsselectedItemCountselectedItems selectedItemCountlistItems listItemCountfileListItems fileListItemCountpageDecrementCallbackpageIncrementCallbackdecrementCallbackincrementCallbackvalueChangedCallback toTopCallbacktoBottomCallbackdirSpecset dialogTitletitleminWidth minHeightnoResizevisibleItemCountlistVisibleItemCountpatternxmPushButtonClassRecxmSeparatorGadgetClassReceve$$remove_copyrightHL[&(T $ J&#JZWJ/usr/lib/X11/app-defaults/eveTpu.Tpu$MainWindow.TitleTpu.Tpu$MainWindow.IconNamelZ(# llPP<<P  t  X(Q}z! (`]  `(a]  a~9`T & 9 P   l    L  `a a  W~+9++,.`.//T0&090P00 l11 25 56 6 78a8; < > >D|tVs\\~]]H^t^^"`(Hp `a,aa bc,Ecc de,Gee fg,&gg h\i,E&ii j,k,G&kkr TP 0          &O 2B 2B   l  jxc2   8!#2.#l%%&& 'X(&O3\( ),, `- a3EVE$$$WIDGET_ARRAY_LISTEVE$$$WIDGET_ARRAY_LISTEVE$$$WIDGET_ARRAY_LISTPd dgfg&ZZgid ijmd mnp&psrsJZZsxTP(] ` 4}$, e ,& j j&Zlj( HljqmJZ EVE$MANAGE_WIDGETEVE: : N(l] `xf#gl&lZ&# 0JlZ& m  8#4qrJlZilhl OPEN_FILE_SELECTION**TL(]   L@R,   7P@8 3|= =(p] ,f#gp"!&pg#JZ#'ip(hp )*62MESSAGE_DIALOGMESSAGE_DIALOG.MESSAGE_LABEL1J?&#?~@&#@A&#AB&#BDJH0J( T  , &[Y$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"   &=!  &=  J<O  , &=3 ( CT  (s J JbC  &h   <H&  H|R0PtQtRS\V V W WW}YZ Z\\__` `cvd|vddfPg g hkPklPlAlmPmAn noPp pHq& ruSr rs suxPxyPyAz zl{){T| |P}}& ~ ~(= )T @&a   DJQ&H&V ,&3  D &  0   MAIND0R(v[ 8 ]   [  s#sU: xX    :   [  U  [ JQ pB|Rt( T  @ }$ ~ }3$ U      &=   ` &   l   &=3  l" " " # 4.$ w& & (' T(  ( ) & ) - - x. . / / X0 0 1 2 & 2 3 &3 4 &4 5 &S5 6 7 7 8 8  9 : : < == 3|= > &> @  @ A A lC C wC C D &hD E &LE F &KF G &JG H &XH I &I J &J K &K L &L M &EM N &DN O &\O P &]P Q &RQ R &; S T T  U V V X &PX Y Y Z [ [ $\ \  ] O_  _ ` `  a Oc  c d d  e Og  g h h  i Ok  k l l  m \Oo  o p p  q ,Os # s t t | &m|   &    , &  &    , &   u   w J      :0Y}$Z7[]7^7$^o_7e 9TRL z     ( ]     JQQ    H &S ( J' & Y    &  & s  s    A $j      J  J(4 J  ( J( T   = =   & &S k  n w u  J% eve$scroll_dispatchh\6RLP+w +,w.{/093 3 4 44}67799;t==>>@w@AA AB}С$ C|(DTE E,F& G G HPwPpQwYQRw)RTS8S TUwUuWwWw XZw\ ]a&ta_&z_aeeAf fhm ms3\PTw w x xx}z{ {}}wA  \3RDP/ /0l00S1 1l22O5w5@l666l77 89:w u;w;w< =HQ? ?4@w uAwAwBMG G H HH}JK KMMOPPQOSwS@lTTTlUU VWXw uYwYwZ` 0TRL }Ȣ$ ~ U    ( # pp<P P  < 4 T 4P .       ) T  |    & 8               " T   s |v o  zBs |v o  J!"s |o  z| wu   z      s |v o  zBs |v o  J!"s |o  z|  u  ! " q" v" }" " $ # $ z% % j& & s' ' ( ( ( l) )  *  + , , w- / &/ / h0 0 3 3 3 3 2 2 2 2 2  3 z4 T5  5 6 6 6 J'7  8 <9 9 9 J';  < <= = = J'?  @ <A A A J'"C  D <E E E J'+G  H <I I I J'LL L L J<M M M J*N  O ,P P J?R g$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Ty_" S ,T T J?V  W ,X X J?"Z  [ ,\ \ J?+^ ^ ^ J_ _ _ ` a a ,b b b  c d #e |`D( e f f  g h h  i lj j  k Pl l  m 4n n  o p p #ls s  t |u )u Tv  v 4w w w JQ| }  ~   J  J J    4  J U  &         J%l   \u  J!" J  8      eve$scroll_dispatchv #&&SwFdmFdm uj  ltJ%T!$R  #j|s~s~o$$  $s%~o%%s&~|o&&l'$t'~'(s)~x)).zB1z|5$5#667788>?J!"@J?"DJQ#EJQFJQJJ<KJ<LJ<#MJ<NJ<OJ<U@<AJABJCJDJEGJGHJIJJVJJKPeve$scroll_dispatchveve$scroll_dispatchh, RDDstuvyzQ| |}}J T }0$ }$ Q J3| @3|S (&"&G&(J&,} $ J==  J&GlS8 x3=:3|Ja=  ,PL  M MU| & D &* }H$      5 p(6]7 7<9y 9:`y <3 y <>  ? ?B} $D DH $SCRATCH$   <&(T  $   L8|R0d} $    hQ , ,(T ,} $ J  $A$  $}      4,f d f f (h Ti  i j  k l (o Tp  p q  r s (v Tw  w x  y z (} T~  ~    ( T      @  0       &  \ 8  }$  ( T  4 &   =    = 3  \  8            G 4 & t 3  =    =         3  \ p L 3 3    L 0  }Q$      4  L  ( T     |(  T   d &  S  4 &     =     = 3  \   8         4     ! ! # 0% & }z$( ( / @41 & 1 2 }2$ 3 4 }R$8 8 = STRING HQ J3|&((T   # 4$ %%J &$Q( () /112233=4145 8l(:T; ;T><??=L@@  ABlFF GJJJ=LLJO8QR}A$ ST} $X X_ , l6 }{$7{$DN $}@$ !eve_set_clipboardeve_set_clipboard;D\ (]   ,(]   P P8   T )T 4           $l%6 &}$)7$)DN)) *$+}@$, ,3eve_set_clipboardeve_set_noclipboard;XDWJXJ^l (Rr LsuJ% vvUxYy yz|} LJ% UY 3|&=&p$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TH"d[P c[P e[P f[P g[P h[P i[P Q Q, ",T|   p  HZ  Z2  ZZZwS = DZZS = Z=&J &K &L   &b&dw s  J% 3|&& $U $   J% ,= = =* "#,T|p0x ### $$$ %l&Z&(Z(*Z*w*S* +x/Z/1Z123&Pn3w3-3 408Z68 :x;Z;= =L@A&P2A?A B8FZF2FDF HIZIKZKMZMwMSM NxRZRTZTUV&PnVwVPV WX[Z[\]&Pw]Y] _bc&P2cac dphZhjZjkl&PnlwlflrtYu uv~vwidgetclosure reason_codeP8(T =      8   H(T & S 3|=*3&,3Y 8   =( T d& S <3|&     Lh}$T$} L}$(p D (T (Jf \m,Jf $JfJfTJf$}|{f#gEVE$WIDGETS_MOTIFeve_widgets_motifEVE_ICONEVE_ICON_32X32EVE_ICON_32X32 EVE_MENU_BARP #&##(fg(,fg,0 0123JB5 5< SELECT_POPUPNO_SELECT_POPUP`<5 ,   D4 J5 6 6 9 9 ? T,    8DHEE&hxEEEE F@GG&hxGGGGNhP ,}b$ 7ȡ$7;$  }$ (T ,&   }ې$  p,P ,}b$ 7ȡ$73$  }$ (T ,&   1}ې$  (VVJWZ0[[J [ \(]]J"]_`S` `aa bcceeJffl@R,qrsvuvxyz z}3|}&x& ,=*  ,& T=*T" 8  & =*T  8 ,3|8  =*33S ,T  83S DT" ,3|83|S3|SA`( 8,8 tW @R,)*+.-.012 253|577&899& :,;=*< < =>>& ?T@=*ATB" BC8E E FG=*LTM" MO O<PPQ QR RT=uV3VVSW WX:Z Z[3|[[\[8[ \]8 _h`3``Sa ab:d d ef8j jp(ttJux0yyJ y z({{J"{}}~~J@R, !"%$%'() )/3|/0T0  1@22P3 34: 6P7T7" 8899P: :;:@=uATA  BC3CCSD DE EH3HHSHH<I=vJ8K K LN3NNSNN<O=vP8Q Q R ST3TTSU UV V WY Yt[3[[S[[<\:]=u^ ^ _ `a:b=ud dlg3ggSgg<h:i=uj j ko3ooSoo<p:q=ur r st3tt\u u$v=vw8|W ~ ~(d P 8R\ Q  D$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TF" J     Q   J     3|    @         @ $  # A O " #A      ! ! $  % &#& h* + =K/ &1 1 ,2 } $3 4 4 6 36 7 8 J9 =: ; =< =  > X? ? @ J@ A WB JD F I  R V  V W & W Z  Z ,[ [ & [ X^  ^ $_ ` = a f * + j  j k s      s w +x 8x x y (| T}  }   =K 3|P ( T 8 0 &      8  3      =   ( T   I 4 }:$     4  } $   3   J      =K     = = (     U     U   STRINGSTRING(]  & S 3|=*3 ,&,8 =@HR,3|(] d(Q}z\ (] d(Q}z &0=3 &0=3 (6 T  ^6   6   =Y dX8 @ 3|&  = MARKERMARKERA @A ,   ,@R,?@ADCDFGH HK3|KN NO ORR&S`TT&UU&AUVW=* Y,Z=*[3|[^3^^S_ _`:cd dLf f(g h h ij  lm p3p3ppq  s Es v vwx xzz&(Tz { }~81  =  tpu$main_windowactivateCallback helpCallback`l4&H,$|D|8 t ,X!EVE$$WIDGET_GLOBAL_PENDING_DELETE(OEVE$$WIDGET_BUFFER_MODIFIABLE$EVE$$X_AMBIGUOUS_INPUT_FILE$EVE$$WIDGET_EXTMENU_DELETE$EVE$$WIDGET_EXTMENU_REMOVE$EVE$GET_FIXED_STATUS_LINE$EVE$SET_FIXED_STATUS_LINE$LEVE_SET_FIND_NOWHITESPACE eEVE$$WIDGET_AT_EVE_FILE KEVE_SET_FIND_WHITESPACE EVE$POSITION_IN_MIDDLE EVE$X_GET_WILD_ACTIVE&EVE_RESTORE_SENTENCE EVE$$WIDGET_INCLUDEEVE$SHOW_FIRST_LINEEVE$GET_STATUS_LINEEVE$SET_STATUS_LINEEVE$X_UNMODIFIABLEEVE_START_OF_LINEEVE$X_MODIFIABLEEVE$X_OVERSTRIKE'EVE_RESTORE_LINE>EVE_CENTER_LINEEVE_END_OF_LINE?EVE_FILL_RANGE EVE$X_REVERSE EVE_SAVE_FILE: EVE_PAGINATE EVE__AT_FILE EVE_REPLACE EVE_RESTORE" EVE_PASTE(EVE$$X_MENUBAR_ALREADY_MANAGED$WEVE$$WIDGET_GLOBAL_CLIPBOARD$ZEVE$$WIDGET_GLOBAL_BOX_PAD$EVE$DIRECTION_STATUS_FIELD$fEVE$$WIDGET_SAVE_EXTENDED$EVE$$HELP_WIDGET_UNMAPPED EVE$$WIDGET_EXTMENU_ADD EVE$MODE_STATUS_FIELD EVE$BUFFER_NAME_FIELD EVE$$X_PREFS_MODIFIED EVE$MAP_IF_NOT_MAPPED=EVE_CAPITALIZE_WORDiEVE$$WIDGET_EXTEND<EVE_UPPERCASE_WORD;EVE_LOWERCASE_WORD.EVE_WILDCARD_FIND,EVE_FIND_SELECTED EVE_OPEN_SELECTED%EVE_RESTORE_WORDEVE$IS_WILDCARD EVE$X_FORWARDEVE$$MOD,*EVE_FIND(EVE$$X_BUFFER_CHANGE_JOURNALINGpEVE$$WIDGET_REALLYQUIT_DIALOG ]EVE$$WIDGET_SCROLL_OFFEVE$$X_USER_MAIN_BUFEVE_SET_SCROLL_OFF(EVE$DCL_SINGLE_INPUT_FILE_LOGIC EVE$DCL_START_FILE_LOGIC EVE$DCL_INPUT_FILE_LOGIC EVE$DCL_FILE_MODS_LOGIC EVE$DCL_JRNL_FILE_LOGICEVE$DCL_INIT_FILE_LOGIC$EVE$$X_DCL_START_FILE_PGM EVE_BOTTOM,q"EVE$$WIDGET_WRITEFILEPROMPT_CANCEL,9"EVE$$WIDGET_SET_PARA_INDENT_CANCEL(y EVE$$WIDGET_SAVE_EXTENDED_CANCEL(EVE$$WIDGET_SAVE_FILE_AS_CANCEL(IEVE$$WIDGET_SPLIT_WINDOW_CANCEL(|EVE$$WIDGET_AT_EVE_FILE_CANCEL(5EVE$$WIDGET_SET_MARGINS_CANCEL( EVE$$WIDGET_OPENBUFFER_CANCEL$EVE$$WIDGET_REPLACE_EACH_ALL$DEVE$$WIDGET_SET_WIDTH_CANCEL$EVE$$WIDGET_REPLACE_CANCEL$[EVE$$WIDGET_GLOBAL_CANCEL$vEVE$$WIDGET_EXTEND_CANCEL$SEVE$$WIDGET_BUFFER_CANCEL EVE$$WIDGET_REPLACE_ALL EVE$$WIDGET_NEW_CANCELEVE$EDT_DELETE_EOL!EVE_SELECT_ALLgEVE_EXTEND_ALLEVE$NULL( EVE$$WIDGET_REPLACE_GO_EACH_NO$EVE$$WIDGET_REPLACE_EACH_NO sEVE$$WIDGET_WRITEBUF_NOLEVE$$WIDGET_GOTO,"EVE$$WIDGET_INCLUDE_FILE_SELECTION(EVE$$WIDGET_OPEN_FILE_SELECTION(EVE$RESTORE_PRIMARY_SELECTION$EVE$$X_SHOW_WINDOW_CAPTION$EVE$$X_SYS_WINDOW_CAPTION \EVE$$WIDGET_SCROLL_ON EVE$DECLARE_INTENTION )EVE_RESTORE_SELECTIONEVE$MOVE_BY_SCREENEVE$X_BUF_STR_MAINEVE$$JOURNAL_OPENEVE_SET_SCROLL_ONj EVE_LEARNEVE_OPEN( EVE$$X_EXTRA_FIELD_FORMAT_LENGTH$EVE$$X_CHOICES_COLUMN_WIDTH$VEVE$$WIDGET_GLOBAL_SEARCH$^EVE$$WIDGET_SCROLL_SMOOTH EVE$MAIN_WINDOW_LENGTH AEVE$$WIDGET_SET_WIDTH EVE$RESET_FILE_SEARCH EVE_SET_SCROLL_SMOOTH@EVE_FILL_PARAGRAPHEVE$$FILE_SEARCH EVE_SET_WIDTH EVE_REFRESH(EVE$$WIDGET_REPLACE_GO_EACH_OK(7EVE$$WIDGET_SET_PARA_INDENT_OK(oEVE$$WIDGET_WRITEDELPROMPT_OK$wEVE$$WIDGET_SAVE_EXTENDED_OK$EVE$$WIDGET_SAVE_FILE_AS_OK$GEVE$$WIDGET_SPLIT_WINDOW_OK$EVE$$WIDGET_REPLACE_EACH_OK$zEVE$$WIDGET_AT_EVE_FILE_OK$3EVE$$WIDGET_SET_MARGINS_OK$ EVE$$WIDGET_OPENBUFFER_OK BEVE$$WIDGET_SET_WIDTH_OK EVE$$WIDGET_REPLACE_OK tEVE$$WIDGET_EXTEND_OK REVE$$WIDGET_BUFFER_OK+EVE$$WIDGET_FIND_OK}EVE$$WIDGET_MARK_OK~EVE$$WIDGET_GOTO_OKlEVE$$WIDGET_ATTR_OKEVE$$WIDGET_NEW_OKEVE$$WIDGET_MARKpEVE$$WIDGET_EXTEND_MENU(YEVE$$WIDGET_GLOBAL_BOX_SELECT(EVE$$WIDGET_REPLACE_EACH_QUIT(EVE$$WIDGET_REPLACE_EACH_LAST$6EVE$$WIDGET_SET_PARA_INDENT$EVE$X_BOTTOM_MARGIN_ADJUST$EVE$$X_EXTRA_FIELD_FORMAT cEVE$$WIDGET_TAB_MOVEMENT EVE$WIND:$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Tq"!OWS_MODULE_IDENT EVE$X_MAX_SCROLL_OFFSET EVE$WINDOWS_MODULE_INIT EVE$X_TOP_MARGIN_ADJUST nEVE$$WIDGET_ON_CONTEXT dEVE$$WIDGET_TAB_INSERT EVE$FILE_MODULE_IDENT EVE$GET_SCREEN_HEIGHTEVE$FILE_MODULE_INITEVE$$X_OUTPUT_COUNTEVE$$X_INPUT_COUNTEVE_STORE_TEXT- EVE_FIND_NEXT EVE$X_INSERT EVE_SELECT EVE_RESETEVE_QUITEVE_EXITEVE_GET\$EVE_CUT$EVE$$X_PRE_COMMAND_WINDOW EVE$ARG1_ENLARGE_WINDOW EVE$GOTO_COMMAND_WINDOW EVE$ARG1_SHRINK_WINDOW EVE$ARG1_SPLIT_WINDOW EVE$GET_MAPPED_WINDOWEVE_PREVIOUS_WINDOWEVE$ENLARGE_WINDOWEVE_ENLARGE_WINDOWEVE$DELETE_WINDOWEVE$BOTTOM_WINDOWFEVE_DELETE_WINDOWEVE_SHRINK_WINDOWEVE_OTHER_WINDOWEVE_SPLIT_WINDOWEVE$MAIN_WINDOWEVE_NEXT_WINDOWEVE$TOP_WINDOWLEVE_NEW$NEVE$$WIDGET_BUFFER_WORD_WRAP EVE$X_SHOW_BUFFERS_POPUP _EVE$$WIDGET_SCROLL_JUMP EVE$$FILE_SEARCH_LOOPEVE$$OPEN_WINDOW_GAPEVE_SET_SCROLL_JUMPEVE$UNMAP_HELP EVE$MAP_HELP EVE$X_JUMPEVE_HELP0EVE_TOP,!EVE$$WIDGET_EXTMENU_LIST_COMMANDS(EVE$$WIDGET_EXTMENU_LIST_POPUPS$EVE$UPDATE_ALL_STATUS_LINES rEVE$$WIDGET_WRITEBUF_YES EVE$UPDATE_STATUS_LINES UEVE$$WIDGET_GLOBAL_TABS 2EVE$$WIDGET_SET_MARGINS EVE$$SHOW_WINDOW_STATUS EVE$DCL_FILE_QUALIFIERS bEVE$$WIDGET_TAB_SPACES EVE$$UNMAP_ALL_WINDOWS EVE$$SYS_WINDOW_STATUS EVE_SET_SCROLL_MARGINS EVE$GET_STATUS_FIELDS0EVE_SET_WILDCARD_VMSEVE$SET_ALL_WINDOWS/EVE_SHOW_WILDCARDSEVE$REMAP_WINDOWSEVE_SAVE_FILE_ASEEVE_SHOW_BUFFERSEVE$MAP_CHOICEShEVE_EXTEND_THISJEVE_TWO_WINDOWS` EVE$X_UNITS$EVE$$WIDGET_EXTMENU_ENTER aEVE$$WIDGET_BOUND_CURSOR EVE$$X_RECOVER_QUALIFIER TEVE$$WIDGET_GLOBAL_ATTR `EVE$$WIDGET_FREE_CURSOR MEVE$$WIDGET_BUFFER_ATTR EVE$CREATE_MAIN_BUFFER mEVE$$WIDGET_CLEAR_ATTR EVE$HELP_PROMPT_BUFFER (EVE_RESTORE_CHARACTEREVE_PREVIOUS_BUFFEREVE_RECOVER_BUFFEREVE$X_MAIN_BUFFEREVE$X_TEMP_BUFFEREVE$CHOICE_BUFFERkEVE$$WIDGET_ATTREVE$$EXIT_RULERL EVE_BUFFER,8!EVE$$WIDGET_SET_PARA_INDENT_APPLY(xEVE$$WIDGET_SAVE_EXTENDED_APPLY(EVE$$WIDGET_SAVE_FILE_AS_APPLY(HEVE$$WIDGET_SPLIT_WINDOW_APPLY({EVE$$WIDGET_AT_EVE_FILE_APPLY(4EVE$$WIDGET_SET_MARGINS_APPLY$ EVE$$WIDGET_OPENBUFFER_APPLY$PEVE$$WIDGET_BUFFER_READONLY$CEVE$$WIDGET_SET_WIDTH_APPLY$EVE$$SHIFT_WINDOW_BOUNDARY$EVE$TEST_DEFAULT_DIRECTORY$EVE$$X_FIXED_STATUS_ARRAY uEVE$$WIDGET_EXTEND_APPLY QEVE$$WIDGET_BUFFER_APPLY EVE$$WIDGET_NEW_APPLY #EVE_COPY1EVE_SET_WILDCARD_ULTRIX&,&x&&`''(( ) . 0. . .00 181`12H2d22d3445(66X778 p9!:";#;$<%8<&p>'@(B)\E*F+LH,I-DM.M/O0X1 Y2Y3X\4\5]6^7`_8_9<`:l`;`<b=d>f?i@jAxnBoCpDpEpFDqGDDIXJJ0PxP0STT[,[ ]|]^``̮Hhij jm mmq4lgYh$ hjno4y&hz&Xz| |$}}$~ ~ NEW_DIALOG.NEW_TEXT,n}$4T8R(vv[ @-TB   [   X&  8}$U       (L LLPk[P $nl}$p[P pnl &lZ }$ 4hR@o&pqrsxu&vwxz&{3|{ L& Y = ( T L& Y = l \ && Y =      &(T D=Q  0(T =&! <Q ,} $ J  =Q   (=      =(T 0Q     (n &D&X ( !OPENBUFFER_DIALOG.OPENBUFFER_TEXT,n}$(] f#g&Z&# 0JZihINCLUDE_FILE_SELECTIONk[P $n}$p[P pn &Z }$ , 4    (أ 5    $n &\&X $}$ 5  %SAVE_FILE_AS_DIALOG.SAVE_FILE_AS_TEXT,̢"n#}$) $D ,d  ( T   m, 4/ X  @#n(&)&X)- -.}$/3&4&X46 6$7  89 >REPLACE_DIALOG.REPLACE_OLD_TEXTREPLACE_DIALOG.REPLACE_NEW_TEXT,<@nA}$E w$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T5"2ML&`N&ZNPQ}$ RS}$[REPLACE_DIALOG.REPLACE_ALLT`RP`X`}+$ a bcfe fgJh l`RPqXq}+$ r stwv wxJy }$`RPX}+$   J  `RPX}+$   J  `RPX}+$   J  ``RPX}+$   n]= Y T  Y" Y   t`RPX}+$   nW U Ț`R<C D  E F G L I J  K L O  O $P }آ$Q Q T 3|T V W X X [ T\  \ D^ ^ ] ] ^  _ <a a ` ` a  c  d Ie f f l $$ &    $    $Ԙ %    4~ ~,}$    3|\ 83|&" (&"    d3=3|Ja= =     Lt O ,}$ ""#$% %() )*3|**\+ +8,3|,&", -(..&".2O 24 456 6: :d;3;<=>3|>Ja?=B3BBSC C D GH H IL LR4$9 9,:}$;< <??@AB BEFG GJK KL3|LL\M M8N3|N&"N O(PP&"PT TV VWX X\ \d]3]^=_3|_Ja`=d e= f gh h im ms` ,}$    3|\ 83|&" (&" L&(T  1 28   d3=3|Ja= =     (q r ]r  r ,s }$t u u x y z z ~ &$ r    # r    0̎RdY(T8 JY(T8 JP  ! !$%& &))* *, ,p- -O/$ /0 0 12 2 4(O6$ 67 7;; <<J@ ADDJQ n nQ L&&X D&&X $ } $Q . 8   *'WILDCARD_FIND_DIALOG.WILDCARD_FIND_TEXTFIND_DIALOG.FIND_TEXTD(&&3| L& Y =  d && Y = \( T D& Y =       & =  $  \(T &&\ ,}ҳ$ Q (T  x!&!" ",#}ҳ$$% %''Q'( +*++2P }p$0LRdNYN(OTO8O PQQJST[VYV(WTW8W XYYJ[]P^ ^_` `bcd dggh hk kpl lOn$ no o pq q s(Ou$ uv vyy zzJ} ~ R\&  &  3|= 7S$ PP7{$ PP7#$    L7+$"p  P7$ 7$ 7$    8 7$"S P7 $"! P7$" P7;$  7C$     hR X j    l    473$  7;$ 7C$  7K$  7S$  7[$ 7c$ 7k$ 7s$ 7{$ 7$ 7$ 7$$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T:9"C 7$  7$  !7$! "7$" #7$# $7$$ %%='- !9 !AS !9 !AS !9 !AS !9 !AS\|@ 8 J }$ VMS\*%\\\\]\\\\\\\\\\\\\\\\\\\\~\\\w<>[\:.doxanslupf^+\\\\\\\{@ ; M }$ ULTRIX\\.\^$[]+*\\\\\\\\\\\\\\\\\\^\\\\\\\\\\\\\\\\\\\\\\\\\\\\\({(] e7$&JZ7$&IJZ  &" Q & J*   &F Q & J*  i SET_MARGINS_DIALOG%SET_MARGINS_DIALOG.SET_MARGINS_LLABEL%SET_MARGINS_DIALOG.SET_MARGINS_RLABEL%SET_MARGINS_DIALOG.SET_MARGINS_L_TEXT%SET_MARGINS_DIALOG.SET_MARGINS_R_TEXT$x n 4 \dx & &X  &" &X" # # 8# $ % }X$& ) ) 8) * +  . . 8. / 0  5 %SET_MARGINS_DIALOG.SET_MARGINS_L_TEXT%SET_MARGINS_DIALOG.SET_MARGINS_R_TEXT,w7 n8 }X$> Lv( ]   e     H     &"w  Q  &I J*  i SET_PARA_INDENT_DIALOG0+SET_PARA_INDENT_DIALOG.SET_PARA_INDENT_TEXT$u n 8 \u &T &X       +SET_PARA_INDENT_DIALOG.SET_PARA_INDENT_TEXT,t n }s$ $xtm Pt(=***+,- -012 25555  57 78 8< <((=T> >@BBCCxD EE=F8OH H I lKK LlM MP QQ=R8OT T U Y Y^ } ?  B B &"B D &~E &XE G  G H pJ )J K z K M  M N  O sP P XS  S (jT T z U  ] "BUFFER_DIALOG.BUFFER_SET_TABS_TEXT5BUFFER_DIALOG.BUFFER_TABS_AT_EVERY.BUFFER_SET_TABS_AT0  "BUFFER_DIALOG.BUF_LEFT_MARGIN_TEXT0#BUFFER_DIALOG.BUF_RIGHT_MARGIN_TEXT0%BUFFER_DIALOG.BUFFER_PARA_INDENT_TEXT0$PP_ na Qg (Pk nm  n n &\o o lp  r r 8t s t Jh u v v Jhz { { { &\| | 8} { ~  @   @  |   &/\ 8 |  @ ]  @   }$  N($]% %,' x,'(42+v,w.n/o 1 1p363q5B5r99&X9s<t&=u (?]@ @AeAQIHG&jIJZIQNML&3NJZNQSRQ&SJZSQXWV&XJZX^]\&^JZ^cba&icJZch gf&6hJZhm lk&mJZmQr qp&rJZrxsTx vu&xJZx~q~|{&E~JZ~r&JZ &JZ&JZ&&\JZ i GLOBAL_DIALOG(GLOBAL_DIALOG.GLOBAL_SCROLL_ON.SCROLL_ON)GLOBAL_DIALOG.GLOBAL_SCROLL_ON.SCROLL_OFF.GLOBAL_DIALOG.GLOBAL_SCROLL_JUMP.SCROLL_SMOOTH,GLOBAL_DIALOG.GLOBAL_SCROLL_JUMP.SCROLL_JUMP'GLOBAL_DIALOG.GLOBAL_CURSOR.FREE_CURSOR(GLOBAL_DIALOG.GLOBAL_CURSOR.BOUND_CURSOR(GLOBAL_DIALOG.GLOBAL_TAB_MODE.TAB_INSERT(GLOBAL_DIALOG.GLOBAL_TAB_MODE.TAB_SPACES*GLOBAL_DIALOG.GLOBAL_TAB_MODE.TAB_MOVEMENTGLOBAL_DIALOG.GLOBAL_TABSGLOBAL_DIALOG.GLOBAL_CLIPBOARD#GLOBAL_DIALOG.GLOBAL_PENDING_DELETEGLOBAL_DIALOG.GLOBAL_SEARCHGLOBAL_DIALOG.GLOBAL_BOX_SELECTGLOBAL_DIALOG.GLOBAL_BOX_PADhE'&&x(&Z(*(+7#$+ , -7k$- 1GLOBAL_DIALOG.GLOBAL_TABSDZY&x[&Z[](^ _}$ ` a b}$fGLOBAL_DIALOG.GLOBAL_SEARCHC87&P9&Z9;< = >BGLOBAL_DIALOG.GLOBAL_CLIPBOARDCIH&PJ&ZJLM N O! S#GLOBAL_DIALOG.GLOBAL_PENDING_DELETElBml&Pn&Znpq r s wGLOBAL_DIALOG.GLOBAL_BOX_SELECTA~}&P&Z   GLOBAL_DIALOG.GLOBAL_BOX_PAD0AnvY 8vT   wY 8wT   nY 0n    s&X\ `sT (7k$  7#$ q6\ 0q   rB\ 0r   ! oY o#@d h7c$ D7$  7$ p \ p }$=&@&Z (GLOBAL_DIALOG.GLOBAL_SCROLL_ON.SCROLL_ON8=&@&Z )GLOBAL_DIALOG.GLOBAL_SCROLL_ON.SCROLL_OFF<&@&Z .GLOBAL_DIALOG.GLOBAL_SCROLL_JUMP.SCROLL_SMOOTH;&@&Z ,GLOBAL_DIALOG.GLOBAL_SCROLL_JUMP.SCROLL_JUMP8;&@&Z  'GLOBAL_DIALOG.GLOBAL_CURSOR.FREE_CURSOR:&@&Z  (GLOBAL_DIALOG.GLOBAL_CURSOR +$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TJ"e.BOUND_CURSOR9 &T &Z    7$  (GLOBAL_DIALOG.GLOBAL_TAB_MODE.TAB_SPACES09&T&Z 7$  *GLOBAL_DIALOG.GLOBAL_TAB_MODE.TAB_MOVEMENTt8&T&Z 7c$ (GLOBAL_DIALOG.GLOBAL_TAB_MODE.TAB_INSERT7( ]   e|  7$  &K JZ  i AT_EVE_FILE_DIALOG$AT_EVE_FILE_DIALOG.AT_EVE_FILE_LABEL6(X ]Y  Y Z e|Z _ 7$^ ] &M_ JZ_ a ie SAVE_EXTENDED_DIALOG(SAVE_EXTENDED_DIALOG.SAVE_EXTENDED_LABEL05nw nnw*5RH`  J  }$J JDs =3|&(  "E ""% %4&}B$'( ( )8*E "*, ,.=/=v0813|122282 384=5}B$67 7;;=<8=E  =>E  >A ADCBDD E4IKKN};$OJP QJS1SRS}1$W=X X^1() ]*  * + e|+ 0 7S$/ . &F0 JZ0 2 i6 EXTEND_DIALOGEXTEND_DIALOG.EXTEND_LABEL(0p}C} ~}`$ }h$ / CQ $ K$ rememberremember /(] e\ &,JZ &JZ&JZ  & J*   &yJ* ZZ /&l&!!&Z!"&#"$ $&&JZ''JZ))JZP,&,-J0 023 7T:7$9:JZ: <L?7$>?JZ?BiH ATTR_DIALOG&ATTR_DIALOG.SAVE_ATTR_BOX.ATTR_SECTION&ATTR_DIALOG.SAVE_ATTR_BOX.ATTR_COMMAND(ATTR_DIALOG.SAVE_ATTR_BOX.ATTR_DONT_SAVEATTR_DIALOG.ATTR_SECTION_TEXTATTR_DIALOG.ATTR_COMMAND_TEXTATTR_DIALOG.ATTR_SUBFORM.CURRENT_ATTRSSW.CURRENT_ATTRS ATTR_DIALOGL *t([T\ \]n(_T` `a bcefhhi3|ikn"n ntsr&t&Ztv ~}&M&Z`&&Xt , P&&Z&&X \ z &+%  }³$ (T  (ATTR_DIALOG.SAVE_ATTR_BOX.ATTR_DONT_SAVE&ATTR_DIALOG.SAVE_ATTR_BOX.ATTR_SECTIONATTR_DIALOG.ATTR_SECTION_TEXT&ATTR_DIALOG.SAVE_ATTR_BOX.ATTR_COMMANDATTR_DIALOG.ATTR_COMMAND_TEXT $LOCAL$INI$(% kD%&#JD%n&h&X }±$O  )WRITEDELPROMPT_DIALOG.WRITEDELPROMPT_TEXTp$ n p[P   k[P >j[P }X,#n}$4#{{ |" statedd#4 &3 " state the_buffer$"8 n9 u= "B &TC &XC D E F }$ G H w M EXTEND_DIALOG.EXTEND_TEXT,0"O nP }$V $"g nh xl !r &Ts &Xs t u v }$ w x t } 'SAVE_EXTENDED_DIALOG.SAVE_EXTENDED_TEXT,(! n }$ $  n {   &T &X  }$   #AT_EVE_FILE_DIALOG.AT_EVE_FILE_TEXT,$  n }$  n &T &X  }$   MARK_DIALOG.MARK_TEXTH n &T &X  }P$   GOTO_DIALOG.GOTO_TEXTH PI  I LK  K L L M N O O Q 4R PS # S T T T U V W X X ] ^ A_ _ ,` a }Q$b b f &<j  j k k m }$ n (q F q r }Y$y $z J#     ( ]   e|  7s$  &D JZ  i GOTO_DIALOGGOTO_DIALOG.GOTO_LABEL( ]   e|  7$  &D JZ  i MARK_DIALOGMARK_DIALOG.MARK_LABEL0P  s#A  }Q$   Y 0J  4  t5  $X( ]    i EXTEND_MENU_DIALOGP          Z   m  TEXTEND_MENU_DIALOG.EXTEND_SUBFORM2.EXTEND_MENU_LIST_POPUPSSW.EXTEND_MENU_LIST_POPUPSXEXTEND_MENU_DIALOG.EXTEND_SUBFORM3.EXTEND_MENU_LIST_CONTENTSSW.EXTEND_MENU_LIST_CONTENTS`        d{$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"v  &   JZ &   JZ XEXTEND_MENU_DIALOG.EXTEND_SUBFORM1.EXTEND_MENU_LIST_COMMANDSSW.EXTEND_MENU_LIST_COMMANDS+EXTEND_MENU_DIALOG.EXTEND_MENU_COMMAND_TEXT)EXTEND_MENU_DIALOG.EXTEND_MENU_LABEL_TEXT & &X  &  &X  :6Q  A  , }$   # :6Q$ 8$ A% % 8& ' ( JZ+ , ,. / / ,0 1  2 4 4 ; v= C +EXTEND_MENU_DIALOG.EXTEND_MENU_COMMAND_TEXT)EXTEND_MENU_DIALOG.EXTEND_MENU_LABEL_TEXT  XEXTEND_MENU_DIALOG.EXTEND_SUBFORM1.EXTEND_MENU_LIST_COMMANDSSW.EXTEND_MENU_LIST_COMMANDSn p q r r w w {   & JZ  & JZ XEXTEND_MENU_DIALOG.EXTEND_SUBFORM1.EXTEND_MENU_LIST_COMMANDSSW.EXTEND_MENU_LIST_COMMANDS+EXTEND_MENU_DIALOG.EXTEND_MENU_COMMAND_TEXT )EXTEND_MENU_DIALOG.EXTEND_MENU_LABEL_TEXT        ,     i      &f &Z            :   :   5 @ 7 $  5  ( 7*$  o   " 0DXl     t  `  L  8  $   p o m o {   @ Z   1 XEXTEND_MENU_DIALOG.EXTEND_SUBFORM1.EXTEND_MENU_LIST_COMMANDSSW.EXTEND_MENU_LIST_COMMANDSTEXTEND_MENU_DIALOG.EXTEND_SUBFORM2.EXTEND_MENU_LIST_POPUPSSW.EXTEND_MENU_LIST_POPUPS(EXTEND_MENU_DIALOG.EXTEND_MENU_SEPARATORselectnoselectfileeditformatsearchviewoptionEVE  ()XEXTEND_MENU_DIALOG.EXTEND_SUBFORM3.EXTEND_MENU_LIST_CONTENTSSW.EXTEND_MENU_LIST_CONTENTS       ! !"$0Lh $%  &'  () ~ *+ g ,l- P .P/ ; 041 & 23 8Z88: AXEXTEND_MENU_DIALOG.EXTEND_SUBFORM3.EXTEND_MENU_LIST_CONTENTSSW.EXTEND_MENU_LIST_CONTENTSTEXTEND_MENU_DIALOG.EXTEND_SUBFORM2.EXTEND_MENU_LIST_POPUPSSW.EXTEND_MENU_LIST_POPUPSselectnoselectfileeditformatsearchviewoption< @R,          3| ( V T   V # TT P J#    V V  kV  I ^ =V     J#  =V  V # 4 ( F       =V          lV   U    % typeendstart select_allcurrentstartboxendtype     I5 & , }:$    6       " k          &,   =*  =u @   }8$  =u   d e f f i i &,i i j =*l 3l l Sm m (o p }0$ r Ls t t (v w }0$ y z =v} }  D E F F I =*J 3J J SK K L }@$ M $N N N =Q Q X  + , - - 0 =*1 31 1 S2 2 3 }($ 4 $5 5 5 =8 8 < L@R, 3|      & `&&A=* ,=*3|3S :3 H! !(" # # $%8(3((\) )0**1*w**8,8.3../  0 G 0 11 2 23=6 6<L ,}$       3|  \  8 3| &"  (&"    d3=3|Ja =#$ $ %( (.h4 Z J [ ] ^ ` 7$` b "b 1b d 7$d e 7[$e g (h $i k l o p u &#cu sw |vx x z J |  | ~ ~    w  JQ( ]  (    JQ  7c$  J   7 $ Xb 7$ M[ integerintegerintegereve_set_scroll_oneve_set_scroll_on;eve_set_scroll_smootheve_set_scroll_smooth;$V03-01280B= ,=  P @R,U&&dS8 3| 3|X <  R|HJ%U HJ%U 3|&cx  , &L&K&J88 | J%=UJ%  = UX xci$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T}L"!&a "#&S$ $%%&3|&'=)& )..1 1226 6H7&SY8 8$9J'"<Dl (#dL  3|=(T    H STV& V[ [,\\]3|]_=aab1bc&hcldtddf g$ii jkp1kpoptpMp<kpmqqsvv| T&*" Buffer: !ASdTFGIIJ1K K4jLLM1tMMPPQ1R R4jSST1tTTW WX1Y Y4jZZ[1t[[aacS@EVE$GET_STATUS_FIELDS THE_LENGTH THE_FORMAT REMAINING THE_FIELDS THE_FIELD|&T  ("  "& x&(T ("  "  "P(]  (]  (# ll,, T      L   &%   & \& P &3  ` )*,,-3|-/&/11p2& 24 45=8:&3: ;=CtX_ ,` &#` a $b &#cb h h n \PT   }8  &X5  $ $%!((C]) )* *+7s$+J ,JaI..&hv.J.Jb/Jh: 02 C23Jc4J5C 6 68C 8 :C ; ;=C = BtCCDDG&,G5G H IJM MSMAINMAIND& Y  @\PT   }    \PT   }w!D 0R(| } ~    JQ  P   t u  s   t ( u T  ( J'u T u  H  }$      4|R0Pt|}~   }&#  PP& S8A (=#  tP# \& \ = =  tw }С$ Dwo= 8Z [  Z [  (# <<< (Z  [ Z [ Z [     Pl lmm n`|oIotooq qjrrtt{$<|R0Pt   }&#  PP& S8A (=#  tP# \& \ = =  tw }С$ Lxwo= pLRdPZ , XsA !Q% %O(w(@l)))l** +,w u-w-w.Q1 13}478A; ; < <<}>??AACtDDFGHAI IJ(M]N NDO}r$ PQ QU U8V}0$WX X[[&S\ \] ^_bb&cc&*wccgg&7g|ipij j4k}x$lm m noo(pTq q,r& s s ty&;yz&Xz {&h{ |&`| ~ ~t& & &E&\o|&dm&7sA sJQJ* J<  J  J? J? J?" J?+ J? A su   SPLIT WINDOW|R0Pt lS u@lu lww 8Q $lww   } &w H :QQ$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T" w  8  u   w@lu lww$8RP 0|= DQ 0}%    }"# #%%(w () )- - .. / u00022&723=46 6,177 89;<}>@ @Fh\PT   } &%  w& P 8l p= \\PT   } wh& P l \Xmtow o r7H$q7;$r stuuw w8x}$y y zLO|! | }} $  }С$ \PT   } w  ou(T ,&   w D1 H 4 $}С$ d8tw 7H$7$ 1 8}q$  LO!  }($  }С$ HRP@ 81    <Q  (QQA 8=$   }!" "$$& '((* * +&b,&dw,,. .0 012!415561778 9$:}$; ; =1>>?&b@&dw@@B BD DEF!HIJKL M$N}$O ORRAS S,TVX=YY_h0| (}P$  }H$     P  ,}b$ &c&Sw(T 7$    " :6$ $l&( &( (8)}P$ *+ + -.  0027$2 6 6Du77R 7)7 8:(; T< <=) = H? d?? L@' @H@ d\A AB G H(LTM MO7 $O OQRS SU :6W WlY( fY[ [8\}H$ ]^ ^ `a  c0e7 $e k kDummR m)m np(q Tr rs) s Hu duu Lv' vHw d\x xy  4~ $}$ j d ,}ؠ$    %}ː$ %%dw(T   J hQ% <&a  Jl X w 0 w u! w! w " $ &=$ & & X' & ( ( ) + &=3+ , 2 @  R|P|V (W TW X ,X 8X Y Z =u[ 3[ [ S\ \ 4] &5x] ]  ^ L_ &5` 3|a &5wa a e 4g J% h UXk  k l n o  q  s (t Tt u ,u 8u v w =ux 3x x Sy y 4z &5xz z  { L| &5} 3|~ &5w~ ~  4 J%  UX       3|  O  P 5  #    =   3|  &5  =u &c  &S u  u     T ] , &^rG   &    &d  &L  &K  &J    &dt   &bv    @  $ s   8  $ s   J%F  :   3  S $u   < 3| &5t   U J% X    < &#    #  =#  &h     &G  8 t $     $ $   + / 1 2 # 3 5 J#5 6 J#8 J9 J: # > B D F J#F G J#I JbnJ JK #Q #R U#X eve$scroll_dispatchveve$scroll_dispatchh0Xr s t t z D$ 7$ 7$      8 }$    r   8 } $  0 }$+$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TD?"   ܱ( T   & P   &* 7c$  &h 1 1n w    (L @k m              &h 1o w    &G  &*   $ 7$  P 7$ " 7$ "n   1t        H 1t     j      L $k m       % 7 $ 0: } $! ! % eve_set_scroll_oneve_set_scroll_on;* + %. 7$. 0:/ }$0 0 4 eve_set_scroll_oneve_set_scroll_off;H9 : J%= 7$= 0>> }$? ? C eve_set_scroll_smootheve_set_scroll_smooth;H I J%L 7#$L 0>M }#$N N V eve_set_scroll_smootheve_set_scroll_jump;ܫ| Dh}$ }$      *  *   Z  [ !\ #m#. $W &1 & '7$'1 *X *+ X ./01 2 3 K4 ) 77K$7 87c$8] 97k$9 ;+# ?^ A _ D ` E a F b IM oIvI2 O Oc P P/ Wd WX d [3 d [B\JQB^J"B(`T` abBhe hi e l3 e lnJ"p&#jpr r,sJBtJ u,vJBwJ(zTz { |J?"& df f 3 f  g g 3 g  vh mh 3 h  Gi =i 3 i j j 7$3 j k l l 3 l Dm m 3 m En |n 3 n Fo So 3 o Gp *p 3 p Hq q 3 q r s 4m s s 3 s  t u u 3 u  v w Qw 3 w x y !y 3 y z  z  3 z  { | | 3 | u u} } 3 } ~ l~ !3 ~ ! $ H$ ) )*? -3 3- 3G 345m 56G 78G (> T? ?A A B C E(J TK KM M N O QXX Z _gf] bvt` c im il moq#2qQstm5tAtum,uQvq8vAvwx%y\L%{TP%}PT%JX&B\':P Dz yt| {d~ }T Dp! p  m 7)$~7$1 pw1 o/bin/cp -p !AS !ASstringintegerintegerinteger COMMANDS $PROMPTS$MESSAGESSHOWreturn eve$$show_window_status $CHOICES$return eve$$sys_window_status $RECALL$LINE$ INSERT HERE $RESTORE$$RESTORE$CHAR$$RESTORE$WORD$$RESTORE$LINE$$RESTORE$SENT$$RESTORE$SELECTION$SHELLDCLSPELL$SPELL$ $SCRATCH$ $CAPTION$[EOB]HELPreturn eve$$sys_window_status $HELP$PROMPT$ BUFFER LISTreturn eve$$buffer_list_status $WPS$RULER$[End of ruler] TPU$JOURNAL:eve_next_bufferBuffer next_buffereve_set_buffer('read_only')write#set_buffer (set_buffer "read_only")eve_set_buffer('write') read-onlyset_buffer (set_buffer "write")eve_set_buffer('modifiable') unmodifiable$set_buffer (set_buffer "modifiable") ${EVEKEYPAD} EVE$KEYPADEVE EVE$KEYPADEDTNUMERICVT100WPSEDTWPSeve_set_keypad_eve_set_keypad_eve_set_file_backupeve_set_file_backup;eve_set_backup_control_string(''); eve_set_backup_control_string$(V03-0728 & m#&0# H& &!Y&V,8 $&*&VX&=&V YS8&*P8&V,8+8 &i88 m   &  jm&l x (}z$ MAIN ,  Ė4,  } 4  ""A# #%`() *+ ,(--.. 023 59B9=l:m:: ;=?@A AD DEF I+I8I JK&L(N}$O R RT}$UZ([}$\ b#c#nccd etg gdhi8i jHk l(m}$ nov vx|#24|} ~PO    $   t#2P&*P8   $ pP   YS8&*P8&V,8+8  get t `R<    t ,}$ y0L[$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T٦" 7p$7$ 3|&m ,   &* O  ,  p1RP < l  &3 m "lO$ $8%}$& & '(( *+&G, ,. .lO0 081}$2 2 344 6P87$: H;< < >Am,ABm+B 8BAC C0D EF F HM N N OP  Q ,Q R R S  U (X YZ Zbbd djbuffer ((T     ( T      $A  d8RdRdHdtxr|s)"  )))'s()+ /3|/004:7$97$:;<= =@EG Gm GI IKjOO#OQRT T Y Y8\& \^ _f fLg7$h &i  jl l|p}{$r&r (s Tt ty& z4{& { | }\& m#  \&m#     H  s(T XtY $&* <(T   t @  }$  .tpu_journal .TPU$JOURNALrecover buffer Dw w y $y  ltR4l}$  $ 8  # $ ,X  ,l   3==&Go&P  4Y: =h (8    m l (    (    (    (j    (<      *%...?[{TH$   4,  }&9(J&@ LJJc& LJJc& (Jc& (Jc&:&/5  &@ 4 }$Xa ,}$DM  & (&*!#24!###% %& '4)}ʰ$*  +,--/ /0 455J66&*Y8 8l99< <=}Ȥ$ ABCCE EF JKKJLL&*YM MlNNQ QR}Ȥ$+WWW&8W+X8X Y\P]ddj/OUTPUT=filespec /READ_ONLY/OUTPUT=filespec/NOWRITE(y$ys&C tu x& y`| & 0J  #2 P&#2mlx#  4 J.tjlXw$}H$ +   hw2m 2@ 33R4}$ 4p 55(5u7o7 77R7}$: :<<>$>? ?E]Dv=& (6$ p&G = , u:& (6$ 3\ x1 ,18 , u8l`t& @;  ; h sl R\8 ;  6      ; H Q H A   }:$ ( }B$  ;  6      ;  #0 ( H ;  6    $ #  ( #   ;  6     ;  6    6 , }Ұ$        6  =* 3|      m  H   !  "  # 4$ }% & | ' s* ; + 2 &2 4  5 @6 6B$7 6 8 9 9 < F m F pJ #1]K K L "O $DX O O P Q Q  R xR T T U V lX X Z  [ [  \ \ L^ $ ^ _ _ l` ` a b Xc $c e  e ,f  $ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T""QrTnMRRF:eEm W\Щs\Q']C~pJqXM9Ll AiZLNWRwϳY[eJb=N`rKH^Ao'Y3 r}S$fQ HEZՃY2E/ĆÅT|9aX}/=|C?X]zV0C8"R&[b*8Fss.?7RPP!:<36[PRh9c.o$GC92.Cp=g.W:v GoyKDZ<qL?EQ=wSdb9n`G]'29I.S].Ut S2!bo /Ѣn8n̡ToX%!yD) (VxGB?`FV37 OI] x/,wVxAg<5KOPQv3+~Lp]קzXRHͬEYEfIwc Y8ǹ)"Tq4 _9c7IVHdB] Β.RX]w 6dAN> *D5ۆ #Z^'5lz+*`Y‡Om7e*nX5^yl!r?ZhǰjP ALLTY9'?@ N}7VD-zW"MoVGQTl0hA-]kTY#pw YTU)S{%a# 韎 M}L(7o-סV e2B,t L Ks:K!CCnE53XzZʸK {t lLOFm!fUVO?[t@iIUS R>H__3 ^[b3MK.+UL;g#W%8BiA&1w0v*6Bd("M*#pYĨK7a9R8 Jqj@wq[U IC b@4W|SFfEOe^D}_$A4R .F3ZhS)CBO\ "YMm6 A_U6SgOS7 I#+8CAq/-BdaF,hA) 5<< IHkO\b}sIw zkWq>ӝy G52ODP!E~4 }NCpUŠtCWӃr\y zgQY[˦|[:b%cwE>q6|R:&,maqf-5ݱ7*]rZ]W+(kBտgJT`YnCNng/pɾ*I7vfcϢ[ J%16>w8ưQ,''ֹDryRZxz7qpw;y|DʃʪHb;͸p30] ^g ބ ʞ<~ved%f/9ÃZ0#/R5.1cvyrhڪDDn nSM `&G>] lAy}LKZoht#9oa]UȖ[o4UwQ9=?83YyaWFcro6E?%[#35f H^>4DwaL`'HH3 T~^bPW!V [D4jF__GkZOvC ^2A=%cg;-2kP=%DB͢x~B^IAFi_]MF}G%nC{Q%US/@2YpPn -xRCHU @8f"2}WH| #ORp/`}FR/{a0 CE%Q(jD ed=*@Ҹ8@ 0wwzVb dWu]-b'qSm(?sl&42.Nμ\\/hbpbfb:Cu4,xCP nş_)8y]L1ѵ%G Iք/V4zwBki=gOiq0\ ab^dKŎD-LqfP! NJkAG /dx9$ _3bXMϸrk YuďK)htX3d)ڞ#rlY;?pK&wrGf"*k hlY`}pFVg2pAuA};taYc)X'LʹZۻ$*)0v0G!}N2nK|)gڧ@qMW`cwf|{|0 H-IXD"9#<˿A)î+[$Xji[b/K_ӲQNVK ý4>a@&pkm-ǛQy4(q9sdj+$NJRAALI~~6,.WfWvP,nf{EŠP[=S3\M:  IXZK#SLoKUP;,: @>qد x:UYAwJ) XGktDjF)]X\H*)_e1(thk!5Mе<k5 IG# 9-]8}ÄzRX:+2,? 9[j;ar' 4j[N|`^cam?9-|n 9P5Ix)-`/g`wA/t{uA-:<&\3f-D i FS`X+SSAR%\RUmuN&V+uUάr]JoSGD^]S7 WW[YˤM_H)IY+9aYJpi_O%0T| MVι5s&R9Cǵr~~b䑕?YbI:D6`x0y>&"fHHj`=`+@aWsAvce_0Tz~2ڋ4G&]!DB$fFV4HS5kV$]j,ӽ&HbóNBy]) p`zBBo |QH~#nn\l x`sv#Rc9|睁(ITGJtB$ vĄ t˃ޤBůhT%8F<֞'w(VDd0ZPIf8XW #ZIu;I+SO稕>b{W l9l &;qq:y Q/],<ΨӖ6rٝDxs|O N*VUzK ڱokQ |`q/YE6_}\6: 7L\Mdm W -NkJ勔Gz&o-ASN{+ox%Y< ؉, o5G`CB֜)9ld=.sτT ȻKI5f ڟ|fnl axE< oխBlIOVH>[W R4D5M2(}Za Cś;؃E VzW7?@EQ#T\ P_1:뜷RHBJSpPz/y!(uo=sRvF&«W|+hYOVJZGb{`D/NBؤMw\tZϖ1ߠJcJ1_noc/(7g}DI,ya~}U`tyY˕_~euk6%7-o|8%E_P;6^et% DX{0F.&HUZtjn\t2SHHqwzQ:鼜(ІqXr` ]]|ܺ S8c Ye TXBH>r;02ᘺ"\D ?Ty$] =<uN3 <#f!0La0jY 7.,sk n  _GӎC$6PU_ +{[f d\?%F M;' ?hmJ@ZUBEV d:R?2/d'k1{-FcLˢ8jVbpOJ!ce0de7r Yv 53(~-/x RhؠxO,{pIVh{ med.0 n{"j&ӯ@/9h-CCM(4b@IaiOנguVj+B+?̕kaN\tA$soK`Nu.m&hXm&L7E?ad%"wi!=-2;uxc]KE+S`0Ҹ0t. dB3Qf3otď2Lqr# |̍wA@a4t nPקdW &m`:@+buL W xމz3Hue:p3AF>rjZ;9a;҉.:o'iSna"_`%4# q )k# 5kw;lvPԳht{2C(|' G˖wwa\SZ` ZnbȪ_lt(Efj2wG#9r{ ry^tss<қh>T 1U2giEm17kC!r#-n}%wRIZ|rܦZ9['f$MUxm(ǖnc^oZ%"`^c{Pc_jw0s`ڹ ~\tVϮmwl{́&{b$pbhO2FubqOF)'{T"aw;q?%q'/38us=+8+ji2c'ekS{bC> HRgqq|.?TS/DK<"g-/ŭQڌA%£$;JfKH 6CWwWeM5[$)6ۻ S >rHg`o_ܯ®9kL ,:^xģpK$EDix[V2AhJb>r_sC|% -SYnoWHm &:>K$ l^5UYK~z!V16l>d:7DnФ٧VxO* )iPANGQ:Fj7A`#BP\$K?~UL[f ^1#DhWb!CݲZ{MR?7_A ٹE_VCR؞OѾOd66IvQM!RƘNoSL*MIH$}*"b۴C~x4}o<̠eV7+V gHu3(O"m,/b۵m=94 \;nA)5,* iEpeGn8%Հ, +A.(+vY@g]$DAD)F o\xeJQGiG8kJng˸Ąhg@?MMq@~gXZ RScA^Vj0et惍6ErBݳ$lJ;PŅHpk wR]fKk~Q۬_|)3#'sa-Q^P'Ԭ2ZŦ =+m{:5[&IFO 4үQ\Eyhc0ʘFߨ%k\1^nP] hcv}\j$F;Fh/xl#9y&T4if-7E56y1;FɭP|V˳y&|DUGE_Sj]D1DiO>X9/nC87CE $8ڍ*;ْ/ nն7d8na Qjω ֬lwZKQ`"Yent cLatq8`UeJ:eB/\+g-oe/zn+g&c<.w&%)Cհ%<|t=N#$1pޤ#ST~@k(hsl 'fnƅmKEEf 8/'Q۪;%Dx|{zzXdhF~yo}!=ka4%-G}dlE D7ǎڝ5 @5g՞`=\lQxӨ6Ha CL[6MW쎊w`aĔF*< lbq #yvի&|J8drfQO,4 9//#\w'gM\l`DY&&@nq3Li`3Dg1ԏ.KgB^Uz`7[A9J9bQxU-99q'n–xva.q:N-Re@B=O[ YAXc?q9JYUr (ˢgWӵUOtCLIq#[6BfEORpcmc򑕲ᔿ*@K'ƅL4`ThǖJ{Ltz՛hy7^JƉ(* G5  UXqUZ zMJ)OqM_ܕgx2x VUH8aX &:!fA n6C 6< WRi/AFPt|7[kZ5w[RËAnO6@K[C|TsOq-Gv۴Q B q=gZ]3 bggS]JWYJW<śOTl FV'PG_H WK[t"U!{޸>J6v4(nsx-u)4CN[iWLA(DvsOL[GBU!NܞIg]M6_TbАGUW]XozU .1 XƸ⽇PNPssHg: zEKځ;4{E!r>)f]8z_t"igBUkxH9E-jsy^swLr .J'#{6!ߵN@_ZIJ) OqIA@GP}N5[ : I]Wm= ^sP?Eag''3BSqִkz.x_Έݳ_VtC VޔmZu Ji٥\_\x_<̷V P+;x jYa^#.ne қM/Q1swEWvls ;dYNpj ۰OiG6O`1_,1X*]x[o[xPpV'bx^ jJ.yVpLʴ 1 ^`xz|5MCZUXZ[^9$9 9a`A"D\~2zJwt>Dq4[h3=K\HXAOOfUũZ1Yy0mCC;-4:Sh N`}A+PDB,*sX ]wqNQ U8PH COc@TSG› 0EVE$PARSER_DISPATCH`EVE$ARG1_SET_WIDTHDEVE$QUIT_DISPATCH EVE$EXIT_DISPATCH$EVE$$X_ADJUSTED_SELECT_MARK EVE$$X_ATTR_SAVE_CHECK EVE$$X_ATTR_EXIT_CHECKEVE$$X_SECTION_SAVE_OK$qEVE$X_BUF_STR_RESTORE_SELECT$pEVE$X_BUF_STR_RESTORE_SENT$}EVE$X_BUF_STR_HELP_PROMPT$~EVE$X_BUF_STR_BUFFER_LIST EVE$X_EVE_COMMAND_PROMPT EVE$$X_PARAGRAPH_INDENT EVE$PARSER_MODULE_IDENT EVE$$X_WORD_WRAP_INDENT EVE$$X_COMMAND_DEFAULT EVE$X_PRINTABLE_TARGET EVE$PARSER_MODULE_INIT EVE$$X_SECTION_DEFAULT EVE$CORE_MODULE_IDENTbEVE$ARG1_SHIFT_RIGHTEVE$CORE_MODULE_INITaEVE$ARG1_SHIFT_LEFTEVE$X_FIND_NO_EXACTEVE$X_REPEAT_COUNTEVE_SET_KEYPAD_EDTEVE$X_FIND_EXACTEVE$X_RULER_LIST EVE$$X_WS_PAT EVE$X_TARGET EVE$X_LASTK EVE$X_QUITEEVE$QUITEVE$EXIT$EVE$$ENTER_COMMAND_WINDOW EVE$$EXIT_COMMAND_WINDOW,gEVE$X_BUF_STR_SHOW5EVE$SAVE_FILE_AS1( EVE$GET_FILE1  EVE$$EXIT1 EVE$OPEN1EVE$NEW1$VEVE$X_LAST_SECTION_BACKUP )EVE$X_POST_STARTING_UP EVE$X_COMMAND_KEY_MAP TEVE_SET_NOFILE_BACKUPYEVE_SHOW_FILE_BACKUPEVE_SET_KEYPAD_VT100SEVE_SET_FILE_BACKUP|EVE$X_BUF_STR_HELP.EVE$X_FILE_BACKUP"EVE$$EXIT_LOOP(EVE$KT_TOPIC_EVE_LIST_OF_TOPICS(EVE$X_ALPHANUMERIC_CHARACTERS(EVE$X_WPS_SENTENCE_DELIMITERS$EVE$X_STANDARD_FUNCTION_KEYS$EVE$REPLACE_WORD_SEPARATORS$EVE$$ASSIGN_WORD_SEPARATORS$EVE$RESTORE_WORD_SEPARATORS EVE$READ_WORD_SEPARATORS EVE_GET_WILDCARDED_FILES EVE$$X_ACCUMULATE_ATTRS *EVE$X_GENERATE_BUFNAMES EVE$$X_TOKEN_SEPARATORS EVE$X_SYMBOL_CHARACTERS EVE$ADD_WORD_SEPARATORS EVE$$KT_WORD_SEPARATORS EVE$X_DIGIT_CHARACTERS fEVE$X_BUF_STR_MESSAGES dEVE$X_BUF_STR_COMMANDS EVE$$X_WORD_SEPARATORS EVE$EXPAND_TO_CHOICES WEVE$$X_BACKUP_PROCESS EVE$X_FILL_SEPARATORS hEVE$X_BUF_STR_CHOICES eEVE$X_BUF_STR_PROMPTS'EVE$DELETE_PROCESSESEVE$$INIT_VARIABLESEVE$DISPLAY_CHOICESEVE$X_REPEAT_TYPESEVE$$ENOUGH_TOKENSEVE$$DOUBLE_QUOTESEVE_SET_KEYPAD_WPSEVE$STRIP_CHOICESEVE$X_RULER_KEYSEVE$X_EDT_KEYSEVE$X_COMMANDS EVE$X_SPACES EVE$X_KEYS(EVE$X_SOURCE_FOR_DEFAULT_BUFFER$mEVE$X_BUF_STR_RESTORE_CHAR EVE$$X_BUF_STR_WPS_RULER EVE$$COMMAND_POST_FILTER xEVE$$X_SPELL_SAVE_BUFFER EVE$$REMOVE_POST_FILTER EVE$$COMMAND_PRE_FILTER rEVE$X_SELECTION_BUFFER EVE$CREATE_NEW_BUFFER {EVE$$X_CAPTION_BUFFERAEVE$$PREVIOUS_BUFFEREVE$DEFINE_INDICATOREVE$$X_RULER_BUFFEREVE$X_RESTORE_CHAR&EVE$$SET_RESPONDEREVE$X_BUFED_BUFFEREVE$CREATE_BUFFERvEVE$$SPELL_BUFFER9EVE$X_INIT_BUFFERCEVE$$NEXT_BUFFER_EVE$ARG1_BUFFEROEVE$FIND_BUFFER,EVE$TRIM_BUFFER:EVE$X_AT_BUFFER3EVE$INIT_BUFFERBEVE_NEXT_BUFFERtEVE$DCL_BUFFER@EVE_SET_BUFFERH EVE$RECOVERI EVE_RECOVER! EVE$$EXIT2$\EVE$)7$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T6"$X_CURRENT_POST_ARRAY [EVE$$X_CURRENT_PRE_ARRAY EVE$X_OLD_HELP_FACILITY/EVE$$X_BUF_VER_ARRAYEVE$$X_DISPLAY_ARRAYEVE$$X_START_DO_KEYEVE$$X_ATTRS_ARRAYEVE$$X_STOP_DO_KEYEVE$$X_EXIT_ARRAYcEVE$$X_MARK_ARRAYLEVE$$FIX_RECOVERYdEVE$X_READ_ONLYEVE$$X_COMMAND_INDEX0EVE$$X_HELP_PREFIX8!!!," \" " " X###&'**p--26:: <!<"@$H%K&hR'S(T,`-\b08c3g4h5Li7j=pn>xn?? ?A ADC CD EF}ؤ$H J+J8J KL lQQRQRRDS(jSU UV' XdZ Z\ \\^ ^c  pB80  (T $(A    ( T  P $    STRING FILE_NAME @dR(}$ t ,}$  7P888 0 k$ x7$7k$(  $T(    l    xY X+K+) 8 <&*}$  @  , }$    (= (    p=(R {|~~A  6& 0   `7P88 X4}$i$$ }$7$7$ & L    NEW_DIALOGl;  )T    :0@Rtxrzr ( ( T      R#  }$    }   }  }   ( CT    x     C  Jc J C  C   C  C        A L #  }$ J $ $   C  Jc J C    C    C    C        J  7s$ J  JaI  &hv J Jb Jh: &, 5  ! J$ $ & & , 5HR03|}(C]  = 5 =  C t  = 3 \ $:C7 h B=83Jcj o     !# #($ T$ %(&T& 'p(= *3*Jc+ , - - 46:7 7;= =H>@ @A BC E@F-FFGSJDI=J K L L M U  _1XR4Pyz z~ | ||}~~=*t ,}$  7$7$ 3|S $3| <83|8#  "< }ڰ$ ?=  =8  ##n7$    include file @-nh nos stw {kEVE$EXIT_DISPATCH-&  ,}$ ( T    41 D 6 +  statethe_file the_buffer,!  & "  the_buffer@+(R & )& /,8 ##& *&R# & ' ( (+*),$    ,./0 0O3$ 344662 8, 9 9: :; A< <t@TA7PBC88C$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T@" D((ETF FGnMLM%   MOST7PUV88V W`ZBZ7 $ Zo^& ea& ij jOm$ mnnqq t tz the_buffer the_buffer the_bufferthe_buffer_namestate got_a_filethe_file the_bufferstatestatethe_file got_a_filethe_file the_bufferthe_buffer_nameeve$invalid_event (35914939))eve$unmanage_widget(eve$x_message_dialog)state8'Rx7P88 nJ@7P88 nJ@&(U,  \& )8& /,8 & *R#    T |7P88 (] ,1f#g!7#$ &JZih $ T7#$ l ! `7P88 n O$  lO! X7P88 n> &3  < &   & )& /,8 H & (&3q ,7P88 4!(("T# #$n,' . 4 the_buffer the_buffer the_buffer the_buffer the_bufferthe_buffer_namestateWRITEBUF_DIALOGthe_buffer_nameWRITEBUF_DIALOG.WRITEBUF_LABELthe_buffer_namestatestate the_buffer the_buffer the_buffer the_buffer the_buffer the_buffer the_buffer the_bufferp T U&:UW W X&X[ [$\ ] ^_7P_`88` ac cd efkT(l]m m,rf#gru&*u7$uzy&{JZ{~"~& j"& k(T nih$ &*7)   4&*}@$ NEEDFILENAME_DIALOG&NEEDFILENAME_DIALOG.NEEDFILENAME_LABEL!eve$$widget_needfilename_ok (!UL)%eve$$widget_needfilename_cancel (!UL) PHP }B$Q R R T T "V \0D W TX  Y @Z  [ ,\ \ ] ^ ^ b + b 0c }$d , e }$h i &:i k  k l p m p q  r s x y z  {  &^P  \ & #24    @ #24   m H #24   #24 O    D # j   , 7P  88 , ( ]   eR  &* 7$   & JZ  &* " & e i $  &* 7$  A L }$      %    -      J    . $LOCAL$INI$WRITEFILEPROMPT_DIALOG,WRITEFILEPROMPT_DIALOG.WRITEFILEPROMPT_LABEL+eve$$widget_writefileprompt_ok ('!AS', !UL)!" "%&`%''|(`()* *,+ +, ,.&`3. /|1}H$2 28EVE$$SET_RESPONDERhPR4J@J@J@& (] & &V 8&  $& 3 `J@   R4x/ 0 1 9 3 4 }$5 6 6 9 8 9 <  < = A  A B F t F ,G }$H I I L M N N Q 7PQ R 88R S 8S T 0X  Y k\ $\ ] x` 7$_ 7k$` a (b c d d h >i  i |j k m  m n  o 8p #24p  r t u v x  x {  { | } }    # #n   7$         #24   $   m \  L  8 }$    &  m5 K 8 lO  X           h & :Y   0 & Y 5      *  #24 "  & l    , }$ 7P  88  ( ]   e   " &  " &  i $ 4 7$         4 }$    6 (     $           t P +! 8! ! 8" }$# # $ % %  ( + <l, , .  .  / $1  1 4  4 5 5 8 : ; B +B K8B +C ) 8C D E F J YJ K K SK 8K L &*PL 8L M M &V,M 8M +N 8N O P Q Q W W ] ,` & c & f f l get file temp_buffer !AS [!UL]OPENBUFFER_DIALOG!eve$$widget_openbuffer_ok ('!AS')$eve$$widget_openbuffer_applP$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"y ('!AS')eve$invalid_event (35914765)eve$invalid_event (35914766)XR8    !   ! ' Mo' vP( 2 ( ) 8* - 3|- . =/ =*0 30 1 =3 E2   3 4 4 <5 5 =6 16  7 8 =9 =?  ( . D /   /   0 1       $ V    V   |L`R<abJ@cdhfgJ@hj&(Ujm. n n(qTr rs&:su uXv&vx x,z&*z{~ 0X   <V Y  L(Q}$h $  $} $ (W ] LJ@W J@#1#24"d!"Q( X$@l" l"X HW  BUFFER, INTEGERQ &Q S S T V V W J X JY J([  [ \ J ] $_ ` Jc c i o p q q t t %  u v v w x y y ~ H8   A  7P  88 <  i $   &* 7$        4    SAVE_FILE_AS_DIALOGpRD  J@     J@  3|    &(U     J@ ; 8 8  8 9 J(9 J9  7k$ J 9  9  = 9  ( : T : ; ;  ; : J(: 7s$J : : =: J@#3|#S##$$< &M= &q&so&'E '((< 8( )l*=+> < ,0-=.}$/112=4: 56=< $INIT$FILE$@FILE!   `   @O"     /EVE$PARSER_DISPATCH THE_COMMANDSTATUSH@@ AA BB CC DD EE FF GG uHH bNwritenowrite read-only read_only noread-only noread_only modifiable unmodifiable nomodifiable@R,YZ[^]^`b blf7$e7S$fghi im6nSp3|pq=*tbuwN xyz } ~ A  xA  @   A  &G :] ; D5 }$< = @j7 $  "  ((H 0JJc&*}C$ JJc&*}K$ Jc&*}S$ Jc&*}[$ 8}$  __ - set buffer writenowrite read_only read-only noread_only noread-only modifiable unmodifiable nomodifiable&&= $&!O $}$ &V0&* 0$C & &3   $ & O $}$ &V0&* 0@x~j ~ E {EVE$QUIT_DISPATCHpRDABJ@DEKHIJ@KM&NO>RS&(USTJ@V&VW YYZ&)[&/,[8[ \]  ^$_&3_a btd def6g1gRPh hi jkXo5o pq7Pqr88r s`z{iPJ@$ l7#$8J@ > h7P88 $> >J@REALLYQUIT_DIALOG\XR83|};$m  lG t lG f    `PH  ,  ds `tY $&*  *.tpu_journal *.TPU$JOURNALP Rx (T ,}x$"    "    3| 7$  0 7$ "$7$$ [U%$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TY"J'"(J (* *(-.".3m 34 4l7G 8#2489#59:R:;1< <Pl=a >)x>>Qn>>> ?$l@ @@BBAC CE E FK#2K7$KKMN NPJ PR RT T[\\=]J_7;$_1_aPdc7$d73$d ePih7K$i73$i jPnm7$lln73$n o=upq=vrPvu7S$v73$v wPxP}|7;$}73$} ~PP7C$73$ PPU   6- 0K   1RK P5  1RP1RPA |1RP $& Dm H&P $}j$ &) 7$H" $}$ &% Oww8 $s{&\&V,X8,&3 &%Yw8 (C] 0d 8dC     &   H = }x$ &*}$L     JcJ C ! !#C # %C & &(C ( 0&:1 103&3J5=8 ,99}C$; ; <H== ??}x$@"@H .TPU$JOURNAL;;-1exit(`04&\HR07777&*7#$t% D&:P 7R(x|TU[W&*W}$X uYY[[]&]__`&Va ab&cdJleegdj&*j7X$kl m8o s&3s t(vCTw wx&Cyd{m {0|JC }(~JCr  }K$  }`$  /dev/nullNL:(R t ,}$ 7[$7$ O  `&V ,}h$  P  set journaling@(R OPRRTU:6Y&Y(ZT[ [\\bmbc ,ef&fiij&*jk1kRPl l(m noq&3q rXv&Gw wx&Gy yz {| }~:6lm 7$    }p$ D\xT&*}$ J&*}c$ ,x(R &h&V  J&3 (CT  JC }S$ H(R  t ,}$ 7[$7$ "%O %( ()&V *,+}h$, , -`/J0&*0}k$1 15 5<set nojournalingpm$}  . 1  7$1 })$7)$(eve_set_file_backupeve_set_file_backup;,xm$}  . & H& $}$ }1$71$( eve_set_file_backupeve_set_nofile_backup;XHh`  }}$1  "m"$#}$ $)7ے$(7$)*+, ,/1 0611 31 3,4}ے$56 6;";=}$1 C7$1 pA81 oALCACCIabeve_set_backup_control_string(''); eve_set_backup_control_stringdm (}$1 } 0(; T  ; (< T  < (# XX<<< ,  6; <  8PW, X}+$Y Y]p ,}$  ,}$ $ 8xK }$ <$(FFV03-009@HPI IJ3|J O(Y TZ Zp[P[\\& ]& S]8] ^ __&`a=*b3b M$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T" b\c c`dTe eHg-ii~ jk8pQ Yq q r3|rs&t t&Su uv x x=y z3z& {,|=u}P~:  =3S 8(& 3|&\ @3Jc3S8 3=u3 \ =  = ( T 8& S = = t8 move_rightP  Y 8 8P:   3Jc@\nPo op3ppSq qr:t=uu3uuvv8w3x x y3yJcz {{ O}  }~  3|- tB=&BG  BBJc3Jc P: &BG BBJc3Jc C&QJ& lR  th3|B=U= = " t XL3|B=U="$Y% %&}$ '(3() +t +,(,]- -..1=2 4=5-55 667 8 9B9=::;3;Jc<=P>:? @RPB B8E1lDEREG3GH12HH8I3IJ=KK L3LJcMs#NUOP R7 S=T U W> X Z7 cl,$& & ( ( * P+  + , . Dv  . / =1 1 2 ; 2 u3 E" 3 =4 5  5 (6 t6 x6 6 88 t8 x8 8 9 =1: : ; ; C `XR8UU3| \       5 D 3 8 \ }h$ ,} $   @}$  }Ф$54B= x3B\ P:3JcU==`j  & ! @3|   ]B , }ʳ$        $ l}ʲ$    " " $''(3|(, ,01 13 4 46 68 x88 9:  ; <  A5 BD6 E5 FBF=G3GB\H HI:JL=M MO&P S VWXBX=Y8Z ^ ^_ _ `a ahdodo \PTp q}X$r=vst tvvxyz z}Y~ ~  3Jco28   1 > P  `Y HP# ( =    8 3|  S 0   }Т$   x    J o   x   R  6 8   }Т$   =uu  8 3  1x  8 3     =  3 Jc      =#   d< > =  R (  l    pQL >Q, 8l  > Q(( (>) )*< +> 0< 1$3( 33<;> <$>( >>>lD D E EFR FJ( JJlQP+P8P QDR( RR,S( SS UsZ ZR ZZQaSQaIAb bxg= hi lp p q qrR rOx xx~ l   LR X  ,8s R  8s R m TR (  l  s R __@_AT_FILE==EVE_DEFINE_KEYEVE_UNDEFINE_KEY'"T( (j  Rkov1P@1lR ,""$<s oR k(  X( r $` jmmo&""''") EVE$KT_TOPIC_t@R,uvwzyz|3||}=~ =(xuR  a$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T>*"1P1lR d = D=3SE  `=l: L   =3SE  `=l: L @@R,  3|=3S 11oR t( <l,:   =   8@R,  3|=3S(: 8m P2C  (xC7ˑ$7$\on_error [TPU$_CONTROLC]: eve$learn_abort; abort; [OTHERWISE]:endon_error; return eve_exit exiteve_set_pending_deleteeve_set_nopending_delete;eve$set_find_case_sensitivity&eve$set_find_case_sensitivity (false);(V03-033aV3.1 L = "   &(}7&   (        ' *7C$* + -< 37c$347$457S$567$677$7 87$8 97#$9K :73$: ; <7s$<=7$= > k pM pwqpsp r s w y z { | } ~   y~%             9 :  IJ      =              +     6      ( T                          {abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890$_yabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 0123456789l6!@#$%^&*()[]{}-_+=~`|\:;"'<,>.?/TPU$KEY_MAP_LIST EVE$USER_KEYSEVE$VT100_KEYSEVE$NUMERIC_KEYSEVE$STANDARD_KEYSEVE$STANDARD_FUNCTION_KEYSEVE$MOTIF_FUNCTION_KEYSEVE$KEYPAD_LISTEVE$COMMAND_MAPEVE$COMMAND_MAP_LISTEVE$FUNCTION_LIST EVE$WPS_KEYSEVE$RULER_KEYSEVE$RULER_LIST EVE$EDT_KEYSm ovoouqvqqqvrvqrrrsM osvsnss vuov=wM nww zuoz{ {v||n|| ~M q~s~ ( T   M M ovM nq S   vn   procedure endprocedure;!.!? M SM XsXM XvnYY ZZB [[w\M \u\n\\ g(j  " &̎0 4 6 6=&QH  &Q3  8R(        ( T     ( T     (  T     4 &  &m     I   8 X         ,( T 4& &m 8 xP (         $&(T (J  J \4J$\  ,lP $"0~&EVE$KT_TOPIC_GET_INFO_INTEGER_VARIABLE0&EVE$KT_TOPIC_GET_INFO_PROCESS_VARIABLE0%EVE$KT_TOPIC_GET_INFO_MARKER_VARIABLE0%EVE$KT_TOPIC_GET_INFO_WIDGET_VARIABLE0%EVE$KT_TOPIC_GET_INFO_WINDOW_VARIABLE0%EVE$KT_TOPIC_GET_INFO_STRING_VARIABLE0z%EVE$KT_TOPIC_GET_INFO_BUFFER_VARIABLE,$EVE$KT_TOPIC_GET_INFO_RANGE_VARIABLE,x$EVE$KT_TOPIC_GET_INFO_ARRAY_VARIABLE,$EVE$KT_TOPIC_SET_MESSAGE_ACTION_TYPE,#EVE$KT_TOPIC_SET_ERASE_UNMODIFIABLE,#EVE$KT_TOPIC_SET_GLOBAL_SELECT_TIME,#EVE$KT_TOPIC_SET_POST_KEY_PROCEDURE,v"EVE$KT_TOPIC_GET_INFO_ANY_VARIABLE,{"EVE$KT_TOPIC_GET_INFO_COMMAND_LINE,"EVE$KT_TOPIC_SET_PRE_KEY_PROCEDURE,t!EVE$KT_TOPIC_GET_INFO_ANY_KEYNAME,!EVE$KT_TOPIC_SET_RECORD_ATTRIBUTE(WEVE$KT_TOPIC_EVE_PENDING_DELETE(EVE$KT_TOPIC_SET_CLIENT_MESSAGE(lEVE$KT_TOPIC_TPU_KEYNAMES_TABLE(EVE$KT_TOPIC_SET_ENABLE_RESIZE(EVE$KT_TOPIC_SET_FACILITY_NAME(EVE$KT_TOPIC_SET_SCREEN_UPDATE(EVE$KT_TOPIC_SET_DISPLAY_VALUE(EVE$KT_TOPIC_SET_DEFAULT_FILE$_EVE$KT_TOPIC_EVE_STATUS_LINE$EVE$KT_TOPIC_SET_STATUS_LINE$EVE$KT_TOPIC_SET_RECORD_MODE$EVE$KT_TOPIC_SET_OUTPUT_FILE$EVE$KT_TOPIC_SET_MODIFIABLE$EVE$KT_TOPIC_SET_OVERSTRIKE$EVE$KT_TOPIC_TPU_ERROR_LINE$EVE$KT_TOPIC_SET_ICON_NAME$EVE$KT_TOPIC_SET_NO_WRITE EVE$START_PENDING_DELETE EVE$KT_TOPIC_SET_REVERSE EVE$SET_FIND_TARGET_CASE !EVE_SET_NOPENDING_DELETE EVE$STOP_PENDING_DELETE EVE_ERASE_START_OF_LINE ;EVE$INIT_POSTPROCEDURE SEVE$KT_TOPIC_EVE_MOUSE EVE$KT_TOPIC_SET_MOUSE EVE_SET_PENDING_DELETE 4EVE$DELETE_START_LINEEVE$$X_CHOSEN_RANGE,EVE_OVERSTRIKE_MODEEVE$SELECT_A_RANGEEVE$ON_END_OF_LINE7EVE$INIT_PROCEDURE/TPU$LOCAL_PRE_INITEVE$$BUFED_REMOVE"EVE$$STORE_REMOVE#EVE$$INSERT_HEREEVE_MOVE_BY_LINE&EVE_INSERT_HERE+EVE_INSERT_MODEEVE$SPLIT_LINE.TPU$LOCAL_INIT EVE_DELETE% EVE_REMOVE- EVE_QUOTE4)EVE$KT_TOPIC_GET_INFO_MOUSE_EVENT_KEYWORD,$EVE$KT_TOPIC_SET_MAPPED_WHEN_MANAGED,#EVE$KT_TOPIC_SET_GLOBAL_SELECT_READ,u!EVE$KT_TOPIC_GET_INFO_ANY_KEYWORD(g EVE$KT_TOPIC_EVE_NOT_IMPLEMENTED$EVE$KT_TOPIC_SET_MODIFIE {iJ$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T&"BD$qEVE$KT_TOPIC_TPU_LINE_END EVE$KT_TOPIC_SET_FORWARDEVE$AT_START_OF_WORDEVE$KT_TOPIC_SET_PADEVE$KT_TOPIC_SET_UIDEVE$REMEMBER_FOUNDEVE$START_OF_WORDEVE$CURRENT_WORDEVE$END_OF_WORDEVE_ERASE_WORDxEVE$FIND(?EVE$KT_TOPIC_EVE_ABBREVIATING(PEVE$KT_TOPIC_EVE_MAIL_EDITING$|EVE$KT_TOPIC_GET_INFO_DEBUG$EVE$KT_TOPIC_SET_JOURNALING$EVE$KT_TOPIC_SET_SCROLLING$EVE$X_CHOICE_HIGHLIGHTING EVE$X_BOX_HIGHLIGHTINGhEVE$KT_TOPIC_SET_DEBUG,!EVE$KT_TOPIC_SET_WIDGET_CALL_DATA$EVE$KT_TOPIC_SET_PROMPT_AREAEVE$KT_TOPIC_SET_ACTIVE_AREA0&EVE$KT_TOPIC_SET_SCROLL_BAR_AUTO_THUMB0%EVE$KT_TOPIC_SET_GLOBAL_SELECT_UNGRAB,#EVE$KT_TOPIC_SET_GLOBAL_SELECT_GRAB,#EVE$KT_TOPIC_SET_INPUT_FOCUS_UNGRAB,!EVE$KT_TOPIC_SET_INPUT_FOCUS_GRAB)EVE$SPACES_TO_TAB'EVE_TAB$EVE$KT_TOPIC_GET_INFO_SYSTEM$EVE$FORMAT_DECLARE_SYNONYM|EVE$KT_TOPIC_SET_SYSTEM0%EVE$KT_TOPIC_SET_SPECIAL_ERROR_SYMBOL0%EVE$KT_TOPIC_SET_COLUMN_MOVE_VERTICAL0%EVE$KT_TOPIC_SET_MESSAGE_ACTION_LEVEL(EVE$KT_TOPIC_SET_INFORMATIONALEVE$KT_TOPIC_SET_BELL EVE$KT_TOPIC_SET_VIDEOdEVE$$INDENT_LINE_TO,$EVE$KT_TOPIC_SET_RIGHT_MARGIN_ACTION,#EVE$KT_TOPIC_SET_LEFT_MARGIN_ACTION,#EVE$KT_TOPIC_SET_FIRST_INPUT_ACTION( EVE$KT_TOPIC_SET_DETACHED_ACTION(JEVE$KT_TOPIC_EVE_EDT_CONVERSION(EVE$KT_TOPIC_SET_MENU_POSITION(EVE$KT_TOPIC_SET_RESIZE_ACTION(EVE$KT_TOPIC_SET_RIGHT_MARGIN$EVE$KT_TOPIC_GET_INFO_SCREEN$EVE$KT_TOPIC_SET_LEFT_MARGIN$pEVE$KT_TOPIC_TPU_LINE_BEGIN$$EVE_RESTORE_BOX_SELECTION EVE$$BUILD_SPACE_PATTERN rEVE$KT_TOPIC_TPU_REMAIN EVE$KT_TOPIC_TPU_RETURNEVE_CHANGE_DIRECTIONEVE_PREVIOUS_SCREENEVE$$BUILD_PATTERNEVE$$BOX_SELECTIONEVE_NEXT_SCREEN EVE$TO_COLUMN EVE_MOVE_DOWNT EVE_RETURN EVE$KT_TOPIC_SET_WIDTH  EVE$SEARCH( EVE$KT_TOPIC_SET_WIDGET_CALLBACK$EVE$KT_TOPIC_SET_TRACEBACK*EVE_INSERT_PAGE_BREAK0&EVE$KT_TOPIC_SET_MOVE_VERTICAL_CONTEXT,"EVE$KT_TOPIC_GET_INFO_KEY_MAP_LIST(EVE$KT_TOPIC_SET_GLOBAL_SELECT(EVE$KT_TOPIC_SET_KEY_MAP_LIST$EVE$KT_TOPIC_GET_INFO_WIDGET$EVE$KT_TOPIC_SET_SELF_INSERT$EVE$KT_TOPIC_SET_AUTO_REPEAT$EVE$KT_TOPIC_TPU_ERROR_TEXT$5EVE$CLEAR_SECONDARY_SELECT$EVE$KT_TOPIC_SET_PERMANENT$EVE$KT_TOPIC_SET_EOB_TEXT$EVE_SET_FIND_CASE_NOEXACT EVE$FORMAT_MODULE_IDENT EVE$KT_TOPIC_SET_WIDGET EVE$KT_TOPIC_SET_HEIGHT EVE$KT_TOPIC_SET_INSERT EVE_SET_FIND_CASE_EXACT EVE$FORMAT_MODULE_INIT @EVE$KT_TOPIC_EVE_ABOUT EVE$KT_TOPIC_TPU_ABORT :TPU$INIT_POSTPROCEDURE EVE$X_WORD_IS_ON_LEFT (EVE$$WORD_WRAP_INSERT EVE$KT_TOPIC_SET_TEXT0EVE$OVERSTRIKE_TEXTEVE$GET_FIND_TARGET6TPU$INIT_PROCEDUREEVE$$BUFED_SELECTEVE$FIND_TARGETEVE$$BOX_SELECTEVE_MOVE_RIGHT  EVE$FIND_NEXT EVE_MOVE_LEFT$EVE$KT_TOPIC_GET_INFO_WINDOWH=EVE$$X_SAVED_WINDOW0M'EVE$KT_TOPIC_EVE_CONTEXT_SENSITIVE_HELP,$EVE$KT_TOPIC_SET_WIDGET_CONTEXT_HELP(EVE$KT_TOPIC_SET_ICONIFY_PIXMAP(EVE$KT_TOPIC_GET_INFO_KEY_MAP$EVE$KT_TOPIC_SET_ICON_PIXMAP\ EVE_MOVE_UP4k)EVE$KT_TOPIC_TPU_KEYMAPS_AND_KEYMAP_LISTS0F'EVE$KT_TOPIC_EVE_DECWINDOWS_DIFFERENCES0I&EVE$KT_TOPIC_EVE_EDITING_COMMAND_LINES0Y&EVE$KT_TOPIC_EVE_PROMPTS_AND_RESPONSES0&EVE$KT_TOPIC_SET_WIDGET_RESOURCE_TYPES0N%EVE$KT_TOPIC_EVE_INITIALIZATION_FILES,$EVE$KT_TOPIC_SET_PAD_OVERSTRUCK_TABS,$EVE$KT_TOPIC_SET_CROSS_WINDOW_BOUNDS,h$EVE$KT_TOPIC_TPU_BOOLEAN_EXPRESSIONS,B#EVE$KT_TOPIC_EVE_CANCELING_COMMANDS,a#EVE$KT_TOPIC_EVE_ULTRIX_DIFFERENCES,m"EVE$KT_TOPIC_TPU_NONDEFINABLE_KEYS,[!EVE$KT_TOPIC_EVE_RANGES_AND_BOXES(b EVE$KT_TOPIC_EVE_VMS_DIFFERENCES(d EVE$KT_TOPIC_EVE_WPS_DIFFERENCES(K EVE$KT_TOPIC_EVE_EDT_DIFFERENCES( EVE$KT_TOPIC_GET_INFO_PROCEDURES(TEVE$KT_TOPIC_EVE_NAMES_FOR_KEYS(jEVE$KT_TOPIC_TPU_ERROR_HANDLERS(^EVE$KT_TOPIC_EVE_SECTION_FILES(DEVE$KT_TOPIC_EVE_COMMAND_FILES(OEVE$KT_TOPIC_EVE_JOURNAL_FILES(EVE$KT_TOPIC_SET_SCREEN_LIMITS(EVE$KT_TOPIC_SET_MESSAGE_FLAGS(HEVE$KT_TOPIC_EVE_DIALOG_BOXES(EEVE$KT_TOPIC_EVE_CONTROL_KEYS(UEVE$KT_TOPIC_EVE_NEW_FEATURES(EVE$KT_TOPIC_GET_INFO_PROCESS$`EVE$KT_TOPIC_EVE_TYPING_KEYS$]EVE$KT_TOPIC_EVE_SCROLL_BARS$EVE$KT_TOPIC_SET_INPUT_FOCUS$\EVE$KT_TOPIC_EVE_RULER_KEYS$AEVE$KT_TOPIC_EVE_ATTRIBUTES$LEVE$KT_TOPIC_EVE_GOLD_KEYS$EVE$KT_TOPIC_SET_TAB_STOPS$EVE$KT_TOPIC_SET_MAX_LINES$9EVE$SET_SECTION_ATTRIBUTES$GEVE$KT_TOPIC_EVE_DEFAULTS cEVE$KT_TOPIC_EVE_WINDOWS EVE$KT_TOPIC_SET_SUCCESS EVE$KT_TOPIC_SET_MARGINS fEVE$$KT_ILLEGAL_COMMANDS QEVE$KT_TOPIC_EVE_MENUS <EVE$X_BUF_STR_DEFAULTS 2EVE$$PRE_INIT_MODULES 3EVE$$RESTORE_SETTINGS EVE$$X_WILD_PATTERNS8EVE$$INIT_SETTINGS1EVE$$INIT_MODULES(X EVE$KT_TOPIC_EVE_POSITION_CURSOR(CEVE$KT_TOPIC_EVE_CHOICES_BUFFER(REVE$KT_TOPIC_EVE_MESSAGE_BUFFER$yEVE$KT_TOPIC_GET_INFO_BUFFER$EVE$KT_TOPIC_SET_LINE_NUMBER$EVE$KT_TOPIC_SET_SCROLL_BAR$EVE$$TEST_FIND_TERMINATOR$VEVE$KT_TOPIC_EVE_NEW_USER$sEVE$KT_TOPIC_TPU_UNANCHOR$iEVE$KT_TOPIC_TPU_DEBUGGER EVE$$X_FOUND_POST_FILTER oEVE$KT_TOPIC_TPU_ANCHOR EVE$KT_TOPIC_SET_TIMER EVE$KT_TOPIC_TPU_ERROR>EVE$$X_SAVED_BUFFER,#EVE$KT_TOPIC_SET_KEYSTROKE_RECOVERY,"EVE$KT_TOPIC_SET_DEFAULT_DIRECTORY,}!EVE$KT_TOPIC_GET_INFO_DEFINED_KEY(EVE$GET_DIACRITICAL_SENSITIVITY(EVE$SET_DIACRITICAL_SENSITIVITY(EVE$KT_TOPIC_SET_UNDEFINED_KEY(EVE$KT_TOPIC_SET_DRM_HIERARCHY(eEVE$KT_TOPIC_EVE_OLD_GOLD_KEY( EVE$GET_FIND_CASE_SENSITIVITY(EVE$SET_FIND_CASE_SENSITIVITY$ZEVE$KT_TOPIC_EVE_QUICK_COPY$wEVE$KT_TOPIC_GET_INFO_ARRAY$EVE$KT_TOPIC_SET_SHIFT_KEYnEVE$KT_TOPIC_TPU_RECOVERY<,<EGlH$eLg$?7$? CZE EFPG G,H7s$H IxJ7PKL88L M,N7s$N O$P7 $P STPU U,V7{$V WxX7PYZ88Z [,\7{$\ ]$_7$_d7Pef88f gnQp p(q]r rtetw w0z"z&  {,"& &JZ7$ &^JZ( T P&$J*  H&J* i (] e 0"&  ,"& &yJZ( T P&,J*  H&J* i$     (-  5  0 - T OA  ,}p$ tJ ( T (}K$  };$ $} $ $} $  HQ   &  &  7O88 t(! T!O" 8"(# T#O$ 8$A$ %(&&J '  , Q. .1 1(2T3 344 5078  9: =(>T? ?p@9 AHD  EF  GH JK MN ST U V1 W1 zWW1 wWX X$Y}ڳ$Z Zj] m] ]] (`Ta ab d?h j jpreturnWILDCARD_FIND_DIALOGeve$$widget_find_ok (!UL)eve$$widget_find_ok (!UL, !UL)(WILDCARD_FIND_DIALOG.WILDCARD_FIND_LABEL)WILDCARD_FIND_DIALOG.WILDCARD_FIND_LABEL1'WILDCARD_FIND_DIALOG.WILDCARD_FIND_TEXT'WILDCARD_FIND_DIALOG.WILDCARD_FIND_TEXT FIND_DIALOGeve$$widget_find_ok (!UL)eve$$widget_find_ok (!UL, !UL)FIND_DIALOG.FIND_LABELFIND_DIALOG.FIND_TEXTFIND_DIALOG.FIND_TEXTfindeve$invalid_event(35914827)eve$invalid_event(35914818)return() pNRpY ( T8 J Y ( T8 J  3|=*3T  xY @?    pY @? "   (=  . @}z$}$= T  "  =Q  xY @?    pY @ ?  "    ( T (}$  }$ = pQ  ,7[$ $7c$"7P#$88$ %D- / /DQ4 4" 4& r 5@Q; ;";& r(=]> >@e@GE&HJZHIiL$L MPPR R S=T T[ [\-]]^_A` `a bc e(f6i1iRPj jXkkJmnnpp q r=ss xX|& r)eve$$widget_find_each_yes (!UL, !UL, !UL).eve$$widget_find_each_yes (!UL, !UL, !UL, !UL)FIND_EACH_DIALOG FIND_EACH_DIALOG.FIND_EACH_LABELreturndoeve$invalid_event(35914952)|E(UTU V(W ]X XY Y (` Ta apbb&mc& c&m\d de fg lkm m rs& t&mtuPv v$z    {          eve$$found_post_filterX|C(R ]^``bPc cd dg gOi$ ij j k(mnoos sOu$ uvv w$y yzz~~ B        $  ("d4p <lL, | Q ljj 0}$$  (T j     1 l    A l M 0 2 %  (T j     l Qqgof ! !("T# #$$j' ' ( (1o(P(() +  + , -0 0(1T2 233j6 6 78 8; ;(<T= =>>jA A B C0F F(GYM$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TU"dTH HIIjL L M Nd O  PQ< SU1UUV VWRWlXXlYYO[ [8\R\l]]Q_[_8_ `a  b jcc df h1hRhj1xjjRjkRklllOn n8oRolpps( st( tv vDszozzR kzz {<soR k j  (T  $jj  l 1R 1xR (T j  p o tR T `R of1 R n R T  R T `R o1 R  n $}b$b$  Q K 1 1R 1xR (T j  pi of  1 1R  (T j  p o  $}$$ $}b$b$ X   1R 1xR (T j  pt or  R TG hR o 1 R no  R T $   R T  h R o _ 1 R  no6  $}b$b$ Q 1 1R  1x  R $ $(%T& &''j* * p+ o+ + ,-1. .|p/ / 3 3(4T5 566l9 9 :$;}$<$< ?$@}b$Ab$A DG G(HTI IJJjM M N OdR R(STT TUUjX X Yz Z] ](^T_ _``jc c d eh h(iTj jkkjn n o ps s(tTu uvvjy y zq {~ ~(T j   4 (T j    (T j  ` T (T j    (T j   t (T j  O  (T j   jj d}$$ 0}$$ | (T j   1 xR  Q    }$ poY (   ''+ remain+ remainmatchlmatch+ arb()+ eve$$x_ws_pat + line_begin + line_endanynotany-+ span('')any(span(arb(notany(scan(match+ span('') + (span('') | '') + (span('') | '')any((span( | '')arb(notany((scan( | '')match + (span('') | '')( | remain)+ any('1234567890')+ any('01234567')+ any('1234567890abcdefABCDEF')+ any(eve$$x_wild_a)+ any(eve$$x_wild_n)+ any(eve$$x_wild_s)+ any(EVE$$X_WILD_L)+ any(EVE$$X_WILD_U)+ any(eve$$x_wild_p)+ any(eve$$x_wild_f)+ any(eve$$x_wild_control)+ any(eve$$x_wild_bit_7) eve$$x_ws_pat''$h% :RT~ 8  l  1RQ  0Q  jl DQ $w  la' ''' '+eve$$x_ws_pat+'' eve$$x_ws_pat'@#@R,3|=*( T 8& S  & Q  4 =8 \ =3\ 8 Q   X3|\  8 D3|\ 8EP!4"=###$$8%%( & &'; 'u(E" (=))( * *+8..3.. /< 018 2 4 5 7: :; >=@@FPP7P     lT  (J"  J  T"    `  0J      `  0J" ({ T| |} ~    $O   (D^M^^etRdY(T8 JY(T8 J     J * J<4 5}$6 6:T`I ITJM M7$M|M$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TL"uM N\P PLQM T7$T`vTT\eve$set_find_case_sensitivity%eve$set_find_case_sensitivity (true);eve$set_find_case_sensitivity&eve$set_find_case_sensitivity (false);<< =}$> >Dm m(nN o  p0r r sN t =w w x ~(4Nt3\ (   RP $Ja $Ja     =* P     P           3  \  P   6 1           &" !  ! Ja "  # $ $ Ja % &  ' * * 2  P P    XR( T  Jc   ,    H F  8R(         B L JS JS A   HR,        3|  &     ( # ll @ h   H     $ J#   ( ]  t(  Q }z   ( & 0 = 3    & 0 = 3    $ J#( T   ^           h =  Y   0X   8      =# 3|# ('  ]( ( ) )  . P/  / $2    3 D5 & 6 &m8   ;   =  ? ? E MARKEReve$$found_post_filter  (          8 8        , x   JQ J(T   (T    %%''& \( (0*+}$- -5&5663|6&86 7p8&58939:;3 ;<?3?OA AxC3CC\D DJLM M$N  O8Q3Q3RRSU V XX Y([ \ ^^ ``b c f0hi}$ j kn nt3t v v8wx y z&5& 5  & 3 &3 &5& 5 =  s x  4(  &(,J+ &(T8  =&(JT3P 8  H3v  X t 3v  83  = u:3 L  831 83 T8 3&& ==v 3P  3&5t xL" \183  =v3Y   P83 <1 8 3    3|\ l X b8 (3 #3#3$$l''+= u00:223|23 3636&5t668 : :x<3<<\= =(>]? ?@ LDD  EpG G\I3|IJa1JMJPJ K8O3|OO\P PdQQR3|R&5R8R S$T U8 X[\J_=`c d Qg ghhJkkr          (R      JS JS A   q B r }Ñ$u 7Ñ$u +u u z eve_set_pending_deleteeve_set_pending_delete;H8R(~        B    }ˑ$ 7ˑ$ +   eve_set_pending_deleteeve_set_nopending_delete;`HR, ! " & $ % & (( T)  ) *  + , 4  4 @6 6 6 6   6 7 8 < < @ ? @ A JcB ZD  D (E TF  F (H H H K 3K L =N $O 9P A$ Q R S $V W }Y 3Y SZ Z [ P] = ^ _ a b b e f f l D       \    3|  \ 8 3| &" (  &"  &  $   p &G 8 4 3| Ja   md$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T" $    8 3 &  3 3   &G 8 4 3| Ja  8     }($  }0$    l( r ]  , }$        r     P   < & Y      D            I5 & , }:$    6 8  &     & " k    t(p q r r y 6 z { { { ~ # k ~ ~  L" $       &5  &F ( ^ ]  : ^   &P^ ( <  &       &5x) R( l &5x)  "   `= >3>?=uC; CvDE  D=F3FGG1GoGwGG8H3HJJ&FJLL M M$NN N O(PP&"PS=TU UV W(X&"vYY\\_% a=h8T33&W3(44Q6 68|7q7G7v77 8$; ;<<>(x>@ @luAARAB1lBBRB CDEG)GlHHH IsJxJJPP Q Q`RR vRxRRT T$V VW\\b <iikklmn nqrs sw w$x y y|} } ~P , F8  P    DJ DJ hH RHP&  &  &  &   TH }$3| &  =7[$ U   8}[$   )RLQY YZZJ\]cQ` `aaJcee&(effJg ghhJn$%&'y(L)W*+, - . / 0f 1 2 3 4* 5C 6I 7 8 9 : ; <{@"EVE$$INIT_MODULES0Y  z"EVE$$PRE_INIT_MODULESh  `bc`ea g d g g GOLD-KP7 EVE$EDT_KEYSPF4 EVE$NUMERIC_KEYSDO EVE$STANDARD_KEYSPF4 EVE$VT100_KEYSGOLD-[ EVE$WPS_KEYSEVE$$RESTORE_SETTINGS|D7 8 9 9 < 3< < S= = > :A 8B 3B C 8E E E G <H H &GI I J :M =uO 3O O P  R GR S S Y 0 0  6 U 0* + U P (   $    + *    87 .  K ) TT 8 2 / 1 3 9   JJqJABJrJJeve$x_repeat_count<t(;     ( T    , !"  5< 568< :m :;' <=A AB& C0F <  FC G$I <  ICK3|KLLYM MNS  U UZ  ZC b b c gj < jCmJcCnJCoJ(CpJCv@w&Cx$yJC+&(8 $ }= >  Y&V,8 D&*P  &   )  $DEFAULTS$ /dev/nullNL:|              |             #       8 8        hX 5 Y HZ PZ [ 8[ [ $\ ] ] a b c c g h : i j #j p k l m m n n o p p r Ds s t t u v v { {   5 H P  8 $         :  # p        D         4H   3S    (  ; uE" =(  8(  p3D  =38  !" "0$R $ %4&8''(8$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T-"*8. 0 0,1 F 1 2856 F 6 : :,;8<= =@3@\A ATB( C C8DE EFG G KM M N P3PQ R8S3SU U,WW X$YY[=\ ^ F ^ _3__\` `xab bdc8dTeV e,fg hi8n nt  d` R<P<L              &,   3|  =* T "  !  ! <#  # $ :( =u ) D+ (, - - . :1 =u 3 5 \6 =7 7 & 8 $9 =v: 8 < X= 3= = \> > (? @ @ A 8E =vH H N  T  (  J"   J       HR4Pk l m x p q q s s s }t u u x w x { { A| | @} A ~ ,         3|       &,    5  8 3  3 3   =E E  8 3 E   = 8 3 S H 8   8              |    &(T  8  $ l 8     l 8 3 3   8 0      d 8 3 3   8 E       `     3  S             8 3 y  8! 3! ! " $ G $ % % + 0d          7$Lh7$]j integerinteger#eve_set_tabs_spaces/movement/inserteve_set_tabs ('INSERT');eve_set_tabs_visibleeve_set_tabs ('INVISIBLE');$0\\V03-014$`` aa bb cc dd iee Pff :lateveryspacesmovementinsert invisiblevisiblev=*w3|wxxPy yzz}~ ~88 |   3| 83|8 (   83|8 3| x=*z{ {||(  \8(  8 8(  =* 8o; uE" =t(   uE" =(  8tkPhR4T =* E  18T28&5XTTTFA 8    \pRDQ   J   Q    J    &(  J &5t    X P   (  ( R(   x J 4D,4 x  ,L\(\<(EVE$KT_DETACHED_ACTION_ROUTINE(EVE_SET_NODEFAULT_SECTION_FILE(EVE_SET_NODEFAULT_COMMAND_FILE(EVE$LOCATE_EVE_GENERATED_CODE(EVE$$GET_DEFAULT_COMMAND_FILE$EVE_SET_DEFAULT_COMMAND_FILE$EVE_SET_DEFAULT_SECTION_FILE$EVE$$HELP_KEYPAD_TEMPLATE EVE_BOX_PASTE_OVERSTRIKE EVE$X_HELP_PROMPT_RANGE EVE$COMPRESS_WHITESPACE %EVE$$NOT_CHORDED_MOUSE EVE_BOX_CUT_OVERSTRIKE EVE$$X_GLOBAL_REPLACE tEVE_SAVE_EXTENDED_EVEEVE$CAPITALIZE_RANGEzEVE$$BUILD_ATTR_CODENEVE$$X_MB1_DOWN_FREE1EVE$$X_MB3_DOWN_FREE9EVE$$CHOOSE_BY_MOUSEEVE$KT_TOPIC_EVE_EVEEVE$EOL_NOPAD_DELETEEVE$MOVE_TO_VISIBLETEVE$$CLIENT_MESSAGE:EVE$$CURRENT_CHOICE)EVE$$NOT_USER_MOUSE EVE$$BOX_OVERSTRIKEEVE_SET_CURSOR_FREECEVE$POSITION_MOUSEEVE_GLOBAL_REPLACEEVE$KEYBOARD_TYPEDEVE$LEARNED_MOUSEBEVE$KEY_TO_IGNOREEVE_MOVE_BY_PAGEEVE$APPEND_LINE EVE$FILL_RANGEEVE$GET_CHOICEwEVE_EXTEND_EVEEVE_ERASE_LINE EVE$ARG1_LINE EVE$WHAT_LINE EVE_WHAT_LINE EVE_BOX_PASTEq EVE_UNDEFINE EVE_REVERSEl EVE_DEFINEEVE_LINEsEVE_SAVE(EVE$$X_SCRATCH_BUFFER_RESERVED$EVE$$X_SAVED_ATTRS_MODIFIED EVE_ERASE_PREVIOUS_WORD EVE$$OVERSTRIKE_LEGEND EVE$$IS_KEYPAD_DEFINED EVE$DELETE_START_WORD -EVE$$X_MB1_DOWN_BOUND 2EVE$$X_MB3_DOWN_BOUNDEVE_SET_CURSOR_BOUNDEVE$$IS_GOLD_KEYPADEVE$$CENTER_LEGENDEVE$$KT_ATTRS_ENDuEVE_SAVE_EXTENDEDEVE_SET_BOX_NOPADEVE$$KT_CODE_ENDEVE$DELETE_WORDEVE$DRAW_KEYPADEVE_SET_BOX_PAD EVE_FORWARDx EVE_EXTEND( EVE_SET_NOSECTION_FILE_PROMPTING(EVE_SET_SECTION_FILE_PROMPTING$IEVE$$NOT_SPECIAL_MOUSE_DRAG$6EVE$X_SECONDARY_SELECT_RNG JEVE$$DEFAULT_MOUSE_DRAG EVE$CAPITALIZE_STRING EVE$X_BOX_PAD_FLAG3 EVE$$M3DRAG$EVE$GET_HELP_LIBRARY_TOPICEVE$$X_KEYPAD_HELP_TOPIC YEVE$GLOBAL_SELECT_UNGRAB XEVE$GLOBAL_SELECT_GRAB \EVE$INPUT_FOCUS_UNGRABZEVE$INPUT_FOCUS_GRABEVE$$X_HELP_NULL_PROGRAM EVE$$REPLACE_SEARCH_FAILEVE$$X_REPLACE_ALLEEVE$UPSTROKE_NULL EVE_SHELL EVE_FILL`EVE_DCLEVE$$REPLACE_NO8 EVE_GO_TO(_ EVE_SET_SELECTION_GRAB_SELECTION(MEVE$v\$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Tf"$NOT_SPECIAL_MOUSE_CLICKN$'EVE$$POSITION_TO_MOUSE_DOWN$EVE$$DETACHED_CURSOR_ACTION$FEVE$$NOT_SPECIAL_MOUSE_DOWN$UEVE$SAVE_PRIMARY_SELECTION$EVE$ARG1_SET_RIGHT_MARGIN$OEVE$$DEFAULT_MOUSE_CLICKN EVE$ARG1_SET_LEFT_MARGIN EVE$$KT_DEF_PRIV_SECTION GEVE$$DEFAULT_MOUSE_DOWN {EVE$X_SECTION_VERSION ,EVE$$CANCEL_M1_ACTION EVE$$X_THIS_DIRECTIONEVE_SET_RIGHT_MARGIN#EVE$$X_MOUSE_COLUMNEVE$$REPLACE_ACTIONEVE$$KT_ATTRS_BEGINEVE_SET_LEFT_MARGINEVE$$KT_CODE_BEGIN!EVE$$SHIFT_M1DOWN8 EVE$$M2DOWN/ EVE$$M3DOWNP EVE_SPAWN$bEVE$X_NO_SELECT_POPUP_WIDTH cEVE$X_SELECT_POPUP_WIDTH ?EVE$$INDICATOR_DISPATCH EVE_ATTACH(  EVE$PATTERN_SKIP_PARAGRAPH_BREAK(EVE_SET_NOEXIT_ATTRIBUTE_CHECK$EVE_SET_EXIT_ATTRIBUTE_CHECK$EVE$PATTERN_PARAGRAPH_BREAK EVE$ATTR_SAVE_NOCHECK EVE$PATTERN_TAG_BREAKEVE$PARAGRAPH_BREAK+EVE$$X_PRE_MB1_MARKEVE_MARK yEVE_SAVE_EXTENDED_TPUEVE$KT_TOPIC_EVE_TPUvEVE_EXTEND_TPUPEVE_TPU$dEVE$X_NO_SELECT_POPUP_HEIGHT$&EVE$$SAVE_MOUSE_DOWN_CONTEXT$EVE$ADVANCED_MODULE_IDENT$eEVE$X_SELECT_POPUP_HEIGHT EVE$ADVANCED_MODULE_INIT EVE$HELP_MODULE_PRE_INIT EVE_SET_PARAGRAPH_INDENT gEVE$EXTEND_MODULE_IDENT WEVE$WRITE_GLOBAL_SELECT fEVE$EXTEND_MODULE_INIT EVE$MOUSE_MODULE_IDENT EVE$X_HELP_LEGEND_BOT `EVE$$REMOVE_COPYRIGHT EVE$HELP_MODULE_IDENT EVE$MOUSE_MODULE_INIT EVE$EDIT_MODULE_IDENT ]EVE$SET_POSITION_LOSTEVE$HELP_MODULE_INITSEVE$$X_POSITION_LOSTEVE$EDIT_MODULE_INITEVE_SET_BOX_NOSELECTEVE_BOX_PASTE_INSERTEVE_SET_BOX_SELECTEVE_BOX_CUT_INSERTEVE$$REPLACE_INITEVE$ARG1_REPEATEVE$$BOX_INSERTEVE$ERASE_TEXTEVE_BOX_SELECT EVE_BOX_CUT EVE$REPEAT EVE_REPEAT PEVE$$X_MOUSE_DOWN_WINDOW QEVE$$X_MOUSE_DOWN_ROW *EVE$$X_PRE_MB1_WINDOW"EVE$$X_MOUSE_WINDOW$EVE$$X_MOUSE_ROW EVE$SET_KEYPAD_VT100_1 EVE$$REPLACE1$[EVE$$X_CTX_SENSITIVE_HELP$KEVE$$NOT_SPECIAL_MOUSE_UP EVE$X_HELP_LEGEND_TOP LEVE$$DEFAULT_MOUSE_UP EVE$$REPLACE_CLEAN_UPEVE$$REPLACE_LOOPEVE$$LETTER_WRAPEVE$$WORD_WRAPEVE_SET_NOWRAP EVE_SET_WRAP5 EVE$$M3UP(EVE$$LOCATE_EVE_GENERATED_ATTRS(EVE$RESTORE_ACCUMULATED_ATTRS$^EVE_SET_SELECTION_GRAB_FOCUS$EVE$CLEAR_ACCUMULATED_ATTRS$EVE$X_FACILITY_FOR_CAPTIONS$EVE$$X_HELP_IGNORABLE_KEYS$HEVE$$NOT_MOUSE_IN_PROGRESS$<EVE$$X_INDICATOR_COMMENTS EVE$X_RUNOFF_CHARACTERS aEVE$X_MOTIF_MOUSE_KEYS (EVE$X_MB1_IN_PROGRESS 0EVE$X_MB3_IN_PROGRESS EVE$$ACCUMULATE_ATTRS EVE$$CENTER_2_LEGENDSEVE$X_SAVE_FILL_TAGSEVE$$X_KEYPAD_RANGESEVE$$KEYPAD_CAPTIONSEVE$$X_KEY_CLUSTERSEVE$SET_PARA_BREAKSkEVE_SAVE_ATTRIBUTESEVE_SET_FILL_NOTAGSEVE$FORMAT_CHOICESEVE$X_DCL_PROCESS;EVE$$X_INDICATORSEVE_SET_FILL_TAGSEVE$NUMERIC_KEYSEVE$CONVERT_TABSEVE_CONVERT_TABSEVE$X_FILL_TAGS EVE$LIST_KEYS EVE_SET_TABS(iEVE$$EXT_COMM_QUITEXIT_HANDLER$EVE$$REPLACE_ERROR_HANDLER EVE$DECLARE_EDIT_HANDLER 4EVE$$X_MOUSE_DOWN_BUFFER jEVE$$EXTEND_QUIT_HANDLER hEVE$$EXTEND_EXIT_HANDLER EVE$$X_HELP_THIS_BUFFER >EVE$UNDEFINE_INDICATOR EVE$DEFINE_KEY_CLUSTER EVE$$DRAW_KEY_CLUSTER @EVE$CURRENT_INDICATOR=EVE$LOOKUP_INDICATORAEVE$$TEST_INDICATOREVE_ERASE_CHARACTER7EVE$QUICK_TRANSFEREVE$BOUND_CURSOREVE$FREE_CURSORo EVE$$REMEMBERn EVE_REMEMBER$EVE$$X_KEYPAD_HELP_LIBRARY$EVE$$X_POST_FACILITY_ARRAY$EVE$$X_PRE_FACILITY_ARRAY EVE$$X_ACCUM_ATTRS_ARRAY EVE$$ACCUM_DISPLAY_ARRAY EVE$DECLARE_HELP_LIBRARY VEVE$$X_SAVE_SELECT_ARRAY .EVE$UNDEFINED_MOUSE_KEY EVE$SET_ACTION_FACILITY EVE$$ACCUM_ATTRS_ARRAY REVE$HELP_UNDEFINED_KEYEVE$$X_REPLACE_ARRAY~EVE_SET_NOSHIFT_KEYEVE_SET_NOGOLD_KEY|EVE_SET_SHIFT_KEYrEVE_UNDEFINE_KEY}EVE_SET_GOLD_KEYpEVE$DEFINE_KEYmEVE_DEFINE_KEY EVE$$DRAW_KEY EVE_SHOW_KEYL EVE_BOX_COPY8EVE$FILLED_BOX $`$$& (* + 2 844`8D:BDEEJXKM8OxOO `S!S%`W&LX'Y)Y,,[.p[/c3he5g7Xj8Tm9o:q=s>\t?u@uAwBxC@yDdyEyFp{Gd}H}Id~JЀKXLMOȈRTUW4XȰYܰZx\]^T_`fȳgh8i`jklxmn o@pLqrstupvwxyTz|}~H$lt 0@`xdD <  t$<&X. /X// 00445698<L>@?`@FFG0HIIKKL4NQRS8?3??@8 AB BFG GXHIIJJ=K8NNN8N O+QRR8R>S STT1TRTV WX[  \(^ ^d@1ROTR(  l lR , j$   sou nn souM ovvqvqn souvqevqWn 4: souUO nn sou nM ovvqvqn sou nvq~vqln <.    6abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!;<.<.  <.  `|X    E      R\AC CDJbF GHPJL LMJbO PR STU UXZ Z([T\ \__$`} $a acdd=f  i  j l&Flmm1n n(oJb p4qq1qJY$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"bs, t=uu vPzzz={ |}  ~ Jb 4 ,=X    E  =v8333SA   H=v3SL83  |83 =&F  $  (&"  , v 0&"v37 l&5&"\ $}$ % =v8  3 =U ,}$  D@HQ J3&5&(J = 3 &5t  8  J      $  @l7Ƞ$7$  }$ &F   &"wj T&F}$ j 8}$ j  (}$ XJa& 3\ 18 l3S ,P8 P&"}s$  І7$7$ &"  t  T  &F }$     @}Ҳ$  \Jb&F}$ ! PR,ABCGEF}$GIK KlO7$N7$OPQR RVVWY Z3|Z[=*^V _d@ efg j klm p qrs v wxy |Y }~      &G :] ; D5 }$< = @j 7 $    ",8| 7$7$ HJ) 7;$ 7$7$ t }$ HJ)7C$ P 7$   7$   7$  * 7$ d*  7$  }r$= d}  8p,o0    set tabs ateveryspacesmovementinsert invisiblevisible#eve_set_tabs_spaces/movement/insert#eve_set_tabs_spaces/movement/insert#eve_set_tabs_spaces/movement/inserteve_set_tabs_visibleeve_set_tabs_visibleeve_set_tabs ('');`| &"j&F T&F}$   4 }$  OA 0  }c$ @ 7k$} "Enter Paragraph Indent:No paragraph indent set0Lz&-&&( ,z,$&G @puovD =hy@R,3|=3S8: =&G =3S\1  1: &#hluF u   duF u XuFw l   = P 3 S  08m 8   O @  P  !P$1t$$R($ l%%'8 (*0 t__&h_`3`c=vdd&5dee,sff8gP hj=ps__`ab be=*gggg  gi iTkkjjkk l(mTn noqqrrTuv&5v  lww xy y} }}0,r(T (T 3|=,4lqs 4FE  = 83|&53|h3|&5x) M8 =   P@$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T" <o  }$ <o  }$ xo |a   7c$ hp 7$ X\ 7S$ @@ 7$      (  N  -  +  *   0  1  2  6    J#l J#d J#] J#T J#I J#@ S   "  $  # EVE$MOTIF_MOUSE_KEYSEVE$MOUSE_LISTeve_overstrike_modeoverstrike_modeeve_insert_mode insert_mode eve_reversereverse eve_forwardforwardeve$write_global_selecteve$global_select_ungrabeve$global_select_grabeve$input_focus_grabeve$input_focus_ungrabeve$$client_message$kjjV03-021kvw" # $ x`y-y% z{ {$ # 8X" #8X" 8X" 8  -& %'  ( =*-)       & \ ,* + ,  33& 11 ,-   8- 3 - & ,-   8- 3 -   * + , $-.  DOWNg: ;=]=5>0 >@5 A AF( p(ITJ JXKL\M M4P R* + S, T TZ Z`fi jm3|m+ nn* oppq" P r&" r4 s$ Q t tv v|l f=K3|N =*3- =N eDF GhHHJ2 K KL LZRB RSTU UZ [\' ]^=KacdAe e4f ( hi=* km0 n ( q q r$t}8$u ux x~@d ( + * c'+" # $ ,- -0$ 0# 80 12 27 8$9:l ;8< =$>?= @A B$CD EF GH&*HI%JX%JL%J@%J4%J(&M<'M0i M$KL JO(wP P$QR^ STU(8V VW+ XY(Z Z[ \d](^ ^_ `0a(b bc"s  sv% wx x|%}& F  ' )  G  (H    I  )  J  xH  ,% ,% K ,% ) ,% ZBZB8 }($L %  M   &" P 4  =N )  Z BZ!B8! "#}0$&O &''* *0DOWNDRAGUPM1CLICKM2CLICKM3CLICKM4CLICKM5CLICKM1CLICKM5CLICKCLICKCLICK,CLICKCLICK2CLICK2CLICK3CLICK3CLICK4CLICK4CLICK5CLICK5\(\ * + " # $ -%  $ # 8X" 8X" 8 ` -&  % ' -)    0 -TB-T BA    !=K"3|"1 #=*$3$2 ** + + + .$0-0. 002 2<DOWNTYIK" # $ L LM MR$ R# 8RXS" 8SXT" 8T UVWX X[=Kd0 (e-e. f fk-k) Llm mr=Ks3|sx& Yy4 y$z* + { {=*32 +&,8 =* +   $-.  DRAGpW5 0" # $ X" X" 8 0 .    =K) P 0 + * % 6 $7  45 % T=" =2 =1 + * 5 % 5 .   UPUPCLICKT+? ? 8? @ $A }R$B B E F @G 5 I J %L L U V $ V # 8V W X 3|X Y & PZ 4 Z l\ =*] 3] 2 +^ _ &,_ 8_ ` a = e f 3|f g g & Sh h li =*j 3j +k k &,k 8k l m =t J#v &# w Xy W y (| T| (} T} A~ ~  T     %    \QHR0* + * + " # $ ! !" "'-'% () ).# .$ A/ /0 0 1,4-4& 6%7' ;-;) <,>%? ?(D]E E FIJAJK AL LN OQS* + U%V V X$Z-Z. ZZ\ \fDOWNX|OHR0nopsrs(u Tv v(w Tx xy3|yzz{= |3|Jc} ~  ~ == }($ }0$ NHR04s$$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T_j"3|=Ku# IouR6 @==  =uu831x83 == DL(  8uR % 4%.D& T'.H <;  0<      :J  6;  8}8$  4 ;  <  J"@ "$ $% %(=  (* *@+=,/=* 0 0 102}8$3 3:@IH$ I$ I# 8IAJ JKKM" N# P&SoPxPRU UV VX(2XZ Z[ [] ^xu__R_`1`a6bbe1veldeRejffsgg hj jo||,HGr; rrrx$G%BL%BT%B\%Bd&Bl'B` TB PB <B (B  7 $S   E=K|E=K(Q Q A  LEQB LB7 $S QB LB7 $S QB LB7 $S XQB DB7 $S  C $ # \@ " #  <0J" #   $O" # l' : #  8,J" # $   O"    |O"  h=" 3|S =*  '   ( A,   =N  (  S  xHA(T DS  =( 0 , h@(  #  $$ $%Q O'P " 8' (\*@ " # + +<002J" # 7 7 8pO<" # <|O>P # >P?: #  @8D,FJ" # $ K K LOP"  PQ Q ROV"  VXYP  YZ Z]^_, ` `b=Kc=*d3d - e ej jp`>(  ,  (- ]  &" P4 $P 4  Q  =K3|=*3 - +&,8 = <~(   #  $ DQ  OP "  ?   O" # LOP # $(]  9   tO"  0XP   (T , 3P- +8  D=K=*3 - 8,=K=*   4O" O4  A   , <:( ,  (- ]  &" P4 $P 4  =K3|(T ,  =*3P- + 8    $ 3  - +&,8 =  =*,  !L8O4  `&*( '    $ # A   O" # OP #  &* (  x : #  `& Y  =  =R  C  (O "  ! !& &,CLICK2CLICK2(h6(8- ]9 9: :=>?, @ @FG=*I3|IMHN&*NO(4OQ Q R=S SVRVX%Y4%[D%`%r|u rZ Z Yd\=u]3]^=v_3_  [aE " ac c dd e fffiE   ik k ll m nnnq  `s t!x=y yCLICKCLICK2CLICK3CLICK4CLICK5 <38R(vv] 2 8 l  t8U [ 8-TB   [   X      A           l   R     8   8  0  U    w  8   v  %  % '  ( ) }`$ * h+ ,   8, - 8. /  0 U1 1 4 6 6 7 17 RP8 8 9  : D; 1; R P< < = B B 8B C D  E  :6F  I & I  K K L vM M O P  Q  S S T  U V 5  X pO[  [ \  ] H_ B _ b b c  d e i  i j  k n    q  q dr s s ,v 7$v  w $z 7 $z      l  m P + 8   @l  m P +  8    0      `  Y$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T" &                  8p  o p  o  (      d     v     Ll  m P  $    @l  m P       8              A     A 5  A   v   p  o  q o  (   = ! ( " " # 3# # \$ $ % : & 0( $) ) ) = , x- 3- - \. . / : 0 02 $3 3 3 =7 37 7 S8 8 9  : ; ; = => @    B C  F @G  H I }`$ J K T & U U V vW W Y YZ  Z 4[ Y\ # \ ] v_ _ a &Ga b 3b Sb Ac c ,d d =e =vh  i Um o o =p 3p \q q Pr :s Yt t u :v  x y { { =   = =   deletereturndeletereturndeleteevehelp  eve      next_screenprevious_screenmove_up move_down    $$R` Q     J   %  Q!  ! " " J$ % * D,  , -  . $/ &#/ "3 p 3 7 3|7 9  9 ,: & : = ; @=  = 0> > & > =F       F (G G QH QI AJ J @K I L M }B$ N O R =S UT T U Y 3|Y Z A [ ]  ] H^ & ^ =_ ` = a Pc  c @d d & d =e j Um &o  o p  q t t ,u } $v w w y z J{ =}  =     J   D( T   #     [  J  U     STRINGSTRINGpp@R,       3|  A ( V ]  $  V  43V ( T   &  =  4V   !V   V  3| V  I V   V  V  ( V  = , V   = 3| _V    U typestartendcurrent select_alltypeendboxboxstart0> ? @ A F G G J 3|J L  L 4M & M N = O `Q  Q @R R & R S = T U U X 3|X Y =*[ ^  ^ ` a  f Dh h i i j j t  k ,l &#l o %p 3 L%p . @% ' % % D % ' 8 % '  q r Hs t v w w y z ~ # ,             + 8  Q  p    D &#     $  L &#     ( T  ( Q'   ( T  l I @ }:$      @ } $      J       &G  ( Q   Q      6  &  6   Q6 7  `  & " r 6  }s$  r  5          ` 3    = 3|   6  =   6  = 3  \   8 3 &      & (( T)  ) 0+ + t, } $- / 1  1 02 =3 4  5 = 7 7 9 : J>   @ B C  D `G &GH  H (J Q1J  K L QL P HV W &Y " r Z }$] 5 _ ` b Ud f  f 0g =h i  j = m n n o p t v  v 0w =x y  z = Q~ 5    p ( #  h &   < &:      #  \       T  $    r         ( T  x  &x    &v    ( T     &x   &!  &v    \ 3 &x            STRINGSTRINGTEXT FILE_NAME COLUMN_NUMBER LINE_NUMBERTARGETS    SPAN LINE_NUMBER record_number offset_columnh T p &# ( T  Q   U        [    v S 0 = >  U S     ! 0 ) < + S / / = 0 0 > 6 `  8  }Ò$   } `x  8  }˒$   }   h    &# JZ #Tpu.Tpu$MainWindow.ApplicationTitleDh kV l{ q7$qv7$v{7+${7У$m  eve_set_default_command_fileeve_set_nodefault_command_file;eve_set_de'$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Tf"fault_section_fileeve_set_nodefault_section_file;eve_set_section_file_promptingeve_set_section_file_prompting;eve_set_exit_attribute_checkeve_set_exit_attribute_check;sys$login:eve$sectioneve_section.tpu_section$ kkV03-011$vi vv|4 \7s$ $k , }$ $@~i ~~\ L7{$ t  , t 7$    (T P  \     z 7$    L}3$&xV 4!&L"V$  % %' '- $LOCAL$INI$ $LOCAL$INI$,m t DP<}8$  RT t 1xR (nqh  lNm 78$     7$     l!1x!!R!!# #$% %, -. / 01 "4 $ 4<7 67}$ 9(:} ;< <? ?K= = doMo QxXPp`a}x$bd dif}J$giik-ko7 ptrCr0 st}P$ uv}X$xy y|0|}7$  Q C ,}$  O }p$  h"$ <}$ ( } d}Ӑ$ rememberj    (Dr h xRT 01R 87$    &QP 4}$  (T    %!B4%#B<%%BD%'BL) 'L"B !8$B #$&B %(B.2OY/ /40}j$12 2 344 5`78,9}ұ$:; ; =8>?;@A}ɀ$F FL=do(Pt PPURT`xJJ@}$ JJ@Ds =3|4  J=  z =    }$   }$   7$7$ &(  &(U  0 { 1 V $ JJ@JJ@AJJ@  ,     2procedure eve$set_section_attributes; endprocedure%procedure eve$set_section_attributes; endprocedure;(Yt YY^(bw bbi0 hR4`}$J 7$7S$  ,Ds =3|&(  Q\ t};$J J})$ }C$=soM nuopM nmE =3|E =8E  E    X=3   1R   ,O , L  ==v8  &G#< }²$ };$J  J}1$   87:$ :=* procedure procedure extend tpu T4c c dhdd efw ffl(t HR0Ds =3|=& (T   P:3:& 3(],  P 3  0  8}$} %T. . // 0017$114 456 699:};) <$>>> ?@A AH4PL}$N NNT,[[[at$pJqstu uz7$y7$z {|&( }~ JJP    `p4%     A   @ }$ P> >F&$F(GTH/Zr$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TW" HI&:I (J ]K K M&M (O ]P PQ ST [( \ \L^( nx^^R ^^ _` `k $LOCAL$INI$ TPU$COMMAND TPU$COMMAND;;lHR0Ds =3|   =pu E (T x=pu E (T =:3=3P 883 4}$  =P8  P  =u33T568 8: :=7$>>@ @AB BE EF GH JK N} $ S7 $ pQ4 oQGS<SSXeve_set_default_command_file(''); eve_set_default_command_fileZ [}$^7$^1^^deve_set_default_command_fileeve_set_nodefault_command_file;lmo oq s st x7$yy{ {|} }    }$ 7$ p4 oG;eve_set_default_section_file('');eve_set_default_section_filed }$7$1eve_set_default_section_fileeve_set_nodefault_section_file;  }+$7+$3eve_set_section_file_promptingeve_set_section_file_prompting;  }#$7#$3eve_set_section_file_prompting!eve_set_nosection_file_prompting;L  }У$7У$1eve_set_exit_attribute_checkeve_set_exit_attribute_check;  }أ$7أ$1eve_set_exit_attribute_checkeve_set_noexit_attribute_check;  HHR02347679Ds 9=:3|:;;=&p=(>]? ?$A3 LADD=pEu FE F(GTH H$KK=pLu ME M(NTO OPP=Q:R3RSS=T8U3U V4W}$XY Y [|^^=_  `Pa  b=uc3cd3dfgggn $LOCAL$INI$ $LOCAL$INI$! EVE-generated code begin! EVE-generated code end! EVE attributes begin! EVE attributes endX               D     !p*  (+ T, ,P-& -//$00 13 4 449l  ` 7$ DH7$ 8@7$ 4<J# 7#$    7$7$integereve_next_screenEVE next screeneve_previous_screenEVE previous screeneve_previous_screenEVE previous screeneve_set_cursor_freeeve_set_cursor_free;eve_set_box_selecteve_set_box_noselect;eve_set_box_padeve_set_box_pad;$\V03-0264RthDJ%UP  T  \=3Y }2$ T=3Y }:$DJ%U 3|=*Dd =3P tT  8 8Dd = & !    D&J&K&L &b&dwsJ%UJ% l@R,   3|&`&&A=* !,"=*#3|#&3&&S' '(:+, ,-  ./ 2323223  5 E5 77&(T7 8 :;> >D l R0g h i { k Tk  l Tl hAm m +n n 3o o \o 8o p q 8v 3u Dv v w x z { } } ~ 3|~ O E T( E]  < m  m  3 m  EO F T( F]  < n  On  3 n  FO G T( G]  < o  o  3 o  GO H T( H]  < p  p  3 p  H  ` P B  P   1P 8   4( T      P  P A  P   1P 8   L P          &    &  4    T+ 5    (+ 5   "  4 H  4 = 3    =   = 8  3   h  = 8 3    =    Jc   $ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"   P p    8   3 \ 8   8 3   O" E " $  $ (% T&  & p' & ' &(T(  ( ,) ) =* 8, / =0 (3 D]4  4 <6 l 6 7 l : 3 l : D< =D> D= D> ? Jc@ DC  C D 9 E F P+I I 3I I \I 8I J K 8N 3M DN N P =V $RESTORE$CHAR$$RESTORE$WORD$$RESTORE$LINE$$RESTORE$SENT$ $RESTORE$@R,OPQTSTVWX X[3|[]]&^`__&``&A`ab=* d,e=*f3|fi3ij=vk3kkm G m n nuPyyJ z  {| |PJ""  DRP3|Y 3|Y  3|7P$7s$ 6:=&c 1RP T c & O(&c 3 L= = (Y t ,}$ Qw PS  = =Y 0}S$ &G @72$ \ @}$  go to  R8< ''#}$$%& &')*+ +07@$/7$0123 37 788}$9: :==&G=@ @,A}h$BC CF3|FGGH=*JK,6:N NP P`QQQ=R}$ST T U V=W W YZ}C$[]so]]M n]]^uo^^M n^m__aaa=dE deeff=g3|gkE kk=l8mE  m qE  qs st uu=v8w3|w x1 xR x y  ,O{  {,|} ~@  =v8 (&G#d H}²$  & mx=3| @}Р$ = =u hQqo7:$  3|  procedure procedureline   X(}8$ (}$P(R 3|&&G $}h$ P&A  Ho  p7$7$   6: &c  LO  c &c 3 3|c }{$  l,x  y{  ||}  ~~<`RPX}+$   g ^  7P88 ,(] e7K$&JZ7$&\JZi$ x7$7K$g  ^  ^  D  (    ^ ^  h7$^  ^ ! !"# #( -7P-5- .0&m01 13Z34&45Z5 687  8  88 9 : ::@ 8A  B  BB C D DDKREPLACE_DIALOG REPLACE_DIALOG.REPLACE_OLD_LABEL REPLACE_DIALOG.REPLACE_NEW_LABELREPLACE_DIALOG.REPLACE_ALL|&W 'Q ()c)= ++b+J ,,d,J -J$17P12882 345((6T7 78BpQ  S3|Sc T=*VVl WQ  ]l]& (]d _l_J `f  b3|bZ ddb eb Tf  fgY" hiY  pg pi qi )qTr r$sis  ve x x8yi zg Sz {~e ^ ` `  i g S` ^ S8 ,V g j j )T $j  ,g h h )T h ^ a a  ,^ _ _ V g  S  T   0R   [ R  4+A  e ] ]  `   O$ ]     O$   t  H 0R     . Q c= lbJ z+5$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Tn"0 ldJ J$}z$X}$ }$ !3|!U %3|%&Z&= (l'Y(J )) -e. .] 0] 0 16=73|7Z 8f  ;; AeB B[ C[ C DE EIQ JdM3|Mk NcN= OJ$PPUR[ RS] STf 8TATU] UVS 8VWT 8WAX X_7P_5_ `paY Tb  b,c7;$c d$e7C$e ghiY Tj  j,k7#$k l$m7+$m sx7Px5x ypzY T{  {,|7;$| }$~7C$~ hY T  ,7$ $7$7P88 t] [ 8 [ ] Q $c= U= (] ep&SJZ(T i $ L $  Q 4J$k=  -O>A [ ] f 8A] S 8T 8A     U= 1RP  ] [ 8 [ ] ]= Y T  Y" Y   REPLACE_GO_EACH_DIALOG,REPLACE_GO_EACH_DIALOG.REPLACE_GO_EACH_LABELREPLACE_GO_EACH_DIALOGdoreturnXP0R  Q c= lbJ ldJ  J$ X }$ 7P88 4((T  0R  T  S  T  Q T+]+ &]& - -W 0]0 0=131Z S2 23R  5Q 677U:Q ;8;+< 8< =@>7P?@88@ A<EGi J$J KP7c$RR\ S\ T T$U VW W[-\\ ]^\K a\a   b`d f\ g<j jk\ lm\ q\q1 qr\ sRSsu\ vR SvAwx\ yR SyAz{A| |}W ]1 V P $^  i P $`  j P $a  Xh P $_  `  R |3|k ^1 283|Z k= T" ,^1 28X oX Q U\ R S8 pQ  g}$ 3|c J$  p\ RS\ RK SA   \ RK S\ R SA8    REPLACE_EACH_DIALOGexitؐ0R  W T  8] =8UH$F}$G H=*I INt؏P S7$SYeve_set_cursor_freeeve_set_cursor_bound;8`]}#$^ _ _ct$e h7#$hneve_set_cursor_freeeve_set_cursor_free;  d3\ $  $    488(  8r    F      3 83=  F   (,Y8 3\ 8T 3|&5&Pn&h  8     3     P A     P P 8   8       ;  v E   =    =u $  8        D  (  ; uE" =(  8(  $D  4b 3b b Sc c d :g h i i l 8m 3m n 8p p r  r s 8v 3v v w  x F x } ~ ~ ( ,  Y 8  3  \  8 T   3| &5  &Pn   &h    8    @R,           3|      & `  &  &A   =* , =* 3|  3   P  :  $  8 0      3     F      1  =   xR4T         3|&@& =u0$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Ts"A: =u 3  S   :  l33=  (=3 !(3 ]4 4$5 5 6 6 : :$;\ <[ =l> ? ?,@ @ A A C C\ D D[ H HN(q ]r r$s s t t wy y{  @        H~&#4P  &H&V ,&3  D   @ &  (C]  7s$J JaI&hvJJbJh:  C Jc!J"C $ $&C & (C * *,C , 0&,050 1 2J8~:}$;4CPD DFFGIKK(LTLL(MTN N|O&H P`Q=R3|R&S&T T U WlZZ [,4cPd dgS |h}$ii=j3|j&kk&l l m p4uPu4vvAv4wPwAx x{\ |,4}P~ ~  Z \  (# <<< (Z  \ Z \ Z \ (4P   MAIN0x}$PxPR4 & && &&wPR4y z&{|~ && &&wPR4 & &I ,}:$ & &% &vPR4         TtuR`  Q J  Q J&(J     JtPR4i j&klpn o&pr&s &t& tu&vv}tshR@ &   && &   & & rRl & Q J & Q J&(J& &   & & Jpl&Q( ())J,-J/1312&5233&(344J8&(,889J;<<==@3|@@S@@AAB=C D12DD8F FG3GJ=K:M3MM\N NOTPT PQ3QQ3|R RhS3S3ST U=V:Z3Z[=\:l]] ^`=aaJcdJg gn TmppAq q,r}*$st tw &x y}$|7$|'||eve_set_box_selecteve_set_box_select;plA ,}*$  & }$7$'eve_set_box_selecteve_set_box_noselect;k  }$7$$eve_set_box_padeve_set_box_pad;j  } $7 $$eve_set_box_padeve_set_box_nopad;eve$$detached_cursor_action0@jI M Ointeger$ j??V03-0118iD(<G}z$HI IKKP@Q7$Q}$R RWm WDY Y4Z}$X[ [^` `a bcf fkATTACHhRhm ,7J$ $7$o } Xt =m L7$7$ D7#$7$ (t ] ds 4m s s 3 s  t ( T A lm 0}$t  0}$t  Ot  w `Ut |t  8O t t =P UH t =UXt = SHELLDCL $ set noonc0H( }$    7$7C$  4}$  # # $% &(& !(* *+ ,l--u// ]/ u00 080 10u22 I22 348 89}$:U; ;< =,>}$?@ @B C$D}+$F G$HI I JKL LR`PR bche}ʲ$fg ghk k,l}$mn nw w x& !/L$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T%"R  lu ] u 8 Lu I u  8 B & !  l      2 8 h  8  x  pt B & !  l     4}$  d2 )T     l}ʲ$      |      x        doZDh<}$ #@$7$$}$% %)+ +,O -.O1 17(ZA AAIdY          (            PAQARASA wAxAyAmA tAuAvAlA rqArAsA NMA <pApAnA BBBB BBB B B!B"B! BBB" wBBB# RAA$ =DABACA( BADACA1 2 3 5 7 [ 9) :(<]= =?} ?@} C3 } CD&#jE E4F&#jFJ GHJKJQL&QMJ&(O ]P PQ Q T return doPF1KP7KP4KP1ENTERKP0F11F15F17E1E4UPLEFTDOWNvt100EVEvt100_templatelk201EVElk201_template lk201 wideEVElk201_wide_templateEVE EVE$HELP_KEYSEVE$HELP_MAP_LIST $HELP$PROMPT$eve$null$tTaaV03-009@LTe&(Teemjml7$l \Xo7 $o ?; p|r7$r u7 $u x y |&| ~&~ EVE/usr/lib/tpu/eve_help.hlbuTPU/usr/lib/tpu/tpu_help.hlbuEVEeve$helpTPUtpuhelpGET_INFOtpuhelpSETtpuhelpevetpuR( # ]  T  #   $   %   &   '   :6 # $ ( ]  ( # \\H ,   7   @ :6, %  % ( ]  ( # \\H ,   7    &  & '    @ @O  07$ . &QP 0}c$2  0}$ 2OR( 1R(E8 0uR d(T ,7$ $7 $X8 }k$ EVE$_KEYS K}$   =uuu& Q7$17$ tM 7$ Pt"N ,&Y @7$  (7$ Ju P 3  : 3 &N  7 $Y87$Y8 TS &#C0000 =:287$  3  !\Q#0D #\%2. % & )&N3 )+2. Y+ ,),0DA,-)-9DA- .\2&N= 2u3 3 4 4 5 6\l8 8 Q: :,<7$< = ?A=B:CD DLE3Eu\F F$G:H8KtKK"K M7$M N3NQ&N3 Q RTuT=U[ !#*  _!#*  0EpRz z{JQ} ~Ju8 $  T JQ Ju8 $  T}$&(  &u(JJu&Q,&Y7$02 2. &O2 0&O3   8&O  P u=  MT qN oH E  =1 L  =:L   $  BZ,A @7$   D7$ 7$ =1 t 8  =:1 t 8  u=Mqo E  L1 =L  =7$  1 t    8  c$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"c  8 so  E   Tl" u=MyqsomE  4  1  !$3$&%& w%%&='1M''  (+ +$, / 2u2=6M5q6lo6f7E  7889=:Q:;1M;; <==1x==R=> ,? ?A AG QIR IJ=K:L*Q R=S:TY Z=[: \a b=c: Hdd8eFj k=l: mr s= v0xux=y; yE"y=z8{u{3{{|u|=Q~ Ju8 $  TJX~~  doG~~ reverseF~~ >abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789~~ PF1KP7KP4KP1ENTERKP04L7<&N<??A)TBME BC CF)FFG)GF8G HI IL)LAEM)MCE8M NO OR)RlES)SnE8S TU UX)XpEY)YyE8Y Z[ [^)^PE_)_SE8_ `a ad)dFe)e"F8e fg gj&N3j kp5 ' uu=m|4(LTM MN3|NOO=QQQ$R8S TUU=V3VSW WX XZ8\\\] ^__=a3abvobvbE  bd d<eee=f8 gh=j3jk%l8m3mmSmmn8 op&Gq qrr=uss:tuotutE"t=u8w3vvxxy  z{| ~= =  - 03| ({ ] <z z 3 z { l|'{ { =={  $CAPTION$[EOB]keypad_captions/|~~lP ,ljl  8.( T P     }$  P @!  "#*# $%%-vt100 lk201 widelk201 -xRHQ JuQ Ju&u(Ju 7$P Q    0Q R,RkS:61   p" # $ %4&:' (:Q- ./Ju6 help keypadHELP help keysKeyDefs _("');p*1t8 t8X8*I1I J$KL M~NNO PQT(TU VHuWWRWlXXR'XZ[(*[] ]$^_ `uaaRalbbRcbc(ce ef ghlhhRchuiiRij"m  n\o1p plqqsRst ,uRovHmvwRnww xy1z zl{{}R}~ ,Rm~RnR ,j~Rn l1 l~ RRnRn ,Rom tR ,Rm~RnR ,j~RnR ,j~Rn RR        h"))\5u :u,& 3u83"8:  8p!Y%  B   B  !B  O    P&OP  &N\)pA)yA8)lA)nA8A)PA)SA8A)B)"B8A l7$Y  , 8  !" "&&N3& ') )/   t u ,w &x x @y '\y z (Dz { ~ '~  (  eveeve(4 C ,D\@H h , XD( EVE$$X_HELP_TEARDOWN_WHEN_DONE OEVE$X_RESTORE_SENTENCE EVE$$BUFED_FORMAM$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TC"KtߪwE(tn0ӫS# NdLoϬZ:= \=YDթvHS Knx܅ o{jKҕ{ =ٱNaM2-PZƞ!\ϔTK6dDgHxnjn&v&´WB[IO ់ xB6Uf+Y |DS11 B)a0>j)}9F6/FD]*+P{Qks 4@NB 7bF 4& IF]WXm!ڰ5N5AA5],]UqnJEEAշ,-b,C|iW'1h?tT.gǔo{:x@8I !XK=M 71t~Bbl5=>kKm~19je2H0T% _٤#LSx=I'av/ x|yqؖRuEl3V34 fFڤ Aw@{a?## ';8]QDf+Œ pa,?aN۔Fp*A%1Hx:SV,ʢ1 `UaRStYcY~X;IUIKio:} Xϸ<0?}qB'}PW_(OWqWqdKQc|3Ng57瘠BlP58R1z?3{WmPWPaŁyz+BYK uX @\l~䫤O=_Mk͓ɲ5x zd=S&+/&]FJVK~zK ~g1n`6Ͼe45 j A0'ko;Ѹ8%+#jZ\bmޜ`0W` 6W/`wƢ{w#Qi[f7lW3 s;eHo9$ka8품KD m~Xj66{\Óc[-r?eU~9=+]0 9>).ެv&un6ȸX k;Wq|nh?73N# qdc4Jɷ%dA{/BBPV7p-U$Np c-Dz=@Bs|o-(P*f~aw64N:+c *^(vZP4h{x/\++&w{(~U$uM#OBgcykNB.mI= ~p-}_/R0y** ]=H#M[Rcj PGS@b%@H:`ΫY%USΑ&̣)g+l|IX4ʈB6w;5s2]D4]XGdTElyᝲgjAzmwF7*qk*-Z0'^6W<7`褦yAمծ%&TD[ܱ#P dO$D?&FEʨ8齃diZϒX/;P5mĸg6c;*0flL*7W:!g7 ) T? (Ho*x{?bD#0*3םGts`O@Pu5q]mcv N Zy}:XֶaK%Q5!]=}*@\|Nɥd틬l, c8e*"Df)AG#D-u2|͔b#,fv|5BRfIGhZ˴x@O k >V_N==:0BC."ikx[ZOCL ;Eh21X(塀kA__K Rl@_#[kŝtNxl+'gaC~ҍ3f}ɇ#jv٨~ j[.;{X=WQUGnsBIdM[g@o[tN^CB sD1EiQx 2 ~ّoсFQ܃KХfCsV6,6܈E&NX@SGJč81g>P|ۺM|:eD1s7 mjUIFj"q: wom!BBůBSsĮAOIAs]ڛoo[ WcG?.P*Ut4nΟN`y%db9ȅ78]i- }^sbܹ.I0 B SeA^r6Ht,kr.e`6n %5܀_%0Olpj_'}>Ar=& U#!>%rh>shg%ICH+̤?~OCF] Y>`g0au 3e@Db1O*Wk2y|Z*08oцe߬/8Y59[#Կkg;WF?2x78:و$zx0< ;'H"BDr&ڬKEJ +}-^Hn+uYNVi]3iʻ}W )_`Fhk ;< ~HļNۧ*,D}!2KRZ!8kt!ү8 -cA֟! !$fjEj@hnc[mG*os*DYvF+>hf(2{εo~*unLkR`-< mqh7 co!>i4isx k(Jcƴ9۬NEU/i5XDgC[&2MW)fa4|Q?:s,z9c鷘}UdML+ob ,_/H t7 ڌ4nQ ,z%   KdHw*ʪ,L93K%EܳRv&[\Y"u^kIQ^IWV^^/ͧz tYqizkzk?\=Ӆ@˞Ip n%ߎ_1$MžHGLg^=} s i]9V@ 73z'^sFGFY!)E#H deB\&Q_3C) tOlnl? atLĽwt+8#%nL{iqN:^[ aR n? ;!+~~JLD|0i8GU_^]O?-[\vypѺ\ǿqJFz 2gXѽ#Q[eEU?%[(# Ps჊ C['pyp6<i?~j,tS4-JcZcU"CXᛴQz2{(֥%@CR6QWD?5\Η'(Si2"PM},?ѯ0Hۋ\D/#˘l2ukhx b@4:{`݆DƯ7tK0GHǃk4BMjy|\]퐵pWwIVqڃ4)-aƘ[攵bHމgm٪eNI2a-Yb@0g'{%O+Vkfhۂ骶*tbV bvbi3%B[6\zzoiZsf`XZ=}8h[/9.lıDA>7IPZ7]qDug Ȭ֌ ̢8YӝZ>/y('%p{HP%zUa,azpth4zߍ1  'r|{6m:&L-6[ 1C- VW|ηJU^.% +ݼ5vv[γ=r{Es0S(d[7DfR@fӇ}Do>}3@+L`DZhuߔgi#o9:IbJ>lJ,dUcDŽDi!q"7]}T'GZHcέw=Q@a^ 3ܟ ^<#_" YRpUq h?ViW 铔9U[Ƌ47ȱ4I#gM,D灴tnI-BVB? [ ~p OBFٟ-K.FPJW'MڪM&VVZct+̊"Uԅ֪=kE1FA͛]sG2h!XSqlHmx^++!*>c_](\9/*|| ~_Yc?AS֊PMenĬ6gWZY3vU*#+5%8M?|H;3yK>?܌,K :m\-Ђsy䣝b!d -c B;eY@0 rM ,% ime3D# g8P PO\y#2V(XN^j:l 6a-ʵ))0fc6CoDh"A黃1uhgar$$Xӯz Ǿ_9! cޣ |T^h 5||deAXI O T8Y"hӷFllVA/\?X#\A8u-B>W pW-Wy\ ͓4^WL PnBLA=a {nl1xEf瞷x Mx}Ԍ+zcsq3+fq6^ gL JNYzOƨJ  Cȫj %&"̊Iyg3I2'R4&̂NBv8 N1Aun{}QF!0A,BEVE$EDT_FNDNXT EVE$HELP_TEXTS EVE$WPS_RIGHT EVE$X_WIDGETR EVE$WPS_LEFT EVE$WPS_HALT? EVE$EDT_SECT EVE$$EDIT EVE$$X_HELP_SAVED_WINDOWuEVE$$X_RULED_WINDOWEVE$$X_WILD_BIT_7EVE$BUFED_SHOW(EVE_SHOW MEVE$SET_KEYPAD_NOWPS1.EVE$SET_KEYPAD_NOEDT1 EVE$$RULER_SET_WORD_WRAP EVE$$RULER_SET_TAB_STOPEVE$$X_HELP_VT100EVE$$RULER_BACKUPEVE$DYNAMIC_HELPEVE$SET_CS_HELPEVE$HELP_SETUPVEVE$WPS_BACKUP EVE$$X_WILD_Pr EVE$WPS_SWAP] EVE$WPS_TOPQ EVE$WPS_UP$EVE$$BUILD_DECLARE_SYNONYMS$EVE$$BUILD_MODULE_PRE_INITS$ EVE$$INSERT_INVOKE_STRINGS$EVE_SAVE_SYSTEM_ATTRIBUTES$EVE$$WIDGET_FIND_EACH_YES$jEVE$X_WPS_PATTERN_SYMBOLS$EVE$$X_WILD_SUB_FUNCTIONS EVE$$X_HELP_SHOWING_KEYS EVE$$BUILD_EXIT_HANDLERS EVE$$BUILD_MODULE_IDENTS EVE$$BUILD_QUIT_HANDLERS EVE$$BUILD_SYNONYM_INITS EVE$$BUILD_STATUS_FIELDS EVE$$BUFFER_LIST_STATUS EVE$$BUILD_MODULE_INITS EVE$$BUILD_PARSER_FLAGS EVE$KT_PUSHBUTTON_CLASS "EVE$$TEST_BUFFER_BOUNDS EVE$$X_SHOWING_COMMANDS EVE$SET_KEYPAD_CAPTIONS EVE_SHOW_SYSTEM_BUFFERS EVE$$UNDEFINED_KEY_WPS {EVE$$X_RULER_TAB_STOPS EVE$KT_SEPARATOR_CLASS EVE$$X_ALL_CHARACTERS EVE$$HELP_SCROLL_BARS EVE$$RENUM_SEPARATORS EVE$$X_WILD_FUNCTIONSHEVE$$X_SPELL_PROCESSEVE$INIT_MENU_ARRAYSLEVE_SET_KEYPAD_NOWPSEVE$X_SHELL_CLASSEVE$$RULED_STATUSEVE$$RULER_STATUSEVE$$X_RULER_KEYS)EVE$X_HELP_KEYSEVE$WPS_TAB_POS;EVE$EDT_SPECINS EVE$$X_WILD_S ^EVE$$CHOOSE_PASTE_BUFFER EVE_SHOW_DEFAULTS_BUFFER EVE$$HELP_POST_FILTERvEVE$$CONSTRUCT_RULEREVE$$ACCUM_ALL_ATTRtEVE$$X_RULED_BUFFERlEVE$WPS_PAGE_MARKERsEVE$$DISPLAY_RULEREVE$$X_CS_HANDLEREVE$DELETE_BUFFEREVE_DELETE_BUFFEREVE$DEFINE_RULERxEVE$$SAVE_RULEREVE$$GET_RULERd7 EVE$EDT_CHAR(}EVE$$X_RULER_RIGHT_MARGIN_ARRAY(|EVE$$X_RULER_LEFT_MARGIN_ARRAY$EVE$$DELETE_MENU_ARRAY_ENTRY$~EVE$$X_RULER_TAB_STOPS_ARRAY$EVE$$X_RULER_PARAGRAPH_ARRAY$EVE$$X_RULER_WORD_WRAP_ARRAY$%EVE$$X_HELP_FAC_TOPIC_ARRAY$EVE$$X_ACCUM_DISPLAY_ARRAY$#EVE$$X_HELP_FACILITY_ARRAY$'EVE$$X_HELP_ARG_LIST_ARRAY$EVE$DEFINE_USER_MENU_ENTRY$$EVE$$X_HELP_LIBRARY_ARRAY EVE$$X_BUFFER_ATTR_ARRAY EVE$$UNDEFINED_RULER_KEY &EVE$$X_HELP_INVOKE_ARRAY EVE$$X_HELP_THE_FACILITY EVE$$X_WIDGET_HELP_ARRAY EVE$UNDEFINE_MENU_ENTRY EVE_UNDEFINE_MENU_ENTRY EVE$DEFINE_MENU_ENTRY EVE_DEFINE_MENU_ENTRYEVE$$BUFED_GET_ENTRYEVE$IS_HELP_FACILITYEVE$$ADD_MENU_ARRAYEVE$$GET_MENU_ARRAYEVE_SHOW_SUMMARYb EVE$WPS_COPY EVE$$FIND_COMMAND_INDEXEVE$$GET_MENU_INDEXEVE$$SET_LIST_BOXh#$X%%'T(( + 79\ABPDDEGI PK!xM"U* W+X,,X-TX.|X/Z0[1[2\3_4Hc5e6e7h8Pj9l:8n;q<q=(r>tt?t@\vB{CXDxEGLITJdKL̓MNPQdRST<UtVWXPYHZ@[\]^X_`hahbhcd|e$f g|hiHklHmo$pxq̽r@svxHLXdhl x48(\XP  \p !$%&'h)$****8x:?@BTCDExFXGHIJ KLMNOOUZ`]L^_haaTdlHmnho|ooop4qrsHux ^"\}$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"yy\|}}8~~( ]   ( ]     , j <    ( ](]A   & l O    & 3    h35  6(7 8 8 9: :Ad   :6 :6 (L   u  R  1 R  1 R    & x &vY  &cY 8 ,        get_infoset|4J3  =JL&(J8R(vv         5 :  | &=  $  8  ~u=A \ 3| !!& ! " %  '' (!( )$*  ,", . 6:0  O2  23  6u8 ;&l; ?JQC D&QEJ&G GMeve HR0dvefgkijvko   pq  t w :6x y |s# 1RP&x Y 8  T     &      1R P& Y 8 (    &X k oL  ,::Q QA X  &P  & ,& P $  &)Y D&P 8 ( @1lR P(WvxlR (f   g    ( huR  5,8 h&;P &(P A     1lR R (  l  1R  ( " "u## &R &( && u' ' ()R )j- o-n-. ,//1 1@4131o34R4758p: :< <Dl=m>> @ @lC zC H<JJL LM T5 UWWXvY Y[\3|\]=^ ` ` a1a c=d  h hjl  olTlm ,nnp pTs1r1orsRs t  u$v5 wx  {1{ = ; 8}$< v  @3|= =S7 $  U tpuevetpueve_eve$kt_topic_eve_list_of_topics??keypadevetpueve(((get_infoset)_()_ _t8R(vv 50 O  <        (}$ U     0    <Q h a      5   _at_file@ p\ u 7 $  U   =    ! " '" # (# j' j( o( m( S( ) O+  + (, }$- U . H/ 0 SRL1 }$3 U4 l9 m9 9 : ; 6= 'u? u? =@ A ,B M|qB umB B E B C xE uF 7 $F G PH PI L  M N 6:S T RYT 8T U V  W X  Y \ 1l[ \ R\ ( \ ] ] l^ ^ _ e mf mqf If nf f :g 3g ug g k 3k uSk k ,l :o  qo up E p q q r s RYs 8s t u =v 3v w :x my mqy Iy ny y :z 3z z  |   u =  q   Du" = 8 7{$  Dv  = P PO   2l *m    :   u = ;  E" = 8 u 3   u =   =  U   _  ~I~~I~  ~I~ @ O > @7$  87$  =  D7$  <7{$    H     $Q             "  |  ( }$       X  ( }$         U   &uG &cx  & w     U ,#='  '(!j<$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Tzf"(J u )4*7$*J u1<8R(;v<=@?v@B DDAE E(FGG=J& K KLO=PP=Q RS1ST8V3UWW X=vZ Z[\6] ^3^_ _=`8a3aa b=ve el0du uv vx 5x xz 5z z=|>|>| }~&#  # L&uG&cx  =&cx =   1 =   next_screenprevious_screenmove_up move_downT0 Q Y   3|     =  8 3    = 3  S  8 = 8    t  8 $: u: =? M ? q? u@ n@ @ E @ B  B C  D dE =F F G H PI :J ">oJ 7J L M :6N &# N P P Q &Q XS  S XT )T V  V 0jW W X PY \ &# 3\  ] P_  ` g o !#* o            " " "( 8 ( <)  *  + ,  - 0  ? U=A  A HB 7$B BB  C @D 7{$E BE H  H I I K M  M N `O 1O RPP  P Q  R \S 1S R PT  T U  V W W [ -[ O]  ] ^  _ tb B b d  d (f  g h j %j n o Ao p q Aq 5q Aq r &uGs &cxs s 8s t u v 5v Aw w x  y Pz \{ X5{ A| | }        d  , 7$  $ 7 $    p l ]m P + 8   @l m P +  8    " t  ( }$      X  ( }$ (       d   &           helpreturn next_screenprevious_screenmove_up move_down next_screen move_downprevious_screenmove_uphelp  eve@R,       3|  =*  &   &d   &b s  : 3  =  P     =*s  : 3  = =*  P      %  (A T KA  m4 YX$ , NM$ EVE$EDT_KEYSKEYPAD/usr/lib/tpu/eve_keyhelp.hlbuKEYPAD eve$keyhelp$$UUV03-004$_ PAe$g. ggk}}A~ ~ Q   O p 8/  }3$  R( 1R(8 0uR}b$ EVE$_KEYS0R(/ A  Q   X @    $ \ &=u 8 :=u  @R, !" "%3|%' '( (++&,`--&..&A./0=* 2,3=*43|47377S8 89:= => A4BC C D E EI3IJJ1JwJJ8LM8P3PPQ  +TT GT V VWX XZ1 [ [\=_ _eR `w}0$xyz{ {}}$~  3|   ((T& 6 \$} $ ==H= =  8 ,}р$  4  4 = hHR,3(Tk =3k \ 83&Lk 3 8H(9}I$   t  =k  3=k }I$3k S  P= #$t- --3(L@R, 3|=*P3\8 81P  T  3"Y$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Tތ"\ < 8=v : p3S  =:=u8 D @R, 3|&H& ,=*  & T=*T" 8  & T=*T  8  =*T  8 8 ز@R, ! !$3|$%=*'P( () ).T/  /,0=v18 234 458 6P7P78P888 9$:=u;8>=uEPF FG8J JP hR@]^&_`afcd&efhij jm3|mn&o=*tttt  tv v(wTx x||$}} $~ ~=   & &  &  (=     (T |4 l    3P HT  (=  d P33 T  ,8  tY ,8  (= (OPQ QU U VX& !XZ Z([ [\ __ a ag\`qrs svPw8x x~H 3|=*Q " d3\ ,83 \3\ ,83=9 UQ " ` (=8 $= X (=8 $=>   t~ D 6    l<P   3|P D& & @  4==u= =uX̦@R,(T+8 =u 3  S  4 &5x   L &53|&5wX +(T+8 =u3S 4 &5x   !L"&5#3|$&5w$$X( ()+--.3|.O1 125 3`Q5  5(666 7 888 :;== >?B3|BC&5CD=uF&cG&SGwGGFJA JdJM MNQR] R,S&^rGSSQW" W1XX[&[] ] ^&d^a:de3eeSf f$ugg h<j3|j&5tjjXo opr rxpRTH&  &  }$ &   =Q lU  }`$ @ H~  u (|H )nA ,}$ @ T^ $ J  delete 0123456789specinsНH $::V03-012FPG G,H}b$IJ JMNO ORRRR  RT TUU^^&)+^m8^ _aF a$b c  dfF g kxnn&*m7$n"n op  qr v@ww% xy y~}[$G  lm}9$ 0&x *}y$     ܚ R`h &J@ J$7°$oJ@   &J@ 3|& J@ ,} $   mt$  H}$J@  (T  (T @  &  t(T 4 &  ,}ʳ$ mp&T&*}[$ (v ] @u  u  3 u   v (H TH A pm v H Hv H HH HH &H 2Qoq!m l#V# $p%A%,--../&40 081=2=u3335&46 687=8=v939;;>?x C \E &I" x  J &KKK L0NNO=x P U=VVx XmTpZfoZjmZ#)IR3$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TC"oZ\mZ[HH \? ]_Hpe oemeoemefHH g<phnohimhoh[mhhOk?n=p&Gq qLsm(t}r$ux vw}Z$ y{m}}Ox  w Lx |x  8O x x =x  =Xx =   Hx x    8&G   P lY H838 = 8 8=   m8pomHH (p{oyHH J@    LNGSPLCORSYS$SYSTEM:.EXESPELLset noondelete:==deletecreate:==create.tmp.1 sys$scratch:/usr/bin/spell   > CREATE/TERMINAL=DECTERM/WAIT/WINDOW_ATTRIBUTES=(ROWS=24,columns=80,Initial_state=window,title="DECSpell",Icon_name="DECSpell") SPELL  /output=spell  /output=/bin/rm  $ delete ;* ԍ    w   q  j ( ]   H &#cx    6n  y  z  {    |    }    ~        " " | # # } $ $ ~ % % | & & } ' ' ~ ( ( | ) ) } * * ~ + + | , , } - - ~ . . | / / } 0 0 ~ 1 1 | 2 2 } 3 3 ~ 4 4 | 5 5 } 6 6 ~ 7 7 | 8 8 } 9 9 ~ : : | ; ; } < < ~ = = | > > } ? ? ~ A O C EVE$WPS_KEYSEVE$RULER_KEYSEVE$RULER_LIST$ĉV03-007< PA$\M 4A  Q  O p 8N  }$  R( 1R(8 0uR}J$ EVE$_KEYS(0R(N A  Q  X @      D TL UK V VV\Dą^L _K ` ``fD|hL iK j jjpD4rL sK t ttz4|U  }S }}4Rh  JS  JT\  "   JS ! JT!" Q% " % t' Y'  ' T( ) ) JS* * JT , l. Y.  . T/ 0 0 JS1 2 JTe5 5 ; eve$undefined_key (last_key)eve$undefined_key (last_key)eve$$undefined_key_wpseve$undefined_key (last_key)4|U "R hDLKA 3P  ,K 3 d83 8 <3  ؀ U     (T l4 l    3\ P33 8K L  ~ U     (T l4 ,l   , 3\ P 3 3   , 8 L K  |P    "#$ $'U  )) *L +K - -14|7P8 89 9;<= =@U "BB CL DK F FLT{U3|UVVWW XX\T({e3|effgW hhnz| | }& ! k  ] k    k  $}$ "p&  3 PASTE_BUFFER_!ULl0y ]     xP D     ^  <&"  w$& &   @^   (T $} $  &=     \  4 #   &  &}$ u#$% %(^ (* * +" ++./ /54u=>? ?B^ BD DE# EEHI IOtUUVWX X[\] ]`"(`b bh!20%D t@R,wxy|{|~ 3|&`&&A=* ,=*3|3S 8=}$ 8383 E"$WL$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"M E" 4=3 4=3 8 p=uM E  (=38 @= E" =u E  8=83 x=B E  (=38  =8B E  =3 p=8 E" x=uM E  (=3 =3Y 8B E  =3   H  O  Xm (  " "(plRd1Y1(2T282 344J67>9Y9(:T:8: ;<<J>@AB BEEG H IIJ JLDM MN N O PST TV WXX=YF YZZ=[3[[\[ \]8`` aaJc ciT8j3|8 W i@R, 3|E  L=T" 3\ t8E " = $=Ej   = $=W   T" ,   = < T   $=}j$ T8g3| W @f   $    P , G8 "P    e R``Pd $Ja $Ja L K U   <q6quovqE"  @=:n (=ln :=usodE  83=83  q uo v    E (T `=83   tX T=:=v3 =" $\&='8)3))\* *,--&"-..Ja/P0812833Ja 4$5=v68:3:< <B       P`F FGL HK IIMP_Q QRL SK TTZp\_xRHeg gh jkrmo op rtuv vy3|y{=*} ~ T" D3\ 8    L3\ 8 \T" D3\ 8 (=   >\0 J &&G & =* 0&   8J J8 <[8R(t(] P&#cx ,&   t u L  JT JQ( ] <  3  L&u b&u n   &u b ) +&bt++,.&u h.3 3 5 5t 78u < =J j>M>`> @v BJQw DH H H=jIxII8J JPeve$$ruler_mouse_listEVE$$RULER_MOUSEEVE$$RULER_MOUSE_LISTEVE$$RULER_MOUSEEVE$$RULER_MOUSE_LISTeve$$ruler_mouseEVE$$RULER_MOUSE_LIST $WPS$Ruler$[End of ruler]return eve$$ruler_statusreturn eve$$ruled_status  V@R,       3|  &t "  &t F  &t W  &u P  &hm     = J  "  &Pt  ( T   =u m   p m   P 8   $  8 x @  0 (    1o  u  R )   1l  R   8  < =uu  8   =uu  8 G   < =uu  8  t      P!  ! <" =uu# # 8% * t  * ,  , P.  . </ =uu0 0 83 !8 => !#* T TLRPWQ]_Qa ac7$cccd(|e e,f}j$gh hj)jlm An n,o}j$pq qt&t "ty u&t Fuz v&t Wv{ xy | yz } z{ ~ ~%Q$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"t  ~ t   }Ð$  0123456789O A ,}j$ | y } z ~ {  t   t  Qy Qz A $}ڲ$Jt y z &t WY{ J)t { v H }$  Mo&t "&t F&t W&u P&hm ,} $  ,}$ (T jXD (l4Qn 1xRl (s R  ) P \u R 1 Rn   H ) ) 8 tu RQno1R n l u 1R ( n (Qk  $ 1 RT! !8"1x""R"&{ 'J)t { (v )}$* *0      H9;o;;=&t F=Jt ??QCQC~AD DEt  QHXQHNAI IJt  Mv NH O OUWwPpG^`o``b&t "bJt ddQgQg~Ah hit  QlXQlNAm mnt  rv sH t tzWwPpFot  QQA t  QxQnAQ`AQRA t  v H  PpLlrREot  QQA t  QxQnAQ`AQRA t  v H  WwLlrRDt  oS t  t  oS t  v H  tDJ  1 8 tCJ" &P 8  dC & T          `Bb d =ve f f g 8i i m 8LBo q =ur r x B  &  Q     8  (  ! 8% ; % E% ' ' ( = ) @Q+   + , 8 - . 81 1 7 @@ B & B QD   D E 8 F G 8J EJ L L M = N @QP   P Q 8 R S 8V V \ T? -   1 X -  h  Q   -   ," *. 8 }$  }ء$   help ruler keys|>(C u TD  D @E &u PF t F M u M M U V V \ =(a u Tb  b tc &u Pd t d Ph Pi u i k k k k l l l u v v | <(R        = J  J   &u P  &u h j o  M   J  =u  j    Q  1o   R  1 1o  R  1o t  w  8  8 l    p   R  J'u L   qvvvnvvvqn1:   @  &u m -  8 -T B  -  eve$mouse_keys@X9 :    @9 :    8   A , }j$    |  }  ~     8E E JSF F JT@H PI  I J U  M -M S eve$undefined_key (last_key)h7@R,` a b e d e g h i i l 3|l n =*p Tq " q s 3s s St t $u =v h v v y 3y y Sz z { 8 | } T~ P ~ T 8 T *  A    8 T       8 T   A $ 8   3  =u 3  = E"   @  1   h     4 = 8 W  8  1   h    3  S $ = h    T  , 8   8  < T \  8   T & $ 8   3  =v 3  = E      d h D T R $ 8        8 @  = 8 W  x  d h D T h $ 8                  0 o  40o p q s$L0JJV03-015H$0RJc 8& &*t   3|& ( ] ~ ~ &~   @3 ~   h = Jc  &&I$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Tj"&V&*R]8 O &3 XP&&V&*RT8 O &3 X &d&V O &3 =E  T=P7$  |=7k$P  ( T $ = D=:8Jc    BUFFER LISTreturn eve$$buffer_list_status$$ T)X  YZ Z [\] ]d4)nop pv7±$u7+$vwxy y|&|~ ~4    }$  H(|R8d  }(]  &< ,} 7C$ 7;$ 3|&*&)&G8 $7$&V P lH 7$k6 <6:  18 d7P88 (] e& i"  q: & Y"J  qn & Z$ `7$  " "# #'6:(1(*-++,A,-RK P-A. .,/}±$01 14R P4446R P66 8>P> ?@  A4B&%C CDHH =J JPK&K M M\N& V,NXO 8OO,P&3P QS ST VmW  ,Y&*YZ Z([ \\ ]Da7"$aoef fXk  lnR Pn oq qr s t&:tu&u8u vw7Pxz88z {(~] eG7$& JZ i"& _& Y& Z$ 7$A 4}±$  % L7$o  & PY 8 $& *(T  }$& _ \P( ]   = =v8T \=uJc Jc  =uJc Jc &   REALLYDELBUF_DIALOG7eve$delete_buffer (eve$find_buffer ('!AS'), !UL, '!AS')/eve$unmanage_widget(eve$x_reallydelbuf_dialog);7eve$delete_buffer (eve$find_buffer ('!AS'), !UL, '!AS')/eve$unmanage_widget(eve$x_reallydelbuf_dialog);exitWRITEDELPROMPT_DIALOG*WRITEDELPROMPT_DIALOG.WRITEDELPROMPT_LABEL1eve$$widget_writedelprompt_ok ('!AS', !UL, '!AS')eve$invalid_event(35914927)eve$invalid_event(35914928)eve$invalid_event(35914933)- , &* !&G! "&) #,$7$$ %&(&/ ),*7$* +,.&V /,07$0 124&< 5,67$6 78:& ;< =$>7$>CPC C$D7$DG1H HL Q7s$  Q R@ Z7{$ Z\8]P^ cd3de=uf8g3gh1i ij=v kPmE m=n]of op=vs8t3u u v=~   $%'Y( ()}$ *<+=u,so,0,E - -.}$ /182T3 34=u 56888939:8;:<8=T>E >?8 @(lA BwBB8D3DDE1EREF8G&GI I J}$LzLL8OOOU --LphRPXb bcefgjijltn3|nooqK>ss=xEL x{ {l|=}=u~6  =E  (==u==  Timer Messagecalls to LIB$GET_VM,P HR0&  8}$U =*3|&!dX&V8  = O U73$(  H&  = &=  U7k$&  = do $OC =Jq P&*7$ (  P!P#7$# & l(&(* *+7$+-7 $- ..(. /'!(z$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T1"P2&:233&/A4 4$57$577$7 88(8 9P<& =(>&> ?@7$@B7k$B CC(C DPF&) G$H7$H J7#$ J  K,L7#$ L P&"P7s$P QPS&(TT TU VW Z7$ Z7#$Z \&F\7$\ ]P_ _ a a`d7$d7s$d7#$d  epj&"tj jQj7s$j7#$j m m o oLq7$q7{$q  r8sQ s7{$s uPw&/ xDz7K$z7#$z  {<}7k$}7#$} & (7[$   7$ P&T    7+$ 7#$   @&h7$ P&G73$ P&&Q ,7$ (7$7#$  l \&P ,7$ P&W ( T 47C$   P7;$  (  P==X p 47K$  (7S$ P p&C 7s$Y 47$  P&  07$ P(^ ]  :^ &  H7$7$ X ^ H7#$7$ @7$7$   P =P:&c l&c P  P&c 3  &G  H=7c$  \ =7[$ P   P=$ x.& / /80}$1U23 36=*73|7889C:;<>? CAUC7k$CCCEF& G GH=J JP<VVVWXX&hX1oXwXXZ7$Z[1t[[] ]^b bcLf$kfmfffo Km0L M N! O(P+ Q# R5 G      "  R  R  n R  ULTRIX\\.\^$[]+*\\\\\\\\\\\\\\\\\\^\\\\\\\\\\\\\\\\\\\\\\\\\\\\\VMS\*%\\\\]\\\\\\\\\\\\\\\\\\\\~\\\w<>[\:.doxanslupf^+\\\\\\\oabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ8abcdefghijklmnopqrstuvwxyz7ABCDEFGHIJKLMNOPQRSTUVWXYZA !"#$%&'()*+,-./0123456789:;<=>?@[\]^_`{|}~   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~$4DDV03-008 \R \^ ^X_R P` `,aR kaaeR fR ngPg ghkkq  1      R Z` 4 (  lR (  T(   ! # % %&l++,,3't8} } Q 8lomo 8lmomo < }`$`$ D 4lJmo>matchl+ (unanchor+'')+ ('')+ ''@ @A1AC CD DFRPG G0jHHI I JK KRp8 8: :0;" ; <PE !9 !AS $pV03-020H (] e &Z &# 8  JZ  ZZ &l & \JZJZP&  ZZ 5  & l    &  \JZJZP&  ZZ!S fg!$&$ '0 01Z12Z245&5 l667&7: \;;JZ<<J ZP@&@ H HI IKZKKM&!MMN&NNQR:,STOUU0V&3VV W|[ [\Z\]Z]bfgbe&e fiZiij&jjn noZopZpu;fgux&x y} }~Z~Zfg&  Z(8$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Ts" ZIfg&  ZZfg&  ZZ[fg&  ZZfg&  Z&&3&3&3&3&3&3&3 EXTEND_MENU_DIALOG"EXTEND_MENU_DIALOG.EXTEND_SUBFORM22.EXTEND_MENU_LIST_POPUPSSW.EXTEND_MENU_LIST_POPUPS"EXTEND_MENU_DIALOG.EXTEND_SUBFORM36.EXTEND_MENU_LIST_CONTENTSSW.EXTEND_MENU_LIST_CONTENTSEXTEND_MENU_NOSEL_DUMMY"EXTEND_MENU_DIALOG.EXTEND_SUBFORM16.EXTEND_MENU_LIST_COMMANDSSW.EXTEND_MENU_LIST_COMMANDSEXTEND_MENU_SEP_DUMMYEXTEND_MENU_FILE_DUMMYEXTEND_MENU_EDIT_DUMMYEXTEND_MENU_FORMAT_DUMMYEXTEND_MENU_SEARCH_DUMMYEXTEND_MENU_DISPLAY_DUMMYEXTEND_MENU_CUSTOM_DUMMYx,66A  ( ]   (#, " dd<< <     <     0 HR0#7$%('7(+, ,/71& 15 5 6 6 7 7 9j[P9 X: 8: ;(< ]= => ?<6A A A C CD (G #H00@, HI JK&aKMMNaNO O Q Q,T  U(W&a3W Xp"Z < Z[\ _& Y`` a b7$b c [ ddf'fh*hk l m [ o q`r&`rtt4u`uv vx x~&~6T$6 6SA (S JZ  ,[ v (&`3 7|( ]       && Z8Z8Zx8(& T& D P(& 3 (] 8fg  $JJZY shellclassrecDwtMenuSText PopupMenu HELP_DIALOG firstTopic librarySpecI&aIKKLaLMN N@PP}P$ Q QS&a3S ThV}H$W WeEVE$INVALID_EVENT.n5&6&X6 : :: :A; ;h?Qq?o??& AA7@$ AoBEE GH" I J P%NEEDFILENAME_DIALOG.NEEDFILENAME_TEXTthe_filethe_filethe_fileeve$$widget_nofilespecexit_ok()the_buffer_namestate0UnXQqXPoXgX& ZQZ7@$ Zo_eve$$widget_nofilespecexit_ok()the_buffer_name|dnph& `jjz l8m&3mP n" o r y)eve$unmanage_widget(eve$x_message_dialog)state the_buffern&t&X }$&% +WRITEFILEPROMPT_DIALOG.WRITEFILEPROMPT_TEXTRdY(T8 JY(T8 Jn (  J     J"  J8  , ( T & \ )] 4            8 k  &    Z  & " Z" " $ &% % @& && & ' ' ( ) ) 0 > Z> > @ &!@ A &A C D :G G H :I (I OK uL L RPL AL L TON  O P P Q R &3R U $W X X Z Z `  d"g 0H`x g h h i j j k l l m tn n o \p p q Dr r s ,t t u v v } XN N Q  Q DR R S T ZU  V W ZW Z ZZ ^ &_ Je | &   O  P A D  $     &3 ` (    |(R (] $   8}$        8}ȣ$   , l  P(] ,}$  g (  ]  \h   :61RP p ( ]  "]" %  %&1 1 Z 137R7_;  =}$ C CD EFQFI IJ K pLoLyLO (pP_oPWP QRA [7$ pXoX-mY oY!mYmY oY mZoZmZoZVQV1zVVRWQnWqW[l])G0$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"]_ _eXmCreatePushButtonXmCreateSeparatorGadget''',''',eve$define_user_menu_entry('','',',,);0000eve$menu_entry \4R(,YZ]]](a]b b$d de ei  j8k}$lm mp pq quvwx|&|~  :, t 8&Z  h O    lQ kP 4  < l  l  $}$  @ ,    }$7$pomoQ1zRQnqxl  }$eve$undefine_menu_entry ('','');0000eve$menu_entry ")0H`@x )|** +d,, -L/&(// 02&22 36&66 7:&:: ;l>&>> ?4B&BBI&EVE_MENU_BAR.popup_FILE_MENU.FILE_MENU&EVE_MENU_BAR.popup_FILE_MENU.EDIT_MENU(EVE_MENU_BAR.popup_FILE_MENU.FORMAT_MENU(EVE_MENU_BAR.popup_FILE_MENU.SEARCH_MENU)EVE_MENU_BAR.popup_FILE_MENU.DISPLAY_MENU+EVE_MENU_BAR.popup_FILE_MENU.CUSTOMIZE_MENUȿ:,(  (p D1xR ... ->ܾTZTTVW Y&!YZ&Z[ ]]_ _` Oc c d e g<Ohh(i&3i jXm0n}$o or rxTZ&! &    t  QkS ll lQkS 8Qkll h# ,x $oT,(R 4} 7$7[$ 7$7C$    7k$ <    0    Ը(R (] $   8}$    S 4.   8 }ȣ$  (] ,}$ Q&! ! !" " #  O% %|& & ':( ( ):+ +,- - /(1&=1 24 4T5:6 6 7:9 9:5 ;p<7P> >0?7 $ ? @AC5  D(E7*$ EG7PI IKo L$N NO}!RS S(Y ]Z Z ]\] bd def:6g1gRPh hpi(j ]k k n]Wn r rs~ ~ Z ~R _  }$  (p`oX B7$ po.m o"m momomoQ1zRQnql  _dwt$push_button_createdwt$separator_create',''',eve$define_user_menu_entry('','',',,'');0000eve$menu_entry ( uv:xZxxz&!z{&{~~:O  O(&3 x Z&!oP  Qkl`$(R 4} 7$7[$ 7$7$  j$DDV03-003(KPREnglishX] ^ _ ` a b ~c vd me bf Wjprevious_screen next_screen move_right move_downremembermove_upreturnhelpexitdo0L  041213.171705!EVE$DYNAMIC_MODULE_IDENTUUVVWWXXYYZZ[[\\]]cwritewritenowritenowrite read-only read-only read_only read_only noread-only noread-only noread_only noread_only modifiable modifiable unmodifiable unmodifiable nomodifiable nomodifiableleefzfxgrgqhlhmijiijdjfkdkdqatateveryeveryspacesspacesmovementmovementinsertinsert invisible invisiblevisiblevisiblehssttuuvvwwxxyyzz{{||previous_screenprevious_screen next_screen next_screen move_right move_right move_down move_downrememberremembermove_upmove_upreturnreturnhelphelpexitexitdodo8 EVE$BUILD_MODULE_IDENT EVE$OPTIONS_MODULE_IDENT EVE$CONSTANTS_MODULE_IDENT EVE$TERMINALS_MODULE_IDENT EVE$SYNONYMS_MODULE_IDENT EVE$DECWINDOWS_MODULE_IDENT EVE$WINDOWS_MODULE_IDENT EVE$FILE_MODULE_IDENT EVE$PARSER_MODULE_IDENT EVE$CORE_MODULE_IDENT EVE$FORMAT_MODULE_IDENT EVE$MOUSE_MODULE_IDENT EVE$EXTEND_MODULE_IDENT EVE$EDIT_MODULE_IDENT EVE$ADVANCED_MODULE_IDENT EVE$HELP_MODULE_IDENT EVE$EDT_MODULE_IDENT EVE$EXTRAS_MODULE_IDENT EVE$WPS_MO*c*S$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T9"/DULE_IDENT EVE$SHOW_MODULE_IDENT EVE$WILDCARD_MODULE_IDENT EVE$MENUS_MODULE_IDENT EVE$INTERNATIONALIZATION_MODULE_IDENT EVE$DYNAMIC_MODULE_IDENT NOTES$OPTIONS_MODULE_IDENT NOTES$MSGS_MODULE_IDENT NOTES$CONS_MODULE_IDENT NOTES$INIT_MODULE_IDENT NOTES$COMMAND_MODULE_IDENT NOTES$EVE_MODULE_IDENT NOTES$TPU_MODULE_IDENT EVE$DYNAMIC_MODULE_IDENT !EVE$$BUILD_MODULE_IDENTS< EVE$X_ENABLE_PARSER_NOTES EVE$$BUILD_PARSER_FLAGS  wEVE$DECWINDOWS_MODULE_PRE_INIT EVE$HELP_MODULE_PRE_INIT EVE$INTERNATIONALIZATION_MODULE_PRE_INIT NOTES_MODULE_PRE_INIT $EVE$$BUILD_MODULE_PRE_INITSp` JEVE$BUILD_MODULE_INIT EVE$OPTIONS_MODULE_INIT EVE$CONSTANTS_MODULE_INIT EVE$TERMINALS_MODULE_INIT EVE$SYNONYMS_MODULE_INIT EVE$DECWINDOWS_MODULE_INIT EVE$WINDOWS_MODULE_INIT EVE$FILE_MODULE_INIT EVE$PARSER_MODULE_INIT EVE$CORE_MODULE_INIT EVE$FORMAT_MODULE_INIT EVE$MOUSE_MODULE_INIT EVE$EXTEND_MODULE_INIT EVE$EDIT_MODULE_INIT EVE$ADVANCED_MODULE_INIT EVE$HELP_MODULE_INIT EVE$EDT_MODULE_INIT EVE$EXTRAS_MODULE_INIT EVE$WPS_MODULE_INIT EVE$SHOW_MODULE_INIT EVE$WILDCARD_MODULE_INIT EVE$MENUS_MODULE_INIT EVE$INTERNATIONALIZATION_MODULE_INIT NOTES$OPTIONS_MODULE_INIT NOTES_MODULE_INIT EVE$$BUILD_MODULE_INITS̠ ]EVE$FILE_DECLARE_SYNONYM EVE$FORMAT_DECLARE_SYNONYM EVE$INTERNATIONALIZATION_DECLARE_SYNONYM $EVE$$BUILD_DECLARE_SYNONYMSx$ TEVE$FILE_SYNONYM_INIT EVE$FORMAT_SYNONYM_INIT EVE$INTERNATIONALIZATION_SYNONYM_INIT !EVE$$BUILD_SYNONYM_INITSl JEVE$DIRECTION_STATUS_FIELD EVE$MODE_STATUS_FIELD EVE$NOWRITE_STATUS_FIELD !EVE$$BUILD_STATUS_FIELDSP  ,EVE$$EXTEND_EXIT_HANDLER NOTES_EXIT_HANDLER !EVE$$BUILD_EXIT_HANDLERSPx   ,EVE$$EXTEND_QUIT_HANDLER NOTES_QUIT_HANDLER ! EVE$$BUILD_QUIT_HANDLERS %4  Pd8P$ t$<Dd4 NOTES$_SHOW_USER_JOIN2NOTES$_BEING_WRITTENzNOTES$_PRESS_CTRLZ_N}NOTES$_PRESS_RETURNEVE$X_OPTION_TRACENOTES$_INVITMLENNOTES$_EDISPAWN- NOTES$_HIDDEN NOTES$_N_OF_Nh> NOTES$_UNSEEN NOTES$_SHOW_PROF_AUTOrNOTES$_ENTERINTRONOTES$_ANSWER_NONOTES$_ASK_YESNO&NOTES$_MORE_INFO NOTES$_SENDTO NOTES$_ANDTO NOTES$_SHOW_USER_FULL NOTES$_SHOW_MODU_FULLNOTES$_CTRLZ_CANCELNOTES$_SENDING_MAIL)NOTES$_NOTES_WRFILNOTES$_SENT_TO_ALLNOTES$_NOTENOTDELsNOTES$_CTRLZMAILNOTES$_EDICALL NOTES$_NORMAL NOTES$_SHOW_PROF_PERMJNOTES$_OLD_INVACCNAMNOTES$_FAILGETVMNOTES$_INVACCNAM NOTES$_MISREQITMNOTES$_SHOW_ENT_OBJFNOTES$_MAILSUBJnNOTES$_NONOTEBOOKNOTES$_SENDBOTHNOTES$_MODERATORS_OFNOTES$_SHOW_PROF_DEFNOTES$_SHOW_ENT_CONFQNOTES$_CREATE_CONF*NOTES$_NOTES_WRBUFNOTES$_READINGCONF/NOTES$_UPDATE_CONFNOTES$_MEMBERS_OFNOTES$_CREATEBUF.NOTES$_OPEN_CONFNOTES$_DIR_CONF+NOTES$_DIRTOBUFNOTES$_WRITEBUF4NOTES$_HELPBUF0 NOTES$_NMFNOTES$X_TRACE_DEBUGtNOTES$_NOTREADINGNOTES$_WORKING NOTES$_KEYWORD_MODIFIED NOTES$_KEYWORD_CREATED NOTES$_KEYWORD_DELETED NOTES$_MEMBER_MODIFIED %NOTES$_OBJECT_MODIFIED NOTES$_ENTRY_MODIFIED NOTES$_MEMBER_DELETED NOTES$_MARKER_DELETED NOTES$_NEVER_ACCESSED $NOTES$_OBJECT_DELETED 'NOTES$_SRV_NEWPROTUPD gNOTES$_SRV_OLDPROTUPDNOTES$_ENTRY_DELETED(NOTES$_ENTRY_ABORTEDNOTES$_NOTE_MODIFIEDNOTES$_SHOW_NOTE_HIDNOTES$_SHOW_CONF_MOD]NOTES$_CONFERENCEIDNOTES$_MEMBER_ADDEDNOTES$_MARKER_ADDEDNOTES$_NOTE_DELETED#NOTES$_OBJECT_ADDEDNOTES$_ENTRY_ADDEDHNOTES$_MODERATORID NOTES$_PROFILE_MODNOTES$_TEXT_APPEND_NOTES$_WRITELOCKIDNOTES$_WILLNOTSENDENOTES$_CONFCREUPDNOTES$_FILECREUPDKNOTES$_LOCATIONIDNOTES$_CANCELLEDNOTES$_ILLNOTEIDNOTES$_INVITMCOD\NOTES$_KEYWORDIDNOTES$_NOTESQADDeNOTES$_USEFILEID^NOTES$_ATTRIBIDZNOTES$_AUTHORIDNOTES$_DIR_HEAD`NOTES$_HIDDENIDDNOTES$_NOTICEIDNOTES$_SHOW_MODNOTES$_EXPIRED;NOTES$_ENTRYIDqNOTES$_MSGSEND[NOTES$_TOPICIDCNOTES$_TITLEIDG NOTES$_FILEID< NOTES$_NOTEID NOTES$_KEYWORD_ADDNOTE NOTES$_KEYWORD_DELNOTE NOTES$_OVERSTRIKE_MODE NOTES$_DIR_CONF_TITLE {NOTES$_SET_CONFERENCE NOTES$_SHOW_PROF_NAME NOTES$_SHOW_PROF_NONEYNOTES$_DELETING_NOTENOTES$_NOTE_COMPLETENOTES$_SHOW_MOD_NODENOTES$_SHOW_ENT_FILENOTES$_CANTCONTINUEUNOTES$_EXTRACT_NOTENOTES$_ENTER_CTITLETNOTES$_GETTING_NOTENOTES$_DELETE_NOTE|NOTES$_ENTER_TITLENOTES$_INSERT_MODE NOTES$_NOMODERATEVNOTES$_PRINT_NOTE,NOTES$_DIRTOFILENOTES$_ENTERNOTENOTES$_NOCURNOTENOTES$_SPELLDONENOTES$_TEXT_NOTE@NOTES$_DATELINE NOTES$_MODERATE| NOTES$_NO_NBNOTES$_TEXT_TOPICL NOTES$_CC INOTES$_OLD_ALREXISTS_ANOTES$_ALREXISTS_ANOTES$_CMDKEYENA NOTES$_NUMKEYENANOTES$_WRONGCTX~NOTES$_PRESS_ANY_KEYpNOTES$_NEEDNBMODIFYRNOTES$_UPDATE_ENTRYNOTES$_SENDANYWAYNOTES$_SHOW_ENTRYNOTES$_TEXT_REPLYNOTES$_ONE_REPLYNOTES$_FACILITYNOTES$_SPAWNKEYNOTES$_CALLKEYNOTES$_SHOW_USER_PRIVaNOTES$_GRAPHIC_VIEWbNOTES$_UNKNOWN_VIEWTNOTES$_ENDREQ_SHOW$NOTES$OPTIONS_MODULE_IDENT$NOTES$OPTIONS_MODULE_INIT NOTES$MSGS_MODULE_IDENT NOTES$_SHOW_PROF_PRINT NOTES$_SHOW_PROF_EDITNOTES$_CTRLZ_COM_RETNOTES$_NOTE_END_TEXTNOTES$_MAIL_SUBJECTlNOTES$_NO_MORE_TEXTNOTES$_DEF_SUBJECTcNOTES$_DDIF_FORMATNOTES$_ENDREQ_LISTNOTES$_MAILNOTSENTNOTES$_NOTE_NOTEXTXNOTES$_SEARCH_NEXTNOTES$_SPELLSELECTNOTES$_REALLYQUITNOTES$_SPELLSTARTfNOTES$_COPYRIGHTNOTES$_CLASS_SETNOTES$_MORE_TEXTdNOTES$_PS_FORMAT3NOTES$_USING_EDTwNOTES$_EOB_TEXToNOTES$_NOERRTXTNOTES$_NONESENT:NOTES$_HELPBOT6NOTES$_HELPNXT4NOTES$_SUBJECT NOTES$_NJU NOTES$_SHOW_CONF_RESA2 NOTES$_SHOW_CONF_RESK2 NOTES$_SHOW_CONF_RESW2 NOTES$_SHOW_NOTE_REP2 NOTES$_SHOW_CONF_RESR NOTES$_SHOW_PROF_ADIR NOTES$_SHOW_USER_MADRNOTES$_SHOW_MOD_USER"NOTES$_ENTRY_ADDED2NOTES$_PROFILE_USERONOTES$_REPLY_BANNERNNOTES$_TOPIC_BANNERLNOTES$_CONF_BANNERSNOTES$_GETTING_DIRPNOTES$_INFO_BANNERNOTES$_REPBUFINFO2MNOTES$_READ_BANNERNOTES$_SPELLBUFFERNOTES$_SHOW_MARK_2NOTES$_SHOW_KEYW_21NOTES$_OPEN_CONF2WNOTES$_SEARCH_FORNOTES$_STRCOPYERRNOTES$_ILLCTXADR0NOTES$_MARKSUPERxNOTES$_PRESS_PF28NOTES$_HELPASK2NOTES$_SEARCHF25NOTES$_HELPHDR jNOTES$_NO_MORE_KEYWORDS NOTES$_SHOW_PROF_DCLASS NOTES$$DEFINE_MESSAGES hNOTES$_NO_MORE_CLASSES iNOTES$_NO_MORE_ENTRIES NOTES$_NO_MORE_MARKERS uNOTES$_NO_MORE_REPLIES NOTES$_ENTRY_DELCLASS !NOTES$_SPACE_COMPRESS NOTES$_SHOW_PROF_AUNSkNOTES$_NO_MORE_NOTESmNOTES$_NO_MORE_USERSNOTES$_SHOW_NOTE_VISNOTES$_DIR_NB_CLASSNOTES$_MANY_REPLIESBNOTES$_MANYCLASSESNOTES$_SHOW_MARK_3vNOTES$_ANSWER_YESNOTES$_NMORELINESNOTES$_SHOW_CLASS?NOTES$_TOTALNOTESNOTES$_NOREPLIESNOTES$_WRONG_ANSNOTES$_MODPR+ 3$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"@IVSNOTES$_NUMNOTESNOTES$_N_TOPICSANOTES$_ONECLASS= NOTES$_TOPICSNOTES$_FINDING_HELP NOTES$_PROFILE_TEMPNOTES$_NOKEYHELP9NOTES$_HELPTOPTNOTES$_YOUR_SP NOTES$_SHOW_CONF_RESA1 NOTES$_SHOW_CONF_RESK1 NOTES$_SHOW_CONF_RESW1 NOTES$_SHOW_NOTE_REP1NOTES$_REPBUFINFO1NOTES$_SHOW_MARK_1NOTES$_SHOW_KEYW_1yNOTES$_NOTES_HDR17NOTES$_HELPASK14NOTES$_SEARCHF1#H$$$   ! ) 1 9AIQYaiqyɀ р!ـ"#$%&' ()*#++,3-;.C/K0S1[2c3k4s5{6789:;<=>Ð?ː@ӐAېBCDEFG HIJ#K+L3M;NCOKPSQ[RcSkTsU{VWXYZ[\]^Ñ_ˑ`ӑaۑbcdefghijk l(m0n8o@pHqPrXs`thupvxwxyz{|}~ȠРؠ (08@HPX`hpxȡСء (08@HPX`hpxȢТآ (08@HPX`hpxȣУأ (08@HPX`h "*2:BJ(z V02-001#NOTES$OPTIONS_MODULE_IDENT(y  "NOTES$OPTIONS_MODULE_INIT0hy V02-2004.12.13 NOTES$MSGS_MODULE_IDENTyNOTES$$DEFINE_MESSAGES'4 ` d< $| NOTES$CU_NOTE_ADD_BEGIN NOTES$CU_NOTEFILE_BEGIN NOTES$CU_OUTFILE_OPENKNOTES$_CAPTIVE_SPAWN NOTES$_NOPRIVWRITE_NjNOTES$_ALREXISTS_N3NOTES$_NOPRIVMOD_NNOTES$_NOPRIVDEL_N NOTES$_NOFILEOPENNOTES$_MUST_OPEN}NOTES$_CLOSEIN  NOTES$_OPENINNOTES$CU_GET_USER_INFO NOTES$KT_INFORMATIONALNOTES$_NOMORE_RECALL%NOTES$_CTRLC_CANCELNOTES$_FILNOTDELNOTES$_PARSEFAILmNOTES$_CONFQUALH  NOTES$_NOMAIL NOTES$KT_VISIBLE_BOTTOM8NOTES$_ALREXISTS_MNOTES$_SRV_INVITEMMNOTES$_NOHELPTERM(NOTES$_ERRADDMEM`NOTES$_INVKEYNAMONOTES$_INVCLANAMNNOTES$_INVENTNAMbNOTES$_INVMRKNAMDdNOTES$_INVUSRNAM,tNOTES$_NOSUCHOBJ<NOTES$_BASEWRITELOCK6NOTES$_ALREXISTS_K'NOTES$_ERRADDMARK+NOTES$_ERRDELMARKwNOTES$_NOTNETWRK$NOTES$CU_CLI_VERB_DISPATCHhNOTES$K_HARDCOPY_WIDTHH CLI$_NEGATED=NOTES$_NOWRITE_CONFnNOTES$_OPRNOTSUPCNFNOTES$K_SH_DIR_CONFFNOTES$_NOTE_NOCONFzNOTES$_WRONG_LMFNOTES$K_SH_CONFNOTES$_PREMEOF|# NOTES$_IFF(NOTES$CU_SETUP_COUNTER_STRINGNOTES$_ERROR_MAILING$hNOTES$_RANGE_TOO_BIG NOTES$_MUST_READ_FORWARD NOTES$_NONOTE_SPECIFIED NOTES$K_DATE_TIME_FIELD NOTES$_NO_SUCH_KEYWORD NOTES$CU_NOTE_ADD_END NOTES$CU_NOTEFILE_END NOTES$K_REPLIES_FIELD NOTES$K_KEYWORD_FIELD NOTES$_ALREXISTS_OLDBNOTES$_CLASSNOTFOUND/NOTES$_ERRMODKEYWORDNOTES$K_MEMBER_FIELDNOTES$K_NOTEID_FIELDNOTES$K_AUTHOR_FIELDNOTES$K_TOPICS_FIELDNOTES$K_MARKER_FIELDNOTES$KT_DO_COMMANDNOTES$K_NODES_FIELDNOTES$K_ENTRY_FIELDNOTES$K_DATE_FIELDNOTES$K_SH_KEYWORDNOTES$K_MAIL_FIELDkNOTES$_NONOTESMODNOTES$KT_MODIFIEDNOTES$KT_1_SECONDNOTES$KT_COMMAND_NOTES$_USRNOTADD]NOTES$_NOTINCMDNOTES$KT_NOTES${NOTES$_CREATED$NOTES$_MUST_COMPLETE_MESSAGE$NOTES$CU_NOTE_BACK_RESPONSE$NOTES$CU_NOTE_NEXT_RESPONSE NOTES$_NOT_ENTERING_NOTE lNOTES$_MEMBERNAME_NODE NOTES$_NOPREVIOUS_NOTE NOTES$CU_CLI_DCL_PARSE NOTES$CU_CLI_GET_VALUE NOTES$CU_OUTFILE_WRITE NOTES$CU_OUTFILE_CLOSE aNOTES$_INVKEYWORDNAME NOTES$_SRV_NOUSERNAME NOTES$KT_JOURNAL_FILE NOTES$K_LINE1WIN_LINE NOTES$K_RESERVED_TYPEcNOTES$_INVMARKERNAMEqNOTES$_INVOBJECTNAMEvNOTES$_NOLINKLICENSENOTES$KT_STATUS_LINENOTES$CU_DELETE_FILENOTES$K_UNKNOWN_TYPEDNOTES$_BAD_DIR_LINENOTES$_EDIT_OR_FILEANOTES$_INVCLASSNAMEPNOTES$_INVENTRYNAMENOTES$_NO_SUCH_NOTENOTES$K_CMDWIN_LINE5NOTES$_ALREXISTS_EeNOTES$_INVUSERNAMEJNOTES$_NO_NEW_NOTENOTES$K_ASCII_TYPENOTES$K_REPLY_NOTENOTES$K_SH_PROFILE-NOTES$_ERRMODNOTE!NOTES$_ERRORWRITEpNOTES$_INVOBJNAMENOTES$_NOSUCHNOTENOTES$KT_CONTINUENOTES$KT_NO_WRITENOTES$K_BASE_NOTENOTES$K_DDIF_TYPEUNOTES$_NOLICENSENOTES$_BADVALUENOTES$K_SH_NOTEoNOTES$_BADTIME1NOTES$_NOWRITENOTES$KT_SPACENOTES$KT_QUOTEV NOTES$_NOFILEY NOTES$_NOEVE NOTES$KT_EVENOTES$_CREPRIJOBrNOTES$_NOATTRIB NOTES$CU_NOTE_BACK_TOPIC NOTES$CU_NOTE_NEXT_TOPIC gNOTES$_RANGE_ONE_TOPIC4NOTES$_ALREXISTS_CfNOTES$_INVNOTESPEC"NOTES$_NOMAILPROCNOTES$_BADLOGIC iNOTES$_NO_TOPICNOTES$KT_NOTES_RMS$_EOF ^NOTES$_CONF_REPLY_ONLY NOTES$_MUST_READ_REPLY NOTES$KT_NOTES_LIBRARYNOTES$_NO_SUCH_ENTRYNOTES$KT_RETURN_KEY.NOTES$_ERRMODENTRY NOTES$_NOSUCHENTRYNOTES$CU_IDENTIFY&NOTES$_ERRCREKEYNOTES$KT_DISPLAYNOTES$K_SH_ENTRYNOTES$K_FACILITYNOTES$KT_DO_KEYhXNOTES$_NOENTRYP$ NOTES$_NOPRIV8\NOTES$_NO_RANGE_ALLOW$NOTES$KT_NOTES_KEY_MAP_LIST NOTES$CONS_MODULE_IDENT NOTES$CU_LIB_PUT_OUTPUT NOTES$CU_LIB_GET_INPUT NOTES$CU_NOTE_ADD_TEXT NOTES$CU_NOTE_GET_TEXT LNOTES$_NOTHING_TO_SET NOTES$KT_SHIFT_AMOUNTNOTES$_SRV_NOCONTEXT NOTES$_SRV_UNRECPROTNOTES$CU_CLI_PRESENTNOTES$K_SHIFT_AMOUNTNOTES$K_SH_DIR_ENT0NOTES$_ERRACCLISTNOTES$_SRV_NOINITNOTES$KT_DDIF_EXTNOTES$KT_TEMP_EXTNOTES$KT_LIST_EXTNOTES$KT_NOTE_EXTNOTES$KT_TEXT_EXTNOTES$CU_NOTE_GETxNOTES$_WRONG_ACCT)NOTES$_ERRADDENT*NOTES$_ERRDELENTENOTES$_NO_SELECT@NOTES$_SENDNOAUTNOTES$KT_INDENT4~NOTES$_CLOSEOUTsNOTES$_NOOBJECTNOTES$KT_KNEDITNOTES$_OPENOUT NOTES$KT_NEXTW NOTES$_NOEDT NOTES$KT_DOTt| NOTES$_TEXT7NOTES$_ALREXISTS_UD CLI$_SYNTAX NOTES$_ALREADY_IN_EDITOR 9NOTES$_NO_SUCH_MARKER NOTES$_UNREC_CALLUSER,NOTES$_ERRDELMEMBER2NOTES$_NOSUCHMARKERNOTES$_NO_SUCH_USERyNOTES$_SRV_INIT_ERRGNOTES$_UNREC_EDITOR,*($ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Tr"Q>NOTES$_SPELLERRORNOTES$K_SH_MEMBERNOTES$K_SH_MARKER;NOTES$_NOTMEMBERINOTES$_NMTHISDIR?NOTES$_PNINVCHARNOTES$KT_INDENT2uNOTES$_LWKERRORNOTES$_SYSERRORZNOTES$_TPUERRORNOTES$_WRITEERR0NOTES$_READERR( NOTES$KT_SPECIAL_GRAPHICS_STATUS$RNOTES$_ALREXISTS_IN_CLASS [NOTES$_ENTALR_IN_CLASSES QNOTES$_NO_ENTRY_IN_CLASS NOTES$M_DATE_TIME_FIELDS NOTES$_ALREADY_IN_NOTES NOTES$$DEFINE_CONSTANTS NOTES$KT_NUMERIC_KEYS NOTES$KT_NOTEFILE_DNS NOTES$KT_NOTEBOOK_DNS NOTES$KT_NOTEBOOK_FNSNOTES$_NO_SUCH_CLASSNOTES$KT_LOGFILE_DNSNOTES$KT_LOGFILE_FNSNOTES$KT_COMMAND_DNSNOTES$KT_COMMAND_FNSNOTES$KT_SCRATCH_DNSNOTES$KT_MOUSE_KEYSNOTES$CU_SET_STATUSNOTES$M_TIME_FIELDSNOTES$M_DATE_FIELDSNOTES$KT_USER_KEYSNOTES$KT_EDIT_KEYSNOTES$KT_HELP_KEYSNOTES$KT_3_SECONDSNOTES$KT_NOTESKEYSTNOTES$_NOKEYWORDS:NOTES$_NOMEMBERSSNOTES$_NOMARKERSNOTES$KT_SUBKEYSNOTES$KT_SUCCESSNOTES$K_SH_CLASSNOTES$CU_STORE_DESC0HNOTES$_NO_CLASSPNOTES$KT_ASCII_0(CNOTES$_FORWLOOPNOTES$_SRV_INVSEQNOTES$KT_ASCII_1NOTES$CU_TEST1RZbjrz      "*2:BJ R!Z"b#j$r%z&'()*+,-./01234567 89:";*<2=:>B?J@RAZBbCjDrEzFGHIJKLMNOPQRSTUVW XYZ"[*\2]:^B_J`RaZbbcjdrezfghijklmnopqrstuvwx yz{q|1}R~Z$Jz`$$    PH$% %%0%@%T%h%|%%%%%%%%%%&&&$&8&D&P&d&t&&&&&&&&&&''' '('4'@'T'h'|''''''     0T V02-2004.12.13 NOTES$CONS_MODULE_IDENT,T NOTES$$DEFINE_CONSTANTSNOTES$DO_COMMAND(NOTES_NOTES$NOTES$KEY_MAP_LIST NOTES$KEYSNOTES$EDIT_KEYSNOTES$HELP_KEYSNOTES$MOUSE_KEYSNOTES$NUMERIC_KEYS NOTES$SUBKEYSNOTES$USER_KEYSEVE /EDT/EVE/WPS/   .10" 0 00:00:01.00 0 00:00:03.00commanddisplay informational journal_filemodifiednextno_write shift_amountspecial_graphics_status status_linesuccessvisible_bottomCONTINUEdoreturn.LIS.TMP.TXT.NOTE.DDIFSYS$SCRATCH:.TMPNOTES$LIBRARY: NOTES$COMMAND.TPUNOTES$LIBRARY:.NOTENOTES$NOTEBOOKSYS$LOGIN:.NOTENOTES$USER_LOGSYS$LOGIN:.DAT74 R  TL xT@L$-NOTES$CU_NOTEFILE_LIST_BEGIN$NOTES$X_LAST_RECALL_POSITION$NOTES$X_OUTPUT_RIGHT_MARGIN$NOTES$X_OUTPUT_LEFT_MARGIN$NOTES$CU_NOTE_NEXT_UNSEEN$jNOTES$X_EDIT_RIGHT_MARGIN ONOTES$USER_CHECK_VERSION NOTES$X_READ_NOTE_HIDDEN iNOTES$X_EDIT_LEFT_MARGIN CNOTES$CU_MAILUSER_BEGIN NOTES$CU_PROFILE_BEGINJNOTES$CU_INFILE_OPEN7NOTES$CU_SEND_BEGIN NOTES$CU_NOTE_BEGINNOTES$X_NOTE_HIDDENVNOTES$X_AUTO_UNSEENNOTES$X_QUEUE_OPEN?NOTES$CU_SET_SEENNOTES$X_FILE_OPENQNOTES$X_VERSIONNNOTES$$VERSION$ NOTES$CU_NOTEFILE_GET_INFO NOTES$X_SAVE_NOTE_INFO NOTES$X_NOTEFILE_INFOlNOTES$X_NOTE_INFO$BNOTES$CU_TRANSLATE_LOGICAL$NOTES$X_LAST_ERROR_SIGNAL NOTES$X_PREPARING_MAILNOTES$X_QUAL_FULLNOTES$X_QUAL_ALLNOTES$CU_SIGNAL NOTES$X_MARK_ARROW_ITEM|NOTES$X_QUEUE_FORM$NOTES$X_SAVE_NOTE_INFO_BACK$NOTES$X_NOTEFILE_WRITELOCK NOTES$X_NOTE_WRITELOCK UNOTES$X_AUTO_NOTEBOOKNOTES$X_MAIN_MARKdNOTES$X_DIR_MARK(ZNOTES$X_COMMAND_PROMPT_LENGTH|NOTES$CU_NOTE_SEARCH NOTES$X_MAIL_COPY_SELFeNOTES$X_DIR_BOFFfNOTES$X_DIR_EOFFr NOTES$X_EOFF,!NOTES$X_MESSAGE_MORE_HIGHLIGHTING$NOTES$X_REVERSE_HIGHLIGHTING$NOTES$X_MESSAGE_HIGHLIGHTING$NOTES$X_LINE2_HIGHLIGHTING$SNOTES$X_ARROW_HIGHLIGHTING$tNOTES$X_ERROR_HIGHLIGHTING$NOTES$X_MAIL_SUBJECT_FLAG$NOTES$X_NOFN_HIGHLIGHTING kNOTES$X_EDIT_TITLE_FLAG^NOTES$X_CONFIRM_FLAGhNOTES$X_EDIT_FLAGNOTES$CU_GETMSGNOTES$X_LOGGINGaNOTES$X_DIRPROG4m NOTES$X_EMSG(NOTES$X_MAIL_PROF_COPYSELF_SEND(}NOTES$X_EVE_HELP_DO_GOLD_LEGEND(sNOTES$X_ERROR_ON_LAST_COMMAND(vNOTES$X_ERROR_EOB_HIGHLIGHTED$NOTES$X_NOTE_RANGE_DEFAULTED$NOTES$X_NOTEFILE_RESTRICTED$NOTES$X_LAST_ERROR_COMMAND$4NOTES$CU_NOTE_GET_KEYWORD NOTES$X_HARDCOPY_SHIFTED NOTES$X_NUMERIC_KEYPAD DNOTES$CU_MAILUSER_END NOTES$CU_PARSE_NOTEIDKNOTES$CU_INFILE_READ"NOTES$CU_KEYWORD_ADDFNOTES$CU_OBJECT_ADD&NOTES$CU_MEMBER_ADDNOTES$CU_MARKER_ADDNOTES$X_READ_NOTEIDNOTES$CU_CLASS_ADDNOTES$CU_ENTRY_ADD;NOTES$CU_SEND_ENDtNOTES$X_NOTEID$NOTES$X_READ_NOTE_CONFERENCE$NOTES$X_SAVE_DEFAULT_MESSAGE$>NOTES$CU_SEND_ADD_ATTRIBUTE$NOTES$X_MAIL_PROF_PERS_NAME$]NOTES$X_COMMAND_RECALL_MODE$NOTES$X_LAST_RECALL_CMDLINE$NOTES$CU_NOTE_GET_CONTINUE$NOTES$X_READ_NOTE_PEN_NAME$%NOTES$CU_KEYWORD_CONTINUE$+NOTES$CU_KEYWORD_GET_NOTE$NOTES$X_NOTEFILE_FILENAME$pNOTES$X_ENTRY_OBJECT_NAME )NOTES$CU_MEMBER_CONTINUE NOTES$CU_MARKER_CONTINUE NOTES$X_NOTE_BLINK_TITLE NOTES$X_MAIL_GET_PROFILE NOTES$CU_CLASS_CONTINUE 1NOTES$CU_FILENAME_PARSE NOTES$CU_SET_CONFERENCE NOTES$CU_ENTRY_CONTINUE !NOTES$CU_NOTE_BACK_NOTE NOTES$CU_NOTE_NEXT_NOTE #NOTES$CU_KEYWORD_DELETE `NOTES$X_DEFAULT_MESSAGE NOTES$X_READ_NOTE_TITLE NOTES$X_HARDCOPY_ACTIVE NOTES$X_NOTEFILE_UPDATE NOTES$X_NOTEFILE_NOTICE NOTES$X_NOTE_CONFERENCE NOTES$X_HAVE_SAVED_LINE NOTES$X_LAST_ERROR_NAME GNOTES$CU_OBJECT_DELETE 'NOTES$CU_MEMBER_DELETE NOTES$CU_MARKER_DELETE 6NOTES$CU_CTRLC_DISABLE NOTES$X_READ_NOTE_NOTE NOTES$X_NOTEFILE_TITLE NOTES$X_SAVE_LAST_MORE NOTES$X_MAIL_SEND_FILE NOTES$X_PREPARING_NOTE NOTES$X_PARSED_CMDLINE bNOTES$X_DIRTITLE_RANGE NOTES$CU_CLASS_DELETE LNOTES$CU_INFILE_CLOSE :NOTES$CU_SEND_MESSAGE 5NOTES$CU_CTRLC_ENABLE NOTES$CU_ENTRY_DELETE NOTES$X_NOTEFILE_NAME-w{$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T "b NOTES$X_NOTE_PEN_NAME NOTES$X_MESSAGE_RANGE@NOTES$CU_RENAME_FILEENOTES$CU_FORMAT_DATE NOTES$CU_NOTE_DELETENOTES$X_READING_NOTENOTES$X_NOTES_ACTIVENOTES$X_LOGGING_FILEcNOTES$X_DIRMSG_RANGEgNOTES$X_DISPLAY_MODE2NOTES$CU_FILE_PARSENOTES$X_LINE2_RANGETNOTES$X_ARROW_RANGEuNOTES$X_ERROR_RANGENOTES$X_OUTPUT_FILEXNOTES$X_BATCH_MODEnNOTES$X_ENTER_TYPENOTES$X_NOTE_TITLENOTES$X_SAVED_LINENOTES$X_REPLY_NOTENOTES$X_NOFN_RANGEoNOTES$X_ENTRY_NAMElNOTES$X_EDIT_TITLENOTES$X_QUEUE_NAMENOTES$X_NOTE_TIMENOTES$X_NOTE_TYPENOTES$X_NOTE_NOTENOTES$X_LAST_MORENOTES$X_PREV_NOTEANOTES$CU_COMPARE$NOTES$CU_QUEUE_CREATE_JOB$NOTES$CU_QUEUE_MODIFY_JOBNOTES$CU_QUEUE_CLOSE_JOB$qNOTES$X_ENTRY_OBJECT_SPECNOTES$X_MAIL_PROF_CCNOTES$X_MAIL_CC _ NOTES$X_CTRLCNOTES$X_NOTEFILE_CTXNOTES$X_NOTEBOOK_CTXNOTES$X_AUX_NOTE_CTXNOTES$X_LOGGING_CTXNOTES$X_BCK_DIR_CTXNOTES$X_AUX_DIR_CTXNOTES$X_OUTPUT_CTXNOTES$X_NOTE_CTX,NOTES$X_DIR_CTX$NOTES$X_READ_NOTE_CAN_REPLY NOTES$CU_PROFILE_MODIFY 0NOTES$CU_KEYWORD_MODIFY NOTES$X_READ_NOTE_REPLY INOTES$CU_OBJECT_MODIFY *NOTES$CU_MEMBER_MODIFY 9NOTES$CU_SEND_ADD_BODY NOTES$X_NOTE_CAN_REPLY WNOTES$X_AUTO_DIRECTORY NOTES$CU_ENTRY_MODIFY,NOTES$CU_NOTE_MODIFYNOTES$X_QUEUE_NOTIFYNOTES$X_REPLY_REPLYNOTES$X_NOTE_REPLY`NOTES$X_PREV_REPLY(NOTES$X_MAIL_PROF_COPYSELF_FORW$|NOTES$X_EVE_COMMAND_WINDOW$NOTES$X_EVE_MESSAGE_WINDOWNOTES$X_MOUSE_WINDOWzNOTES$X_EVE_WINDOW$\NOTES$X_COMMAND_RECALL_RESET$wNOTES$X_ERROR_EOB_NO_CURRENT$NOTES$X_SAVE_NOTE_INFO_NEXT$NOTES$X_MAIL_PROF_TRANSPORT$NOTES$X_EVE_HELP_LEGEND_BOT$NOTES$CU_QUEUE_LAST_OUTPUT$NOTES$X_NOTE_RECORDS_LEFT$NOTES$X_BACKWARDS_DEFAULT$NOTES$X_MAIL_LAST_SUBJECT NOTES$X_LAST_ERROR_COUNT MNOTES$INIT_MODULE_IDENT NOTES$X_NOTEFILE_CREDAT .NOTES$CU_NOTEFILE_LIST YNOTES$X_COMMAND_PROMPT [NOTES$X_COMMAND_COUNT NOTES$X_PROMPT_OFFSET NOTES$CU_PROFILE_GET$NOTES$CU_KEYWORD_GETNOTES$X_MAIL_SUBJECTHNOTES$CU_OBJECT_GET(NOTES$CU_MEMBER_GET<NOTES$CU_SEND_ABORTNOTES$CU_MARKER_GETNOTES$X_MAIL_CCLISTNOTES$X_MAIL_TOLISTNOTES$CU_CLASS_GETNOTES$CU_ENTRY_GETNOTES$X_EVE_PROMPTNOTES$X_REPROMPT NOTES$CU_WAIT$NOTES$X_NOTEFILE_MODERATOR${NOTES$X_EVE_COMMAND_BUFFER NOTES$X_READ_NOTE_AUTHOR yNOTES$X_EVE_OTHER_BUFFER NOTES$X_MAIL_EVE_BUFFER NOTES$X_OUTPUT_BUFFERNOTES$X_NOTE_AUTHORxNOTES$X_EVE_BUFFERPNOTES$$CALL_USER/NOTES$CU_SIGNAL2NOTES$CU_EDITOR(NOTES$X_NOTEFILE_RESTRICT_KWDS$8NOTES$CU_SEND_ADD_ADDRESSEES$NOTES$X_READ_NOTE_NUMREPLIES$NOTES$X_EVE_WORD_SEPARATORS$NOTES$X_NOTEFILE_NUMNOTES$NOTES$X_LAST_ERROR_STATUS 3NOTES$CU_ENTRY_GET_CLASS NOTES$X_NOTE_NUMRECORDS NOTES$X_LOGGING_RETRIES NOTES$X_NUMEVE_WINDOWS NOTES$X_NOTES_COMMANDS RNOTES$$INIT_VARIABLES=NOTES$CU_FILE_EXISTSNOTES$X_MOUSE_X_POSNOTES$X_MOUSE_Y_POSNOTES$X_NUMREPLIES$~NOTES$X_EVE_HELP_LEGEND_TOPNOTES$X_OVERLAP !"#$ % & ' ( )*+,-./0123456789:; <!=">#?$@%A&B'C(D)E*F+G,H-I.J/K0L1M2N3O4P5Q6R7S8T9U:V;W<X=Y>Z?[@\A]B^C_D`EaFbGcHdIeJfKgLhMT"N"O`$PL&RH'(.] ]_V02-027 [NOTES$INIT_MODULE_IDENTT.ffg(@gi iljjRcjk(km m0unnRns7f st(htv v$wRwpy/oy.mzzz|  . All DEC Notes  - 0_NOTES$$VERSIONT1 V_VERSION V_COPYRIGHT,PZ 6QL6J    J>02.0-60 0:0:5'?'@ A'BCD'E F GH'I'J'KLM N"O'P'Q'R'S'T'U'V'W"X XY Z [\]^  _ ` a' b cde'f'g'h'ijk lm'no p qr s t'u' v'!w'"x #y'$z'%{ &| '} (~ ) * + ,&#cx-. / m 0qu1P'2%2"2m"2432524.$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TK"s63|2FD FD 2KD KD '7'7m7PE2248'7'77PE22499 l89:E ; ;p%l<l=l>l?l@lAlBlClDF EH GH IH JH KFv L L,F M M,NNotes> F[Current error text highlighted - press CTRL-W to erase error display][No current error text] 123456789 WPS finishWPS quit23 NOTES$LIBRARYSYS$SCRATCH:NOTES_ _DDIF.TMP _EDIT.TMP _EDIT1.TMP _JOURNAL.TJL _MAIL.DIS _MAIL.TMP _MAIL1.TMP _SPELL.TMP _PRINT.LIS'NOTES$$INIT_VARIABLESS1S2T1X4 ql x80(T XL(NOTES$$NEXT_ENTRY_WITH_UNSEEN$1NOTES$KT_PATTERN_NZUNSEEN NOTES$$NOTEFILE_NOT_OPEN NOTES$$NEXT_NOTE_SCREEN NOTES$$NEXT_FULL_SCREEN NOTES$PREVIOUS_SCREENNOTES$$OUTFILE_OPENjNOTES$X_WORKSTATIONNOTES$NEXT_SCREENNOTES$X_EDSPAWN EVE_EVE$NOTES$X_SHOWX_SAVE_NOTE_INFO EVE$SET_NO_EVE_KEYPADEVE$SET_EVE_KEYPADNOTES$X_SHOWX_INFOMNOTES$X_ANSWER_NO :NOTES$$TRANSLATE_LOGICAL NOTES$$COMMAND_RECALLNOTES$X_SENDING_MAILNOTES$$SEND_MAIL NOTES$$SIGNALS NOTES$NULLNOTES$$OPTIONAL_PARAM NOTES$X_PRE_EXECUTE_MARKNOTES$$OPEN_NOTEBOOKNOTES$X_M1DOWN_CLICK`NOTES$X_SHOWX_MARKNOTES$$CLI_DISPATCH(NOTES$$CENTER_WIDTHNOTES$X_SHOWX_EOFFNOTES$X_SHOWX_BUFc NOTES$X_CBUF$NOTES$X_SEARCH_HIGHLIGHTING$NOTES$$CLI_PRESENT_OR_NEG NOTES$X_SEARCH_STRING NOTES$X_SHOWX_DIRPROGFNOTES$$LGETMSGH NOTES$$GETMSG NOTES$$STRING(NOTES$$FINISH_SEND_OR_FORWARD$NOTES$ERASE_PREVIOUS_WORD NOTES$$MAP_IF_NOT_MAPPED NOTES$$SET_EDITOR_KEYPAD NOTES$$NOTE_RANGE_OR_ID NOTES$$UPDATE_IF_MAPPED 9NOTES$X_DATE_TIME_FIELD NOTES$$UNMAP_IF_MAPPED NOTES$PROCESS_COMMAND NOTES$EXECUTE_COMMAND NOTES$X_SEARCH_NOTEIDNOTES$$EXEC_COMMANDNOTES$TOGGLE_KEYPAD8NOTES$X_DATE_FIELD5NOTES$X_ALLIN1_CMDKNOTES$X_CANCELLEDNOTES$DO_COMMAND%NOTES$X_USER_PID(pNOTES$$SET_GRAPHICS_STATUS_LINE(NOTES$$POSITION_TO_BOTTOM_LINE(NOTES$X_SHOWX_NOTE_CONFERENCE$NOTES$$FINISH_OR_ABORT_NOTE$NOTES$$POSITION_TO_TOP_LINE$NOTES$$ERASE_MESSAGE_LINE$NOTES$ERASE_START_OF_LINE$QNOTES$USER_CLOSE_NOTEFILE$NOTES$X_SHOWX_ARROW_RANGE NOTES$$DEFINED_PROCEDURE NOTES$$HIGHLIGHT_MESSAGE NOTES$$OPEN_LOGGING_FILE ONOTES$USER_OPEN_NOTEFILE NOTES$X_SHOWX_VIEW_NOTE NOTES$$COMMAND_RESTORE NOTES$USER_POINT_MOUSE NOTES$X_SEARCHING_NOTE NOTES$$MOVE_DOWN_LINE NOTES$$SET_ERROR_NAME NOTES$$WRITE_LOG_LINE $NOTES$X_USER_PEN_NAME *NOTES$X_PRIV_MODERATE NOTES$X_SHOWMSG_RANGENOTES$$MARK_TOP_LINEPNOTES$USER_READ_NOTENOTES$X_M1DOWN_MOUSE NOTES$X_SHOWX_ACTIVENOTES$$CURRENT_LINENOTES$CLEAR_MESSAGENOTES$$MOVE_UP_LINENOTES$START_OF_LINEkNOTES$X_MENU_ACTIVE)NOTES$X_VIEW_NOFILENOTES$$HYPHEN_LINENOTES$$INDENT_LINENOTES$$CAPITALIZENOTES$SET_MESSAGENOTES$CHANGE_MODENOTES$END_OF_LINENOTES$POINT_MOUSE"NOTES$X_USER_NAME'NOTES$X_VIEW_FILE(NOTES$X_VIEW_NOTENOTES$$DCL_PARSENOTES$$READ_FILENOTES$$READ_LINE~NOTES$$UNMAP_EVENOTES$$WHAT_LINENOTES$$PAD_LINE6NOTES$X_CAPTIVENOTES$$MESSAGENOTES$$MAP_EVE NOTES$$TRACE(;NOTES$KT_DEFAULT_NOTEFILE_SPEC$@NOTES$KT_MAILDIS_FILESPEC CNOTES$KT_SPELL_FILESPEC BNOTES$KT_MAIL1_FILESPEC >NOTES$KT_EDIT1_FILESPEC DNOTES$KT_PRINT_FILESPEC ANOTES$KT_MAIL_FILESPEC <NOTES$KT_DDIF_FILESPEC =NOTES$KT_EDIT_FILESPEC ?NOTES$KT_JNL_FILESPEC7NOTES$$APPEND_ASCIC4 NOTES$$ASCIC EVE$X_THIS_WINDOW$EVE$X_ENABLE_PARSER_NOTES -NOTES$X_ERROR_LINES_MAX ERR_SEL_POS EVE_NOTES(NOTES$$HARDCOPY_BUFFER_DISPLAY NOTES$X_SHOWX_OPEN_ENTRY NOTES$$NOFILE_DISPLAY NOTES$X_SHOWX_DISPLAYNOTES$$INVALID_ENTRY.NOTES$X_WINDOW_ARRAY/NOTES$X_BUFFER_ARRAYNOTES$ENTER_KEY$NOTES$$ENTER_COMMAND_WINDOW$NOTES$$ADJUST_TITLE_WINDOW$NOTES$$EXIT_COMMAND_WINDOW$NOTES$$GOTO_COMMAND_WINDOW$NOTES$$UNSHIFT_MAIN_WINDOW$NOTES$$ADJUST_MAIN_WINDOW$NOTES$X_SHOWX_ENTRY_ARROW NOTES$$MOVE_SELECT_ARROW NOTES$UNMAP_ERROR_WINDOW NOTES$$SHIFT_MAIN_WINDOW rNOTES$X_SHOWTITLE_WINDOW nNOTES$X_COMMAND_WINDOW oNOTES$X_MESSAGE_WINDOWsNOTES$X_LINE2_WINDOWtNOTES$X_LINE3_WINDOWuNOTES$X_LINE5_WINDOWqNOTES$X_TITLE_WINDOWwNOTES$X_ERROR_WINDOWvNOTES$X_MAIN_WINDOWlNOTES$X_MENU_WINDOWNOTES$$CURRENT_ROWNOTES$RIGHT_ARROWNOTES$$MARK_ARROWNOTES$LEFT_ARROWNOTES$DOWN_ARROWNOTES$MOVE_ARROWNOTES$UP_ARROW$NOTES$COMMAND_MODULE_IDENT$NOTES$$POSITION_THIS_SPOT$ NOTES$X_SHOWX_SAVED_SHIFT NOTES$TPU_MODULE_IDENT NOTES$$SAVE_ERROR_TEXT NOTES$EVE_MODULE_IDENT NOTES$$MARK_THIS_SPOT zNOTES_MODULE_PRE_INIT INOTES$X_NOTE_END_TEXT NOTES$X_M1DOWN_TARGETfNOTES$X_ERROR_SELECTNOTES$$MESSAGE_TEXTJNOTES$X_ENDREQ_LISTNOTES$$CLI_PRESENT{NOTES_MODULE_INITGNOTES$X_MORE_TEXTRNOTES$LOCAL_INIT2NOTES$$EXT_NEXT NOTES$$PROMPT NOTES$$EXIT  NOTES_EXIT(NOTES$$POSITION_TO_EMPTY_BUFFER(NOTES$ERASE_PREVIOUS_CHARACTER$NOTES$$FIND_OR_CREATE_BUFFER$NOTES$$MESSAGE_FROM_ERROR NOTES$$SET_COMMAND_ERROR XNOTES$X_DIRECTORY_BUFFER _NOTES$X_MAIL_NOTE_BUFFER NOTES$X_SHOWTITLE_RANGE2 aNOTES$X_SHOWTITLE_BUFFER TNOTES$$INIT_EDIT_BUFFER NOTES$X_INTERNAL_EDITOR bNOTES$X_DIRTITLE_BUFFER NOTES$$START_NEW_ERROR dNOTES$X_SCRATCH_BUFFER VNOTES$X_COMMAND_BUFFER #NOTES$X_USER_MODERATOR NOTES$X_SHOWX_VIEW_DIR NOTES$X_SHOWX_CONFDIRNOTES$$COMMAND_ERRORNOTES$$DISPLAY_ERRORNOTES$EXECUTE_BUFFERYNOTES$X_LINE2_BUFFERZNOTES$X_LINE3_BUFFER[NOTES$X_LINE4_BUFFER\NOTES$X_LINE5_BUFFER`NOTES$X_TITLE_BUFFEReNOTES$X_ERROR_BUFFER NOTES$X_SHOWX_BUFFERNOTES$$TITLE_BUFFERgNOTES$X_LOAD_BUFFER^NOTES$X_MAIL_BUFFERWNOTES$X_MAIN_BUFFER!NOTES$X_USER_EDITORNOTES$X_USER_AUTHOR]NOTES$X_EDIT_BUFFERmNOTES$X_MENU_BUFFERNOTES$$MAIN_BUFFERNOTES_QUIT_HANDLERNOTES_EXIT_HANDLER&NOTES$X_VIEW_DIRP4NOTES$$INTEGER$+NOTES$X_PRIV_CREATE_KEYWORDS$NNOTES$USER_INIT_VARIABLES$,NOTES$X_PRIV_WRITE_BYPASS NOTES$$MESSAGE_WITH_ARGS 0NOTES$KT_WORD_SEPARATORS NOTES$X_SHOWX_OPEN_CLASS xNOTES$$DEFINE_EXIT_KEYS NOTES$$SIGNAL_WITH_ARGS hNOTES$$CREATE_WINDOWS UNOTES$$CREATE_BUFFERS NOTES$$UPDATE_ENTRIES NOTES$X_SEARCH_RANGESNOTES$$DOUBLE_QUOTESNOTES$NEXT_BACK_KEYSNOTES$$STRIP_QUOTES NOTES$X_SHOWX_CLASSyNOTES$$DEFINE_KEYSNOTES$$FILE_EXISTSNOTE/$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"S$$UNMAP_NOTESiNOTES$X_MAIN_LINES NOTES$X_USER_CLASS|NOTES$X_USER_FLAGSENOTES$X_NMORELINESLNOTES$X_ANSWER_YESNOTES$$EVE_NOTESNOTES$$MAP_NOTES, NOTES$$YES NOTES$X_TEMP NOTES$X_SHOWTITLE_RANGE13NOTES$X_ALLIN1} MAIN_BUFFER2"4#78$:$FX%H%N&OT&P&Q&R&S('TP'U(h,pp2xD3y4z4{5~\=>AB@DDHKLDN3 U'> @3 D'@YA3 4'AZB3 $'B[C3 'C\ETE]KTK^QH QR3 R_V3 'V`W3 'WaX3 'XbY3 'YcZ3 'Zd[3 '[e\g]Je-a3abeb=dFdfe=f3  'fgq NOTES$COMMAND NOTES$MAINNOTES$DIRECTORY NOTES$SHOW NOTES$LINE2 NOTES$LINE3 NOTES$LINE4 NOTES$LINE5 NOTES$EDITNOTES$MAIL_EDITNOTES$MAIL_NOTE_TEXT NOTES$TITLESNOTES$SHOW_TITLESNOTES$DIRECTORY_TITLESNOTES$LISTING_SCRATCH NOTES$SCRATCH NOTES$ERROR NOTES$LOAD'$NOTES$$CREATE_BUFFERSS1V_POSP<}:~S9,g\&#cxiJK j kR%54%,(%#%  j: 4 Pjsii kJK l3 $'mnlopolqpqlrJ'r'lsltptluJuJ?u"livJ%vlwJwJ?w"pw \i&(,QS8 @Bi XTT _:WTWVTPTW NOTES$MENU NOTES$MENUNLA0/qNOTES$$CREATE_WINDOWSS1T1T2TT_TERM<g<>&R?\@J''A",AJ'LM!#*q45NOTES$$SET_GRAPHICS_STATUS_LINE THIS_WINDOWJ CBO 0@-JQNOTES$$DEFINE_EXIT_KEYS PROC_PROGRAM PROC_COMMENT PROC_KEY_MAP V_KEY_MAPNOTES$$DEFINE_KEYSt DBED cfnNOTES NOTES$HELPKEYPAD.For help on NOTES, type NOTES and press RETURN NOTES_USERNOTES$HELP_USERKEYPAD}NOTES_MODULE_PRE_INIT,   JJAB |: H4|6|  JxR&gg8&#c  gUh(}] } }=}~X H $>  8'!Mn      g(UoUqUv RgpZt" 8J?wJ?wtJ  T C6 |    U= XA   UX   T  >  l   !X" " l## $,Q% %l&&) l*x* +<, ,,-l.Lm..0f 1  2Lp3m3m3 3>  ??CG Gf ONOTES$USER_FLAGS AUTOMATIC ENTRYCLASSCLASSUPDATE DIRECTORYUNSEEN NONOTEBOOKNOTEBOOKNOTE_ID /NOAUTOMATIC/AUTOMATIC=DIRECTORY/AUTOMATIC=UNSEEN /NONOTEBOOK/CLASS=0 0:0:5OPEN DIRECTORY/NOTEBOOKNOTES_MODULE_INITS1S2S3T1T2V_DCLV_ENTRYV_CLASS V_AUTOMATIC V_NOAUTOMATIC V_NONOTEBOOKV_NOTEIDV_COPYRIGHT_DISPLAYED ~  g4x.  x &NOTES$$UNMAP_EVE SAVE_WINDOWS H9  F:   0   \]`(W] $TW(X]  3 o'X( ]  3 K' (0$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T*"]] $T"](^] $T^g$v r qo  nV&ndJ!"kH(m]  3 'm lm H  6'=P5' NOTES$MAINNOTES$DIRECTORY NOTES$SHOW NOTES$EDITNOTES$MAIL_EDIT NOTES$MENU1NOTES$$MAP_NOTESS1 V_TITLEBUF V_MAINBUF\PDO O 9NOTES$$CLI_PRESENT_OR_NEGENTITYS1 SUCCESS_FLAGT (P  6 6   ( 6,  9 Q \A  '6 ""RNOTES$$OPTIONAL_PARAMPARAMVALUE STRIP_QUOTESS1T1 V_SUCCESS V_OPTIONAL<P2NOTES$$CLI_PRESENTENTITYS1 SUCCESS_FLAGt'777'Q7P l Q7P2 4P '777777'7'77P SP  $242!!  !R!P  '!2 22$24W24V126 NOTES_EVEMAIN9ADD ENTRY NOTES$SAMPLE /NAME=SAMPLE_CONFERENCE/CLASS=MAIN NOTES_EVE3NOTES$$OPEN_NOTEBOOKS1S2S3V_NBV_FLAGSplS&S&T&U&DW&g(X&eY&\& \&_&2_&`&2`&a&2a&b&2b&c&2c&d&2d&e&2e&f&2f&g&2g&h&2h&i&2i&j&2j&4j&k&k&8k& l&m& mo&gp&3p&q&q&=r& es&wt&Uwu&=lv&[v&[w&P x&(y&ez&}&P }&~&_ && &&*FK&NOTES$$UPDATE_ENTRIES ENTRY_NAME CLASS_NAMES1S2S3S4V_POSp1RPRP8 0uR6*NOTES$$STRIP_QUOTES THE_STRINGT1x) )`Fy Hx  g<qpq=Wq =WU4 ,g `DIRECTORY/NOTEBOOK$NOTES$$NOFILE_DISPLAYV_POS'777P=242PNOTES$$FILE_EXISTS FILE_SPEC DEFAULT_SPEC RESULT_SPEC SIGNAL_FLAGS1S25&(56J7&(U78J@9(:T; ;(<g=g? ??g@&GA A\B BC CCODg DD EFHHJIIJ@JKKP8.NOTES$EXECUTE_BUFFER THIS_BUFFERS1T1T2V_BUF++(+A+,(x,A,,(^,A- -<. ..0 02 24*%/*NOTES$$INVALID_ENTRY ENTRY_NAMEERRMSG0( Rm1lR(<Rkm pjjm1NOTES$$DOUBLE_QUOTES THE_STRINGS1S2T18$NOTES$$MESSAGE MESSAGE_CODE4 %3%&' _( m*\]l+[+[, -'./60 00Q4 445(56 6 61o66u77R78 9p:y:?R]@O @<C1CRTD DpEYEF1xFFRmFFG6LLN OLQgRSY Z[\ s_=k0.0READ !-_6NOTES$EXECUTE_COMMANDCMDLINES1S2 V_CMDLINEhhkg`lPl llmn3nn\o op:qYrY r(s:t Y uvvv=w8xxx3xxy1y yy {| Y ~  V= Y6'Y-QC+8 T2     >  G]NOTES$$ENTER_COMMAND_WINDOWA_RANGEP1K1CURRENT_COMMAND_LINE(! !%V02-007#NOTES$COMMAND_MODULE_IDENTK0% NOTES$$TRACE ROUTINE_NAME ROUTINE_ENTERlNgNP ]QQ&(TR R4S TTJ U,V WWJY^KNOTES$CHANGE_MODET1X_g_a ]bb1bwbb8g^NOTES$END_OF_LINEljgjl ]mPnn noZqtqq8vgNOTES$START_OF_LINET1xygy{ ]|P}n }l~Z~  %vNOTES$ERASE_PREVIOUS_WORDT1g ]Pn lZ *NOTES$ERASE_PREVIOUS_CHARACTERT1l0g ]Pn Zt%NOTES$ERASE_START_OF_LINET1\Pn8 4  gYn8 : 3=Y  8pono6P 28P8 = P :P1Z,28 & (Du"1i$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T?"= (Dv =YY ,3  3V=3Sp: $"6 h3S: ,"t6Y8 X=>> LRC="", CL="">> "!AS" >> -"!AS"HNOTES$$COMMAND_RESTOREWHICH_DIRECTIONV_POS V_CMDLINEV_NOMORE0h u5g 3=3S 82831x83tu=;NOTES$$HIGHLIGHT_MESSAGE MESSAGE_CODEV_POSV_MARKHgY` 6`"NOTES$$ERASE_MESSAGE_LINE]h+g>  ] <YnZA  ]]#)NOTES$$COMMAND_RECALL SHIFT_MODEHȲ$%&()."#NOTES$UP_ARROW SHIFT_MODEXj5j kT5k&Al l,mnoprv4w wwx{ NEXT TOPIC BACK TOPIC+gNOTES$MOVE_ARROWLINE_DIRECTIONS1Ht/01349$.NOTES$DOWN_ARROW SHIFT_MODE<=>@BgBDPEn ElFZFHH HH8IN'9NOTES$LEFT_ARROW SHIFT_MODET145 8 ,4  NEXT REPLY BACK REPLY0NOTES$NEXT_BACK_KEYSWHICH_DIRECTIONS1TQRSUWgWYPZn Z0[[1x[[ \]]__ __8`g(NNOTES$RIGHT_ARROW SHIFT_MODET1`\8g8:&w ; ;$>?wAUM!1NOTES$UNMAP_ERROR_WINDOW0ԭg6`NOTES$CLEAR_MESSAGE04 g4 8 A8 : tO; O< A= O= A> > ? A B  C  D  E (F T G c H eK &v K L &vcL ~M xM M N &vdN O &vbO P 'Q 3Q R = T 2T T 8U V X  X dY  Y Z 3Y[  [ \ : ] ^  ` b b lc 3c d = e 2e e 8f 3f g = h i  i k :l 3Pl  l l o <s t 5t t 5t Au u v y { $| F|  } ,~ H~  e A    '+ + 8 8 =   I   + 8 H   = P :  T + 8 4 =   '  d   G   I   2  8 5 5   : 3  0   F T H 8       3     v  Uv = ` +  8 ( C    T =  NOTES$$MOVE_SELECT_ARROWLINE_DIRECTIONS1T1V_POSV_MARKV_SPOTV_FLAGV_LINESV_LENGTHV_TOPV_BOTTOMV_BUF V_ARROW_RANGEV_MESSAGE_RANGEV_EOFFV_BOFFTHIS_ROW THIS_NOTETHE_ENDEND_OK0    !NOTES$DO_COMMANDCMDLINE0|2||8}3}}S} }} }~: {NOTES$$MOVE_DOWN_LINE283S  : NOTES$$MOVE_UP_LINEܣ  =   2  8 3  \  8 3  \  D1"    I l D1    @  I  F   ' '   = G  2  8 Y  Y 8  @  3  F   _   I   < =v =  > M NOTES$$NEXT_ENTRY_WITH_UNSEENWHICH_DIRECTIONS1TARGET SUCCESS_FLAGXؠ| ~ ~  & X  W  z NOTES$$MAIN_BUFFERX`p r ar t &v bv x `x z n NOTES$$TITLE_BUFFERY8 (3=3S '  =1NOTES$$CURRENT_LINE THIS_BUFFERS1V_POSP؞g3L=:3 =3Pp1lR6:_ x=_NOTES$$HARDCOPY_BUFFER_DISPLAY THIS_BUFFER SHIFT_AMOUNT OMIT_LAST END_OF_BUF SAVED_POS$$ % & ' ]( )*`-gp.'/l0n12w3q4r5v68P6'ENOTES$$UNMAP_NOTESS1@``'NOTES$SET_MESSAGE MESSAGE_CODEdTgT(VTW W0X& Y YZh+MNOTES$$UNMAP_IF_MAPPED THIS_WINDOWN~ O Q TgV VW~. XhY[ [ \/]_/`/a~/ c(dewf=r3ENOTES$$MAP_EVE THIS_BUFFER OTHER_BUFFERT1Pu3uv swx=}#rNOTES$$COMMAND_ERRORV_POSl,8ge=Ffe=G+5m 3=eG= 3eS  4 ((A(A(rA(dA(VA(OA(GA :    :  == error opening error closing error writing error reading error parsingsystem service errorinvalid 2s`c$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"access name access nameBNOTES$$MESSAGE_FROM_ERROR HARD_ERRORS1V_POS ERROR_RANGEdP X  1}NOTES$$DCL_PARSECMDLINES1 SUCCESS_FLAG|''P'6NOTES$$CLI_DISPATCH COMMAND_VERB SUCCESS_FLAG<L &NOTES$PROCESS_COMMANDCMDLINE.P(  D6Q88 \ 1NNOTES$$NOTE_RANGE_OR_ID NOTEID_INSTR NOTEID_FLAGOUT_STR SUCCESS_FLAGhԒ a'bcjk_l _ngo&#?oq q(lrtrr sjttv&#cw w$x&#cxX{ {0|J!" }~' -]B-]B8-]B8 1R]lA1xRkR] p _ $' \j_-TC-TBA  (J!"-__uVNOTES$$READ_LINE PROMPT_STRINGANSWER PROMPT_OFFSETT1T2S1S2V_PROMPT_STRINGV_PROMPT_OFFSET V_PROMPT_ROWd @u   "'71Q77P  - !%T !AS!ASFNOTES$$WRITE_LOG_LINECMDLINEWHICHS1S2V_WHAT SUCCESS_FLAG@g&v  4=v\ &d&c&G 4"P6ssm $s: ,smx:28Us ("[6 U>> !UL !UL !UL !UL !UL >> !UL !SLJNOTES$$POSITION_TO_BOTTOM_LINEV_LENV_LINEV_ROWV_TOP V_RECORDS8u vR]wt w\xPxz {P'{} }!4kNOTES$$EXEC_COMMANDCMDLINES1 SUCCESS_FLAGxLPX $3d 4PW 3NOTES$$MARK_TOP_LINE`g :'NOTES$$POSITION_TO_TOP_LINET1h$y&y{ { |&b|-vNOTES$$CURRENT_ROW THIS_WINDOWV_ROWM3MN2NN8O3OPP&GPlQQRRPS S4TUUU V,WXXXs^^^j___`=saa:b3c cd eHfg3gOh hh j(l=nnscANOTES$$WHAT_LINEV_POS THIS_POSITION THIS_LINE TOTAL_LINES HIGH_LINELOW_LINE LOW_POSITION3=f3fe=F '7777P e =!3Y! !"G"%'=(F(f*=+,,.?NOTES$$OPEN_LOGGING_FILES1V_POSV_MARK ERROR_SEL_POSt0P 22 =NOTES$$OUTFILE_OPEN OPEN_INFOOUTPUT_FILESPECCTXS1Hxh ip qstt&(UtuJ@v&(vwJy?{L||J@}}J=GaNOTES$$READ_FILE FILE_SPEC THIS_BUFFERQUIETLYT1V_SUCV_INFOX$SnVT=nUW=nXVX=]#PNOTES$$GOTO_COMMAND_WINDOW dehd NOTES_EXIT,g,Yn ]V=: RZPY 0lZRg=v> 8NOTES$$EXIT_COMMAND_WINDOWCURRENT_COMMAND_LINE~3 mX[  e==e =<NOTES$$SAVE_ERROR_TEXT LINE_TO_SAVEV_POS V_ERR_POS~&#HJ$3 mfgee=Ff[=J$.NOTES$$START_NEW_ERRORV_POSV_UPDATE(|BNOTES$$SET_ERROR_NAMESIGNAL_ERROR_NAMESIGNAL_ERROR_CODE$p| P$NOTES$$SET_COMMAND_ERRORS14$|'# NOTES$$SIGNAL MESSAGE_CODE{!"'#Q#7$7(%T& &0'7(P/ )*P--1HNOTES$$SIGNAL_WITH_ARGS MESSAGE_CODE SIGNAL_ARG1 SIGNAL_ARG2S1lzogo(qTr r8s& Yt tu9hNOTES$$MAP_IF_NOT_MAPPED THIS_WINDOW THIS_BUFFERdzg(T 0&  U,NOTES$$UPDATE_IF_MAPPED THIS_WINDOWlygT&vP 1v  &NOTES$$UNSHIFT_MAIN_WINDOWT1xgH&vP v  $NOTES$$SHIFT_MAIN_WINDOWT1twgOq  LOr a $Ow e =&GoOw l li li&ctOe =&Gx:1w8G1 $J ew J evDNOTES$$ADJUST_TITLE_WINDOW THIS_WINDOW THIS_BUFFERV_ADJUSTp@ug(T (&7 l(T  0!&Go!! "(("T# #$& &&l'i' 'l'i'))v+&vcl,3,$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TL"iv,w,,v56NOTES$$ADJUST_MAIN_WINDOW ADJUSTMENTV_ADJUSTs|8YUeU=VFVfWeW=XGXY_&eG_ _ao b d3df=egGghgjw k leo oq=s3ssSss@tt tu: vx=z{=}g ~/MNOTES$$DISPLAY_ERRORV_POS ERROR_RANGExpq(T  (7$>NOTES$$MESSAGE_TEXT MESSAGE_CODEFAO_ARG1FAO_ARG2S1|p    4  m6 FNOTES$$MESSAGE_WITH_ARGS MESSAGE_CODEFAO_ARG1FAO_ARG2S1T1o8: :h;R;< ,=Rk==@@G*3NOTES$$CAPITALIZE THIS_TEXTS1S2\oJJ JJKPV*EOF'G NOTES$$PROMPT PROMPT_STRINGS1`n kl2T6,1 (LOA   X(MOA  $  k NOTES$$YES THE_QUESTION NULL_DEFAULT PROMPT_OFFSETS1V_PROMPT_STRINGV_PROMPT_OFFSET SUCCESS_FLAG(l "V02-005NOTES$EVE_MODULE_IDENT xl$ $&"EVE$SET_NO_EVE_KEYPAD 4l( (,&EVE$SET_EVE_KEYPADk56 7l89xy:xDF;: <= J EVE_notes NOTES notesBUFFER,EVE_EVES1$kRS TX=VWAW WX Y$Z[hJ EVE_NOTESHjo~pq qqxr~2hNOTES$$EVE_NOTES THIS_BUFFER SAVE_WINDOWSj 4  `H M , U '~NOTES_QUIT_HANDLERS1V_STATUSh0de=gggiP5'4kh kl'o3oprpsu^\vxyyy{Hq {L,{{D   8 '77P9 P:' P;'24243 P ,    T  0    $lDP K ;*WYNOTES$$SEND_MAIL SEND_BUFFER ABORT_FLAGS1S2T1V_POSV_FILEV_DELETEV_ABORTeld@|dP4fhg f<hi  j lmp hq w;*5aNOTES$$FINISH_SEND_OR_FORWARD SEND_STATUSS1d @d 4Z! J$ *P5'4h '=d 3 n  Fkl |   Q (nA ]]S      &]G  d ] =  6  5   ^,  $ j!!L,!!$$%%% +h/0'172737$4'6n$7"797:P ;(<!=*>@D3DE]E=F)FG=I JK M'M NR( VHW&#HW X XJ$Z*_4a6'b &pc\ ceg0h hJ$i p!UL.!ULREAD |NOTES$$FINISH_OR_ABORT_NOTE ABORT_FLAGS1S2T1T2V_ABORTV_TITLESAVE_POSLAST_POS NOTE_REPLY NEW_NOTEIDV_UPDATE\\]lmnq$rtUuwyrzql{={Pl|>|Pl}A}Pl~B~Pl@hP6'J@>J@;*;*;*;*;*h NOTES$$EXITCMDS1l[= 42C   NOTES_EXIT_HANDLER(T[ /NOTES$$DEFINED_PROCEDURE THE_PROCEDURE Z NOTES$USER_POINT_MOUSEpZg=K(] 3Y 43l  6PqPAPv5(A # .@@@@@@@@@@@ ;PE"E "1xR( U 1RT3 81xRp   Pq LT{8 M |Pv d(A     P v Q  RT AJ8A   J8    5  P   ` T5 & !H"T$ $ %&R+- .0123456789...READ *SELECT more lines...more...end of SELECTSELECTgNOTES$POINT_MOUSEV_NOTEIDV_NONDIGIT_PATTERNV_TARGETV_TARGET_BEGIN V_TARGET_END V_THIS_LINES| g| ~    3      &d   &c   &G   s m  s     4s  "p 6   = := &      :4A6B$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TX@"  U  s x   (s  v  =     $ & T  >> !UL7 >8 e 8 19 9 9 9 ;  ; d< 5<  = >  ? 0? T5? & @ A TD F H H H I I &dI J tJ sJ oJ nJ J N 3N P  P R J R S XS =U U V H V |W X 'Y IY [ 0\ P] :u^ ^ ` _ a \jd od Pe  e (f =1g g vi Uvj Tk r O& NOTES$PREVIOUS_SCREENS1T1V_TOPV_LENV_ROW V_RECORDSV_POSV_REMAINpM  g  ?  &G O! O" A# O# A$ O$ A$ 5$ A% % ' ( 3( ) 2) ) 8+  + , &vd, - 3- - S. . / &vb/ 1 v1 s2 2 x2 2 :4 &vP5 5 6 88 38 9 0 Z; S ; 8< < 1< w< x< < 8> 3> S> ? =OA OB AC OC AC 5C D 8D E F P >R NOTES$$MARK_ARROW ARROW_RANGE IN_MIDDLEV_POSV_MARKV_TOPV_BOTTOMV_ROW(\Jf fV02-031dNOTES$TPU_MODULE_IDENTJ gRP dRcqoG RP `Rcqo   ,QH   EVE$SET__KEYPAD EVE$SET_NO_KEYPADEVE$SET_EDT_KEYPADFNOTES$$SET_EDITOR_KEYPAD OLD_EDITOR NEW_EDITORS1S2V_STATUSG&(UJ@< @ 0 - J@"NOTES$TOGGLE_KEYPADT1T2FgXYn @-TB       Y Y-T CA-TBA = &    dr  !@# #$8 %&+)-P6 NEXT REPLY NEXT UNSEENNOTES$ENTER_KEYS1EP! !  !! f!J! !!!! !A! ! !r !!q !'!5! !! !!'!B!! !=l!!!!!!!!S!!"(""" "$" s""="" "5 " X "8 " " " " ""G ""5" ""_" $"F" "$"H""A" "  "!"J "" $"%"''" ("G(")"5)" *"+"C+","-"-"8-"O."/" /"8/"A0" 0"(1"2" 3"  6"7"I7"8"58" 9"XO;" ;"$<" ="  >"$O?" ?"@" E"uF"F"G" G" G"PI"gPuJ"J"L" L"(M"N"U O"UvS"_ T"0U"+U" 8U" V"dX" Y"F Z"0["H \"]"`"A`" c" c"pd"d"Pe" e",f"f"g"= g"h"= j"  k"l" o"gr" s" t"u"Tw"y"Dz"U {" {"=|" v }",~" ~"=":"Uv "4s"im"" "   " ""!NOTES$$NEXT_FULL_SCREENCONTINUE_SEARCHS1T1V_IV_I2V_FIRSTV_LINES V_SETLINESV_POSV_ITEMV_ARROWV_BUFV_EOFFV_WINDOW BACKUP_LINESH|=u vx xz z!sNOTES$$NOTEFILE_NOT_OPEN  =  r  ' B  W =    S   \  &G   s       $s    Z 45    Q 5  u   P T    \   I  2 4   (8  + X8  1l  R     u   1  Pu  R l   @    \    11RZZ8@1xR \  l  u  u     P_ =rP I X24  "E P!D# #$I % '"E'-g/1,222= 3466 8E 8 9 9t: :=l; ; >3= >>  ?h@ BDDEUqFWF=G v H,MWM=N:PUv Q8sRimRR S W Y     NOTES$$NEXT_NOTE_SCREEN INITIAL_FLAGS1S2T1V_MARKV_IV_JV_LINESV_FIRSTV_COUNT V_TEXT_TYPE BACKUP_LINESV_TARGETV_SELECT04:<==?6 NOTES$$ASCICWHAT44M4MQNNSL NOTES$$STRINGWHATL43S ( <838*NOTES$$MARK_THIS_SPOT MARKER_NAME3 d=YY8 8.NOTES$$POSITION_THIS_SPOT MARKER_NAME23 ,O  t L < Fw J =TNOTES$$FIND_OR_CREATE_BUFFERBUFFER_PARAMETER BUFFER_NAMEV_POS LOOP_BUFFER@p1(T =4NOTES$$POSITION_TO_EMPTY_BUFFER THIS_BUFFER<0p$"!#*4NOTES$$HYPHEN_LINE HYPHEN_COUNT HYPHEN_CHARh0 " !#* !AS1NOTES$$INDENT_LINE 5R@N$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"THE_COUNTTHE_LINET1|/1w "!AS!#* $NOTES$$PAD_LINETHE_LINET1P@/g(&#hNOTES$$CENTER_WIDTHl4Tp  @ <0DT EVE$KT_HELP_FACILITY_EVE NOTES$$NOTEBOOK_NOT_OPEN NOTES$$PAD_LEFT_MARGINNOTES_SHOW_VERSIONxNOTES$$INFILE_OPEN~NOTES$$MAIL_BEGINNOTES_SET_SEEN NOTES_SPAWNx NOTES_OPEN(NOTES$$GET_DECODE_NOTEFILE_INFO(<NOTES$$FORMAT_CONFERENCE_INFO$INOTES$$FORMAT_DIRECTORY_INFO$NOTES$$CENTER_REVERSE_VIDEO$%NOTES$$COPY_REPLY_NOTE_INFO$nNOTES$$GET_FIRST_SHOW_INFO$JNOTES$$GET_FIRST_DIR_INFO$FNOTES$$GET_NEXT_SHOW_INFO HNOTES$$GET_NEXT_DIR_INFO /NOTES$$DECODE_NOTE_INFO GNOTES$$FORMAT_SHOW_INFO 0NOTES$$FORMAT_NOTE_INFO2NOTES$$UNPACK_NOTE_INFO iNOTES$$GET_BUFFER_QUALNOTES$CLOSE_JOURNALNOTES$OPEN_JOURNALD NOTES_MAILMNOTES$$MISSING_PARAM THIS_WINDOW gNOTES_DIRECTORY_NOTEBOOK NOTES$$DISPLAY_NOTEBOOK+NOTES$$NEXT_BACKX NOTES_BACK NOTES_MARKNOTES$$FIELD_WIDTH NOTES_SEARCHW NOTES_ATTACH< THIS_BUFFER(A NOTES$$EOFF@NOTES$$CONTPROGNO_ALREADY_MSG$NOTES$$WRITE_EXTRACT_RECORD }NOTES$$WRITE_MAIL_RECORD NOTES$$FINISH_FORWARDaNOTES_DELETE_KEYWORDNOTES_MODIFY_KEYWORD_NOTES_CREATE_KEYWORD"NOTES$$SPAWN_COMMAND1NOTES$$SPLIT_NOTEIDNOTES$$FINISH_SENDNOTES_SHOW_KEYWORDQNOTES_ADD_KEYWORDKNOTES$$MAIL_ENDONOTES$$NOTE_ID NOTES_FORWARD NOTES_READD NOTES_SEND(=NOTES$$FORMAT_NOTE_KEYWORD_LINE$NOTES$$INVALID_PERSONAL_NAME$NOTES$$SHOW_CONFERENCE_TITLE$ NOTES$$CANCEL_READING_NOTE$9NOTES$$FORMAT_KEYWORD_LINE$mNOTES_DIRECTORY_CONFERENCE$NOTES$$READ_NOTE_TEXT_HERE$NOTES$$SHOW_NOTEBOOK_TITLE$lNOTES$$SHOW_DIR_CONF_TITLE$,NOTES$$BEGIN_READING_NOTE$.NOTES$$DEFAULT_NOTE_RANGE$tNOTES$$EXTRACT_NOTE_RANGE$7NOTES$$FORMAT_MARKER_LINE$;NOTES$$FORMAT_MEMBER_LINE$ NOTES$$NOT_READING_A_NOTE$>NOTES$$POSITION_IN_MIDDLE uNOTES$$EXTRACT_OPEN_FILE 8NOTES$$FORMAT_CLASS_LINE 6NOTES$$FORMAT_ENTRY_LINE NOTES$$STRING_FROM_RANGE NOTES$$FORMAT_DATE_TIME [NOTES_CREATE_CONFERENCE NOTES$$SET_MORE_MESSAGE :NOTES$$COPY_MULTI_LINE 5NOTES$$FORMAT_DIR_LINE NOTES$$SHOW_TITLE_LINE NOTES$$WRITE_DDIF_FILE NOTES$$CLOSE_NOTEFILE NOTES_SHOW_CONFERENCE NOTES$$READ_NOTE_HERE ^NOTES$$SET_CONFERENCENOTES$$DISPLAY_TITLENOTES_SET_CONFERENCE]NOTES$$OPEN_NOTEFILE!NOTES$PREVIOUS_NOTENOTES$$CENTER_LINENOTES_SHOW_PROFILEdNOTES_DELETE_NOTENOTES_SET_PROFILENOTES$$FILE_PARSENOTES$$WRITE_FILENOTES_SHOW_NOTENOTES$$COMPARENOTES_SET_NOTEZNOTES_CONTINUE NOTES_UPDATEY NOTES_CLOSE NOTES_WRITEXp NOTES_EVEDrNOTES$$CLOSE_QUEUE_JOB$NOTES$$SHOW_CTRL_Z$EVE$PACKAGE_PRE_INIT_NOTES EVE$PACKAGE_INIT_NOTES NOTES$$CTX$ NOTES$$HARDCOPY_LINE_DISPLAY$DNOTES$$SELECT_FROM_DIRECTORY$(NOTES$$ENTER_TOPIC_OR_REPLY$NOTES$X_NOTEFILE_REPLY_ONLY NOTES$$GET_FIRST_ENTRYNOTES$$ENTRY_MODIFY`NOTES_DELETE_ENTRYNOTES_MODIFY_ENTRYNOTES_SHOW_ENTRYPNOTES_ADD_ENTRY|fNOTES_DIRECTORY ENOTES$$SELECT_FROM_SHOW NOTES$$RESTORE_PRESHOWNOTES$$SAVE_PRESHOWNOTES$$CANCEL_SHOWoNOTES$$COMMON_SHOW?NOTES$$ERASE_ARROW({NOTES$$GET_MEMBER_MAILING_LIST wNOTES$$EXTRACT_NOTE_TEXT NOTES$$GET_CLASS_DEFAULT CNOTES$$ITEM_FROM_CURRENT NNOTES$$GET_CLASSES_LIST |NOTES$$GET_MAIL_SUBJECT yNOTES$$ADD_MAIL_TOLIST zNOTES$$GET_MAIL_TOLISTeNOTES_DELETE_OBJECTNOTES_SHOW_OBJECTUNOTES_ADD_OBJECTNOTES_SET_OBJECTNOTES$$HELP_TEXT NOTES$$SELECTs NOTES_EXTRACT NOTES_SELECT NOTES_PRINT NOTES_NEXT NOTES_TPU$-NOTES$$DEFAULT_TOPIC_NUMBER$$NOTES$$EXTERNAL_EDIT_BUFFER$NOTES$$MAIL_EXTERNAL_EDITOR$kNOTES$$DIR_NOTEBOOK_HEADER$vNOTES$$EXTRACT_NOTE_HEADER$'NOTES$$HARDCOPY_EDT_EDITOR$)NOTES$$PASS_BUFFER_TO_USER$4NOTES$$FORMAT_NOTE_HEADER #NOTES$$EXTERNAL_EDITOR LNOTES$$KNOW_THE_EDITORjNOTES$$DIR_TO_BUFFER3NOTES$$FORMAT_AUTHORNOTES_SHOW_MODERATORcNOTES_DELETE_MEMBERbNOTES_DELETE_MARKERNOTES_SET_MODERATORNOTES_MODIFY_MEMBERNOTES_SHOW_MEMBERNOTES_SHOW_MARKERNOTES$$OPEN_ERRORRNOTES_ADD_MARKERSNOTES_ADD_MEMBERNOTES_SHOW_ERRORV NOTES_ANSWER(qNOTES$$HANDLE_MODIFIED_BUFFERS$TNOTES$$GET_MEMBER_PRIVILEGES$hNOTES$$PARSE_EXTRACT_QUALS$\NOTES$$PARSE_RESTRICTIONS NOTES$$TRANSLATE_TABSNOTES$$CLASS_EXISTSNOTES$$SHOW_MEMBERSNOTES_SHOW_CLASSESBNOTES$$MAIN_LINESNOTES_SET_CLASS$&NOTES$$HARDCOPY_WRITE_LOOP *NOTES$$ENDWRITE_CLEANUP NOTES$$HELP NOTES_HELP0 NOTESHELPx$   " # # @% % <& &T'T+@,.$005`679;<>@ABtB C!TE"$F#F$H%lI&J'K(8M)@R*S+T,U-X.Z/0[0[1]2^3`4c5o6<?h@<ÅB<C؋DČEF`GHHԔIJKL<MNlO؝P\QRSTDU,VlWرXLYZ@[\]^_|`a4bcdefgh<ijk@lmn8op\qdrps0tHuhvwxy4z{L|P}(~T D4 ##$)*H1$2h3D8h<?@BtBCdHHIJMNHS@ZZ\[[^`dbc4f,npno|qdv~~؀ȁX܃0(S h&"x ('1 "NOTES$$PAD_LEFT_MARGINT1,X     NOTES$$FIELD_WIDTH     !1t!o!!!" ""#"$$*!#* !AS1NOTES$$CENTER_LINETHE_LINE THE_WIDTHT1( 001w0x0001 112"2 34124x448516 67 89;3;;;@ !#* !AS F*NOTES$$CENTER_REVERSE_VIDEOTHE_LINET1V_MARKV_HIGHLIGHTINGDF&(G GH&(UHIJ@J*KKJ@lL?LPR;*@NOTES$CLOSE_JOURNALS1VXY&(YZJ[+?\\JaRNOTES$OPEN_JOURNALS1 6zZ $ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Ta3" &(UJ@&(JVJ@JFNOTES$$WRITE_FILE THIS_BUFFERWRITE_FILE_NAMET1V_SUCV_INFO '77P222k2k2k2k7NOTES$$FILE_PARSE FILE_NAME DEFAULT_SPECS1S20 S   )NOTES$$TRANSLATE_TABS THE_STRINGPP  g  3   =31:O3P1lR6:l_ P=!lNOTES$$HARDCOPY_LINE_DISPLAY THIS_BUFFER SHIFT_AMOUNT BACKUP_AMOUNT DISPLAY_INCREND_MARK SAVED_POS@ <1<R==A3;NOTES$$STRING_FROM_RANGERANGE_IN_QUESTIONX 0   'NOTES$$NOT_READING_A_NOTEEMSG\ 0   &NOTES$$NOTEBOOK_NOT_OPENEMSGX +r5(  r r 1NOTES$$CANCEL_READING_NOTE STRING_TO_SET|!!!A!! ! !0!&!c !! !3 !!!!!=$! $!%!=&!2&!&!8'!3P'! '!'!(!(!3(!(!)!,!(-!T.! .!4/! /!/! 0!H0!3! 3!`4!RY5! 5! j6!m6!6!9!g(:!&vP:! ;!D!Do>!:>!@!A!B!12B!B!8D!8E!3F!F! G!0H!3I!I!M! $N!O! P!TQ!&$R!cS!c T!(U!V!W!Y!=^![]V !NOTES$$SET_MORE_MESSAGE STRING_TO_SETS1T1V_POSV_MARKV_BUFV_RANGEV_EOFF|Oa+5 +f5&A8 l   4 f e'''1NOTES$$CANCEL_SHOWDIRPROG STRING_TO_SET" ""'"""  ""T""&"&'"("a""g"r"t"q"="q"="  "" " ""Uq"Uv"2C " ",#TC#TB ##=#,"NOTES$$RESTORE_PRESHOW MAP_PREVIOUS  &#H   J$ 5 +8 ' 8  $O   (  !"=v###=$$&c2$$:''J$/5NOTES$$DISPLAY_NOTEBOOKWHATV_ITEMV_UPDATEhK'L7M7NPA~OPP`$HNOTES$$COMPARESTRASTRBS1|89 9:1z: o:::; ;;<"<==p> 9K>t>x> >>B@?F B"99BD D0pEoEEEG+G8G H$IIK  LL MLN& OOb P$QRRTU W W XY  Z[ [ \P^^^=`bgcqe eLfJ'qgJ'q" hipqkk=lq mdnn=oop pp6q6't ' uvvwxxy{ {|~ ~~ !#* !AS!#* -<  >--_/NOTES$$DISPLAY_TITLE OTHER_BUFFER EXTRACT_FLAGHEADERRESIZES1S2S3T1T_WIDTHV_POS<p'q7rQr7sPEt2tR9uuw9lNOTES$$FORMAT_DATE_TIME DATE_TIME FORMAT_FLAGS1p '71Q77P  L3= = =NOTES$$WRITE_EXTRACT_RECORDSTRING_TO_WRITES1V_POS$+ P \2P12224222424242422q@NOTES$$GET_DECODE_NOTEFILE_INFOGET_NOTEFILE_INFOS1T14 K'777Q7P '777Q7P  *gNOTES$$GET_FIRST_ENTRY ENTRY_NAME CLASS_NAME NOTEFILE_NAME GET_CLASSES ENTRY_INFOS1 V_DEFAULT<5 7 7|89X:5: Z; 8; <=  >? A ZEL E,FA FF FI IKCLASS**<4NOTES$$GET_CLASS_DEFAULT CLASS_NAMECLASS_DEFAULTED K'Q777777PjNOTES$$ENTRY_MODIFY MODIFY_FLAGS ENTRY_NAMEENTRY_NEW_NAMEENTRY_FILESPECENTRY_OBJECT_NAMES1T1| QP \q lo''''''''  W rXT c  f  e 'o   '''''  # & ' (  *! +" ,%e& m,$NOTES$$CLOSE_NOTEFILES1T1<-. ./4,NOTES$$OPEN_ERROR777 79':7;7<7=P== => ?@@B(4NOTES$$READ_NOTE_HERENOTEIDS1PD DD DEP GGLB NOTES$$CTXCTX$\I0J KL M@NP N7R$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T" O2O4OR R\ST < U0V WP Y,[ \P]_ ^` `bEBNOTES$$READ_NOTE_TEXT_HERENOTE_CTX TEXT_TYPES1 V_TEXT_TYPE,'77777  TP 824_ P @NOTES$$WRITE_DDIF_FILEFILESPECNOTE_CTXS1 V_TEXT_TYPE|e efhk kDm mnoqrsu"u READ !UL.!ULbNOTES$PREVIOUS_NOTEx Djmmm"":NOTES$$SPAWN_COMMANDCMDLINEINP_FILEOUT_FILES1t<J$ ("! !'Q7777&#HJ$PJ$CNOTES$$EXTERNAL_EDITORINP_FILEOUT_FILES1S2T1V_UPDATE8llP , #;*ENOTES$$EXTERNAL_EDIT_BUFFER EDIT_BUFFERINP_FILEOUT_FILES1d   H"qo  @pJoB PP<<<  >>>-<  >-'NOTES$$COPY_REPLY_NOTE_INFOT14g  <  t6' ' P  ?NOTES$$HARDCOPY_WRITE_LOOP EDIT_FILE EDIT_BUFFERS1T18g ! '77Q77!7'7'7'P  $H3 6  HW 6 6'EDT3&NOTES$$HARDCOPY_EDT_EDITORS1 HV6""##h$$^%' 'H=(h)*,--] .d/02+3h>4 4(5]68>5>h>A\BdC%D EEEFdF=K kL{lMeAN N4PQ PP'lQ kT UnV]V=XhY[+]g5] ^ _'cgklldm]nxqo o oqz rw$x]y= z@{|5| }~d=$>H g &],>],LASTEDITCONFIRMFILESPECEXTRACTTITLENOTITLENOTITLEnotes$$finish_or_abort_note(0) NOTES finishVNOTES$$ENTER_TOPIC_OR_REPLY ENTRY_TYPES1T1 EXTRACT_FLAG LAST_FLAG EDIT_FILEL=3O&"x "tP :_  !#* !ASCNOTES$$PASS_BUFFER_TO_USERCUINTS1S2T1V_MARK V_END_POS=gP4h (~Un   h 3NOTES$$ENDWRITE_CLEANUPLAST_EDIT_POSITION8x xxz'{7|7}7~Pp KOo8 4o'''  ,*pNOTES$$NEXT_BACK CALLUSER_CODES1&   /W ra & ' (0'P P$ r 24  =W&WG @PHa  P I ;NOTES$$BEGIN_READING_NOTE NOTE_INFOS1 V_TEXT_TYPEP<Q O  QkRP (Qm 1RP  lM 8(/ Q0.00TOPIC.NOTES$$DEFAULT_TOPIC_NUMBERNOTEIDS1( uRlRc--l*m ---2NOTES$$DEFAULT_NOTE_RANGENOTEIDS1S2T1@G GH1J2N*DNOTES$$DECODE_NOTE_INFO NOTE_INFO0X  X $lY hY Y [ [ \ 5\ g ] ^ a a ,b  b c e 4'g g 4h h i  j k m g<n qo pqp =Wq q r 8s =Wt `u 6'y y } (notes$x_temp)=-KR NOTES$$FORMAT_NOTE_INFO OUTPUT_PROC OUTPUT_WIDTH V_OUTPROCT_WIDTH<(  1ouR4lRc4; NOTES$$SPLIT_NOTEIDNOTEID NOTE_NOTE NOTE_REPLYT18 !2!4!"2"$1%%8% &'*2*4*+2+,2,-2-.2./2/4/020121412224232343424O7>7#,757 8@9':';'<'='D-NOTES$$UNPACK_NOTE_INFO NOTE_INFOS1S'TV(VWWduXXRXlYYRY Zx\ \_(_a a|b(lbwblbbRbuccRce1zeef ffg"/gjjl::@. !#* !AS::!AS1NNOTES$$FORMAT_AUTHORAUTHORS1T1V_NODE( 24 2 1  8  2422222422424242O>8+$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T6e"Lr)#\ל:y=uOm1X\#&[0iU,Apfl pf mc*N8aVנHmCf 5RRF:" mZ6 }ܾ{`Xqe_[+7nΜCx2y+vkH@њ '|aګi?.LZ0CR-ak(u~@Hk򇯞 Dj D޳Q}R?xhF+#7|R ,nm%A$m,pعU}du/ 8uh>dYIx#>|6Q㥘t3 zG Ԡ_6,UI@\)e.! ̡)"{! ȏ QXwŮ+ ^'Rm 訲>eОw WMB#"AVY(/KS4تJC˅5St (ĸ>KϏRh,VPR]Eߖ LJwr]-4 3ǝٮЂ)>[hWbMLAdk>ƫQ1ˏh`&Ν"=c02QnfQw(N6?OlM}"!ז=^b')kׁ9>"|tD.4C%tldmA|F ʚuk3FlPTZNbU,,-PvZ_ P9y혼qqMVYI6B@GS-%rZg[|;0S6uC3{dIԴ3e,~A~kkJ9@.nM=s7TTV>ql5veO˩Gj0Ni)*ԏKcTt ;F4YWvCX-pt^c5Fš.<GʏZMYtI=ÖNryt;Ei?N]klij)QGB䩉c?~24ʼ&5g(P ?lι2 "Lmnʆ^d ,9?kLd0u$9Zb.M 6]`u^G\ =r '\GxBs@eLm3rL!xQ9Z1VN]{gYr@]544OZ׫:* 8b3H:wC[K8XstB? 1`P5? T$:J:mBoI:˪*69SzbipO-RĨ)yH]=WV IF9VnD;^Sb{pG=NͿX[icXgv>A֜x$gL2Bn ML7B=ƶgr\^U.>%|-op pHJ>nR}5/kK[=*"6>p FHY_ PTgO˷ F05g6P? d39VO#3AB M=sb09\Y| xTrR` ^mکܒ}Cfk2|hCNkdS:u@ |8~l\*w`iEζ^:8kLEVh&d-$>|FUrieCn-shGNz8Ih YU%6͉PP=~ft^G8OۖT+EfݠB.BTW xJeknt`o=Dr#K?)VVj]nbDNƾ^uNf<5.R@Nzdi02Z17[~Tb0 ):R7'_"F*Xz[G'CfN99LFB:SIcvtHV+qX]|k4/#ltVsi\u./]\9-Pv|~*js0^wheFSkR|$n?^{N3Cp3z>lv),FPdz ?YydD6Ut /ȘQS"RqdxyZofsIGz=f`K9P$Q4&OJ'X~-[C!qR7qL|2PD;(Fc9Rt\κ@w7jCN?;`5K&Hj3)v&k DZZKH[.Jk f"SLTDm9Oc`#[u$ _+SS =^j Qf!uw%s7s6pȦڦ97FoN_"W;U?筟=$(=)%F> PBq6)Mo02fu9G^CN}Jou iDH.w[X|uDLP.X% @&g5DՊ/\,C~ܟu9rgʌ=|?ʘzʮ~ߞ[[.VUb$_)[$]Fs9HGA{=BiŨF״cO.afEoЀOĭZtӱNHx2d8NIPe`KVe[w|K^LK!k}\5uM2="@:m|w,o;ޥQK0>aG2lM n).,NK"S#Jb}6Qp~$1UJ)74#0rפ\MD3 .X! 0`  ]ܝT x OPRvc|5y̩~|DrJߡzBm $iF^+ƄK6@̂תMJ/rO B'a6ūb$:џ;_՘}2[A}*tedo\t2]"myoM9d` {MyЧOg["hЧ^΁g =kY0uWYZX(3SᾏB CKܳl[d3(MY7)+sJe%8=h7utsRWvxβLB1>".xjr<Y!>Is5Oh]>ٍ9K1ub,;~I7R؏L` y| p@N=x+bVkI,e+?&~}+obcy#\1#2Vf^8'"!āoVNx'yzq/mȦf-d+,HnUdCUD\m A?3J_#Vοf >]Sб7{ݞ ^Vg/h$ɫ .y:ʗT\H X$J"+Bg'R"!Jn%^$t2?ZI@5Os,_AJ3Ts#^׷jL&{Qha2\5$Q,ұMiUѦMiR`~SSoViW \FuFBAi [YH_(4VqA[@I~&0.~etfnnٛeXM)MiJ~֪} ->de{(|IŶms#8z!9 [GiG!{q !9R-OO;o.UӾ:LdXoo l()F)eT'Tcܪ嚅j}FMmX/FLC FվȆTq̈"yCML6{ܞj1 ٍVPV J!M Y-ߒ# ^Ol[8 rdbX|d\b?9#;&\F\_M AG;".h.J/&G|l/ Ө93PO(N5Q٫ĝ_Cx@B[w/fYW?a(ӥL9bOcizLjMqlQ0VYݣP0mcԪb,|6a-gsK[BҊc\q^]HZޗhሶ a;M;ز}੧]*ԾdSXnS>[rUh0Iag#M:CVV 0OE[-*!L&Ya=L~_XYStZ> xtJ#g6ɬJ \O Rf,4GhQX <(7pMe͐~GxZZλ[ƹUF˜ Ug2%3 0~Ti-Jh 3l"o] !t8ڝeQ{;eɘX{?L?I^TY:+ؐ6_cBX@IxdHGAn"%Vg&^Wv?Mb>vUKiCE@ tnn .#xɳ:|YiKJ?=l9{-EEv$;\X\1sӖd ~|DD yIRW9C7IcO3W*Idu!RW<<:{Z^#5p^1lnx`iW<ɞrf,-m7D 1Y0`di2a7vY˭5v(`"1GgW2j'{`ToBgCyɩ6MtUX uZX+z!^S9vfk9`-\zC1U_2Bl* w8[_ْ/(|>޻,oM"ݯV;T#.&AK`>DˑՉ$`?dpmů-cTivmw6@+Q1x#B3*!\*gN_Tot_-LoB rI fon;)&! \ ȿ4Լ66~ NLnws嗶a Z2@'ݱ O/V9H'l-NQ Hx<}>ᑢfIx[VwUIME,x1MQ#dBd< *1? ۲Ot1驄xzjRCy 'V=j$%%Ӻ+%$Py8Ae}SZ'] ˗_Kӓt^PVxpU8jA|!.Z 9Ǟ 7*֕ cks˭7hF/eHފ k1Wc9(H~1S XRc^#*~>XUxS# ՞Iu/U7QTRo11Gy\ _t w4[FIj  ߷h7 O3nB@QQKח6[QYV= R+2Hj]1]0RZ cI3?j| ʃ |`p_3f% ydTX?kК)OH#Y\{cpR@_R wyz׮bZv'o^n};BztYN;UlHȰ!DjKSz7TUS/Wc wF$T_AH_i8&G>81"r{8MeiЦ`mLk6v1ebJ+Z 6~z-(n"-dr/1|kdDJV0*<|MȹYGs961$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TP"#,5 @''''''Q7Q7Q77        H  P  H  $    jO 8  jm<  ldjO    1t 1wx1  1 ~ 1wlw 1t vlw1w $jR " 40ra (q `   O     12 o  8 8 3   0 3   2  1n m  8 3 l  8 1        8 3    0 3   ! $j" " #  ) ( F@ ) "9) * 1o* * 1n* * s+ x+ + , 1,  , , 1, .  . ,/ "{/  0 1 '3 1t3 v3 3 4  4 4 5 " 5 7 7 8 9  : ; <  O> ? 8? @ tpA oA A  A C C D E  F G H  R *!AS!#* !AS !#* "!#AS"!AS !AS!#* !AS-<  >-swNOTES$$FORMAT_NOTE_HEADER NOTE_INFOOUTPUT_PROCEDURE OUTPUT_WIDTHS1S2S3S4T1T2T3T4 V_SHOW_NOTE V_OUTPROCT_WIDTH V_NOTE_TYPEV_NOTEIDV_TITLE V_NOTE_NOTE V_NOTE_REPLY V_NUMREPLIES V_NOTE_TIME V_NOTE_AUTHOR V_NOTE_TITLEV_NOTE_PEN_NAMEV_NOTE_NUMRECORDSV_NOTE_BLINK_TITLEV_NOTE_WRITELOCK V_NOTE_HIDDENV_NOTE_CAN_REPLY V_NOTE_CONFV_WINDOWV_HIGHLIGHTINGX, 2     3  (   6 | $   ' u  R  1z       "8  y       "a8   *&!#* !AS!AS !# !# !#UL !AS'!#* !AS !# !# !#* !AS !AS;} NOTES$$FORMAT_DIR_LINE NOTE_INFOS1S2S3S4T1T2L  2  2  2  2  2  2  2  2  2 4  2 4  2 4  2 4   ' <   '  H 6 |@ $   '    "49   $ !# !#UL !# !#UL !AS~ NOTES$$FORMAT_ENTRY_LINE ENTRY_INFORET_ENTRY_NAMERET_UNSEEN_ESTIMATES1S2T1 V_LASTREV V_TOPIC_NOTES V_LAST_STATUSĹ  2  2  2   "$    !# !# !ASU NOTES$$FORMAT_MARKER_LINE MARKER_INFORET_MARKER_NAMES1T1V_NOTEIDV_ENTRY  2     @   "   * !AS!ASA NOTES$$FORMAT_CLASS_LINE CLASS_INFORET_CLASS_NAMES1S2ܷ 3  c  2   "H       P+'   2   1n o   , P o  'l k  _  D   = :   !# , a NOTES$$FORMAT_KEYWORD_LINE KEYWORD_INFORET_KEYWORD_NAMERET_FULLS1S2T1V_POST_WIDTH!3!!c!=!3!!S! !!' !!!!8!&cG! !!8 !!'!=!!!CBUF(!NOTES$$COPY_MULTI_LINES1V_POS  t 3  c  2  2  2 ! 2! " 2" 4" L# q# # R# $ "$ % 9&  & & ' 9( 1o( )  ) l* p* + - (J- u. . R. l/ / R/ 0 1k0 o0 1  1 ,2 P3 '4 l6 6 7 1k7 o7 7 8 8 9 : ; c; =< Dv < = = (> "> @ @ 1z@ &@ A  A A B "B C =E :E E G ( [M] [K] [MK] [W] [MW] [KW] [MKW] !# ,,, !# !#* !# !ASu NOTES$$FORMAT_MEMBER_LINE MEMBER_INFORET_MEMBER_NAMES1S2T1T2V_NODESV_ACCESS V_MAIL_ADDRV_PRIVSV_POS  دU 3U V cW X X Z  Z $[ 2[ \ P1] 2] ^ 2^ _ 2_ 4_ ` 2` 4` a 2a b 2b c 2c d f  f 8g h C h k  k 8l m D m p p 8q r H r t y w v FE y "y z P { | 1| R| } 2}     P1 >  t  P 2   8       P   j      ' =  :   G NOTES$$FORMAT_CONFERENCE_INFO CONF_INFO RET_CONF_NAMES1T1V_NAMEV_CREDAT V_LASTREV V_NUMNOTESV_TOPICSV_TITLEV_NOTICE V_MODERATORV_POSL0 3  c    1o m    P j o   1k o   P4'    _ <  = :   ,L NOTES$$FORMAT_NOTE_KEYWORD_LINE KEYWORD_NAMES1T1T2T_WIDTHV_POS g  3  =  U     &d   &b   &c   &Gx       = :O  0 =    v :Vw$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TY".s   =  =s ~  ,s     : 3    = : 3P      = h NOTES$$POSITION_IN_MIDDLE THIS_MARKV_TOPV_BOTTOMV_ROW V_RECORDSV_LINEV_LENGTHV_POSV_MARKh g  t 3  =  &G   0   = - NOTES$$ERASE_ARROW ARROW_RANGEV_POS`S %T |%U .%V 6%W :%X @%Y D%Z J%Z P&\ '\ P] \ T  T U  U xV  V dW  W PX % X <Y ) Y ([  Z \ 6` ` b ?? Internal error ??)P NOTES$$CONTPROGDIRPROGCONTPROGXd f f h &j fj l rl n b NOTES$$EOFF|  = g@ =v  &cx    i   NOTES$$MAIN_LINES  R  D 1 (o  R  8   0 NOTES$$ITEM_FROM_CURRENT SECOND_ITEMS1  3  =T C  =   D p   READ . NOTES$$SELECT_FROM_DIRECTORYS1V_POS4  3  =      C   ="  xx88X P  p 0m m   p    o k o  Rc  8 p o m   Pp u  0p b   E OPEN/CLASS= SET CLASS READ/MARKER  /ENTRY= ADD KEYWORD ADD ENTRY / NOTES$$SELECT_FROM_SHOWS1S2T1V_POSp+  8  $ @a P'   8   J    G   * NOTES$$GET_NEXT_SHOW_INFODISPLAY<!!'!Q! !!:! !"!a#. Dd !0!6!! !! ! !!8! !!7! !!9! !!;! !h!<!! !<!=! ! !'!6! !! !! !!!2!!8!! !h!3!!2!!8!Qm!m!!0 !=! !!CBUF?? Internal error ??K~!NOTES$$FORMAT_SHOW_INFO SHOW_INFOS1S2S3V_POSV_UNSEEN_ESTIMATE  l  ,  '   f     ,  '   e   J        P `  0 f  J  e   5   G   6 NOTES$$GET_NEXT_DIR_INFO DIRECTIONDISPLAYS1r!5r!s! s!s! s!u!2u!u!8v!w!3w!x!2x!x!8y!0 z!=|! |!~!7n!NOTES$$FORMAT_DIRECTORY_INFODIR_INFOS1V_POS   ,  '     H P  e   '  & " NOTES$$GET_FIRST_DIR_INFO\l@@PP<'P;';*NOTES$$MAIL_ENDS1(p !o9,( tlRc(pxRk!R!P  ///%NOTES$$KNOW_THE_EDITORS1T1@ P !9"Q"<A# # $ & &( (*"",NOTES$$MISSING_PARAMPARAMVALUES1dQR'S TXUV WHYYZ [<\] ]]]^Qa< abcKg'h7iPk2k7lP' lm_ n otrA rrrs ss7tP: t uxxCLASSESCLASSES*CLASSESKKNOTES$$GET_CLASSES_LIST DEFAULT_CLASS CLASS_LISTCLI_TYPES1S2S3@6 $u   T(     8   NOTE_ID>NOTES$$NOTE_ID PARAM_NAMENOTEID NOTEID_FLAGS1T1T2t n M K{ f O   '7 7P H 2      '   4P1    P " " 8" "" $ $$' %'&7 '7 ()7'*7 +,N , ,,2P3 5 589Q= =x>?A2ABB lCC DJ JJMN'OQ2QRRST7UPV8WQWAW WW[ _P` `l``jaalbb d f fg[ hDi j jj" k oADD_P2OBJECTFILENAME*NOFILE,ZNOTES_ADD_ENTRYS1S2S3S4S5S6S7T1T2V_FILEV_ENTRYV_NAMEV_CLASSV_OBJECTv vvwOwwxM xxz{$K}'~77P"(O$  ADD_P3ADD_P2,oNOTES_ADD_KEYWORDS1S2S4V_NOTEID`Ј n  OM o XK'777PX0  ADD_P3ADD_P23NOTES_ADD_MARKERS1S2S4V_NOTEIDV_ENTRYL 8 M (K'( k uR 9,lR  M' ';Ћ$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Ti"?7 P Spj9,X8 X lj  07'P p9, < lYj x78 m8 lA 0 ' 0  lbm 7 5  * l   l lQ7P&O! " ! #T% )ADD_P2::NODES :,ACCESS,MAILNOMAILNOMAIL:: NOPRIVILEGESMODERATECREATE_KEYWORDSWRITE_REGARDLESS\NOTES_ADD_MEMBERS1S2S3T1 FIRST_NODEV_NODESV_ACCESS V_MAIL_ADDRV_FLAGSV_USERp& *& +& ,&'&7"&P(&&& &&2&&2&&2&&2&&2&4&6&& && ,6&& && +6&& && *& &&s&NOTES$$GET_MEMBER_PRIVILEGESINP_STROUT_STR MEMBER_NAME MEMBER_NODES MEMBER_ACCESSMEMBER_MAIL_ADDRPRIVS 3M 335'6789A: :(;s ;;'=7?PF@CE# IADD_P2FILENOFILENOFILE/)NOTES_ADD_OBJECTS1S3V_FILEV_OBJECTLd~N NNO  OOPPPUUV'W7XQX7Y7Z7\P\\]2+^+^,8^ _`1bdeg(mEXTRACTI NOTES_ANSWERS1S2X|p4 qr s txPROCESSm NOTES_ATTACHS1|{d |} ~<~> ! +TOPICNOTEx NOTES_BACKT14{  NOTES_CLOSE{= &  r P NEXT REPLYNOTES_CONTINUES1zM \]''H  'Q777'^'r P CREATE_P2WRITE6NOTES_CREATE_CONFERENCES1S2V_TITLEV_FLAGSxwPwy yz{% |}  l@ PpIk (pKk` (yKkRESTRICTMEMBERSKEYWORDSWRITE REPLY_ONLY2rNOTES$$PARSE_RESTRICTIONS SET_FLAGST1T2w  K'77xP2222222 ' ' 7 (  7 7;7'Q7777Px2  ) o!p"a##'(O)T * +78e9 m==B*::jNOTES$$OPEN_NOTEFILENOTEFILE ENTRY_NAME CREATE_FLAGSEEN_MAPS1S2V_OBJECTOPEN_NOTEFILE_STATUS0sP,NOTES$$SET_CONFERENCE SET_STRINGS1TsR RRSM SSU+W#5W+X+8X YZ$\^$K`'a7bP"cfg k CREATE_P2&LNOTES_CREATE_KEYWORDS1S2S4T0rs n sstM ttZv v wP wwy'zzz|K~'77PQL $    DELETE_P2**;kNOTES_DELETE_ENTRYS2S4V_ENTRYV_CLASS V_DEFAULTp MD $K'7P+#5++8 $ <O7P# D$    DELETE_P2ALL DELETE_P32NOTES_DELETE_KEYWORDS1S2S4T1V_NOTEIDn n  MT o XK'77P+RY8 `'77P  DELETE_P2-NOTES_DELETE_MARKERS1S2T1V_ENTRYl M (K'7P'O"  T  DELETE_P2,NOTES_DELETE_MEMBERS1S2S3T1MBRk   O L M "'#7$7%P %%O)5) *+ K-(.10 0l1W23 4'5 (6' 7p8>8< ? DELETE_P2CONFIRMREAD ,NOTES_DELETE_NOTES1S2T1V_NOTEIDiEMh EEI'J7KPGLOQ$ U DELETE_P2+?NOTES_DELETE_OBJECTS1S3V_OBJECTh+^^|A_ _0a abg c dgko*q qrrusissu uw`sxxy yyz"z {ts||u}ik}l}w}}  st (uito @ "  0 '7hP KiA  j( ' f e4g @ ,2  etu $u"S ,u"+'7h<u)>$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"PXTc & (a 8CLASSDIR_P1ALL!UL.!UL-LAST.LAST!UL-LASTOUTPUT !UL.!UL-1.0!UL-1-UNOTES_DIRECTORYS1S2T1T2T3V_ALLb  n o5 4o'''Dl3''iA D  j   9oDIR_P1*OUTPUTnotes$$dir_notebook_header(0,0)BNOTES_DIRECTORY_NOTEBOOKS1V_ENTRYV_CLASS V_SHOWX_CLASS$` 7Q7!'"# #(#D#Q#$7&''X) )*  **+7-(-..u//R/l00Rc01 23 Q42484 5(p6o66 70Q7787 89<7 => ?$@ A BC'E7HIXI8I J|KLlLLMO'MM MNN  O0PPP P4T TUV Y7jZZ] ]uSEEN"AUTHOR/BEFORE/KEYWORD/SINCE/TITLE/ALL/TITLE**AUTHORUNSEEN1-LASTNOTES$$PARSE_EXTRACT_QUALS INP_NOTEID MARK_SEEN READ_FLAGZAP_IF_SELECTION OUT_STRINGS1S2S3T1V_NOTEIDOUT2 SELECTIONSTRY_WHOLE_FILE[ d  C  BUFFERAPPEND"NOTES$$GET_BUFFER_QUALS1Z3 |'7777 L&"  JaK@O H 8 L'O k l    = $'  P $O <5 ' O D6 ' HQ! !":" #$<$& &&'_ (. .0/P0, 4 4X6 67Ja:&*:+ ==ACBUFFNOTES$$DIR_TO_BUFFERDIRPROGS1S2S3T1V_POSDIRCTXDIRCONTV+8 a  PXo           9  -QNOTES$$DIR_NOTEBOOK_HEADER OTHER_BUFFER EXTRACT_FLAGS1S2T_WIDTHV_POSHT3+8 Xa  P   =-NNOTES$$SHOW_DIR_CONF_TITLE OTHER_BUFFER EXTRACT_FLAGS2T_WIDTHV_POS0 SMN NN;O'P7Q7_RP2S2ST2TU2UV2VWQX8XQY8YOZ8Z [T\(\\(\8\ ]l^^a(wab b b(Mbc deg(ghh`liijjjlkkRk l|m n(o(o p(q(`kqqw wHx(.xyRy  z${R{ } :,   '77t(^ 7 7;P-n''.iA  j.o P.DIR_P1 _Z$Z_:[_Z$Z_]_Z$Z_:[_Z$Z_]*%::]>::::@*::ALLOUTPUTnotes$$show_dir_conf_title(0,0)LANOTES_DIRECTORY_CONFERENCES1S2S3T1T2V_NODEV_DEVV_DIRV_NAME M]#'Z_#_#8_# `#La#b# b#b#c# d#e#h#7i# i#i#7k#Pk#l#l#Kp#p#r#**CW#NOTES$$GET_FIRST_SHOW_INFOP1 CALLU_INPUTDIRPROGS1S2T1DLs# n s#s#w#y# y#pz#a{#%}#|%~#&%#(%#.%#6%#:%#@%#D%#J%#P# #}# }#~# ~## ## #t# #`# #L# #8# #$# ###  ##'# #### #=## ## #X# #g$#Ur#Uv # # #Gr#NOTES$$COMMON_SHOW SHIFT_FLAG TITLE_STRING HEADER_PROCDIRPROGtIgY3V=3V\  8!:""RZ"#6,$(% %''1l&Z&'R'(6* *L+B+=j,, -B-=1=238EVE" NOTES_EVEV_POS V_CMDLINElGBBC&)D&/,D8D E<F+ F, GVHJK&KMMN&)O&/,O8O PQ&*RR# RS SL T(U+ U, VVXJZ&3Z [dD8NOTES$$HANDLE_MODIFIED_BUFFERS EXIT_BUFFEREXIT_BUFFER_NAME`EX 'P6  /NOTES$$CLOSE_QUEUE_JOBS1 SUCCESS_FLAGD MP !  L  ('h'' L&"  Jat  5 )  T Ja&** FILESPECOUTPUTHEADERAPPENDB=ޢq$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"U"aUFFERj NOTES_EXTRACT EXTRACT_FILE RESULT_SPEC NOTE_ITEMS NOTE_COUNT HEADER_FLAGP1_PARAMV_APPENDSTATUS0 AP 4Z ' 222. P $Q  P `2'P24+58  Du   vwl_(P  8u   P 0uNOTES$$EXTRACT_NOTE_RANGE NOTE_ITEMS HEADER_FLAG FILE_SPEC TEMP_FLAG APPEND_FLAG RESULT_SPEC NOTE_COUNTTEMPORARY_PRINT_FLAGS1T1 FILE_TYPE SINGLE_NOTEOUTPUT_FILE_OPENEXTRACT_HEADERS PREV_TOPIC V_TEXT_TYPE HAVE_LINERSLTSPCPh='  '7O 7 7Q7Q7Q7     ZNOTES$$EXTRACT_OPEN_FILE FILE_SPEC TEMP_FLAG APPEND_FLAG FILE_TYPE RESULT_SPECS1H;! !p"o"##$& &p'o'(( *4+X+8+ ,-^20P35 57; ;N<<<  >>>-<  >- notes$$write_extract_record7NOTES$$EXTRACT_NOTE_HEADERNOTE_NBR PREV_TOPICP4:YOY8Y Z[\]^ < _``abc'd7e7'f'g'hxikPK k@l l,lmmn_ oq qHr'sHa sPst'vPLwP zt{} }TP 824_  NNOTES$$EXTRACT_NOTE_TEXT FILE_TYPE TEXT_TYPE FIRST_LINES1T1 INPUT_FILEFAB_PTR HAVE_LINESAVE_OUTPUT_FILESAVE_OUTPUT_CTX V_TEXT_TYPEtP7 PJ     2  2  ;NOTES$$INFILE_OPEN OPEN_INFOINPUT_FILESPECCTXS1<63p@l  "("u##R#l$$R$O& &0'3'(@d )+3++S++,,-'/ /07 127475P856:7_ 809d;= <t='? ?@7 AB7D7EP8EGGH_ IKKN'P PQ7 RS7U7VP8VX2X4XY2Y4Y+ZZA[ []gH^3^_w`Uwa= b(cedfffh hhh hhhk@,,CNOTES$$ADD_MAIL_TOLIST TO_CC_FLAGTOLISTS1S2S3T1V_POS42z{'|'} \  0{sA 0{  6 PP (lm  hH T  6(V 0uRj  1R],F   \H l'T  6( 0uRj1R]R,F   D (lm" " '77P> y  y8   mA T ^0H Mw AUTHORMEMBERS MODERATORSTOLISTTOLIST, !, !,,[kNOTES$$GET_MAIL_TOLISTTOLISTS1S2S3T1V_PROMPT_OFFSETV_PROMPT_STRINGV_TOLIST+(K'7hV   7P(  :" "&''7@(7')7*7+++ +-2-.2./2/0203 3l4'57616Q67778P:P)' :;_ < =P?@  AB DDpE-@EG GN* MODERATORS@P NOTES$$GET_MEMBER_MAILING_LISTTOLISTS1S2V_MEMBER V_MODERATORSV_CTX( L8A D& '   8  H  0Q      SUBJECT NOSUBJECT NOSUBJECTCNOTES$$GET_MAIL_SUBJECTDEFAULT_SUBJECTT1V_PROMPT_OFFSET4& _ =   *NOTES$$WRITE_MAIL_RECORDA_RECORDxD&a abPC' cde2e4ef2f4fg2g4gh2hi2ikPD'stAu u0v vv' w y yz $  (x  ` d $  ,   (  A T '   D$ $    A3P;''777P7   TRANSPORT NOTRANSPORT NOTRANSPORT CC_PROMPT NOCC_PROMPTSELFNOSELF PERSONAL_NAMENOPERSONAL_NAMENOPERSONAL_NAMEJNNOTES$$MAIL_BEGINCMD_FLAG FILE_TO_SENDS1 V_PEN_NAME V_TRANSPORTx|!    R  (  ( A ( ?     (   x  !   Rl  Rn   d  ! 0123456789 7>S5$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"r NOTES$$INVALID_PERSONAL_NAMEPEN_NAMES1T1T2$$^(g    ENOTES$$MAIL_EXTERNAL_EDITOR EDIT_BUFFERINP_FILEOUT_FILES1,0   A9A0A T  ( @  h^~'z'@   F  | _9^  p o   }p!o!y!!}"0Q# $&'_'=)+_+=-^/h02+4g54 5 6':; <x@A_^BxvFGGHIH IIJJ'KJ'"L^Os PPU_ABV WYZ_[aLASTMEMBERS MODERATORSAUTHORAUTHORLASTEDITCONFIRMHEADER<<<  >>>-<  >-notes$$write_mail_recordnotes$$finish_forward NOTES finish& NOTES_FORWARDS1T1 LAST_FLAGz^'{^{=|_|_\} }H~^~^\  P __^!wNOTES$$FINISH_FORWARDS1T$HELPKEYS NOTES_HELPS1 ,3F4  g Q0 P =u=Vu=u 6'U=J'"WJ u' OA XQQA D-2 U 6'&m-2.7SHG7 Q    Q8 O hQ QQA    tQJ <Q5Q5A     -TC-TBAQQA <-2 UU&#c u J!"H7  " "|#-#2.#$7%-T%C%-T%BA%% '( *d,-./0 1t46'67 =Q>A?O?A@ @$A6'B C E EFJLXOO O0PH7 P Q(RH8 RT-TTCT-TTBATT(UVV WY=\keypad Buffer HELP next_screenprevious_screenkeypadNOTESreturnreturncommand?commands next_screenprevious_screen?commands next_screenprevious_screen next_screenprevious_screen? NOTES$$HELP FIRST_TOPICS1 THIS_TOPICLOWERCASE_TOPIC LAST_KEY_NAME THIS_POSITIONHELPBUFSHOWING_COMMANDSTHIS_KEY_MAP_LISTRET SCREEN_LENGTHd(_u]` ` a3 'aueg@f& g gxhiBj&djJ!"kulunF5 knnoJ'pJ'+qJ'"rUsUu6' vwuy Qzm {|bQ~YQ~RA~Q~EA~~A~Q~2A~ T     T   ,'yug uHelpkeyskeypadfinddocommandsshow keyEVE UNDEFINED_KEYEVE NOTES$HELP4\NOTES$$HELP_TEXTTOPIC PROMPTINGHELPBUFS14   NOTES_MAIL R NOTES_MARK    n M P r 4P l  # A <l   ' A <l   '  g,8 L  N'   '777'7P'P3' 427_ 2 l77'77 P 42 \ $   2 L77P 42 | D  # MODIFY_P2NAMEFILENOFILENOFILEOBJECTNOOBJECTNOOBJECTCLASSES*YNOTES_MODIFY_ENTRYS1S2S3S4T1V_ENTRYV_CLASSV_NAMEV_FILEV_FLAGSV_OBJECT<P* **+M ++0 0l003 34L68$K:';Q;7<7=7>P0?BC H MODIFY_P2NAME.#NOTES_MODIFY_KEYWORDS1S2S3V_FLAGS o oopMP ppr'tP* tuS v9,x x<y ylyyjzz |\} }l} } 'P^ p9, < lj x l  8 m'   l  'D-A <l   ' 0l o o T  l o  l  I  l o@  l    l o  l   L(K'Q 77 7 777P*O " 8 X 8  "T  MODIFY_P2NODES :,ACCESS,NAMEMAILNOMAILNOMAIL NOPRIVILEGESMODERATECREATE_KEYWORDSWR?B4$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T&"ITE_REGARDLESSc`NOTES_MODIFY_MEMBERS1S2S3S4T1T2V_NODESV_ACCESS V_MAIL_ADDRV_FLAGSV_MBR V_NEW_MBR  hj   <C  +TOPICNOTEUNSEEN NOTES_NEXTT1M A ( ''77PI%  MODIFY_P2FILENOFILENOFILE/NOTES_SET_OBJECTS1S3V_FILEV_OBJECT hM   @qMn  0'' ' !" n ""l$A$%'&'&&'2'(2() )Q)A* * +1  ,-. / m03P45]68:o;<= > A AXB C pD DFG H6M M6N N6O O5OWAP P4Q+R&R  Sd6S S>TV TDU VXY Z6_@`'aqbve5e e eiFILESPECNOTE_ID AUTOMATIC DIRECTORYUNSEENNOTEBOOK**READ DIRECTORY NEXT UNSEENQ NOTES_OPENS1S2S3S4T1T2V_ENTRYV_FILEV_CLASS V_AUTOMATICV_NOTEID xzz| ||}}}  'h''8A (r P  '7p77P  <OX8 Pt D    '7P 8P'rQUEUE SYS$PRINTFORMHEADERWAITNOTIFYCOPIESvi NOTES_PRINTS1S2T1 NOTE_ITEMS QUEUE_NAME FORM_NAMEN_COPIES MESSAGE_COUNT WAIT_FLAG HEADER_FLAG RESULT_SPEChM   n K'7C o7Ph'77'P 2   P222o <p mm 8 ' 7!h"P# $% K &' (,,READ_P1MARKERENTRYOPEN/NOAUTOMATIC/CLASS=* * NOTES_READS1S2V_ENTRYV_NOTEID< 446 6684 9:=? ?<A AB CE F G GG'J'KM' KKLLLO'P7Q7R7S7TPUtOW WL[ [$\  ]^ a K btdde f,ghX0ij'k_ lo SEARCH_STRINGNOTES*.*, NOTES_SEARCHS1S2S3pso NOTES_SELECT\vvx5x  yzE|}T5}& ~DO5 >( |   0p8 FE ADD ENTRY s NOTES$$SELECTS1 AA T  ( @  yfhS^C H=h^ d+h> (^h'~z'0'| ^=h8^+g5  ' x^x  s $^A B ^ MEMBERS MODERATORSAUTHORAUTHORLASTEDITCONFIRMFILESPEC'notes$$finish_send(notes$x_mail_buffer) NOTES finish0 NOTES_SENDS1S2T1 LAST_FLAG SEND_FILE8l* NOTES$$FINISH_SEND SEND_BUFFERS1 n M   OA (p#CLASSDIRECTORY/NOTEBOOK/CLASS= NOTES_SET_CLASSV_CLASS&A && &(K*'+7,P--1*#NOTES$$CLASS_EXISTS CLASS_NAMES1(D; ;;E G$lHHI LMuAN NHlOOQN QQ'R U\X XYL[]'^Q^7_7`7a^aac{ Oe ef{ gTh=i5i' j(k'rTITLENOTICENONOTICENONOTICESHOW CONFERENCEO1NOTES_SET_CONFERENCES1T1V_TITLEV_NOTICEV_TITLE1 V_NOTICE1V_FLAGS  $    'Q7^O # MODERATOR*NOTES_SET_MODERATORS1T1V_FLAGS       0l@    A `  l  l 'I3A `  l    ' h     l o     l   F   h     l o     l      L  O'   " '# 7$ Q$ 7% 7& 7' 7( 7* P,+ . 0  O3  3 L4 4 5 5 6 6 O:  : p; h; @ NEW_NOTE_ID CONFERENCE NOCONFERENCE NOCONFERENCETITLENOTITLENOTITLEHIDDENWRITE SHOW NO@=2$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1TJk"TE pNOTES_SET_NOTES1S3T1T2V_FLAGSV_NOTEIDV_CONFV_TITLEV_NEWIDV_CONF1V_TITLE1V_NEWID1 V_NO_RANGE X X ] $^ p ^ ^ _ `  c 'd Q d 7h V i lj j k !l !m  n o p q  r s F s (t t u  v Pv F v (w w (x y  {  L+ Q !$8 + 8 ( !    !   ,  !   Q 7 7! T  <    l    7   A <l     ' 7  vA `l   V  '    $ 7   A l o @  W V  <   W  V QW 7 QV 7  L  ' Q  7j   P        O    TEMPORARYEDITOREDITORTPUCLASSPRINTNOPRINTNOPRINT PERSONAL_NAMENOPERSONAL_NAMENOPERSONAL_NAME NOAUTOMATIC AUTOMATIC NOAUTOMATIC DIRECTORY SHOW PROFILEt@ NOTES_SET_PROFILES1S2S3T1T2T3V_ABORT V_EDSPAWN V_OLD_EDITORV_INTERNAL_EDITORV_FLAGSV_CLASSV_TEMP\! !!!$!P? !BEFORE!NOTES_SET_SEENS1pa!ab!Fy b!b!c!d!Hx d!d! i!)^!NOTES$$SHOW_NOTEBOOK_TITLEV_POSDtj!k!'n!%i!NOTES$$SHOW_CONFERENCE_TITLE""g"""-T"C>" "-T"BA" "+"5"U"8""-T"C"-T"BA"8" "" "8" " "" "" """"&\"""" &" '" ("a "X"T ""D"" &" '" ("a"""q""="q"&|"=d"" 8""J'q"J'q" "$"=""pq"Uq"Uv""EXITSELECT DIRECTORY"NOTES$$SHOW_CTRL_ZS1 #c# #T#&#(#a##gd##3##&v # #x !#"#"#&#'#'# (#)#)#+# +# ,#'-#T.#/#0# &1# (2# '3# 4#  7#notes$$show_ctrl_z NOTES exit-#NOTES$$SAVE_PRESHOW SHIFT_FLAGS1T1`(<#T=# =#># ?#P@# @#4A#A#A# B#C#'F#gG#rH#J'rJ# J#$K#J'r"M#= N#r O#TP#= Q#aR# R#R#6S#6'W#27#NOTES$$SHOW_TITLE_LINE TITLE_STRINGS1T1l# n ###nD'####o  #*notes$$show_notebook_title#NOTES_SHOW_CLASSES# #### #o #8#P# o## #8#P# ##p #8#P# p## #8#P# ##P#P#,#H # #$#H ##P#,#H # #$#H ##P#,#H # #X#,#H # #$#H ###o #notes$$show_conference_title#NOTES_SHOW_CONFERENCEL$$ n $$ $o5 $ $l $ $$q$ $l$$$o''$t $,l$_$$' $<$ $$X$$ $"$'"$"$$$2$$%$2%$&$2&$'$2'$($2($)$2)$ *$2*$ +$2+$ ,$2,$4,$ -$2-$4-$ .$2.$4.$/$a0$= 0$1$1$2$1t2$2$3$4$24$4$85$; 5$6$6$0 7$27$7$88$> 8$0 9$? 9$:$;$ <$2<$<$8=$1M=$t=$x=$=$R=$>$>$?$2?$?$8@$0 A$'B$D$P3' D$\E$2E$lF$F$jG$oG$G$H$_ I$J$1xJ$J$RJ$L$ L$,M$A M$ N$$O$B O$Q$1tQ$Q$R$1oR$R$ R$ R$1oR$R$S$T$U$2U$U$8V$G V$0 X$ X$<Y$pZ$<oZ$4Z$Z$ `$ `$0a$b$ b$ e$ e$0f$g$H g$ i$nj$ k$l$' m$(n$n$ n$p$q$o't$ ENTRY_NAME*, -<  >-*#NOTES_SHOW_ENTRYS1S2S4T1V_ENTRYV_CLASSV_FILEV_TITLEV_NOTICE V_MODERATORV_OBJECT V_LASTREV V_TOPIC_NOTES V_NOTE_TOTALV_UNSEEN_ESTIMATEV_POST_WIDTH$u$v$ my$t$NOTES_SHOW_ERROR$`~$ ~$~$$$$$Q$n$$4Q$$A$ $$T$$ $$ $$o$$FULL KEYWORD_NAME*notes$$show_conference_title!y$NOTES_SHOW_KEYWORDS1T1$ n $$$$'$ $ ,$5$ $8$$o$ $$$$n$4Q$$A$ $$S$$$$$$o$notes$$show_notebook_titleALLnotes$$show_conference_title MARKER_NAME*&$NOTES_SHOW_MARKERS1S2S3T1(T$ $$$O'$$$$$$$Z$$$'$7$7$7$7$7'$7'$7'$7'$7'$7'$7'$Q$7$P$$$$2$4$$$$4$2$4$ $2$4$ $2$4$$2$$ $$P$ $@$$G $$P$ $ $ $$H$$ $ $ $$H$$P$A$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T" $0$$$  $\$ $4$n''%(%% %%%%%o' %KEYWORDS$NOTES_SHOW_NOTES1S2T1T2T_WIDTHV_KEYWV_NOKEYW V_NOTE_TYPEV_NOTEID V_NOTE_AUTHOR V_NOTE_TITLEV_NOTE_BLINK_TITLEV_NOTE_WRITELOCK V_NOTE_HIDDENV_NOTE_CAN_REPLY V_NOTE_CONFl% n %%%'%P %% %!% "%H k"%"% #%F #% $%2$%4$%%%2%%&%2&%'%2'%(%2(%)%2)%4)% *%2*%4*% .%P/%H /%0%  1%2%RP3% 3%44%  5%Rc5%7% 7%7%8% :% H<%$=%F =%  >%?%F ?% E%2E%4E%F%2F%XG%XG%AH% H%I%  J%K%  L%RPM% M%4N%  O%RcO%Q% Q%Q%R% T% HV%$W%F W%  X%Y%F Y% `%a%H a%b% b%b% c% g%2g%Xi% i%Hj%k%  m% m%n%  o%p% v%w%H w%y% y%$z%F z%  {%|% %2%X% %T%%  % %$%F %  %% %%H %% %$%F %  %$j%m%% %2%X% %h%%  % %$%F %  %$j%m%% %2%4%%2%4%%%H %% %% % % % %% %% %F% X% %0%%  %F% %% "%%%%o'%\ %NOTES_SHOW_PROFILES1S2S3S4S5S6S7S8S9S10S11T1 V_PERM_TEXTV_DEFAULT_TEXT ,%%%NOTES_SHOW_MEMBER|% %%%%>% %<%%% % %% %'%n(%4Q%%A% %%:%%F%"%%%o"(% MEMBER_NAME MODERATOR**notes$$show_conference_title/%NOTES$$SHOW_MEMBERS MODERATORS1S2T1 <%%%NOTES_SHOW_MODERATOR%M %%%'%7%PH% %t%%"$%% OBJECT_NAME !AS = "!AS")%NOTES_SHOW_OBJECTS1S3V_OBJECT%Q&%NOTES_SHOW_VERSION0̬ &6 &K&& &&gH&&#H&&&J$&O&gd&P'&H} &P& &&J$ & !&O'&COMMAND & NOTES_SPAWNS1V_UPDATEhx*&D +&0-&g.& /&0&5&COMMAND'& NOTES_TPUS1 :& n :&:&<&=&>& ?&h@&A&wC& C&DD&E&pF&8mF&mF&F&K& NOTEFILE_SPECCLASSDIRECTORY/NOTEBOOK/CLASS=%5& NOTES_UPDATEV_ENTRYV_CLASS& &&&+&#5&+&,8& &&=&+&#5&+&,8& &&^&&&&(&& NOTES_WRITE&z&#&EVE$PACKAGE_PRE_INIT_NOTES&{&&EVE$PACKAGE_INIT_NOTES8TH ,4P\dNOTES$MOUSE_KEYSNOTES point_mouse`S unknown0S unknownS unknownЦS unknown80T HlF6H <lt   (L\d$0$8TX*`|.4 P`h D\d   D T \    0 @ H d |     , H P l     0 D L p     ( , 4 P T \   *HX0`|24(80`p:xNOTES$KEYS+NOTES insert_overstrike (Insert/Overstrike) ,NOTES command_recall  move_left end_of_line x move_right< start_of_lineNOTES erase_previous_wordSreturnhS@NOTES erase_start_of_line  refresh(ğEXIT NOTES exit, HELP keypad NOTES help8 delete NOTES command_recall ĞNOTES command_recall NOTES command_recall <NOTES command_recall  move_right  move_right  move_left D move_left NOTES enterԜS shift key, HELP keypad NOTES helpXNOTES toggle_numeric, NEXT UNSEENNOTES next_unseen̛!NOTES last_note_readNOTES previous_screenPNOTES next_screen NOTES back_reply ԚNOTES next_topic NOTES next_reply TNOTES back_topicNOTES toggle_display(ؙSELECT NOTES selectSlS(DSELECT NOTES selectNOTES previous_screenNOTES next_screen(EXIT NOTES exit@ start_of_lineBCx$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Ts"NOTES erase_previous_wordė+NOTES insert_overstrike (Insert/Overstrike),p HELP keypad NOTES help(doT8T01FؾH 0H  <HPl   :(DLNOTES$HELP_KEYS SreturnܕSreturn previous_screent  next_screen@ previous_screen  next_screenԔSdo8 T0HDlx ,4\hp$LX`NOTES$NUMERIC_KEYS$d . typing$( 0 typing$ 1 typing$ 2 typing$t 3 typing$8 4 typing$ 5 typing$ 6 typing$ 7 typing$H 8 typing$  9 typingd8TTNOTES$EDIT_KEYSd8T TNOTES$SUBKEYSd8TTNOTES$USER_KEYS`8T TTPU$KEY_MAP8T\8&88&t( 0L T"\x t$| D&Lh p(x * , .$ ,04P X2`| @DN $@LTpx  0@ Hdt8|:EVE$KEY_LANGUAGE=ENGLISHЌCTRL/HTABtCTRL/JDRETURN1.1 SINGLE_QUOTE QUOTE DOUBLE_QUOTE SPACE SPACE_KEY FIND E1 INSERT_HERE E2 REMOVE E3 SELECT E4 PREV_SCREEN PREVIOUS_SCREEN E5 NEXT_SCREEN E6 HELP HELP DO DO CTRL/H BS BS_KEY TAB TAB_KEY CTRL/J LF LF_KEY RETURN RET_KEY DELETE DEL_KEY Ȋ GOLD SHIFT_KEY FUNCTION FUNCTION KEYPAD KEYPAD SHIFT SHIFTED SHIFT_MODIFIED CTRL CONTROL CTRL_MODIFIED HELP HELP_MODIFIED ALT COMPOSE_CHARACTER ALT_MODIFIED GOLD̉FUNCTIONKEYPADlSHIFT<CTRLHELPALTSPACE DOUBLE_QUOTET SINGLE_QUOTE DELETEFINDć INSERT_HEREREMOVE`SELECT0 PREV_SCREEN NEXT_SCREENȆHELPDO 8T`&&&LX`8$,|pL X`$8@  dpx H`h 4 <    $ ,  EVE$MOTIF_FUNCTION_KEYSLt(R selectL(R ! select_allL(R resetLD(R KEYPAD shift_deleteTԂ(R KEYPAD prev_paragraphTX(R KEYPAD next_paragraphL܁(R  end_of_lineLt(R bottomT(R KEYPAD next_wordL(R  start_of_lineL0(R topT(R KEYPAD prev_wordL\(R restoreT~(R KEYPAD primary_copyT~(R KEYPAD primary_cutL~(R  store_textL}(R KEYPAD Del_EOLL4}(R  KEYPAD primary_selection_restoreT|(R KEYPAD page_leftTD|(R KEYPAD page_rightd8T TEVE$USER_KEYSD8TX`& dpxH`h 08`px0@H dpx,<EVE$VT100_KEYSLy(R   change_modeT\y(R * find\x(R keypad help (help keypad)Lpx(R   change_directionTx(R   doLw(R   erase_wordL0w(R   move_by_lineLv(R   previous_screenLXv(R   next_scCNG$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"reenLu(R   move_leftLu(R   move_downL u(R   move_rightLt(R   move_upLTt(R  selectLs(R %  removeLs(R &  insert_here 8TXФ&LT\(4<xXdl8DL$,EVE$NUMERIC_KEYSLq(R   returnT0q(R   doXp(R  , typingXXp(R  - typingXo(R  . typingXxo(R  0 typingXo(R  1 typingXn(R  2 typingX(n(R  3 typingXm(R  4 typingXHm(R  5 typingXl(R  6 typingXhl(R  7 typingXk(R  8 typingXk(R  9 typingx83TP&&8&d0< Dhpx0HP$*l,.@ L 4T     l x    4 @ H    ` p x   0 < D   dt|4DLlL`h ,4P\ d , 4  Xh*p.$L0T2 3(x48p9:hpEVE$STANDARD_KEYSLf(R   change_mode (Insert Overstrike)L8f(R   recallLe(R  end_of_lineLle(R  start_of_lineLe(R '  tabLd(R   erase_wordL8d(R *  insert_page_breakLc(R   returnLdc(R n  rememberLb(R   erase_start_of_lineLb(R -  quoteL(b(R  refreshLa(R  exitL`a(R   deleteL`(R   move_upL`(R   move_upL4`(R   move_upL_(R  topLp_(R   move_downL_(R   move_downL^(R   move_downL8^(R  bottomL](R   move_rightLl](R   move_rightL](R   move_rightL\(R  end_of_lineL4\(R   move_leftL[(R   move_leftLd[(R   move_leftLZ(R  start_of_lineTZ(R * findT$Z(R . wildcard_findLY(R &  insert_hereLHY(R  restoreLX(R %  removeLX(R  store_textLX(R  selectLW(R  resetLPW(R   previous_screenLV(R previous_windowLxV(R   next_screenLV(R  next_windowLU(R  exitLDU(R  # change_direction (Forward Reverse)LT(R   move_by_lineLXT(R   erase_wD,$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T8"ordLS(R % restore_wordLS(R   change_mode (Insert Overstrike)\S(R keypad help (help keypad)\R(R keys help (help keys)TR(R   dop8TTEVE$STANDARD_FUNCTION_KEYSX8 Th&DX`4HP$8@(0 |l D X `    0 8    l    \ p x  4 H P    (x  h|Xlt <PEVE$MOTIF_MOUSE_KEYSXHN(R -. Mouse_button_1XM(R -. Mouse_button_1XXM(R -. Mouse_button_1XL(R -. Mouse_button_1XhL(R -. Mouse_button_1XK(R -. Mouse_button_1XxK(R -. Mouse_button_1XK(R -5 Mouse_button_2XJ(R -5 Mouse_button_2XJ(R -5 Mouse_button_2XI(R -5 Mouse_button_2X I(R -5 Mouse_button_2LH(R 3 Mouse_button_2L  KEYPAD FndNxtT|2(R *FindL2(EF$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"R 2 KEYPAD delete_line (Del_L)L1(R ' restore_lineL01(R KEYPAD delete_character (Del_C)L0(R ( restore_charLH0(R 5 KEYPAD delete_word (Del_W)L/(R % restore_wordLd/(R SelectL/(R resetL.(R 8 KEYPAD EDT_LineL0.(R < KEYPAD Open_LineL-(R move_by_word (Word)LT-(R : KEYPAD ChngCaseL,(R 6  KEYPAD EOLL,(R KEYPAD Del_EOLL,(R 7 KEYPAD Character (Char)L+(R ; KEYPAD SpecInsL4+(R  forwardL*(R BottomLl*(R  reverseL*(R TopL)(R % removeLD)(R &  insert_hereL((R   move_by_pageTt((R  doL ((R ?  KEYPAD sectL'(R  fillLD'(R 3  KEYPAD appendL&(R 9 KEYPAD EDT_replaceTh&(R @ "keypad previous_screenT%(R @  keypad next_screenLt%(R 1  KEYPAD BACKSPACE (start_of_line)L$(R 0 KEYPAD delete_previous_word/8\T g&nhk&1Hm&X|E8 P IX O  , Y4 ] _ d a  c t e g \ p ix k DXm`o,@qHs(u0w}ht|`lt,4< $,|Ldl$08`hpHX`8DL$t<LT $tDT\$,|L`h4 D L  !!!h!!!!!!<"X"`""""#(#0#####$$X$l$t$$$$(%4%<%%%%% &(&x&&&& ''d'x'''''<(T(\((((),)4)))))**X*`*h****$+8+@++++,,,h,|,,,,,@-L- T--- -. .2(.x..3../EVE$WPS_KEYSL(R 0 KEYPAD delete_previous_wordLx(R e  KEYPAD delete_beginning_sentenceL(R jlearnL(R a KEYPAD WPS_replaceT((R  spawnL(R a KEYPAD WPS_replaceTL(R *findL(R f KEYPAD continue_search_keyLl(R g 6KEYPAD continue_search_select (continue search/select)T(R B  KEYPAD repeatTd(R B  KEYPAD repeatT(R B  KEYPAD repeatT|(R B  KEYPAD repeatT(R B  KEYPAD repeatT(R B  KEYPAD repeatT (R B  KEYPAD repeatT(R B  KEYPAD repeatT8(R B  KEYPAD repeatT(R B   KEYPAD repeat\P(R replace\(R replaceLh(R jlearnL(R g 6KEYPAD continue_search_select (continue search/select)Lp(R \ bottomL (R > center_lineL(R exitTD(R   include_file\(R keypadhelp (help keypad)LT(R quitF'7$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T"L(R * insert_page_breakL(R l KEYPAD page_markerL(R s  KEYPAD rulerL(R E spellLH(R ] topT (R 4  write_fileTx (R  doL (R d *KEYPAD insert_date_time (insert date/time)L (R   KEYPAD haltL (R d *KEYPAD insert_date_time (insert date/time)L (R  deleteL4 (R 4 KEYPAD delete_start_lineL (R Q move_upL\ (R Q move_upL (R Q move_upL (R P  move_downL, (R P  move_downL(R P  move_downL\(R S  move_rightL(R S  move_rightL(R S  move_rightL$(R  end_of_lineL(R R  move_leftLT(R R  move_leftL(R R  move_leftL(R  start_of_lineL(R q KEYPAD search_right_angle (<>)L(R r  KEYPAD swapL4(R k  move_by_pageL(R m paginateLh(R 5 KEYPAD delete_wordL(R  restoreL(R KEYPAD delete_characterL (R  restoreL(R c KEYPAD WPS_pasteLP(R c KEYPAD WPS_pasteL(R ` KEYPAD WPS_cutLx(R b KEYPAD WPS_copyL (R _ selectL(R resetLD(R T KEYPAD advanceL(R Z "KEYPAD adv_scroll (scroll_advance)LX(R V  KEYPAD backupL(R [ "KEYPAD back_scroll (scroll_backup)Ll(R h KEYPAD WPS_lineL(R h KEYPAD WPS_lineL(R Y KEYPAD upper_caseL$(R X KEYPAD lower_caseL(R  move_by_wordLL(R  move_by_wordL(R KEYPAD paragraphLx(R  fillL(R i KEYPAD sentenceL(R i KEYPAD sentenceL@(R  KEYPAD tab_positionT(R *findLh(R c KEYPAD WPS_pasteL(R ` KEYPAD WPS_cutL(R _ selectL,(R p previous_screenL(R o  next_screenLX(R 0 KEYPAD delete_previous_wordL(R e  KEYPAD delete_beginning_sentence83TP W&bh[& /]& `|,8@\h@pBF(H0TlJtLP 8R@d|T`b,@dHlfh j , @ lH l n p r , @ H l     ( D L h     ( @ H d |    < D ` x    8@\t|8LTp  (80`l9tEVE$RULER_KEYS KEYPAD ctrl_e_key KEYPAD ctrl_h_key KEYPAD tab_keyTreturn$return KEYPAD set_space x KEYPAD save_ruler xx KEYPAD save_ruler 4x KEYPAD save_ruler x KEYPAD save_ruler x KEYPAD save_ruler hx  KEYPAD save_ruler $x GAt$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1Tg" KEYPAD save_ruler x KEYPAD save_ruler  KEYPAD get_ruler \ KEYPAD get_ruler  KEYPAD get_ruler  KEYPAD get_ruler  KEYPAD get_ruler \ KEYPAD get_ruler  KEYPAD get_ruler  KEYPAD get_ruler  KEYPAD get_ruler \  KEYPAD get_ruler x KEYPAD save_ruler, ruler_keys help KEYPAD set_paragraphX KEYPAD set_left_margin KEYPAD set_paragraph KEYPAD set_right_margin x KEYPAD save_rulerX KEYPAD set_tab_stop KEYPAD set_word_wrap x KEYPAD save_ruler KEYPAD set_paragraph` KEYPAD set_left_margin  KEYPAD set_paragraph KEYPAD set_right_margin x KEYPAD save_ruler` KEYPAD set_tab_stop$ KEYPAD set_word_wrap  move_right  move_left KEYPAD advanceH  KEYPAD backup KEYPAD WPS_line KEYPAD WPS_word  previous_screenh  next_screen,4 ruler_keys help, ruler_keys help]8@TT&&^l 8@ Hdl t08T\d$@H Plx"$&( <L*Tp,.0 2$@P4Xt|68:<$,>4PX@`BDF  ( H0 L X J` | L N P !!R$!@!L!TT!p!|!V!!!X!!!Z!" "\"0"<"^D"`"l"`t"""b"""d"""f# #,#h4#P#\#jd###l###n###p#$$r $<$L$tT$p$$v$$$x$$$z$%0%|8%\%d%~l%%%%%%%%%% &&&L&T&\&x&&&&&&&''$'8'@'\'p'x'''''''(( (P(d(l(((((((())4)D)L)h)x))))))))***8*H*P*l*|********+ +(+D+\+d++++++++,,4,L,T,p,,,,,,,,,-(-0-L-`-h--------..$.4.<.X.h.p......../ /(/8/@/\/l/t///////0,040P0`0h0000000001 10181T1d1l1111111122,2H2P2l222222223 383@3\3t3|33333334(404L4d4l444 444 4455$545<5X5h5p555555566$6@6X6`6|66666667  7(787"@7\7p7$x777&777(7 8$8*,8H8`8,h888.88808892989P94X9t9969998999:9:(:<0:L:\:>d:::@:::B:::D:;0;F8;T;d;Hl;;;J;;;L;;;N<4<@<PH<|<<R<<<T<<=V =8=D=XL=x==Z===\===^=> >`(>D>T>b\>|>>d>>>f>>>h? ?4?j$U@UTU@\UxUUBUUUDUUUFVV4VH center_line? fill_rangeܶ@fill_paragraphA set_widthp set_width< set_width set_widthԵB set_widthC set_widthlD set_width8E show_buffersF delete_window8̴iSPLIT_WINDOW_DIALOG split_windowx split_windowD split_window split_windowܳG split_windowH split_windowtI split_window@{ one_window J two_windowsزKset_find_whitespaceLset_find_nowhitespace\Mbuffer_attributes buffer_attributesbuffer_attributesbuffer_attributeslbuffer_attributes0buffer_attributesbuffer_attributesbuffer_attributes|buffer_attributes@N word_wrap O modifiableدP read_only tab_stopsp tab_stops<buffer_attributesRbuffer_attributesĮSbuffer_attributesTglobal_attributesLglobal_attributesglobal_attributesԭU tabs_visible tab_modeslVfind_case_exact4W clipboardXglobal_pending_deletenglobal_attributes[global_attributesDglobal_attributesglobal_attributes̫global_attributesglobal_attributesT`set_cursor_freeaset_cursor_boundb tab_modesc tab_modes|d tab_modesH set_keypadI$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T0~"- set_interfaceܩe@fsave_extended_evetg extend_all@h extend_this i extend_eveبjlearn,new usernew_user0dlist_of_topicscommands(keypadkeypad(ܧkeyskeys(menusmenus(`aboutabout  reallydelbuf reallydelbuf reallydelbuf reallydelbufPn reallydelbufwritedelpromptwritedelpromptwritedelpromptpowritedelprompt8nwritedelpromptpquitФwritefilepromptwritefileprompt`writefileprompt(writefilepromptqwritefilepromptexitexit`exit4exitexitܢexitexitrexitXsexit,findfindԡfindnfindx extend_eveD extend_eve extend_eveܠt extend_eveu extend_evetv extend_eve@save_extended_evesave_extended_eveȟsave_extended_evewsave_extended_evePxsave_extended_eveysave_extended_eve؞@@@Tz@({@|@НmarkmarkxmarkL}mark, n}$markgo_togo_togo_toP~go_to, n}P$go_toܛ message_box message_boxt message_box@np message_boxno_select_popupКselectgo_topmarkD select_popupresetshow_buffers_active delete_bufferlwrite_then_delete0 write_buffer visit_bufferȘ extend_menul extend_menu8available_menusavailable_menusȗavailable_entriesavailable_entriesPavailable_entriesavailable_entriesؖavailable_entriesavailable_entries`available_entries$available_entries entries_menus entries_menusx entries_menus@available_entriesavailable_entriesȔ entries_menus entries_menusXn extend_menu ksave_attributesmsave_system_attributeskattributes_boxpattributes_box8attributes_boxattributes_boxȒattributes_box lattributes_box Plattributes_boxQbuffer_attributesԑavailable_menusavailable_menusd file_menu0 edit_menu format_menuȐ search_menu display_menu`customize_menu( help_menurestore_submenu change_caseset_whitespaceP set_wildcard extend_menusearch_attributesYset_box_select_menupZset_box_pad_menu8n help_mode(helphelp$ȍ@@4save_extended_evesave_extended_eve,8 extend_eve extend_eve8set_paragraph_indentset_paragraph_indent, set_width set_width0Lattributes_boxattributes_box, extend_menu extend_menu0 split_window split_window,h set_margins set_margins0  wildcard_find wildcard_find(Њfindfind(replacereplace(Texitexit0writefilepromptwritefileprompt0ȉ save_file_as save_file_as(|openopen$@newnew4global_attributesglobal_attributes4buffer_attributesbuffer_attributesX\ set_scroll_on ]set_J{$ NOTES026.A f *[NOTES.TEMPKIT]NOTES$SECTION.TPU$SECTION;1T >scroll_off^set_scroll_smooth_set_scroll_jump t$ widget base 8F widget countUpPA  NOTES$KEY_MAP_LISTNOTES$USER_KEYSNOTES$SUBKEYSNOTES$MOUSE_KEYSNOTES$KEYSEVE$STANDARD_KEYSUpPE TPU$KEY_MAP_LIST$d-EVE$USER_KEYSEVE$STANDARD_FUNCTION_KEYSEVE$NUMERIC_KEYSEVE$STANDARD_KEYSUpPA  EVE$KEYPAD_LISTEVE$VT100_KEYSEVE$NUMERIC_KEYSEVE$EDT_KEYSEVE$WPS_KEYSUpPAEVE$FUNCTION_LISTEVE$STANDARD_FUNCTION_KEYSEVE$MOTIF_FUNCTION_KEYSHUpPA $4EVE$COMMAND_MAP_LIST$-pEVE$USER_KEYSEVE$STANDARD_FUNCTION_KEYSEVE$NUMERIC_KEYSEVE$STANDARD_KEYSUpxPAEVE$MOUSE_LIST$-. EVE$MOTIF_MOUSE_KEYSUpxPE EVE$HELP_MAP_LIST$-R EVE$HELP_KEYSUpxPAEVE$RULER_LIST EVE$RULER_KEYSUpxPAEVE$$$WIDGET_ARRAY_LISTEVE$$$WIDGET_ARRAY_548 II NOTES$SECTIONT2.613-DEC-2004 17:1713-DEC-2004 17:17##DECTPU V3.1 1992-10-14 04:07 T .$$ABS$$.@ <Li4TPU$$K_SECTION_BASE !*[NOTES.TEMPKIT]NOTES$SERVER.EXE;1+,f./J 4- 0123 KPWO56z;ģ7aNlģ89GJHJ   h(*D0-2*ģ NOTES$SERVER NOTES V2.5A13-02$ $$J$( 8 NOTES$SHARE_0010(@ #~(^0G= C =" ]"tG [({/nZkG(]0@#/kTXp  @ NOTES$SHARE'*[NOTES.TEMPKIT]NOTES$SERVER_LOGIN.COM;1+,f./J 4V- 0123KPWO56s(7mRlģ89GJHJ?$ ! N O T E S $ S E R V E R _ L O G I N . C O M$ !O$ ! Copyright Digital Equipment Corporation. 1985, 1993. All Rights Reserved.$ !$ !$ S1 = F$MODE())$ IF S1 .NES. "NETWORK" THEN LOGOUT/BRIEF$ S1 = F$TRNLNM("SYS$NET")$ SHOW SYMBOL S1$ SHOW LOGICAL SYS$NODE=$ IF S1 .EQS. "" THEN LOGOUT/BRIEF !Must not be a Network job$ S0 = F$EXTRACT(0,3,S1)$ IF S0 .EQS. "_BG"$ THEN$ ! TCP/IP connect$ S0 = F$LOCATE(":",S1)*$ S00 = F$LENGTH(S1)-1 %$ IF S0 .NE. S00 THEN LOGOUT/BRIEF)$ DEFINE/EXEC NOTES$SERVER_TRANSPORT 1$ ELSE$ ! DECnet connect?P$ S1 = F$EXTRACT(F$LOCATE("/",S1)+20,19,S1) !Skip local link id, connect-data@$ IF S1 .EQS. "" THEN LOGOUT/BRIEF !Must not be a Network job?$ T1 = F$CVUI(0,8,S1) !Get the destination descriptor type%$ IF (T1 .NE. 0) THEN LOGOUT/BRIEF>$ T2 = F$CVUI(8,8,S1) !If t1=0 then this is object numberV$ IF (T2 .NE. 33) .AND. (T2 .NE. F$TRNLNM("NOTES$SERVER_OBJECT")) THEN LOGOUT/BRIEF)$ DEFINE/EXEC NOTES$SERVER_TRANSPORT 0$ ENDIFN$ IF F$PARSE("NOTES$LIBRARY",,, "NODE", "SYNTAX_ONLY") .EQS. "" THEN GOTO OKAY$ T2 = "_Z$Z_:[_Z$Z_]"?$ S1 = F$PARSE("NOTES$LIBRARY", T2,, "DEVICE", "SYNTAX_ONLY") -< + F$PARSE("NOTES$LIBRARY", T2,, "DIRECTORY", "SYNTAX_ONLY")O$ IF S1 .NES. T2 THEN DEFINE NOTES$LIBRARY 'S1' !In case it has been redirected$ OKAY:>$ IF F$TRNLNM("NOTES$SERVER_MAX_SERVERS") .EQS. "" THEN EXIT 1 $ S1 = ""$P_LOOP:$ PID = F$PID(S1)#$ IF PID .EQS. "" THEN GOTO NO_MOREA$ IF F$GETJPI(PID,"USERNAME") .EQS. "NOTES$SERVER" THEN T1 = T1+1 $ GOTO P_LOOP $NO_MORE:C$ IF T1 .GT. F$TRNLNM("NOTES$SERVER_MAX_SERVERS") THEN LOGOUT/BRIEF$ EXIT 1$ !J$ ! Login command procedure for NOTES$SERVER account. Ensures that processJ$ ! is network, and that it was started to access the NOTES object (33) or*$ ! the NOTES TCP/IP (UCX) service (3333).$ ! *[NOTES.TEMPKIT]NOTES$SHARE.EXE;1+,f./J 4|- 0123 KPWO}56h ģ7/Vlģ89GJHJKF$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1"(h (P0@Iv Cģ NOTES$SHARE NOTES V2.5A13-02@$ $ I$ J$vZ$\ $ C$R E$ $ Jn4" LIBOTS_0014 LIBRTL_0018:  DECC$SHR_001< kSYS$BASE_IMAGE_001@&kSYS$PUBLIC_VECTORS_00100P @0 0 0(t@ 8 4 @k0 t@ 0(@ T0PTp  p 0XX p @ 0(\ @ 0P$p  0 @ 00`  08P 00 0H ` 0"0 0P#p `0&0 008(P  04*  00 @ 0H4` 4H UT@088P  \ 4x!0<:  h LMKX 0C  [0UHL0@LP 0P 0XTQp aL0$T0 (0`T 0dV 0xV0HV` 04X$ PJK 0p_ 0dd4 P 0e 0e 0e0e  `0p@f PJK0`lj LMK0Xl$ R L4HddwpN0po$ T@lrxM0hrPD| h`I(aL$0hy dOP0}$ hS`0SPOd0O0d  0H@< [0P0hX DP0$ %*H O0PDp$ 0StR0d$  Q0HĘp$ 0p PJK0` LMK0XĢ$ R L4HddwpN0ԥ$ T@0lrxM0 0 0(@ ԈPg0Pp aL`hd0OPhy 0*0$$ hS%S`O0XDp OdO0h, 0x 0Pp 0($   0 0$ rtR0S0$ P Q0Hp$ 0Pp$  0x0 00,@ ,#30(  +3$YhLDpm0`T   0 0 ( p `p0 0  0((8< [0P p048< 0pT d00 0@|` 8  0 0  0 0 0 d0 0Xp  0h 0Xtp  0(l@ X0XTp 0P` 0h<| rh`n08LP 08 P 0P 8| 0@8 P 0`  0H4` 0h 00( 8< |P  0 0 D 4 0 0@$< P`0@  0 8< 04  @0  j$0hP 0( @ (0("P T@h!0@H#` ` 0(% 08%P 0&0 0h,'  80(*@ U0@,` 00Le$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1"  d`p 8   0x=$< PJK aL0L  %G0B  Ę D 0(G  h0h00O`  --0|[$< >@A0hlb$< H@0`e  D6 <x508i8< H[0P0Hk<| p  00nP 0Dp,< X0u0 08LwP P 0 4x@ p 0x 0Dy  `0Pyp @  "0 d|@ 0h~ '00@ #00 0h0 040 @#0PԆp +30(P  0؉0 0  0|@  P'0@؍` $00 0'x%0Hđ` 00 0 lP  00  4 `%:0t0 0  0 ء@ && 0ġ00 0 h@ 0 00lP 00 0  !$ @ 0(0 `iP00P t h80p (PJK0` LMK0X$ R L4HddwpN0p$ T@lrxM0XXp PdOOD@Pԉ P0hiS7hy 0$ 0hSSaLj`0p 0$ %* O Q0, 0 0X$ tRr0S0$ P0Pp$ 0x @0`d LMK0 D0 PJK0PL8| h`nl0TXp Xk1LI0@| ~OhSaLP0X8| 1P0(, P0(d p( 0|  08 P wpNm04 `4x! ` t0@` 8 0  dOS4d0O 0,   O0p$< j0,#(  R LiLHDpm43lrxM 4R0+$ T@o ԥ0dd0*E R8o9B00x0P lM0P1p$ 03$ `h0hO0 <$ J(`Q0G`K00D@ 0D$ 5` oP 0TH@8  T@\P(4H@V dU^؅h 0H 0S 0S 0 T0 PJK00TP D@P0LW (@:0x|b LMK0Xk$ R LH4 9ddwpN0p8o$ T@lrxM0Xq L.l00Hs` OjdOP| 00Pwp 0|{$ aLԉ P0hi0`d 0\pfd0O0H` >P0X,p 0`$ 0Xp hy hS084P 8P=j0ܗ$  O< ~O0(@ 0X  08P 00HP :pap0Xp r@fdzNX`jd0h$ xPtf0p 0pԽ 0Pp ؛j0H`   IXkM$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1"#`P8A0h$ 0x$ 00 0Pp `0@`$ 0@`$ 0Pp 0p0 PJK 0` LMK0X$ R L4Hdd0p$ T@lrxM0 @ PwpN0@`$ 0xt$ aLdO0Od0O`P0p  PJK 0` LMK0`$ R LH4 EddwpN0p$ T@lrxM1S0aL0x(   TXhSjL0 $ %*O,2dO O0p%$ tR0S0) (   @ QPXk0006P @[0 0T8 088P @ 0"9 0"< 0 < 0 9 0"D: 0"t< 0";  0"H?0 0"D=0 0"|>0 0("?`$< 0">0 0" >0 0("t@`$< 00"A`$< J0"=0 00"D`$< K0("FP  0p" G  """& 0PJ`0`LMp  0xdO 0hR  0Up0Y 0a 0xi `0`l 0Ho`  40Plr` 0`s RT@@p0@ 0 0# |0h* 0- @0X1 0X2 @0P45p A0P6p 090 0D:0 0:0 0:0 0; 0; 0(;@ a0D<0 0N8$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1,f"4<0 0 <0 0XX=p 0> 0pA 0hC 0 F@ @0F 3500JP 0HK` 0XLp 0H8N` ܗP=0@TO` k(90@P` B08QP PC0A@@BBPCtCDExF  G%G)0HP(eee 4ܙ  (!DNS$RTLNOTES$ConferenceNOTES$Filenamedns$remve_first_set_valuezD H @ (,P(j0kPkk::_NET:BG:NOTES$SERVER_OBJECTNOTES$SERVER_PORTSYS$NODE UCX$INET_HOST)Signal an informational canceling message 0 00:00:30.0 LNM$FILE_DEVNOTES$USER_TIMEOUT"!UL="::::@P0@@p @Ѐ@pؠ'j1/9'67<0348NOTES$FilenameLNM$SYSTEM_TABLE LNM$FILE_DEVSYS$CLUSTER_NODESYS$NODE UCX$INET_HOST 14-DEC-1993,::BG:NOTES NOTES-USER NOTES-CLIENTNOTES-CLIENT-USERNOTES-SERVER-LANLINK NOTES-LOCALNOTES-LOCAL-USER NOTES$SERVERDECNOTES$SERVER_FLAGSNOTES$USER_FLAGS |!DB-!MAAU-!Y4:!H04:!M0:!S0.!C2|!UW.!UW!UL0000 0 01:00:00 0 00:01:00NOTES$!XW_!UL!AC LNM$FILE_DEVNOTES$SERVER_MAX_LINKSNOTES$SERVER_TIMEOUT NOTES$SERVER!%T!3UL !XL !22AS !XL !ACNOTES$SERVER_LOGSYS$MANAGER:.DAT.!22AS!%T !%T!6UL!11UL!6UL!11UL!6UL!6UL!6UL !ASNOTES$SERVER_TRANSPORTSYS$NET!UB.!UB.!UB.!UB!4UL!AC NOTESinitialization::send-cancel-ack*doing notefile-enddeallocate_lnk -- free_vm !XLdisconnect_link -- remque !XLdisconnect-linkset disconnectsrv-link-write errorTCP/IP srv-link-write errorlink-read-ast errorTCP/IP link-read-ast errorlink-read-ast CTRL/Cconnect accept failureconnect accept success connect_accept_ast -- insque !XL:: netacp_connect_msg -- get_vm !XLconnect accept 0H00inet_connect_msg -- get_vm !XL::::TCP/IP connect accept3!%T ** server process ** ctx (!XL) .NE. p_cxv (!XL)`@ @@@`@ p@}~@|P@ lt|,::00::???NOTES$Filename:: SYS$OUTPUT SYS$INPUT DECWINDOWS INTERFACEINTERFACE_CHARACTER_CELL DECW$DISPLAY NOTES$DWSHARE NOTES$DWNOTES@|,@@`@ @ |X (08@`::*::*.*?@?pxOOH @ OGpx,::::::`KK LLLMPMMMN@N NNOxNMQQxRRRxS TTTTUT V@VU`VVVW W`WXQWW XWPXX0deeePUS0eff`ffhihHiUU ggghi0jj`jjXgSQ(R@W0hXXePTXYk`lllhmm Y@l@YPLK`YmmJjkj@kOPP!XW!XL-- 00:00:00.00 0 00:00:03.00NOTES$$SAVE_ERROR_TEXT('NOTES$$PROMPT('!NOTES$$SET_ERROR_NAME('!AS',!UL);SPAWN('');NOTES$X_CTRLC := 1;'!AC!XW!AC!AS!AC!AS!AC!1UL!AC!8XL!AC!1UL'!AC!XL!AC!AS!AC!AS!AC!1UL!AC!8XL!AC!1ULM!AC!AS!AC!AD!AC!AD!AC!8ZL!AC!AS!AC!AS!AC!1UL!AC!1UL!AC!1UL!AC!1UL!AC!AS!AC!AS !AC!XL!ASU!AC!1UL!AC!AS!AC!5ZL!AC!AD!AC!AS!AC!AS!AC!AS!AC!11ZL!AC!AS!AC!1UL!AC!1UL!AC!1UL!AC!AS2!AC!AS!AC!AD!AC!AD!AC!8ZL!AC!8ZL!AC!AS!AC!AS!AC!AS !AC!AC!AS!AS !AC!AS!AC!XL-!AC!1UL!AC!AS!AC!AS!AC!AS!AC!AS!AC!1UL!AC!1UL$!AC!AS!AC!AS!AC!AS!AC!AS!AC!AS!AC!AS !AC!1UL!AC!AS !AC!AS!AC!2ZW!AC!3ZL SYS$PRINTSHR$EDITNOTES_02.0-6;""NOTES::::%!AC!AS!AC!AD!AC!AD!AC!8ZL!AC!AS!AC!AS(!AC!1UL!AC!1UL!AC!1UL!AC!1UL!AC!AS!AC!AS,!AC!1UL!AC!AS!AC!5ZL!AC!AD!AC!AS!AC!AS!AC!AS)!AC!11ZL!AC!AS!AC!1UL!AC!1UL!AC!1UL!AC!AS2::::NOTES$CALLUSERTPU$CALLUSER NOTES$SECTION SYS$INPUTUPDATE tpu$controltpu$execute_commandtpu$_executefailtpu$execute_inifile tpu$_quittingtpu$_nocalluser tpu$fileio tpu$message tpu$handlertpu$initializetpu$k_callusertpu$k_controlctpu$k_displayfile tpu$k_fileiotpu$k_sectionfile tpu$k_options tpu$m_display tpu$m_section tpu$m_output tpu$m_create tpu$m_write tpu$cleanuptpu$m_delete_exithtpu$m_delete_bufferstpu$m_delete_windowstpu$m_delete_journaltpu$m_execute_filetpu$m_execute_proctpu$m_prune_cachetpu$m_reset_terminaltpu$m_kill_processesTPUSHR TPU$CCTSHR&NOTES$Filename!AC!AS!AC!AS!AC!AS!AC!AS!AC!AS!AC!AS!AC!AS!AC!AS!AC!AS!AC!1UL*!AC!AS!AC!AS!AC!AS!AC!AS!AC!AS!AC!AS!AC!AS#!AC!AD!AC!6ZL!AC!6ZL!AC!6ZL!AC!10ZLRb*ȢMAIL$SEND_BEGIN!AC!5ZL!AC!5ZL!AC!UL!AC!UL!AC!UL!AC!AS!AC!ASMAIL PUSH_CURMES%MAIL CREATE/OPEN/NOEDIT/NOSEND/FNAME= MAIL TO " MAIL CC " "/NOPROMPTMAIL SUBJECT ""MAIL CLOSE_MESSAGEMAIL EXPAND_DIST_LIST MAIL SENDMAIL POP_CURMESmail$send_beginmail$send_add_addressmail$send_add_attributemail$send_add_bodypart mail$send_endmail$send_abortmail$send_messagemail$user_begin mail$user_endMAILSHR LNM$FILE_DEV.DIS $REST_OF_LINEADD_CLASSCLASSES CONFERENCEENTRYERRORKEYWORDMARP=j$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;11"VKER MODERATORNOTEOBJECTPROFILESEENUNSEENMEMBERVERSIONANSWERATTACHBACKCLOSECONTINUECREATE_DELETE_ DIRECTORYDIRECTORY_CONFERENCEDIRECTORY_NOTEBOOKEVEEXITEXTRACTFORWARDHELPMAILMARKMODIFY_NEXTOPENPRINTDPRINTREADSEARCHSENDSELECTSET_SHOW_SPAWNTPUUPDATEWRITE $LINEDPTTlX\`dhlp(````````@X`h0`$!`#%P%$x)0*++P,,@0p`& ''( """""""))))))))////$0DXl| (8HX h$t(,048<@DH0L#(,2ALLTOPICLASTADDTPUALLLASTALL K-J|J,*KP.(JDKJ.J*KKK.*JJ  !,+@4"8 \d 2"R"\@:\"!,+  "#~0^8^@GG =]  ((]R$z @F  ]0JJ4G0B8b@Zk4=(0GGTG B(bAZkGG0]8]@P#k#GG>  ">1"/  / "/>1"/ t /0T D0G #/k#~(^0^8G#G@ L+ @L+ =("006J= C4GGXb#/HD@4/k=! H$ =11&J&J]CB "CB ݢ޶ ($GGXB`bM@ZkC  8 =b#_ H/. JyJX KWJGF?>=11&J&J]CB BZ#C}fCH ݢB޶ ($GGXB`b/@ZkC   =b#]_ w4tB4G[@Zk(\&z"4GhBpbmZkf=! H/" =11&J&J]CB ݢ޶ ($GGGGGkb#/G'AC  4 =b#%_ ?H/. JyJX KWJGF?>=11&J&J]CBHK^@ ($GGGGGkb#'AC   =b#_ ".JGJ =  =b#_ 4GG(]0]8@#/k.W JF#~ ^(^0GG=6H =+B4G "GBbRmZk+b#_=_&zR"2F 4GBb/@mZk=+B}4GGBb6mZk_ DKL PB@ LK4G/ @.vrJUJF>4GG ](]0@#k. rJU JF>#~(^0G =] &z"D  Ø;16 J 0[R2GJGJ]0 C "C4G [({bZk4GG(]0@#/k#~P^X^`cGG@4G88 Cc@"c = C=@8@=!6 H G .rJQ J2F >}0`B}=GA.`JRAJ@FA>}0`B}=4GA.`JRAJ@FA>}0`B}=!.Q!J!>]0@B]} = C!aB0=0= @D 0=0=0}L " ]"HBAZk8B/@Zk@P@@ @0b#*_HHT@=1 @]@}bB$TGhBpb.@Zk@ .JK GHHH}/:`LPBݢ"6/6KFHݲH}cC`=",HHH}oB `HF"5/5K5JFHH]QG/@84GTG0b @@X"! CTGPb|@HH/ 8tGTG0b@Ӱ@H=b#_cGP]X]`p#k!.Q !J0FÐ#~X^`^hGGH@=$(G]X=" =@=8 D/! @xF/H]R6@J@GH=FH]raFr"HB4Gb@&z"4G B(b/kZkHGTG0B8b/k}ZkHF@=x F/ 4Gv0]"CP]PGvJuJFPTGxaKyS KyGxP=X"CP= CP]ABP]PPBP<F "=9#C$=bL{G}M"C(="C ]"C}"C0"CGG B(bkZk0D",!?D="-1"C =}"C"CTG@BHb}Zk0D ",!?D="-1"C =}"C"CH}GGG`Bhb}ZkCPP P"1"CP]GtG B(bvkZk4GGX]`]hp#k#~(^0G =]  @?$z! AF   ]RV@J@4G=! F!]4=0GGTG[{}Zk4GG(]0@#k#~P^X^`cG#G@8=4G00="C=c8"! =c (L+,=@0@=!6 H 8@ @4G "GBbkZkP"@0@=1 J/ _"(]H,'F<Kv@K<KHk.;, KqKP JA;HF1D>;<@}4@4/o@J-@ݢ@71&J&J@CH"9#C@]FC,( ($4GGBb|ZkCHH;@H=b#7_8@BH}4GGBb/jZk@=@01&J&J@]BB0"C,( ($4GGGBb|ZkCHH@H=b# _8@BH}4GGBb/jZk@=4a@B4G[@ZkP/e&z"4GBb~jZk@=! H/* @@=11&J&J@]BB,(ݢ޶ ($4GGGGGib#/#ACHH=@H=b#_8@BH}4GGBbOjZk[@=@01&J&J@]BB,(ݢ޶ ($4GGGGGib##ACHH@H=b#_8@BH}4GGBb&jZk2@="0.0J4G HH=H@H=b#_8@ CH}4GGBbjZk@="0.0J G H=<4JJG4Bݢ BF <+ ]:C< vHy KD< < 0JJBd@]@=!1&J&J@}bB,<ˢ6JJB(< 8KK4B ($4GGGGGib#[#ACHH%@=Q"r.rJ@G JH=Hݢ)@#8/8K/GJ< HHG  @ @PF < =B<ˢvJq JF<˲@H=b#_8@}kBH}4GGBbiZk@H=b#_8@BH}4GGBbiZk= !0@<Kv@Ja HAF<K<k3fJfJH tB]`@@ݢ61&J&J@BL <+9&K&KCHk{< HH `C ($4GGGGGib#"ACHH@=Q"r.rJw@G JH=Hݢ @#8/8K/pGJ< =@<Kv@J`H@F<K@H=b#_8@ݢBH}4GGBb/iZk;@H=b#_8@BH}4GGBb/ iZk,@="0.0JFG HH=H/@H=b#_8@ CH}4GGBbiZkX"!6"H ("C@=Q"r.rJ+@G JTGGb#/>@4GcGP]X]`p#kP.R PJQFP.R PJQF.T JFX/Z XKYG!.T JFX/Z XKYGP.R PJQF.T JF#~ ^(^0GG==b#_=_&zR"2F }sv`J`b#_]"!D"P@FPJ ".J/GJ5QBD<K:FKFK:Q@CDKL+P @@+4GG ](]0@#k/X KGà#~0^8^@~H~PG#G(+ G`0 ,H GHc3 .J G H=]@cf@4Gb@4G+"H/e < 0JJG00B] BrF < ݢB< vKuJG< <+9&KQf:$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;11X{"g&K C2 Cc;1&J&J@"! CH <ˢ6JJB< 8KK?#88C ($4GG B(b/GzZkC(( (=b#_(4G0B8bhZke4GcH+!!  H / K&SFK 4B<vJtJF<&"4G0B8b/gZkF<+0@<Kv@Ja HAF<K<k3fJfJH tB1`â71&J&JC"9#CLk< HH`CH+!<k+fIfI!+@> ($4GG B(byZkC  = =b#+_ 4G0B8b/gZkcf@4Gbf@4GG0]8]@}H}P`#/k!.Q !J F1!.Q !J0F5ð#~8^@G( CG,a0J@HD<}0`B}=TGA.`JRAJ@FA>}0`B}=4GA.`JRAJ@FA>}0`B}=GA.`JRAJ@FA>}0`B}=, = B=}"C @ "C$( }"CTGtG {T@0004GG8]@P#k#~^ ^(GGL qDQpDRSJW`BQ/`  Cb#_bs"Cb#^__"DKLPB@Lˢ4G/6/zJY6K:G6?b#x_4GG] ](0#/kQ_FQ6/ JY 6K:G6?à#~H^P^XGG@8=0] C8=#B ]82.aHQ2J!F2>}0`B}/=GA.`JRAJ@FA>}0`B}8=/@ 8=,s0J@HD<=0 @=8=/F0Fp.`0JSpJ`Fp>=0 @=8= Jp.`0JSpJ`Fp>=0 @=00JJB =0]R,aQJ@HD<0B30=!!&H&H?"1@ ]4G.qrJPJF>=0 @=0=1p.`0JSpJ`Fp>=0 @=TGp.`0JSpJ`Fp>=0 @=0=1[p.`0JSpJ`Fp>=P @=="C0B Dk `B@b#_ = = }@KG"]"pBj{Zk`ByZkB@+D =8CD 05JJ 0=1(= }`B$`D/@b#_ D+@F=ݢ}(]@"pBD{Zk`ByZkB@˲(==!C(= 0B DK}2SBDK4GGH]P]X`#kp. 0JS pJ`Fp>#~^ ^(GG D L PB@ L+q Dp DPJW@B/!@b#e_"! Cb#_ `bs"CPb#$_=/ 4GG] ](0#kFÐ#~P^X^`GG@8=0]D 7@L P.PJGHG@b#_HHH@K]8"ݲ/KFHH]CC@}; =;.;JH=H]OB @H}pFݢ".J5JuFH}H]CT=",HHH]8PF/@#.JHH=X0G .J\GJ=P @=CHH]C]@7C D =5BD]@K8xD4G804G0B8bbZk@/D+ L P.PJ8GJ"@b#>_HH/=DK2BrF=@0#CTG B(bjZk= @D+]12BD+@B@GH4GGP]X]`p#k,@ HD]t/[ tKpGp.S pJrF#~^ ^(G#GH/0JJ4G B(bvZkvJ=0JJ4G B(bvZk5 1&J&J="@TG (GGGGGGXhb#uAC01&J&J]BB (GGGGGGXhb#_AC0JJ4G B(byvZk]"v H"G] ](0#k#~8^@^HcG#G0(=4G="C=c0"! =c0"006H(4GGb#:@04,0=!1&J&J0BBR"C0B( (GTGGBbvZkC 04p0=&B4G[@Zk&z"4GBb/ldZk'0=!1&J&J0B( (GTGGGGG(hb#AC  = 00"Q.QJ/ GJ   4GcG8]@]HP#/kq.S qJrF #~^^cG#G=4G="C=c"! =c4Gp===0F=v J=TGJ`qHFG]@J`QH@F]"C C]"CtGGb#4@GvJ`HF4G]AJ`SH@F]Gx"CTGxvKvJGxx]AKx]}|}G`]v@JpJPF`]4G`}aJpSJpF`}h CdGhvJuJFhGh=!KuSJ5Gh=p"Cl=!1&J&J}bC]"C^`"C ޶(GtGGGGGgb#/3AC=Q"r.rJ@G J=ݢ81&J&J="C}#C~ (GtGGGGGgb# AC =Q"r.rJ/@G J=ݢ#XGP=v Hz@K:DP=4GP]AJaq HAFP]GPJaQ HFPX= CT=GHvJuJFH4GHKuqJGHGH]@K`QH@GH]@ CL01&J&J]BBP"CݢB޶8"C޶H"C (GGGGGGgb#/AC=Q"r.rJ@G J=ݢ"#tG0} "C4TG =v Js`J3F =5JJ5Jݢ6JJJF KuSJG @=$=(=4!- };1&J&JBBR"CݢB0#C (GTGGBbuZkC4p=&B4G[@Zk!&z"4GBb/bZk(=!1&J&JB0"C (GTGGGGGgb#/;AC= 0"Q.QJ GJ4GcG]]#k.T JF.T JF.T JFnq.S qJrF #~^^GG=(G= =0JJ4Gà=1 J/ "!!'H'Hx= C|x= CGG=@=P"B="]"G0B8bCZkBR"C}"CTGGPb#/1@4G="`11'J'J(=bas"C,}("C"C"C}GPBXb/tZk8 HH=@A8"GG@B/,wZk0BuZk8"B0==} ]00ݢ@BwZk0B/uZkB0ݲ08#C7Bx8"C|x]"Cb#A_ӐRPb#_Ӑ?$z! D4GBb/aZkDÐB0JJxBR"C|]x"CBGGG@BHb=sZkC)BR"C}"CTGGPb#A1@ ? ==1&J&J==b#_Ӑ/Pb#_Ӑ?$z! D4GBbaZkÐ4GG]]#/k#~H^P^XGG( =](8 HH(=@1= C8"1N ]R]"1"CFE @=16 J?=Xp3fJfJ\@"G0BFxZk=!&H&H5 @/ J =1&J&JU B?]R@J_}4JJ0BӢJtSJFӲ ]}z D L PB@ LK4G/@.vrJUJF>4GG8]= C8"TGGb#|.@00/ 0]&:"GtG0B8b(aZkx=$@4G`Bhb/|Zk00/G@=}"C@"TGGb#.@` C0]GtG0B8b aZkZ=& "Av@JpJPFA}GӢJtSJFӲ4GWAKxSKXGW}4? D+L+P B@+Lk4GE`.wJVJF>0=]}0=!L@aC!CAC8;v J8;TG8yaJpqJpF8yG8JpQJF8<0ݢ0B0ݲ0C/]KC="CTGGhQb#v@@ =]A4GGH]P]X`#/k. rJU JF>^. JV JF>ð#~8^@^HGG= R=!!$H&H!1 @0!JaS H!F0]R2DJFJ@@@=8Db#Q_ = N0@'@4GpBxb/]Zk 0@  B=$B4G B(bM|Zk  /G(=}"C("TGG@b#-@ C ]GtGBbF`Zk G0"C0"TGG@b#-@G8]@]HP#k#~^^~G#G=]8 G@"G=1 4G P]"Ch]h=G.rHPJF>h}0`Bh}h=4GA.`JRAJ@FA>h}0`Bh}h=GA.`JRAJ@FA>h}0`Bh}h=GA.`JRAJ@FA>h}0`Bh}h=P"C!0@`=P]"Cd]GX}"! C\=H/ BR"CC4GtGG`b#/@  CC4GtGG`b#//@8 ChhGp.t0JR/1c$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1 3Rm0l/qT~^_\\`||h0 U- Cm̠Dw-p1X(W҄ {hRAXK_U86o\`Y%QbYoIֹU]NչD ?ۧVΝ[293x [sz,ry:$er?' M E|a,D{w$*0cZom;tmȺ$:{2ʡQ&NLզ) MII>&si_d. 5% `'^ F/cOP=Bx2  F{K#DtNn G/;D `.DŽK֮.Om.塡Vc+˶T9s +tI4G\nxaƶi?~VrB?ށэw5 +~1L^mut=j@CT2Z<-CߡWvw^Z7溈?;DXC6den]8M&M"›toݣ*m yVmͷTo3q73 GW@I%50۫W.Ppͩv$s8iOQ !?8ٰX*5&EM&$3V řRd{tF|zʈ1eNo bTȷ#6( uCɌJpfM/WN'p9X"=0^oȅhu&oQ.^zCf,<)Qu5ݍ$+NGCUUaQ#Ńjtȃak~?+G'mjI*طӷh+ D#ڋ=c\\xEkjYe͚} "Wȓ]Ew+cıߠ=Yoh7U.񥶭:y*׹F/js&V+B3Q) NtB?cZ`֘W=ψFisCJ-W N(ʼnu sPߊ '=X3pM HPInZ\@H0/d ^1K)2-]@Ȇm(tH[:qr{vX>4!p{~Kߝ*<Sve4r,vMqϽm(|1YCM7 Ⱥ\ Ʃε)}^I)ZVzY鴈sRB1=tS453G;ؠeϽzd%푟Q_&wJXFhu%*9 F\I<-UO{Cn )COשC,O}bǣY[`҇jRA?{4cQ>09i.{- l{{¢<52$}+XoQQbnsj9~mXR.ܴDKGZy3P xX8,lY"rj)4- dsrb`vag"uy Yre](HE BWLoc[' p-;(܌trR^UNo@(JPt/Dl-aȺvUMzmPل~,I0hVKFr]%O4$5<w"ATe^PUFiݯGTRƦ'0[EpB2s5Ks/ }l-Vx]v^Q@aIn> Cӌj&ڢrkʇ<ٔe!j0TZV\S`)Q;5wNѓ T" w}ə_g1h9$DVN|>UIi y)'\'6 /Wd!| n*q6T!Tٟ G :ee{GgeBJ}І泃sLS=IRτ{ch(LFO00&MOyMRW~{|o8cE oLʰ>)ӲIeiZ\q\4~IZe-Isc^2EVM5OPQYPu Y;MK4N3'$m06N/4Ddz[?q4mN<(% ˲mSFJ7EaY$l.l'U;]ȕ{^ y Hھ}Y^Tf:ȗ"~K($9 sU2I9vQO;wb Lr2ډ| 19 e P*3ϕiJ%2iWҽ}uJqw$(䇩.c5.Z8额wlfgGPn0pz{喙/e[5JyA"`ݻk\:k@{S^D ¤4{#Q7u|u.jV O%:E@!3dҀ z-]ۮb%TQ4qo `ji(|Kdí1u +<)5C~l+* U Pl8ힷ{I:=fy%AX "qI^(=H9Pe'tզ .$lK-y<v"OX·=jL:΃`GU1jwL[M]NR^G`REw"6# ׎j?DlΖ?HѶd/sxvjCdÀ4-Ib{IϪ&At`т$Ӆ8g,V̥໺0ϯ!EtmpJ`P26Yy SY&CS-p`Y99OV3aeO#šX z,85AĨ-F XGvQثƆ[DM5x %;R5(2{ a 徑9,p8pa.50d i꣦DU ̀yPvht$qE!\x;t}ֻ s`@^/Jp$d+a珃5pRY+^Q<τI6vKvWu8IHv U`>@<9Xp@IӵDjK2Q\$!PS|9xdhs}|ӵyQcKϋ{m$EUi;wm:RrCqѹ{ⳛmbӄn`!5wȵqdjP vjYV=7/b0 >T ԦaB/ K3Q!!z.hז Bq@ґ/|]w3'5 T?!x),8>.;cSxcW?^W3[&RR6l': ͏zU? ^A[[Ʒrs hg|Ogj8ok 77`YX:<!U*-<+H-&q,\d,^4sRޗ R?@S&M+ Ub>E'߯_< 5$FMD˨>d萧sBjn v_569uh7cxn[x+!˖Õ.a10~qh]MGJ9m aR*Ho[;t?=^F /s 2ruu|I9mojze%8m*TUd9]+l28H R"Cאu!wvwʹo%7;\t9?D(Jdڅ`oEԕxANm/3J$ }s d3YwۣI |37y-3CZ]ͨi'MT $u]hpη=,id/5' 9?\(*tЋNd uS6M}%ʻ2rIn!ɀ{SC9,Ux(W.yƫ`T7RG;+bq%I)k, T6gȕͼ*'7r OQhY+)f[3Μ鯟3{-xDt:,Wlil󹢙 j~Qc0=_ 6JEFNV剎VVs^1Da#ٯ ?M8y+$ Z#7H',}0Y+J?fH7H{3{r!P-9/wjs*'h-QrIxCBxY%7$B#k?^# )M2M`QqHI^l|i6X8& O~V җZvN5򠀤 ha |fG`٫˱^i{vuIpT(t^=Rv ߛO܉l:?;T4~65|g1me !%J7G<`I w~fD0z/z%*FH>yBH bzl0NmctH!*%˅,rv'bZq }o?(OHIK0%  );FT>Gp>339@f'zʹCrAS 7&Y;x k}Ӄ^.ѯF&8]'}6<Ƿ(hO5,]IQE<S!m͡ov o'-C , __f0Կ AQՏ`/#mH 0 zg(u] dEcczзDs ;ݨf*Dg8J*t'$o-Fѹ:K1|Xi)^ʲjZWP WwO2~006%1CiNl $E@Rw03w:Qz-*+Ph%zI"vK|L7aێ{[%ʰ2K1;8cMᡇ&G>fMӳm{&YCX*^OFv:F=x#CqOds̓0es!Olc6)ډm{:0|]x2RƋ^3Ɖ$P-4 fQ/oP޼{v]˼chl*)`a@GO] W =s|ܔDCy<G`0`xw΅WZ< 6^`FD~7^ vci+r$z%9$"uN@L#4 ʖ-ipi5F}PFh\Lb2Vp*iT9^hb_LReM'%N҃3q7qD} ~;eaF֮&o`:"nxE4`eTǗVYsw `F1fygWC~^a;#ˇ,\䲥`WP4ߤlN˵6nTY.#X&bV~Jꌭ!wiM|Yߕ> 7rtwh@rp :&jHe^KRzU(|)K^]8+7{އY5b-YRQ7֗ m{zQeeBmK?Hs.o)7z3\hFmprqhGȝp$ A|尰ʧԅ⟃>åͼ! 8ԯ[@»YrKsgAّ'E3 |2 \FuJb,O!I ٧wjCzuԒ㍻dP/[KqziIO!t*XcLX'5ɡ-Fk("Aj4SVGBPMBx?7&s$TnT?i<;Oc|f(xxׯPnQ_ ~wܻK@xR.QXHquys*u(NC :k3:tU| nQ5*? WPͺlTkOֵy>Wek3!][@#QK oߘ%:)ҟhB =" 0Pۚ"3鲚a `zY6?lx$ VyFG  ʻ<#P->Iń[upgQf *K(N ۑ;=v+w="ʡal|iܘ%p߂}OheבAbɮ yAVA]ŭp}ZY?Go"Ndqa*ed"˝QgUlLӌS).-W}"~eJ%/vwQ5nV,͍o(g_V趈xW̨'+؎p"35ΏU<,-V;e/n0$f~(2ޥ֦k# 8Cy[֩b#T ᵚxB\I{`xoH$P]eR|sO.j>.V{o*ţ>;TBXz-Qz|"֨F6&.9\nC~O>/,Rkbi>yӈ ƞ9CqcOWM9uo\_$-}@xm+ hXRp='{. r{]@>]H'+&SJ-+Y`+ !J3(yK+7Ujׯ:AUgVS:K$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;11a"xSpJtFp>h0BhhTGW/{KZWK[GW?h0@hhGp.t0JSpJtFp>h0Bh7JJB h#x/`8K[xK`Gx?h=0 @h=1#1&J&J_"2B/ h}4G.wJVJF>h0@hh=C9,pYKA9H0D9h0@hh=| A/{JZAK[GA?h=P Bh=h}8"C3tBH}8"CLݲ HH@#D=x]#CTGGGGXFb#@xCTGGhb#N@P CGpv`Jq JqFp"JuSJF=#C8]}#Cz@= B=}"CGGGGGG0B8brZkGpG4G"B"ByZkC#C@GD=/=]"C12Bp=p"CݲC]#CTGpBxbnvZk  ChhGp.t0JSpJtFp>h0BhhtGW/{KZWK[GW?h0@hhGp.t0JSpJtFp>h0Bh7JJB/ h$x/`8K[xK`Gx?h=0 @h=1$1&J&J_"2B h}4G.wJVJF>h0@hh=D9,pYKA9H0D9h0@hh=/ A/{JZAK[GA?h=P Bh=h} "C3tB0} "C4ݲ HH(,"Chh]GZ.tzKRZJTFZ>h}0`Bh}hݢG/aJXKG?h0@hh=G.z9JTJF>h}0`Ch}hG.wHVJF>h0Chh="C0B"CG]`b{#C}C`= CX"CH"C@"C0 C(#C#C#C4GPBXb/qZkC4Gb#1_Ә}`0Ð"1"Cpb#_Ә}/`$Ð "1"Cb#P_Ә}/`Ð=TGb-@ DLKP@@@KL+4G/ A.sJRAJSFA>Ԣ4FԲ4GG]]}#kA/ JZ AK[GA?~A/ JZ AK[GA?JA. JR AJSFA>#~^ ^ ~ GG@8=@@ G(TG == C=x@0= CC`b#_HH20=X FJ@!FH`$FF$FDx%FB F #F@c{(}1  8]"C?"GGGEb#/2@CTGGPb#/Z@C8]GtGGhFb#F@HH/X0F/@cs,k80F8 F7JJP#H=P}`CHhHP"H].JFpp=#B Hݢ"H6/6Kpݲp}oC `pDH=A"H].J! HDppCXH#H.Jpݲp}8pG`H]r"H}2,2Hp=pXF H=/K G JHPBHCp=p}C`}PH]h @B B`= @PX#/ `= G/ @ݢH`5"/ U#@u" ``}`G/`@]Hd ߵ"/`= D/ @HhH`=CHx0F/0?4GHx} `x}#C BR"CTGGPb#EAx@="CC`b# _PP/l= C2FJFJ<@H}dB`H41BHݢ8F/(F&F=C:FKFKY}@H= LCxH=0 BH=c3fJfJGC"GGBqZkB/3pZkCBHL#!Cx Hݢ0BHݲH01Bx|]/_x}"C "CTGGPb#DAxHH4GH=c/`ccH}xݢ x"C #CTGGPb#DAHPP"CH0]CB @H}0.wJVJF>H0CH/H]G,pzK@HDH=0 CH=H=0FFa/qJ[aKqGa?H]0@BH]H0J.xJWJF>H0@H#!&H&H0@/ H#p/r0J[pKrGp?H}0`BH}15JJ"BH4G7/aKY7K!G7?H0BHH]Cr.tRKSrJtFr>Hݢ0BHݲHTG/y HXKG?H0BHH]c/Z@R/{rJZRK[GR?HPBHHP= C @P#CC="CCtGBbSoZkC8]GtGGhFb#/@XX=/ X)8]"C}"CGGGEb#^@} =#8="C}"CGGGEb#P@/}(=#x x="C BR"CTGGPb#CA4GG] ] } #k1/Y 1K8GeR/ rJZ RK[GR?ð#~@^HG888 8@"8=H! ="C=}G3.rJQ3J2F3>ݢ0Bݲ]4G.qrJUJF>ݢ0Bݲ]G.qrJUJF>ݢ0BݲP2FJFJPB @}3.vJQ3J6F3>]0@B]1p3fJfJ"tB/`4GU.tJRUJTFU>}0`B}].qJVJF>}0`B}]TG.qJVJF>}0`B}]@.qJVJF>}P`B}]"C2TB(]"C,ݲ}0}]G.sJVJF>0B]TG.qrJVJF>0B]G.qrJVJF>0BA2FJFJPB/ @}3.tJQ3J4F3>]0@B]1a3fJfJ"tB`4GU.tJRUJTFU>}0`B}].qJVJF>}0`B}]TG.qJVJF>}0`B}]/&@.qJVJF>}P`B}]02TB ]0ݢ$ݲC(}"CC "CCGG[{!nZk4GG@]HP#k. JV JF>p. JV JF>#GG( ` b .J G H]R2DJFJ2@ b"0.0JGHW@@=x! C>xD/=h1"C>G #k!.Q !J0Fp.S pJqFÐ#~X^`^hGGH@=8]0} C?"D+LkP`B@kL 4G,s0J@HD}0`B}TG/yJXKG?]0@C]4G .r HQ J2F >}0`B}G/yJXKG?]0@C],+ B]}"C2SB ]"C$HB #CH='CtGHBPb/WmZkH@=H]GBb#_H"! Chb#x_PP/PHbs"Cb#_PP/PH0=xb#_((GX]`]hp#k, 0J@ HD0ݢ000=0]:"D:0F@C8R2GJGJ@bsqDApD{pJZPK[GWBA`#c8cP`@8Q6@JDCF8Q\֢X7JJBqFppFuHSzJuFW@CpXP@Xyv`H`H`DXy0h=b#/_((= h4GGb#T&@Hbc C }4GGGBb/WZk0x=p] b#h_ӈ= 0=h1 0]Ghr0`00ݢd֢4˲0C4G0B8bTZkx0@GtGGpEb#)@8} C}=h40JJAv@JpJPFA}4GӢJtSJFӲh,=]AC]ೈ}`@}8"C0=(BGtGGpEb#@0}i@4G0B8bTZkb#_p0BH¦"CGTUgz$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;11"GGGGpEb#@0b#_ӈ=/ 90=0}gBb#._ӈ=/ -0BR"Cb#_ӈ=/ !0@BR"C0b#L_ӈ=/ 0p=b#*_ӈ=  À= F 0b#_ӈ]@4GcG]]}#/kq, HC qHsDq=G,aYK@HD<0B]TG.vrJUJF>0B4G@/{ HZ@K[G@?0B]G.vrJUJF>0B,+ = C=}"C0pC0]"C4] 0"CtG`b#Y_ӓxBFRXtGTGGDb#@/'00"C4 0}"CtG`b#D_ X"! C0b#_hh/h bs"Cb#h_hh/hv P=@b#F_qX0="C4}"CTGGGDb#@WX(="C,}"CGGGDb#@ (="CG`b# _ 0= CTG`b#_NAF @ P=@b#_88/58B `=X]P}b#_8+`B#`="B `]AB/@`}dB/``uB/`B/XGTGGDb#d@/ `=X]P}b#^_8 P=@b#_8`FeA`b#%_8&b"4G B(b/UZkGp]x]#k. JW JF>À#G(H> @hG~^ ^(~08GGH=HHNB"CADGGGW@H}  Gc GPB/ PO8C C  @C=;1 {s"C;a[RTCCTGGp}{#=AG] ](}08#k#GG=G#kGGxGkGG4G`=G/k#~^G4G G([0{gZkG] #kp#~p^x^~GG@ G88 C<@8= CTG0B8blZk4GHHK"wJF2BP0B1.0J H} w`J`FBSB.JPHFsAX=G`}$F F @F 0JJ`X4GPCH=h=#Cl]#CGG0Cb#@h=!&H&H`=l=X=4GP}P`"CH=#C/ ]H}xG:,pzKA:H0D:<=0 B=/}G.wJVJF>0CH@ =Ha/qJ[aKqGa?]0@B]HFF.xJWJF>=0 C==HJA/{JZAK[GA?]0@B]`B `ݢ/`JXKG?=0 C=/`?"B]4Gz.tzKSzJtFz>0@ݢ`6,yJA6H9D6<=0 B=]TGR/{rJZRK[GR?0@=`ݢ/4 /yJXKG?PB]}"C2SB8]]#C<]`0X=4=@@=8=#C0}"CG@BHbgZkhhH=0 BH=H}]oB/h4GGp]x]}#/k/ JX KG?À#~`^h^p~xGG8 G8==(= C?"GGGBb#@(b#_t=!!$H&H0=0=l @0}lFsAHGP%dF/ lF @dF`k;fKfKP}+H=4G@=C0=X"C\"CGGBb#@X=!&H&HP=\=H=4G@}@PP8KKB=99&K&KP=P=P}H]@BhZk BAgZkݢ֢ P',aJ@HD<P0JJB=11&J&JP]12B}sPtB" B/gZkݢBݲ4GG`]h]p}x#k, J@ HD<À#~X^`^h~pcGG@8=0]4G]"C]ch"c G@$ GP]="CP"TGG b# @HH H]&:"GtGHBPb[SZk}&"Kv@JpJPFKGvJs`JF@ݢX˲4GP @]zxb{GH}H= HxC0.0JpApApApAԢvJԲTGKtqJGGR@KpQJPGRH 1@HH=?0x"CtGtGGCb#/@8x"! C4GtGGCb#@8(= CGGGGBb#@(`4G4GGh b#4!@(}}(T (]dRdK(00(ݢ4֢4˲l H(] ZlK( `(=(! 8=0]GtGGb#/4_ lA(=!TGGXEb#@0b#_P cGX]`]h}p#kp#~p^x^~cGGH@=8]4G]"C]c"cH`/`8]R2DJFJ@4GvTG4GG b# @4GP }8BR"CtGtGG`Bb#@@@"! C4GtGG`Bb#|@P T ((]/ @(}(s/ `@=8]TGtGGb#/_ FPP]/@P}C.JsA4GPBXbOZkP 1@PP/lA4GGCb#5@(@XXlPP]KF@P}X}XPݢl֢lղPlHX+LK@#`}iA`"TGG b#@k+fIfIh}= Ch"TGG b#@ cGp]x]}#k#?G~^^~޴ (0޵8@cGG==]}4G=``="C=c@fs"}c(= B 4GØ}`BG/@00=11&J&J 0}`GqѠG`yKTJF`yTGc=" FaJ@HDqGb]"@F4bHY2K"G4/h d0JJ0 Bh}siBl}h] C=p"Ct=#CGGpAf#@/`] Cp= CTGpFxf'iZkd]X]`=!&H&Hd0@=X]}SB@X.JXݢB0BB HH=X]z/zKX0Bd9G0}f#04]dkP#!C!DGGGB/dZk"A"GGBcZkBbZkXݢp HxSKD X=t(X5_&2F5X}"CGX4GGDb#@ӈX4GG b#s@Ӂ$= 0"C&"4GtGHBPbjNZku$=Y X(PP]R8]X "CrAtGGGGHb#@&""4GHBPbPNZk[X=(!P=P=1(=bs"C\kXnA8]0"C( =#C#>G>4G>G4Gb#_ G0= C&"4GtGHBPb(NZk3GX4GBb/aZk\X8=TGGDb#/y@ӈ/X4GG b# @X= !!$H&H!)@=X=(1)B=X}(sskqA"CTGBb/keZk`b#_P cG]]}#k#~^GG4G[{MZkG] #/kP#G@x> @hG~H^P^X~`hpcGGGx=xxNB#CaDGGGw@88x  G GPB/ 4G00=#C=cp"1"=cx]@B@4GàBG HHѠG09sKQ=J3F09^ TG3=  Dt!JPJFVG2 Dxw HS`JwFxN`40"C="C]tGBb eZk(4 (]21@B(](( ݢ" 6/6K@ݲ@}u = /= ]@}SBQ@B@ =@ݢ6C ݲ(@}5B(C=TGG0yb#/m5A0 C4GBb/JZkcGH]P]X}`hp#kãëÀ#?G~h^p^xG#G=`X=P]H}@8]AB@4GÈBG/`` 00H=tGGGGXGb#@ 0(((]R ]x"C\0nA ]H}8]^G^ (GG`b#~_ H0 =TGGCb#@ H}G_&iR"GGb# @04GXB`b/_ZkGh]p]x#kP#~^^~cG#Gxp=h]4G]"C]c"cx`TG4GG b#@4GP }hBR"CtGtGG?b#@p"0! C4GtGG?b#/@( p=h]4GtGG@b#_Nh Fh `+X=pX=0"CTGGGGGPb#z @@@4+"J) 0] @0=1&J&J4G4G"PB"0B/gZkC@GD 0=1&J&J4G4G"8B"0B/gZkC@GD &"4GBbLLZk&"4GBb/DLZkGGTGG$b#/p_@X(``84GH]p "C$"CGGG8?b#@/ = =$GpB"TGxBbZkHX =#CtGGGG Gb#@&""4GBb/ LZkX=(!`=`=1(=@bs"C\kXnA8]0"C( =#C>G>G4G(b#_ 0= C&"4GtGBbKZk+!H3 X8=TGGXCb#/@Ӏ/X4GG b#@ӖX= !!$H&H!)@=X=(1)B=X}(sskqA"CTG B(b//cZkqAoAoAGGG ?b#@x 4GH=X4G B(b^Zk\X(=TGGCb#@Ӏ/X4GG b#@^X= !!$H&H!)@=X=(1)B=X}(sskqA"CTG B(b/bZkhPb#W_HB@"! C\+qAoAoAGGG ?b#B@x /X"! C="C80"Cx+|KGGb#_X8=TGGXCb#o@ӀX4GG b#P@X="CX4GGCb#@Ӏ/X4GG b#<@\P cG]]}#k#~P^X^`~hcGG@8=0]4G]"C]c"c@`TG4GG b#/I@4GP }0BR"CtGtGG ?b#@8"@! C4GtGG ?b#@( / 8=0]tGtGGb#/H_`+(=+"J hK@&2"4G`BhbJZkq(=!"H/ $ ih+?Fh+KBJ#@8H"CL"CGGG>b#/Z@&""4G`Bhb/JZkOrAH= CL]tGBbRbZk(rATGtGGEb# @(rATGGGG0Fb#@+"H ?$! &"4G`BhbJZkGG(( 0JJ0 BH(](RIBL]((qAH"CTGBbaZkh+4 Dh+h+ Fh+qAoAoAGGG>b#/G@0b#K_P cGP]X]`}hp#k@#~^^~cGG`X=P]4G]"C]c0"c``TG4GG0 b#/@4GP }P@BR"CtGtGG>b#-@X@"P! C4GtGG>b#$@( / X=P]GtGGpb#/_ӏh Fh `+H=XH= "CTGGGGGb# @005+"J/) ] @ =1&J&J$G4G"B"`BdZkC@GD =1&J&J$G4G"hB"`B/dZkC@GD &"4GBbIZkO&"4GBb/IZkGGGTGG0#b#/]@p C\ H4GGCb#O@H HH @hH( BlH](RRKqAh"CTGPBXb1aZkXqA@"! CGGG`?b#^@ H/X8="C<}"CGGGh>b#4@88=1&J&J<G4G"B"`BadZkC@GD/ 8=1&J&J<G4G"hB"`BQdZkC@GD/~ h= C==8]vJr@JFGUAKvSJVGU}<=!C== B=h}"CqA@"CGGG`?b#@H(@@(H8}"CTGGGGPFb#@H=(!@=(=@]R2F 8}"C&"4GtGBb:IZkH4GGCb#@qAoAoAGGGP>b#@x "! C="C( "C#8"Cx+|KGGb#;_H(=TGGBb#/$@ӈ/H4GG b#@j&"4GBbIZkcqA8= C<="CGGGP>b#/ì@nAGH]="(RtGBb`ZknAqATG B(bMZkt @@TGP"r.t2JSrJtFr>8ݢ<]dk@=_# CDGGGxB^Zk"@"GGB]ZkBE\ZkH=p !!KwSJ7G !H@ݢ(H4GGCb#@\GH= !!$H&H!)@h=H=(1)Bl=H}(sskqAh"CTGPBXb`ZkPb#s_P cG]]}#k#~H^P^X~`cGG@8=0]4G]"C]c"c@`TG4GGb#/@4GP }0B`R"CtGtGG>b#U@80"! C4GtGG>b#L@( / 8=0]GtGG0b#/_:h+V H &2"4GBbJHZk0x+ #| 0"|+0.0J((x51Bxx뢴B/(Kv@KxKXGK|kk|+(]2@|+x (}0Bx 0@b#_P À vJ hK@FhK&s"PkP cGH]P]X}`p#/kp#~p^x^~GG@ G88 C<@8= CTG0B8bj_Zk4GHHK"wJF2BP0B1.0J H} w`J`FBSB.JPHFxAX=G`}MF7 8F5@B=B1 yBB-`B=B)F'F% xF#@XF!F`+!&H&H`= X,XF G@b,@"CXG`] xF4JJ`ˢXݲ4GP=CH=h Cl= CGG=b#f@h=!&H&H`=l=X=4GP}P`"CH=#C ]H}xG:,pzKA:H0D:<=0 B=/}G.wJVJF>0CH@ =Ha/qJ[aKqGa?]0@B]HFF.xJWJF>=0 C==HJA/{JZAK[GA?]0@B]`B `ݢ/`JXKG?=0 C=/`?"B]4Gz.tzKSzJtFz>0@ݢ`6,yJA6H9D6<=0 B=]TGR/{rJZRK[GR?0@=`ݢ/4 /yJXKG?PB]}"C2SB8]]#C<]`0X=4=@@=8=#C0}"CGPBXbaZZkhhH=0 BH=H}]oB/h4GGp]x]}#/k/ JX KG?À#~`^h^p~xGG8 G8==(= C?"GGGx=b#R@(b#_Ӟ=!!$H&H0=0= @0}mFxAHGPNdF/7 8eF5@eB`=fB1yfB fB-fB =gB)@gF'hF%xkF#XmF!dF+9&K&KP=kH},XkF Gb@"CHGP] xeF`4JJPˢHݲ4G@C0=X}#C\ CGG`=b#:@X=!&H&HP=\=H=4G@}@PP8KKB=99&K&KP=P=P}H]@BW[Zk B/YZkݢ֢/V5k}$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;11w" P&,aJ@HD<P0JJB =11&J&JP]12B}sPtB" BYZkݢBݲc4GG`]h]p}x#k, J@ HD<À#~X^`^h~pcGG@8=0]4G]"C]ch"c G@$ GP]="CP"TGGb#4@HH/ H]&:"GtGHBPbEZk}&"Kv@JpJPFKGvJs`JF@ݢX˲4GP @]zhb{GH}H=/ HhC0.0JpApApApAԢvJԲTGKtqJGGR@KpQJPGRH 1@HH=?0h"CtGtGG=b#/@8h"! C4GtGG=b#@8(= CGGGG0=b#@(`4G4GGb#@(}}(T (]dRdK(00(ݢ4֢4˲l H(]ZlK(`(=(! 8=0]GtGG8b#/_ lA(=!TGG?b#@0b#_P cGX]`]h}p#k`#~^^~cGGH@=8]4G]"C]c"cH`/`8]R2DJFJ@4GtG4GGPb#]@4GP }8BR"CtGtGGb#@(@hhl``]KF/@`}h}h`ݢl֢lղ`lHX+LK/@#p}iAp"TGGb#H@k+fIfIx}= Cx"TGGb#/<@ cG]]}#k#~ ^(G==  CGGG<{#b@G =G ](0#/k#~(^0^8GGsAGb#_sAtGb#_sA ="C$}"CGGG;b#/;@  C=]tGGWb#@G(]0]8@#k#~P^X^`GG@(,@8= C< CGGG;b#ب@/G8=(="C<=@0"C4"C4GGG;b#/ƨ@G0=(="C4=nA<=4]tGGpXb#K@ CHHp+pv`Jq JqFpHGJuSJFHt+8H]H}aCH}H=HBH]"CsAbs"CGGG $]dkX#!C!DGGGB/YZk"A"GGBWZkBgVZk`ݢp HxSKD `=t(`5_&2F5`}"CG`4GG>b#@Ӑ`4GGXb#@Ӊ0= "C&"4GtG B(bBZk}0=Y `(XX]R(]`0"CtATGGGGBb#<@&"4G B(bBZkc`=(!X=X=18=bs"C\k`nA8]0"C( =#C#>G>4G>G4GGb#_/ G0= C&"4GtG B(bvBZk9G`4GBbbUZk\`(=TGGP?b#ɵ@Ӑ/`4GGXb#\@"`= !!$H&H!)@=`=(1)B=`}(ssksA"CTGPBXb/YZkhb#k_P &"4G B(b/b#u@R = !!$H&H!)@P= =(1)BT=P}"C8=H"CL"CGGP:b#/˥@4GHBG/4 @=TGG>b#@HH 4GGb#@% "! C 4GG0>b#@HH 4GGb#@y@4G0BG/ 0(]4GtGBb/AZkGX]`]hp#k#?G~h^p^xG#G=`X=P]H}@8]AB@4GÈBG`` 00H=TGGGGBb#)@ 0(((]R ]"C\0nA ]H}8]^G^ (GGGb# _ H/ GTGb#7_04GBbYTZkGh]p]x#kp#?G~x^^G#G=ph=`]X}PH(,G ]("$B4GØ]@BG }}`@@X=GtGGGAb#@&*"4G B(b/,AZk$@(880BR"C\K@nA0]X}HG }#C~ (GGGb#_@4GBbSZkGx]]#/k#~P^X^`GG@8=0](} 0] }"w`J`FBSB.J @ =0]0BGG9b#j@=+"w H DBAB.J @="CGGG9b#V@&""4GBb/@Zk>0=! 80=(] }GGAb#I@0.8]2TGG0>b#/ @HH/H!8](RR"r.rJ(TF@G8 5JJ5BH8(BLH=#C =0]0= @GG9b#S@CGP]X]`p#k`#~^^~cG#Gph=`]4G]"C]c"cp`tG4GGb#@4GP }`BR"CtGtGG0:b#<@h"0! C4GtGG0:b#3@( h=`]GtGGb#/_sh Fh `+X=hX= "CtGGGb#-_@@7+"J, ]/!@ =1&J&J$G4G"B"BZZkC@GD/ =1&J&J$G4G"B"BZZkC@GD/ &"4GBb/Zk3&""4GBb/Zk+GGTGGb#/ S@X(PP(4GH]h0"C4"CGGG9b#h@/0= 0=4GHB"TG@BVZkHX0=#CTGGGGAb#Y@&"4GBb/ZkX=(!P=P=18=Pbs"C\kXnA8]0"C( =#C>G>G4GGb#5_ 0= C&"4GtGBbZk+!H 8GTG`b#Y_ H2X(=TGG=b#@xx/X4GGb#x@ӲX= !!$H&H!)@x=X=(1)B|=X}(ssksAx"CTGBb/VZksAoAoAGGG9b#+@x 4GH=X4G@BHbFRZk\X(=TGG>b#@xx/X4GGb#@@zX= !!$H&H!)@x=X=(1)B|=X}(ssksAx"CTGBb/VZk`Pb#O_H^P"! C\+sAoAoAGGG9b#@sAqAqAGGG9b#@x /X"! Cx="C( "Cx+|KGGGb#$_ӈ P"! Cx="C( "C+KGGGb#_X(=TGG=b#@xx/X4GGb# @X=X"CX4GG=b#@xx/X4GGb# @\P cG]]}#k#GG>(>1 ,H>> 1@11@/ ^>10>^@>1^12B04G>GG #/k`#~^^~cGG@8=0]4G]"C]c"c@`tG4GGb#/ @4GP }0BR"CtGtGG9b#I@8"@! C4GtGG9b#@@( / 8=0]TGtGGXb#/_ӛ`+(=+"J hK@&2"4GhBpb:~Zkð+!&H&H/ (J$ hK_FhKkbJ`8H"CL"CGGGP9b#/@&""4GhBpb/~ZkgH=/ &"4GhBpb ~Zk]uAH= CL]tG8B@b/UZktA4G(B0bL{ZkvA4G(B0bG{Zk8H= CL="CGGGP9b#z@ӒH=/ LH=LGB"TGBTZktAH"CL]tG8B@bnUZk+1&J&J+G4G"(B"xB/XZkC@GD +1&JWM$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;11"&J G4G"B"xB/XZkC@GD ]à+1&J&J G4G"(B"xBsXZkC@GDN +1&J&J G4G"B"xB/cXZkC@GD> (tATGGGG8Ab#$@&"4GhBpb}Zk(= !!$H&H!)@P=(=(1)BT=P}"CH"CL"CGGG89b#A@  H=/ 4GH]H"CLvAH"CL]tG8B@bTZk HH K2FJFJ/@(uAtGtGG@b#/@Ӱ HH (uAtGGGG@b#4@H&h"CwAb#y_Ph"CuATGGtb# +A  (h]"CtGGGG8Ab#@4G`=`=CX=X}CP}PHH=( 8KK8 Cp(](ZICt](( sAp="CTGBb/sTZk HH3sAoAoAGGG89b#à@ x"CoAb#._/x"CtATGGtb#/*A  /p_"p]p֢J&"&""4GhBpb/|ZkGGh 4Fh hK@FhKsAoAoAGGG89b#@h+!Dh+sAqAqAGGG89b#@0b#_P cG]]}#k@#~^^~cGG`X=P]4G]"C]c"c``tG4GGb#/ @4GP }PBR"CtGtGG@9b#e@X"`! C4GtGG@9b#\@( / X=P]GtGGb#/_ӷh Fh `+H=XH= "CtGGGb#U_007+"J, ]/!@ =1&J&J$G4G"B"B WZkC@GD/ =1&J&J$G4G" B"BVZkC@GD/ &"4GBb/$|Zkw&""4GBb/|ZkoGGTGGb#/HO@` C\ H4GG@>b#@H HH @hH( BlH](RRKsAh"CTG B(biSZkXsA"! CGGG9b#@ H/+6#H/ Xb#_ HX8="C<}"CGGG8b#b@88=1&J&J<G4G"B"BVZkC@GD 8=1&J&J<G4G" B"B/VZkC@GD h= C==8]vJr@JFGUAKvSJVGU}<=!C== B=h}"CsA"CGGG9b#4@H(@@(H8}"CtGGGG@b#@H=(!@=(=@]R2F 8}"C&"4GtGBb/h{ZkH4GG@>b#޲@sAoAoAGGG8b#)@sAqAqAGGG8b#!@x h"! C="C( "C#8"Cx+|KGGG b#`_ӈ `"! C="C( "C#8"C+KGGG b#J_H(=TGG8ݢ<]dk@=_# CDGGG`BPZk"@"GGBOZkBUNZkH=p !!KwSJ7G !H@ݢ(H4GG>b#@\GH= !!$H&H!)@h=H=(1)Bl=H}(ssksAh"CTG B(b#RZkP`b#_P cG]]}#k#~H^P^X~`cGG@8=0]4G]"C]c"c@`tG4GGPb#/@4GP }0BpR"CtGtGG8b#e@80"! C4GtGG8b#\@( / 8=0]tGtGGb#/_:h+V H &2"4GBbZzZk0x+ #| 0"|+0.0J((x51Bxx뢴B/(Kv@KxKXGK|kk|+(]2@|+x (}0Bx 0b#[_P À vJ hK@FhK&s"PkP cGH]P]X}`p#/k#~P^X^`~hcGGH@=8]4G ]"C]c"cH`tG4GGb#/5@4GP }8BR"CtGtGG8b#@@"! C4GtGG8b#؟@( / @=8]GtGGXb#/4_0h+v H &2"4GhBpbyZk&rAoAb#_4JJ rAtATGGsb#'A/?"=}`hFh&"P˲P 8b#_P cGP]X]`}hp#k#GG >^ >1"Q2DJFJR"@ HHXD^R^1 C @ QqGPD  G0#k#~0^8cG( =4G="C=cH;! =c}xA(= ]tGG`{#dS@cG0]8@#k@#~^^~~cGG=]4G]"C]c"c`tG4GGxb#m@4GP }BR"CtGtGG8b#@Ӡ"P! C4GtGG8b#@nA4GBbovZknA"@! CGGG8b#@ H/zA4GBb\vZkzA"! CGGG8b#/@ӈ Cp+pv`Jq JqFp"JuSJFt+8]}aC}=ᳰBH]"G@"3dBDBGݢNH"Bݲ=]P@O@`/`KHJ`SHF=GvJr@JF"N#Cղ]}z 1@="CH]"C`b#_ӰAnA4GBb/uZk` CnAGtGG8b#>@zAnAGtGG`8b#/,@ӈ Cp+pv`Jq JqFp"JuSJFt+8]}aC}=ᳰB]"G|"3`B@B]"C8]@@71B=D ]AO @=NC DStJRAJTFS D/@׀BݢPNPNPBC֢6JJ"F8zJY7K:G8F @C/@8}`8=0JJ0@8=]R2FJFJAB@}51BHѠG{K@HD H=!&H&HL]GGxBMZkXBKZk8ݢ"CBH C4GBbwZk+/* "C]GvJs`JFݢG6!KwSJ7G6]jAz=!@==]@B]yA"C]"b#_iK @xA="]"tGGb#S@nA0= C4="C4GGG7b#@ C0= C&K"TGGBb/wZk4G "C$="Cb#&_  / xA="]"tGGb#S@ = H"C0="C4}"CTGGG7b#/@0=!&H&H GBR"]"G0"C"CCtGGhYb#;@ӫ= C==CvJr@JF4GKvSJG=CY}@= B=}"CnAGtGG8b#@ӈ Cp+pv`Jq JqFp"JuSJFt+8]}aC}=᳸B]"CC&K"TGGBb wZk4G "C$="Cb#_  / xA="]"tGGb#,S@ =E 0="C4}"CGGG7b#@ C0=pv`Jq JqFpGJuSJF4=8]}aC}=Av@JpJPFA}4GӢJtSJFӲcw=!C=೸}`C}yA="C]"b#_} C@L`@@= C@/ H"C4GBb/vZkN@}aLtGC"FQs0HRPJSFQ]@@NGCFyJXKGS@]AOyACz /= C8=$@NBGCR"@Fu2JTJF;@ݢNBCGY{JZXK[GY0@@L@=C @}aL"B8}yA8=]b#_  cG]]}}#kS J_FTFS/ _8 J?G:G8?0Üæþ#GG>^4>04GG #/k#~`^h^pcGG@8=c@"1"=c080= NB.88=0N0B@CH=8=8]0NBPB0@ =@.@J0@@= CP CtG0B8bA^Zk((XX]@ }P0PB0X4GcG`]h]p#k #~^^GGx4Gp(0JJ ("! C  (`0JJX("a! C\=X"C  CTGBbGZk0 CGpv`Jq JqFpGJuSJF "9#C8]}aC}=GAv@JpJPFA}tGӢJtSJFӲ #C=]AC]}= @=="C=}GӢvJtJFӲGHxSKD] b{#Cz=B]GvJs`JFݢtGK`SHG= BZ#CY}=!@==(BRXWr*$$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;11"n"2GJGJvJr@JFGJ`SHF("9#C8]}aC}= B=}`4G(4JJ (¦"C ײ #C0=#C BZ#Cp= CG0B8bIZk("!!'H'H 0("1"C B2 bs"C0"C "Cp"C`"CG0B8bIZkY= ] &s"SB/Q@c(5JJ ¦(⦹"C  "9#C0]#C b{#Cp CG0B8b/_IZk/= _&DR"2B# bs"C"C "Cp"CG0B8b/GIZkxx/)x= _&DR"2B$ bs"C&"4GtG@BHb/tZk( HH "("C " BR"C0}"C "CtG0B8b/IZk4G "(F "(BR"C bS "C0"C ¦"Cp"CG0B8bHZk "Q4@FQ(bsF t("C ¦ "C0#C "9#Cp]#CG0B8bHZk "Q4@FQ(bs3gJgJ t("C ¦ "C0#C "9#Cp]#CG0B8bHZk "Q1@FQ(bsF t("C ¦ "C0#C "9#Cp]#CG0B8bHZk "Q1@FQvè} &"tF/ `(5JJ ¦(⦉"C LØ= _'Z#:G (b{G `("! C 0<À= _&R"2F (F b("C ¦,à 'D#F (BZ_G "Y( C bÈ= &D"0D (BR2GJGJ "Q(bs"C t (5JJ ¦(#C  "9#C0]#C  CtG0B8b+HZk è/= `"C4GpBxbHZk(x("|!DP"C4GPBXb{EZkT("|! @ T("|1BP](bxsrBGG&"4G@BHb/dsZkG`b@4GG]]#k#~^^GG C" ! CTG b@Ә C"! CTG b@G]] #kp#G@X> @hG~(^0^8~@HPGGGX=X]XL@#CaDGGCG`@=X  G G9B@h vK hvH C8"! CTGGob#,A@`=!"@=="C]"CTGhBpb~Zk   GXB`buZk ]&:"GtGHBPbrZk]$ = @==`]RQ}`B}hݢղ`B]`}{z@=&"= B=4GG(]0]8}@HP#/k#GH> @hG~^ ^(~08@GGGH=H]HL@#CaDGGCG`@=H  G G9B@C(#CTGG ob#A/P]2X}S" BEZk4GG] ](}08@#/kp#?G~p^x^GG=80=(]=y C/ 4G(= BG(==8=10=99F 4G v" 9v K "1v J 80=TG B(b/@Zk e0`8]RBBX]`4B``ݢhݲhh= Ch='{#G/4GP hh= Bh=8}sB8FPP/4G@ݲh=8]Z:Ch=hh@h8=1G 4GH] hhBh&"B8FHH]0@G@]@}/ `GBbtZk0 C4GBb/qZkX=`]"G8BEZkX"C`"CTG B(bZk 0= Gp]x]#k#~^^ GG`&"4GBbqZk+!'H'H0D/ & "4GBbqZk4GG]] 0#k#~@^H^PGG= h,Fh- C  "1"CTG ="C ="tG@BHb7yZk= BR"CG(}(}"G0B8b}Zk/=G8]G8}"G0B8b}Zk00 0]&"GtGBbcqZk4GG@]H]P`#k#GG(C5 !$H'H"FQs0HRPJSFQ@@ 6 1$J'J]R"@F3t2JA2H4D30 / $>4!!'H'H]R"@Fq2HTJF,>4!!'H'H=1" Frt1HSqJtFr/ `,= G#k#~^GG?$z! D0JJuB=<GGv#_=}4GGs GV vpZkG] #/k#~ ^(G=G[PR" ]=G=B]"C=]}3dJfJ4JJG([0{BZkG ](0#/k#~ ^(G=tG[XR" ]=G=B]"C=]}G[{wBZkG ](0#k#~X^`^hGGH@=$ G]X=" =(= CP=P]2v H`H D2PTGJsS`JFP = P=]"CQPBPPPBP" !!'H'H=B!R"C]H}H,H0B ="C]"C}"C( CGG0B8bCZkC88@] =tG B(b^Zk88GX]`]hp#k`#?G~^^GG=h`=X]=y C 4GX= BGX==H?&0=G]"]8=#Cp=p=vHq JDp=TGJaS HFpp=]"CQp=!@p=pp= Cp=H H" 1?F(=H" ! C,= H 4JJ(H"!9#C,=h=h]1,1H =0@B$]0"C(=#C = CH}`4GtGx8=#Cx}"GBb{CZkCPP ="C`]=tG B(bmZkPPG]]#k#~X^`^hG#GH@=(0=",=@4G00 CH=4GtGb#e_w"D! CH=4GtGb#[_/l= CP=P=GvJr@JFP"KvSJGP=0]#CYP}( CP=!@P=P=P]@BP]"CGGGGGG0B8bBZkC GG0u=JTJF0:4G(=@(]TGCD0r`KPJF0+}0`BTGCF0ѮwJVJF0Ѿ!PC(( CH],=tGBbamZk/ "1"C]GtG0B8boZkGX]`]hp#/kÀ#~h^p^xG#G`X=P]PX("\10,, 0Js0JA 0H@H4DD0<<(P"C`=GtGb#_4G8=!Jaq H!F8=G8}`JaQ HaF8}`<`ݢ֢8vKvJG84G0]AKvqJVG0]G0HvQJD0X4G0}v`Ja HaF0}"C "CGGG B(b@ZkCF?"H=4G@Jsq`JF@G@JsQ`JF@H}"CD}G@}v`Ky KyG@} =1&J&J= C@"C8"C("C0"C (GGGGG0B8bZkC =1&J&J=}`P4G 0JJ4G@BHb@ZkGh]p]x#k#~P^XGG80=(] } 8]R2FJFJ@0}s3fJfJ/`B/=8]R2B }88]R2FJFJBB/= 8]R]A80JJ8=1B]1B@0]r3fJfJ0@YHZkC@=@GD] @ }885JJB(ݢG0]Z:FKFKB=80JJ8=1B0D ](}4Gh84JJ8ݢ֢B]1B}H}0=a3fJfJ0]RY/[HZkCH=@GD]@8}s84JJtB}ݢ6Bݲ]@C/@},H8F/=$F/ ]0@B]}31`B}Bݢ=B"V/VKݲ8D=$D/ 01B ](}8=99&K&K8]Z:CB(ݢGGP]X`#k@#?G~h^p^x~޴޵GG=`X=P]8`=1H=H=`0JJ0C@H]@=YBL@808=0 C8=88` &9#C8 CtG0F8fTZk88= `0JJ0B88]0}2SB21@B(](HX]#CTGGpnf#'A= (H=X}S"FHFHXP"CtGnf#AC  ] @ }/`H(@0@H4G=H}@ tB`@HyB4GP= CG/P]H}zGh]p]x}ݤݥ#k#~8^@^HGG0(=0(== CtGb#^_GW0=1$=}$3tB } ݢ 0]Z0}{;fKfK[C=!AC=/Y]|H$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;11" ]/ @0(=TG8B@b+DZk/ 0(=bs"C"CG(B0b/@Zk0 ]"Cbs"C(}G(B0b/@Zk0 ="C(]bs"C"CG(B0b/ZkG8]@]HP#k#~8^@^HGG0(=0(== CtG`b#_/GF0=1$=}$3tB31`B } ݢ (=99&K&KC0C0}{0=!!&H&HaC!0@==  0"CTGBb/CZk 0 ]"CTGBb/CZk 0 ="CBR"C}"CGBbZk4GG8]@]HP#kP#~P^X^`~hpx޴޵GGH@=8]0}H=1(=(}H0JJpB (] }SB3@(}6`JFpF}(]D@B@@0@ =@"D(]0@B8P"FHFH8=fs"CqGnf#AAC]@}/ `(D@@@0@(4G]0(GP]X]`}hpxݤݥ#k#~@^HG80=(] }80=(]}"C{#_G=1}6`J?FqF} ݦFB0B4GG@]HP#k#~`^h^pGGXP=H]@}XP=H]}"Cb#^_X<]<}2SB8]4(]6@KGXG(]}(D`CP=@0@4X=1X}s3fJfJ3B4]12B0=4G H$P==@}}X8}"C ]"CH}"C0"CGBb/~ZkG`]h]p#k#~H^P^XGG@8=0]@8=0] Cb# _G,@=1,=},3tB(}ݢ֢6KFG=]_G:C8};C0 C$=@@ HHB$= @ @(}"C "CtG`Bhb/c~Zk4GGH]P]X`#k#~X^`GGH@=8]0}H0JJ=H}s}]P]@0JJ  }@@P YOEZkCP=@GD]@G8}8ݢ86Bղ0=] }[CY0==B0]R0B4GGX]`p#k#~(^0^8GG=]"1"C]}G b_    bs"C]}G b_4GG(]0]8@#/kp#G(X> @hG~(^0^8~@HPGGGX=X]XL@#CaDGGCG`@  =X  G G9B@"(]" ]`/`=  CG/K=0 C=X]S@B@"C C#Ca@G@BHb|Zk C4G0B8b`ZkG(]0]8}@HP#k#~ ^(G#=](6H/ P} @GGRG{#_G ](0#/k0#?G~^^GG=PH=@](F4F(G(]V@Jp1JPF(] $GBR"]G]`="=P/P]R2FJFJ ]P=9$==S B/ G(=V Kr1@J2G(=H= =sB/@]$] C="C]"C }( CG B(b/{Zk`= @8 = B/K $]r"$}r.rJ0]8ݢ0JFXX==!C X]FCX}fCG,pVK@HD<8=0 B8=8}0]AFX]X=B/XCX=&CG,aK@HD<80B8]P@C]F]"C4GBbQ_Zk $ `G=`]"QB8= 41B "C4GBb>_ZkG]]#/k#~^^ ~(08GGGL# G"G GP"0B "@/$?Ft F$GdV`Ja1 HaFd?$$4GD@JqQ JQFDtG$!Hqq J1D$TGD@JaQ HAFDTG$!Jaq H!F$C(dpBR"C,Dp"11"C0$p4$6 HF0D4$pB0R4VJr1@JF4H$&0D&0DH$G`"5B bB/@_FT@F@G V Hr1@J2D ?&F@# C @&TF@@C"C @GD?"1 BB?%?D4 D%GeV`Ja1 HaFe? %C<C4G0B8b{ZkC=_&R"2F TGJsq`JFĢ@&FIJ?#GC4G0B8b{ZkC= C4G B(b/{ZkC #&0D #G]] }(08@#k#~^^ ~(0GGG# G $!HpSJ0D $=1($C4G0B8b/_{ZkH 1@HHC4G B(b{ZkTGHG]] }(0@#kp#GX> @hG~ ^(^0~8@HGGGX=X]XL@#CaDGGCG`@=X  G G9B@@" ]" ]HVJ VJ/`=`9,9H=0@]"C#C"Ca@GBbyZk Cb#_G ](]0}8@H#/k#~^G L VH/C4G [({zZkG] #k#~^^GG $+?DT D+mAnAdAtG0b@GGXNb#@_ hKnAl+4GtK" @r.t2JSrJtFr>4GG]] #kr. 2JS rJtFr>À#?G~h^p^xGG=`X=P]H}P=0=X=(= }"C}`=#C =`]q.yQJSqJyFq>0@/=G1/`QJY1K G1?0B`=/B ]`},prJ@HD<=0 B=`]OFPF0/`PJY0K G0?=0 B=`]@J0/`PJY0K G0?=0 B=B/4GH}`BG@H }G,qSJ@HD<0B=X=0B ]X},prJ@HD<=0 B=/X_"B}4G3.r3KQ3J2F3>0B=X]1/`QJY1K G1?0B=TG1/`QJY1K G1?0B=X]/f 1/`QJY1K G1?PB= ]"C12B@=l+=h @]B/ t+"q Fp F@HW CP b#_l @=@ݢ@} ]"(B{Zk BezZkBl˲h+@  Ch (B/+h t+"q Frp FStJWBr2b#_(h+@F@@=@ݢ@}0]l"(B{Zk B/?zZkBl˲0=@=!C0=(@0B(hK@}2SBhK4GGh]p]x#k1/ QJY 1K G1?DrFr#~(^0G$ = "TGG{#/Q_/>]R]Gt"5BBݢ& "6v KwJ7G6]'{#J{S`KF]}NuBB@UB@vJ@TG@ !KtqJ4G@ G@J`QHF@D]0@C]=w B? 4GG(]0@#k#~(^0^8~@GG@=/8D=!6 H p`G0b@}0k`@=&@TGGb#_=!L@@4G@BHbecZk} 0`A}=w @? =!B=8D&s" }"C "TGGb#_4GG(]0]8}@P#k#~@^H^P~XGG GP#!&H&HG =( (=[[jX/[ _]TC]=!1 @== ]@N@ C=!1 @==?PC2FJFJ@g@ 0?"8=0="8]"tG0B8bZkj@g@TG B(bjZk&:"G_&jR"tGPBXbeZkg@j@g@tG@BHb/ yZkP#v HP#TGP#!J`qH FP#GPc`J`QH`FPcTj@g@TG B(bYjZk= L@0BG@]H]P}X`#k#GG> "C>CAB2D 0B^(R>AB? F>^Q4GGG #k#~8^@^HGG P !&H&HG =( (=[[jX[ _]T01B00]/@0= L@00B="Cb#_=+D 8b#_0= L@"0=11 B0=0}G8]@]HP#k#~^ ~(G=}01&J&JG@tG{#P_GG] }(0#kp#~h^p^x~~GGPH=@]P G"  @=q`k/` tGGG4GGb#&_HXP=!!Q @ =P= B0=0}s(}0]4GGtGb#_  1@ 0B0 ]5@(}3dJfJ}5B.ݢ,0]GGtGb#_  1@ 00]@B0]41BXXݢ071&J&J0GXtGb#_0@0 01B X]21@BX]X`GG`]"tGb#_ /P=P0QBG8=bs"C<}P8¦"C8"CGG(B0b//wZkPP=!P @ GGGtGb#_H]4H}0 c#dHfH}"/4G    Gh]ZuJ$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;11"p]x}}#k#~(^0^8GGh ?  @nA=kA="CTGG`8b#@ h nAl 4Gtk"`.uSJTJF>eATGGtGPb#h_b#5_X HH?  @h X+1&J&JG\Kt "GGxByZkpB/wZkvABl˲0 8QC8 8+=4PB<<+=}`BP`T#].JF C= .J  =/B/ ]PF}S#].J3`JSF ] XF- 8/8K  8F=Q#].J = ]XPF @,H*GH=P C=C  C8kݢ6vC=<k13B1B8+=4@<+4G&""4GXB`bcZkG(]0]8@#k. SJT JF>n4,A 4H Dà#~@^H^P~XGG0(=@ G( (b8 7B4+.J GH&b"4G B(bncZkb#,_< 0=Q"].J#F8=8ݢB#W/WK88@/ 8=0D]r"}2.2J1 J1D8=8ݢCв8#=.J888D}"3.3J8=8XF 0/0KiGJPCC88C <k3B}8+15B8+=<+C4GBbh`Zk @A =8 0@ 8+=}}C"CTGBb/gZk = @ 4+q.qJ9 G J/ b#_ 8+@F<K]84B8<B< ]}:[C ]CC CtGBbFvZk&b"4G B(bbZk4GG@]H]P}X`#k1,A 1H0DQP/Z PKYG.T JF #~^^~GGX4G( @+  GX 6H&b"4GBbbZk$#"F#AP]!!&H&H@=@ݢBPHP=Y#P],HD``=#B P]r"P}2,2H`=`ݢB/ `FPX#P]8/8K8KF``C8P}"P3,3H`=`ݢ8FP]z#P}/K``XF PP.PJGJP}P`BP}C``ݢC0ݲ@}P]H @C `C@0@=BQF0@=0}!3@@=8"%0= G/Z P]ZXCX HHXD'#XC2DJFJ@B@&"Xc3dJfJ`B`?$ ! =ݢ4Fݲ45#/ 0]/@;u#`0/>=6 J/% 0P l@}"CTGBb/fZk=T D=ߵ"0F-P=1\#\c3gJgJâGF3`JwFFò= G=P]0}[CP]I&"4GBbaZk(&"4GBbaZk(&"4GBbaZk(&"4GBbaZk((/-=$ ]6@J!@}V`J`@/G"ݲ#4Gdc;fKfK `C D}=}hC" BvZkBuZkݢݲ=#C#CTG0B8bOZk` CGpv`Jq JqFpGJuSJFP"9#C8]}aC}=GAv@JpJPFA}tGӢJtSJFӲH#C=]AC]}=;v Ja H!F;]GJsS`JFݢ"C=!C=]= @=4G = ]%@c`J` 4JJ4QB$#C&"4GtGBb,aZk(@$!&H&H=D]"C&"4GtGBbaZk((=_ X0JJSBZ"1`]"CP]PG.xJWJF>P=0 CP=P}4G;,pHA;H0D;P=0 CP=PG.{ HPJF>P]0@BP]PPݢBPݲPG,a8K@HDPݢ0BPݲPG /z HY K:G ?P0@PC@JO@ q3fJfJ0}0B P}0ݢ,aJ@HDP0@PPݢ0/yJXKG?P]0@CP]PTG.uPJTJF>P0@PPݢ06/{JY6K;G6?PP@P0]00}$PPݢGU" BuZkBsZkBPO@8KK00@ P=0A.sJRAJSFA>P0BP/0}"vC/P4G /dJY K$G ?P=0 @P=P]0}.zrJTJF>P}0`CP}PTG/yHXKG?P=0 @P=P]0}@.zrJUJF>PݢPBPݲ000}DQPP=G B/0uZkBsZk$CPPݢG,uJ@HDP0CPP=G.zQJTJF>P}0`CP}P=P@PPݢG/qJXKG?P]0@BP]PGt/`TK[tK`Gt?P=0 CP=PG.wJVJF>P0CPP}G.zHTJF>P}0`CP}P=TGP= BP=Pݢ`"C1B`]"C4GtGb#_($/!x= CTGTGGpb#/_G`= CGTGGpb#_TGGGGBb_Zk(&""4GBb_Zk(C(=`BR"Cb#j_( C4GGtGb#_(TD(G]]}#k.T JF6/ JY 6K;G6?. rJU JF>1 #~^^~GGh G@ "pH GP "GpCP= CT C?"GGX-b#/@C4GHBPb\ZkCP CT]tGHBPbvZkhxDAx|Cx="C|}"CTGGGX-b#@H8"!80JJK2J2GJ2F="C7v K7]TG:!J{S`K;F:]=᳠}aB}B"CC#CGGGGGh.b#/@C` CGGGGX-b#@/ `=T`=1 N1 BBp]CH}"CL"C?"GGX-b#@( CxxGpv`Jq JqFpxhuBTG&"G4!KvSJ6G4x]kzxx=!@x=x=EvJr@JFx"KtSJGx=EYx}x@xxx= Bx=}"Cx}xvJx?#xaKyS KyGxxC xx=!Bx=x}HӢvJuJFӲx#WAKxSKXGWx}Lx=xBxx]x}`Bx}hN5B@C@¦"BT( OB0B(=#C]#CtG[@ZkXXeATGGtGb#_Xh="@/ 0BX]/@d3fJfJ+`hxF J/ r@X¦֢BCtGBbqZkTGx"|r@XBR@"SBx"CCGBb/qZk$1&J&J"DtGb#c_XG]]}#k #~^^~GG T( N0B@GhAhAH+ Gh Cl= C?"GG,b#@h CGTGG,b#@Ӏp"Ct="C?"GG,b#/@Ӏ!= C==GvJr@JFGKvSJG=]#CY} C=!@==]@B]H"Cݢh6v KwJ7G6] :!H`SH D:l=0]}aB}ݢBݲ(#C@v@K@}"[AJpSJPF[}CݢBݲp=8v Hy K9D8]"ZAJpSJPFZ}t}{B@#CPv@JP]GJsS`JFݢB=᳨CH"CxCx=(}"CtGG b#/ _Ӑ/$1&J&J"DtGb#_Ӑ C4GGtGb#|_ Cx$=?C]"C}"CtGGb#/_Ӑ/ =1&J&J]"CGtGb#^_Ӑ/= C4GGtGb#T_ӻ4GG]]}#k #~^^~GG T( N0B@G@+ =H "GCh= Cl C?"GG,b#@h CGTGG,b#@ӈh"C4GTGG,b#@Ӏ/ = &"4GBb\Zk(è=Cp="Ct}"C?"GG,b#@ӈ"= C==_"vJr@JFGKvSJG=]#CY} C=!@==]@B]#À!"C#Wv@KxKXGWtGJ{S`KF=]"CQ}"CBCH]#C]=h!v JpJ0F!]"JsS`JFݢl=!C=]= @=(="C=]vJ"KvSJGC ]=!@==p}qv`J{`K{Fq"JuSJFt=]AC]= B=}"C}ԢvJԲG7!K`SH G7=ᳰ]B]}`B}H"CxCx=( CtGGHb#/p_Ә/$1&J&J"DtGb#;_Ә C4GGtGb#4_ CxH=" C]"C}"CtGGb#/0_Ә/ =1&J&J]"CGtGb#_Ә/[ $ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;11"= C4GGtGb# _ӻÀC= C]"CtGGHb#/_Ә/ =1&J&J]"CtGtGb#_Ә/= C4GGtGb#_ӗ4GG]]}#k@#~^^~GGx T( N0B@GhAhAH+ GX C\= C?"GG,b#?@` Cd= C?"GG,b#5@8 CX=pv`Jq JqFp"JuSJF\=8]}aC}=᳈B]"C]ԢvJԲ#WAKxSKXGWC`=᳈B]`}vJs`JFݢ"6!KwSJ7G6]d}=!@==]@B]"CݢvK=GyaK`SH`Gy=᳈=!B=}B8"ChݲCh= CtGG )b#nu@pp$1&J&J"DtG8b#6_p C4GGtG8b#/_ Chp4GG]]}#k#~0^8^@~HPGG X"T(+ L! @@GhAhA =H G0 C="C C?"GG0,b#{~@Ӑ CGTGG0,b#/s~@"CtGTGG0,b#k~@"C="C ?"GG0,b#/_~@=X!!$H&Hs @8 D=="C(=(}GӢvJtJFӲ(GWAKxSKXGW(} C(="C(=!B(=(}GӢvJtJFӲ(/G_'Z#GwaKyS KyGw(="C(=(]AB(](GvKuJG(]G?'9#G:!HwSJ7D:(0="C0(]}"Cr(B((ݢG6v KxK8G6(=tG'{#G!!JzS@K:F!(]0}"Cr("C(@(((= C(=p}#C(}(=Pv@Jq JQFP(}"HtSJD(ݢ((=!C(=(}(B(P]"C(](vJ("JvSJF(=C!(}(B((]]rv`Jz@KzFr("JuSJF(=8(=(}aC(}(=(@(@}"C(}(ԢvJԲ(G7!KaS H!G7((}(=!B(=(](}`B(}p"CC=P= CtGG b#"@$1&J&J"DtGxb#_ C4GGtGxb#_@ C}=/?C@]"C}"CtGG@b#g%@d=P 0]"C]G.xJWJF>=0 C=};fKfKpC `= .r HQ J2F >}0`B}15JJ"B4GW/{KZWK[GW?0@=p.t0JSpJtFp>ݢ0BݲàTGW/{KZWK[GW?0@=/0p.t0JSpJtFp>PB7JJ=G]"GB"nZkBlZk7C=G.pJUJF>=0 B=}Gs/yJ[sKyGs?0@=!&H&H0@/ /qJXKG?]0@B]14JJ?#B]4G.azKWJF>0BݢU.sJRUJSFU>=0 C=àTG@/{ HZ@K[G@?0B]}/@.xrJVJF>PB HHG0]"GBmZkB/lZkBG.p8KUJF>=0 B=}tGs/wJ[sKwGs?0@=!&H&H0@/ 0/qJY0K1G0?]0@B]14JJ"B]4G.azKVJF>0BU.sKRUJSFU>0BàTG@/{ HZ@K[G@?0B]}/t@/yrJXKG?PB HHݢG0]"GBZmZkBkZkB=G.pJUJF>=0 B=}Gs/vJ[sKvGs?0@=B=0="C11C0]"C"tGxb#u_ C4GGtGxb#n_ø= CGGtGxb#d_=1&J&J= CGtGxb#[_= C4GGtGxb#R_d4GG0]8]@}HP`#/kp. 0JS pJtFp>. rJV JF>(/ rJX KG?#~^^~GG GX# T( L @BG@+ =H "GTGCx="C| C?"GG+b#/{@x CTGTGG+b#/{@Ӱx"CTGTGG+b#{@Ө/ = &"4G@BHbWZkl=C="C}"C?"GG+b#g{@ӰOX#!$H&Hs @8 D=x="CGTGG+b#/W{@Ӡ"C]"vJs`JFݢTG6!KwSJ7G6]}#Cz= C B]GvJs`JFݢ/G?'9#GvaKxSKxGv= C =!B=}B$è/!=#C=_#vHz@KD=tGAAJpSJPFA}"C"CݢBݲCX}#C}x=pv`Jq JqFp"ԢJuSJFԲ=|]AC]}B8]"C]ԢvJԲ K`SHG=CA}B]}vJs`JFݢ K`SHG==9]}aC}=]@B]("CvJGXAKaS HAGX}=!B=}BX CC=8= CtGG0b#oS@%1&J&J"EtG8b#_ C4GGtG8b#_( C`== C(]"C}"CtGG !b#/d@/= ]"CGGtG8b#_Ӹ=1&J&J= CTGtG8b#_= C4GGtG8b#_ӄ0@l+nA2F?tk"q`Fp`FUJWB.b#x_ӢèC(= C]"CtGGX!b#e@ =1&J&J]"CtGtG8b#_= C4GGtG8b#_Ӂ4GG]]}#kF`#~h^p^x~GGH@ G GT( N0B@GTG0=8 CGb#_/4G@=8=X FR ]"CP]PvJuJFPTGxaKyS KyGxP# PP=!BP=P}GӢvJtJFӲPGWAKxSKXGWP}0 CP=PBPP]vJPGKvSJGP=P]P@PP=PBPC]"CXX]"tGGH b#a@@ 8F#10=8}x`F`@/;"CPP7v K7P]tG:!H{S`K;D:PP=P]ABP]P}vJPݢG6!KwSJ7G6PP=P]ACP]PP= BP=C}"C``]"tGGH b#Pa@@@}`$0 @$@"C4GGtGb#_4GGh]p]x}#kp#~`^h^p~xGG T(+ L! @@GhAhAP=H G= C C?"GGp+b#/ y@ C= CP?"GGp+b#y@@ CXX=pv`Jq JqFpX"JuSJFX=8X]X}aCX}X=XBX ]"CX]XԢvJԲX#WAKxSKXGWXC`X=XBXX]}vJs`JFXݢ"6!KwSJ7G6X]X}X=!@X=X=X]@BX]C@"C "CtGGHb#5@XXXNeATGGtGb#_4GP4GGP]"tGb#_Ӏb#_@ CXXGpv`Jq JqFpXTGJuSJFX+8X]X}aCX}X=XBXC@]"C }"CtGGb#6@?&1"F$1&J&J"DtGb#_ C4GGtGb#_G`]h]p}x#k`#Gh> @hG~8^@^H~PX`GGGh=h=h]@N@B#CaDGG#Gr@]h  G GB !0]R6@J/@&b"4GBbJTZk?G =0b#R_ =(pFb#_(C "1"CTGGdb#]@/p=11 B@CQ.QJ N1 BC1bs"qBT(NB0B(0(="0]"tG[/@Zk C4GGtGxb#\_Өb#_4GG8]@]H}PX`#/k@#G> @hG~H^P^X~`hp޴xGGG==]@N@B#CaDGG#Gr@(](  G GB !0@"KG&6 K/ &b"4G8B@bSZkC= CTGGGG*b#w@&j"4G8B@b/SZk="CHb#6_ ԢFtFԲC,=991 CP&!&H&HG0=8]08=[[`X[@@=C!C/ & "4G8B@bSZkqTƠ=! L! @@!==1"_ ]]@}s(kxF C0"CTGGxdb#@JXF C( CTGGxdb#@?F C  CTGGxdb#@4F/ CH CTGGxdb#u@(xF/ C@ \Q8~$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;11P"CTGGxdb#i@F/ C8¤ CTGGxdb#]@C¤ CTGGxdb#T@  = C4GGtG0b#r_`b#_4G& "4G8B@b/SZkGH]P]X}`hpݤx#k#~0^8^@GG(@  6J/&b"4GBbRZk?C= CTGGGG*b#v@&j"4GBb/RZk-=!=]"Cb#d_4 ݢ44 4 =0! ==0K0Q }0k8FTF¦֢B,4G&b"4GBbRZkG0]8]@P#k0#~^^~cGG4G``= C=c8"c+GG< G8"`} h nAl+4Gt+"- Q.sJRQJSFQ>4 P@<0 0QB8K6@J/@88@<$==Q"],HDxxB]r"},HxxB x=0F}S"]3,3H! H!Fx=xCH}3"=.Jxx]8PF/@=!"=,Hxx]XPF @=1,1H GHPBCxx=C@=HXF/x@]0 =4+!1@ @ @p}"3,3H#Dx=x@0"=0,0Hx=x@/ x=0F}"S.SJ2@J2Fx=x=C0=}S"]3.3Jx=x8F@"] , HxxXF ]2,2H@GH=P B=Cxx]C(]0UB+(= B(  , H 1@PC2FJFJG]}=[[/`X[C@3T#=A.AJ L! @!B! = "/ -]2.2J(+p}"CGb#)_p/p=7&@/ pN0B0C0"1"0Bp4G[@Zk#&"4GBbQZk& "4GBb/QZk'& "4GBb/QZklnAD4Gt+ 0 .qHPJF>C k$kmAnAdAtGb'@ DtDxbCaA,cG]]}#kQ. JR QJSFQ>,@ HD,@ HDa. HP JF>#~^^ GG CGGb#_ aAD=4GB`K.s JRKJSFK>PuAݢG6/zJY6K:G6?}0`C}G@.sJR@JSF@>0Bݢ4G6/zJY6K:G6?=0 @= .Q J >]0@B]ݢ6B"6B˲0k4sAuAfAtGxb@G]] 0#/kK. JR KJSFK>ð#~8^@^HGGG==" ="!?D0="1"C4=0= C="C]"C8"a3fJfJ 6J""! GCGHBPbbZk C4G(B0bcZkG8]@]HP#k#~ ^(^0GG= B=TG(B0bNZk/ ]&B"GtG(B0bPZk$B 4GG ](]0@#k#GGdA>fA D/ 0B HH>DGG #k#~^G _&2F GGTG([0{/bZk4GG] #k#~P^X^`GGP?$(= / "H/ 6J/b#_ӍG=P="C =0}"CH}HGvKvJGH=TGHzS@KDH=P"CH=]"CQH}aBH}HHݢBHݲ8KK "9#C$=b{;gKgK}"C(]"C }"C"C0"CGG@BHbcZk0D/"!?D="1"C =}"C"CTG0B8bSaZk0D "!?D="1"C =4GGTG B(bNaZk CP"! CG4GGGBbbZkCHH p"1"CH]GtGBbOZkG6$H =="C4G`BhbaZk4GGP]X]`p#/k#~ ^(^0~8G#GGG==" = vH/4GKGGQs=HR]JSFQJ@6J="C4Gb#_#1&J&Jh@= C> (GGGGG B(b`ZkC@#1&J&J=} `TGGTGBb`Zk # &0D # =$F BR"C]GtGBb/LOZkG ](]0}8@#kp#~h^p^x~G#GG4G = #v"J 4GO@"t! C="C4GtGGpb#_/k=8 D/g "CN#"CGGG0B8b/w`ZkC``WH]_F@FH]HVJH4GHݢJsQ`JFHݲGHKsq`JGHL#1$J&JPC#CH}#C~ (GtGGGGBb/`ZkC``P#1&J&J`=`} `L#1$J&JP"C (GGGGGBb`ZkCXL0JJ4G`Bhbq`ZkCX`C4GPb$ @` 0JJP BR"CT]P"CL"CGGG0B8b `ZkC```G@vJr@JF@4G@ݢJrS@JF@ݲG8](#C<TG(=v Hz@K:D(= 0J" 1!JF(}aJpSJpF(}H,0GvJvJF4G=!KrS@J2G=]"C]G=v Jz@K:F=GJqS JF  CL#1&J&JP"C@"C޶= C >(GtGGGGBb/_ZkC``P#1&J&J`=`}`L#1&J&JP"C8"C"9> (GtGGGGBbj_ZkC``P#1&J&J`=`}/ `TGGTG`Bhb_Zk #@&0D #+L#1&J&JPC"C (GGGGGBbA_ZkCXL0JJ4G`Bhb/_ZkCX`=$D "C`]GtGBbMZk`Gh]p]x}#k#~^ ^(~0GG GTGGTGBb/?_ZkX( #"H% 6J"c "1#B`BR2GJGJ]"C"C"CTGBb_Zk} C  CGTGGGPBXb_ZkG] ](}0@#k#~^^ ~(GGGX# J 6H#B 8b#_b#_ ?$D 4G4GG]] }(0#k#~^^ ~(GGGX# b#_= C/ @ &F GGTGxBb_Zk4Gøb#l_ ?$D 4GG]] }(0#/k#~^^ GG8 CGGtG(B0b^ZkC "1"C]GtGBbMZk 4GG]] 0#/k#~P^X^`GGP HHG08=08=[[jX/[ _ ]T  01B((/=(N0@!/" (=( CGXb#_(= L@=(1=}`ԢTFԲ(OB@H@="H]"tGGb#(@( 1@((/GP]X]`p#k#~(^0^8~@HGGG@Gr@4G0B8bIZkl@4G0B8bIZk=!La@'@4G0B8bIZk0@wB#=}CBtF/`5Bb#G_ HH }" ="TGGb#_Hbc`H` CGTGb#_d#1`@dX$ 6J $v"J D@bsSB@b#(_=@/@b1D4GG(]0]8}@HP#k#~^ ^(G#G + H/* +1&J&JcATG> (GGGGGBb/s]ZkC+1&J&JcA (GGGGGBb_]ZkC 0JJ4GBb]ZkbA+8D(BR@J@bs"CGTGb#_Өb#_4 CGGb#_ VH"D! ClAmA|k~+>k ~rA(>GtxGb#_(VH= !V"H `b#}_b#_b#_4GG] ](0#k#~^^GG /"D! CGGb#_+4 D+GGTGBb7^ZkG]] #k#~^ ^(~0~8GG=! G`$ "0,0H@GH]@+ H =T CGb#b_b#_ G="l! CGb#W_b#_t G b@ G#!?Ft F!BRca@,GGTGBb/]Zk4GG] ](}0}8@#k,@ HDà#~@^H^PG#G0(= ]0( @]]( /4Gm=]B]|R0@B|@6J="C4Gb#_H#=!1&J&JB8BR"C ݢ޶ (GGG(B0b)]ZkC88884GBb/JZk2=!"q.Q. JtJS qJRQJuFTFq>Q>ݢ61&J&JB8#C ]:@C^@ (GGG(B0b\ZkC8884GBbJZk4G]̈=$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;11""G@]H]P`#k#~^ ^(G#G4GVJ/% 1&J&J@("C@^" (G4GGBb\ZkC7"1"C]GtGBb/JZk-F v J  1&J&J@ "C@  (G4GGBb\ZkC "1"C]GtGBb/\JZk4GG] ](0#k#~H^P^XGG0 , HGHuA=K@J @+ H Ø HHxK=ABx+t 0@t PBR6BJ@= C=TGXb#$_ , HGH((] @k`J `Hb#P_(="! CG(b#_4GHb#E_(="! CG(b#_(t /Gb]@4G=/ 4GB#PuA8]8"8.JF@@=#C/ 8]z#8},H@@=/B @]PF8}"8.J3`JSF@]@C=! b{#CGG(b#_8aA@=@=1@=@}aAtF `80B8@#8/TGzXK:G8?8}O`b#^_L  Cb# _888P ]raA }bB"C BTGG@b#Y_88/ 8]&:"GtGBbIZk5 =0 =_"hQ } ЎBl 4Gt"/4/yJXKG?=} 4K"Bx^ZkB\Zk =F4FH =!C,GGTGBb/[Zk0k4fAb#_4GGH]P]X`#k .Q J!F.P JF%/ JX KG?#~^~ G`{#_4GG]} 0#k#~ ^(^0~8~@G#GG} ",HGH]?@="CGb#_k`H*`+1&J&JcATG^ (GGGGGhBpb/;ZZkC+1&J&JcA (GGGGGhBpb'ZZkC 0JJ4GBbZZkb#_4Gø"! CGGb#_bA4"! H/ BR"CGTGb#@_ H=2@d@TGG`0b#q@TG$"]RB@c"CTGG`0b#/b@@= CTGHBPb\Zk"!@BX/ 0JJ4G(B0b/YZk # &0D #X#6 J/+ L0JJ4G(B0b/YZkL#1&J&JP# C (GGGGGhBpb/YZkCL0JJ4GBbZZkC #@_&2F # &F b#a_0k4fAb#_4GG ](]0}8}@P#/k0,A 0H D*#~^^G#GX`}`=?! h=4GGTGBbYZk`=C! ,HhB@PP]r.rJ]"C=}P]"R"@B/ ]Zk8B[Zk "!!'H'H= ¦"Cݲ#C@=#CGGGpBxbbYZkCpp "1"Cp]GtG B(bGZkB0= Cp=p=GvJr@JFpGKvSJGp=(]#CYp}p@ppp= Bp=@=1&J&J0"CGGGGG@BHb^[ZkCpp "1"Cp]GtG B(bGZkè? `= ="C`"TGG@b#_pp/ p]&:"GtG B(bGZk"! H ("C =TG`b#_ ?$ ! v Ja H!F ]"JsS`JF ݢ@6v KwJ7G6 ]D =!(F! ](}JsS`JF ݢ"`  =!C8  ]AC @ }mC4GPBXb]YZkX C =  = ]dvJdTGdТJaq HFdвGdKaQ HGdh = ] } vJTGJsq`JFG; HpQJ0D;p  ] p=!OYBBBC8vJ8TG87!Hsq`J3D87G8آJaQ HF8ز<p}0`Cp}p=w B?=4G"pB"hB/aZkC#C@GDP=PP=]"C12BP Bp="Ct ݢBp"CTGG(0b#@ "L! CGb#_6H= C4Gb#_  1&J&J =#@`"C "C޶ (GTGG@BHbXZkCpp "1"Cp]GtG B(b/FZk +0 @++= B/ Br4`Fr4GG]] #/k#~^ GGA ,. HP J0DJr#_= }}Xr#_}4GG] 0#k#~^^GG 0JJ4GXB`b/WZk + &0D + +"J/ k&tF k 6J/ 'F 4GGTGBbWZkGGTGBbXZk4GG]] #/kGG4GGk#~ ^(^0~8GG}? . ,JA HFH @=\0@ ( = NC`1@G[@ZkG b @4GG ](]0}8@#/k#~^^ G#G+1$J&JhA"! C? `AG (G4GGG@BHb/'XZkC "1"C]GtG B(bEZk4GG]] 0#k#~ ^(^0G#G@ HH@"C = CN `AGGGPBXb3WZkC "1"C]GtGBbEZk&L+1&J&JP"pApBR"CN#xA (GTGGG B(bWZkC "1"C]GtGBbEZk4GG ](]0@#k@#~^^~G#GR a-aI GHhG]}!}}P . J`GHpp=? L+1$J&JP"pATG> (GGGGGBbVZkCL+1$J&JP_"rA (GGGGGBbVZkCL 0JJ4G`Bhb/VZkpt /Gb@b#O_4G4GGTG`BhbVZk x"C"TGGb#/p_Ӑ/ ]&:"GtGBbEZkØ"! H @"Cx=TG b#_x?$ ! v Ja H!F x]"JsS`JFxݢGx=ydGyxJx=_"`Qx}xBxxݢB ղxB4GBbVZkxx=xx=d`v`Jd`TGdJ`qHFdGdJ`QHFdhxx=x]x}xv`JxTGJrq@JFGHaQ HDxݢxx=x}O8BxBBB8vJ8TG8Hrq@JD8G8J`QHF8<]0@C]wBGXH"C\@"C`ݲL+1$J&Jx=#@X]#C^ (GGGGGBbUZkC x=Q"r.rJ/@G J=ݢ0TG04G(Hzq@KD(G(J`QHF(0 C,G(=v Js`J3F(=L"C "C#C=#C]z/zK=! ,H".J"/KGBb/VZkC4G ]AJpqJPF ]G JpQJF "C$G vKvJG L+1$J&Jx]CC(}#C~ C8 C  C (GGGGGBbMUZkC x=Q"r.rJ/@G J=ݢ(8 =v KwJ7G =$] };fKfK[C@q@GPp@GsHRTJSFWBP/j` .JUJPBvJF >xB #CTGG.b#/@=@@qDrpDtJSuJtFWBr/PݢPBݲx C=#CTGG.b#/r@xL+!$H&H v Ja H!F x]Pkrx@¦"CGpb#_ 0@  =B"Q4@FQxb#j_Ӏ Jb#_4GG]]}#k!.Q !J+FQ+,A +H0D.T JF.T JF{P0H_FSFPr0JFtFrð#~0^8^@~HG#G0JJ`+fIfI}= p=(b#_4G H/] 0JJG00B] BrF  ݢBvKuJG5JJB. 1&J&J@BZ#C !&H&H@4@> HH" B (G4GGBb;UZkC(( "1"C(]GtGBbCZk^4G\ä ! / @PF@} 3tBvJs`JF&"4GBbBZkCØ 0@@v@Ja HAF@`3fJfJ tB/-` 1&J&J@¦"C8KK@C@ HH @C (G4GGBbTZkC  "1"C ]GtGBb/BZk=a(b#U_4GG0]8]@}HP#/k#~^^ ~(G#GPGL0JJ4GpBxb/SZkL#1&J&JP# C (GGGGGBb/SZkCL0JJ4G B(bTZkC #@_&2F # J &F â6J ?'G 4GGTG B(b/SZkGGTGBbTZkG]] }(0#k0#~^-$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;11i"3^^G#G@G= ="= P C=GvHpJD=$"JsS`JFP"! C ]AB]}GvHtJD="AAJpSJPFAH}"C`BGvHq JD}"JtSJF "C=@]"CQ=!@=B"C4G@BHb{]Zk/P="C]"CGGGGPBXbqUZk8D &"4GBb/AZk$ = "C4G B(b/]Zk C0"! CTGGb#(_/G004G=Xk/e`0"C0"CTGGb#_/`"! C000"11'J'J0B20bsoB/!`8/HJ/ &"4GBb~AZk$ z"!1'J'J@}" ]"GxBGXZk ?'G "!!'H'Hx="1"C|=x}"CG"ݲbAbA="]"GBbbZk/ P"1"C]GtGBbGAZkEpb#_ӈ4GXK6@J@hbs"C0 "CTGGb#_p"! C0 00" 11&J&J0B 2b#_Ӏ J +"J XK/@}} À=  +&0D +8"1V J pb#_b#_b#_4GG]]#k#~^ ^(GG}X+/ b#_X 6Hb#_G B(b/RZk`E/"!6 H P"C}GGG0b#V_}GGAb#!@G4G@BHb/SZk0 fAF]2BB] ,/}b#c_}=!=4G4G@BHbRZk HPb#H_ӸG] ](0#k#~0^8^@~HGG4G4GGb#_= 0"1 &"4GBb@ZkXb+4 D+Y" PBR"C "TGGb#/_=/ ]&:"GtGBbd@ZkPbk?$ ! +v Ja H!F+Y_"JrS@JFTGH vK TGKAKwqJWGKG HwQJD  +v J +TG kaJpqJpF kG JpQJF $@+v K@+TG@ HxqKD@ G@k`K`QH`G@kDXK_FXKcAX"sATGGb#p_X p"! CdA4GtGGpb#/_ cA4G@BHbW}ZkdA4G@BHb/Q}Zk=?D=@"pAH?"qA]"CtGGb#_/X TFX @?"qA4G@BHb7}ZkX HH?$! =0b#_Y P"C "TGGb#c_FeA(+eA,+fA0kfA4 ?'G k $`G k @?&F k&tF k b#p_ +_&2F +}`b#_0b#_X cA4G@BHb/|ZkdA4G@BHb|ZkX 6H@? aA4G@BHb|ZkY!(}P"! C("TGGb#_G0]8]@}HP#kp#~p^x^~GG@ G88 C<@8= CTG0B8bVZk4GHHK"wJF2BP0B1.0J H} w`J`FBSB.JPHxF7F/4 F@k;fKfK`}+X=@F/ "81"Ch=k`"C TGGXb#c_hh0JJ`h]RX]&FwAXG`FsAX]G`4GPCH=h}"Cl"CGG"b#b@/h=!&H&H`=l=X=4GP}P/`"CH=#C/ ]H}xG:,pzKA:H0D:<=0 B=/}G.wJVJF>0CH@ =Ha/qJ[aKqGa?]0@B]HFF.xJWJF>=0 C==HJA/{JZAK[GA?]0@B]`B `ݢ/`JXKG?=0 C=/`?"B]4Gz.tzKSzJtFz>0@ݢ`6,yJA6H9D6<=0 B=]TGR/{rJZRK[GR?0@=`ݢ/4 /yJXKG?PB]}"C2SB8]]#C<]`0X=4=@@=8=#C0}"CGPBXbQZkhhH=0 BH=H}]oB/h4GGp]x]}#/k/ JX KG?À#~`^h^p~xGG8 G8==(= C?"GGGx"b#b@(b#_Ә=!!$H&H0=0= @0}xeF8mF6dF7JJP+H=BaF`@ CX / ="C TGGb#/<_XX0JJPX]RH]'mFwAHGP cF/`sAH=GP}4G@=C0=X]"C\"CGG`"b#a@/X=!&H&HP=\=H=4G@}@/PP8KKB=99&K&KP=P=P}H]@BRZk BEQZkݢ֢ P',aJ@HD<P0JJB=11&J&JP]12B}sPtB" B/#QZkݢBݲi4GG`]h]p}x#k, J@ HD<À#~X^`^h~pcGG@8=0]4G]"C]ch"c G@$ GP]="CP"TGGb#_HH H]&:"GtGHBPb_}Zk}&"Kv@JpJPFKGvJs`JF@ݢX˲4GP @]zhb0{GH}H= HhC00.0JpApApApAԢvJԲTGKtqJGGR@KpQJPGRH 1@HH=?0h"CtGtGG"b#/ c@8h"! C4GtGG"b#c@8(= CGGGG0"b#a@(`4G4GGb#8_(}}(T (]dRdK(00(ݢ4֢4˲l H(]ZlK(`(=(! 8=0]4GtGG8b#/8_ lA(=!TGG$b#l@0b#_P cGX]`]h}p#kp#~p^x^~cGGH@=8]4G]"C]c"cH`/`8]R2DJFJ@4GvG4GGPb#_4GP }8BR"CtGtGG!b#b@@@"! C4GtGG!b#b@P T ((]/ @(}(s/ `@=8]TGtGGb#/Ԧ_ 0FPP]/@P}C0.JsA4GPBXbyZkP 1@PP/lA4GGH#b#9j@(@XXlPP]KF@P}X}XPݢl֢lղPlHX+LK@#`}iA`"TGGb#_k+fIfIh}= Ch"TGGb#_ cGp]x]}#k#~X^`^hGG( =]@"C\ KAJ'@ ="CGGGG!b#`@/ (=1TGG8%b#/o@(=1TGG`%b#`o@Q&2"4G0B8b{ZkR+#HI ="C}"CGGG!b#v`@ CH= C@="C8"CGGG>b#b@PPP4G0B8b{Zk/H=@0D &J"4G0B8b{Zk$=/ (H=TGG%b#no@(H=TGG%b#o@&2"4G0B8b/{Zk4G&""4G0B8b{ZkGX]`]hp#/k #~^^~cGG=x]4G]"C]ch"cH]rG4GGb#_4GP }xhBR"CtGtGG b#]a@Ӏh"! C4GtGG b#Ta@( / =x]tGtGG8b#/_h Fh `+p=0"C4"CtGGG0 b#_@&""4GHBPb/D{ZkGGTGGb#/p@ H/  ="C$}"CGGG0 b#_@/$ J\]"CGGGG0 b#_@\=!P=PKCJ!@X"C\"CGGG0 b#_@X= CT="C}"C"CGGG=b#@Ӡ4GHBPbzZkZT$P=FT]F4GH}p0"CuAGtGGG(b#wz@/|$= GGTGGb# @GtGTGGb#/@tA4GBbxZktAh"! CGGG(!b#/jd@p4GGh(b#z@`nAG=="]"tGBbTZknAtATGBbyZkt hh`=0h]G".vtJUJF>04]dkh#!C!DGGGB/PZk"A"GGBOZkBNZkpݢp HxSKD p=t(p5_&2F5p}"CGpb{#CTGG?b#@C" H] @0}"C&"4GtGHBPb/XzZkH=/ p(hh]R8]$9p "CvAtGGGG(b#y@/&""4GHBPb:zZkp=(!h=h=1(=GX}P"C\X"C\pnA8]0}#C( = C#>G>4G>X= C>GTGG b#_?P/p=Gb#_Ӑkp](Rh]hPPݢ@&B=P?'8C9GX]P= C\=X"1"C\+pnA8]0"CP"#޶tG޶4G޶X"C޶GTGG b#m_GG8 b#@Gp4GxBbLZk\p8=TGGx$b#(m@Ӑ_X$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;11b"D p4GGb#_#&2"4GHBPbyZkp= !!$H&H!)@=p=(1)B=p}(s}p(tA"CTGxBbQZkxb#J_P cG]]}#kp#?G~p^x^G#G=`X=P]H}@8@=1}aB/`4GØBG==`K0]H.0H=tGGGGp'b#x@&""4GBb`yZk<0((( BR"C\K0nA8]} HG@ GtGGxb#ר_ð C\ 0nA8]}hh"tG@}~= >GGtGGxb#_04GBbLZkGp]x]#/k0#~^^~cG#Gx=p]4G]"C]c"c ]rG4GG0b#0_4GP }pBR"CtGtGGb#^@x"! C4GtGGb#^@( x=p]GtGGpb#/0_h Fh `+h=xh=@"CGtGGGGb#˷_PP5+v#J/) @] @@=1&J&JDG4G"PB"0BSZkC@GD @=1&J&JDG4G"8B"0B/oSZkC@GD &R"4GBbxZk&*"4GBb/xZkGGTGG0b#/ @h(``HBR"C\Kh4GG$b#/o@ H/ x0="C4}"CGGGhb#\@/4 Jx\]"CGGGGhb#\@\=!(=(KCJ!@xX"C\"CGGGhb#\@X= C,="C}"C"CGGG=b#ŭ@Ә4GBb6xZk%,4(=F,]F4G } 4ݢ5h0#CtGGGGP'b#w@&""4GBbxZkh=(!`=`=18=bs"C\kGX("C\hnAH]@}#C80= C>G>X"CGTGGXb#_=(/hx=GPb#_ӈh](R`]`((ݢ@&BY(?'8CUBZ#C\KGX=(="C\=hnAH]@"C("޶tG޶X]#C^GTGGXb#O_GGp b#@h4GBb/JZk\hH=TGG#b#/ k@ӈ/h4GGb#_ӎh= !!$H&H!)@=h=(1)B=h}(s}h(tA"CTGBbNZkpb#1_q&2"4GBb|wZkkGtGTGG0b#/ @h HH @h( Bh](R]h(tA"CTGBbNZkpb#_tAoAoAGGGPb#/[@x )GX=(="C\=bs"C"CX"CH@"Cx+|KGGb#\_GGp b#O@hH=TGG#b#Bj@Ӑh4GGb##_h=0"Ch4GG0#b#Yi@ӈh4GGb#_\P cG]]}#k#GGx %|  | ,H@x 1@x x+B>!!@ >| | >@| x+>!!Bx+|  | 4GGG #k#~X^`^h~pcGG@8=0]4G]"C]c"c@`G4GGb#_4GP }0BR"CtGtGG b#\@8"! C4GtGG b#\@( 8=0]GtGGb#/_ӽ`+(=+"J hK@&2"4GBbvZk(=!"H/ $ h+?Fh+KBJ?@8H"CL"CtGGGb#/Z@&""4GBb/hvZkvAH= CL]tG0B8bMZkuA4GBbsZk H8H="CL}"CGGGb#/Z@uAH= CL]tG0B8bMZk(vAGtGG%b#t@(vAGtGGG0&b#(u@8(= !!$H&H!)@P=(=(1)BT=(}(sH}((tAP"CTGBbMZk HH+tAoAoAGGGb#Y@P Cb#_ P}"CuATGGZb#@H"HH]_kbJ`&s"&*"4GBbuZkGGh 4Fh hK@FhKtAoAoAGGGb#Y@0@b#_P cGX]`]h}p#k0#~^^~cGG`X=P]4G]"C]c"c``G4GGb#_4GP }PBR"CtGtGGb#[@X"! C4GtGGb#[@( X=P]GtGGPb#/_h Fh `+H=XH= "CGtGGGG`b#_005+v#J/) ] @ =1&J&J$G4G"0B"B7PZkC@GD =1&J&J$G4G"B"B/'PZkC@GD &R"4G`BhbTuZk?&*"4G`Bhb/LuZk7GtGTGGb#/x@p C\ H4GG#b#l@H(@@(H] R2DJFJ2IBp]H(BtHݢ(֢hݲH( tAp]#CTGBb/LZkXtA" ! CGGG@b#^@ HX8="C<}"CGGGHb#/Y@h C8=pv`Jq JqFptGJuSJF<=8]}aC}=᳈Bh]"CtAbs"CGGG@b#^@H(@@(H8}"CGtGGG0&b#at@H=(!@=(=@]R2F 8}"C&"4GtG`BhbtZkH4GG#b#0l@tAoAoAGGG0b#{X@x G]"C]p"C"C"C( #C#8#Cx+|KGGb#_GGP b#@H(=TGGh"b#g@ӈ/H4GGb#x_ftA8= C<="CtGGG0b#?X@nAGH]="(RtGBbKZknAtATGBb/yZkt @@GP"r.t2JSrJtFr>8ݢ<]dk@=_# CDGGGBaJZk"@"GGBPIZkBGZkH=p !!KwSJ7G !H@ݢ(H4GGp#b#j@\GH= !!$H&H!)@p=H=(1)Bt=H}(sh}H(tAp"CTGBb/KZkPb#_P cG]]}#k#~P^X^`~hcGGH@=8]4G ]"C]c@"cH`G4GGb#/!_4GP }8@BR"CtGtGGpb#Y@@0"! C4GtGGpb#Y@( / @=8]GtGGb#/ _0h+V H &2"4G B(bsZk&rA8b#_/k3fJfJ `rAuATGG`Yb#@/?"=}`hFh& "P˲P 8b#J_P cGP]X]`}hp#kp#~x^^GGH 0@@ CDH@ CTG0B8bJZk4GPPK"wJF2BP0B1.0J/m P} w`J`FBSB.JdXPF0=-C`=Gh}F 0]NB`]Gh=F` "C`GhF@0 @`Gh=XF@0=*B`=Gh}xF0 C`Gh]F`0=,@`=Gh]xFk3fJfJh}ˢ`ݲF/ HHhk`}|F+1&J&Jh=`sFˢ6JJhݲ+`=jF/@+!&H&Hh= ``xF@k3fJfJh}`WFTG]#C`]Gh}MXF 0]TR2GJGJ]"C`4Ghݲ@F 0=T99'K'K=]#C`]4Gh}3XF @0}Ts3gJgJ}"C`4Gh&xF/ 0=T99'K'K=]#C`]4Gh}xF `0T4wJJ"C`ݲ4Gh F 0JJh+`=4GX]X}`h"CPݢB =PG.yKPJF>=0 B=/]G.`rKTJF>0BP=/@ P0/qJY0K1G0?]0@C]]P}oFpFr/urJ[rKuGr?ݢ0BݲP= J/y0JXKG?0@h]PB @}hs/aJ[sKaGs?ݢ0Bݲ/h="7B 4GX/r8KZXKRGX?=0 @=h.vJPJF>0BTG /z@JY K:G ?=0 @=h/2.{JVJF>=P B=]"C @@=#CD=h=8=`<HH=@}#C8"CG@BHbqEZkppP=0 BP=P}]oB/p4GGx]]#k. JV JF>À#~`^h^pGG@@0 C?"GGGxb#/fV@0b#C_è+==11$J&J8=8} `H8إFBPGX=F`@PGXF@bs"CP}GXݲF/=,CP=GX}XF  BPGX]xFݢBPݲGXF@ @PGX=xF K2FJFJX]PئF 8KKXKP]~F`+!&H&HX=+P=uF/`4JJXPkF HHXkP}bxF+1&J&JX=kP}YF/TG=#CP=GX]NXF `T0JJ`r{$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1&"U]"CP]4GXAF/ T8KK=#CP=4GX]3XF =T11'J'J=}"CP}4GXݲ&xF T8KK=#CP=4GX}xF/ ]TR2wGJGJ]"CP4GX اF+!&H&HX=+P=4GHH= XX}4JJtB`ݢ֢6JJXݲX=X}P]@BEZk BeDZk=9 Xݢ' ,xJA H8D <X0JJB=11&J&JX]12B}sXtB" B/CDZk=!C=4GG`]h]p#/k , JA H8D 8=!1&J&J8]B}]"PFJZkC@GD= G*8}c#fHfH }8=!$= = H }"Cp"C "CH"CGGf#/d_ =$}]GXF/#GZkH= =L$4GGGP]X]`}hpxݤݥ#/k#~ ^(G=== C  CGG{#S@G =G ](0#/k#~^^~޴޵cGG=]}tG00="C=((}"C} "CcFR"]c=GtGGG$f#}o@GØ=!_&2F!}&FTGW@KxQKXGW4GGpf#`@Ӡ= Ø=q&tFq"./JXKF5JJp]GK5J5JUGp]}({{H}ѠG0qK@HD0TG3]"@FvHTJFG2"FyHUJF/4ѠG(;pKA=H0D(; TG+=" Frt1HSqJtFr`G*"Fw6HUJF,ѠG ZpKB]HPD Z@TG#}#`GQs[HR[JSFQ/@G""F uTHA4H5D  $0"CPC=(YtG@FHfFZk0]"FHFH"I@h]4=)@l=h="C@]"CD}"CGGGf#/S@/]?&F]TGJsQ`JFݢpt=wv`Ky KyGw4GFf+BZk0] C4G0F8fslZk(] C4G0F8fmlZk ] C4G0F8fglZkG>h] CP= CT="CGGGf#/R@/]?&F]TGJsQ`JFݢpt=wv`Ky KyGw4GFfAZk0] C4G0F8f7lZk(] C4G0F8f1lZk ] C4G0F8f+lZkGDP= C&1"C@]"CD}"CGGf#f_/"@D=P"FHFH=dqGWf#"@C88]B@kVbH/d3fJfJE4Gp"GxFEZk0Ø7?$!G7]TGHcQ`HD=p]t}PvJs`JF4GFfAZk0] C4G0F8f/kZk(} C4G0F8fkZk C4G0F8fkZkGØ<%HHDDP} C C@= CD}"CGGf#/_!@/@} C]H= CGfw@ C@] Cfc C}GFfAZk( C ] CTGGXf#M_X} C}(]%v Hb@H"D%GpaJqS JqFp,ݢB=]@C]X} C0 CGtGGf#W@Ә]b$dDbTG  JaQ H!F ]}ptvJuJF0= xaKyS KyG x]4}(b4GGh;f#C@Ә4GG@!f#/c@0] C4G0F8f7kZk(} C4G0F8f1kZk C4G0F8f+kZkH]E4GcG]]}ݤݥ#k%-5=DLUP#~X^`^h~px޴޵GG4G=fc }mA(= C ] CtGGf#_PP]/@PoA(="CTGFfEZknA } CTGFfDZk`K@]@(= C ]"C}"CG f[@HH}/`+V"H/ @="C ]"C}"CG fI@HH} `@(="C ]"C}"Cpf#J_HH}`@=TGGf#/`@HH}/T` F 4G=@] R2DJFJ2IB8]@(B<8"C0"C4#CGGGpf# Q@pA0] CTGFfDZk8} C0] C4 CtGGGpf#P@qA0} CTGFf/DZk8] CTGXf#_KT@DK F 8="CGXf#_/kaDk8= CGXf#_kpDk+6 H/! l HHK"FHFHFR"Ckp+G0Wf#T@/K@DKTD F 4G&3"4G@FHflZkGX]`]h}pxݤݥ#k#G H> @hG~(^0^8GGH=T+=J/&:"4GBblZk>:H== @# H  ]Y@B/@} NCH"wJFBTBu.tJ` 71B =Y C/?#}=/ H/4GP]@BG &r"P4GBbslZkG(]0]8#/k#G8> @hG~(^0G8=T+=8 =Y C  LC8"wHD7@@ @!, H/ 81C  YB 8= 4G@BG$r @4G[{+lZkG(]0p#k#GGGT ^@~`+> 0JJB/> q3dJfJ^(R$G]/AZk]Zkޢ$(G @AJpSJPF @~(s~^xZ~\{[C@x&B/xJ?&Fx^x~sbGs^ZZvBK/@ޢT֢vJ/>1 J @BF@G #/k#~8^@^HGG(`  = lA+TGGb#Z@ GTGG b# _@00 4GG(b#_ӣb#z_tA PC =(YtGBb.CZk(/%H"! Cd++=}Ps3fJfJx`F`"CdݢP֢6JJXF/ @"CsA4G&js"GBb/pkZkp GTGG b#/^@ 4GG(b#__buA =P$@ ](RtGBbBZk HH @  B]"C}"C "CGGGb#/O@{A= CTG@BHbBZk C= C ="CGGGb#/N@zA= CTG@BHbBZk C= C ="CGGGb#/N@yA= CTG@BHbBZk C= C ="CGGGb#/N@|A= CTG@BHbsBZk4GG8]@]HP#/k`#~^^G#G=="CTGGGGb#/rO@=TGGb#/$_ӑѠG0qKPJF08]"Cp]pGvJuJFp?#xaKyS KyGxpP= C p0="C0p]ABp]ppBp8"CGGGGGGPBXbF~ZkCpp 0"1"Cp]GtG@BHbjZk(=?D(=(="CTGGb#_(0=!&H&HH=P="CL=H"CTG B(bOoZk5(=?D(= ="C(]"CtGGb#f_0 HHHP"CL]R}s3fJfJSBq@Fp@FxJWJFW C/]}{P`C:v H{`K;D:H="CTG B(boZk=TG`Bhb?WZk HH tGx=bs"Cx="tGBbAZkGG]]#/kQ0JFFà#~@^H^PGG80=(] }80=GGGG!b#i@/G+8= !!$H&H!)@=8=(1)B=}"C"C"CGGGb#/M@G= C(]}"CGGGb#4_G ]=!"4GG@]H]P`#/k0#~^^cGG=]x}TG((="C=00}"C}c"c80}s3fJfJ`0JJѠG(sK@HD(TG+"FuHTJFG*=" FrvHSqJvFr/`,ѠG0`KUJF0TG3=" FrvHSqJvFr`G2=  DuHTJF4=GGGG!b#/ i@Ӕ=(!!H=H=TGGb#/|\@Ӑ .!.JQ!JF HH }gJ H H`F }4G80"CݢPB(WtGBb/@Zk HH @h( Blh]"CP}"CT"CGGGb#M@(= CP="CTG0B8b@Zk( C]T="CGGGb#m_ӥT=!@=@=TGGb#{\@/!= =$]!vJr@JF4GBb/ |Zk( C4GBbSfZk0 C4GBbMfZk@x=!@("C]GtGGb#_ӐFH=TGGb#/[@ӐFaÐ4GG"b#i@H0"CG=="]"tG@BHb5BZk4ppH=0p]G".aXם$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1"fvtJUJF>7JJXdkp#!C!DGGGB/~Zk"A"GGB}ZkpB'|ZkGX"Cݲ=vJ`HFGUAJpSJPFU}]}aC}@X"C0=#CGtGGb#(R@( C]x}GGGb#/_X C(=pv`Jq JqFpGJuSJF,=8]}aC}=ᳰBX]"C0}"CGtGGb#/Q@Ӑ0= !JaS H!F ]4}(rԢ&FԲp"9#C88]@4GGb#/^@Ð4G  JaQ H!F ]4VJ44FF4H=4GG@b#+Y@( C4GBb/aeZk0 C4GBb[eZk4GGcG]]#kNV^fnv`#~^^cGGph=`]TG((="C=  Cc"1"=cph=GGGG!b#lg@Gp=(!!X=pX=TGG8b#Z@ѠG(qKPJF(TG+]"@FuHTJFG*"FyHXKG/,ѠG qKPJF TG#]"@Fu2HTJFG" Dx HWJF$ ]#Cp=P$Bp}([tG@BHb"Zkp HH @Hp( BLH]"C0}"C4"CGGGb#EK@( C0= CTGBb~Zk( C`]GtGG b#._( HHp4GGb#/Y@@8 Cxx(=pv`Jq JqFpxGJuSJFx,=8x]x}aCx}x=xBx8]"C }"CGtGGb#P@p?&Fp] } JsS`JF pݢ$(p"9#C8p4GG@b#]@( C4G0B8b/edZk  C4G0B8b_dZk4GcG]]#k0ݢ4]dkH=_# CDGGGB/C|Zk"@"GGB2{ZkByZkd JcS`HF (&D CGC0"1"CTGG7b#,@CXX 4GGp]x]}#k #~^^~~cGGxp=h]4G]"C]cX"cp`hH Gx/$ ,_"]="C"TGGb#_Ӏ/ ]&:"GtGXB`beZk}&"Kv@JpJPFK,"vJs`JFxݢX˲4GP x]zb{G}=/ C0.0JpApApApAԢvJԲTGKtqJGGR@KpQJPGR 1@=?h"CtGtGGb#/iK@p"! C4GtGGb#`K@X=v HX=TGX=!J`qH FX=GX}`J`QH`FX}\PݢvJPݲTGPKuqJGPGP]@KuQJUGP]T@vJ@TG@Haq HD@G@}`J`QH`F@}DˢVJx0p0=#C4]#CTGGGb#I@0ZG="1"=k"G0"C"CCtGGX:b#@/H= C==CvJr@JF4GKvSJG=cy]}aC}=᳨BX]"CG}"C="tGBb|ZkpX C"p! CG4GGGb#P@\}`} TF 4G= KvCJ/@h@"CTGb3@D}H}= `P="CBR"CG4GGGb#rP@T}`} +6 H/ &""4GXB`bdZkÔpmAb#_`H="0! CtGGb#]@ X= C4GBbaZkP} C4GBbaZk@} C4GBbaZk }`( 4Gb#_Ӏ= è+8=F8T6JˢVJ G è"9/ x="]"tGb@&"4GXB`b/ldZk8}Tc` F 8=T1V J/ kaFk Jp0"C4"CGGGb#H@}A0} CTGBb{Zkk`H/`Gb#A_<Ôk6`H/`4Gb#9_4b#x_ӔkV`H ` CsA4G&*s"GXB`b(dZk?Ôk6`H `p0="C4}"CGGGb#H@/ 4}c 4GF#`HqDF 8]TR6@J@Fˢ4F˲ G `+=} {aH`SH`D {+(0b#_lA4GG`b#Q@h(b#_P  cG]]}}#kP#~^^~cGGH@=8]4G]"C]c"c(H]r`80JJ4G 4G4GGb#_4GP }80BR"CtGtGG@b#I@@0"P! C4GtGG@b#I@( .8=X=P]v@JP]TGPJqq JFPGPݢJqQ JFPݲT vK8P]#CTGb@TX@=X]GtGGb#Ѝ_ P"C4GBb/`Zk4G(   +`=0bs"C0"C`"tGGb#_ +h=0"1"C0BR"Ch"tGGPb#_ +p=0"1"C0BR"Cp"tGGPb#s_ +x=0"1"C0BR"Cx"tGGb#<@ +=0"1"C0BR"C"tGGb#5@   +=0"1"C0BR"C"tGGb#9@( (? aA0"1"C0BR"CtGb&_((=  PP]@P}s3dJfJ/`84JJ Gb#,_XX/X;8`b#_GGb#`@ 0FPP]@P}0C.JsA4GBb#`ZkP 1@PP/$+ _"`]$"tA`"TGG`b#/P_HX++1&J&Jh=p}h"p="TGG`b#@_ cG]]}#k#~0^8^@GG = "C((=@!v Jr@J2F!(}tGӢJtSJFӲ(=((=!B(=(}(B("C =0"! CGGGGPb#N@ =`BpR"CG4GGG b#N@4GG0]8]@P#/k#~P^X^`~hcGG80=(]4G]"C]c"c8`4G4GGb#/u_4GP }$+ & "4GBb/4bZkS(("1"CtGtGG8b#H@0("P! C4GtGG8b#/ H@( -(=H=@]v@J@]TG@Jqq JF@G@ݢJqQ JF@ݲD vK/(@]#Cb#\_DH0=H]GtGGb#N_ @"C4GBbD_Zk Gb#*_@@@ lA4GGb#O@(Xb#_P cGP]X]`}hp#k`#~^^~cGGh`=X]4G]"C]cX"c80hp4G4GGhb#_4GP }$+ & "4GXB`baZkX"1"CtGtGGb#G@`" ! C4GtGGb#/G@( `=X]GtGGb#_+> xp`KP]PlA+TGGXb#P@ 6H`H="CL}"C4GGGb#/E@L=x=+ J `H}"CL"CGGGb#E@L=p=}Ap=x]tGGH3b#/t@}A4GG3b#@rÔ HH@ 6J`H]"CL}"CGGGb#/E@L=! 4G@L]R4GF2@JUFF@ݢ 뢗J&r"4GXB`b"aZkW`+P=P=/ lA+TGGXb#>P@X C\ VJ`H]"CL}"CTGGGb#E@ 84F8L=10}4GtF1 J4FqF0} VJ`H"CL#CTGGGb#vE@ 8TF8L=10}TGtF17 J4FqF0} J`H"CL#CGGGb#/ZE@ 8F8L=10}GtF1W J4FqF0}vJ`H"CL#CtGGGb#/>E@ 8F8L=10}GtF1 J4FqF0}vJ`H"CL#CtGGGb#/"E@ 8F8L=10}GtF1w J4FqF0}8/Bˢ֢vJ&:"4GXB`bz`ZkPGTGGb#S@xxP4GGb#h_Ӡðb#B_tAPPCP=(YtGBbwZk ppp=T18]2FT0p}pT0FTPݢ 6!KwSJ7G 6P]k(zP4GbΉ@$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1s"wGb#'V@P+ !JaS H!F P]k(rb#_ #Cppl+ v Ja H!F p]GJsS`JFpݢpp]p}aCp}p=p@pPGTGGb#&S@/P4GGb#_@uAP=P$@P](RtGBb/wZk`uA"0! CGGGb#I@  CuA"0! CGGGb#I@P+ !JaS H!F P]k(rP4GGb#U@Gb#_ppp \lA4GG`b#M@X(b#_P cG]]}#k0#~^^~cG#Gx=p]4G]"C]c"cG@G8= G=1/ $ ,_"]"C"TGGb#ܬ_ӈ/ ]&:"GtGBb_Zk}&"Kv@JpJPFK,"vJs`JFݢX˲4GP ]zb{G}=/ C0.0JpApApApAԢvJԲTGKtqJGGR@KpQJPGR 1@=?p"CtGtGGb#/1E@x"! C4GtGGb#(E@ 6H&""4GBb2_Zke? =$?"qA"TGG b#_ӈ/ ]&:"GtGBb_ZkO$+X=X=*BP=P}lBH}XXݢXX]X=XX="GBrZkFtFGWV@Jp1JPFWTGJpQJF0"CTGKzq@KGP=( PPݢPP=P]PPP="GB_rZk8?FT F8GaV`Jp1JpFa_'FH}lCvGG_&FH}_s" `XP=H]x}GGb#V@X40JJX=@="C}"C8"C"C("C޶,!GGb#A@   = F/ X4GGb#_ = B/$j = B 8] @X}4s3fJgJ8}X00è"C0X=8]496 H_G:D49X0,P=]"C@QP}@8Ӣ6JFF8Ӳ@/-(5C/@=?@/ P=@9P]8Z:GKGK:Cb{q G0p GrsKQ3J2FW`B0@PP8PB86JFF8x=p]X}(GGGHb#_oP=!!F!X4GXB`bqZkCX4GGb#/%_[H"! ="]"hb#>_&"4GBb^ZkIX=4!!'H'H X40JJX],R]mA"CTGBb/suZkXp+, X40JJX=411&J'J=X}0s}nA"CTGBb/[uZkXx+0 H0JJH=11%J'J=H}s}oA"CTGBb/CuZkH] P cG]]}#k00`K?F2F0p#~0^8G=]( (?"B ( ="(]"{#_  G0]8@#kP#~^^~cGGph=`]4G]"C]c`"cp`4G4GGpb#/_4GP }`BR"CtGtGGb#eC@h"@! C4GtGGb#\C@$ /& "4G`Bhbf]Zk(+ h=`]GtGGb#_ӑ$+(=(=*B =(4G@BHb/pZkCXXX=_&ʂR"2F $ z(4GGb#<_thP="CTGGGGb#/A@X0"Cxx] }s3dJgJvJs`JFxݢtG6!KwSJ7G6x] }{zxx=!@x=x=GvJr@JFxXݢTG'#GUAKwSJWGUx}Px=xBxx]x}`Bx}0"C`="CGGGGb#/$I@4G2=  D0rHQ!J2F0 0bs"C\k("uA0"C`]b#_\(? aA="]"b#_P cG]]}#k#GGG>^>4>!014GG #k#G> @hG~^^~cG#G=4G=#Cc"cGGp8p=HY=K0Gp8 GGh`r=HK}I rEh``G4GGb#_Ө=  ?"=}"C"TGG0b#_Ө=/ ]&:"GtGBbd\ZkpÐ}}}&"Kv@JpJPFK "JsS`JFNwAwAwAwAvHTGJ`qHFGW@J`QH@FW}0`B}Bt+v Kt+TGt+!HvqJ6Dt+GtK@KaQ HAGtKxlKv@JlKTGl Kqq JGl GlJqQ JFlp볼ˢvJ˲TG+!HvqJ6D+GK@KaQ HAGKDvJDTGD+!Jrq@J2FD+GDJqQ JFDHLˢvJL˲TGL+!HvqJ6DL+GLK@KaQ HAGLKPTKv@JTKTGT+!Jrq@J2FT+GTJqQ JFTX"9#C+}Y`C`4GBG/ ]K4GCG@=11&J&J/ "CTGGNb#@Ө/0BR_FP]0"CT8"CݲGxv`Ky KyGx=GHpSJD]p}"CrBCP]#C8}#CH CGGGGBboZk0 HHP0 "CT8]"C]GvJuJFGxaKyS KyGxh= C =!B=}BP"C8"CH#CGGGGBb/nZkp HHDy0"L! CbAGtGGb#_/n0"$!!'H'HX=0"%1"C\=X}"C4GGpOb#/{@Ӡ/0"1?FX=0bs"C\}X"C4GGpOb#i@Ә 0"01?FX=0b1s"C\}X"C4GGpOb#/W@Ӡ"1"CF/2GGpv]JUJFp)Ø#CF/ GGpa=K@HDpØ="C0F/h]2GJGJUHB@h}3gJgJtB`GGpwJXKGpp HHD/(0"\!!'H'H`=0B]Z#Cd]0"l11'J'JX=0BmR"C\]bA`"CX"C"CGGb#/]@ӨÀ}G[@Zk` "l_"rA"TGGb#L_Ө ?"=}"C"TGG`b# _Ө]&:"GtGBbsZZk ? =t?"qA"TGGb#/-_Ө/ ?"=l"sA"TGG`b#_  "C"TGG`b#_Ө]&:"GtGBbJZZkVGG8b#/@Ӡ "l_"rA"TGG`b#ʧ_  t"pA"TGG`b#/_Ө=!LaA"@4GBbxWZk0@B/nA4GBblWZkmA4GBbgWZkwA4GBb/aWZkD `A4GBb[WZkL `A4GBbUWZkT `A4GBbOWZk !}= C"TGG`b#/_ӠcG]]}@#kY` "#GGT B>l!>h 0Fh G #k#GG` / !J ptG#k#~ ^(G HH @=(!)@="C  CTGGGG{#/s=@ GG ](0#k#~0^8^@GG HHtp볓t  HBp+/ ` =!?Ht+p  HH @ =(!H!t 0D/  (@& @@?$@ t+TGG b#/lM@((/(b ](RRpK 4JJ4B ݢ(֢Bݲx=#C]#CTGGGGb#/=@=!x+="C]"C}"CGGGb#/<@pA="C]tG B(bpZk C= C="CGGGb#<@oA="C]tG B(b/pZk+Q D+"C="CtGGGGb#<@ ]B TGF"7@HQDF 4GG0]8]@P#kP#~^^~GG@ G88 C<@8= CTG@BHbOpZk4GHHK"wJF2BP0B1.0J/q H} w`J`FBSB.J Hݢ #wJFBVB.J/]PH]X@G` HH`KX]@G vAXG`xEG7JJ`kX}AG "C TGGb#ħ_hh0JJ`h]RX]XAG "Cht#Ct TGGb#_hh0JJ`h]RX]|XNG.J$`GJ/4G}#CX}G`=kTG=}"CX}G`]cCGrAXG`=\xAG` . J`G H/ pK@ b#_nAXG`IIG@.J/`G`J/`pA4GpBxbUZkp  b#_ӄ HH` X-@G@AG`8BGxBGBGXCG 8FG AG CH=h Cl= CGG@b#;@ l=!=="CX=4G`} 4GPHG/ T hh}{;fKfK`}h=!X=KGF pTkh}hJ7hݢ֢/4Gp0Ø , H`GH QF qA="CtGGGG@b#;@ =!+TG2F!7 H2D!F+c`4$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1"xp/ b#"_oAx 6Jx4G`ba@4Gp=p==}"CX}4G`FG T pp}{h}h=.@X=G`=FG `Tppݢ֢hݲh CXG`xFG/ T pp]Rh]hBXG`ݲGG T+p=p}{h}h BXG`]{xCG-.J3`GJCH=h Cl=#CGG@b#1;@/ l=!=="CX=4G`}^4GP[p b#_Ӥ HH"CX4G`]LXBG3@.J`GJ/CH=h#Cl=#CGG@b#;@/l=X=G`=24GP}/p b#_x . J`G H@k.kJ`G@JxKoAXݲG`4GP]CH=h= Cl CGG@b#:@h=!&H&H`=l=X=4GP}P`"CH=#C ]H}xG:,pzKA:H0D:<=0 B=/}G.wJVJF>0CH@ =Ha/qJ[aKqGa?]0@B]HFF.xJWJF>=0 C==HJA/{JZAK[GA?]0@B]`B `ݢ/`JXKG?=0 C=/`?"B]4Gz.tzKSzJtFz>0@ݢ`6,yJA6H9D6<=0 B=]TGR/{rJZRK[GR?0@=`ݢ/T /yJXKG?PB]}"C2SB8]]#C<]`0X=4=@@=8=#C0}"CGPBXbiZkhhH=0 BH=H}]oB/~h4GG]]}#/k.W JFÙ+.Q +J0FÙ.U JFÙk/[ kK`G_Ù.W JFÙ.V JFÙ+.Q +J0FÙ.T JF/ JX KG?`#~x^^~GG8 G8==(= C?"GGGb#:@(b#_ =!!$H&H0=0= @0}X`F5JJPH`F vAH]GPxeF+1&J&JP=HaF"C TGGHb# _XX0JJPX]RH]XaF"CXt#Ct TGGHb#_XX0JJPX]RH]|XnF.J`GJ/4G]#CH]GPkTG]"CH]GPccFrAHGP=\xaF`+,+H`GH/p+ @b#_nAHGPIiF@.J/`GJ/pA4GBbRZkp  @b#_ӄ HHP H-`F@aF8bFxbFbFXcF 8fF  aF@C0=X C\= CGGb##9@ \=!=="CH=4GP} 4G@hF/ T XX]Z:FKFKP]XHkFF`TKX]XJ7Xݢ֢/4G`0ØK/KK8`G K +Q D+qAt}"CtGGGGb#8@ t=!+TG2F!7 H2D!F+hp/ @b#j_oAh 6Jh4Gb@4G`=`==}"CH}4GPfF T ``]ZX]X@HGPfF @T``ݢ֢XݲX CHGP]xfF/ T+`=`=1X=XBHGPݲgF T+`=`}{X}X=,@H=GP={xcF-.J`GJC0=X=#C\]#CGGb#y8@/ \=!=="CH=4GP}^4G@[p @b#_Ӥ HH"CH4GP]LXbF3`.J`GJ/C0=X#C\=#CGGb#I8@/\=H=GP=24G@}/p @b#_x . J`G H@k.kJ`G@JxKoAHݲGP4G@]C0=X= C\ CGGb#8@X=!&H&HP=\=H=4G@}@PP8KKB=99&K&KP=P=P}H]@B7iZk B/gZkݢ֢/ PF,aJ@HD<P0JJB =11&J&JP]12B}sPtB" BgZkݢBݲ4GGx]]}#k.W JF?Ù .P JF[Ù.V JFkÙk/[ kKzGÙ.W JF0Ù.V JF[Ù+.Q +J0FxÙ.T JF{, J@ HD<À#~X^`^h~pcGG80=(]4G]"C]cX"c G8$ t_"H]="CH"TGGb#_@@/ @]&:"GtG8B@bSZk}&"Kv@JpJPFKt"vJs`JF8ݢX˲4GP 8]zXb{;fKfK@}@= @PNX"0BQ.QJJpApApApAvJTG0!KuqJ5G0GHpQJD@};1`C@}@=?(X¦"CtGtGGb#H9@0X"! C4GtGGb#?9@0 = CGGGGb#/7@ `4G4GGXb#/u_ }} T ]dRdK 00 ݢ4֢4˲l @ ]ZlK ` =(!/ 0=(]GtGGb#/t}_ lA =!TGGHb#@B@ӈ/8HPH="P]"tGb@&"4G8B@b/SZk(b#_P cGX]`]h}p#kp#~p^x^~cGGH@=8]4G]"C]c"cH``8]R2DJFJ@4GzG4GGb#_4GP }8BR"CtGtGG@b#8@@@"! C4GtGG@b#8@P T ((]/ @(}(s/ `@=8]4GtGGb#/|_ 0JJPP]@P}P`NB.J`JsA4GBbOZkP 1@PPlA4GGb#`@@(@XXlPP]KF/@P}X}XPݢl֢lղPlHX+LK/@#`}iA`"TGG`b#_k+fIfIh}= Ch"TGG`b#/_ cGp]x]}#k#?G~X^`^h~pGG=PH=T @TG @"! $=+#G4GP@G P=!!&H&H8=P<qA8="C<= CGGG`b#5@98=7 @]R2FJFJ/ @8}"C@B@BtGGb#\_48= C0="C(]"CtGGb#Y_ C0= C ]"C(}"CGpBxbbeZkC8 CTG`BhbbiZk@@CTGG`b#d_}Y`@`4GH= @G@HGX]`]h}p#k#~H^P^XGG` 4GHqQ JD=&F@"C=]$R]}(q,HHDDDP1@FDP bs"CTGG0b#@C=G JrS@JF ݢ֢0BղG8=<=G0= 4 0JJ0 B(]IB,]xA8"C0"C("CG B(bdZk ("C\ GTGGHb#xD@@@/4GGxb#X_GG8b#1_(=]}\s0`B\q\R2@J&TFLPT@@BPC=(YtGBbhZk4GGPb#G@\= AAJpSJPF A} s3dJfJs" } ݢ" 6!KwSJ7G 6 }(=D!4 FD! bs"CTGG0b#0@C@@&=Dq1`FDqL]$GpBdZk = }]=$L"R"BeZkpB/odZkݢ$( =)C 8!HyS K9D 8GH]P]X`#k#~P^X^`GG@8=0]` ((=$1 =  (= 11$J&J ]2B=]0BB `b#_( HH =@@=#B ]@}xF.vrJUJF>0B/=G9,`YKA9H D9<0B@]OB @}@.wJVJF>0C=@=/G0Ga/p!K[aKpGa?=0 B=}@J.wJVJF>0@8=0@ 8=p/q0K[pKqGp?]0@B]/8"Bݢ4G/aJXKG?0B=8]Y.sYKRYJSFY>0BTG.x HWJF>0B]8}/X@R/{rJZRK[GR?PB8?=ݢ!6@H=H8CH=H=H}0]B6eZkBcZk@(= 7B JwSJF `b#I_( HH =@8=H=H=HݢH}0]=B/eZkBcZk6Cݲ0H@08H0B8(]} 3tB raKsS`JsG rGP]X]`p#kR/ rJZ RK[GR?#~^^~cGGXP=H]4G]"C]c0"c X]rG4GG0b#_4GP }H0BR"CtGtGGb#5@P0" ! C4GtGGb#/5@( P=H]TGtGGpb#y_2h+ H b#_hFhGGTGG0b#_h C\ ` @@GTGGb#B@``/@4GGb#_GGxb#X_@(888=8]\R0@B\P\1+4J&Fpt+v#K/4 KVCK/0@Tk`}8=T! H ` `]R@J@&B"4GBb/POZkG"8=d10 Bh=h}&"tBd$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1T"`&"4GBb>OZk8h=d0h]&SNAx4Gx88`0C`0=#C4GpBxb&aZk88=04=pt!Tk`}`B@ݢPB@(WtGBb/fZk@4GGb#D@x /H@=!_&2F!@}&F@#C+v#K+ P,}#CtGGGGhb#/~3@@,=!TGGb#/A@hh/@4GGb#ܝ_j@=(!!@&!0@@?&1@[ @4GGb#/͝_[P(="C,}"CTGGGhb#/R3@( C= C="C"C+GG.b#>@Ә4GBbNZk:Ð=0D &J"4GBbNZk/Ð=!?H&0D 8=d1}aJqS JqF}vJ@=TGGb#>B@Әh]"CTGGb#_&"4GGtGBb|NZk@=!_&2F!@}&F@ 7JJ7Bh@=(9)Cl=h}#C, CtGGGGPb#/+2@,=! qAh="CTGPBXb/eZkGb#_&"GGtGGXb#_@b#_``GxQ"`}s0`Bh}h&"B&"4GBb/,NZk`=hh]CxQ:4Gxk@ 5JJ"BG4GBbNZk@ HH@=(!@hh=TG.uQJTJF>hݢ0BhݲhGx/a8K[xKaGx?h0@hh=xKQh}`Bh}@hݢ@(6B KvSJG x+ =@}({8}8H k.kJs`G@J@&J"4GBbMZk l` .q HP JF > b#1_pb#_@4GGb#/C@xAG="]"tGBb!gZk 88+08]kHrT`"Cݲ`=l9xv`Ky KyGxG !JaS H!F ]`}psrBGWv@KxKXGW}TGJ`SHF=0BR"CQ}BݢG6v KwJ7G6]GJ`SHF}0="C;]}aB}ݢBݲh#C`=l!@v@Ka HAG@=GqaJ{S`K{Fq`pݢB=GvJ`HF]GzaJqS JqFz}0"CݢBݲ@+/+K`GJ ]"CxA0bs"CGGG`b#/6@ h CxA0"! CGGG`b#6@PxA0"! CGGG`b#6@@+ !JaS H!F @]k(r@Ԣ&FԲ@"9#C8@4GGb#/=@``/@4GGb#ܛ_jx+ @4GBb_Zk\@= !!$H&H!)@h=@=(1)Bl=@}(s`}qAh"CTGPBXb5dZk` `H k.kJ/Z`G@J/@tp t뢘 8KF+9?Kt+p T+`=`==B+KkGG +b#}@@$8@G paJqS JqF p@8(8ݢ8+H88]Z#G@#;bC BCh TFh Hb#O_P cG]]}#k.T JFÙ . HP JF >Ù+.Q +J9F8Ù.T JFà#~H^P^XGG( = "C\ ` +!J7 (="CGGGGb#/0@  =1TGGb#G?@=1TGGb#?@&2"4G@BHb/ LZk=(!!@&!0@@?&1@ &2"4G@BHb/LZk+#H (="C}"CGGGb#0@ C8= CH?"qAL"tA+GGH-b#/{@@@/@4G@BHbKZkf8=H 0D &J"4G@BHbKZk[8=!&H&H&"0D/ L+"FL+&Hk8=TG bD@8H ]/ @ } `(5TGGb#>@80JJ=(1Q"r.rJ6@G JF&2"4G@BHbKZk% = 8=TGGb#/P?@8=TGG b#?@/&2"4G@BHbKZk 4G&""4G@BHb/KZkGH]P]X`#k.T JFÐ#?G~X^`^hGG=H@==Y C 4G@= BG @= =X"9#C\+`+(=(=9_&2D9 /(=1!D1(H=1?KTGGb#/>@8(]F#('F(H]1_KTGGb#>@8(]&F(ݢ"/7/KY7KG6JJ}gK6J6JvG}(?&F]"@xA(}PdB((TtGBb/bZkH=v HH=H0JH LK0bs"CSFLKLFL(H?'9#GTGbk@J(=(1P=P}H.Jk`G`Jxk(+ xaKyS KyG x(+( (b#_0000=1xK2F+ 0}x(p¦"Cղ(H1KTGGb#t>@(+ paJqS JqF p(((ݢp"C b#_`b#_(4GGb#@@ 8= ((=]}PvJs`JF(ݢp"C(4G B(b]Zk\=/ (4GGb#_GX]`]hp#/kI.V JFÀ#?G~`^h^pGG=H@==Y C 4G@= BG @= = "9#C\+`+0=0=9_&2D9 0=1!D10GTGG@b#/`=@80]F#0'F0GTGG@b#/L=@80]&F0ݢ"/7/KY7KG6JJ}gK6J6JvG}0?&F]!@GG0b#_xA0P@0=(AtGBb/aZk0(((d K&SNH]&HL0H=TGbp@A0=(1P=P}HsHtF9`PJ".JZGJ0GTGG@b#/<@/&0=K JrS@JF 0ˢ(ղ08#C0=(9(=(} dT+X=X=4B0]PDB0}(StGBbRaZk04GGHb#?@ 8= 00=]}PvJs`JF0ݢ8"C04GBb\Zk\= 04GGpb#_G`]h]p#k/X KGÐ#~X^`^hG#GH@=8]0}` ((0=GtGGGb# I@/((  ]R]ˢݲ#C\ G] C(xA]0}PP"tG]#C^GTGGb#x_&*"4GBbDIZk(4G(B0b1\ZkGX]`]hp#k#~8^@^HGG` "1"C0@?$ @@&@N=1 J?$!F= =TGGb#_>@/@=(!(=(=1 J_&2F}3F/4 (D/0$=_':C }`K$`G4G0b_0=TGGb#/<@ FF/=0 B="CTGG-b#@/G8]@]HP#k@#~^^~cGGXP=H]4G]"C]c0"c X]rG4GG0b#_4GP }H0BR"CtGtGGb#.@P0"0! C4GtGGb#/.@( P=H]GtGGpb#r_Ӥh+ H b#_hFh`@PGb#&_``/`@]r"..JUJF2@JBJ0J2@J2GJF0@ 8KK8 Ch@](ZICl]@=(!`=qAh="CTGPBXb_Zk` `H k.kJl`G@J@tp t뢘 8KF+9?Kt+pGGTGGXb#/_Gb#_&"GTGGXb#/_h C\ qAyAyAtGGGPb#+@ @"! C`="C+KGGb#8z_Ӵ+v H+ b#_Ә (pt볘@}TGӢJtQJFӲ@7_':G7@}@0=4;@v@JpJPF@@4GGb#8@``@4GGb#_(=!&H&H/ @4GG0b#:@``@4GGb#Ж_@b#_ӈÈ=1 @4GG0b#:@Ӑq@4GGb#_4G =`="C=}vJݢG6!KwSJ7G6]}@Pv@JP}tGӢJtSJFӲ=!C=}GvJ`HF=4GJrS@JF0¦"CղC]@xA@}PdC@](RtGBb_Zk` CxA0"! CGGG`b# 1@@+ !JaS H!F @]k(rpb#o_@4GGb#4=@@GTGGb#/\:@``/@4GGb#<_TGGxb#_@(8 /8=8]`R21@B`Q(}8d&NtF `8ݢd֢61B`ݲ``8]`}dz8x+@/8+x08]NB4GpBxbYZkT ``B@=P$B@](RtGBb^Zk@4GGb#<@( HH(4Gb#|_ (4GHb#s_\Hb#_P cG]]}#k.T JF#~(^0^8GG =] =]"C  CGG b#X+@/ ="Ce_%$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1" ]tGBbW^Zk ]w@H+@@DP0@A.4G10JQFA>G(]0]8@#k#~^^GG H/$ L+"D &p"4GBbFZk&2"4GBb/FZkG]] #k#~8^@^HGG =H+B HH+@/% GTGGb#9@00GGb#A_ (((d ]2DJFJkSB_ݢJtSJFݲ?'9#G]:FKFKb@ } {;dKfKiC/` (H=D/ (@?&0B@&B =TGG@b#/8:@/=1&1"=}`HB ݢ ֢6JJB (HF/ =(99@_'9:C@';C =TGG@b#/ :@/L+BR"C2Fp }&"tF b#U_x j=x 0@=jLKbs"CSF@vJ` b#A_vJ=11 B=U}3fJfJxtB`xvJuJFH+CB ] Z:DKFKIC@ }({H{`G =(!!@&!0@@?&1@. =TGG@b#9@/&=1&J&J ]21@B]LF/51B 4GGb#_4G4GGG 4G 4G G4G4GGGG8]@]HP#k#~0^8^@GG "K"GBiYZk HL p"1"CFL k`J.`]#C }#CGGG b#)@ F tG=`bs"C}= ݢG4G" B"(B/`ZkC@GD }A="C]"CtGBb/XZk 6H/~A4Gb#E_ HH="C }"CGGG b#)@/ ?&F 7]/@PkHkTLH&2"4G@BHbEZkVH P L T "_"rA}"C ]tG B(b/\ZkX `A? =( ="(]"tGBb/K^Zk `A\+TGGPHb#/s@H P L T KBJ/@ "tAGb#_ H(?"qAGb#_ 6H0?"qA4Gb#_ VH/8?"qATGb#_ vH?"qAtGb#_G0]8]@P#k#~X^`^hGG 6H/+"H/8 qA C = CGGG@ b#Y(@/,+6!H/ +PqrB @B10BGG@G,ˢJ$ 7XYC/ w8aC CGG Gk`J/`qA"C ="CGGG@ b#/(@4G = C}ATGGHb#4@G+"H/ qA="C }"CGGG@ b#/'@4G = C(?"qATGGHb#@/G+6#H T 4KR]}}B+KtGGh(b#Rv@= DG vJ>qAyAyAtGGG@ b#'@/+ (Kr"kr.rJ ] ݢ71B+B ] vHz@KD +++ 4B+K 2UBKzA#xATGGHb#ȱ@4G=Kv@JK}`GJ/qA"C "CGGG@ b#'@/ =!/ T PP]R@Gb#]_8= C TGGb#Ԓ_&;"4GGtGBbCZkGX`+0=0=Q"r..rJTJtF1 J"J(ݦJ1 J1'JF(ݶ vK +9 K_':G+G0b@ ? aAuA\+tGG@Hb#ۭ@4G== G+0]TGJsQ`JF0ݢ?'G0]0}(=,:vHpJD04GG,b#g{@0DG 0=(! = =D1 04GG@b#3@4GGX]`]hp#kp#~h^p^x~cGGPH=@]4G]"C]c"cP`G4GGb#/U_4GP }@BR"CtGtGG@ b#)@H"@! C4GtGG@ b#(@( / H=@]GtGGb#/Tm_Ӏ`+8=+"J hK@&2"4GBbBZkrh+ H b#_hFh(뢗Jh+"Gh+_ H/'h Fh H4]"CGGGG b#^'@84=!TGG b#/)6@XX/b#_B8=(!!@&!0@@?&1@// b#_6H0="C4}"CGGG b#9'@tG0=" 1"C4=0};`0"C("CH"vAL"wA+GG*b#/x@``/`4GBbBZk +"H# L "1"CF/LKbs"CSFLK(HˢB &"`H+/zJY+K:GH+? (?$! D(L(H K6@J/C@T`hFh K)(=9$K&K% K#,H@GH/(}+qG `B+KtGG'b#t@(=0 @(=`==B(}(&"FGGGG'b#As@`@4GG(b#/t@b#v_ӥ(=!$H&H &(KBJB@kcJ?`J<:Hˢ`ݲ'H 8(= b#_ `H LK0bs"CSF/ @ 8(=TGGb#6@  /b#C_r8=(!X=L+0BR"C2F X}HsHtBR`b#2_aX=H!H 0@J b#*_Y(=!$H&H &*"4GBbAZkNh Fh LKCJ@k`L"CFL뢗J KL+"GL+kbK` H L+"D (?&1"FH &HkL0¦"CFLL G(=9?KH+'Hkh+"Fh+(0JJ/b#_ H@b#_ L+$DL+mA2w J4G@BGFGFw@J3H23D3D2?4D^6JL0¦"CF/L뢰#CF(=0 C(=(}{'{#;K(}(=H+1@/ tLKbs"CSF/@( 1@((ݢ&"6J(ݲ(H뢷CcL+0BZ#C:G/ 8(= b#_ 8(=TGGb#6@  /OL+0BR"C2F 8}(sHsHtB`E8(HHˢB/A8 7JJ7B`8=(9)Cd=8}({X}qA`= CTGBbsXZkX XH k.kJ`G@J@tp t뢘 8KF+9?Kt+p볘 (b#A_bb#1_`b#._]b#+_Zb#(_Wb#%_Tb#"_QL+$D/ T XX]]B+KkGG'b#q@h H/h 4Fh hK@FhKqA0}"C4"CGGG b#{$@4=! qA0="C4}"C4GGG b#m$@/h Fh Kv@JKk3`J&tFkhFhqAyAyAtGGG b#U$@/@b#Z_P cGh]p]x}#kI+/ JY +K:GI+?:,A :H DÙ.T JFsP#~^^~GG G` x"! C\+P&SFPGTGGb#/`3@  /4GGb#@_GGb#_(=]\R0@B\P\1p+`0B`ݢB4GBb/'RZkT  B=P$B](RtGBbWZk4GGb#5@CG(0(="0]"tGBb/sYZkp+0]tkHr8"C ݢG6v KwJ7G6 ]4G:!H{S`K;D: @"1"C0 ] }aB } GvKvJG =TGYAK`SH@GY }oA = ]AB ] ԢvJԲ G7!HxSK8D7 = ] B  =qv`Jq tGHuSJD =  C  ]zv`Kz =GHrS@JD   ݢB ݲ GvJxKF ]G:!J{S`K;F: ]}r  B ݢ B 8#CC@"9#CGGGp b#!)@?&F]&Fݢ4G6 KwQJ7G6]c(zc JcS`HF 4GGP+b#xw@G]]}#kp#~p^x^~GG`X=P] C+"GX]P@F4G` HXBR"C\KH0&3D0H`=GtGGG@b#>@hhH4GGb#_HTG  JaQ H!F H]&FH4GGb#0@hhH4GGb#_H HH @@H( BD@]"C8}"C<"CGGG@ b#/"@hh/H4G B(bQZkG<=0=8=<]2B(=0(B0ݢ"/7/KY 7KGCX]F0}0aC0}0=(0@ H4G B(bQZkGzG0rKQ=J2F0z }0"..JW JFP=8C8]#CTG@BHbVZk0<= @<]#G"GGBSZkBRZkB (0=8C81C0] G R"GB/SZkB RZkâ0ݲ8=B71B(0(C00"Q.q.QJS qJSFCPB0]0AC0]0â @C<="GGBrSZkBQZk C   ]"4GB_RZk0C (}0#u@0] GGB/\SZkBQZkH4GGb#/-4@4GGp]f_+$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1m"x]}#kÐ#~P^X^`GG@8= H@8=F4G\`+0=8 C\ 0=Q&SFQ0&F04GG*b#/)v@0D0=(!(=(=H1@]2F (}8H04GG8+b#7v@0JH=C ]"C$}"CtGGG b#!@$ $=B}tB`"ݲ/K]}[C@C ==]B}"C@=8]b#_4GGP]X]`p#k#~P^X^`GG@8=0]@ H80JDGk8=@]2B @8]@]8`+(=(0 (=1&3D1(F(0=TGGHb#u2@HH/4GG(=(1H1=}3J04JtF`05JJ&"5B8KK0=9&K&K8C8};fKfK@=!&H&H!aC0 @==@4G @}t(4GG()b#uu@0D(=(!H!==8]2B }0B0BBGP]X]`p#/k#~H^P^XcGG8tG@@"C88= C=00"Cc8"! =cT 0hXPH`+(="C\ 0=!!'H'H=0=11'J'JF8="C C4GGG b#!@&""4GBb/|Zk=/ &""4GBb|Zk= Cx="C(}"CL"tAGGG)b#kr@ = C&"4GtGBb|ZkL+"C0D 4GX=x}3Jp}8"C"CGGG b#R!@&""4GBb/|Zkd=/ &""4GBb|ZkZ= C="C}"CL"tAGGG)b#+r@ = C&"4GtGBb|ZkBø=!?H0J0D &"4GBb/|Zk4ð=H+L+`BR"C2F 4G}L¦"CF4G=9?K=ѠG@ pKA=H0D@  TGC]"@FqtHSrJtFq`GB"FxHWJF/DѠG8{KPJF8TG;=" Frt1HSqJtFr`G: Dծw HVJFվ<ѠG0P{KZ]K[G0P@TG3=" FrtJSqJtFr/`G2 DvJUJF4(X'[GX(=q&tFq(GTGG(b#*/@ (0"Q.q.QJSqJSF0JJJ0J0JF@"C(PB((XtGBbSZkGGb#_Dd 4G]TvJ/%#(ݢ?'G(4G0B8bNZk@ C4G B(b+yZk8 C4G B(b%yZk0 C4G B(byZk&"4GBb{Zkpè=p0@t (=TGGpb#/l/@.(=!_&2F!(4G0B8b/NZk@ C4G B(bxZk8 C4G B(bxZk0 C4G B(bxZk0"! CTGGxb#Š_&"4GGtGBb{Zk6(="0.P.0JRPJ2F! H"HJ! H!'HF8"C(ݢPB((WtGBb SZk(p=TGGpb#/@/4GP=(=Q"r..rJTJtF1 J"J`ݦJ1 J1'JF`ݶ0"C(PC(=(YtGBbRZkp=@t(p=TGGpb#/.@4GP=(=Q"r..rJTJtF1 J"J`ݦJ1 J1'JF`ݶ0"C(PC(=(YtGBbRZk(=TGGpb#/.@.(=!_&2F!(4G0B8b/NZk@ C4G B(b_xZk8 C4G B(bYxZk0 C4G B(bSxZk0"! CTGGxb#&_&"4GGtGBbzZk(="0.P.0JRPJ2F! H"HJ! H!'HF8"C(ݢPB((WtGBboRZkg(=TGGpb#/.@.(=!_&2F!(4G0B8b/MZk@ C4G B(bxZk8 C4G B(b xZk0 C4G B(bxZk0"! CTGGxb#։_&"4GGtGBbzZkJ(="0.P.0JRPJ2F! H"HJ! H!'HF8"C(ݢPB((WtGBbRZk( .!.JQ!JF HH`}gJ H H`F`}0"C8"CTGBb/QZk8 HH @ < B$ ]"C}"C"CGGG b#/+@. .JQ JF }"C"C"CGGG b#@4G= ="C]"C}"CTGGG b# @=!G==x+<}spk<HtPx8KK.(=y$`Gy(4G0B8b/MZk@ C4G B(bgwZk8 C4G B(bawZk0 C4G B(b[wZkp0"! CTGGxb#._&"4GGtGBbyZkp=!$H&H 0@Z GQ"}ds0`B@}@&"B&"4GBbyZk=@d@]CQk&tNp}ݢB4GBb/KZk(F(=q&tFq(TGKvQJG(=(]}yvJ`HF(4GGX+b#/r@C (PAFP(}D((@ݢ KvSJG (4GG+b#q@C pxhZ0}3fJfJ3iB }4B$ "C#C=#CTGGG b#Q@/=!Gh=qA ="CTGBbPZk  C= C="CtGGG b#/7@,=!) 'Gb# _#(=!_&2F!(4G0B8bGLZk@ C4G B(bvZk8 C4G B(bvZk0 C4G B(bvZk&"4GBb0B/GW/`KZWK@GW?}0`C}HB =H].uQJTJF>ݢ0BݲHGGW/aKZWKAGW?}0`C}=H]@J.uQJTJF>0@`=0@ `W/pKZWKPGW?}0`C}/`]"SB@4G.aJVJF>0B`=8.{8KQ8J;F8>}0`B}TG.v HUJF>0B=`/4 Q/{KZQK[GQ?]P@B]= C @8"C<`0X=4=@@=8}#C0}"CGPBXbCZkhhH=0 BH=H}]oB/ h4GGp]x]}#/kQ/ KZ QK[GQ?À#~`^h^p~xGG8 HoApAGG8( C?"GGG b#@/(b#_Ӊ=!!$H&H0=0=/ @0}9hB]hBhBhBnFC0=X]#C\}#CGG b#!@/X=!&H&HP=\=H=#4G@} õgBhBxhF`C0=X#C\=#CGG b#@/ \=!=="CH=4GP}4G@4G@@= PP} HH`C=!!&H&HP=P=P}H]@BDZk BBZkݢ֢ P',aK@HD<P0JJB=11&J&JP]12B}sPtB" B/kBZkݢBݲx4GG`]h]p}x#k, K@ HD<À#~X^`^h~pcGG@8=0]4G]"C]cX"c G@$ GP]="CP"TGGb#{_HH H]&:"GtGhBpbnZk}&"Kv@JpJPFKGvJs`JF@ݢX˲4GP @]zbP{GH}H= HCP0.0JpApApApAԢvJԲTGKtqJGGR@KpQJPGRH 1@HH=?0"CtGtGG b#/Q@8"! C4GtGG b#H@8(= CGGGG b#@(`4G4GGxb#|_(}}(T (]dRdK(00(ݢ4֢4˲l H(]ZlK(`(=(! 8=0]GtGGb#/X_0b#_P cGX]`]h}p#kp#~p^x^~cGGH@=8]4G]"C]c"cH``8]R2DJFJ@4GvG4GGb#-|_4GP }8BR"CtGtGG b#@@@"! C4GtGG b#@P T ((]/ @(}(s/ `@=8]GtGG b#/$X_ PFPP]/@P}CP.JsA4GPBXbkZkP 1@PP/lA4GG b#@(@XXlPP]KF@P}X}XPݢl֢lղPlHX+LK@#`}iA`"TGGb##{_k+fIfIh}= Ch"TGGb#{_ cGp]x]}#k#~ ^(^0GG`  T lA TGG` b#@GTGG b# @= !!$H&H!)@==(1)B=}(s}pA"CTGBbDZkoApATGBb/DZk4GKGhk$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1" ](]0@#k#~@^H^P~XcGG80=(]4G]"C]c"c8`G4GG0b#/U{_4GP }(PBR"CtGtGGb#@0P" ! C4GtGGb#@( / 0=(]GtGGpb#/TW_È+/ b#{_lA4GG( b#/@(pb#__P cG@]H]P}X`#k`#~x^^~cGG80=(]4G]"C]c"c8`G4GGb#/z_4GP }( BR"CtGtGGb#@0 "0! C4GtGGb#@( / 0=(]4GtGG@b#/V_ӟÈ+/ b##_0oA "@! CGGG0 b#B@ H/GGTGGb#¿_` PP T+X=lAX}3TGG b#/@p C\ PGTGGX b#/@@@/P= 11$J&J1)B`=P}(siBd}P(XpA`"CTGBbCZk0pA "@! CGGG0 b#@nAGhph="p]"tGPBXbEZknApATGBbqZkt HHG0P]pk JsS`JF PݢH(@/P4GG` b#"@P?&FP]bs"CrP4GG b#/@XXP4GGb#{_ \lA4GG b#@(@b#w_P cGx]]}#kp#~p^x^~GG@ G88 C<@8= CTG0B8bZCZk4GHHK"wJF2BP0B1.0J H}@w`J`FBSB.JPHFrAX=G`}@8F) xF'@F%F# F!F`XFF4GPݲ-CH=h]#Cl CGGPb#/{@ l=!=="CX=4G`}4GPCH=h#Cl=#CGGPb#/c@h=!&H&H`=l=X=4GP}P`"CH=#C/ ]H}xG:,pzKA:H0D:<=0 B=/}G.wJVJF>0CH@ =Ha/qJ[aKqGa?]0@B]HFF.xJWJF>=0 C==HJA/{JZAK[GA?]0@B]`B `ݢ/`JXKG?=0 C=/`?"B]4Gz.tzKSzJtFz>0@ݢ`6,yJA6H9D6<=0 B=]TGR/{rJZRK[GR?0@=`ݢ/4 /yJXKG?PB]}"C2SB8]]#C<]`0X=4=@@=8=#C0}"CGPBXb]~ZkhhH=0 BH=H}]oB/h4GGp]x]}#/k/ JX KG?À#~`^h^p~xGG8 G8==(= C?"GGGb#N@(b#_Ӑ=!!$H&H0=0= @0}oFrAHGPA8iF/) xiF'@iF%`nF#nF! iFXiF nF`4G@]-C0=X"C\"CGGb#/[@ \=!=="CH=4GP}4G@C0=X#C\=#CGGb#/C@X=!&H&HP=\=H=4G@}@PP8KKB=99&K&KP=P=P}H]@B`Zk B}Zkݢ֢ P',aJ@HD<P0JJB=11&J&JP]12B}sPtB" B/}ZkݢBݲq4GG`]h]p}x#k, J@ HD<À#~`^h^p~xcGG@8=0]4G]"C]cX"c G@$ GP]="CP"TGGb#>w_HH H]&:"GtG8B@biZk}&"Kv@JpJPFKGvJs`JF@ݢX˲4GP @]zb{GH}H= HC0.0JpApApApAԢvJԲTGKtqJGGR@KpQJPGRH 1@HH=?0"CtGtGG(b#/@8"! C4GtGG(b#@8(= CGGGGb#$@(`4G4GGb#w_(}}(T (]dRdK(00(ݢ4֢4˲l H(] ZlK( `(=(! 8=0]4GtGGb#/S_ lA(=!TGGx b#@ӈ/@PXP="X]"tGb@&"4G8B@b/TiZk0b#z_P cG`]h]p}x#kp#~p^x^~cGGH@=8]4G]"C]c"cH``8]R2DJFJ@4GvG4GGb#Uw_4GP }8BR"CtGtGGpb#@@@"! C4GtGGpb#@P T ((]/ @(}(s/ `@=8]TGtGGb#/LS_ FPP]/@P}C.JsA4GPBXb7fZkP 1@PP/lA4GGb#@(@XXlPP]KF@P}X}XPݢl֢lղPlHX+LK@#`}iA`"TGGb#Kv_k+fIfIh}= Ch"TGGb#@v_ cGp]x]}#k#~^^~~cGG=]4G]"C]c"c`G4GGb#v_4GP }BR"CtGtGGb#h@Ӹ" ! C4GtGGb#_@( =]tGtGG0b#/R_h Fh GGb#_` T pAp]nAhݢB`ݲh4GpBxbeZk@= CD="CtGGG(b# @  @=/ @}"CGtGGG b#'@ @= C& "4GtGBb/,hZkøH="CL}"CGGG(b#/ @Ӹ8= C<="CGGG(b# @Ө4GG` b#/6(@P J H= &"4GBbhZkHAx+ GH=]|11&J&JH=RL]C4GpBxb/AeZk\H= C0"1"CX]"C\}"CGGb#~y_/CC#!&H&H h]0bs"CGX"C0"C@"CGBb/3{Zk HH8c<}\8]"C0bs"CX"C\"CGGb#Oy_?X} C0"! C0]"C(}"CGGb#/|_  =/# 0!(= 0}"C("CP"CGG`b#/_hX= CTGGhb#z_X} C&`"4GtGBb~gZkX} C&h"4GtGBbtgZkpG="]"tGBb/@Zkp="`! CGGG b#@x} C}=hAv@JpJPFA}GӢJtSJFӲh=]AC]H}vJc`HF=H]/@GGJsS`JFݢL=!C=}@x} Cp=GtGG b#@p}c}=P=Gq".uSJTJF>@ݢD]dk=_# CDGGG`B/}Zk"@"GG`B|Zk@BwzZk}'F㲨=4GJ`QHF4PV@J4P}4S_G@G4SP}`}}p HwSJD pݢ֢(ղ=8"CGBR"CTGG$b#^@C= 8 $è= 11$J&J1)B=}(siB}((pA=#CTGBb~Zk b#_P &""4GBb/fZkcG]]}}#kP#~^^~cGGph=`]4G]"C]c0"cp`G4GG`b#t_4GP }`pBR"CtGtGGb#U @hp"0! C4GtGGb#L @( / h=`]GtGGb#/P_h Fh GG`b#_` XH"C\ hX=("CGtGGGGb#;e_  5 +v#J/) (] @(=1&J&J,G4G"@B"0B@ZkC@GD (=1&J&J,G4G"8B"0B/@ZkC@GD &r"4GBb fZk&:"4GBb/fZkwX=(!!P=XP=TGGb#/ @X HH @X( BX](Rx]X(pA"CTG`BhbS}Zk`b#_nA@pAH="CL}"CGGGb#/ @@H= CTG`Bhb/;}ZkX4GG`b#@ X4GBb/xZkL@"1"CH]"CL}"CGG`b#Kw_H= C"1"C8]"C0}"CGG8b#/z_X8= C0]"CtGGb#_\ X4GGb#t_4GcG]]}#kp#~p^x^~cGGH@=8]4G]"C]c"cH`G4GGb#/s_4GP }8BR"CtGtGGPb#E @@"@! C4GtGGPb#< @( / @=8]GtGGb#/O_Ӹ`+0=T+(=kbJ`h&2"4G`Bhb4eZk0=!"H $0 h+1 Fh+KBJL@@P"CT"CtGGGb# @ (=!!&H&H &""4G`BhbeZkP=/ (0JJP(]RT]qAP"CT]tG0B8b|Zk0qAGtGG b#/L#@h+ Dh+@T="CTGGGGb#v @ h FTFh T=1hkTGtF17 J4FqFhk0qAGtGGG` b##@/10= !!$H&H!)@h=0=(1)Bl=0}iiI|$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1\"(s`}0(pAh"CTGBb+|Zkh 6H/"XpAT="CTGGGGb#y@/T=!X=X=hK6@J 2F? kbJ`$0 &:"4G`BhbdZkh 4Fh 8b#_P cGp]x]}#k#~^^~~cGG=]4G]"C]c "c ]rG4GGPb#r_4GP }`BR"CtGtGGb#C @`"P! C4GtGGb#/9 @( =]GtGGb#N_h Fh GGPb#o_` 8"C\ pA]nAqAݲ4GBb{aZk=P]"CGtGGGGb#c_((5 +v#J/) P] @P=1&J&JTG4G"0B" B~ZkC@GD P=1&J&JTG4G"(B" B/~ZkC@GD &r"4GBbcZk&:"4GBb/cZk=!_&2F!4GGb#/X@?&F}PdB(TtGBbe{Zk(HH0]r"..JUJF2@JBJJ2@J2GJF K8]#C<}#CGGGb#:@Ӡ C8=pv`Jq JqFptGJuSJF<=8]}aC}=B]"C=``"CGGGb#- @8= CGtGGGp b##@((-=(1H=0}HtF%`'F=TGHzQ@KD==]!pv`Jr@JrFp4GpBxbWvZk8 C& "4GtGBbKcZkÐ=!H=8ݢ<]dkH"8CGGGGBRyZk"X"GGB/@xZkBvZkGX C\= CGGGb#@x= C|="CGGGb#/@ H/ X= &"4GBbcZkX9 +#H6 x "GC4GBbU`Zk<X= C"1"C8]"C<}"CGGPb#t_/CC#!&H&H ]Ðbs"CG8"C"CP"CGpBxb/GvZk HHxc|}+ J KCJ@}s3fJfJ3iB@}BD@"C8#C<=#CGGGpb#@ӈ8 CTGPBXb&zZk8 CTGPBXbzZkѠGp pKA=H0Dp /f TGs=" FrtHSqJtFr^`Gr"FxHWJFVt<x}#C"! C8} C<}"CGGPb#t_Q8} C"! Ch]"C`}"CGG(b#/w_((=/3 h1`=/ 8}"CTGGb#/u_h= C`]"C0}"CGGb#|_ 8} C&`"4GtGBbNbZkÈ8 CTGGb#Tu_p} C8 CTGGb#Lu_ӭ8} C&h"4GtGBb4bZk4G } = p]"C]<¦"C8"C<#CGGPb#s_ 8} C"! Ch]"C`}"CGG(b#w_h C`= CtGGpb#/ _ӈ8 CTGGb#/|u_ }/ `P C&"4GtGBbaZk=`BpR"CGGGb# @k`H/` H/A= C==]RvJr@JFGKvSJG=]ZY}}a@}=XAv@JpJPFA}GӢJtSJFӲ\=]AC]}`@}"C=`B`R"CGGGb#E @}#&0D#=TGJrQ@JFݢVv@KxKXGV} {aH`SH`D {=1(04GG"b#Y@4GGb#T@4GpBxbmtZk} c#dHfH#i@}=(!)@==(1=}(sskpA"CTGPBXbxZkb#y_\변4GBb/^ZkP cG]]}} #kÛã#~0^8^@GG =]  ]@]@ "C@R"@\(( ]\(} =]tG[@ZkV  T !$H&H! N 4=@0Q`3gJgJ Cls".J(ݢ6JFF(ݲP7JJ Cl"/K(=?G B]P(}Gx`G `G`6J  !4G  =16"J ]RW@B@ }s3Q`Bt (¦"CTGG^ 0JJ">4^04G  G #k#~8^@^HGG=] "4G(]R ] C(= 0B(]@N@000JJXF04G(B0b@@Zk(0@(( = B  G8]@]HP#/kGGGGG51`B Gaa4GGkGGGG`a @ A`a@A`aGkGGG q`Bq q4GqQ0PBCq BGU qs"S.RSJGJXDF/L`XGFHF@tGGqs/sKUgB/`"Q0BC B q{#{.{JUgB`TGQ4G/qq3sCC pB!Q,HU@q{#q3sCC pBQR",HU@q{.{JXdF `P.PJF q Q2rBQGTGG/k#~^GGGGw`F/`GG{#_7G G/ 4GG] #kGGGGGG}#l_4GGkGGGGkGGGGGvU@s/sKXF rB1",HXD/"v2Q@B/@GUvGG/k#~^ GG =G= ]u#_u#_G] 0#k#~^ GG =G= ]u#_u#_G] 0#k#~^^ GG =G4G =]@u#k_G/@ (u#_GG]] 0#k#~^ GG =tG= ]u#Q_u#k_G] 0#/k#~^ GG =TG= ]`u#7_Hu#Q_G] 0#k#~^ GG =G= ]u#_u#8_G] 0#k#~(^0^8~@HPGGGGG"G8b#_GGGb#_ GGb#K_"G8b#p_0`@`G="8b#i_Ӡ CG(]0]8}@HP`#/k#~(^0^8~@HPGGGG"Gb#N_GGG`b#_ GGb#L_/"Gb#>_GG="b#8_GG`b# _/GGb#l_GGb#g_ GGb#,_/"Gb#_G0`@`G="b#_Ӡ CG(]0]8}@HP`#k#~0^8^@~HPXGGGG4G]G4G"Gb#_GGb#_GGb#,_0@GTG b_/ GGb# _V`4G%SG="b#_GGb#w_/H`4G%EG="b#_GGb#_0@GTG b_GGb#_/ GGb#&_*`TG%'G="b#_GGb#_ GGTG b_GGb#_G="b#_GGb#_/`TG%G="b#_ݢGb#3_G0]8]@}HPX`#/k#~0^8^@~HPXGGGG4G]G4G"Gpb#e_GGb#_GGXb#_/0@GTG b_ GGXb#_/i`4G%fG="pb#F_GGb#_ GGb#,_/V`4G%SG="pb#3_GGXb#m_0@GTG b_GGXb#b_/ GG8b#_8`TG%5G="pb#_GGXb#O_ GGTG b_GGXb#D_!G="pb#_GGb#_ GG8b#h_/`TG%G="pb#_GGb#_G="pb#_ݢGXb#_G0]8]@}HPX`#k#~(^0^8~@HGGGG"GHb#_GGb#H_GGb#_G="Hb#_GGb#_/GGb#_GGG="Hb#_`G0b#P_GG(]0]8}@HP#k`#~p^x^~GGlh=d]`}\XGhl=="="b#4_G/=8]"b#f_tG8"b#_GP=0Dy ]R(@8@F/`X@F@80Tݢ86B(ݲT=9# =8}<`CT= @tG_8= =T]82TB]T"08<=CT]Z#8C( 0}(}(] @0"(="b#_G/`G=(=\=! !C/ TG5(\=\]R@0=XTG0B8bKoZkX ,A H < "="b#_G/`G=d=! !C/ 4Gd=d]R@ =`TGj8O$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1"0B8b'oZk`],@H<GGp]x]}#k#?GGGGPH>@^8~0P>9>P>11&J&J^2B > B/M>>>q"~.JFXX>#C ~".JXX>/C X>0Ft"~T.TJ2@J2FX>XH~F/'T"^4/4KXX8F>Q"^q.qJX>XXF/ ^r.rJb@G JPBCX>X~C(~(B"~(!~3#>.JXX^8PF@4#>.JXX^XPF @~.J6`GJ>P B>CXXC(y @ 4G@BG@@~( @/ 4G8BG 8^~r @/4G0BG 0>^Q~CG`#k2.Q 2J3F.P JFÐ#?G~`^hGGGXP=H]@} 79 0=8X} } =99$K&K/? 0JJP]F/0 =11$J&J1" }s3dJfJs" ` =99$K&K_&R"2G@ 0B  }s3fJfJ(} ]R,](="CP==#C}"CGw#_ =!@ =]"C ]"]/@0}#C }yC 4GHBG/H= ]R2FJFJQC`4G@BG@= ]ZY 0}#C@8DG`]hp#kp#?G~x^^GG=h`=X]P}X=H== B 4GP}`BG@P==}8}h@h=99&K&K@]2C0]@0=B@=Y"@]9.9J#Fp=p]CB@@}3#@=3.3Jp=pB/ p=0G@}3"@=.J0J0Gpp]C(]@="@Y.YJp]p8F@=1#@=q.qJp=p]XPF @@=.Jm GJ@]P@B@]Cpp=C =(]]}WoB/:``==w K GBYB.J&"4G0B8b/hZZk986H=P L B0.0J/EG!&H&Hp=p p ݢpF' p=9C8C!H]}w`KB`GQB0,4G2QJ2D0<(&"F/ ("/&"4G0B8b.ZZk@ =@@e&"4G0B8b#ZZk4GGx]]#k9.Q 9J0FP.R PJQFÀ#?G~h^p^xGG=PH=@]=y C 4G@= BG@==((=6 J/ bA8=`A8](/8]"G BfmZkP=0=0=11$J&J = }`  }{#/`00JJX0=1\=X}"CH=8](}Gb#_``/^a =1"Z ]WOB/@@H}wJFBTBu.tJ`&"4GBb/YZkE0 HH`PN"0BQ.QJM G0JJXX/Xݢ`XF2 `=X]:CYC(}6`K;G/( 8=w H@B DSSB.4G0JF> ݢ'#F07B0 }?'9#yG/ &"4GBbfYZk0@0}`&"4GBbZYZk4GGh]p]x#kq.S qJrFÐ#?GGGGG0(> ^~B 4G> BG~~>> ^8^8>99$K&K 80JJ?&1"B8^R2DJFJ&s"SF@8>!C8>88P0>1(>9B`>0~s3fJfJ(^2rB`>YBX^`>X~3BP `>"`y.yJcFh~hB`^2#`>r.rJh^h>/B/ h>0G`~"`3.3J1 J1Gh>h^CH^`>"`Y.YJh^h8F`>1#`>q.qJh>h^XPF @`>.Jb GJ`^P@B`^Chh>C@>8^R2DJFJHPF`~@>qB`>`^P^P~`>6 J ;@4G8@^8~s3fJfJSB@8>11&J&J@>@>@~P^8>]mZk]/lZk8>9/ 8@&U.sJRUJSFU>@8^Z:FKFKB 8~{;fKfK@>1yC8@^B"]kZk8B8:4GGp#k9.Q 9J0FU. JR UJSFU>#?G~^^~GGGPH=@]8}0(`@ 4G0= BG0}} `@ 4G8]@BGC`@4G(= CGCH]R2FJFJ@ PB/ H@"CXX]"tG8B@bqZkPhP0JJh=B`h}`tB/`h=Y#],HD=#B P"]p.pJݢB/ FX#]8/8K8KF=C=]".Jݢ8F]z#}/KXF =a.aJp G H]P@B]C=ݢCݲ}` 8]wHDC@C.JLH=1@}3B=H0JJ@]0B=B=ݢ=BO}x}] z.zJcF}׃B]".J]ݢB G} [/[K:@KG}C}="A.AJ=ݢ8F/"@/@KXG }.J`GJ]P@B]CݢCݲ}]zG@=@}} Ð]]=#Cp= (}]w@K@G;BZ:B,H}C/ p}F3,pJA3H0D3pݢ0Bpݲp=/G0Gw/`7K[wK`Gw?p0Cpp]@J.uPJTJF>p=0 Bp=@ p=w/a7K[wKaGw?p0Cp1À]"SB@p4G.`JVJF>p=0 @p=p=].xYKPJF>p}0`Bp}pTG.v JUJF>p=0 @p=p/xP/{KZPK[GP?p]P@Bp]À= "Cpݢ= C!B===HH=}"C CG(B0bjZk?è=D/ =}]BkZkB#jZk1Hݢ֢ݲx=8C Cp="C0B}}]]ݢBݲH=!!&H&H8@  @=/ H}"C"C]#C}#CG(B0biZk=@hX4GG]]}#/k.T JF.U JFP/ KZ PK[GP?#?G~^^~GGGPH=@]8}0(`@ 4G0= BG0}} `@ 4G8]@BGC`@/4G(= CGCH]R2FJFJ@ PB H@"CXX]"tGBb/{oZkP``0JJ/`=11$J&J_&R"2B `}s3dJfJ&"tF``B```à`}{;dKfK}=!  `0JJ`=1=}"CH=@]G8G ]/@G(GGb#m_^ 8=wJF!BP0B1,0HR H}s@tB}Hݢ֢6JJ@6BBݲ]}[CO@p]".JCF]ףB#7/7K]OC/ @D=1 =.J1 JD}C}ݢ#.Jݲ]8PG@="!.!J=ø]XPF @}/K`G`JPBC}]C]=F =@ð =/ x`7JJx}#Ch}]@ (=w J F4@Q1@,H}]CB @hG.sKVJF>h0Bh/h}G.q[KTJF>h0@h}oB `hݢ5/pJY5K0G5?h0Bhh=FFq/`J[qK`Gq?h]0@Bh]hJ/yJXKG?h=0 @h=x@/ h=xq/rJ[qKrGq?h}0`Bh}1x"B/h4G.`8KWJF>h=0 Bh=hx].sTKPJF>hݢ0BhݲhTG/y HXKG?h=0 Bh=hx}tP/{pJZPK[GP?hPBhx= "Ch=="C11C=`xHH="C CGBbhZk@Ðx=D x=x}`TBiZkB/hZk1Hݢ֢ݲp=8C Ch="C0B`}s}x]]ݢBݲH=!!&H&H8@  @= H}"C"C]#C}#CGBbgZk`@`X4GG]]}#k3/Y 3K8GP/ pJZ PK[GP?`#?G~x^^~GGGXP=H]@}80G(0]",]`@4G@BG @]] y`@ 4GH]@BGC=`@4G8= CGCX=`=`0JJ/E`=99$K&K_&R"2C@`4JJ?&1"F `}aB`}`=9`=`4JJp/ H}p]w@J@F3CR2C9.2J  8p}w`J`F0CS3C.J Gh=`]l]Ph="CTG B(bXZk`@` /P(]"CTG B(b/XZk4GGx]]}#kj-$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1ef"k#?G~`^h^p~xGGGXP=H]@}8`@ 4G@= BG/@}}=0= ]v@J ]TG JpqJF G = KpQJ0G =$y`@`4GHBGH==}`@4G8= BG/8==X ]"C0GGb#_P(= C?"GGb#_ "C(=0GGGhb#_  CP]0}GGHb# _ #C4G B(bPZk4GG`]h]p}x#k  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNQRSTUWXYZ[\]abcdefABCDEFGHIJKLMNQRSTUWXYZ[\]ghijklmnopqrstuvwxyz{|}~AAAAA`^CEEEEIIIIOQQQQQP_XXXX\VAAAAA`^CEEEEIIIIOQQQQQP_XXXX\#~H^P^XGG  ("C("TGGb#`_0 "10] bSBݢ==]}8}@"G(BfZk5?Ft F5GaV`Jp1JpFaG@@KaQ HAG@G9!J`qH F9@ CGWV@Ju1JUFWTG6!HpqJ0D6? @4TAKaS HAG4TG8=<1 KaQ H!G<1} C((ݢ=]="G(BeZkFTFGAV@Jb1@HBFAv&tFv]XCWFF _$"G =8B 8]= !0 @ 2 }GH]P]X`#k#~P^XG8808=! 30 @(0=!!$H&H/ 04G([0{eZk0<  0B]@BH]H@@ݢ(F@HH]@}{z@(=!@=(=]RQ}(8GP]X`#/k#~`^h^pGG00(0=! ( @ 0=   01B = ! =@  @4GPBXb/ OZk .Jy GH].4GuJF>ݢ0"CC4GpBxbdZkC88(4GGXb#`_ q D0p DQ2JW@B0/V@"@} Bݢ@"VtGGb#/__ӻ($(=0"C(=11$J&J (4G`BhbdZkC88(4GGXb#/e`_(J"1"CH=H}s8}8 ݢF/8HH=8]ZY8} P XP"X="TGGb#/^_G`]h]p#k!.Q !J0F0?F0à#~@^H^PGG8800=!"@(=04GGb#__. .JQ JF  C  ݢ-B4GGb#__(=F/]2}}]G BgZk #8/8K/G H/  ](](( 0B 8b#_8](@G@]H]P`#/k8,A 8H9DÐ#~X^`^hGG0(=( @  =1= 8 =!0= Ð? @= C@"TGGb#]_8 =10 ]}r0B8KKk==ݢ]]H]P"GB/ dZk8?F4 F8GwV`Jp1JpFw&"C4G! JzQ@K:F!? @v@Ja HAF @}rB$yBP0(ݢH<Բ=]}H5v HH5TGHK`qHGHGH: K`QH GH:L4G B(b/ccZkC?&L1"F/ (]HvJH4G B(bRcZkC4GGb#/__GX]`]hp#kp#~p^x^~GGPPD GP4H=6 HF0DH=P=411&J'J@=6 H?F1D@=P0JJ8=6 HF0D8=P=10=P=0!(=P "Q.q.QJSqJSF HH J H HF CGX=P}X="(StG0B8bgZkD1FDP=4qF`F4qP4ԢVJ4ԲP4GW@KxQKXGWP};@&0D;P=q &tFqP"C0ղP 7JJ7BhP=(9)Cl=P(``Dh};`Ch}l]@Bl]Ch"CTG B(b/wTZk`D/`=L!=P4GGb#G@C#(B2w J4G@BGFGFw@J3H23D3D2?@PݢH466 KF7G46P]@}4:V H{1`K;D4:P=8]HrQ@JDP0Pݢ(0PP= =$8yv`KpJpGyP4GGb#lG@CG4G`BhbROZk-P= 0JJ!"Q.q.QJSqJSF! H"HF PP ݢ$Բ5v KwJ7G5P]TG: J{Q`K;F:P4GGhb#}G@CP=8A@JpQJPFAP}$sPâ KvSJG P=c(y4GGp]x]}#/k#~^ ^(GG4GGPb#G@C=(1D1 b#_G] ](0#kP#~^^~GG(D1FD= 11$J&J_"2B 4GG`b#F@C4GGb#/]_4G0 0JJ0 B ](RIB]$ݢ4֢p6KFGp=499&K'Kh}6`K?GyGh} HH`6JDF`=1X=}0sP} 5JJ@vJuJF@(8](ZG BbZk @=D1FDBx ===_"2B% }s}_#]x@x}4GHb@L0= GL?"1 BB?8]G B/[bZkݢղD74 GD7==}]xxݢ@BTcZk(BaZkB!7@ !KaS H!G }(4GG`b#WF@C=3 0"1wJ4G B'F'Fw J2H12D2D1/?@}"..JVJF3`JbJHK3`J3gJGH=GL_#:@C C_}}Lc{=0@= ] @B y4GGb#\_0}p]46J_DF4=h]4VJr1@JF4`ݢKvQJG=X]Y}P0=@] JbS@HF =8](Q}HLݢvKvJG4GG]]}#k#~X^`^hGG(D4GG`b#/E@Ӓ=(!==41H}6`J?FqFH}44JJ@ݢ6JFF@ݲ7JJ8=6 KF7G8=]Z0]0(4P_F@F4P}4VJ4ݢ4G6 KwQJ7G6]@?$DP &SFPԢ&FԲ =#C08$ 4GG`b#/E@CPP =! 4GGb#/eE@CPP=(1=}Ls }D 4GGb#=\_"4GGb#7\_]H=4"6 J?D!F4"]@}4VJs1`JF4ݢ86 KwQJ7G6]0}z(=0 4GGX]`]hp#k#~(^0G =]  `]@ ?$!F ]&F ;! C 4G[{_Zk  G(]0@#k#~(^0^8GG = 0 =4Q_F@F4Q 4`V`J4` =4GJqQ JF `@&uF` =A &TFA `&uF` = "1"C! 4GGb#D@C ](R]D b#{_G(]0]8@#k#~(^0^8GG = 0 =4Q_F@F4Q 4`V`J4` =4GJqQ JF `@&uF` =A &TFA `&uF` ="1"C! 4GG`b#/yD@C ](R]D b#-_G(]0]8@#/k#~(^0^8GG = 0 =4Q_F@F4Q 4G4VJp1JF4 =4GJqQ JF `@&tF` =A &UFA `&tF` ="1"C! 4GG@b#(D@C ](R]@&4B@&B$ D/ b#_G(]0]8@#/k#~(^0^8GG = 0 =4Q_F@F4Q 4G4VJp1JF4 =4GJqQ JF `@&tF` =A &UFA `&tF` ="1"C! 4GG b#C@C ](R]@&4B@&B$ D/ `b#u_G(]0]8@#/k#~(^0^8~@GG = 0G 4@_F@F4@ 4G4VJq1 JF4 4GJaQ HF p@&tFp @ &UF@ p&tFp "! C 4GGb#/mC@C =(1=}s@&3tB@&uB`ݢH/KGJ]HZlvmD$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;11-"NŴՄolo(`֏rE>OF!ɤpɩl!4\jD3Qf;%=tE3c܋nϽdn(m=,t4Trݦ.$r%7ldodf0(W^H $rS9 n56 0{`R%< WfDOMxڮ)G?9~֧B8_N[>A+fknFՏ!  /XDY,줏 B*a ԇC؜ g=! ;0\`[*#AU xK#o߆ihUuv Jfz[=t3E%fd*c'5=eb2cw:ޭrDI5,Zwk\H^ף_Yەu172^ɧsln2ň6v"V-P#\ӎ<>!8xi-s}A5]1n<+r#2QQF_ ݀8YC{9pG=CnBPsgkܗR)9!ЬyKXLMm+<ږ$'.VҫsCQ^y2}Ԣ(ua$:'u0$NfG;z"0zWwa{|Ur §*W6GTmC@(dr&<!-z[-F$B?r&ÿ:ī\­{cxƋLW9D^9Q':kȹ7}OF'6YkHR-}E8)Rb#Ǭ"8@# .yJtɳF5ngp@p[vJ~8l8ʧ R8Eo~( uV}c-b1TQLӗDDp vn*UEQ+Ȗ$Eqy:>=ƎP97/)滵WU[Yۡ)$"gطPN]ӆ7Z^Т5ٰd+x`L®.|2lҪ6yE"(`HL)՚ި =3IKwCBDvz(.R8;DZ[SQSCQe93ᇠR(VGҟBw\rm"ŔKJjp}~c T?w%3S}y"ј C|6Q97Q_ Β&ſ9Bb/A{$+h}:g99ԛu fMbD*|./C,:#w^=59@E<~y<,M2ҁ4B< aЅ B8E:l1חV:%Jos4ٮ!U5-ˮvM"ha,*3*٢mG24E.z%^{C\';$V6_/9-!"9d3KIV] _D`SL6t24q}.3 K! U5 %fv*ou^W"vׇJ򭚝3Mtsz B00r /+HO\Hl<{Sc؈T - a ܁N?o<-OÆlWQh֤F~jXw$Ǥq/$"rN K:nB3g?޵3]h@6;@ZVݣ4C`* lȑ5Q 43 e>IPVlabyDcӚ5{,֩ #SR8I OzrĝU'ZirˏFD0mto'3xV|5mLVyn>t۲⹧&{ń3YIeB p(|Ed5Pb7V*c%οO);\\or?f >. 6MooǾ#I3o6F#z,QaJ-7vEH R.!iJ1&܏}8mV\Y7F]ecٚ%ɳ9/"Y%2.k/XzWJF&Sъ6Cx>,LWӘ;$437[n[.Z356,1X%xQTrS|r3I"id!y#rF:):򐷿4SNY2fC";+lK UbE -D{+2%8(QH/X[a58KBL?2X ̂BY} n6oE-4oű섫A8sat(.'*)vhB&~"S׫ sb$+Yt:, `mR qҵFJjG0B>dc?|<.Lڪ/7`*Z#[;0xɴO^PEQ76F8b9t A_ f*I:d2UC+̀M7@'Vf~(?'OǴVۼzy>/ 4 &4TQYk.I~׸@Q˯,x$$'Hکʪ߀}_Ĺ7GDEc'EREajl}@\Q3*Fe| ) HKj/̈&5^ '76En=^T+'3,#@m!u `RFs+nz.*:&L>F;OxCULCsc '6S! J`oYi_G2CìfInvvHp@ځ8sM[ BSsV=;OtZGחio{ɟ^Bb'`!h5|^C~byTx:+:Izɬ !Mi*xf]O8ZpjNϝʍl!NSb4?{RZGC^Cd,6Br />at3֗pj4LT+zO gNDleavwyaYKBX˫Aa41FƏn58ܪ9WFi7Py7] m/#"g l_SkX:z'Fj0nt*?q&$"7_G7? 50vG:Vv(tNKrM?b2`¿*MGmwcҐ¦d/YG*+$z'<%kX\ 0_ˢs-(+j :Qxa{@y9jRPkI>}%9@* !mrsJ67'rdZ/hF-ŀjU*&&vMw7gQĖ$4pdb;E AckA"7\d-GSa(ivZ^1R[j~E$._~ RSó{IiQ[D%/ U@g1EI*m&5 Mz*}x b -w\]$M﫜zY}F]Yį2g>Cj߱.ʴ% &1j)DG-BW1t#+n+s ah!:(Z㓿қv^ki|a o:QG|56ӒD.W2sWJNlڣv k sV`x+=2aniB5z OYF#B(磴jEt5';9e<{~T6;Xh38 pxm,#/]r6FMp8; 5QJQpcX>8TJq0 -֌* ٶ2^[[n`o@#r!=3,8(bN^&9|άVΝh}+ІS$9 i~]׵DRrQwaۀQz^06:mH0"i^-S '7SF;>.{4f_Az$,ʟ`L%Q̵E'΍}K!~-$/,Qf"%MSWf1g}K<2/~W$.yg0Mc>ӡM~]Fr+9('>*yDӋCA{IuYO)A"0ܳzv}!08>jAUy{ʂV3ŋ |a݁o|v*^UӄkgEK !ۧk 0+_%t_ ڧ?ΛQ/Y.KrCJs_)7$Ro1n*:iiŭ;.gNgJ .`Z$`A_*Σ >Fg4~2k,B`z?È/.j$ϴW6^[b GV)\ɀ ̅|jFZvgܟROMnW2 V2g.gn\߰@L.=<؈!wZj'54EI@(NI J.%_uf c=Uq jf/~P*`J@2]Wż ,V-¿_+4-1+Ǥ-i8 po[*oFM;(}QSi-r8WN0xh7x٢"+^ XႤম!\3gjJh׾/[ 0><>2.ȆL.OPך5ZnMtA:q N@j׬ M#ϬbV8jFF׹.ҦR!o> NDpҞ3DTCJ @)Z3 ?@3$hç)Z|\mƩ. ~ tnq_^qkQ{ۡ4 ƃ5nan̜n0<,$/͆[ʖUS+iq7 [2)kFtȵyMf+dXmepH!w nHלJiM}0;(4VyH*iA\1~^"j͢/o.J`+*9d،QpH;_Y4BnA64w 1q? Ӷ]ټG^שH ځlNN^1X^D>$U1JxQk; zqKS}~Z HhUjLk)td7|5%!T5;KOA& c*z&9DO;_A޺[p;V#}; `厖l4= ^`>^!XAbz$A}78 gԃƴ7wץt.TKЏ#gt.іDܸ5}*56׍tOt(KnJi H<)Õұ|x(}_*Pͳ*< Wdlwy0puOqqYIxNgV҉[m@~K@pJ]ELi Ӱ^ ‡q 6vtKLP1CM57iy4B3vY`F^UYKhv2_l.Vy? .oA{`ؿY1.[z >>z}hO_`߄>_22G߳}$@sxBǹ(1Ing ۟;RcR娳rN-i\T粈 ۃB9E@z)o'OD۵($- ^eE9(ƙE7,hjW >F o(ΐf1=8­vGꪄV-vpqBnB=(ۢy90yd3@VP½X{rm߹6'U8(T5:|Hc= CqW3Ya̲]7f$5/s jNɁQIԾiEc2P*["oh̪ٸ_A0|W<=ijy1ʀU8!;[RyUX (t-Kr CdmU$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1."!0@CCH$ =D1 @b#_G(]0]8}@P#kI6/Y 6K8Gð#~(^0^8~@GG = 0G 4@_F@F4@ 4G4VJq1 JF4 4GJaQ HF p@&tFp @ &UF@ p&tFp x"! C 4GGb#B@C =(1=}s@&3tB@&uB`ݢH/KGJ]HZ0@CCH$ =D1  b#_G(]0]8}@P#kI6/Y 6K8G#~(^0^8GG = 0 =4Q_F@F4Q 4`V`J4` =4GJqQ JF `@&uF` =A &TFA `&uF` =X"1"C! 4GGb#/B@C ](R]D b#E_G(]0]8@#/k#~(^0^8GG = 0 =4Q_F@F4Q 4`V`J4` =4GJqQ JF `@&uF` =A &TFA `&uF` =8"1"C! 4GGb#CB@C ](R]D b#_G(]0]8@#k`#~x^^~GG(\ (D G(=!_&2F!(bs"C`(=(!==D1 (]$RR](} s3dJfJ? aB/ D1DD(4GGb#B@C00(4GG(b#X_R?$ @H/DC(=P$B(](RtGBbbaZk( .!.JQ!JF HHP}gJ H H`FP}(5TGb @008C2FJFJR"`]"X`ݢBf0h0`]#[C/@(=!TGb @0($]GL"3`B@B0/(`ݢB KvSJG `=`}X]L"B/^ZkxB\Zk`(ݢ" 6!KwSJ7G 6D4FD=0]LQX]P"?"pBg]Zk`=P! `=X"X=h(($((=BR"CQ(4GGb#/mA@Cpp(4GG(b#@X_ӷ(? !JaS H!F CGpB9]ZkCP"LR"?"pB2]ZkD74 GD78=L ((ݢPT=vv`Jq JqFv(t&wGt(TG8 HyQ K9D8(]" 2!JuSJ5F 2(}(ݢ$֢(Ӳ(( BZ#C\K(4GG(b#LA@Chh(4GG(b#W_f(4GGb#A@Chh(4GG(b#W_W\ ($8=0(]c JsS`JF (ݢ(E(=$990=(}({`G C(=P$@(](RtGBbU`Zk  C\ (=b#_88(4GG(b#W_"(b#_88(4GG(b#W_\ ($0=0(]c JsS`JF (ݢc(vG4G B(bHZkGx]]}#k#~^ ^(GGTG@@JaQ HAF@&F"! C 4GGb#@@C4GGb#/YW_G] ](0#k#~0^8^@GG =]4G = HqS JD  =}(a 4G@@JpQJPF@ =&F "C = = b#>_(( 4GGb#W_G0]8]@P#k#~0^8^@GG( =]} 6J]"C(}eB4GGGXb#_(=4 6 J?D!F4 KCJ@"C(BGGGXb#|_(=4 V Ja1 H!F4 K6AJ-@ݢ]"GB/[[Zk5?GT G5G6V Hu1J5D6="C}`B4GGGXb#V_]J`QHF=]Jrq@JF ݢղG0]8]@P#/k#~ ^(^0GG=] Bb#x_? @ b#_  G ](]0@#k#~^^~G#G=]G G@BR"C\K? aA0b#_ (=H"C}`b#X_Ӱ40JJ= ="C}"C"C"C"C޶,!GG`b#/y_/=]46J_FF4"C,ղ#C@= ]86H_GD8 =- 5B/ =?B/ ]@R}8s3gJgJSB q@Fp@FxJWJFW@=]8ZP@C896 H_G:D89=]}tGGGb#h1_Ӑð4GBb]ZZkFGGxJWJFG=# Gz`J[yK`Gz/`` CGGruJS}JuFr/t`G"FtJXKGltG=# Gz`J[yK`Gzd``hpxGG`Ԯw}JVJF`ԾYGa#GyxJPJF/P@ CdGGhQt}KR]JTFhQ/E@tGt"ѠFp5HWJF=tGv}"`F8`3HY3K G85 4Gw]#@GQtHRZJTFQ/,@@HPXGG@axJS}JxF@a!`GA=# G r9HQ9J2F  x CDGGHs]KUJFHGT"FaJXKGtGV=" F2`1HY1K G2 TGW"FzHUJF/x}#Gd"0B`C/GGxaJXKGxGy=" F2`1HY1K G2  C|4GGzpJ[}KpGz`4G"FaJXKGG=" F2`1HY1K G2 G}"`FzHUJF/}#Gd"0B`C/GGaJXKGG=" F2`1HY1K G2  CTGGzpJ[}KpGz`TG"FaJXKGTG=" F2`1HY1K G2 tG"}"`FzHUJF/G#}#`GЮwHVJFоz4G'#G!rHQ8J2F!r G.=# GuHTJF/iG>]#@GЮwHVJFоa}#Gd? ! @`C?GGs=HXKGSG"F5`4HY4K G5K TGGzHWJFDTG}#`GQsHR[JSFQ<@TG#GuHTJF/3G=# GЮwHVJFо+]#@GQsKRZJSFQ$@TG}#`Gu;JTJFG#Gv8HPJF/G"FYsHRWJSFY @]="C$:J}#C$u= GX"0B!@/tGGr=H@HDG}"`F7qHY3K1G7  C"ѠGaJPJF"C#CTGGGb#_/ =!/ &"]v@JpJPF]&s"vJs`JF¦֢&"4GBbEZk|ð4G0B8bXZkC00t=1&J&J_&R"2F 4GBb XZk HHG=D=v J`H F=]2FJFJY@4GGb#{S_= C"CGtGG(b#/p@Ià+1 D+4GBbWZkC00?&1"B0]&s"SB@4vJ'0&J"B0'#B/=TGHzQ@KD=&F4GBbWZkC00&;"4GBb/DZk  HH 4GF HDF (}"CTGGGGb#/_ӗ+ G=?F=(]R@J<@C}"CTGGb#T_Ӱ4GGb#S_0JJG00B]RBrF=}W#9&K&KCpBWYZkXB/WZk HHCݢGGpBJYZkXBWZkcCעJcq`HFײRC C"CtGGb#/U_Ӱ4GGb#R_0JJG00B]RBrF=}W#9&K&KC"pBYZkXB/WZk#!&H&H@ ¦֢qD8pDuJY0K5GWB8 HHC}GGpB/XZkXBiWZk=ݢcBP`@Kcq`HG4GGb#R_ ,. HP J0D "Q.q.QJS qJSF+ 04GGb#R_Cð}$㳰=!!&H'H$D 0JJF/=1$J&J ]2DJGJ@F @,}3dJfJiF`4JJ5JJF/ݢ6JJF"wA0b#a_k}4GGb#5R_ ,. HP J0D "Q.q.QJS qJSF+ lA=pb#_`k}=(!=+#J 0]&s"SB@$TF]"GXBVZk=L v HL GLKvSJGLtGP0]"Xr@_'\T kVaK` C= CTGGGb#_ }=!T#4G2F! H2D!FT# kVcJ/`"C"CTGGGb#/_ }=!T#TG2F!7 H2D!FT# kcJ`"C"CGGGb#_ }=!T#G2F!W H2D!FT#kvaJ/`"C"CtGGGb#/_ }=!T#G2F!w H2D!FT#kv`J`"C"CtGGGb#i_ }=!T#G2F! H2D!FT#}mB4G`BhbTZk}n@4G`BhbnT$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1"2TZkG$@@b#h_uA}GGGb#`_Ӱk}]"GXB.VZkGղ+1&J&JK@b#O_\4Gð4GBb/UZk}$j = ᳰ4GGb#/Q_ cAb#_$j &j"4GBbBZkG]]}#k0JFFPqyÄÍÕàèóü$,48}Ӣ6JJ8@dk(?"!C!DGGG(X/WZk"A"GGXVZkhXTZk8 1&J&J8=!G4G"0X" X7\ZkC@GD = =/ G8]R2FJFJ8}sSB ]G851&J&J8ݢ֢G4G"8X" X\ZkC@GD== 8]R2FJFJ8}sSB] ݢBF85B@}@ &0D ;@&3F;]84JJ TB @@ݢ &G]GC@G=@=0@4y6`JD`F4y@}4GJtQJFGH]P`#kP#~X^`^h~px޴޵cGG0(= ]}0f#_=/ Gt0B1wJ4G"B'F'Fw J2H12D2D1?4D0}@&F07 K70](Z@]@]B ","H F0DG 0= 11$J&J1)BP=0( @TP"C=H"CL"CGGpf#/_HH= C(=TGG3f#n@)0]BBH'@0=4!!'H'H 1 @@B0=411'J'J"1 B(]drG04f#k@cP&! =c0f#`_cc]/_G4GGGGcGX]`]h}pxݤݥ#kp#G0X> @hG~(^0^8~@HPGGGX=XXNB#CaDGGGw@X  G GPB `h=p]_FPb#_``=! _&2F!`@&tF``4FF4C8#CTGG1b#Oh@>X]@B@4GÀBG`3`ݢ ֢6JJ6B ݲ`( C$ ]#Cx== C"CGGb#/_="CTG B(bkWZkÀh=TG B(b/cWZkh]vJ`HFh=]RQ4GG(]0]8}@HP#k#?G~@^H^PGG=0(=\ "C\ 0Gb#_8804GGb#/N_-GGb#_0( YB/ (=@_&QB } \0B\\  =X90 CX7X }nC4GpBxbQZk0b#v_]\KG@]H]P`#k#~H^P^XGG0(= ]( 1&J&J(G ]_F_F8]4G"8]" B2ZZkC@GD== (C(}s3fJfJ(tB}04G@BHb/|Zk(  =0B0B0"CTG0B8b/DZk 0B]}1SB ݢFF<ݲ4G<]" BYZkC@GD== ]12B=0"CTG0B8bCZk0GH]P]X`#/k#~^G( ;!!'H'HvJa HF4G]AJ`qH@F]GJ`QHF ;1"C =(`= C4G[@ZkG] #k#~8^@^H~PGG0(=((" G"1 GA0"q04G[@ZkG7"!?D ="1"C$=bsF}"CC0=Gb#2_0JJ =]2BG1qB BFݢ֢ݲC #C=#C]#CG B(bRZk`C4G[@ZkGG8]@]H}P`#kp#~h^p^x~GGXP=H]X GXGH=1`=_"]h""h]" ]   0JJ/#1$J&J1" BRx@ C"CTGGG8B@b/QZk 1@0BBR2GJGJ(]"C,("C"C#C=#CG(B0bPZk4GJ`qHFG]@J`QH@F]bs"C4G[/@Zk`#X X8d.dJOG@J2Q@BO.wDJVJF>4G#M8/zXJY8K:G8?G0}"! C4=`=1=CH¦"C0"C#CGhBpbPZkX8#&z"0D b#_P4P#0 c#gHgH`@`GGTGXB`bSPZk  4G  Gh]p]x}#k.T JF. DJV JF>8/ XJY 8K:G8?#GG>^4>04GG #k#G 8> @hG~^^ ~(0GG8=8]8L@"CADGGBG@@=8}  Gc G9B@@?$F?$FC([R"CTGG/{#e@4GG]] }(0p#/k#~P^XcGH@=8]0}TG((]"C] "Cc@[R"]cH( }@8=0]tG0[8{eZkcGP]X`#k#~ ^(^0GG==TG8B@b.{Zk ]&B"GtG(B0b(}Zk4GG ](]0@#k#GHH> @hG~^ ^(~08GGH=H]HL@"CADGGBG@@=H}  Gc G9B/@C #CTGG.{#/e@/4GG] ](}08#/k#~ ^(G=.J0@  C{#_G ](0#/k#GG80>(^(80JJ 8^R^ B/!^0>QB P.PJ>!L@^AN@>0 B0 >^!2@!1 @ >>^2B0 B>0B>0>1@ N@^AN@>0 B>G@#k#~ ^(^0GG=0JJ=]1tG0B8bjZk/ "1"C]GtGBb_|Zk4GG ](]0@#k#~ ^(^0GG=0JJ=]1tG B(bjZk "1"C]GtG@BHb7|Zk4GG ](]0@#k#~8^@^HGG( =G]" ]"11'J'J="! C=]"C C= C(}GBbMZk00 "1"C0]GtGBb|Zk ="Cb#_00=/ 04GG8]@]HP#k#~^^G#G=GX`= \=G=" =]"CtGXb#_Ө C= Cpb#P_/cð]"C}"Cpb#D_/W`bts"Cb#v_/K] @}"C"CGtG0B8b@xZkD X= C=X]"C"CGG B(bvZkX`"!?DP=`"1"CT=P}"C"C"CXݦF6J0BݲX#C?#=}~}""GBb^MZk }"Cb#+_= 4GG]]#/k#GG HH@ OF$*E B$z 4GG#k#~0^8^@~HGG =  G0JJ "1?F= C= C]}"CG8B@b/NZk((/(BrC4G[@Zk((/(Cb#_((}`( Cpb#_((]@(4GG0]8]@}HP#/k#~0^8^@GG =4G]" ]4GBb3xZk((=GQs=HR]JSFQ/@"CTGBb/Zk(0@((B4GG0]8]@P#kÀ#~(^0^8~@HPX`޵hpGG = ="CTGe#_ =]}0ER"CG/e#f@PLG(]0]8}@HPX`ݥhp#k#~^^~G#G=G ""= = G@"C=G1v H`H D1"JsS`JFp= C =]AB]}GvHtJD= ?"AAJqS JQFAh}"C`BGvHq JD}"obw$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1"CJtSJF "C=]"CQ=!@=B@"CGGGGGG8B@bMZk C= C]"CtG(B0bgZkÈ}F}C"CTGGb#cJ_ӈ/%FC="C]"CtGGb#J_ӈ#0JJ0@"$1q Dp Du6JTJFWBr#P @vKa HGp=9$K&K Gx]D"1"C= Gx}<F"=! C=#C=#C]#Cx};aK0`C}p5JJ5J0B= C>#!'H'H!!H0 @==#>C~#}"뢷C #]#(^k0~#}"8޶h7JJ@}""GBb/wKZk=/  Ð]"Cb#C_Ӡ]@4GG]]}#k0 JFF#~ ^(^0GG= "t1"Cb#!_4G B(b/sQZk4GG ](]0@#/k#~(^0GG = ="CTGt#z_"C CTG T(tQpZkG(]0@#/k#~(^0cG =c@;1"=c 4GG-{#a@cG(]0@#k#~0^8^@cGG =c"1"=cx"t1"Cb#_((( =TGG,b#{a@cG0]8]@P#/k#~ ^(^0GG=H`("1"C+tGGx,b#a@/= BR"C2B bAb#o_ ¦"CFTF4GBb/xZkG=GGnA=b#t_4GG ](]0@#k#~(^0^8GG=4GBb/uZkT G4GG,b#/a@  / !BR_F]"C bA¦"Cb#_bAbA]= CG B(bKZk4GX pbA4G[@ZkTX G(]0]8@#k#~ ^(G=kA{#_/4GG ](0#k#~^ G=4G [({+nZkG] 0#k#~^ G==TG [({cZkG] 0#/k#~^ G=bA={#_G] 0#k#~ ^(G=  D ; 1"C = C{#_G ](0#k#GG>4GG #k#~^G HH D0JJxF4G "CG_& R"tGx[{wZkG] #k#~H^P^X~`hGG=80=(]8=! G(G(=1(]TG=1= R]80== C(b#+_ # C2DJFJR"@d&"F4G`BhbJZk @C@"TGGb#,E_040]c0b4GGH]P]X}`hp#kP#~^^cG#G=tG="C="C= C=cP"cG]"]xGpGhG`=HF4FH@}==]"CTGxb#_ "C"TGGb#/D_/ ]&:"GtGBb@wZk===*B=}hB}ݢ==]}}"G@BJZk0?Ft F0G]rV`Jp1JpFrTGA@KpQJPGAG !Jaq H!F X CTGJrq@JF(],V=05=}46H?FD4=4PV@Jy1 KYF4Pݢ]="G@BaJZkFTFGVV@Ja1 HAFVw&tFw]LCX?'F=,B 54G@BHb/JZkC=`=`=`}]"0BKZk@B5JZkHݢa@@C\h=/Y `= Cp"C}"Ch"C]#CP}#C~GGPb#_@pH]_FH]p}B`P5B/PUB/pݢ(CqGYpG{JZ@K[GW@Y`p=P @p=p=p}xC"]"0B|KZk@BIZkxpݢ@x@@= C/?h=?h``=`}"]"0BfKZk@BIZkGpݲGh@=/ @= D/ "C4GGb#CE_ӻÐ= CX==h]46J_FF4Xݢ,ղ#C@=x]86H_GD84G@BHbwIZkCA=8BR"CQ4GBbUIZkC3ݢ]="G@BIZkF4FGWV@Ja1 HAFW8"! C6" Uv@Ks`JSG U}_{#$`<"1"CTGpBxbIZkCp"1"C04GGb#D_. .JQ JFb\sF}]"C"C#C=#C]_G:AK0@C]= C }""GBb/GZk/ "1"C]GtGBbuZk ="Cb#c_À]@}s3dJfJ/ `x"C"CTGBbHZkcG]]#kY0J_G[GYà#~@^H^PGG0(=0 ="Cb#_888* b#i_888" ]JB]("CTG B(bNHZkC= 11$J&J=}(s}("C(b#_88= 8G@]H]P`#k#~@^H^PGG( =(="Cb#_00/0)b#%_000!]]Bݢ֢6JJ #CBZ#CTGBbHZk 8"C8"TGG@b#B_4GG@]H]P`#k#~H^P^XGG0(=0="Cb#_888jb#_888b] ] B ݢ֢6JJN (#C] "R"G BHZk+ C=ݢ*#8/.8KPJ0G0JJv.V.G4JJ;JbKJtJvK{vKzFTF`F[Fv>V>B*,/.HPJD HHx.X.G4JJ:HBKJtJXKzXKvFTF{FZFx>X> 0"CTGHBPbGZk @"C@"TGGxb# B_4GGH]P]X`#k#~H^P^X~`hGG=80=(]8=! G(G(=1(]TG=1= R]80== Cb#_  #/ C2DJFJR"@d&"F4GPBXbOGZk @C@"TGGb#A_040]c0b4GGH]P]X}`hp#k`#~^^cG#G=tG="C="C= C=c@"cG`]"d]}h]"CGhb#2_x C= Cb#t_/À]"C}"Cb#h_/È]"C}"Cb#\_/_"]"C"TGGxb#/@_/ ]&:"GtGBbsZkwà=P=P=*BH=H}hB@}PPݢPPP=PP=PP==P]P}}PP"G0B/GZk0?Ft F0G]rV`Jp1JpFrG4G! JzQ@K:F!8"! C TGJrQ@JFTG8!JpqJ0F8@](Wl},vt0h=]4r6`J?DaF4rp=40V Jy1 K9F40PTGVG8wKGXGT}`P _&2D }/8`P0 K0P4GKvqJGP]#4:!H{S`K;D4:P]|"C$bls"C}=GѢvJy KFѲG7!HxSK8D7]bd{#Cz]B}= B=@ݢ@=@@]@@@"G0B/FZkFTFG@V@Ja1 HAF@y&tFy@]LCV&F@=,@ 8PBR"CTGBb FZkC P4GGлb#A_. .JQ JFhpb\sFX}p]"C\X"C`#C`=#Ch]_G:AK0@C]h= C P}""GBbDZk "1"C]GtGBbrZkm`="Cb#n_/b]@^HH]HHH="G0B/FZkD4DGVJ`1HF8 CP=<8]@H}S#[GS=& H"C@"CGvKy KG]4GRAKsS`JSGR}"d! C;Bݢ@H"9#CTG`Bhb/kEZkCH]pbS CR4GcG]]#/k#~P^X^`GG@8=@="CtGb#i_"C Cb#_HHH* ]"C0}"Cb#_HH/Hb#_HHH]JB]0 JuSJF ,=(8b{#CTG B(b/DZkGP]X]`p#k#GG변볐+ +\볏+ `+볎+ ++ ++ +GvHq JD>GJsS`JFqA>^AB^~Gp$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1Y"TvHtJDGPAJqS JQFPsA`BGvHq JD~tGJtSJFtA>^AB^~GvHtJDGPAJqS JQFPrA`BGvHq JD~GJtSJFsA>^AB^~GvHtJDtGPAJqS JQFPk"`pA>!@>>Gqv`Jr@JrFqtGJuSJF+" ^\k"r>!@>G4v JuJ5F4^GJsS`JF+" tA>!@>^G2v Js`J3F2GJuSJF+" ^uAr>!@>G4v JuJ5F4^GJsS`JF+" vA>!@>^G2v Js`J3F2TGJuSJFyA ^~aB~GvHtJD>GqaJrS@JrFqyAB>GvHr@JDtGJtSJFzA ^~aB~GvHtJD>tGqaJrS@JrFqzAB> _"vHr@JDGJtSJFt+ ^pk"r>!@>BG #kP#~^^G#G  ="="= =X,DX"-! C= C= C]"C , H H0@0pA"8}G>qA? @=@ GrA  HH}"(~ 0"u.uJ3aJ0`BP}P= 8>tA@"5,5H!!H0 @X=X}"H~uAP0}"8"4GBbBZk(( "1"C(]GtGBb'pZk c="!B= ]}SB]XTFXU"C=#C]#C}#C `"h8F?#p=p}#~+>"xx"+ >k#,H H0@}"(~vA0޶\+#/K8K0C}#8~\? aA@>`}"h"GBbAZk(( "1"C(]GtGBboZk =0@= }"Cb#_((= (4GG]]#k#~^^GGx= ]" ]@ CG0b#_X C8= CHb#"_ӈ8]2GJGJ0]84JJ((ݢ0"oA=}{ `="]"tGGb#_Gh"GpQ"`} `h`l!d=TGd+v KwJ7Gd+`]pQ`d]tGGBsDZkB/BZk= C=@vHxKD4GUAJpSJPFU}D]}aC}ݢHvK`HG=GYAJpSJPFYL}u]AC]}PvJ`HF4GXAJpSJPFX=T}yB]ڢvJڲ8}`G?&1"GKpSJG}=BGTv@K`H@GT}8=/ TG_&R"GKpSJG}0=#C3=᳈BG4v JvJ6F4]8TG'#GraJwSJwFr=(= C9ೈB`ݢvJvJFGJrS@JF}d=;=@pբvJpJFղ]p]@TG&"G:!HsS`J3D:}t=;ೈ=!B=B]"Cb#_ {A="]"tGGb#_= C]"CtGGb#/_ӈ/ ="]"tGGb#_ӈXL? aAh=/ h]"8bts"GCb#_ӈ/E8] @Hbs"CpA4GtGBbOnZkxb#_ӈ/18BR_F]8"C"C"C#C?#=}x}"GBb@Zk h"1"C]GtGBb"nZk x="Cb#_ӈ=/ 4GG]]#k#~^^GG = ="C8b#_(((8]"Cxb#_"C08=#C0="tGG@b#_(((b#`_G]] #k#~^^GG=="Cb#{_   0]"C@b#_"C(0=#C(="tGGb#_Xb#6_G]] #k0#~^^GGh`=H@h="CtGb#_`"t! Cb#]_pppGØ]"Cp]pvJuJFp4GxaKyS KyGxp= p=p@pp}ӢvJtJFӲpGWAKxSKXGWp}=;pp=!Bp=p]}vJs`JFpݢ4G6!KwSJ7G6p]=:p}pBpp=p]@Bp]G("C,ݲG8= C<=G0}"C4G ]"C$"CpݲpGXv@Ky KYGXptG !J{S`K;F p]}"Crp("CpݢBpݲp=GAv@KxKXGApG`aKpSJpG`p]}"Crp8"CpݢBpݲp=GAv@KxKXGApG`aKpSJpG`p]}"Crp0"CpݢBpݲp=GAv@KxKXGApG`aKpSJpG`p]}"Crp "CpݢBpݲp=GAv@KxKXGApG`aKpSJpG`p]X}"CrppBppG7v Ka H!G7p]G:!J`SH F:p}P]"C[p}pBppݢGvKa HGp=G9!J`SH F9p]H]"CZp}p}aBp}pGvJa HFpG8!J`SH F8p=@]"CYp]p}aCp}pp= @p={Axx="]"tGGb#_{A C= CtGGxb#_pp {A="]"tGGb#w_p4GG]]#/k#~(^0^8GG =4G]" ] =1Gr=JPJF"CTGb#_ =TGb# _GG(]0]8@#k#~(^0G =]  =1G   % ]R]p.pJ$GH Q@$P.uHRPJUFP>4Gp""`.vHTJF>C ;1"CGaG[{~Zk = 4GG(]0@#k.T JFP. HR PJUFP>. HT JF> #~ ^ ^ cG#G=TG="C=xx"CcH"1"=ch`? (= ,==x}G8="C<=GH= CLG@= CDG0= C4= C=G v Hq J1D tGJsS`JF= C =8]"CQBG4v HuJ5D4=GqaJrS@JrFq= C H"CB]G2v Hs`J3D2G4!JuSJ5F4= C ]@}"CrBG4v HuJ5D4]G2!JsS`J3F2= C 0"CB]G2v Hs`J3D2G4!JuSJ5F4X= C ]}aB}=GvHtJD=GaaJrS@JrFaP="C BGvHr@JD=GJtSJFh"C]}aB}=GvHtJDGpaJrS@JrFp`="C B]@B]4Gp{A= C="tGGb#(_Ә/=p=}"CtF`8ݢ&"F {A="]"tGGhb#/ц_Әp=i 0JJ BR"C$] "C("C("C87JJ7J0B8=#C_#]GX C""GP"C #} (`0#"8h=@>H HH H0@"HH"CP@=9'K'K9!K0 C=]#X^@= C`>0 HH H0@"h޶0"Cp}""GBb9|Zk;H"1"C]GtGBbFjZkH :"L!?D ="M1"C$= }"C("C("C"ݲ88KK8K0C8]#C}~}""GBb |Zk H"1"C]GtGBbjZkH È(="Cb#_Ә= 4GcG ] ] #kP#~^^GGx=X="CGb#+_X"C{Ab#_ӈ]"C]`vJuJFGxaKyS KyGx=d=@}hӢvJtJFӲhtG_'Z#G7!HyS K9D7l=0ೈ]AB]pvKuJG]p= TG?'9#GJwSJF=t]}aB}ݢBݲ볎+#+"C}G[v@J`H@F[}GӢJtSJFӲ+ 8}A0Bೈ= B={A}#C}"CtGGb#_ӈ/x}A0b#_G]]#k#~H^PG0(= C88=0=!vJa HF8]q$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1v"eTGJsS`JF80=! 88=!B8=8}vJ8G !JaS H!F 8]8}8B888= @8={A="C@@]"tGGH{#_GH]P`#/k#~X^`^hGG@8=볎+"+"CHH=Qv@JQHtGJpSJFH=H=H]ABH]HvJH=GAAJqS JQFAHH}HBHH=H= BH="CHHG v JtJ4F H]GJpSJFH+  H=}AHBHH}HBH{A= CPP]"tGGb#_HH/H8}Ab#d_GX]`]hp#kP#~^^G#G  ="="= =4G + TG+@0JJ@ C= C C]"C? 0= , H H0@8}A> @@= > ? H=H G $"uA(+ ,H H0@PP"0 `A8"5,5H!!H0 @X=X}"@~ `AHd"u.uJ3aJ0`B`}`= P>lAX0}"8"TGBb"zZk(( p"1"C(]GtGBb/hZko="!B= ]}SB]@5JJ@⦱"C=#C]#C}#C  h ".J5J0Bp #xA_#x]x k".JJ0`F~"=#> , HH0D "ݲ"(, #8/8K K0G0 `/`K H0@}"8~"uA@h}"p"GBb/yZk((/ p"1"C(]GtGBbgZk=0@= }"Cb#_((= (4GG]]#/kp#~p^x^GGPH=@]8}0L+1&J&J6 8]4@dk31`Bd+v Js`J3Fd+dK2FJFJ)@HBXX}`}` ?"Pv@Jq JQFP`}GJaS HF`t `=pK"Q`=!@`=``B`4G0TGdkv`Jr@JrFdk{AP=H]tGGpb#+_(0K(=C Gpr"L""CXXWv@KxKXGWX}GJ`SHFX=X}XBXXpWv@KxKXGWXG`aKaS HaG`X=tRQXX}aBX}XݢXBX8?#yA]#Chh]"tGGpb#/*_4Gd vJ`HFd (= @b#x_(]GGp]x]#k#GG볎 N    d h 볎  볐  >GvHq JDGJsS`JF+  >}AQBG4v HuJ5D4>tGqaJrS@JrFq|A B>GvHr@JD>GJtSJF$+" ^~aB~GvHtJD>GqaJrS@JrFq "">!@>^GvJs`JFtG4!JuSJ5F4 "^lAr>!@>GvJuJF^TG2!JsS`J3F2~AB>GvHr@JD4GJtSJFA ^~aB~GvHtJD>GqaJrS@JrFq " ">!@>^GvJs`JFG4!JuSJ5F4N "^k"r>!@>GvJuJF^4G2!JsS`J3F2 "">!@>^GvJs`JFtG4!JuSJ5F4A^~aB~>GvHtJDGpaJrS@JrFp,+" BGvHr@JD>GJtSJF "^~aB~>BG #/k#~^^GG0(=0@="CGb#_@"C{Ab#]_88/8p]@p}"C"CTGGضb#3_88/8À]@}"C"CTGGضb#3_88/8oà]"C8]8PvJuJF8GxaKyS KyGx8=T8=8@88}vJ8ݢH&"L'#TGGVAKwSJWGV8}8=8B88h]vJr@JF8h/G&"GUAKvSJVGU8}l=;88=!B8=8]}vKs`JG8G?'9#G7!HvSJ6D78}88=!B8=8}xvJtJF8=x= tG&"GJvSJF8}|8=8]AB8]8G4v HuJ5D48p4G?'9#GHvSJD8}="C;8]8}aB8}8GvJuJF8=G&"G9!JvSJ6F98}]"C[8=8}aB8}8vK8`/&"d=1 ?&1"GG !KwSJ7G 8]8]8}aC8}8GvJs`JF8= ?&1" Ô/$ 4GGJqS JF8=BZ#CY8]8=!@8=8vJ8X/$ \=1 ?&1"GGJ`SHF88=8]AC8]8=vJ8}&"Ü=1 ?&1"TGGJtSJF8ݢ88C88]8]@C8]("Cb#/_HLG/X= \G]dJrS@JFd"C("C(]}b#g_G]]#/k#~h^p^xGGPH=P`="CTGb#A_`"C{Ab#_XX/X]"CX]XhvJuJFXh=/ G'{#GJzS@KFX=lX]X}aBX}XvJX=TGJ{S`KFXX]X@XX]vJXxݢ/G?$! G5!KwSJ7G5X}XX]ACX]X=x]vJr@JFXݢGJaS HFX|=7X}XCXX]Zv@JZX}p&"t=! ?$! GGJtSJFXݢXX=!CX=XXCX]"Cb#g_"C=#CH]pt=!GGpb#_Gh]p]x#k #~^^GGXP=X="CGhb#_ CH= Cb#_```]"C{Ab#_```H]2GJGJ@]H4JJG8p"C`ݲ`=xv`Ky KyGx`=GHpSJD`]}r``B`` Wv@KxKXGW`}HH/4G&"G[AJaS HAF[`}$``ݢB`ݲ`GvHy KD`H= G_&R"GpaJqS JqFp`@"C`ݢ`B``G8v Hy K9D8`]HVJtG&s"GJqS JF`8"Cղ``B``(=vJy KF`}H= J G&"GJrS@JF`ݢ,`=`B``0=8v Jy K9F8`H]@J@4G&"GHsS`JD`ݢ4=6``B```= C`={Ap]"Chh]"tGGb#4_``= `4GG]]#k#~^^GG = {Ab# _((((]"C(](ԢvJԲ(GWAKxSKXGW(}(=(B(((]@B(]0"C`b#0_"C0#C]dk3dJfJ b#}_G]]#kP#~^^GGph=TG`G@H]"D] p{Apb#_xxx0]"Cx]xԢvJԲxGWAKxSKXGWx}x=xBxxx]@Bx]"Cxxݢ"6v KwJ7G6x]TGJ{S`KFx= x]}"CrxBxxݢG6v KwJ7G6x=GaaKpSJpGax`="C x]x}aBx}xxݢBxݲ{A0#C=#CtGG`b#_xx h BtR"Cb#p_Ӏ/x-k" } FX "C\X=#C@]#C@}#C? =}"`GBbzsZkxxxh@}"Cb#G_xxxh}"CTGb#^_G]]#k#~P^X^`GG80= "C@@@v@J@@GJqS JF@@=@]AB@]@=@}`B@} C@@_"pv`Jr@JrFp@tGJ`SHF@+"0@]}"Cr@@@@@B@{A ="C]"CtGGhb#_@@ 0BtR"CXb#_HHH @k" }0"CXb#_GP]X]`p#/k#~P^X^`GG80=(] }(="CtGb#3_"C{Ab#_@@@H]"C@]@vJuJF@GxaKyS KyGx@=@=@@@@}vJ@ݢTG6!KwSJ7G6@]@}@=!@@=@=r;v$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1*"vQv@JQ@}8ӢJtSJFӲ@@@=!C@=@}vJ@=/ ?&1"]R@_&R"GGJqS JF@@ݢ@B@@=9v H9@0}`0]$ GpaJrS@JrFp@@@ݢB@ݲ@8v K8@]8}5jC/`GG:!J`SH F:@]@}@B@@ݢ@B@#Cb#M_H=#C"C ]/=!GGb#_GP]X]`p#k#~^ G=]}GG{#._G] 0#/k#~^ G=]}GG{#_G] 0#k#~^ G=]}GG{# _G] 0#k#~^ G=]}GG{#_G] 0#k#GGL CF/>!Q @>> L @ CG #k#GGG>~>}#_  G #k#~(^0cG =c0;1"=c ]}4GG0{#_cG(]0@#k#~^ G=]}GG{#_G] 0#k#~^ G=]}GG{#_G] 0#k#~ ^(G=/=== 4G wA}&"4GG[{/t_ZkG ](0#k#~X^`^hG#GH@=+"=  CPP=GvHa HDPGJsS`JFP+  P=]"CQPBPPPBP = C="CG4GGGG(B0b/rZkC +_&2F +=b#_PPP@}"Cb#_GX]`]hp#/kP#~^^G#Gx= VH bAcAb#_ӈÀ(}"CtGb#4_("C "C0b#v_ӈ0] @ bsF} "C"0#=CwAb#_Ӑ@]"C]vJuJFGxaKyS KyGx= =@}GӢvJtJFӲGWAKxSKXGW}xA;=!B=]vJ ݢGG5!KwSJ7G5]=᳈}aC}8=`v`Jq JqF`8ݢ/GGKuSJG=<]Y=᳈Bೈ= B=@}"C"CGTGGGGBb rZkC=b#_ӈ=/  K&SF K4GG]]#kp#~p^x^G#G`X=` ="C4Gb#w_ "C Cb#_hhhd]@4G}0"ChhGWv@KxKXGWh}G;!JaS H!F;hK"@h}hBhhݢvKh=GJzS@KFh=h}h@hh}GӢvJtJFӲhtGJxSKFh=]#CYh=h}aCh}h]h}`Bh}0"C"CGTGGGGBbqZkC=b#F_hh= h4GGp]x]#k#~h^p^xG#GXP=XH="C4Gb#_H"C Cb#4_``/`c ]"C`]`vJuJF`GxaKyS KyGx`= `=`@``}GӢvJtJFӲ`GWAKxSKXGW`}xA;``=!B`=`]vJ`ݢGG5!KwSJ7G5`]`=`}aC`}``= B`= }"C"CGtGGGGBbpZkC=hb#_``= `4GGh]p]x#/k#~ ^(^0GG=="CTG B(bnZk CGGGG0B8bboZkG@BHb.oZk4GG ](]0@#k#~^^GG`X=`8="CtGhb#I_Xp"t! Cb#_hhh8]"CP}"Cb#_hh/hP]@4Gx}"C0}P/0ݢG6!KwSJ7G60]@}vJ{`KF0=D]Q00}aB0}P6J0ݢG6!KwSJ7G60=Hav`KpJpGa0=L]Q00}aB0}PVJPݢ6JJ(ݲ0GJyS KF0]GZv@J{`K[FZ0(}"C`00B0PJP=!W'H'H =0TGXAJyS KYFX0]Gzv`J{`K{Fz0 "C0ݢ0B0PJP=1'J'J8 F=0GxaJyS KyFx0]GvJ{`KF0ݢ= C600B0P]AJ@P HHG0tGJyS KF0]GڢvJ{`KFڲ0"C0=0]AB0]P}VaJ`P4JJG0tGآJyS KFز0]GvJ{`KF0= C0]0}aB0}0բJղoAx#Cpp]"tGGb#Cz_hh= h4GG]]#k#~0^8^@GG = 0]"]  CPb#}_(((}"C"C4GGGBb/nZk= Cb#_((= (4GG0]8]@P#k#~H^P^XGG80=8="CTGb#_"C C0b#F_@@@)]XK"C ݢ֢/ 7JJ( "9#C,=(}#C } ]4GtGBb/[Zk0 "t! Cb#\_@@= @4GGH]P]X`#k#~X^`^hGGH@=H="CtGb#_"C Cb#_PPP;]XK"C00ݢ֢ 7JJ8"9#C<=8}#C0} "C(( BR2GJGJ8]"C<8"C(ݲ0](}TGGBbJ[Zk@"t! Chb#_PP=/ P4GGX]`]hp#k#~H^P^XGG0(=0="CTGb#`_"C{A0b#_888']"C8]8 vJuJF8GxaKyS KyGx8=$8=8@88}8B8{A"C@@]"tGGb#)_GH]P]X`#/k#~@^H^PGG( =(="Cb#_0009]"C0]0GvJuJF0GxaKyS KyGx0="C0=0@00}0B0{A"C88]"tGGHb#_00/0 = 0b#{_00= 04GG@]H]P`#k#~@^H^PGG( =(="Cb#9_00/01]"C0]0GvJuJF0GxaKyS KyGx0="C0=0@00}0B044"wA#C88]"tGGb#_00=/ 04GG@]H]P`#k#~8^@^HG#Gh`= H8]"L]80(G +"$=GN "G   " P= Cp=p]2v J2pGJaS HFpp=p]ABp]p=p}`Bp}"Cpp ]`v`Jr@JrF`pTGJpSJFp$= p] }"CrpBppG4v HuJ5D4p]tG2!JsS`J3F2p8= C ppBpp=GvHr@JDp=GJtSJFp0="C p]p}aBp}pGvHtJDp=GqaJrS@JrFqp("CppBpp=]vHr@JDp4GJtSJFp= p]}"Crp=!@p=p4v JuJ5F4p]GJsS`JFp= p"Cp=!@p=p]}2v Js`J3F2pGJuSJFp = p]}"Crp=!@p=ppBp4?"qAP]"C}"CtGGb#/ _pp/pPBlR_F@]Pm"CD@"CH"CH#C?#x=8 =!'H'H!!H0 @= }"C~ݢ6JJ6J0Bݲ##C};gKgK;aK0`C}= >= C >ݢ6JJ6J0Bݲ=#(>#C0 }"8~0@"#H(Px}""4GBb/jZkpp/ "1"Cp]GtGBbXZk4? aA]"C="tGGb#_pp/prL]H}SBL]H"5BH@#CH=#CH]#C#}8 }3gJgJ3aJ0`B} "C8KK8K0C]#^= C> HH H0@"޶"C 8KK8K0C]#(^= C0> xx"8޶0@?#== H>(P}""4GBb/jZkpp/ "1"Cp]GtGBbXZkH=L0@H=8]"CL]HL4BH`H#Cb#@_pp= p4GG8]@]HP#k#~^^GG@8= @X C4Gb#_X"C0 C0b#_HHH8`]"C(}"C0b#_HHH-h]"C}"C0b#_HH/sC+k$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1O"H!Ð]"C }"C0b#_HH/HØ]"C}"C0b#_HH/H à]"CH]HԢvJԲH(0= G'{#GJzS@KFH=HH]ABH]HGvKuJGH=0}6`K`p= tG&"G9!JpSJ0F9H]"C@H}HBHHݢp6v HxK8D6H06Jp= TG_'Z#GWAJyS KYFWH}tHH=!@H=Hx}8v J{`K;F8H]0VHx]/@4G?'9#GJwSJFH|=5HݢHBHH}Xv@J{`K[FXH=0}`J`G&"G9!HtSJ4D9HݢղHH=!BH=H]Grv`JxKxFrH0= H G?'9#GJtSJFHݢ "CHH=!BH=H}G3v HxK8D3H=0րJG&"GJuSJFHݢ CH=H]ABH]H}vJxKFH0vJG?'9#GHuSJDHݢ=6H=H]ABH]HHCH4"pA=#CPP]"tGGb#/@_HH=/ H4GG]] #k#~H^P^XGG80=G4G]" ]8(="C  C= CGGGb# @@@/@(] }SF@4G0"CXb#_@@= @4GGH]P]X`#k#~`^h^pGGPH=P(="CGb# _("C Cb#M_XXXx],@bsF }"C$F"9#C=bA }#C0= C CGBbjZkXXXVBrbA4G[@ZkXX/KXJBR2GJGJ ]"C$cA0"C "CtGBbiZkXX/X2BR_F ]"C$dA0"C "CtGBb/iZkXX/XHcAdA}"Cb#_XX= X}8]"C@}"CTG[@ZkXX= X4GG`]h]p#kp#~p^x^G#G`X=G8G0]G(=F4F` HH((=(}`]Rp"PB/4kZk`BiZk9= B40/1(p]"C8}"Cp"C0]#Cp}#C CGGpb#'_8]_F]}/`B/00ݢ(ݲ(=(}p"p]"PBjZk`BoiZkG8G0ݲ/= G/ x"C`]4G&js"G0B8b/UZk:0= =p="C$=GHJsS`JFHP "CH#CGGGG B(b/iZkChh x"1"C ]"Ch}4GG0B8b/UZkH=!&H&H@=L=D=X@"Cb#b_hh=/ h4GGp]x]#k@#~^^G#G= ]"]HG@G8G0=F4FP="CTGhb#_"GP @BFtFG]V@Ja1 HAF]TG]@KaQ HAG]H"! C=TGJ`qHF8 CT]]\]]P}6JGFX]V@J`1H@F]8}"G`? !$@dB?TGG8{=HTJF8]G9 DQs HR@JSFQU@G:"FT{HZPK[GTM@ C<GG@t=JPJF@CGB]#@GaJ@HD; CD]"C4G0B8b/OhZkCP=0=0=0}T]" BjZk0BqhZkݢaC\8=/Y 0= C@"C}"C8"C]#C }#C~GG@b#_@]_F]@}B` 5B/ UB/@ݢpCqGYpG{JZ@K[GW@Y`@=P @@=@=@}HC"]" BiZk0B)hZkH@ݢ@H= C/?8=?800=0}"]" BiZk0BhZkG@ݲG8=/ = D/ "C4GGb##_ӨØ= C(=8=}6`J?FqF}("CxݲHGpz`K[}K`Gpz`p=!'H'H=x==}"C4G0B8bgZkCp0JJx]]"C4GGb#K#_tp=!&H'H=|==p}3eJgJx}|p7JJp=t=t};gKgKh}=l=t=1&J'J`=}d}pFp⦝"C=#C]#C C}G;aK0`C}}"CF5J0B"Cx=?G9!K0 C= x Cp}F3aJ0`B}"޶p"C ޶h=?G9!K0 C== (>h C0`}F3aJ0`B}"8`"C@޶}""GBbeZk= Cb#_= 4GG]]#käìöþÜY0J_G[GYV#GG> +_&2D +4GG #k#GG> +_&2D +4GG #/kp#~p^x^G#G= H`]"L]@G8G0G(=F4FX="CtGb#_h Cp= C0b#_Әð]"GP"3bBBB/FtFGVJt1JFTG= KtQJ4G=G}aKtqJtG}"CTGHpqJD C\}}dݢݲX]6@KGXG]`}VJ{1`KF"G`?"1$BB?TGGruJS}JuFrW`G"FyHXKGOG]#@G{HTJF/F` CG ]"@FvJUJF;`"C #C= C4GBbVfZkCX=(=(=(}\]`"BhZkB/wfZkݢcC/]0=[ (`= C8"C`}"C0"C`]#C}#C~GGb#_8/]_F]8}B/`5B/UB/8ݢ CqG`YpG{JZ@K[GW@`Y`8=P @8=8=8}@C`"`]"BgZkB-fZk@8ݢ@@= C/?0=?0((=(}`"`]"BgZkBfZkG8ݲG0=/ = D/ "C4GGb#!_Ӣ`= C =0=}6`J?FqF} `"C@ݲ@G8z`K[}K`G8z`= C4GBb/eZkC"C4GGb#!_. .JQ JFx}0`"C4G0B8beZkC"C4GGb# _. .JQ JFx}&"tF`TGJuqJF#C4G0B8bneZkC="C4GBb/;eZk DP "CTP]"CH}"CH"C"0FxG8K0Cx]#C^}""GBbcZk/ P"1"C]GtGBbQZkP ÈH="Cb#_Ә p]@}`"C4GGb# _4GGp]x]#/kêòþdY0J_G[GdY\Ð#~X^`^hGG@8=@ HH0@=14=($< ,0 0 C(="CTGGb# _HHH@]"CH]HGvJuJFH4GxaKyS KyGxH=("CH=H@HH}vJHݢG6!KwSJ7G6H]H}H=!@H=H=H@HoA}"CPP]"tGGb#o_HH= H4GGX]`]hp#k#~P^X^`cGG@8=c`"1"=c@="CTGb#_  C0= Cb#_HHH8bts"CHb#_HHH@}8=0]tGGb#!_cGP]X]`p#kGGG/k#~(^0^8GGP G="1"=G"= C]"CjAb#_  / "Q CPK 4GG(]0]8@#k@#GP> @hG~P^X^`~hpx~cGGG=NB#CaDGGGw@HH  G GPBTG=@@= C=88#CcX"c0"!=@= G8}.J3GJ(=11$J&J1" (=S-@ (]@NXCR0]0 0=X @=TG[@Zk àb#n_CP+TGGb#8@cGP]X]`}hpx}#/k0/Y 0K7G#H^( >^4G"(^Gq^JPJFA > >)"Q.,QJ@ H@F*@A .). JQ )JF H4G0>8^08>[[`X/[@@C0L  @ @>"CGTG[{ UZk ,,H@ HD @A) .!.JQ !JFi..iJT JtF@J2@H^P#k# ^ G>^@.GGGl#_  A 1@ "GJ"GL/eZkLcZk>,e*HDHD<ަ"7// J`JY 7KXK5GG7?? "P.0. IsIR PJQ0JTF3FP>0> ^0#k#^G! A!1!@ "G J"G@/dZk@YcZk) .,JD HF*AA).I.)JR IJ2FJ01BGG^"tG@`tkv$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1"[pZk ,,H@ HD @A) .!.JQ !JFi..iJT JtF@J2@^#/k# (^ G>^~>B^j".3. SJ`SJP JQ3JF F>3>~ $,, dHpdHA $H@H1DD$<<J.JJ>^l#\_ >@/~ ., dHqdHP JEHFD><~".. tJwtJV JUJFF>>l#y_ (^0#/k#^ G QA@A/,*,*H ,H @/$j ,#,HA #HDC ,.HP JD 1@@j ,,HE HD ",0, pHqpH@ HA0HD1D<0?^ #k@#~H^P^X~`hp޴x>^޵GG0(= ]}0=)"Q.q.QJS qJSF . , J@ HFHAI.i.IJS iJSF J/ I! .. JT J F C@*1AA 0AA 1A@AJ.JJx@F=@ =/ ",t.HS tJD0@B]_=j"..JP JFC0B/J"r..rJT JtFC@B*".q.JS qJFC11B]0@B `..`JT JtFC0f_4G*1AA*,*H D? }Y`  .%.JQ %JF%1@@ J.JJ(= ] f6_4GE =J b,,bHD HdD"1@@A@?( "0.P.0JR PJ2F0B@/j"..JU JFC(ݢvBF #X/8/ xJ{xJZ XKY8K@G;GX?8?j ,C,HB CHDC =A@!FJ",. RHtRHE HPJDF<>(f_4G^4G=}/>` (= ]GPf_6 H88]}C@/.@8D%80B4GGf#[t_/8}xKb@@]@=@ 8]BrFG@BFtGG f_(f_ 0AA8$ 88=8]tG f_4GGH]P]X}`hpݤx=]ݥ#k#~(^08>@^HG=]= "0.P.0JR PJ2F),I-)HJ II*DHA).I.)JR IJ2FJ.I!*, ,*H@ H  D C&@*1AA 0AA11AQA! ] ] , HD/= =  ]* ,!-HI !I DC@B = "0,0-0HI 0I)DC1@?4GGG(]08=@]HP#/kP#~@^H^P~X`h޴px>^޵GG(` @&(= . ,JA HFi,,iHD HdD@H@ .i, JC iHF H+  ,D,HB DH D C#@*1AA 0AA#1ACA` . Jx D? , HD d,.dHP JpDC@?$a@/ @_$] .d,JC dHF0`@}]@$D@@@& =TGGf#_ ](B]=/& ?&0B!]}G2HSf#0_ =ݢGUHvHf#_ӑH/0]}G"CGGf#_Ӄ f_ GTGGf#/_88]@ 4GG f#_$GGf#/`_ (00x=0]GxBGGf#_G}dD `=21AGGGf#_4GG@]H]P}X`hݤpx=]ݥ#k#~H^PX>`^hG80=(]@$ 0@?$ @@&@/ =(]<@F2B=$B@_&]8=)".,J@ HFI.I-IJJ IIJF HA .). JQ )JFHYI!J.*,JJA *H AF CQ@*1AA 0AA01APAL*.*JD#* !-A.!IR AJ2EC 0@/ = -@. IR @J2E B  @ 1@ =J"2..2JP J0FC0AD =*.*Jx F  . ,JA HF*!I.).IJQ )J QF  @0@@@?&1"B@=@  A*.*JF4G] =IB ==1@ !0@=]@4G(= =(B(==GH]PX=`]hp#k#~h^p^xGG8` 08P.p.PJSpJSF@${0GTGGb#(_@@04GGb#_lGGb#__0(((\@_& ] B[ ݢ 7BTGPX=PX=[[`X/[``CBݲ0=TGGb#/,_0(((]R&SB@ݢ61Bݲ0 8KK8 C@0](ZICD]@ CH= CL="CGGGb#>_L8=8]8}RTB @sB`10BGG@ݢ61Bݲ(0C  Gh]p]x#k#~8^@^HP>X^`GG= ",0,HA 0HD).I.)JR IJ 2F@I A), .)HP J0DHBI!*.J.*JR JJ 2F C:@*1AA 0AA!1AAA5 . JD10@Ab#8_ 0AAb#4_ "0.P.0JR PJ2F444TA0 0BA,],7A(,=(C/(0}#C( CGtG B(ba^Zk ] @ ==21 @GGG@b#_4GG8]@]HP=X]`p#k#?G~P^XG=@8=0] (]_F(]FF=Y B 4G8BG@8=.,J@HF]"r.2,HtHSrJA2HuF4Dr>2<yB4G0= CG 0@.`.@JS`JSF!"..HyHPJUJFF>> ? !]",r.2Hp2H@HSrJDpF<r>@4GH CH="tG [({bZk4GGP]X`#k`#~^^GGph=`]X}PH=v JH=TGH}aJpqJpFH}GH= JpQJ0FH=LH}"Cp=TGHBPbwZk G@? !$@@?GH=1&J&J=L}} ݢTF ݲ8<h=0=h}4}h@D]"C8bs"Ch"CtGXB`biZkxx/ H="C4G(B0bsGZk$J FH= C4G(B0b/iGZk8]@8000JJ4G0}aJqS JqF0}44JJ4G4JuSJF404=CD]T@GD]<]"FHFH$ @D0?&1"F04]2FJFJ&s"SF@4vJ4`ݢ0X=4P]D}z4GG]]#k#GG>>81,!,(4GG#k#GG>!&"B ?$! G* " Q.s1HRQJSFQ>qF(բpFVJWB(ղ>(!, 4GG#kQ. 1HR QJSFQ>,բF,ղ#GG>!&"B ?$! G(@.s HR@JSF(@>(, / ,qJA H1D <^~<s4`F<r4GG#k)@. HR @JSF)@> , JA H1D <#GG>,!4 >(001 >$04GG#k#GG?$( ?&,04GG#k#GG>?&,!,(4GG#k#GGqD(QpDRSJW`B(Q `,"qFբpFVJWBղ4GG#k,Q_F,QբFղ#GGqD(QpDRSJW`B(Q`&","/.wJVJF>><!4 D< 4GG#k,Q_F,Q. JV JF>#GG?$! (@.s HR@JSF(@>&",".wJVJF>><!4 D< 4GG#k)@. HR @JSF)@>. JV JF>p#~^^~ (0޴8@H>P^X~`hp޵xG Ϸϧ ok8 @! ͡@AHϦvJ@F4G7J.JF( #.J 1`@ Q`@! q`@!(G^~ (0ޤ8@H>P^X~`hpޥx#k Gt XϦ@o[G@Zk`+G4G`o[@Zk#~^G {[@ZkG #kp#~^^~ (0޴8@H>P^X~`hp޵xG(`G^~ (0ޤ8@H>P^X~`hpޥx#k#~^~ (G G #.TGwHVJF-< ok -"8 @ GG([0{?#@ZkG~ (0#k#~^G ({[@ZkG #k#~^G {[@ZkG #k#~^G {[@ZkG #k#~^G {[@ZkG #k#~^G {[@ZkG #kp#~^^~ (0޴8@H>P^X~`hp޵xG G̢1F̲͡P@75BG{#?#b_G^~ (0ޤ8@H>P^X~`hpޥx#kp#~^^~ (0޴8@H>P^X~`hp޵xG G͡P@75BGuS$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1&"{#?#,_G^~ (0ޤ8@H>P^X~`hpޥx#kp#~^^~ (0޴8@H>P^X~`hp޵xG0DG  G^~ (0ޤ8@H>P^X~`hpޥx#kp#~^^~ (0޴8@H>P^X~`hp޵xcGp̢1F̲G[@ZkG^~ (0ޤ8@H>P^X~`hpޥxc#kp#~^^~ (0޴8@H>P^X~`hp޵xGH G(,0/!) GGG,̢4F̲͡P/.@4BGp/GGtG[@ZkGP{#GY_,%U@  G ` G[@ZkGGÈo[@ZkG^~ (0ޤ8@H>P^X~`hpޥx#kp#~^^~ (0޴8@H>P^X~`hp޵xGG((#=>=> =(>(B0b ?#@Zk0##xGG͡P@4B#=>=> =(>8B@b ?#@Zk0#0b#G_HG^~ (0ޤ8@H>P^X~`hpޥx#k#~^Gۦ(Xt7 ! G #kP#~^^G<8=,](}$8 H0G=(].J/@GJGALC@J@ALCDALC@Qv@K@QALCHALGC@HsS`JD@AL<=CD!ALC0@Pv@J`H@F@PALCH0@@ALGC@HaS HD@AL,]CDPALC@3v H`H D@3AL(CH0@@ALGC@ !HrS@J2D@ AL]#CDSALC@4v H`H D@4ALCH0@@ALC@SAK@SALCDALC@vJ@ALCHGG@]"$}GGG [({/YZk  8F$=Q.q.QJS qJSFC = G]]#/k:.Q :J0FqP#~^^G<8=,](}$8 H0G=(].J@GJGALC@J@ALCDALC@Qv@K@QALCHALGC@HsS`JD@AL<=CD!ALC0@Pv@J`H@F@PALCH0@@ALGC@HaS HD@AL,]CDPALC@3v H`H D@3AL(CH0@@ALGC@ !HrS@J2D@ AL]#CDSALC@4v H`H D@4ALCH0@@ALC@SAK@SALCDALC@vJ@ALCHG4G@]"$}GGGh[p{/YZk  8F$=Q.q.QJS qJSFC = G]]#/k:.Q :J0Fqð#~ ^(^0~8@HGG$ =G }3aJ} _#]0vJC$]"}"Gb#_G8`D Gh0vJCh"]"}"Gb#/_G8`D GGLC(QAJ(QLC,LC(բvJ(ղLC0L4GC(zaKyS KyG(zL C,L=C(rv`Jq JqF(rLC00@LGC(KvSJG(L]#C,YLC(vJ`HF(LC00@LGC(JsS`JF(Lh"C,Lh"9C(vHy KD(LC00@LC(;!J(;LC,LC(vJ(LC0GG(]"GGGGBb/OXZkG8`D/@.%.JQ %JFCGG ](]0}8@HP#k#~H^P^X~`hpGGLH=<]8}GH H@8=!!H0=TG(]4G TG]"? =@};v`KCL]"}"Gb#_G8`D/ G0vJC("]"}"G8b#g_G8`D GGLCPQAJPQLCTLCPբvJPղLCXLGCPzaKyS KyGPzL CTL=CPrv`Jq JqFPrLCX0@LGCPKvSJGPL(]#CTYL4GCPvJ`HFPLCX0@L4GCPJsS`JFPL "CTL4GCPvHy KDPLCX0@LGCPQAJ{S`K[FPQL"CTL4GCPvHvJDPLCX0@LtGCPJzS@KFPL]"CTQL}CPvHs`JDPLCX0@LTGCP8!HwSJ7DP8L<=CT0LC0]PvHr@JDPLCX0@LCPJPLCTLCPvKPLCXGGP]"GGGGBbBWZkG8`D@.%.JQ %JFCGGH]P]X}`hp#kݞ#~"^"^"~"""޴""">"^"G#Gx = G GG  HpTGh=#}?"=.TJ>),)H{ G`Hq E;p EQ2JW@B;/u@bs/ ` xb#@/ "4GbSp4vJCx]"}"G(b#_G8D GDð0vJC("]"}"Gb#:_G8D G4GLCQAJQLCLCբvJղLCLGCzaKyS KyGzL CL=Crv`Jq JqFrLC0@LGCKvSJGLh]#CYL4GCvJ`HFLC0@LtGCJsS`JFL"CL=CvHy KDLC0@L4GCQAJ{S`K[FQLh"CL"CvHvJDLP=#C80@LCJLCLC{v`J{LCGTG]"GGGGHBPb/CVZkG8D/ (.H.(JR HJ2FC5@`&a"@G8JuQJF84G8=!KuqJ5G8=P]8vHz@KD8h <G0]@JpQJPF0]4G0JpqJF0"0vJpJF0"4G ]@KxQKXG ]4G HxqKD G =v J`H F =X $G(ݢJsQ`JF(ݲ4G(Jsq`JF("(=v KpJ0G(=h", / b{P= >8"0="H]" }"@"("GG(#8B@bkSZkGG8D . J%8D_H}3v`J cB`45`@HHݦ3vJH1vJ "]"PB/|VZkHBTZkH) ,a K@ HD <.J &a"DUGG4GGG"]"]"}"""ݤ"""="]"##kI/Z IKAG;?F; , K@ HD <Ð#~8^@^H~PX`GG<8=G8}3aJ0}TG( TG}?"="}0=!v HC<]"}"G`b#_G8`D G0vJC("]"}"Gb#_G8`D GGLC@QAJ@QLCDLC@բvJ@ղLCHLGC@zaKyS KyG@zL CDL=C@rv`Jq JqF@rLCH0@LGC@KvSJG@L(]#CDYL4GC@vJ`HF@LCH0@L4GC@JsS`JF@L "CDL4GC@vHy KD@LCH0@LGC@QAJ{S`K[F@QL"CDL4GC@vHvJD@LCH0@LtGC@JzS@KF@L]"CDQL}C@vHs`JD@LCH0@LC@K@LCDLC@Yv@K@YLCHGG@]"GGGGBbTZkG8`D@.%.JQ %JFCGG8]@]H}PX`p#k#~^^~GG8,=(],}3aJ0} 0]:v@KC8@]"}"( b#9_G8`D GNGLCQAJQLCLCբvJղLCLGCzaKyS KyGzL@ CL=Crv`Jq JqFrLC0@LCJLCLCzv`KzLCGG]"(}GGG@BHb1TZkG8`D@(=.!.JQ !JFCGG]]}#k#~^ ^(~08GGG=]4JJ&"4G0B8bZk $1&J&J]"b#_G8`D/ G$1&J&J]r3fJfJ]R"@b#_G8`D@GGG] ](}08@#k#~^ ^(~0GGGC2FJFJ/@&"4GpBxbZk #1&J&J]"b#._G] ](}0@#/k#~^ ^(~08GGG=]4JJ&"4GBb/\Zk$1&J&J]"b#_G5`@/ &b"p@$1&J&J]r3fJfJ]R"b#G_GGG] ](}08@#/k#~^^~GGG(=$]"}â6JJ&"4G@BHbZk(0F0#1&J&J0]"}""b##_ G]@JpQJPF]4GJpqJFvJuJF0"$="TG0B8bgVZk G]]}#kGG4GGk#~@^HcGG8841"_&R"(],=848! _'Z# ]$=c]@TR"]TGGG"`T2TZkc("v#ٗ$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1" ="8]"tGPTXtgZk00cG@]HP#k#~^ G= H &z"4G [({/~ZkG4GG] 0#k#GG> >>8 C>=10 C>= 1 \=` =H1 L F TD=d> 1v"J d DF=d=1"C>GvJa HF> }@s1!HsS`J3D1]dR"CP>!@>~GvHpJD> =81JqS JF^}\s"Cr>!@>>(]R_FvHr@JD> <!!JpSJ0F!^(}s"Cr>!@>>GvHr@JD> 0!!JpSJ0F!^}s"Cr>!@>>]RvHr@JD> 4!!JpSJ0F!^}sr>!@>>GvHr@JD> ,!!JpSJ0F!^}s"Cr>!@>>^@B^ G #k#~^ G(4G#;H!?D=I"C ;P!?D Q"C= C0 CTGGp{#/l_/4GG] 0#k#GG>^4>04GG #k`#~^^cG#G4G`F"! C=@"Cpp=GvHq JDpGJsS`JFp8= C p=p]ABp]p}GvHtJDp=GAAJqS JQFAp0}"C`ppBppp= Bp= C@}"C("CGGGG8B@bPZk(/GG8Qs=HR]JSF8Q@84JJUB05JJFG 'F4wJFF 벰"99'K'K =b{#C$}c0"! =c ="C4GGb#W%@ ?&F cc &F b#(_pppbcB$R]cth"C}(x=#C4G[@ZkpppJèBrG[@Zkhhpp]@p> vJh"C¦"CTGXB`b/ nZk "a`"C4G[@Zkpp/p#èBXrbxs\tF`uF¦d֢vFhwFlxF"p9yFBtZzF"|!aFx=x"4G[/@Zk4GcG]]#kY#~^ G=&z"@GGh{#R_4G  G] 0#k#~ ^(cGc0;! =cx{#_4GcG ](0#k#~8^@G = C((=GvHa HD(GJsS`JF(0+  (=(]AB(](}(B( }="C00]"tG[@Zk(((4GG8]@P#k#~8^@G = C((=GvHa HD(GJsS`JF(oA (=(]AB(](}(B( }="C00]"tG[@Zk(((4GG8]@P#kP#~^^GGxp=$ (x="CGtGGb#_/~8+ "C8?"qAb#n_Ӏ8]"C]vJuJFGxaKyS KyGx= =@}ӢvJtJFӲ4GWAKxSKXGW}=;=!B=] }vJs`JFݢTG6!KwSJ7G6]$=:}B=GvJr@JFtGKvSJG=(= C9]}aC}= B=8"sA8"C]"tGG0b#G^ӀSR<K @`bs"C<"tAb#_ӀD8]"C]vJuJFGxaKyS KyGx==@}ӢvJtJFӲGWAKxSKXGW} =;=!B=]}`B}<"uA8"C]"tGGb#^Ӏ= 4GG]]#k@#~ ^ ^ G#G=xph4G`=GP TGH"LG@= D=G8="<G0= 4=G(=",G = $=? =""= =8 /"C8? aAXb#d_Ӑ BR"CTGGb#\_ӘÐ}"C}PݢvKvJG=G9!HzS@K:D9T=0]P C}aB}HݢvKvJG=4GaaKyS KyGaL=0H]"C@}aB}(ݢvKvJG=TGaaKyS KyGa,=0(]"C@}aB}8ݢvKvJG=GaaKyS KyGa<=08]"C@}aB}0ݢvKvJG=GaaKyS KyGa4=00]"C@}aB} ݢvKvJG=GaaKyS KyGa$=0 ]"C@}aB}GvKvJG=GaaKyS KyGaX="C0೐]AB]GvJuJFGXAKaS HAGX}p"C=@}GӢvJtJFӲG7!KaS H!G7]x"C}=!B=]GvJs`JFݢTGKaS HG=h"C]}aC}=GvJr@JFtGJaS HF`"C=]AC]} ?"{v`Jq JqF{GԢJaS HFԲl h+#8@=]@B]@ +"H/ p"! h"G8"uA="CGtG[/@Zk/ BR"CTGGb#_Ә/Ð bls3gJgJ} m"C"C#C=#CP]:GKGK:AK0@C]P= CH HH H0@H"C@7JJ7J0B=#>@=#C>8=!'H'H!!H0 @=}"~8}"C ~07JJ7J0B]#(^0=#C0>  HH H0@"8 }"C@~(7JJ7J0B]#H^(=#CP>}""4GXB`bJZk ("1"C]GtGHBPbxZk( [="!B= ]}SB] F ⦙"C=#C]#C}#C X}"C""p=>#}= >x"=# >h( ? ="0`8}"GGXB`bJZk/ ("1"C]GtGHBPbxZk( =0@=}"CTGGb#/J_Ӑ=/ 4GG ] ] #k`#~^^GGph=p="CGtGG(b#_ + &0D += k &tF k("CxxWv@KxKXGWx}GJ`SHFx= ]Qx}xBxxݢ6v KwJ7G6x]/G&"G:!JaS H!F:x]}rxxBxxvHxKDx= G_'Z#GPAJqS JQFPx}xxݢBxݲx7v K7x= ]@_'Z# $/&"GGAAJzS@KZFAx}x}xBxxxݢBxݲ(#Ch=b#_``G]]#/k#~`^h^pGGH@=H="CTGtGGb#_@"! CTGGxb#_PPP= G(B"TG BNZkQOM=#CP=PPv@JPP}GӢJtSJFӲP]P}P@PP=vJa HFP=GJrS@JFPݢղP]P}aCP}PP= @P=< `"9#C<?"qAb#8_PPP{<_"rA}"CXX]"tGGb#^PPmPl]"CP]PԢvJԲPGWAKxSKXGWP}P=PBPP]vJr@JFPGKvSJGP= ]YP}P=!@P=P=qv`J`H`FqPG&"G4!KvSJ6G4P]}zP=PBPP=P]@BP]8 "C8"tAb#_PP/P8_"rA}"CXX]"tGGpb#^PP=/ P4GG`]h]p#k#~^ G=8 C={#_G] 0#/k#~h^p^xGGH@=Gh""h= =  CPP==vJq JFP]GJsS`JFP= P="C0P]ABP]PPBP8? aA"1"C ]"CtGG@b#^PP/@BR"CTGGb#Z_XX/X=P;b(sF})"C"C#C=#C]:GKGK:AK0@C`]= C`}"GPBXb/_HZkPP/ "1"CP]GtG@BHbkvZk  @="CTGGb#/_PP=/ P4GGh]p]x#k#~^^GG=H="CGtGwt$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1=U"Ghb#z_Ӏ"! CTGGb#_ӐH]"Cx}"CTGGb#/_Ӑ/ux]V@J@pkh}tl"C=P]9v Hz@K:D9GPAJqS JQFP}TݢBݲX=Xv@Ka HAGX}xG?&1"G{aJpSJpF{\ݢB`=vHy KD=x6J4G&s"GJrS@JFdݢղ=᳐Bp=vJy KF}x=v J TG&"GJrS@JFݢt=6೐BG8v Jy K9F8x]V@J/@_&R"&s"GtaKrS@JrGt="C೐B=C]#C]]hrv`KtJtGr=GJvSJFl=7=!C=]GvJr@JF}GJ`SHFݢsA6C=GvJr@JF]tGJ`SHF}tA;ݢBGvJr@JF=GJ`SHF]rA:}ݢBݲGvJr@JFGJ`SHF=sA9]}aC}ݢKvJr@JFGJ`SHF+"8=]AC]}KvJr@JFݢGJ`SHF+"7=!C=]GvJr@JF}tGJ`SHFݢ"1"C6C=]@B]8 BZ#C8 `A b#_Ӑ/8_"rA}"C]"tGGb#^Ӑ=/ 4GG]] #kp#~p^x^GGXP=< "C<?"qAb#T_```LX}"CtGtGG(b#ķ_( C``=pv`Jq JqFp`GJuSJF` =8`]`}aC`}`=Av@JpJPFA`}GӢJtSJFӲ``=`]AC`]`}`= @`=<?"qA(]"Chh]"tGGb#^``= `4GGp]x]#kp#~p^x^GGPH=Gp""p= =< `"C<? aAb#_XX/HBR"CTGGxb#ڶ_``/`yXw }"CX}XݢvKvJGX=G9!HzS@K:D9X=0X] CX}aBX}XXݢBXݲ<#xAP= =#CtGGb#^XXHBR"CTGGxb#_``/`=X;Èb(sF})"C"C#C=#C]:GKGK:AK0@Ch]= Ch}"GBb/EZkXX/ "1"CX]GtGBbsZk H="CTGGxb#/b_XX=/ X4GGp]x]#k#~8^@^HGG( =(="C4GtGGb#_ C00=pv`Jq JqFp0GJuSJF0 =80]0}aC0}0=0B0]"C =b#!_G8]@]HP#/k#~h^p^xGGH@=Gh""h= =  CPP==vJq JFP]GJsS`JFP= P="C0P]ABP]PPBP<? aA8"1"C ]"CtGGb#^PP/@8BR"CTGG(b#ҵ_XX/X=P;8b(sF}8)"C"C#C=#C]:GKGK:AK0@C`]= C`}"GpBxb/DZkPP/ @"1"CP]GtG`BhbrZk@ @="CTGG(b#/_PP=/ P4GGh]p]x#k#~P^X^`GG80=8="C4GtGGb#_ C@@Pv@JP@}GӢJtSJFӲ@@@=!C@=@}vJ`HF@=GJrS@JF@ ݢղ@@C@@]@@@0b{#CTGGb#@_@@@ <K @bs"C<"tA@b#/_@@/@<_"rA}"CHH]"tGGb#^@@=/ @4GGP]X]`p#k#~^ G= C=`{#_G] 0#/k#~h^p^xGGPH=P(="CtGtGGHb#k_H"! CTGGb#_XXXf(]"C@}"CTGG`b#_XXXY]"CX]X0vJuJFXGxaKyS KyGxX=4X=X@XX}8ӢvJtJFӲX@G_'Z#G7!HyS K9D7X<=0XX]ABX]XXBX< / BZ#C<? aAb#_XXX<_"rA}"C``]"tGGb#Z^XX= X4GGh]p]x#k#~`^h^pGGH@=x 0"Cx?"qAb#_PP/PRH}"CTGtGGb#Ҵ_  CPP=pv`Jq JqFpPtGJuSJFP =8P]P}aCP}P=Av@JpJPFAP}G&"GKuSJGP=]YPP}aCP}PP= BP=x"tA "CXX]"tGGb#5_PP= P4GG`]h]p#kp#~x^^GGPH=Gx""x= =x "Cx? aAb#$_XX/H`BR"CTGGPb#_``/`yXw }"CX}XݢvKvJGX=G9!HzS@K:D9X=0X] CX}aBX}XXݢBXݲx#xAh =#Ch="tGGb#<_XXH`BR"CTGGPb#_```=X;`b0sF}`1"C"C#C=#C]:GKGK:AK0@Cp]= Cp}"GBb/BZkXX/ h"1"CX]GtGBbpZkh H="CTGGPb#/j_XX=/ X4GGx]]#kp#~p^x^GGPH=Gp""p= =x "Cx? aAb#y_XXH(BR"CTGGb#8_```|Xz }"CX}XݢvKvJGX=tG9!HzS@K:D9X=0X] CX}aBX}XXݢBXݲx? aAP= ]#CtGG b#/r9_XX/H(BR"CTGGb#_``/`=X;(b(sF}()"C"C#C=#C]:GKGK:AK0@Ch]= Ch}"G`Bhb/AZkXX/ 0"1"CX]GtGPBXb pZk0 H="CTGGb#/_XX=/ X4GGp]x]#k#~P^X^`GG@8=@="CTGtGGxb#_ CHH=pv`Jq JqFpHtGJuSJFH =8H]H}aCH}H=!v J!H]}`&s"&"tGGҢJsS`JFҲHHH=!CH=HH}`CH}"C8=b#_GP]X]`p#k#~X^`^hGG@8=x p"Cx?"qA0b#}_HHHS@}"CTGtGGXb#_ CHH=pv`Jq JqFpHtGJuSJFH =8H]H}aCH}H=Av@JpJPFAH}/G&"GKuSJGH=]YHH}aCH}HH= BH=x"tA"CPP]"tGG b#6_HH= H4GGX]`]hp#k#~^ G= C={#_G] 0#/k#~h^p^xGGPH=P(="CtGtGGb#?_H"! CTGGxb#_XXXf(]"C@}"CTGG b#r_XXXY]"CX]X0vJuJFXtGxaKyS KyGxX=4X=X@XX}8ӢvJtJFӲX@G_'Z#G7!HyS K9D7X<=0XX]ABX]XXBXx / BZ#Cx? aAb#_XXXx_"rA}"C``]"tGGb#8_XX= X4GGh]p]x#k#GGGLXCF>!Q @>> L @XCG #k#GGG>~>}#_  G #kP#~^^cGGx=c0"1"=c@ "C@?"qA`b#_ӈvÀ }"CtGtGGb#p_@ CPv@JP}4GӢJtSJFӲ=!C=} vJ`HF=tGJrS@JF$ݢղC](vJ`HF}G{aJqS JqF{,ݢB=0vJ`HF]GzaJqS JqFz}4ݢBݲ@@"pA@=#C]"tGGb#62_b#>_cG]]xI)z$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1 "#k0#~^^cG#Gxp=c"1"=cG@"DG8= <=G0="4" = $=@ "C@? aA(b#S_Ӏ/H]"C]@vJuJFtGxaKyS KyGx=D=@ C]AB]8vJuJFGxaKyS KyGx=<8="C ]AB]0vJuJFGxaKyS KyGx=40="C ]AB]B@4Gx]/ @@#{Ax=]"tGGb#]6_@?"qAH}"C="tGGb#9_ @?"qABR"C]"tGGb#B6_pBR"CTGGb#ʯ_Ӏ/Qb#u_Mb8sF(}9"C,("C #C =#C@=!'H'H!!H0 @=@}#C8 HH H0@8"C07JJ7J0B=#>0= C>}""4G(B0b~Zk "1"C]GtGB blZk p ="CTGGb#z_Ӏ=/ 4GcG]]#k#~X^`^hGGH@=H="CTGtGG@b#/ԯ_ CPP=pv`Jq JqFpPGJuSJFP=8P]P}aCP}P=Av@JpJPFAP}tGӢJtSJFӲP P=P]ACP]P}vJP=tGJrS@JFPPݢPBPP=P@P= C@=b#_GX]`]hp#k#~h^p^xcGGPH=c"1"=cP="CTGtGG b#j_( CXX=pv`Jq JqFpXtGJuSJFX=8X]X}aCX}X= Av@JpJPFAX} G&"GKuSJGX=$]YXX}aCX}XX= BX=H¦"CTGGb#_XX/X#@K@8bs"C@"tAb#_XXXHb#M_@_"rA(}"C``]"tGGb#2_XX/XHb#;_4GcGh]p]x#k#~^ G==G{#_G] 0#k`#~^cG=cX;1"=cG4Gx[{kZk4GcG]#/k#~^^GG`X=|+ 8"C|?"qAxb#s_hhh`(}"CGtGGb#_H C = CTGGb#_hhh ]0@F] 4ׇJJ ݢ6JJݲx#Chh](}vJ{`KFh=tGqaJ`SH`Fqh,hݢhBhh=0=Yv@Ka HAGYh}0G_&R"GJqS JFh4ݢղhhChh8=vHy KDh]8= G&"GJsS`JFhݢ<h=hChh@=0v Jy K9F0h4GJrS@JFh}Dݢ۲hh=!@h=hG8v KpJ0G8h]TGJrS@JFh"Cղh}hBhh=GvKpJGh=GJrS@JFh]"Chݢh}aCh}hG7v Ja H!F7hGJrS@JFh="Ch]hݢBhݲh}h= @h=|?"qAx"Cpp]"tGGb#_hh= h4GG]]#k#~^^G#G`X=H@8G0="4G(",G "$G" = =| "1"C|? aA8b#]_hhXBR"CTGGb#_ppp@h>à}"Ch}h0ݢvKvJGh=tG9!HzS@K:D9h4=0h]0 Ch}aBh}h(ݢvKvJGh=GaaKyS KyGah,=0h(]"C@h}aBh}h ݢvKvJGh=GaaKyS KyGah$=0h ]"C@h}aBh}hݢvKvJGh=4GaaKyS KyGah=0h]"C@h}aBh}hGvKvJGh=TGaaKyS KyGahH="C0hh]ABh]hGvJuJFhGXAKaS HAGXh}@"Ch=h@hh}GӢvJtJFӲhG7!KaS H!G7h]8"Ch}h=!Bh=h]h}`Bh}0|"vA`="CtGGb#_hh/XBR"CTGGb#R_pp/puhsPH/Pݢ4FPݲ@P=T GP=8]@P= DP=L0JJBMR"C]}"C"C"C0ݢ6JJ6J0Bxݲ0#C(=9'K'K9!K0 C=(= C>  HH H0@" "C8KK8K0C]#^= C > "(޶P0x}""GB b/{Zkhh/ "1"Ch]GtGBb+iZk X="CTGGb#/ޫ_hh=/ h4GG]]#k#~`^h^pGGPH=P="CTGtGG(b#:_ = TG ]R0@F]("CXXݢ6v KwJ7G6X]tG:!H{S`K;D:X =0X]X}aBX}XGvKvJGX= YAK`SH@GYX}"CX=X]ABX]XXBX("CH=b#,_G`]h]p#/k#~@^H^PGG( =(="C4GtGGb#߫_ C00=pv`Jq JqFp0tGJuSJF0 =80]0}aC0}0=0B0 bs"CTGGxb#/>_00/0|K @bs"C|"tAb#e_000|_"rA}"C88]"tGGb#ρ_00= 04GG@]H]P`#k#~^ G=X C=x{#_G] 0#k#~^^ GGxp=x( CGtGGb#h_p8"! CTGG(b#_Ӏ/%(]"Ch}"CTGGb#_Ӏh]2wGJGJ]h47JJhݢ6JJݲ#C]0}vJ{`KF=tGqaJ`SH`Fq4ݢB=8=Yv@Ka HAGY}hG_&R"GJqS JF<ݢղC@=vHy KD]h=6 J/ G&"GJsS`JFݢD=᳀CH=0v Jy K9F0h]6AJ@G&"GԢJsS`JFԲL=7ೀC=P=Qv@Jy KYFQh}V`J`4G&"G5!HtSJ4D5TC]Grv`Jy KyFrݢh=v H/ TG&"GHtSJD"C=C}G3v Hy K9D3hHG&"GJtSJF="C7]C}GvHy KDݢhJG&"G6!JtSJ4F6]"CW=᳀C}= C=| P"C|?"qAb#_Ӏ|_"rA}"C]"tGG`b#_Ӏ=/ 4GG]] 0#k#~8^@^HGG( =(="CTGtGGb#_ "! CTGGb#_000BR_F]"C"C"C#CtGGb#_G4G0B8bfZkG8]@]HP#k#~(^0^8GG = ="C4GtGGXb#_D"C]"C}"C]tGG@b#f_G4GBb/fZkG(]0]8@#k#~(^0^8GG=="C4GtGG(b#/_"! CTGGb#2_  /  ]"C4GGb#_G4GBbcfZkG(]0]8@#/k#~8^@^HGG( =(="CTGtGGb#_ x"! CTGGhb#_000xBR_F]x"C"C"C#CtGGpb#_G4GBb'fZkG8]@]HP#/k#~^ G(/4G ;!?D= "C = C@ CTGG{#/^/4GG] 0#k#~^Gk4G[/@ZkG] #k#~h^p^xGGH@=H(="CtGtGG`b# _ӌ Sb#_PPP]"CP]P(vJuJFP(= TGG8!HzS@K:D8P,=0PP]ABP]P8vJuJFP=8= G4GyaKxSKxGyP<=0PP]ABP]PPBPw? aA#CXX]"tG[@ZkPPEPDøBR_FP]"CTP"Cb#}_```4G(B0b/heZk.ø"!!'H'HP="1"CT=bAP}"C0"CtGXB`b/xZkbAb#]_```4G(B0b/HeZk@"ys$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1L"L1"CTGGb#_``= `4GGh]p]x#k#~X^`^hGG@8=@(="CTGtGGb#Z_ӌ F= CH=H=(]vJr@JFHGKvSJGH=,]YH}H@HH0=pv`Jq JqFpHtGJuSJFH4=8H]H}aCH}H=HBHXBr"sA"CPP]"tG[/@ZkHH=/ H4GGX]`]hp#kP#~^^G#Gh`=G ]"]hP CTGtGGb#/_P CH= CTGGb#4_pp/pÌKJ@X}"C"C"CH+GGb#@pp/pm0B`R_F@]0a"CD@"C"C#C?#x=? =}~x}""GPBXbfvZkpp @"1"Cp]GtGBbsdZkE`="CTGGHb#)_ppp9]6@G5H} `04JJ0¦"Cݲ0G0BZ#C]0"!!'H'Hp=0"1"Ct=bA CX}"Cp"CGBbwZkbAXb#C_Ӑ4GBb/dZk4GG]]#k#~`^h^pGG0(=0="CTGtGGxb#N_ӌ ^= C8=8=]vJr@JF8GKvSJG8=]Y8}8@888= B8=bs"tA"C@@]"tG[@Zk888Y]"C8]8 vJuJF8GxaKyS KyGx8=$8=8@88}8B8¦ v"wA#CHH]"tG[/@Zk88/*8)BR_FP]"CT¦֦F8ݲ#C<bAP]#C}#C8= CGpBxbwZkbAb#_XX/X4G@BHbcZk4GG`]h]p#k#GG>0@4GG #/k#~^ G=0@0 CTGG {# @4GG] 0#kP#~^^G#G`X=G(0]",]+  ChhGvHr@JDh=GJsS`JFh("Ch=h]ABh]h}GvHtJDhGPAJqS JQFPh0bs"C`hhBhhh= Bh=  bs t"a"uA="Cpp]"tG[/@Zkhh/hzðB`R_FP]a"CTP"C("C(#C?#x= b? = bs~x}""GBb/tZkhh/ "1"Ch]GtG B(bbZkNX(="CTGGb#_hhChBðBR2GJGJh]"Clh"Cb#_ӈ4G B(b/bZk+ð"!?Dh="1"Cl=h}"Cb#_ӈ4G B(bbZkð"0!?Dh="11"Cl=h}"Cb#_ӈ4G B(bbZk4GG]]#k#~8^@^HGG=  /#0"q `A =" ]"tG[/@Zk(< HH((="C,(]"CPb#b_0004GBbNbZk4GG8]@]HP#k#~8^@^HGG=  /#"q `A =" ]"tG[/@Zk HH("C,(]"C0b#*_0004GxBbbZk4GG8]@]HP#k#~^^G#G=xphG`= "dGXN "\ H= L= b#_Ә]"C]GvJuJFD ?#xaKyS KyGx=x"C=@}GӢvJtJFӲM #WAKxSKXGW}p= C;=!B=]GvJs`JFݢP "6!KwSJ7G6]h= C:}B=`]vJr@JF= "KvSJG=d=9]`}#Cz@=X]vJr@JFL "KvSJG=\=!]X}#Cz@=]@B]t"uA"C="tG[@Zk/YBpR_FP]q"CTP"CH"CH#C?#=x4JJ? =p}3gJgJ~"ݲ#h]:GKGK^` HH H0@}"~`}"C ~X7JJ7J0B=#(>X=#C0>}""GBb/sZk/ "1"C]GtGXB`baZk ÈH="CTGGb#ɣ_Ә= 4GG]]#k#~(^0G=  ; q `A =" ]"tG[/@Zk4GG(]0@#k`#~^^GGpH Cxx=GvHq JDxTGJsS`JFx= C x= ]"CQxBxxG4v HuJ5D4x=tGqaJrS@JrFqxh= C xxBxx=x]@Bx]4G4Gh"G@BvZkpvHtJDp=!=?&= bs"C]#CH}#C"GG0B8bAtZk0Dh6J4G0F}`p B &"#C4GtG`Bhbh`ZkjÈ C$ "Cp= 1TGPbw@_( CxxTGpv`Jq JqFpxGJuSJFx "9#C8x]x}aCx}x=pAv@JpJPFAx}tGӢJtSJFӲxpx=x]ACx]x}x= @x=H"q BR"C(}"C]"tG[@Zk/ "10 B B24G VJs1`JF ¦F4F 0C "4GG]]#k#~ ^(^0GG  =v H`H D= =1=p= GP"0B"@tGGpQs=HR]JSFpQ@Gq"FvHUJFGtTG]"@Ft2JPJF&"TG D!rJQ J2F!  C ("C =1]"@Fs2J@HD("F`JUJF(="GD_"2@B B_(ݢF4F(ݲG(=V Hs1`J3D(=$ @"H=v JtJ4FH= ="CL=p"Cdݲ}"G`  @dBTGGqHUJFzG]"@FsHVJFrG"FuHTJFj  CG}"`FqSJPJF_ "Cp"C  CTG0B8burZkC2(="C BR"CTG`Bhb/CrZkC(="C4GPBXbrZkCH=1$J&J}v`Jq JqF}P"CGTGb(@p C "! CTG@BHbrZk =&z"0D/ "Q_F4@FQ4GG ](]0@#k'2ENÇÏÚà#~H^PG@8=0"G$?"1 BB?G8=0 @(=@ HH@=!= C ;! C([R"CtG0[8{}Zk00GH]P`#k#~8^@^HGG0(= ]}xF"Qv@JpJPFQxbs"Ct4GB2TGt0?F0BrV`Jr(=B20Gb#_ "10]bSRG8]@]HP#/k#~ ^(G=.J0 @=0D0;! C = C= CT tG [({qZk4GG ](0#/k#~^~ G}$"C{#_G]} 0#/k#~^~ G}4"C{#_G]} 0#/k#~^~ G}<"C{#_G]} 0#/k#~^~ G}x"Ch{#_G]} 0#/k#~^~ G}xX"CH{#~_G]} 0#/k#~^~ G}X"CT TGG0{#_G]} 0#k#~^~ G} "CT TGG{#ޠ_G]} 0#k#~^~ G}"CT TGG{#Ƞ_G]} 0#k#~^~ G}"CT TGG{#_G]} 0#k#~^~ G}"CT TGG{#_G]} 0#k#~ ^(G=.J0 @= HH;! C = C= CT tG[{pZk4GG ](0#/k#~^~ G}"C{#_G]} 0#/k#~^~ G}`4"C{#_G]} 0#/k#~ ^(G=.J0 @=@ HH@;! C = C= CT tG0[8{/spZk4GG ](0#k#~^~ G} $"C{#_G]} 0#k#~^~ G}4"C{#_G]} 0#k#~^~ G}<"C{#_G]} 0#/k#~^zD$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;15"~ G}P"C{#_G]} 0#/k#~^~ G}x"C`{#_G]} 0#/k#~^~ G}X"C@{#k_G]} 0#/k#~^~ G}`"CT TGG8{#_G]} 0#k#~^~ G}@"CT TGG{#_G]} 0#k#~^~ G} "CT TGG{#p_G]} 0#k#~^~ G}"CT TGG{#Z_G]} 0#k#~^~ G}"CT TGG{#D_G]} 0#k#~^~ G}"CT TGG{#._G]} 0#k#~^~ G}"CT TGGx{#_G]} 0#k#~^~ G}"CT TGGX{#_G]} 0#k#~^~ G}` "CT TGG8{#_G]} 0#k#~^~ G}@("CT TGG{#֞_G]} 0#k#~ ^(G=.J0 @= 0D ;1! C = C= CT tG[{nZk4GG ](0#k#~^~ G}$"C{#_G]} 0#/k#~^~ G}4"C{#_G]} 0#/k#~^~ G}x"C{#_G]} 0#/k#~^~ G}8"CT TGGx{#`_G]} 0#k#~^~ G}@"CT TGGX{#J_G]} 0#kp#~h^p^x~GGPGh}!} G}h= =P}0 CXXPv@JPXGJaS HFXX=X]ABX]X=X}`BX}@"CXXG`v`Jr@JrF`XGJpSJFXh= C X]}"CrXBXXXBX4? aA0]"C@}"CtGG b#/m_0 CXXGpv`Jq JqFpXGJuSJFXh=#C8X]}#CzX@XXX= BX=4"sA`0"C`="tGG b#/`m_=+ `PF(`BQR"C,]`4JJ `¦"C$ݲbA(#C=#C]#C }#CnAGPBXb/mZkbA+TGGb#i@XXX `BHR"CT TGG8b#/_Gh]p]x}#/k#~^~ G} X"CT TGG{#p_G]} 0#k#~^~ G}`"CT TGG{#Z_G]} 0#k#~^~ G}p"CT TGG{#D_G]} 0#k#~^~ G}h"CT TGG{#._G]} 0#k#~ ^(G=.J0 @=xD;y! C = C= CT tG[{UmZk4GG ](0#k#~^~ G}"C{#_G]} 0#/k#~^~ G}`"C{#_G]} 0#/k#~^~ G}@D"C{#_G]} 0#/k#~^~ G} P"C{#_G]} 0#/k#~^~ G}X"C`{#_G]} 0#/k#~^~ G}`"C@{#k_G]} 0#/k#~^~ G}h"C {#W_G]} 0#/k#~^~ G}p"C{#C_G]} 0#/k#~ ^(G=.J0 @=D;! C = C= CT tGp[x{lZk4GG ](0#k#~^~ G}`"C{#_G]} 0#/k#~^~ G}@"C{#_G]} 0#/k#~^~ G} $"C{#_G]} 0#/k#~^~ G},"C{#_G]} 0#/k#~^~ G}4"C`{#_G]} 0#/k#~^~ G}<"C@{#k_G]} 0#/k#~^~ G}D"C {#W_G]} 0#/k#~^~ G}P"C{#C_G]} 0#/k#~^~ G}`X"C{#/_G]} 0#/k#~^~ G}@`"C{#_G]} 0#/k#~^~ G} x"C{#_G]} 0#/k#~^~ G}"C{#_G]} 0#/k#~^~ G}"CT TGG{#@_G]} 0#k#~^~ G}"CT TGG{#*_G]} 0#k#~^~ G}"CT TGGx{#_G]} 0#k#~^~ G}"CT TGGX{#_G]} 0#kc#~^޵GF?F  K C 8 C0#GGТ4@BԶ""XB C= C  ] C @} C` C C {[E#@ZkcG]ݥ #@k08{0#G^CP[C^tG~GG (޲ ~Xb$[Zk@BHbCCCtGhZkG]]#kۦ#> @h~4G^^(~"~CGGC${B(,8@>tGH~ 4~0޲b[ZkBbCCCtGhZk(BH=0bGTGnZk8"HBPbCH="H=TGHZk=@B DyB0 @bD=CtG C[Zk=("v H vH@@@0.r0HQ0J2F0>}`.uHTJF>G]G]}0#k0. 0HQ 0J2F0>. HT JF>//#> @h~tG4G(^^~GGG{ ~$ }`BB@bCCtGT[ZkC=y`@4G=}`õ`@4GB8FGC08(}@0}`4}`@8B`@`C bCtG([ZkBbCCCtGhZkG]]}0#k #> G@h{~(޲ ~$^G [{CCCtGgZkG]/#k/ ({0#G^C@[C^tG~GG (޲ ~Hb$ZZk0B8bCCCtGgZkG]]#k>C~ ^(^0~8@H޴PX`>hG(ۦ({0CH%@ @%@%5C0@ @QCC%1@TC@_D.9'K'KJ7JJ27C@@\/0@@yJZ\KYG\?%1@D@,H2@e@#C=GGG$5@ %C=Cd G0@ @/G@@\,. 1@\HVJ^@/K|KF>4GG (^0~8@HޤPX`>hCk@/wHXKG?@\/y\HZ\KYG\?2@@)@/"1@@A,AHD@4 @W,WH^@\/yHZ\KYG\?/<HD@.KJ5JJ2C@D@/0@wYKXKG?0@@2@@_@,H/@A@-<-IC~^ ^(~08@޴HPX>`h GGCAR0rH@H[@G ^(~08@ޤHPX>`hCkG>C^^~ ޴(08>@ GHK>C%@> @%@/>CA5@C C^~ ޤ(08>@HCk~^'@%C@/ 5@&5@-&--I&IA1A./JK0B %1@^CCDHC/G@"C@CHCG>C^^~ ޴(08>@-bCHHG:FK;fK[CC @:C/^~ ޤ(08>@HCk@C!5 @%5@-%-I%IA/A.|/J|K0B&1@CG @,H@.J9@&1@?G:H@|/GK!&@@|K;gKgK0zC,H@4G0@F@1G?G>C^^~ ('<5C$\@C/[H>C_$~"5@@ {eZkG~C 1@?'@95 C$@#`@'85CC[H@H>C~ {eZkG~C e@^~ (CkG#^^~HvHDG?#9"K vHD@HG#~ [({eZk~#ДHCCC* 1@(',HG! @.J#yqJ\pKG"1@@@,HGc pJ#@/K0BB  ^~ #kG G  #G(> {;$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1?"@hG~^^~޴>^~޵ G#G(=( Ø#GP?#9"CC/?tGGQsKR]JSFQ@G"F aJY7K!G  TG=" FrxHSqJxFr`TG=  DyHWJF/H CH]"G`"3dBDBTGGHw]JPJFHGI=# G s9HQ9J3F  GR"FxHWJF/ CT08C@c/6uZk@@=/ @ó?@` "Fx5HWJF/]]#C4G(C0c/fZkC88= 8l|=_&R"2F/P }cJ/L`"C4GCcfZkC00= 0V="G`_"2DB$B_?"=l"ѠFxJWJF\l=9$K&K]#@G[a:KBZHAD[R@pѠG2sJQ=J3F2K G"CGp=!HwSJ7Dp=TGp=v Ka H!Gp== Ct=x\0JJ]v@JpJPF]]}"C}"C`"CGGGCcdZkC((= (=" FrtKSqJtFr`tG4G4GP" ChZk"C4G(C0cwfZkX] C4GxCcnZk  = `0JJ4GhCpcdZk P?&1"FP(]Y@B@4G8BG `8.JGJP]v@KuJUGP]P};fKfK_$B bG"@X`=1&J&Jh]"C"Cp"C (TGGGGXC`c&dZkC= h0JJ]/d@(}y`B/`4G@BGH"CGTGCc&fZk @]","H@GHH]v@J`H@FH]}P4JJGtFHPݢFuFѠG8z}JY=K:G8 (}`C`4GH]@@G/ H/P.tHRPJTFP>X`=1&J&Jh}"C"Cp}#C ~(GGGGXC`ccZkC= h0JJ]@4G}`0JJ4GhCpc/dZkCX= C4GCcQnZk=/ = "FծwKVJFվ<tG4G4GP" CgZk#C4G(C0ceZkHC G]]}ݤ=]}ݥ `#k $9AIdÝçî/X KG.P JFZjP. HR PJTFP>xýp#~ ^(>0^8~@HP޴X`h>p^x~ GG?G==]G0M8mVZkCCG0M8mxVZkCCG$1@%%,%HG 0U%@3"1@@7@C/CKc 0:@0$@,"HG(<@|/|K(M@:/:K0yC&1@ 0@CCCC_@ GG (>0^8~@HPޤX`h>p^x~#kCC CCHGV$ADDANSWATTABACKCLOSCONTCREADELEDIREDPRIEVEEXEXITEXTRFORWHELPMAILMARKMODINNEXTOPENPRINREADREPLSAVESEARSELESENDSETSHOWSPAWTPUUPDAWRIT$D  P 0!!!!0'*<+x+,d9d9:<? !T@@8A EHDSTTD` ,SPAWN$NOTES$$CLI_SPAWN,!!P1COMMAND( 1 ADD,X!P1Add what(0!!P2ADD_P2(!!P3ADD_P3t ADD_OPTIONS,@$ENTRYENTRY0l&KEYWORDKEYWORD,%MARKERMARKER,(%MEMBERMEMBER,T%OBJECTOBJECTH`" , ADD_OBJECT}NOTES$$CLI_ADD_OBJECT$P10!(P2ADD_P2Object(#FILEFILEH``" , ADD_MEMBER|NOTES$$CLI_ADD_MEMBER$P14!(P2ADD_P2 Member name(#MAILMAIL, %NOMAILNOMAIL,q8$NODESNODES4ql) PRIVILEGES PRIVILEGES8+ NOPRIVILEGES NOPRIVILEGES,q%ACCESSACCESS PRIV_TYPES0'MODERATEMODERATE@\.CREATE_KEYWORDSCREATE_KEYWORDS@/WRITE_REGARDLESSWRITE_REGARDLESSH`2 , ADD_MARKER|NOTES$$CLI_ADD_MARKER$P14<!(P2ADD_P2 Marker name0!(P3ADD_P3NoteH`2 , ADD_KEYWORD|NOTES$$CLI_ADD_KEYWORD$P18!(P2ADD_P2 Keyword name0!(P3ADD_P3NoteH`" , ADD_ENTRY|NOTES$$CLI_ADD_ENTRY$P10!(P2ADD_P2Entry0q &CLASSESCLASSES(4 #FILEFILE,` %NOFILENOFILE( #NAMENAME, %OBJECTOBJECT0'NOOBJECTNOOBJECTH, X d  0 ANSWERREPLY8}NOTES$$CLI_ANSWER,!!P1FILESPEC0 &CONFIRMCONFIRM( #EDITEDIT0 &EXTRACTEXTRACT( #LASTLAST,4 $TITLETITLE0&NOTITLENOTITLE p  ,  @`  (ATTACHp}NOTES$$CLI_ATTACH4!)P1PROCESSProcess<`H  (BACK}NOTES$$CLI_BACK$l P1$ NOTE_OR_REPLY_TYPE, $TOPICTOPIC( #NOTENOTE,$REPLYREPLY@` (CLOSE}NOTES$$CLI_CLOSED` , CONTINUE}NOTES$$CLI_CONTINUE(  ! CREATE0 !P1 Create what,!!P2 CREATE_P2 8CREATE_OPTIONS4lH) CONFERENCE CONFERENCE0&KEYWORDKEYWORDP`" 0CREATE_KEYWORD0~NOTES$$CLI_CREATE_KEYWORD$P18!+P2 CREATE_P2 Keyword nameX`" 4CREATE_CONFERENCE~NOTES$$CLI_CREATE_CONFERENCE$P1<!+P2 CREATE_P2Conference file0c0'RESTRICTRESTRICT,\$WRITEWRITE4) REPLY_ONLY REPLY_ONLY RESTRICT_TYPES0'KEYWORDSKEYWORDS0&MEMBERSMEMBERSD`T0 (DELETE~NOTES$$CLI_DELETE_NOTE0!P1 Delete what,!!P2 DELETE_P2,!!P3 DELETE_P3 DELETE_OPTIONS,($ENTRYENTRY0X&KEYWORDKEYWORD,%MARKERMARKER,%MEMBERMEMBER(#NOTENOTE,%OBJECTOBJECTP`T" 0 DELETE_OBJECTNOTES$$CLI_DELETE_OBJECT$xP14!+P2 DELETE_P2Object0&CONFIRMCONFIRMP`," 0 DELETE_MEMBER~NOTES$$CLI_DELETE_MEMBER$PP18!+P2 DELETE_P2 Member name0&CONFIRMCONFIRMP`d" 0 DELETE_MARKER~NOTES$$CLI_DELETE_MARKER$,P18!+P2 DELETE_P2 Marker name0&CONFIRMCONFIRMPp2 0DELETE_KEYWORD~NOTES$$CLI_DELETE_KEYWO|[wZS$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1~3" RD$P18@!+P2 DELETE_P2 Keyword name0!+P3 DELETE_P3Note("ALLALL0&CONFIRMCONFIRM  @ pL`H" 0 DELETE_ENTRYp~NOTES$$CLI_DELETE_ENTRY$lP18!+P2 DELETE_P2 Entry name,$CLASSCLASS0&CONFIRMCONFIRM0&CONFIRMCONFIRMH`x , DIRECTORY0NOTES$$CLI_DIRECTORY(!!P1DIR_P1("ALLALL,%AUTHORAUTHOR<0%,BEFOREBEFORE-- 00:00:00.00,\%BUFFERBUFFER,$CLASSCLASS8* CONFERENCES CONFERENCES0&ENTRIESENTRIES0 &KEYWORDKEYWORD0P 'NOTEBOOKNOTEBOOK,| %OUTPUTOUTPUT< $*SINCESINCE-- 00:00:00.00, $TITLETITLE, %UNSEENUNSEENX`h 4DIRECTORY_NOTEBOOKpNOTES$$CLI_DIRECTORY_NOTEBOOK4!(P1DIR_P1 Entry name,%BUFFERBUFFER,$CLASSCLASS0$&ENTRIESENTRIES0T'NOTEBOOKNOTEBOOK,%OUTPUTOUTPUT\`  8DIRECTORY_CONFERENCEPNOTES$$CLI_DIRECTORY_CONFERENCE0!(P1DIR_P1Node(4"ALLALL,`%BUFFERBUFFER4) CONFERENCE CONFERENCE,%OUTPUTOUTPUT@`! (DPRINT0NOTES$$CLI_PRINT$$TP10!)P2NOTE_IDNotes t DPRINT_TYPES,$PRINTPRINT("ALLALL,%AUTHORAUTHOR<0%,BEFOREBEFORE-- 00:00:00.00,\%COPIESCOPIES(#FORMFORM,%HEADERHEADER0&KEYWORDKEYWORD, %NOTIFYNOTIFY,8 $QUEUEQUEUE(` #SEENSEEN< $*SINCESINCE-- 00:00:00.00, $TITLETITLE, %UNSEENUNSEEN(#WAITWAIT<`X! (EVENOTES$$CLI_EVE(!!P1BUFFER@` ,EXITEXNOTES$$CLI_EXITH`"h"! 0 EXTRACTSAVENOTES$$CLI_EXTRACT08"!*P1FILESPECFile0!)P2NOTE_IDNotes(""ALLALL,"%APPENDAPPEND,"%AUTHORAUTHOR<$#%,BEFOREBEFORE-- 00:00:00.00,P#h$%BUFFERBUFFER,|#%HEADERHEADER0#&KEYWORDKEYWORD(##SEENSEEN<$ $*SINCESINCE-- 00:00:00.00,<$ $TITLETITLE, %UNSEENUNSEEN8`$%! EXTRACT_BUFFER_SYNTAX4$!*P1FILESPECBuffer0!)P2NOTE_IDNotes(,%"ALLALL,X%%APPENDAPPEND,%%AUTHORAUTHOR<%%,BEFOREBEFORE-- 00:00:00.00,%%BUFFERBUFFER,&%HEADERHEADER0H&&KEYWORDKEYWORD,t&%OUTPUTOUTPUT(& #SEENSEEN<& $*SINCESINCE-- 00:00:00.00,' $TITLETITLE, %UNSEENUNSEENDt''* ,FORWARDNOTES$$CLI_FORWARD(a!!P1TOLIST,'%AUTHORAUTHOR0'&CONFIRMCONFIRM( (#EDITEDIT,L(%HEADERHEADER(t(#LASTLAST0(&MEMBERSMEMBERS4() MODERATORS MODERATORS4 )( CC_PROMPT CC_PROMPT<H) , PERSONAL_NAME PERSONAL_NAME@) .NOPERSONAL_NAMENOPERSONAL_NAME() #SELFSELF0) &SUBJECTSUBJECT4* ( NOSUBJECT NOSUBJECT4H*( TRANSPORT TRANSPORT8* NOTRANSPORT NOTRANSPORT ***** t' ' t( (<`+ (HELPNOTES$$CLI_HELP,!!P1HELPKEYS<` (MAIL0NOTES$$CLI_MAIL<`+! (MARKPNOTES$$CLI_MARK4+!(P1ADD_P2 Marker name0!(P2ADD_P3Note( @,! MODIFY0p,,!P1 Modify what,!!P2 MODIFY_P2 ,MODIFY_OPTIONS,,7$ENTRYENTRY0-6&KEYWORDKEYWORD,D-4%MEMBERMEMBER4x-h3) CONFERENCE CONFERENCE(-|1#NOTENOTE,-0%OBJECTOBJECT0-&PROFILEPROFILEH`D.h. , SET_PROFILENOTES$$CLI_SET_PROFILE$P14.80( AUTOMATIC AUTOMATIC8.* NOAUTOMATIC NOAUTOMATIC,/$CLASSCLASS,q,/%EDITOREDITOR<h/, PERSONAL_NAME PERSONAL_NAME@/.NOPERSONAL_NAMENOPERSONAL_NAME,/$PRINTPRINT00&NOPRINTNOPRINT4 ( TEMPORARY TEMPORARYT0 AUTO_TYPE40( DIRECTORY DIRECTORY,%UNSEENUNSEENH`0T1" , SET_OBJECTNOTES$$CLI_SET_OBJECT$ 1P14!+P2 MODIFY_P2Object(#FILEFILED`12! ,SET_NOTEpNOTES$$CLI_SET_NOTE$1P10!)P2NOTE_IDNote4H2) CONFERENCE CONFERENCE82+ NOCONFERENCE NOCONFERENCE,2%HIDDENHIDDEN,2$TITLETITLE03&NOTITLENOTITLE,43$WRITEWRITE4&NOTE_ID NEW_NOTE_IDP`33 0SET_CONFERENCE0NOTES$$CLI_SET_CONFERENCE$P1,4%NOTICENOTICE084'NONOTICENONOTICE0ch4'RESTRICTRESTRICT,4$TITLETITLE,4$WRITEWRITE4) REPLY_ONLY REPLY_ONLYP`D55" 0 MODIFY_MEMBERЀNOTES$$CLI_MODIFY_MEMBER$h5P18!+P2 MODIFY_P2 Member name(5#MAILMAIL,5%NOMAILNOMAIL(6#NAMENAME,qH6$NODESNODES4q|6) PRIVILEGES PRIVILEGES86+ NOPRIVILEGES NOPRIVILEGES,q%ACCESSACCESSP`077" 0MODIFY_KEYWORDNOTES$$CLI_MODIFY_KEYWORD$T7P18!+P2 MODIFY_P2 Keyword name(#NAMENAMEL`8\8" 0 MODIFY_ENTR}-k $ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1"1YNOTES$$CLI_MODIFY_ENTRY$$8P18!+P2 MODIFY_P2 Entry name0q8&CLASSESCLASSES(8#FILEFILE,8%NOFILENOFILE(9#NAMENAME,49%OBJECTOBJECT0'NOOBJECTNOOBJECT<`9 (NEXTNNOTES$$CLI_NEXT$9P109NOTE_OR_REPLY_OR_UNSEEN_TYPE, :$TOPICTOPIC(H:#NOTENOTE,t:$REPLYREPLY,%UNSEENUNSEEN<:D;;! (OPENNOTES$$CLI_OPEN8;!*P1FILESPEC Entry name0!)P2NOTE_IDNote4x;80( AUTOMATIC AUTOMATIC,;$CLASSCLASS0'NOTEBOOKNOTEBOOK ;;< ; ; x;@`T<<# (PRINT0NOTES$$CLI_PRINT0!)P1NOTE_IDNotes(<"ALLALL,<%AUTHORAUTHOR<=%,BEFOREBEFORE-- 00:00:00.00,@=%COPIESCOPIES(h=#FORMFORM,=%HEADERHEADER0=&KEYWORDKEYWORD,=%NOTIFYNOTIFY,> $QUEUEQUEUE(D> #SEENSEEN<> $*SINCESINCE-- 00:00:00.00,> $TITLETITLE,> %UNSEENUNSEEN(#WAITWAIT<`~ (.0h8@HP*Xf`hpx$V.TzȐАؐBd{>Z (08@>HxPX` h6pbx0ZvȑБFؑnR6` (08&@nHPX0 `z h p x!2!T!!!!."`"""Ƞ#Р2#ؠV#n##{## $H$f$$ $($0$8:%@`%Hx%P%X%`&h>&p\&xv&&&&& 'R'''(ȡ6(Сd(ء(((( )b)))) )(@*0t*8*@*H +P2+XF+`r+h+p+x+,8,d,,,,J---Ȣ-Т.آ@.z.{...,/j/// /(00D08V0@0H0P0X$1`<1hR1pn1x111112P2223ȣ83УR3أ333*4R4444"5 H5(h50585@ 6H*6PZ6Xl6`6h67F7n77 7(70 88B8@8H8P8X8`9h49{pj9x9999:4:~::::;R;;;;.<d<<<=R= x=(=0=8=@,>H^>P>X>`,?h^?p?x???@(@<@P@f@~@@@@@ExhEEEF6FtFFFGfGGGGHbHHHI.IVIzI I(I02J8rJ@JHJP8KX`K`KhKpKxL@LvLLL(MVMMMM0N|NNNN$OFOvOOPLPPNORMAL* CMDKEYENACommand keypad enabled* NUMKEYENANumeric keypad enabled4 PROFILE_MODYour profile has been modifiedR PROFILE_TEMP;Setting temporarily changed; permanent profile not modified.MODERATEModerator privilege enabled2 NOMODERATEModerator privilege disabled2 ENTRY_ADDEDEntry !AS added to class !AS8KEYWORD_ADDNOTEKeyword !AS added to note !ASF MARKER_ADDED.Marker !AS for note !AS added to your Notebook@ MEMBER_ADDED(!AS added as a member of this conference.KEYWORD_CREATEDKeyword !AS created* ENTRY_DELETEDEntry !AS deleted.KEYWORD_DELETEDKeyword !AS deleted<KEYWORD_DELNOTE!Keyword !AS deleted from note !AS,MARKER_DELETEDMarker !AS deleted( NOTE_DELETEDNote !AS deleted,MEMBER_DELETEDMember !AS deleted* NOTE_MODIFIEDNote !AS modified,ENTRY_MODIFIEDEntry !AS modified.KEYWORD_MODIFIEKeyword !AS modified.MEMBER_MODIFIEDMember !AS modified2 CLASS_SET!AS set as your current class* INSERT_MODEInsert mode enabled2OVERSTRIKE_MODEOverstrike mode enabled:ENTRY_DELCLASS Entry !AS deleted from class !ASNSPACE_COMPRESS4Consecutive double spaces removed from personal name6 ENTRY_ADDED2Entry !AS added to classes !AS( OBJECT_ADDEDObject !AS added,OBJECT_DELETEDObject !AS deleted.OBJECT_MODIFIEDObject !AS modified MORE_INFO!AS@SRV_NEWPROTUPD&server is running new protocol !AS/!ASB ENTRY_ABORTED*Note will not be entered in the conference6 NOTES_WRFIL!UL note!%S written to file !AS8 NOTES_WRBUF!!UL note!%S written to buffer !AS:DIRTOBUF'Directory listing written to buffer !AS: DIRTOFILE%Directory listing written to file !AS(HIDDENnote !AS is set hidden* OPEN_CONFOpening conference !AS6 UPDATE_CONF updating entry !AS (file !AS)...< MARKSUPER(Previous marker (to note !AS) superseded@ OPEN_CONF2*Opening conference entry !AS (file !AS)...2 BEING_WRITTENNote !AS is being written. USING_EDTUsing EDT line mode editorHELPBUF Help buffer2HELPHDR Press CTRL/Z to leave promptsBHELPNXT/ Press NEXT SCREEN or PREV SCREEN to view moreJHELPASK16Type command you want help on (press Return if done): LHELPASK29Type command name, or ? for list (press Return if done): &HELPTOPuse the HELP command&HELPBOTfor help on commandsENTRYID Entry !ASNOTEIDNote !AS"TOPICS!UL topic note!%S$UNSEEN!UL unseen note!%S& TOTALNOTES!UL total note!%S&DATELINE !UL line!%S !#AS"ONECLASSIn class: !AS& MANYCLASSESIn classes: !ASTITLEID Title: !AS NOTICEID Notice: !ASN CONFCREUPD8 Created: !AS !UL topic!%S, !UL note!%S Updated: !AS(MAILSUBJNotefile !AS Note !ASFILEID File: !AS& MODERATORID Moderator: !ASOLD_ALREXISTS_A OLD_INVACCNAM$ LOCATIONID Location: !AS< CONF_BANNER&!AS Conference: !AS !UL topic!%S, READ_BANNER!AS Conference: !AS: TOPIC_BANNER#!AS Conference: !AS New Topic> REPLY_BANNER'!AS Conference: !AS Reply to: !AS& INFO_BANNER!AS Messages. CREATE_CONFCreating conference !AS, UPDATE_ENTRYUpdating entries !AS, GETTING_DIRGetting directory !AS( GETTING_NOTEGetting note !AS* EXTRACT_NOTEExtracting note(s)& PRINT_NOTEPrinting note(s)( SEARCH_FORSearching for "!AS". SEARCH_NEXTSearching for next "!AS"* DELETING_NOTEDeleting note !ASAUTHORID !AS "!AS"TOPICID Topic: !AS$ KEYWORDID Keywords: !AS( CONFERENCEID Conference: !AS2m_$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1"SATTRIBID!#* !#!#!UL line!%S4 WRITELOCKID [X] Replies are not allowed(HIDDENID [X] Note is hidden: GRAPHIC_VIEW#<< Graphics content appears here >>< UNKNOWN_VIEW%<< Encountered non-ASCII text here >>2 DDIF_FORMATNote !UL.!UL is DDIF format< PS_FORMAT(!UL DDIF note!%S converted to PostScript8 USEFILEID#<< Text will be entered from !AS >>l COPYRIGHTWCopyright . Hewlett-Packard Development Company, L.P 1986, 2004. All Rights Reserved.@SRV_OLDPROTUPD&server is running old protocol !AS/!AS*NO_MORE_CLASSESno more classes*NO_MORE_ENTRIESno more entries*NO_MORE_KEYWORDno more keywords& NO_MORE_NOTES no more notes$ NO_MORE_TEXT no more text( NO_MORE_USERSno more membersH NONOTEBOOK3user profile information and Notebook not available2NOERRTXTThere is no error text to showN NEEDNBMODIFY6You must be using your Notebook to modify your profileBMSGSEND/Your message is complete. Proceed to send it? J ENTERINTRO5You may now enter the text for the introductory topicF CTRLZMAIL2Press F10 or CTRL/Z to finish sending mail message0 NOTREADINGYou are not reading a note*NO_MORE_REPLIESno more replies ANSWER_YESyes"EOB_TEXT[End of buffer]4 PRESS_PF2Enter the command HELP for help4 NOTES_HDR1HP Notes Computer Conferencing< PRESS_CTRLZ_N$Press F10 or CTRL/Z to add your note6SET_CONFERENCEConference has been modified2 ENTER_TITLEEnter a title for your !AS: 2 PRESS_RETURNPress Return to continue: 4 PRESS_ANY_KEYPress any key to continue: >DIR_HEAD* Topic !# !# Repl Title. ENDREQ_LISTEnd of requested listing$ NOTE_END_TEXT End of note TEXT_NOTEnote TEXT_REPLYreply,NO_NBCreating your Notebook (!AS)YOUR_SPD NOTE_COMPLETE,Your !AS is complete. Proceed to enter it? > NOTE_NOTEXT(Your !AS has no text. Really enter it?  NOREPLIES no replies ONE_REPLY1 reply" MANY_REPLIES !UL repliesN_OF_N !UL of !UL: ENTER_CTITLE"Enter a title for the conference: @ DELETE_NOTE*Are you sure you want to delete note !AS? & NOTENOTDELnote not deleted FINDING_HELP8 NOKEYHELP#Sorry, keypad help is not available: NOTESQADD%!UL note!%S added to job on queue !AS( REALLYQUITReally quit NOTES? , MAILNOTSENTMAIL message not sentNUMNOTES !UL note!%SSENDTO Send to: SUBJECT Subject: , PROFILE_USERProfile for user !AS MORE_TEXTMore... SHOW_MARK_1 Marker( SHOW_MARK_2 !# Note2 SHOW_MARK_3 !# !# EntryV SHOW_ENTRYA !# Unseen !# Topics Update status.SHOW_PROF_EDIT Editor and access: 0SHOW_PROF_DCLAS Default class: 0SHOW_PROF_PRINT PRINT qualifiers: .SHOW_PROF_NAME Personal name: .SHOW_PROF_AUTO Automatic on open: "SHOW_PROF_ADIR DIRECTORY$SHOW_PROF_AUNS NEXT UNSEENSHOW_PROF_NONEnone* ENDREQ_SHOWEnd of SHOW listingB CTRLZ_COM_RET)Enter command or press Return to resume: * SHOW_ENT_CONF Entry name: !AS* SHOW_ENT_FILE File: !AS SHOW_CLASS Class* SHOW_CONF_MOD Moderator: !ASBSHOW_CONF_RESA1' Access is restricted to joined members4SHOW_CONF_RESA2 Access is not restricted:SHOW_CONF_RESK1 Keyword creation is restricted>SHOW_CONF_RESK2# Keyword creation is not restricted SHOW_KEYW_1 Keyword( SHOW_KEYW_2 !# NoteSHOW_MOD, SHOW_MOD_NODE Node list: !AS, SHOW_MOD_USER Access list: !AS,SHOW_USER_MADR Mail address: !AS,SHOW_USER_PRIV Privileges: !ASSHOW_USER_JOIN( SHOW_NOTE_HID Note is hidden, SHOW_NOTE_VIS Note is not hidden8SHOW_NOTE_REP1 Further replies are prohibited.SHOW_NOTE_REP2 Replies are enabled.SHOW_PROF_PERM (Permanent) RSHOW_USER_FULL8 !# !# !# PrivilegesRSHOW_MODU_FULL8 !# !# !# PrivilegesNMF no more files NJUno joined members*NO_MORE_MARKERS?no more markers>SEARCHF1+No more notes found containing string "!AS":SEARCHF2&No notes found containing string "!AS"$DIR_CONF Conference file8DIR_CONF_TITLEDirectory of conferences on !AS N_TOPICS !UL topic!%S6 DIR_NB_CLASSDirectory of Notebook class !AS> CTRLZ_CANCEL'Press F10 or CTRL/Z to cancel your note& REPBUFINFO1Note !AS by !AS, REPBUFINFO2Note !AS by !AS "!AS"( NMORELINES!UL more line!%S..., READINGCONFConference !AS is open4 WILLNOTSENDMAIL message will not be sentWORKING< FILECREUPD'Created: !#AS!#* !12AS!#* Updated: !#ASH ENTERNOTE3Enter your note below. Press CTRL/Z when complete.ANDTOAnd to: 2 SENDANYWAYDo you want to send anyway? SPAWNKEYSPAWNCALLKEYCALLEDICALL , CallableEDISPAWN, Spawn SPELLSELECT SPELLBUFFER SPELLSTART SPELLDONE& SENDING_MAILSending mail...LSENDBOTH9!UL error!%S while sending message, !UL sent successfully0NONESENTNo messages sent successfullyB SENT_TO_ALL+Message successfully sent to all recipientsFSHOW_CONF_RESW1, Notes may not be written to this conference0SHOW_CONF_RESW2 Notes may be written TEXT_TOPICtopic. MEMBERS_OFMembers of conference !AS0 DEF_SUBJECTDefault subject is: "!AS". MAIL_SUBJECTConference !AS Note !ASL TEXT_APPEND5The note will be appended to any text you enter above(NEVER_ACCESSEDnever accessed<EXPIRED*your license for this software has expired ANSWER_NOnoB WRONG_ANS-Don't understand !AS; please answer YES or NO< CREATEBUF'Buffer !AS does not exist. Create it? &WRITEBUFWrite buffer !AS? SHOW_PROF_DEFDEFAULT" ASK_YESNO (Y/N) VMODPRIVSByou are still a moderator by default -- check your membership list* SHOW_ENT_OBJ Object name: !AS CANCELLED -Cancelled-0SHOW_CONF_RESR Replies may be writtenCCCC: 4 MODERATORS_OFModerators of conference !ASH ALREXISTS_A1access name !AS already exists for another member, INVACCNAMinvalid access name !AS2 ILLCTXADRinvalid context block address(WRONGCTXinvalid context block& INVITMCODinvalid item code( INVITMLENinvalid item length, MISREQITMrequired item is missing$ NOCURNOTEno current note6 CANTCONTINUElast request is not continuable> FAILGETVM*failed to allocate required virtual memory& STRCOPYERRstring copy error. ILLNOTEIDinvalid note specification NOSUCHNOTE SRV_NOINIT4 SRV_INVSEQinvalid sequence of operations6 SRV_NOCONTEXTrequired context not providedSRV_NOUSERNAME SRV_INVITEM: CREPRIJOB%error creating print job on queue !ASPREMEOF6 NOPRIVDEL_N no privilege to delete this note NOPRIVWRITE_NJ SRV_UNRECPROT2unrecognized protocol -- server is running !AS/!AS NOFILEOPEN ALREXISTS_OLD NOSUCHENTRYL MUST_OPEN8you must use the OPEN command to open a conference firstDMUST_READ_REPLY)you must be reading a note to reply to itBMUST_READ_FORWA(you must be reading a note to forward it6NOT_ENTERING_NOyou are not entering a note4NONOTE_SPECIFIEyou did not specify a note0 ERROR_MAILINGerror mailing message(s)6NOPREVIOUS_NOTEyou have not read any notes8ALREADY_IN_EDITyou are already in the editor6ALREADY_IN_NOTEyou are already in HP Notes>MUST_COMPLETE_M$you must first complete this messageBUNREC_CALLUSER)unrecognized CALL_USER code = !UL !-(!XL)& NO_SUCH_CLASS no such class. NO_SUCH_ENTRYno such Notebook entry*NO_SUCH_KEYWORDno such keyword$ NO_SUCH_NOTE nm$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1"do such note8 NO_SUCH_USER!no such member in this conference2 NOMORE_RECALLno more commands to recallH EDIT_OR_FILE0you must either use the editor or specify a file8NOMAIL&please use the SEND or FORWARD commandN ERRORWRITE8cannot add your note to the conference - type SHOW ERROR2 NOMAILPROCcannot start MAIL subprocess&IFFinvalid notefile format6NOPRIV$no privilege for attempted operation0 CTRLC_CANCELcommand cancelled by user ERRCREKEY ERRADDMARK ERRADDMEM ERRADDENT ERRDELENT ERRDELMARK ERRDELMEMBER ERRMODNOTE ERRMODENTRY ERRMODKEYWORD8 ERRACCLIST#error in access list for member !ASBNOWRITE0no privilege to reply to this note (set nowrite)> NOSUCHMARKER'no marker named !AS for this conference6 NOPRIVMOD_N no privilege to modify this note. ALREXISTS_Cclass !AS already exists< ALREXISTS_E%entry !AS is already in your Notebook0 ALREXISTS_Kkeyword !AS already exists@ ALREXISTS_U*!AS is already a member of this conference0 ALREXISTS_Mmarker !AS already exists(NO_SUCH_MARKERno such marker6 NOMEMBERS"no members found in the conference< NOTMEMBER'you are not a member of this conferenceP BASEWRITELOCK8only topic notes (not replies) can be modified for writeF NOWRITE_CONF/no privilege to write or modify this conference SPELLERRORH PNINVCHAR3first character in personal name must be alphabetic> SENDNOAUT)you must be reading a note to use /AUTHOR. INVCLASSNAMEinvalid class name !ASF CLASSNOTFOUND.no entries found in class !AS in your NotebookDFORWLOOP0infinite forwarding detected sending to user !AS* BAD_DIR_LINEbad directory line: NO_SELECT%there is nothing from which to selectD NOTE_NOCONF.this note does not have a conference to select* UNREC_EDITORunrecognized editor& NO_CLASSPno class specified> NMTHISDIR)no more entries to read in this direction( NO_NEW_NOTEno more new notes@ CAPTIVE_SPAWN'you cannot spawn from a captive account@NOTHING_TO_SET&you have not specified anything to setJ NOHELPTERM5sorry, keypad help is not available for this terminal& INVENTNAMinvalid entry name& INVCLANAMinvalid class name. INVENTRYNAMEinvalid entry name !AS>NO_ENTRY_IN_CLA#no such Notebook entry in class !ASDALREXISTS_IN_CL*notebook entry already exists in class !AS0 NOMARKERSno markers found in Notebook4 NOKEYWORDSno keywords found in conferenceH NOLICENSE3your software license does not allow this operation NOFILEfile not found(NOEDTerror in EDT activation$NOENTRYno entry specifiedBNOEVE2for now you can't call EVE in hardcopy mode, sorry&TPUERRORERROR = !UL !-(!XL)PENTALR_IN_CLASS5entry has already been added to all classes specified@NO_RANGE_ALLOW'note-range not allowed for this command(NOTINCMDnot in command window\CONF_REPLY_ONLYBconference is set to REPLIES only. No privilege to add new topicsB USRNOTADD-user not added, access name must be specified( INVKEYNAMinvalid keyword name2INVKEYWORDNAMEinvalid keyword name !AS( INVMRKNAMinvalid marker name0 INVMARKERNAMEinvalid marker name !AS( INVUSRNAMinvalid member name. INVUSERNAMEinvalid member name !AS6 INVNOTESPECinvalid note specification: !ASBRANGE_ONE_TOPIC(note-range must be within a single topicD RANGE_TOO_BIG,note-range too big for specified new note id,NO_TOPICtopic !AS does not exist. ALREXISTS_Nnote !AS already exists, NONOTESMODno notes were modifiedBMEMBERNAME_NODE'member name may not include a node name*CONFQUALconflicting qualifiersB OPRNOTSUPCNF*operation not supported in this conferenceLBADTIME:invalid absolute time - use DD-MMM-YYYY:HH:MM:SS.CC format( INVOBJNAMEinvalid object name0 INVOBJECTNAMEinvalid object name !AS*NOATTRIBno attribute specified&NOOBJECTno object specified" NOSUCHOBJno such object0LWKERRORLinkWorks Reported Error: !ADV NOLINKLICENSE>you are not registered to use the HP Notes Server on node: !AS< NOTNETWRK'server not running in a network processD WRONG_ACCT.server not running in the NOTES$SERVER accountB SRV_INIT_ERR+server internal error during initializationN WRONG_LMF:the !AS license is not supported under this version of LMFNOTESTXp ?P "P >.3!H,$-$ ±pO -; Is# ɋ0K/P%"D "s""" \!ų,/tEX HRDP,"RPHCDdIsp,_rsw,4B$0,,|/L|, /,, !L/,-r "",/"!/ s˄0p =/ /$H" )!D4̀ """"-"͋,,,H@B$  ,. H#"Ќ"O,HŲ",$ ,˲, TE H$I$E !H """"˅L "_2,‹,/"\,,$DA\,Ȳ,E<\2 a2" ( /@p @  @@ @@@  @ *@  PHP`8  P 8    p  PP(H!)P*+p, ---/228345855067H9:p;p=??8@h@@(A(BBpCCEEF@GGPHPSUX8Y@[0\^aeXfhoou8uuuP`HS0`V`yl :jjjk(kC`p0 @ `@00xxX8&'`)) +,`..//0269 9;H>ABDDFPG@L`LXMPNPOpOSSS@TUZP[@\gg`mhmqpzЅlz`{Pm`p` `  ` p    ` 0` !''') ))*`+ ,0- .0.//p0P110266@8888`9<@AApBBC0DDD0EF FH0ILLLL M@NNNOSPT`TTU V0VVWPW`W0XXXZ@ZggPhhiiilmmno0qPxx@zz{{0|| @Kk 0p` 00P`P  p@P!@"p"""""#@#p#$%%& &' (@(,/15P6`6;;<GHMN NNQQQ0R`RUU0U@U@X[[[\P\\\`bbccePjll`lo@qyPz`zzzz{P{{{{{   \,/$ NOTES026.Af  [NOTES.TEMPKIT]NOTES$SHARE.EXE;1;1xCu@LIBOTS@LIBRTL@DECC$SHR@SYS$BASE_IMAGE@SYS$PUBLIC_VECTORSMM NOTES$SHARE NOTES V2.513-DEC-2004 17:1713-DEC-2004 17:17Linker A13-02  .$$ABS$$. 8N)0HNOTES$USER_MODIFY8N%GNOTES$USER_GET8N  GNOTES$USER_DELETE8NxFNOTES$USER_ADD8NENOTES$USER_END8NDNOTES$USER_BEGIN@NtCNOTES$PROFILE_MODIFY8NPCNOTES$PROFILE_GET 8NpBNOTES$PROFILE_END8N`BNOTES$PROFILE_BEGIN@N0ANOTES$NOTE_GET_KEYWORD8N@@NOTES$NOTE_GET_TEXT8NH@NOTES$NOTE_ADD_TEXT8NP@NOTES$NOTE_MODIFY8N >NOTES$NOTE_GET8NܗP=NOTES$NOTE_DELETE 8N|{P;NOTES$NOTE_ADD8N8o9NOTES$NOTE_END8Nk(9NOTES$NOTE_BEGIN0N`TH6 NOTES$NOTES8NPD6NOTES$NOTEFILE_LIST@N@ <x5NOTES$NOTEFILE_LIST_BEGIN@N035NOTES$NOTEFILE_MODIFY@N 14NOTES$NOTEFILE_GET_INFO 8N+3NOTES$NOTEFILE_END@N,#3NOTES$NOTEFILE_BEGIN@N-NOTES$KEYWORD_GET_NOTE@Np-NOTES$KEYWORD_MODIFY8N-NOTES$KEYWORD_GET@NP,NOTES$KEYWORD_DELETE8N+NOTES$KEYWORD_ADD8Np0*NOTES$KEYWORD_END 8N`)NOTES$KEYWORD_BEGIN8NP(NOTES$SERVER_BEGIN8NNOTES$ENTRY_UPDATE@N@hNOTES$ENTRY_GET_KEYWORD@N00NOTES$ENTRY_GET_CLASS8NPNOTES$ENTRY_MODIFY8N hNOTES$ENTRY_GET8N(NOTES$ENTRY_DELETE 8N$NOTES$ENTRY_ADD8Nԥ0NOTES$ENTRY_END8NĢNOTES$ENTRY_BEGIN@NĘ NOTES$CLASS_GET_ENTRY8NdP NOTES$CLASS_MODIFY8ND NOTES$CLASS_GET8N NOTES$CLASS_DELETE8N} NOTES$CLASS_ADD0 08No NOTES$CLASS_END8Npl NOTES$CLASS_BEGIN8N@e NOTES$$QIO_CANCEL@N0eNOTES$$QIO_CHECK_CANCEL@N eNOTES$$REGISTER_QIO_WAIT_CB "*[NOTES.TEMPKIT]NOTES$STARTUP.COM;1+,&f./J 4O- 0123KPWO56 &57[lģ89GJHJ4$ ! N O T E S $ S T A R T U P . C O M$ !O$ ! Copyright Digital Equipment Corporation. 1985, 1993. All Rights Reserved.$ !+$ ! Procedure to install DECNotes images...$ !&*[NOTES.TEMPKIT]NOTES$STARTUP_END.COM;1+,'f./J 4Y - 0123KPWO 56>Y}t`7G^lģ89GJHJ!$ ! First, deinstall DEC Notes...$ !7$ NOTES$TEMP = F$SEARCH("SYS$MANAGER:NOTES$REMOVE.COM")4$ IF NOTES$TEMP .NES. "" THEN @'NOTES$TEMP' SHUTDOWN$ !.$ ! Next, add the required DEC Notes images...$ !B$ ! Note: NOTES$SECTION does not need to be /OPEN/HEADER/SHARE forB$ ! proper operation. This is done for performance considerations.$ !$ ADD_IT = "INSTALL ADD 'IMAGE"%$ IMAGE = "SYS$SHARE:NOTES$SHARE.EXE"$ 'ADD_IT /OPEN/HEADER/SHARE'$ IMAGE = "SYS$SYSTEM:NOTES$SERVER.EXE"$ IF F$SEARCH(IMAGE) .NES. ""$ THEN$ 'ADD_IT /PRIV=SYSNAM$ NOTES$SERVER_FOUND = 1$ ELSE NOTES$SERVER_FOUND = 0$ ENDIF$ !*$ ! Now, add the optional DEC Notes images$ !($ SAVE_ON = F$ENVIRONMENT("ON_SEVERITY") $ SET NOON1$ NOTES$FREE_GBL_SECT = F$GETSYI("FREE_GBLSECTS")1$ NOTES$FREE_GBL_PAGE = F$GETSYI("FREE_GBLPAGES"),$ IF NOTES$FREE_GBL_SECT .GT. NOTES$GBL_SECT$ THEN/$ IF NOTES$FREE_GBL_PAGE .GE. NOTES$GBL_PAGE $ THEN.$ IF F$TRNLNM("DECW$SYSTEM_DEFAULTS") .NES. ""$ THEN+$ IMAGE = "SYS$SHARE:NOTES$DWSHARE.EXE"A$ IF F$SEARCH(IMAGE) .NES. "" THEN 'ADD_IT /OPEN/HEADER/SHARE$ ENDIF $ ENDIF$ ENDIF1$ NOTES$FREE_GBL_SECT = F$GETSYI("FREE_GBLSECTS")1$ NOTES$FREE_GBL_PAGE = F$GETSYI("FREE_GBLPAGES")$ IF NOTES$FREE_GBL_SECT .GT. 1$ THEN7$ IF NOTES$FREE_GBL_PAGE .GE. NOTES$SECT_FILE_GBLPAG $ THEN/$ IMAGE = "SYS$SHARE:NOTES$SECTION.TPU$SECTION"$ 'ADD_IT /OPEN/HEADER/SHARE $ ENDIF$ ENDIF$ NOTES$EXIT_STATUS = 1$ NOTES$SERVER_STARTED = 0$ IF NOTES$SERVER_FOUND$ THEN$ !$ ! Load DECnet object:$ !+$ NOTES$TEMP = F$GETDVI("NET0","EXISTS");$ IF NOTES$TEMP THEN NOTES$TEMP = F$GETDVI("NET0","MNT");$ IF NOTES$TEMP THEN NOTES$TEMP = F$GETDVI("NET0","AVL")$ IF NOTES$TEMP $ THEN$ DEFINE/USER SYS$OUTPUT NL:$ DEFINE/USER SYS$ERROR NL:$ DECNET_PHASE = 40$ NETFILE = F$SEARCH("SYS$SYSTEM:NCL.EXE")$ IF NETFILE .NES. "";$ THEN >$ DNET_VERS = F$EXTRACT(2,2,F$GETSYI("DECNET_VERSION"))3$ IF DNET_VERS .EQS. "05" THEN DECNET_PHASE = 5$ ENDIF$ IF DECNET_PHASE .EQ. 4 $ THEN ! Assume DECnet Phase IV"$ MCR NCP SET OBJECT NOTES ALL$ ELSE ! Assume DECnet Phase V-$ SET RIGHTS_LIST/ENABLE NET$MANAGE=$ MCR NCL CREATE NODE 0 SESSION CONTROL APPLICATION NOTES $ MCR NCLY SET NODE 0 SESSION CONTROL APPLICATION NOTES INCOMING PROXY FALSE , OUTGOING PROXY TRUEU SET NODE 0 SESSION CONTROL APPLICATION NOTES IMAGE NAME SYS$SYSTEM:NOTES$SERVER.EXE@ SET NODE 0 SESSION CONTROL APPLICATION NOTES NODE SYNONYM TRUEG SET NODE 0 SESSION CONTROL APPLICATION NOTES USER NAME "NOTES$SERVER"H SET NODE 0 SESSION CONTROL APPLICATION NOTES ADDRESSES { NUMBER = 33 } $ ENDIF $ NOTES$TEMP = $STATUS$ IF NOTES$TEMP$ THENM$ WRITE SYS$OUTPUT "%NOTES-I-STARTDNSRV, Notes server enabled for DECnet"$ NOTES$SERVER_STARTED = 1$ ELSES$ WRITE SYS$OUTPUT "%NOTES-E-NODNSRV, Unable to enable Notes server for DECnet"$ NOTES$EXIT_STATUS = 0$ ENDIF $ ELSE8$ WRITE SYS$OUTPUT "%NOTES-W-NODNET, DECnet not running" $ ENDIF$ !$ ! Load TCP/IP service:$ !-$ NOTES$TMP = F$ENVIRONMENT("ON_SEVERITY")*$ NOTES$TEMP = F$GETDVI("BG0","EXISTS"):$ IF NOTES$TEMP THEN NOTES$TEMP = F$GETDVI("BG0","MNT"):$ IF NOTES$TEMP THEN NOTES$TEMP = F$GETDVI("BG0","AVL")$ IF NOTES$TEMP $ THEN1$ NOTES$TEMP = F$SEARCH("SYS$SYSTEM:UCX$UCP.EXE")$ IF NOTES$TEMP .NES. "")$ NOTES026.A'f &[NOTES.TEMPKIT]NOTES$STARTUP_END.COM;1Y2$ THEN8$ NOTES$TEMP = F$SEARCH("SYS$SYSTEM:UCX$SERVICE.DAT")$ ENDIF)$ IF NOTES$TEMP .EQS. "" THEN GOTO NO_UCX $ SET NOON$ DEFINE/USER SYS$OUTPUT NL:$ DEFINE/USER SYS$ERROR NL:$ UCX SHO SERVICE NOTES$ NOTES$TEMP = $STATUS$ IF .NOT. NOTES$TEMP$ THEN $ DEFINE/USER SYS$OUTPUT NL:$ DEFINE/USER SYS$ERROR NL:$ UCX SET SERVICE NOTES - /USER=NOTES$SERVER- /PROCESS=NOTESRVR- /PORT=3333-$ /FILE=SYS$SYSTEM:NOTES$SERVER.COM- /LIMIT=255- /FLAGS=(LISTEN,MULTITHREAD)$ NOTES$TEMP = $STATUS$ ENDIF$ IF NOTES$TEMP$ THEN $ DEFINE/USER SYS$OUTPUT NL:$ DEFINE/USER SYS$ERROR NL:$ UCX ENABLE SERVICE NOTES$ NOTES$TEMP = $STATUS$ ENDIF$ IF NOTES$TEMP$ THENM$ WRITE SYS$OUTPUT "%NOTES-I-STARTTCPSRV, Notes server enabled for TCP/IP"$ NOTES$SERVER_STARTED = 1$ ELSES$ WRITE SYS$OUTPUT "%NOTES-E-NOTCPSRV, Unable to enable Notes server for TCP/IP"$ ENDIF $ ELSE&$ IF .NOT. NOTES$SERVER_STARTED THEN -7 WRITE SYS$OUTPUT "%NOTES-I-NOUCX, UCX not running" $ ENDIF $ NO_UCX:*$ IF NOTES$TMP .NES. "NONE" THEN SET ON"$ IF .NOT. NOTES$SERVER_STARTED $ THENJ$ WRITE SYS$OUTPUT "%NOTES-E-NOSRV, No DEC Notes server will be available"$ NOTES$EXIT_STATUS = 0 $ ELSE9$ PURGE/KEEP=10 SYS$SYSDEVICE:[NOTES$SERVER]NETSERVER.LOG $ ENDIF$ ENDIF$ !%$ IF SAVE_ON .NES. "NONE" THEN SET ON$EXIT:N$ !---------------------------------------------------------------------------N$ ! Do NOT put an EXIT command here. Installation procedure appends commands.N$ !---------------------------------------------------------------------------*[NOTES.TEMPKIT]NOTESDCL.CLD;1+,$f./J 4Rj- 0123KPWO56j`ģ7blģ89GJHJ module notes$dcl_commandident "V01-007"!4! COPYRIGHT 1985, 1989 BYC! DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASSACHUSETTS2! ALL RIGHTS RESERVED.!9! The VAX Notes DCL command line. See COMMANDS.CLD for a=! description of the internal commands accepted by VAX Notes.!@! This command is accepted by DCL to invoke the VAX Notes image.!! Version: 'V01-008'!! MODIFIED BY:!#! V01-010 KEB 5-Sep-1989H! Change labels for /[NO]DECWINDOWS & /INTERFACE=... to be$! backward compatible.#! V01-009 RAS 30-Aug-19899! Removed line IMAGE NOTES$MAIN. I don't know how this 3! works if it doesn't point to an image, though...#! V01-008 RAS 29-Aug-19893! Added line IMAGE NOTES$MAIN to point to image. #! Made /INTERFACE non-negatable. #! V01-007 KEB 21-Aug-1989P! Change /[NO]DECWINDOWS to /INTERFACE={DECWINDOWS|CHARACTER_CELL}:! Leave in /[NO]DECWINDOWS for compatibility#! V01-006 KEB 07-Feb-1989R! Change /[NO]DISPLAY={DECWINDOWS|CHARACTER_CELL} to /[NO]DECWINDOWS! V01-005 MJG 19-Oct-1988;! Remove artificial restriction on position of /NONOTEBOOK! V01-004 MJG 05-Oct-19881! Added /[NO]DISPLAY={DECWINDOWS|CHARACTER_CELL}! V01-003 MJG 16-Sep-1987&! Added /AUTOMATIC={DIRECTORY|UNSEEN}! V01-002 MJG 09-Sep-1986! Added /[NO]AUTOMATICDEFINE TYPE auto_type"keyword directory, label=directorykeyword unseen, label=unseenDEFINE TYPE interface_type.keyword decwindows, label=interface_decwindows6Keyword character_cell, label=interface_character_cellDEFINE VERB notesimage notes$main3parameter p1, label=entryclass, prompt="Entry name"*parameter p2, label=note_id, prompt="Note"Equalifier automatic, label=automatic, value (type=auto_type), default<qualifier class, label=class, value (required), nonnegatable=!-qualifier display, label=display, value (type=display_type)&qualifier decwindows, label=decwindowsOqualifier interface, label=interface, value (type=interface_type), nonnegatable0qualifier notebook, label=notebook, nonnegatable4qualifier nonotebook, label=nonotebook, nonnegatablequalifier update, label=update5disallow nonotebook and (class or notebook or update)disallow update and note_id*[NOTES.TEMPKIT]NOTESDCL.HLP;1+,%f./J 4K $- 0123KPWO56.}uz_7flģ89GJHJ0! 25-Feb-1992 MJD changed VAX Notes to DEC Notes%! 29-JAN-1993 PAF updating for T2.4-2$! 3-Nov-1992 PAF updating for T2.4-1! For each major release: ! Section@! NOTES Release_Notes Change the file spec of release notes.7! E.g. NOTES$024.RELEASE_NOTES1 NOTESEDEC Notes is a computer-mediated conferencing system. It allows manyFpeople to communicate in the system at their convenience, usually on aHsingle subject or issue. It provides a permanent record of a discussion?(conference) by recording topics and any replies to the topics. Format: $ NOTES or! $ NOTES/INTERFACE=DECWINDOWS orH $ NOTES/INTERFACE=CHARACTER_CELL [qualifier] [entry-name [note-ID]]CThe square brackets [] indicate that the enclosed item is optional.DIf the DECwindows interface is available, then /INTERFACE=DECWINDOWSBis the default. If not, /INTERFACE=CHARACTER_CELL is the default.KFor help on getting started and more detailed information, invoke DEC Notes-($ NOTES) and type HELP at the Notes> prompt.2 Release_NotesGYou can print the release notes for this version of DEC Notes by typing,the following command at the DCL prompt ($):, $ PRINT SYS$HELP:NOTES$025.RELEASE_NOTES 2 Parameters entry-nameA Specifies an entry in the Notebook to be opened. If you use theF /NONOTEBOOK qualifier, DEC Notes looks in the NOTES$LIBRARY directory* for a conference with that notefile name.F With the /UPDATE qualifier, you can use the wildcard character (*) or6 omit the entry name parameter to specify all entries.note-ID? Specifies a note to be displayed on your screen as soon as the@ specified conference opens. You can use the note-ID parameter 8 only if you precede it with the entry-name parameter. > When you use the note-ID parameter, you cannot also use the  /UPDATE qualifier.2 Command_DescriptionF The DCL command NOTES invokes DEC Notes and provides immediate accessF to your Notebook. You can specify a Notebook entry to be opened, and@ activate a class other than the default class, in one step. InC addition, you can specify one or more entries in the activated (or9 default) class to be updated before you enter DEC Notes.G If you use the /UPDATE qualifier without specifying any entry name(s),C DEC Notes updates all entries in the activated (or default) class.E After DEC Notes updates the specified entries, you return to the DCL level.D To open a conference directly, without going through your Notebook,E use the /NONOTEBOOK qualifier. The entry-name parameter you provideD is treated as the file name of a notefile specification. DEC NotesD looks in the NOTES$LIBRARY directory, instead of the default class,F for the conference. When you use /NONOTEBOOK to invoke DEC Notes andF open a conference, information about which notes you have or have not seen is not available. 2 Qualifiers)/AUTOMATIC[={DIRECTORY|UNSEEN}] (default) /NOAUTOMATIC@ Specifies whether the /AUTOMATIC setting from your user profileC should be used when opening the conference. The default is to useA the automatic setting. Use /NOAUTOMATIC when you wish to open aC conference and not see the first unseen note or directory listing.B /AUTOMATIC=DIRECTORY or /AUTOMATIC=UNSEEN also overrides the user@ profile setting. If you use the optional note-ID parameter, it> supersedes the /AUTOMATIC qualifier and displays the note you specify./CLASS=class-name/CLASS=default-class (default)= ActxE$ NOTES026.A%f [NOTES.TEMPKIT]NOTESDCL.HLP;1UID;1K ivates the specified class rather than the default class.0 You cannot use /CLASS and /NONOTEBOOK together./INTERFACE=DECWINDOWS/INTERFACE=CHARACTER_CELL6 Activates the display device requested, if available.: If you are using a DECwindows workstation, the default is= /INTERFACE=DECWINDOWS. If DECwindows is not available, the 0 default is to use the character-cell interface. 0 If you want to use the character-cell interface< to Notes from a terminal emulator window on a workstation, 8 specify /INTERFACE=CHARACTER_CELL. : If the /INTERFACE=DECWINDOWS qualifier is used, all other+ qualifiers and all parameters are ignored./NOTEBOOK (default) /NONOTEBOOK? Directs DEC Notes to perform Notebook entry processing, and toB activate the default class (unless you specify another class with the /CLASS qualifier).? If you specify /NONOTEBOOK, the Notebook is opened for profileA information only, and by default, your automatic setting in yourD profile (Directory, Next Unseen, or Noautomatic) is used. No entryA processing is done. This means that no information is available@ regarding which notes you have and have not seen. Further, theA parameter is treated as a notefile specification rather than the# name of an entry in your Notebook.? You cannot use the /NONOTEBOOK qualifier with either /CLASS or /UPDATE./UPDATE/NOUPDATE (default)E Updates the specified Notebook entries and returns to the DCL level.E Use the wildcard character (*), or omit the entry name parameter, to8 update all entries in the specified (or default) class.= You cannot use the /UPDATE qualifier if you use the note-ID ( parameter or the /NONOTEBOOK qualifier. 2 Examples $ NOTES4 Starts DEC Notes and activates the default class.; The examples that follow apply only to the character-cell interface:  $ NOTES /CLASS=LANGUAGESD Starts DEC Notes and activates the class named LANGUAGES (instead of the default class). $ NOTES MICROS5 Starts DEC Notes and opens the entry named MICROS. $ NOTES VETTES /CLASS=CARSE Starts DEC Notes with the class named CARS, and opens the entry in that class named VETTES. $ NOTES VETTES 40.5? Starts DEC Notes, opens the entry named VETTES, and displays note 40.5." $ NOTES /UPDATE /CLASS=MISC *E Updates all entries in the class named MISC and returns to the DCL level.& $ NOTES /NONOTEBOOK SOMNOD::JOKESD After processing the profile information from the Notebook, opensC the conference SOMNOD::JOKES directly. Note that no informationF about which notes you have and have not read in JOKES is available.E Further, DEC Notes does not mark the notes you read in the current session as seen.%*[NOTES.TEMPKIT]NOTES_SHORTGUIDE.MEM;1+,)f./J 4 - 0123KPWO 56O37C:jlģ89GJHJB __________________________________________________________ Quick Summary of Basic DEC Notes Commands Quick Summary of Basic DEC Notes Commands Quick Summary of Basic DEC Notes Commands$ To invoke DEC Notes, type:> NOTES NOTES $ NOTESL You can get online HELP for DEC Notes commands and key definitionsI at any time during a DEC Notes session. To see key definitionsM for DEC Notes, press PF2. To get help on DEC Notes commands, type:J HELP HELP Notes> HELPK Before you can read the notes in a conference, you must first addD the conference to your Notebook, then open the conference.H To see a listing of the conferences that are available on your; system and to which you are allowed access, type:} DIRECTORY/CONFERENCES DIRECTORY/CONFERENCES Notes> DIRECTORY/CONFERENCESL The name of each conference appears in capital letters. The title: briefly describes the subject of the conference.* NOTEA If you receive the error "Your software license doesA not allow this operation", you must specify the node@ name of the system that has the NOTES or NOTES-USER= license. For more information, see the HELP for? Software_Licenses, or contact your system manager.J To add a conference to your Notebook, use the ADD ENTRY command.H For example, to add the ETIQUETTE conference to your Notebook, type:w ADD ENTRY ETIQUETTE ADD ENTRY ETIQUETTE Notes> ADD ENTRY ETIQUETTEK To open a conference, use the OPEN command. For example, to open) the ETIQUETTE conference, type:h OPEN ETIQUETTE OPEN ETIQUETTE Notes> OPEN ETIQUETTEF A conference is organized into discussions. Each discussionI begins with a TOPIC, each having any number of REPLIES. TopicsH are numbered consecutively, starting with 1. Replies are alsoK numbered consecutively, by topic, starting with .1. For example,M if there are two replies to topic 4, they are numbered 4.1 and 4.2.? To see a listing of the topics in a conference, type:Y DIRECTORY DIRECTORY Notes> DIRECTORYF To include replies, as well as topics, in the listing, type:e DIRECTORY *.* DIRECTORY *.* Notes> DIRECTORY *.* C Use the NEXT SCREEN (0 on the keypad) and PREVIOUS SCREENA (. on the keypad) keys to scroll through the directory.J To read a specific topic or reply, type the number at the Notes>I prompt. For example, to read the third reply to topic 6, type:G 6.3 6.3 Notes> 6.3F Use the ENTER or RETURN key to page through the replies in a discussion.I To set up EVE, the DEC Notes editor, with the EDT-style keypad,% type the following command: SET PROFILE/EDITOR=EDT SET PROFILE/EDITOR=EDT Notes> SET PROFILE/EDITOR=EDTJ To add a reply to a discussion, use the REPLY command. You mustH be reading a reply (or the topic) in the discussion before youF issue the REPLY command. For example, to add a reply to the' discussion on topic 10, type:D 10 10 Notes> 10M REPLY REPLY Notes> REPLY5 To start a discussion on a new topic, type:M WRITE WRITE Notes> WRITEI To print notes, use the PRINT command. If you do not specify aJ range of notes to print, DEC Notes assumes you want to print theH note you are currently reading. For example, to print topic 3. and all replies to that topic, type:Y PRINT 3.* PRINT 3.* Notes> PRINT 3.*E To leave a conference, use the CLOSE command. You can alsoF press CTRL/Z in place of the CLOSE command. For example, to close a conference:P ______ ______ ______ ______ |CTRL/Z| ______ |CTRL/Z| ______ Notes>|CTRL/Z|G To end your DEC Notes session, use the EXIT command (or press3 CTRL/Z). For example, to exit DEC Notes:P ______ ______ +Q'$ NOTES026.A)f %[NOTES.TEMPKIT]NOTES_SHORTGUIDE.MEM;1  ______ ______ |CTRL/Z| ______ |CTRL/Z| ______ Notes>|CTRL/Z|*[NOTES.TEMPKIT]OANOTES.OBJ;1+,!f./J 4- 0123KPWO56޿ģ7nlģ89GJHJ FFOANOTESV01-00113-DEC-2004 17:15BLISS-32E V1.11-001  i$CODE$$GLOBAL$$OWN$$PLIT$ $INITIAL$ $ABS$H$LINK$ $LITERAL$ . EXTERNAL_BASE .8JOA$NOTES_DISPATCH =#~0^8^@GG   HH "! C= F "! C="C C= CtG0B8b@Zk((( } @T CTG[/@ZkG0]8]@P#k<GLIB$FIND_IMAGE_SYMBOL<b#LIB$FIND_IMAGE_SYMBOL<@LIB$FIND_IMAGE_SYMBOL8 8=  NOTES$NOTES NOTES$SHARE =00;=P  ;0 LIB$FIND_IMAGE_SYMBOL7OA$CMD_DISPATCHB B=2*)OANOTESBLISS-32E V1.11-001S S=OGA<(NOTD$:[NOTES.V26.ALPHA.SRC]OANOTES.B32;3O O=KCB= tq\)NOTD$:[NOTES.V26.ALPHA.SRC]NOTESREQ.REQ;5T T=yq  7 9 Q 34=P.AAA  4=P.AAB &4=+#NOTES$NOTES_ASCIC& 4=NOTES$SHARE_ASCIC = 44=OA$NOTES_DISPATCH4=] =  4=kc COMMAND_LINEDESC1DESC2 NOTES_ROUTINEG G=  4=ZZZP P=( $ 4=ZZZ/ /=+# (STATUS2 2=< 4 =  =IA64 | |F 4rD4d4  = @ @ LIB$FIND_IMAGE_SYMBOLOA$CMD_DISPATCH *[NOTES.TEMPKIT]PASSKEY.EXE;1+,f.$/J 4$"- 0123 KPWO"56`ģ7qlģ89GJHJ h(w`D0Z,w`ģPASSKEY NOTES V2.5A13-02$  $ $, $  $J $( 4" LIBOTS_0014 LIBRTL_0018:  DECC$SHR_001@&kSYS$PUBLIC_VECTORS_0010 @ F0 0 0"0 0"@  @ 0"  F' @ '00"l8  F "08"8P )F0 0 " L "" F&P'F0P"0p  """0@   0(" `(| """'  0" )@$< "` 0")"0"(0 0" '@ ""0"&@ 0"XL&0 0"h%@ 0"$0 0"@#@ 0 " "@ """0"hh"0 0"H!0 0"h!0 0" 0 ""0" 0 0"0 0"0 0"@\0 0"0 @0"h@  `@P0 " @ """0 "H@ ttXttttt Htttt%s ggpuUSER%s%sSYSTEM*%::passkey: %s NOTES$LIBRARY:*.NOTEerror opening %s as input File: %s error reading header record %s %s � <Notice> %s � <UserArea> %s � unlocked by ���<Unknown %d> %s ��������error updating header record����SYS$NODE��������access not authorized���%s%s%s on %s���� unlocked by ���NOTES$LIBRARY:*.NOTE����error parsing %s��������error opening %s as input�������network access prohibited for: %s�������usage: passkey [options...] conference Options -m "Moderator" set the conference moderator -t "Title" set the conference title -n "Notice" set the conference notice -l list conference fields ��������g�������gpdu��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#���~P�^X�^`���cG#��GL�H�=D�]@�}<�8�� "�ݶ0�#(�=# � ���>�L�H�=D�]@�}<�8�4G@�BH�bbZk0�(�= �]pb#>@G4GBbhZk��cGP�]X�]`�p�#��/k#��~�^�GGGGG�=��,�HD�9#F ����9.�9J�9#B��F��y/�yK0�JD�9#��Y.�YJ�9#80D�`��,�H�9# �X0D�@��y.�yJ�9#��,�H H D�9#����7�55C���GG�]� �#k#��~�^ �GGGGG�} ��=C��/��G��y/pJ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������6�$������ NOTES026.A���������������������f� �[NOTES.TEMPKIT]PASSKEY.EXE;1.UID;1��������������������������������������������������������������������������������������������������$�������������������������,�"����� �������[�yKpG��y?�9#�G��.`YJT�JF��>�9#C���y/qK[�yKqG��y?�9#�GPF��.pYJT�JF��>�9#�K��y/`9J[�yK`G��y?�9#B�@��.uJT�JF��>�9#%��7"� 4G��.rYKP�JF��>�9#��.`JU�JF��>�9#�TG��Y/{JZ�YK[G��Y?�9#�F��.qHU�JF��>�9#J��y/sYJ[�yKsG��y?�9#���"G �]G(�VBZk �ViAZk�  C����GG�] �0�#k#��~�^�^ �~(�0�GGG�=0@4G(�B0�bFZkG�`��/���"G�]GBBZkBCAZk�d@��.W�J��>�GG�]�] �}(�0�@�#k#��~8�^@�G#��0�,�= ��G�]v@K`�H@G�],� �0��=!H`S�H D�= � ����GGG�}"GGG �[(�{��//AZk(�(���/��(���4GG8�]@�P�#k#��~�^ �^(�GG� �=�]�} �` ����"h�1"�]tGBb6QZk ���/ �� �"��! �b#�@���/�� �"��!�b#�@G�] �](�0�#��/k#��~ �^(�^0�GG��=�]��/�@���=" �BGGG@�BH�bZk�����=1v J(�BQB��r.S�rJ��r>� �"�1"(�BtG0�B8�bPZkG �](�]0�@�#kp#��~0�^8�^@�~H�P�X�޴`�h�p�>x�^�GG G G,�](�}GG�ݠ�@"�! $�=�B�Z#$�],�"x�1"$�]GGGG@b#z@"`�`���/��"�1",�]tGP�BX�bVZk�� @�"��Ab#i_ ~ �@ �"��"`�1Q""�1"tGBbPZk�G"`��"�?"BR"GGGG0b#@"�"��/��"��1@�B��R�"b#<_`��4GGb#c@ KG0"1G�"GB�R"@BAZk8B��/'@Zk¦֢ײ"9 C���"�! � @�="�]"�}"b#_G�GHb#_GG�=&DJ� �F:���='F)� �]GF��/�@ �@ �b��"1"GtGBb=PZk��/ � G" 1"TGBb��/zZk��G4�4G2�1�@ �"���]"01"GGBb#PZk&� �@ ����"�1"GtGBb��/PZk��4G� �@ ����"�1"GtGBb PZk �4G � �@ ����"�1"GtGBbOZk4GG4G`�Bh�bDZk��=�� @���@"BR�=�}C�"C�R"@B(AZk8BZk�ݢ�Bز�="!�9@ iØ�@(��(�4GBb��/yZk��G����"1B�R"�QB�]G�}"(�b#_�=��� @���B"��G4GBb[Zk��G����/��"1B�R"�QB�]G�}"Gb#~_�=��� @���B"�G4GBb<Zk��G����"1B�R"�QB�]G�}"Gb#`_�=��� @���B"�G4GBb��/Zk��G����"1B�R"�QB�]G�}"Gb#A_�=��� @���B"B2b`�S�"tGGb#@�� ��"��!@���PH"b#_`��4GGb#@ �"`�4GGb#@�GG0�]8�]@�}H�P�X�ݤ`�h�p�=x�]��#k`#��~ �^(�^0�~8�@�H�޴P�X�`�>h�^p�~x���޵��G#��G GG�]GGGGGG �"4GBbMHZk"T�h"4GBbEHZk"P�P�P"T�q"(�1"GBb��/KTZk4GBb~ZkG"Hb#;_"X�X�Р�""H�1"b#[_T��"0�1"P�BX�b}Zk�@"H�!#H0 D �D�� �x"GGb#x_G4G0�B8�b"eZk G 4G�4G A��/N��M�A��!��.�J%D��/� M�A��1��Q.�QJ%F��/� �G4GBbO~Zk��G��M�A��/� G-�M�A���"0.Q0J'J F#�@ F�` F �F ��0A A�M�A��� G� G�0A A�M�A�� � G �0A A� M�A��ڠ� G� 4G0A��/�`�G4GBb~Zk��G ���G4GBb��/~Zk��G��/ �� "��"(1"TG@�BH�bKNZkG4G0�B8�bdZk3�` 4G�]G4GBb^Zk� GX��"4GBbSZk"1"Gbs"GGG�B�bSZk4GBb��/}ZkG"Hb#x_G GG4GBb��/}Zk 1�@��@A�� ,A� H�� <G"8�1"TGp�Bx�baZkC���G"1"GGGGGG0b#�@d� Bd�J��/�@"1"GtGPBXbOSZk��-@B��Jb#_G4G0�B8�bGdZkd���/�Bd� 4GGb#@G����G"@�1"TGBb&xZk'����~G�=GGGG�b#_�)�G4G`Bhb]BZkB��J�%ʂ! ME�@"1"GtGPBXbSZk��-@B��Jb#\_ �"�1"GtGPBXbRZkGGb#N_d��Bd� 4GGb#��/q@��G4G`Bhb)BZkG4G0�B8�b��/cZk�4GG �](�]0�}8�@�H�ݤP�X�`�=h�]p�}x���ݥ���#k������������#��~(�^0�^8�~@�H�P�޴X�GG��=GG ��@�"��@�B��ZH�b��["4GBb��/CBZkG��GGh�"��!GG��a�H�_"��q2AB�a�! ��1"���/_��q��,�G�����4G0�B8�b|Zk��G�=4�6�J�D�F4��=0�$G �}���/��4G0�B8�b|Zk��G �=4�V�J`1�H�F4� �]�dV`Jr1@JrF�d`��ĢJuqJF�IJ��$ KxQ�K8G�$�d`K�d��/��� G4G0�B8�b��/|Zk#1�@>�`�@�! .PJJ,D%� ,D��/�@.D �`.D)� �4JJF�ĢJtQJF�IJ��7JJ4F�$ KwQJ7G�$��D:EKGKT@G���HzQ@K�D� ��0JJ�F�D@JpQ�JPF�D#1`@G4GBbUAZk�G��J��"� G4G0�B8�b��/U|Zk#1�@]�`�@�! .PJJ1,@7"BN� !,@\<@�B��C�k�d3dJgJT`F�Jsq`JF�;��Ģ6JJ4F�KvqJG�1��$9$K'K G�daKyq KyG�d'�� HH�D�$!J`q�H F�$��$!$H'H(D�daJaq HaF�d��4JJF�ĢJtqJF�IJ ��7JJF�$!KwqJ7G�$#1`@G4GBb@Zk�GD�`�"��AP�"GX�B~|Zk�¦��֢G�#G���6X�?#��9!C��"�8�#�6?���8�$�_&2F�$�d"�d�"GP�B{Zk��$F�$ �$"GP�B{Zk�#(�G4GBb��/{Zk ���$H���0 �$@�B��2G4GBb@Zk�G��GG(�]0�]8�}@�H�P�ݤX�`�#k#��~ �^(�^0�~8�GG��=�]�} ��G4GBb@ZkG�` *� �"��A��"G B|Zk�ݢ�JvQJF��=��Hyq K�D��]�Jbq@HF� �]�caJrS@JrF�c�],�c`KzQ@KzG,�c�$���$�w�GG �](�]0�}8�@�#k#��~�^�^ �~(�0�GGG �=B�����"��(�B��Z#�C�] �}�` ���"�C� �=X F��/� ��?$�D�G�4G#0�B8�b��/yZk��P�"4GP�BX�bzZk��/��X�$��0\�$B��2G4G@�BH�b��/zZk��"�� �"��$�d�`�c$�dG4G@BHb@ZkØ�����G4G@BHbZk�G��GG�]�] �}(�0�@�#k#��~ �^(�^0�~8�G#��G��=�]�} �����=�]�}GGb#_G�`�G� �=� G �4G#BbByZk�GGb#s_G �](�]0�}8�@�#k#��~�^�^�~ �GGG��#1$J&J� G4G �B(�b��/WzZk���#��0 �#B��2 �G4GpBxbZk�GG�]�]�} �0�#k#��~�^�^�~ �GGGP�"4G �B(�bOzZk��X�#��0\�#B��2 ��GG�]�]�} �0�#k#��~�^�^ �~(�GG ��=G �}t�c�ݢp�vJvJFp�l�# Kl�#P�"4G�BbyZk��X�#��0\�#B��2 �p� HHG�]�] �}(�0�#��/k#��~�^�^�~ �GGGl�C@Jl�CP�"4GBbyZk��X�#8��0\�#0B��2 ��GG�]�]�} �0�#k#��~�^�^ �~(�GG ��=G �}x�c�ݢp�JvSJFp�P�"4GpBxbyZk��/��X�#X��0\�#PB��2 ��GG�]�] �}(�0�#k#��~�^�^ �~(�GG ��=G �}x�c�ݢp�JvSJFp�P�"4G0�B8�byZk��X�#��0\�#B��2 ��GG�]�] �}(�0�#k#��~�^�^�~ �GGGP�"4G �B(�b��/GyZk��X�#��0\�#B��2 ��GG�]�]�} �0�#k#��~�^�^�~ �GGGP�"4G(�B0�b��//yZk��X�#���0\�#B��2 ��GG�]�]�} �0�#k#��~�^�^�~ �GGGP�"4GBb��/[yZk��X�# ��0\�#B��2 ��GG�]�]�} �0�#k#��~ �^(�^0�~8�GG��=�] �}�G�ݢt�ò�=p��v�Hy K�Dp��=�# ��#6 JF0F�#�}�VJs1`JF�4Gl�JuQJFl�P�"4G0B8bxZk��X�#H��0\�#@B��2 �p� HHG �](�]0�}8�@�#��/k#��~�^��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������.dJ�$������ NOTES026.A���������������������f� �"[NOTES.TEMPKIT]PASSK^I6$BLWJQD0[X7v 1����������������������������������������������������������������������������������������������������������������������@�4�����������N@4Rg0n{&W@S+8D_F�Lp8Y'#,XXW>w? /b=! hQudxrvt~Sc| ؼW(0ϋ{> +`v3pRœ2G#uL=voYAڷ<@C:H,;[%L5 3q^$ %[/�1|S4Q؍lyğbA1!ifW\>!, I}J+SӘrB4o#A&D4|5_Sng"ǵ:ӝ˜Oy N@RwGZTFKJCq�J<H4EmT d ˾W]lzzVvm&Slyen{*jdu*u]_?Y7r\iHEjٟcTM'ƙ<22k*TBD7𴤚n[%ER�E. CVI**ٟPt__3=,g-˩A1G*ss'ף ϰB33 ekKc!,pQh�'W>5.VHFV# 41#7P#5N%B+pUB|2.7A'eԈLV>",b+$ĺy)yg(,hЂK@ɩ ͎z�#z|g5hf wq 8/~C!KXi%h Yrlک=nP࢈I7 {?;I2Z욽 K9Ѳ0Wlm! 'w312+pgCF|q!suRuY- ?꼱s2,: /Pڃ=-dWr9=t_ˆ>?.YnZ_LL}y|ZnM9T^-azsO 7ԛ9okicםxy�Rp/.vVi/'AˣFdߪuVg#f&cD$SZq{0rP@09o6b6ǿ w |7'a =;SD2pσݏjh{k:ٺsfW4wC )r#cjat\p䭲gfzT9$mW5H9cwFmN8~?"@i'iS&v}O.}`8n Eڒpİ4M yLxlݯ臟1Kf,1T'ub2.bv eF=4~.Q(^M_#HOj})?1+NZx%f4_NbE&.墩C8q 7r�̴}S d7<yKH&\z̴mys;� |v0U2YbB6q9BW~ Tyێkaҁ#: gPiX�pEF֍͒y=mdQI(<'bQb(Flbt81z킙!xVi~eU aʭ(oV<Xq̒e=z i;ә s؍{%}^gۿщ -hE1?Ī^YS�Д7l·^& !֦#Rm6+JP&\uF?etC9PWɣTWl+ЃS@-u0qVdU%Pp6b>hA8@uIJuv#|tLS]TPϗD廰g~u xbT=7.s/,רnDHi.8Ah@$Z$e>fRnY4L&.tx *xZF;/b >⪝Zn[Ov߿k$'OvAiu?D`0?&b?g#~Sp3 7Xh?@l\7E b:^A`%bҰ)jÀ V_#c^鉎㊳$;Z\.ĖM&YLcUpw o`}#تEv"v%/bTq.#Kw}20ZwOdI M [G~r,Y@divg{v|Nxy _j!*h?�B+ ݳ/L�|}j-ړH\+ g_/V.V1'/y*<U$ ٶ�PS.})JPݝi1NSZ;h%Ͳ Q?Bm*xh).E ]ʈNEjpcnp(s4x GY }a0l Fn0zvkυfǡڍ=կKxE٢_R&['ZAi7 p{W nQhif ԢLUwKݛnT3G]C8vS=79s̀e&+}}5X/DŗeJlPBsO̮ =L\s 0h{IFRJm +<&5pij'xiחqB&K l*&F}u2g`l+1GVM&r 3LdhTxFB/3M؇~[ < �g|.pLe#Ě/Vin`h n̆*^S:oлގOMۡ|V]cXܽ"A3il7;^}zuUn-Ǻnb�jO ~︕Qvi?c Jfc禳)+{X{6qt3Qdd/1f465هйpY Nk7n ^)rNd?fn `*,uD3_L# bU_J(ܰm,ƪSNq2O*X1ӣūF^椅UKi;RvR7bmVE<7]yÒbow\A$M ΋^e1bۑ00@?H57B =s_kw 1آ5n Irr K#=L?)Qr<5Hϣh3zG[ҵl5]mU smD$)=#%tϙV{2G*f,Jk0?֠sʐy哯%z]60PCt$B!0!3\q53xL|/圿~CФ'"55,invd4!P<y;:8 Z&!Е&yzOuҧ6$?vZb ڙy k&*zpDYfVȀrR</""l*uJd<A ,Jv~]& ⣎^!x]Z@~<0*>Fwxmagؖ4%ـN<u(~ ~ b8 b(od23)xoNOgw|f%i6:h`xm~3 <9s>s JU0 7j4^@T Ω[ E(0ғkL\0F[AZ|0ȩ|*Pzg~⠆@^;?lSC"V "4$<G apٿƳGNVßBXщGs  mXy²<.exY@<;3~mZ&9)[zIY|y~yАW|w%I{\zG5tSklcvt=Nww&yV+=67:@#]&t:yv]?}ԺGz[Hx?*jܖy/dYɹr1>[t<xqkkkx鋼~-> E]zV"H(R<WpuHl&EP9=O5"TGa'\clU) @gr4*6 Gi�4/r>'C GCKulYAhvE8x32F QR<5Uz1J),R,+Il;e d>NǿZPbbz+x=oF_$�܃uXb{;\!jޏB7>#=Hlbn\`[ߩQ_g9kScү6kڥv 6:8* 4K8^Fd.=gϪ ΩÜ _5x{z3ãJec&lPCۻٚ~Fzo(qDžfxEĄV#&g}r amzÅG v;W/>+ȍ}ܩ|+\Jps@+2|4i_q ʗYvXehqtl<>xP 7 2pWy(,RȆB5Pβ*gAF~}o47v2mK_̖5D2%wP LAӖŶ:-̴:n cZKC-:+19GY(%6,V٣χ6A ;A_L&fUCi[n!X̂& 5Iۣ>5C; e, 88I3@>l I/ ӣNd=kŮK~J4�u<FZ>=LɜMKFx-o_$94&>}卓QP^d96QjG.!ŸOmxR~9Ў䥢EW4uYWU؛v=[P⪾>sZ(+bH')$3+;Y+JK%J d6a$~RZiP;ސih qH "./SO?c;E $X: e-M~ڡT~lg46FŎh|퉷_^iq/~°/8| <M2ks 5S_l$ء4dto,+i/E}߂6[9f4K+zOP7)7kWe]Ś~5mu3ګvc)a s绬R^УG*Vqs,{suҟv3{7e** :sm0v6㕶Fѩ|fR\ʭY HsDHA´PW)?:IrE|ؔ2Xbl÷)t,Ur]Ux?9 ؤq R sA@Ƿd�X^%8n3j]R&]f!*02GVeo҅80|sA|OZ#G2Vq!,ȅ&5L^36QOڻ ZcdZlI8 [s`ӂgh~} v @/1$o$BZy#9T .3g5=./1F5nE۝5l",Sr\EGv&QQ12g_7o~QCv*q,�Eq 짠(j'΃hՠ iӮ):×(y37ckCZߺBoje z@T8qTCx}6{R$w)TO:e>"&[x�)/1홳g[EytȢ^a/IsS)B'41#_8 P� 'Ӭv˒`Y8(!~;t94TMbSkp3nv*|= Ҟ6nfVi92 *pdgE+ ^ W綵4�i(_\|-rA![8k?^G<&xJrY菤Q; sMomH!Y9 &a4d8m_vD ?&jٰ%za&<"C\[n�32%' ڠBDWu]7_ yr"c'Z@r;pn`8n#\Y�<Gby7cCV3$ٯu¥8d5Vst/Xyeb4j^/Q=ҐpvۉX1ϗStLߒʓ/Y<\)ڕ=y+C m aڜQJ;t&MM*B urs"c%7~vRWjT;E^BEB@ XFHDž*>|CU7zN8}KOGZTl9~I()o8eFXif�j DSQ~X*o9RxH CT64_Aw$].x?F_5%i'}kJ"J*DQQm3.'`><@@NOЃuYroF*F7FG?<Oܴ|h@KǶEkܝ莋}tK)9#qey^hhH\c;L59!7B=32+YlxҞlR `o W:PsL'dC4&.ws h=1e^Ռ<R!FDC`E:}#2}bc\_ xTTT2*7 N+8[\IiCwvzJ? T7bqP/-ahF*o"_!|c}4=$mN?)^4ݱPGBP58K>Xq;be3LEc j%vk ѱ%5So?<~%+פIz<o"Ìcl/QmKye9N[/ԝ>xk2[hA,z 9:f~cNQ2s+?$*i|O:/~]! :?^(dVޙu]/B_ֈ@5aWJBDZ*Z0#s>t@qʱlYvLU!=Y֥2)|�&}Wp 7L!/,?�yY#q҆RrO@9Ȝܢic( 8�2g&7 BjUG4nƘlruk}\-TA wyvq4r@N c 'N3 yfiNmu ` X:BFtQ'h\(iGyw](DD5~�ܯ�Pc\[|!ûimbh,, o':?S%VPesP1ԇdD.C.ͰsmT?\cQ}qc n NG8?إh?6It9|gs,uR<tpN FNku%&4 >Wt Mdjl<ԅ_B)NrSs>HzW yeZ d ݖX *c֑$�l5&>Gna50T,IV ɧ%1mPw_V$Jq#f\I湝_/pPXPڝ=3 ۖI ^`m1I෱cm8l 0O;DRE(Dٙ>ʨҸy";aiW,۴MKs "D3LVEY~t']l339 8�1MFG~`nfX SMq "!R� m9љViJS' x!%ځ@ hĢ=Y =ݦ*94C,.�1ΉRccӭ[ch^%ID[ |3Tԃ%aNO';$#)gNv-ZN9GxMD\L})_BjbsladVXGOf;_*={'WQjeU N-O| k=L"5&#y}9?uSi<Zm))Fkז;ql(;`XLB5;~U8.?fOÁ^Ntp}V-{3ͮl'ڸi<\ւV14 uiGDmj4q۷}}Fhno=:c%X|( |M?cVLj)1s]c2y9aLCmĴq6TW]t ܜyiL @ʄx <`W@FP=Pu\s(#st9qZOoKyS`{ەNtj(a=N\Ei_ObFm\6.م.^ˡ"܇,4ŲMq* T562-B9-X$l�nfE")��$ IF NOTES$TEMP .NES. ""������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������$������ NOTES026.A���������������������f� �[NOTES.TEMPKIT]PASSKEY.EXE;1.UID;1��������������������������������������������������������������������������������������������������$�������������������������� ������������ �^(�~0�GG� �=�]G�� ��6�KFG���#V H`1�H D�#4Gl��JzQ@KFl�P�"4GBbxZk��X�#h��0\�#`B��2 ��GG�] �](�}0�@�#k#��~�^�^ �~(�GG�G�}�VJs1`JF�P�"4G �B(�b��/xZk��X�#��0\�#B��2 ��GG�]�] �}(�0�#k#��~�^ �^(�~0�GG��=�]G�t��p�v�KwJGp��=#�#�C_G@G�C4Gl�# J{Q`K;Fl�#P�"4GBb=xZk��/��X�#��0\�#B��2 �p� HHG�] �](�}0�@�#k#��~�^�^ �~(�GG�G�]"�C�FF�4Gl��KvQJGl�P�"4GBbxZk��X�#��0\�#B��2 ��GG�]�] �}(�0�#k#��~�^ �^(�~0�GG��=�]G�x��p�KwSJGp��=#�#�C_G@G�C4Gl�# J{Q`K;Fl�#P�"4G �B(�b��/wZk��X�#��0\�#�B��2 ��GG�] �](�}0�@�#k#��~�^ �^(�~0�GG� �=�]G�t� �p�v�KwJGp��=��9`�#�=�!d�cv`Ka HaGd�cTGl�C@JpQ�JPFl�CP�"4G0�B8�bwZk��/��X�#H��0\�#@B��2 �p� HHG�] �](�}0�@�#k#��~�^�^ �~(�GG�G�]��R`�C��d�âvJtJFd�òTGl�# KwQJ7Gl�#P�"4G �B(�bbwZk��X�#x��0\�#pB��2 ��GG�]�] �}(�0�#kGGGG`���d��v�KvJG��GGk#��~�^�^�~ �(�0�GGG"��B��Rb��SG4G0�B8�b��/wZk���%��0 �%B��2�G�Ô�e#dHgH0`@4G`Bhb|ZkG��/ ��E��"GG(�B.yZkBwZk�@��/X�K��?�GG�]�]�} �(�0�@�#k��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������T���������������X����������������������������������������������p����������� :��P��`����p����P������������`��`��h�����������������������������(���������������������p��������0�����������P��������0��@��P������������0��`������������@������@��0��������`�����0��p�����0��������������������������� ������������ �������������������������@�������LIBOTS�������������������������������������������������@�������LIBRTL�������������������������������������������������@�������DECC$SHR�����������������������������������������������@�������SYS$PUBLIC_VECTORS������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������͋�$������ NOTES026.A���������������������f� �[NOTES.TEMPKIT]PASSKEY.EXE;1.UID;1��������������������������������������������������������������������������������������������������$�������������������������� ������������ �^(�~0�GG� �=�]G�� ��6�KFG���#V H`1�H D�#4Gl��JzQ@KFl�P�"4GBbxZk��X�#h��0\�#`B��2 ��GG�] �](�}0�@�#k#��~�^�^ �~(�GG�G�}�VJs1`JF�P�"4G �B(�b��/xZk��X�#��0\�#B��2 ��GG�]�] �}(�0�#k#��~�^ �^(�~0�GG��=�]G�t��p�v�KwJGp��=#�#�C_G@G�C4Gl�# J{Q`K;Fl�#P�"4GBb=xZk��/��X�#��0\�#B��2 �p� HHG�] �](�}0�@�#k#��~�^�^ �~(�GG�G�]"�C�FF�4Gl��KvQJGl�P�"4GBbxZk��X�#��0\�#B��2 ��GG�]�] �}(�0�#k#��~�^ �^(�~0�GG��=�]G�x��p�KwSJGp��=#�#�C_G@G�C4Gl�# J{Q`K;Fl�#P�"4G �B(�b��/wZk��X�#��0\�#�B��2 ��GG�] �](�}0�@�#k#��~�^ �^(�~0�GG� �=�]G�t� �p�v�KwJGp��=��9`�#�=�!d�cv`Ka HaGd�cTGl�C@JpQ�JPFl�CP�"4G0�B8�bwZk��/��X�#H��0\�#@B��2 �p� HHG�] �](�}0�@�#k#��~�^�^ �~(�GG�G�]��R`�C��d�âvJtJFd�òTGl�# KwQJ7Gl�#P�"4G �B(�bbwZk��X�#x��0\�#pB��2 ��GG�]�] �}(�0�#kGGGG`���d��v�KvJG��GGk#��~�^�^�~ �(�0�GGG"��B��Rb��SG4G0�B8�b��/wZk���%��0 �%B��2�G�Ô�e#dHgH0`@4G`Bhb|ZkG��/ ��E��"GG(�B.yZkBwZk�@��/X�K��?�GG�]�]�} �(�0�@�#k��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������T���������������X����������������������������������������������p����������� :��P��`����p����P������������`��`��h�����������������������������(���������������������p��������0�����������P��������0��@��P������������0��`������������@������@��0��������`�����0��p�����0��������������������������� ������������ �������������������������@�������LIBOTS�������������������������������������������������@�������LIBRTL�������������������������������������������������@�������DECC$SHR�����������������������������������������������@�������SYS$PUBLIC_VECTORS���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������