summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
Diffstat (limited to 'share')
-rw-r--r--share/man/man4/man4.i386/pnp.4179
-rw-r--r--share/man/man4/man4.i386/sb.473
-rw-r--r--share/man/man8/diskless.8331
-rw-r--r--share/skel/dot.login_conf7
-rw-r--r--share/skel/dot.mail_aliases13
-rw-r--r--share/skel/dot.shrc43
-rw-r--r--share/syscons/fonts/iso02-8x14.fnt83
-rw-r--r--share/syscons/fonts/iso02-8x16.fnt95
-rw-r--r--share/syscons/fonts/iso02-8x8.fnt49
9 files changed, 0 insertions, 873 deletions
diff --git a/share/man/man4/man4.i386/pnp.4 b/share/man/man4/man4.i386/pnp.4
deleted file mode 100644
index e1bd71b9167ca..0000000000000
--- a/share/man/man4/man4.i386/pnp.4
+++ /dev/null
@@ -1,179 +0,0 @@
-.\" pnp(4) - manual page for the scanner device driver `asc'
-.\"
-.\"
-.\" Copyright (c) 1997 Luigi Rizzo
-.\"
-.\" Redistribution and use in source and binary forms, with or without
-.\" modification, are permitted provided that the following conditions
-.\" are met:
-.\" 1. Redistributions of source code must retain the above copyright
-.\" notice, this list of conditions and the following disclaimer.
-.\" 2. Redistributions in binary form must reproduce the above copyright
-.\" notice, this list of conditions and the following disclaimer in the
-.\" documentation and/or other materials provided with the distribution.
-.\" 3. All advertising materials mentioning features or use of this software
-.\" must display the following acknowledgements:
-.\" This product includes software developed by Luigi Rizzo.
-.\" 4. The name of the author may not be used to endorse or promote products
-.\" derived from this software without specific prior written permission.
-.\"
-.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
-.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
-.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
-.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-.\"
-.\" $Id$
-.\"
-.Dd September 7, 1997
-.Dt PNP 4 i386
-.Os FreeBSD
-.Sh NAME
-.Nm pnp
-.Nd support for PnP devices
-.Sh SYNOPSIS
-.Cd controller pnp0
-.Sh DESCRIPTION
-Support for PnP devices in FreeBSD allows the user to override the
-configuration of PnP cards, and device drivers to fetch/modify
-parameters in the card's configuration space.
-.Pp
-The manual override mechanism requires the kernel to be compiled with
-.Cd options USERCONFIG.
-In this case, the kernel keeps a table of fixed size (20 entries as a
-default) where configuration data are held for PnP devices. Each
-PnP card can contain several independent devices (5 or 6 is not
-unusual).
-.Pp
-By booting the kernel with the
-.Dq Fl c
-flag, commands are available to
-modify the configuration of PnP cards. Commands start with the
-sequence:
-.Dl pnp CSN LDN
-where CSN and LDN are the Card Select Number and Logical Device Number
-associated to the device. Following this sequence any combination of
-the following commands can be used:
-
-.Bl -tag -width "mmmmmmmmmm""
-.It Dv irqN line
-Sets the irq line for interrupt 0 or 1 on the card. Line=0 means the line
-is unused.
-.It Dv drqN n
-Sets the drq channel used for DMA 0 or 1 on the card. Channel=4 means
-the channel is unused.
-.It Dv portN address
-Sets the base address for the N-th port's range (N=0..7). address=0
-means that the port is not used.
-.It Dv memN address
-Sets the base address for the N-th memory's range (N=0..3). address=0
-means that the memory range is not used.
-.It Dv bios
-Makes the PnP device use the configuration set by the BIOS. This
-is the default, and is generally ok if your BIOS has PnP support.
-If BIOS is used, then other parameters are ignored except "flags".
-.It Dv os
-Makes the PnP device to use the configuration specified in this entry.
-.It Dv enable
-Enables the PnP device.
-.It Dv disable
-Disables the PnP device.
-.It Dv delete
-Frees the entry used for the device, so that it can be used for
-another device with a different CSN/LDN pair.
-.It Dv flags
-Sets the value of a 32-bit flags entry which is passed to the device
-driver. This can be used to set special operation modes (e.g. SB vs. WSS
-emulation on some sound cards, etc.).
-.El
-.Pp
-The current content of the table can be printed using the
-.Ic ls
-command in userconfig. In addition to modifications done by the user,
-the table contains an entry for
-all logical devices accessed by a PnP device driver.
-.Pp
-Modifications to
-the table will be saved to the boot image on the filesystem by the
-.Xr dset 8
-command.
-.Pp
-.Sh DEVICE DRIVER SUPPORT FOR PnP
-PnP devices are automatically recognized and configured by the kernel.
-A PnP device is identified by the following data structure:
-.Bd -literal
-struct pnp_device {
- char *pd_name;
- char *(*pd_probe ) (u_long csn, u_long vendor_id);
- void (*pd_attach ) (u_long csn, u_long vend_id, char * name,
- struct isa_device *dev);
- u_long *pd_count;
- u_int *imask;
- struct isa_device dev;
-};
-.Ed
-.Pp
-The probe routine must check that the vendor_id passed is a
-recognized one, that any necessary devices on the card are enabled,
-and returns a NULL value in case of failure or a non-NULL value
-(generally a pointer to the device name) unpon success. In the probe
-routine, the function
-.Fn read_pnp_parms
-can be used to check that the logical devices are enabled.
-.Pp
-The attach routine should do all the necessary initialization, enable
-the PnP card to ISA accesses, fetch the configuration, and call the ISA
-driver for the device.
-.Pp
-The following routines and data structures can be used:
-.Bl -tag -width "xxxxxxxxxx"
-.It Dv struct pnp_cinfo
-This data structure (defined in /sys/i386/isa/pnp.h) contains all
-informations related to a PnP logical device.
-.It Fn read_pnp_parms "struct pnp_cinfo *d" "int ldn"
-This function returns the configuration of the requested
-logical device. It is not possible to specify a CSN since this function
-is only meant to be used during probe and attach routines
-.It Fn write_pnp_parms "struct pnp_cinfo *d" "int ldn"
-This function sets the parameters of the requested logical device. At
-the same time, it updates the entry in the kernel override table.
-Device drivers in general should
-.Em not
-modify the configuration of a device, since either the BIOS or the user
-(through userconfig) should know better what to do. In particular,
-device driver
-.Em should not enable
-a logical device which has
-been found disabled,
-since this would defeat the override mechanism in userconfig.
-Device
-drivers may disable a logical device, or a port range, etc, but should
-do so only that particular device or parameter is known to cause
-troubles.
-.It Fn enable_pnp_card void
-This function
-.Em must
-be used in the attach routine
-.Em only ,
-before accessing the card's ISA ports/memory address ranges.
-.El
-.Pp
-.Sh SEE ALSO
-.Xr dset 8
-.Sh BUGS
-There is no support for visual configuration of PnP devices.
-It would be nice to have commands in userconfig to fetch the
-configuration of PnP devices.
-.Sh AUTHOR
-PnP support was written by Luigi Rizzo, based on initial work done by
-Sujal Patel.
-.Sh HISTORY
-The
-.Nm
-driver first appeared in
-.Fx 2.2.5 .
diff --git a/share/man/man4/man4.i386/sb.4 b/share/man/man4/man4.i386/sb.4
deleted file mode 100644
index e6cda477118f5..0000000000000
--- a/share/man/man4/man4.i386/sb.4
+++ /dev/null
@@ -1,73 +0,0 @@
-.\" Man page for the SoundBlaster driver
-.\"
-.\" Copyright (c) 1997, Alex Zepeda.
-.\"
-.\" This documentation is public domain, and is provided without warranty.
-.\" Alex Zepeda, the "author" of this page is not resposible for any
-.\" consequences of any sort of manipulation of this document.
-.\"
-.\" SoundBlaster and any phrases including it's name are copyright
-.\" Creative Labs, not me.
-.\"
-.\" alex!@bigfoot.com
-.\"
-.Dd August 9, 1997
-.Dt SB 4 i386
-.Os FreeBSD
-.Sh NAME
-.Nm sb
-.Nd Creative Labs Sound Blaster and compatable device driver
-.Sh SYNOPSIS
-For all sound cards supported with the sb driver this is needed:
-.Cd controller snd0
-.Pp
-For the SoundBlaster, SB Pro, SoundBlaster16, or the Pro Audio Spectrum
- (emulating SB):
-.Cd "device sb0 at isa? port 0x220 irq 7 drq 1 vector sbintr"
-.Pp
-For specific SB16 support:
-.Cd "device sbxvi0 at isa? drq 5"
-.Pp
-For SoundBlaster 16 16 bit MIDI support:
-.Cd "device sbmidi0 at isa? port 0x300"
-.Pp
-To add Jazz16 suport:
-.Cd "options JAZZ16"
-.Pp
-To add support for the Logitech SoundMan Games:
-.Cd "options SM_GAMES"
-.Pp
-To add SG NX Pro mixer support:
-.Cd "options __SGNXPRO__"
-.Pp
-The OPL-2/3 is used in the SoundBlaster, SoundBlaster Pro, SB 16, and the
-Pro Audio Spectrum. For Yamaha OPL-2/OPL-3 FM support:
-.Cd "device opl0 at isa? port 0x388"
-.Sh DESCRIPTION
-This driver covers the SoundBlaster family of cards including the
-SoundBlaster 1.0 to the SoundBlaster 16/SoundBlaster 32. The awe driver
-provides AWE32/64 functionality. This driver is provied in FreeBSD
-versions 2.0-current through 3.0-current. You can also configure more
-then one card on a single DMA using the conflicts keyword in your
-configuration file. This is useful for boards with more then one type of
-emulation.
-.Sh BUGS
-Since the SB16 uses the same IRQ and addresses for
-the different drivers, some of the snd drivers will not be probed because
-the kernel thinks there is a conflict. This can be worked-around by
-using the "conflicts" keyword on the sb16's device line.
-.Pp
-Current version doesn't support mode changes without closing and reopening
-the device. Support for this feature may be implemented in a future
-version of this driver.
-.Sh SEE ALSO
-cdcontrol(1), cdplay(1), mixer(8)
-.Sh AUTHORS
-The original SoundBlaster DSP and SoundBlaster 16 MIDI, and Yamaha OPL-3
-drivers were written by Hannu Savolainen. The SoundBlaster 16 DSP code
-was written by J. Schuber (jsb@sth.ruhr-uni-bochum.de). Improvments to
-the OPL-3 drivers were made by Rob Hooft (hooft@chem.ruu.nl)
-.Sh HISTORY
-Sound Galaxy NX Pro support added by Hunyue Yau (Jan 6 1994). MV
-ProSonic/Jazz 16 16bit support added by JRA Gibson (April 1995). Audio
-Excel DSP 16 support added by Riccardo Facchetti (March 24 1995).
diff --git a/share/man/man8/diskless.8 b/share/man/man8/diskless.8
deleted file mode 100644
index 582e9a20bd096..0000000000000
--- a/share/man/man8/diskless.8
+++ /dev/null
@@ -1,331 +0,0 @@
-.\" $NetBSD: diskless.8,v 1.11 1997/06/16 07:50:35 mrg Exp $
-.\"
-.\" Copyright (c) 1994 Gordon W. Ross, Theo de Raadt
-.\" All rights reserved.
-.\"
-.\" Redistribution and use in source and binary forms, with or without
-.\" modification, are permitted provided that the following conditions
-.\" are met:
-.\" 1. Redistributions of source code must retain the above copyright
-.\" notice, this list of conditions and the following disclaimer.
-.\" 2. Redistributions in binary form must reproduce the above copyright
-.\" notice, this list of conditions and the following disclaimer in the
-.\" documentation and/or other materials provided with the distribution.
-.\" 3. The name of the author may not be used to endorse or promote products
-.\" derived from this software without specific prior written permission.
-.\"
-.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
-.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
-.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
-.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-.\"
-.Dd October 2, 1994
-.Dt DISKLESS 8
-.Os
-.Sh NAME
-.Nm diskless
-.Nd booting a system over the network
-.Sh DESCRIPTION
-The ability to boot a machine over the network is useful for
-.Xr diskless
-or
-.Xr dataless
-machines, or as a temporary measure while repairing or
-re-installing filesystems on a local disk.
-This file provides a general description of the interactions between
-a client and its server when a client is booting over the network.
-The general description is followed by specific instructions for
-configuring a server for diskless Sun clients.
-.Pp
-.Sh OPERATION
-When booting a system over the network, there are three
-phases of interaction between client and server:
-.Pp
-.Bl -tag -width 1.2 -compact
-.It 1.
-The PROM (or stage-1 bootstrap) loads a boot program.
-.It 2.
-The boot program loads a kernel.
-.It 3.
-The kernel does NFS mounts for root.
-.El
-.Pp
-Each of these phases are described in further detail below.
-.Pp
-In phase 1, the PROM loads a boot program. PROM designs
-vary widely, so this phase is inherently machine-specific.
-Sun machines use
-.Tn RARP
-to determine the client's
-.Tn IP
-address and then use
-.Tn TFTP
-to download a boot program from whoever sent the
-.Tn RARP
-reply. HP 300-series machines use the
-.Tn HP Remote Maintenance Protocol
-to download a boot program.
-Typical personal computers may load a
-network boot program either from diskette or
-using a special PROM on the network card.
-.Pp
-In phase 2, the boot program loads a kernel. Operation in
-this phase depends on the design of the boot program.
-(The design described here is the one used by Sun and NetBSD/hp300.)
-The boot program:
-.Pp
-.Bl -tag -width 2.2 -compact
-.It 2.1
-gets the client IP address using
-.Tn RARP .
-.It 2.2
-gets the client name and server
-.Tn IP
-address by broadcasting an
-.Tn RPC / BOOTPARAMS / WHOAMI
-request with the client IP address.
-.It 2.3
-gets the server path for this client's
-root using an
-.Tn RPC / BOOTPARAMS / GETFILE
-request with the client name.
-.It 2.4
-gets the root file handle by calling
-.Xr mountd 8
-with the server path for the client root.
-.It 2.5
-gets the kernel file handle by calling
-.Tn NFS
-lookup on the root file handle.
-.It 2.6
-loads the kernel using
-.Tn NFS
-read calls on the kernel file handle.
-.It 2.7
-transfers control to the kernel entry point.
-.El
-.Pp
-In phase 3, the kernel does NFS mounts for root.
-The kernel repeats much of the work done by the boot program
-because there is no standard way for the boot program to pass
-the information it gathered on to the kernel.
-The procedure used by the kernel is as follows:
-.Pp
-.Bl -tag -width 2.2 -compact
-.It 3.1
-The kernel finds a boot server using the same procedure
-as described in steps 2.1 and 2.2 above.
-.It 3.2
-The kernel gets the
-.Tn NFS
-file handle for root using the same procedure
-as described in steps 2.3 through 2.5 above.
-.It 3.3
-The kernel calls the
-.Tn NFS
-getattr function to get the last-modified time of the root
-directory, and uses it to check the system clock.
-.El
-.Sh CONFIGURATION
-Before a client can boot over the network,
-its server must be configured correctly.
-This example will demonstrate how a Sun client
-might be configured -- other clients should be similar.
-.Pp
-Assuming the client's hostname is to be
-"myclient",
-.Pp
-.Bl -tag -width 2.1 -compact
-.It 1.
-Add an entry to
-.Pa /etc/ethers
-corresponding to the client's ethernet address:
-.Bd -literal -offset indent -compact
-8:0:20:7:c5:c7 myclient
-.Ed
-This will be used by
-.Xr rarpd 8 .
-.Pp
-.It 2.
-Assign an IP address for myclient in your
-.Pa /etc/hosts
-or DNS database:
-.Bd -literal -offset indent -compact
-192.197.96.12 myclient
-.Ed
-.Pp
-.It 3.
-If booting a Sun machine, ensure that
-.Pa /etc/inetd.conf
-is configured to run
-.Xr tftpd 8
-in the directory
-.Pa /tftpboot .
-.Pp
-If booting an HP 300-series machine, ensure that
-.Pa /etc/rbootd.conf
-is configured properly to transfer the boot program to the client.
-An entry might look like this:
-.Bd -literal -offset indent -compact
-08:00:09:01:23:E6 SYS_UBOOT # myclient
-.Ed
-.Pp
-See the
-.Xr rbootd 8
-manual page for more information.
-.Pp
-.It 4.
-If booting a SPARC machine, install a copy of the appropriate diskless boot
-loader (such as
-.Pa /usr/mdec/boot )
-in the
-.Pa /tftpboot
-directory.
-Make a link such that the boot program is
-accessible by a file name composed of the client's IP address
-in HEX, a dot, and the architecture name (all upper case).
-For example:
-.Bd -literal -offset indent -compact
-# cd /tftpboot
-# ln -s boot C0C5600C.SUN4
-.Ed
-.Pp
-For a Sun3 machine, the name would be just C0C5600C
-(the sun3 PROM does not append the architecture name). The name
-used is architecture dependent, it simply has to match what the
-booting client's PROM wishes to it to be.
-If the client's PROM fails to fetch the expected file,
-.Xr tcpdump 8
-can be used to discover which filename the client is trying to read.
-.Pp
-If booting an HP 300-series machine, ensure that the network boot program
-.Pa SYS_UBOOT
-(which may be called
-.Pa uboot.lif
-before installation)
-is installed in the directory
-.Pa /usr/mdec/rbootd .
-
-.It 5.
-Add myclient to the bootparams database
-.Pa /etc/bootparams :
-.Bd -literal -offset indent -compact
-myclient root=server:/export/myclient/root
-.Ed
-.Pp
-.It 6.
-Build the swap file for myclient:
-.Bd -literal -offset indent -compact
-# mkdir /export/myclient
-# cd /export/myclient
-# dd if=/dev/zero of=swap bs=16k count=1024
-.Ed
-This creates a 16 Megabyte swap file.
-.Pp
-.It 7.
-Populate myclient's
-.Pa /
-filesystem on the server. How this is done depends on the
-client architecture and the version of the NetBSD distribution.
-It can be as simple as copying and modifying the server's root
-filesystem, or perhaps you need to get those files out of the
-standard binary distribution.
-.Pp
-Note that, unlike SunOS, you need to create a mount point for the
-client's swap:
-.Bd -literal -offset indent -compact
-# mkdir /export/myclient/root/swap
-.Ed
-.Pp
-.It 8.
-Export the required filesystems in
-.Pa /etc/exports :
-.Bd -literal -offset indent -compact
-/usr -ro myclient
-# for SunOS:
-# /export/myclient -rw=myclient,root=myclient
-# for NetBSD:
-/export/myclient -maproot=root -alldirs myclient
-.Ed
-.Pp
-If the server and client are of the same architecture, then the client
-can share the server's
-.Pa /usr
-filesystem (as is done above).
-If not, you must build a properly fleshed out
-.Pa /usr
-partition for the client in some other place.
-.Pp
-If your server was a sparc, and your client a sun3,
-you might create and fill
-.Pa /export/usr.sun3
-and then use the following
-.Pa /etc/exports
-lines:
-.Bd -literal -offset indent -compact
-/export/usr.sun3 -ro myclient
-/export/myclient -rw=myclient,root=myclient
-.Ed
-.Pp
-.It 9.
-Copy and customize at least the following files in
-.Pa /export/myclient/root :
-.Bd -literal -offset indent -compact
-# cd /export/myclient/root/etc
-# cp fstab.nfs fstab
-# cp /etc/hosts hosts
-# echo myclient > myname
-# echo 192.197.96.12 > hostname.le0
-.Ed
-.Pp
-Note that "le0" above should be replaced with the name of
-the network interface that the client will use for booting.
-.Pp
-.It 10.
-Correct the critical mount points and the swap file in the client's
-.Pa /etc/fstab
-(which will be
-.Pa /export/myclient/root/etc/fstab )
-ie.
-.Bd -literal -offset indent -compact
-myserver:/export/myclient/root / nfs rw 0 0
-myserver:/usr /usr nfs rw 0 0
-myserver:/export/myclient/swap none swap sw,nfsmntpt=/swap
-.Ed
-.Pp
-Note, you must specify the swap file in
-.Pa /etc/fstab
-or it will not be used!
-.El
-.Sh FILES
-.Bl -tag -width /usr/mdec/rbootd -compact
-.It Pa /etc/ethers
-Ethernet addresses of known clients
-.It Pa /etc/bootparams
-client root pathname
-.It Pa /etc/exports
-exported NFS mount points
-.It Pa /etc/rbootd.conf
-configuration file for HP Remote Boot Daemon
-.It Pa /tftpboot
-location of boot programs loaded by the Sun PROM
-.It Pa /usr/mdec/rbootd
-location of boot programs loaded by the HP Boot ROM
-.El
-.Sh "SEE ALSO"
-.Xr bootparams 5 ,
-.Xr ethers 5 ,
-.Xr exports 5 ,
-.Xr bootparamd 8 ,
-.Xr mountd 8 ,
-.Xr nfsd 8 ,
-.Xr rarpd 8 ,
-.Xr rbootd 8 ,
-.Xr reboot 8 ,
-.Xr tftpd 8
diff --git a/share/skel/dot.login_conf b/share/skel/dot.login_conf
deleted file mode 100644
index 9a933af2a3604..0000000000000
--- a/share/skel/dot.login_conf
+++ /dev/null
@@ -1,7 +0,0 @@
-# $Id: dot.login,v 1.11 1997/08/15 23:41:24 ache Exp $
-#
-# see login.conf(5)
-#
-#me:\
-# :charset=iso-8859-1:\
-# :lang=de_DE.ISO_8859-1:
diff --git a/share/skel/dot.mail_aliases b/share/skel/dot.mail_aliases
deleted file mode 100644
index 43c8d4504b966..0000000000000
--- a/share/skel/dot.mail_aliases
+++ /dev/null
@@ -1,13 +0,0 @@
-# $Id: dot.mailrc,v 1.4 1997/02/22 13:56:32 peter Exp $
-#
-# .mail_aliases - private mail aliases
-#
-# see also mail(1)
-#
-
-# FreeBSD Mailing lists aliases
-# alias freebsd-bugs freebsd-bugs@freebsd.org
-# alias freebsd-questions freebsd-questions@freebsd.org
-
-# an alias for your good friends
-# alias bicycle christoph gerhardt velophil zentralrad
diff --git a/share/skel/dot.shrc b/share/skel/dot.shrc
deleted file mode 100644
index 57103fe49a2ef..0000000000000
--- a/share/skel/dot.shrc
+++ /dev/null
@@ -1,43 +0,0 @@
-# $Id: dot.profile,v 1.12 1997/07/15 09:37:02 charnier Exp $
-#
-# .shrc - bourne shell startup file
-#
-# This file will be used if the shell is invoked for interactive use and
-# the environment variable ENV is set to this file.
-#
-# see also sh(1), environ(7).
-#
-
-
-# file permissions: rwxr-xr-x
-#
-# umask 022
-
-# Uncomment next line to enable the builtin emacs(1) command line editor
-# in sh(1), e.g. C-a -> beginning-of-line.
-# set -o emacs
-
-
-# some useful aliases
-alias h='fc -l'
-alias j=jobs
-alias m=$PAGER
-alias ll='ls -laFo'
-alias l='ls -l'
-alias g='egrep -i'
-
-# # be paranoid
-# alias cp='cp -ip'
-# alias mv='mv -i'
-# alias rm='rm -i'
-
-
-# # set prompt: ``username@hostname$ ''
-# PS1="`whoami`@`hostname | sed 's/\..*//'`"
-# case `id -u` in
-# 0) PS1="${PS1}# ";;
-# *) PS1="${PS1}$ ";;
-# esac
-
-# search path for cd(1)
-# CDPATH=.:$HOME
diff --git a/share/syscons/fonts/iso02-8x14.fnt b/share/syscons/fonts/iso02-8x14.fnt
deleted file mode 100644
index a10765e1b1e99..0000000000000
--- a/share/syscons/fonts/iso02-8x14.fnt
+++ /dev/null
@@ -1,83 +0,0 @@
-begin 644 iso02-8x14
-M`````````````````````'Z!I8&!O9F!@7X`````?O_;___#Y___?@``````
-M`&S^_O[^?#@0````````$#A\_GPX$````````!@\/.?GYQ@8/```````&#Q^
-M__]^&!@\```````````8/#P8`````/_______^?#P^?_____```````\9D)"
-M9CP```#______\.9O;V9P____P``'@X:,GC,S,S,>``````\9F9F9CP8?A@8
-M`````#XV/C`P,#!P\.``````?F9^9F9F9F[N[,``````&!C;/.<\VQ@8````
-M@,#@\/C^^/#@P(`````"!@X>/OX^'@X&`@`````8/'X8&!A^/!@``````&9F
-M9F9F9F8`9F8``````````````````````'S&8#ALQL9L.`S&?```````````
-M`/[^_OX`````&#Q^&!@8?CP8?@`````8/'X8&!@8&!@8`````!@8&!@8&!A^
-M/!@`````````&`S^#!@````````````P8/Y@,`````````````#`P,#^````
-M````````*&S^;"@``````````!`X.'Q\_OX`````````_OY\?#@X$```````
-M```````````````````8/#P\&!@8`!@8````QL;&1````````````````&QL
-M_FQL;/YL;```&!A\QL+`?`8&AL9\&!@`````PL8,&#!@QH8`````.&QL.';<
-MS,S,=@```#`P,&````````````````P8,#`P,#`P&`P`````,!@,#`P,#`P8
-M,`````````!F//\\9@```````````!@8?A@8`````````````````!@8&#``
-M`````````/X`````````````````````&!@````````"!@P8,&#`@``````X
-M;,;&UM;&QFPX`````!@X>!@8&!@8&'X`````?,8&#!@P8,#&_@````!\Q@8&
-M/`8&!L9\``````P</&S,_@P,#!X`````_L#`P/P&!@;&?``````X8,#`_,;&
-MQL9\`````/[&!@8,&#`P,#``````?,;&QGS&QL;&?`````!\QL;&?@8&!@QX
-M````````&!@````8&``````````8&````!@8,```````!@P8,&`P&`P&````
-M`````'X``'X``````````&`P&`P&#!@P8`````!\QL8,&!@8`!@8``````!\
-MQL;>WMS<P'P`````$#ALQL;^QL;&Q@````#\9F9F?&9F9F;\`````#QFPL#`
-MP,#"9CP`````^&QF9F9F9F9L^`````#^9F)H>&AB8F;^`````/YF8FAX:&!@
-M8/``````/&;"P,#>QL9F.@````#&QL;&_L;&QL;&`````#P8&!@8&!@8&#P`
-M````'@P,#`P,S,S,>`````#F9F9L>'AL9F;F`````/!@8&!@8&!B9OX`````
-MQN[^_M;&QL;&Q@````#&YO;^WL[&QL;&`````'S&QL;&QL;&QGP`````_&9F
-M9GQ@8&!@\`````!\QL;&QL;&UMY\#`X``/QF9F9\;&9F9N8`````?,;&8#@,
-M!L;&?`````!^?EH8&!@8&!@\`````,;&QL;&QL;&QGP`````QL;&QL;&QFPX
-M$`````#&QL;&UM;6_NYL`````,;&;'PX.'QLQL8`````9F9F9CP8&!@8/```
-M``#^QH8,&#!@PL;^`````#PP,#`P,#`P,#P``````(#`X'`X'`X&`@`````\
-M#`P,#`P,#`P\```0.&S&``````````````````````````````#_,#`8````
-M`````````````````'@,?,S,S'8`````X&!@>&QF9F9F?`````````!\QL#`
-MP,9\`````!P,##QLS,S,S'8`````````?,;^P,#&?``````<-C(P>#`P,#!X
-M`````````';,S,S,?`S,>```X&!@;'9F9F9FY@`````8&``X&!@8&!@\````
-M``8&``X&!@8&!F9F/```X&!@9FQX>&QFY@`````X&!@8&!@8&!@\````````
-M`.S^UM;6UL8`````````W&9F9F9F9@````````!\QL;&QL9\`````````-QF
-M9F9F?&!@\```````=LS,S,Q\#`P>``````#<=F9@8&#P`````````'S&8#@,
-MQGP`````$#`P_#`P,#`V'`````````#,S,S,S,QV`````````&9F9F9F/!@`
-M````````QL;6UM;^;`````````#&;#@X.&S&`````````,;&QL;&?@8,^```
-M````_LP8,&#&_@`````.&!@8<!@8&!@.`````!@8&!@`&!@8&!@`````<!@8
-M&`X8&!@8<`````!VW```````````````````$#ALQL;&_@``````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````$#ALQL;^QL;&S@P&`,9\`````````````````'@P/#@P</"R-GX`
-M````````QGS&QL9\Q@``V'``\&!@8&!@8F;^```,&`!\QL9@.`S&QGP```!\
-MQF`X;,;&;#C.QGP``&QL``````````````!L.`!\QL9@.`P&QGP`````?,;&
-M8#@,!L;&?!AP9CP8?GY:&!@8&!@\````#!@`_H8,&#!@POX```````````!^
-M`````````&8\`/Z&#!@P8,+^```0.!#^A@P8,&#"POX````X;&PX````````
-M``````````!X#'S,S,QV#`8``````````````#`P'```.!@>'!@X>-@8/```
-M``P8,```````````````'NQ@8&!@8&!@8/``````#!@`?,9@.`S&?````&PX
-M`````````````````````````````!@8<```;#@`?,9@.`S&?`````````!\
-MQF`X#,9\&'AL.``0,##\,#`P-AP`````&#``_LP8,&#&_@```#9LV```````
-M`````````&PX`/[,&#!@QOX`````$#@0_LP8,&#&_@``#!@`_&9F9GQL9F;F
-M```,&``0.&S&QO[&QL8``#AL`!`X;,;&_L;&Q@``QGP`$#ALQL;^QL;&````
-MQ@`0.&S&QO[&QL8`````]FQ@8&!@8&)F_@````P8`#QFPL#`PF8\`````#QF
-MPL#`P,)F/`P&?&PX`#QFPL#`P,)F/````#!@`/YF8GA@8&;^`````/YF8FAX
-M:&)B9OX8'`!L`/YF8FAX:&)F_@``;#@`_F9B:'AH8F;^```,&``\&!@8&!@8
-M&#P``#QF`#P8&!@8&!@8/```S'@`^&QF9F9F9FSX`````/AL9F;V]F9F;/@`
-M`!@P`,;F]O[>SL;&Q@``;#@`QN;V_M[.QL;&```8,`!\QL;&QL;&QGP``#AL
-M`'S&QL;&QL;&?````#9L`'S&QL;&QL9\````Q@!\QL;&QL;&QGP`````````
-M`&8\&#QF````;#@`_&9F9GQL9F;F```X;#C&QL;&QL;&QGP``!@P`,;&QL;&
-MQL;&?```-FP`QL;&QL;&QL9\````Q@#&QL;&QL;&QGP```P8`&9F9F8\&!@8
-M/`````!^?EH8&!@8&!@\##@``'C,S,S8S,;&QLP````,&#``W'9F8&!@\```
-M`!@P8`!X#'S,S,QV````$#AL`'@,?,S,S'8`````S'@`>`Q\S,S,=@````#,
-M``!X#'S,S,QV````!NQ@8&!@8&!@8/`````,&#``?,;`P,#&?``````````\
-M9F!@9CP,!CP``&PX`'S&P,#`QGP````,&#``?,;^P,#&?`````````!\QO[`
-MP,9\&!P``,8``'S&_L#`QGP`````;#@`?,;^P,#&?`````P8,``X&!@8&!@\
-M````&#QF`#@8&!@8&#P```#8?"P,/&S,S,S,=@`````,?GX,/&S,S,QV````
-M`!@P`-QF9F9F9F8`````;#@`W&9F9F9F9@```!@P8`!\QL;&QL9\````$#AL
-M`'S&QL;&QGP`````-FP`?,;&QL;&?`````#&``!\QL;&QL9\````````&!@`
-M?@`8&```````;#@`W'9F8&!@\````'C,>`#,S,S,S,QV````&#!@`,S,S,S,
-MS'8`````;-@`S,S,S,S,=@````#,``#,S,S,S,QV````#!@P`,;&QL;&?@8,
-=^```$#`P_#`P,#`V'`PX`!@8``````````````!V
-`
-end
diff --git a/share/syscons/fonts/iso02-8x16.fnt b/share/syscons/fonts/iso02-8x16.fnt
deleted file mode 100644
index a28fcc3728176..0000000000000
--- a/share/syscons/fonts/iso02-8x16.fnt
+++ /dev/null
@@ -1,95 +0,0 @@
-begin 644 iso02-8x16
-M````````````````````````?H&E@8&]F8&!?@```````'[_V___P^?__WX`
-M`````````&S^_O[^?#@0```````````0.'S^?#@0```````````8/#SGY^<8
-M&#P`````````&#Q^__]^&!@\`````````````!@\/!@```````#________G
-MP\/G________```````\9D)"9CP``````/______PYF]O9G#______\``!X.
-M&C)XS,S,S'@````````\9F9F9CP8?A@8````````/C8^,#`P,'#PX```````
-M`'YF?F9F9F9N[NS`````````&!C;/.<\VQ@8``````"`P.#P^/[X\.#`@```
-M`````@8.'C[^/AX.!@(````````8/'X8&!A^/!@`````````9F9F9F9F9@!F
-M9@```````````````````````````'S&8#ALQL9L.`S&?```````````````
-M_O[^_@```````!@\?A@8&'X\&'X````````8/'X8&!@8&!@8````````&!@8
-M&!@8&'X\&````````````!@,_@P8```````````````P8/Q@,```````````
-M`````,#`P/X``````````````"AL_FPH`````````````!`X.'Q\_OX`````
-M``````#^_GQ\.#@0```````````````````````````````8/#P\&!@8`!@8
-M``````#&QL9$``````````````````!L;/YL;&S^;&P`````&!A\QL+`?`8&
-MAL9\&!@```````#"Q@P8,&#&A@```````#AL;#AVW,S,S'8``````#`P,&``
-M````````````````#!@P,#`P,#`8#````````#`8#`P,#`P,&#``````````
-M``!F//\\9@``````````````&!A^&!@````````````````````8&!@P````
-M`````````/X````````````````````````8&````````````@8,&#!@P(``
-M```````X;,;&UM;&QFPX````````&#AX&!@8&!@8?@```````'S&!@P8,&#`
-MQOX```````!\Q@8&/`8&!L9\````````#!P\;,S^#`P,'@```````/[`P,#\
-M!@8&QGP````````X8,#`_,;&QL9\````````_L8&#!@P,#`P,````````'S&
-MQL9\QL;&QGP```````!\QL;&?@8&!@QX```````````8&````!@8````````
-M````&!@````8&#``````````!@P8,&`P&`P&````````````?@``?@``````
-M``````!@,!@,!@P8,&````````!\QL8,&!@8`!@8`````````'S&QM[>WMS`
-M?````````!`X;,;&_L;&QL8```````#\9F9F?&9F9F;\````````/&;"P,#`
-MP,)F/````````/AL9F9F9F9F;/@```````#^9F)H>&A@8F;^````````_F9B
-M:'AH8&!@\````````#QFPL#`WL;&9CH```````#&QL;&_L;&QL;&````````
-M/!@8&!@8&!@8/````````!X,#`P,#,S,S'@```````#F9F9L>'AL9F;F````
-M````\&!@8&!@8&)F_@```````,;N_O[6QL;&QL8```````#&YO;^WL[&QL;&
-M````````?,;&QL;&QL;&?````````/QF9F9\8&!@8/````````!\QL;&QL;&
-MUMY\#`X`````_&9F9GQL9F9F]@```````'S&QF`X#`;&QGP```````!^?EH8
-M&!@8&!@\````````QL;&QL;&QL;&?````````,;&QL;&QL9L.!````````#&
-MQL;&UM;6_NYL````````QL9L?#@X?&S&Q@```````&9F9F8\&!@8&#P`````
-M``#^QH8,&#!@PL;^````````/#`P,#`P,#`P/`````````"`P.!P.!P.!@(`
-M```````\#`P,#`P,#`P\`````!`X;,8`````````````````````````````
-M````_P``,#`8````````````````````````>`Q\S,S,=@```````.!@8'AL
-M9F9F9GP```````````!\QL#`P,9\````````'`P,/&S,S,S,=@``````````
-M`'S&_L#`QGP````````<-C(P>#`P,#!X````````````=LS,S,S,?`S,>```
-M`.!@8&QV9F9F9N8````````8&``X&!@8&!@\````````!@8`#@8&!@8&!F9F
-M/````.!@8&9L>'AL9N8````````X&!@8&!@8&!@\````````````[/[6UM;6
-MQ@```````````-QF9F9F9F8```````````!\QL;&QL9\````````````W&9F
-M9F9F?&!@\````````';,S,S,S'P,#!X```````#<=F9@8&#P````````````
-M?,9@.`S&?````````!`P,/PP,#`P-AP```````````#,S,S,S,QV````````
-M````S,S,S,QX,````````````,;&UM;6_FP```````````#&;#@X.&S&````
-M````````QL;&QL;&?@8,^````````/[,&#!@QOX````````.&!@8<!@8&!@.
-M````````&!@8&``8&!@8&````````'`8&!@.&!@8&'````````!VW```````
-M```````````````0.&S&QL;^````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M`````````````````!`X;,;&_L;&QL88,!X``,9\````````````````````
-M\&1L>'#@X&)F_@```````````,9\QL;&?,8``````!ON8&!@8&!@8F;^````
-M`!@P`'S&QF`X#,;&?```````?,9@.&S&QFPX#,9\`````&QL````````````
-M`````&PX`'S&P&`X#`;&?````````'S&QF`X#`;&QGP8#'@`9CP`?GY:&!@8
-M&!@\`````!@P`/Z&#!@P8,+&_@``````````````?@``````````;#@`_L:,
-M&#!@PL;^`````!@8`/Z&#!@P8,+&_@``````.&QL.```````````````````
-M``!X#'S,S,QV&#`>`````````````````#!@/````#@:'AP8.'A8&#P`````
-M``P8,``````````````````;[F!@8&!@8&!@\`````````P8`'S&8#@,QGP`
-M`````&PX`````````````````````````````````!@,>````&PX`'S&8#@,
-MQGP```````````!\QF`X#,9\&`QX`&PX`!`P,/PP,#`V'```````#!@P`/[,
-M&#!@QOX``````#9LV```````````````````;#@`_LP8,&#&_@```````!@8
-M`/[,&#!@QOX`````&#``_&9F9GQL9F;V`````!@P`!`X;,;&_L;&Q@`````X
-M;``0.&S&QO[&QL8`````QGP`$#ALQL;^QL;&``````#&$#ALQL;^QL;&Q@``
-M`````/9L8&!@8&!B9OX`````#!@`/&;"P,#`PF8\````````/&;"P,#`P,)F
-M/`P&?`!F/``\9L+`P,#"9CP`````&#!@`/YF8'A@8F;^````````_F9B:'AH
-M8&)F_A@P'@!L``#^9F)H>&AB9OX`````;#@`_F9B:'AH8F;^``````P8`#P8
-M&!@8&!@8/``````\9@`\&!@8&!@8&#P`````;#@`^&QF9F9F9FSX````````
-M^&QF9O9F9F9L^``````,&`#&YO;^WL[&QL8`````;#@`QN;V_M[.QL;&````
-M``P8`'S&QL;&QL;&?``````X;`!\QL;&QL;&QGP`````-FP`?,;&QL;&QL9\
-M``````#&`'S&QL;&QL;&?`````````````#&;#ALQ@``````;#@`_&9F9GQL
-M9F;V`````#AL.`#&QL;&QL;&?``````8,`#&QL;&QL;&QGP`````-FP`QL;&
-MQL;&QL9\``````#&`,;&QL;&QL;&?``````,&`!F9F9F/!@8&#P```````!^
-M?EH8&!@8&!@\&`QX````>,S,S-C,QL;&S```````#!@P`-QV9F!@8/``````
-M`!@P8`!X#'S,S,QV```````0.&P`>`Q\S,S,=@```````,9\`'@,?,S,S'8`
-M``````#,``!X#'S,S,QV````````YFQ@8&!@8&!@\```````#!@P`'S&P,#`
-MQGP```````````!\QL#`P,9\&`QX````;#@`?,;`P,#&?```````#!@P`'S&
-M_L#`QGP```````````!\QO[`P,9\,&`\````Q@``?,;^P,#&?````````&8\
-M`'S&_L#`QGP```````P8,``X&!@8&!@\```````8/&8`.!@8&!@8/`````!L
-M.``<#`P\;,S,S'8````````,#'X,/&S,S,QV```````,&#``W&9F9F9F9@``
-M`````&PX`-QF9F9F9F8``````!@P8`!\QL;&QL9\```````0.&P`?,;&QL;&
-M?````````#9L`'S&QL;&QGP```````#&``!\QL;&QL9\```````````8&`!^
-M`!@8`````````&PX`-QV9F!@8/```````'C,>`#,S,S,S,QV```````8,&``
-MS,S,S,S,=@```````#9L`,S,S,S,S'8```````#,``#,S,S,S,QV```````,
-M&#``QL;&QL;&?@8,^````!`P,/PP,#`P-AP8#'@``!@8````````````````
-!`#``
-`
-end
diff --git a/share/syscons/fonts/iso02-8x8.fnt b/share/syscons/fonts/iso02-8x8.fnt
deleted file mode 100644
index 449beb564c75e..0000000000000
--- a/share/syscons/fonts/iso02-8x8.fnt
+++ /dev/null
@@ -1,49 +0,0 @@
-begin 644 iso02-8x8
-M``````````!^@:6!O9F!?G[_V__#Y_]^;/[^_GPX$``0.'S^?#@0`#A\./[^
-MUA`X$!`X?/Y\$#@``!@\/!@``/__Y\/#Y___`#QF0D)F/`#_PYF]O9G#_P\'
-M#WW,S,QX/&9F9CP8?A@_,S\P,'#PX']C?V-C9^;`&-L\Y^<\VQB`X/C^^."`
-M``(./OX^#@(`&#Q^&!A^/!AF9F9F9@!F````````````/F,X;&PXS'@`````
-M?GY^`!@\?AA^/!C_&#Q^&!@8&``8&!@8?CP8```8#/X,&````#!@_F`P````
-M`,#`P/X````D9O]F)````!@\?O__````__]^/!@`````````````,'AX,#``
-M,`!L;&P``````&QL_FS^;&P`,'S`>`SX,```QLP8,&;&`#AL.';<S'8`8&#`
-M```````8,&!@8#`8`&`P&!@8,&```&8\_SQF````,##\,#``````````,#!@
-M````_````````````#`P``8,&#!@P(``?,;&UL;&?``P<#`P,##\`'C,##A@
-MS/P`>,P,.`S,>``</&S,_@P>`/S`^`P,S'@`.&#`^,S,>`#\S`P8,#`P`'C,
-MS'C,S'@`>,S,?`P8<```,#```#`P```P,```,#!@&#!@P&`P&````/P``/P`
-M`&`P&`P8,&``>,P,&#``,`!\QM[>WL!X`#!XS,S\S,P`_&9F?&9F_``\9L#`
-MP&8\`/AL9F9F;/@`_F)H>&AB_@#^8FAX:&#P`#QFP,#.9CX`S,S,_,S,S`!X
-M,#`P,#!X`!X,#`S,S'@`YF9L>&QFY@#P8&!@8F;^`,;N_O[6QL8`QN;VWL[&
-MQ@`X;,;&QFPX`/QF9GQ@8/``>,S,S-QX'`#\9F9\;&;F`'C,8#`8S'@`_+0P
-M,#`P>`#,S,S,S,S\`,S,S,S,>#``QL;&UO[NQ@#&QFPX.&S&`,S,S'@P,'@`
-M_L:,&#)F_@!X8&!@8&!X`,!@,!@,!@(`>!@8&!@8>``0.&S&````````````
-M``#_,#`8`````````'@,?,QV`.!@8'QF9MP```!XS,#,>``<#`Q\S,QV````
-M>,S\P'@`.&Q@\&!@\````';,S'P,^.!@;'9F9N8`,`!P,#`P>``,``P,#,S,
-M>.!@9FQX;.8`<#`P,#`P>````,S^_M;&````^,S,S,P```!XS,S,>````-QF
-M9GQ@\```=LS,?`P>``#<=F9@\````'S`>`SX`!`P?#`P-!@```#,S,S,=@``
-M`,S,S'@P````QM;^_FP```#&;#ALQ@```,S,S'P,^```_)@P9/P`'#`PX#`P
-M'``8&!@8&!@8`.`P,!PP,.``=MP````````0*$2"@H+^````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M````````````````````````````````````````````````````````````
-M`````````````````````````````````````#ALQO[&UA@.QGP```````!@
-M;'AP8.!^``!"/&9F/$(`]MS`P,#`_@`,&'[`?`;\`#QF.&QL.,QX9@``````
-M``!L.'[@.`[\`'C,8#`8S'@PS'C\,#`P,``,&/X,,&#^`````#P`````9CS^
-M#!A@_@`8_L8,,,;^`#AL;#@```````!X#'S,=@\````````0'#`V/#@P<-P`
-M#!@```````#VW,#`P,!X``P8/F`\!GP`V'`````````````````$'&PX?$`X
-M!'P```!\P'@,^#C,>##\,#`>``P8`'X,,'X`9LP```````!F/`!^##!^```8
-M`'P8,'P`#!C\QOS8S``,&'S&_L;&`'R"?,;^QL8`QGQ\QO[&Q@#&.&S&_L;&
-M`,S8P,#`P/X`#!A\QL#&?``\9L#`9CP,.&8\?,;`QGP`#!C\8'A@_`#^P,#X
-MP,#^',P`_&!X8/P`S'C^P/C`_@`8,'@P,#!X`'B$>#`P,'@`S'C\9F9F_`!\
-M9F;V9F9\``P8YO;>SL8`)!CF]M[.Q@`,&'S&QL9\`'R"?,;&QGP`9LQ\QL;&
-M?`#&?,;&QL9\``#&;#ALQ@``V'#\QOS8S``0*-;&QL9\``P8QL;&QGP`9LS&
-MQL;&?`#&`,;&QL9\``S>QF8\&#``?A@8&!@8(#@`>,SXS/C`P!@PSO#@P,``
-M#!AX#'S,?@!XA'@,?,QV`,QX>`Q\S'8`S`!X#'S,?@#,V,#`P,!X`!@P>,S`
-MS'@```!XS,#,>!AF/#QF8&8\`!@P>,S\P'@```!XS/S`>!S,`'C,_,!X`,QX
-M>,S\P'@`#!@X&!@8/`!PB'`P,#!X`)9F!G[&QGX`##X,?,S,=@`,&-SFQL;&
-M`&8\W.;&QL8```P8>,S,>`!XS`!XS,QX``!FS'C,S'@`S`!XS,S,>``8&`!^
-M`!@8`-APSMC@P,``,,PPS,S,=@``&##,S,Q^`&;,`,S,S'8`S`#,S,S,=@`,
-7&,;&9CX,>#!X,#`P.!@>&`````````#,
-`
-end