xref: /freebsd/stand/lua/gfx-beastiebw.lua (revision 546f18f3dadc50e6978e02b1479bc55cfa677094)
1*546f18f3SKyle Evans--
2*546f18f3SKyle Evans-- SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3*546f18f3SKyle Evans--
4*546f18f3SKyle Evans-- Copyright (c) 2018 Kyle Evans <kevans@FreeBSD.org>
5*546f18f3SKyle Evans--
6*546f18f3SKyle Evans-- Redistribution and use in source and binary forms, with or without
7*546f18f3SKyle Evans-- modification, are permitted provided that the following conditions
8*546f18f3SKyle Evans-- are met:
9*546f18f3SKyle Evans-- 1. Redistributions of source code must retain the above copyright
10*546f18f3SKyle Evans--    notice, this list of conditions and the following disclaimer.
11*546f18f3SKyle Evans-- 2. Redistributions in binary form must reproduce the above copyright
12*546f18f3SKyle Evans--    notice, this list of conditions and the following disclaimer in the
13*546f18f3SKyle Evans--    documentation and/or other materials provided with the distribution.
14*546f18f3SKyle Evans--
15*546f18f3SKyle Evans-- THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16*546f18f3SKyle Evans-- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17*546f18f3SKyle Evans-- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18*546f18f3SKyle Evans-- ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19*546f18f3SKyle Evans-- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20*546f18f3SKyle Evans-- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21*546f18f3SKyle Evans-- OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22*546f18f3SKyle Evans-- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23*546f18f3SKyle Evans-- LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24*546f18f3SKyle Evans-- OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25*546f18f3SKyle Evans-- SUCH DAMAGE.
26*546f18f3SKyle Evans--
27*546f18f3SKyle Evans-- $FreeBSD$
28*546f18f3SKyle Evans--
29*546f18f3SKyle Evans
30*546f18f3SKyle Evansreturn {
31*546f18f3SKyle Evans	logo = {
32*546f18f3SKyle Evans		graphic = {
33*546f18f3SKyle Evans		    "               ,        ,",
34*546f18f3SKyle Evans		    "              /(        )`",
35*546f18f3SKyle Evans		    "              \\ \\___   / |",
36*546f18f3SKyle Evans		    "              /- _  `-/  '",
37*546f18f3SKyle Evans		    "             (/\\/ \\ \\   /\\",
38*546f18f3SKyle Evans		    "             / /   | `    \\",
39*546f18f3SKyle Evans		    "             O O   ) /    |",
40*546f18f3SKyle Evans		    "             `-^--'`<     '",
41*546f18f3SKyle Evans		    "            (_.)  _  )   /",
42*546f18f3SKyle Evans		    "             `.___/`    /",
43*546f18f3SKyle Evans		    "               `-----' /",
44*546f18f3SKyle Evans		    "  <----.     __ / __   \\",
45*546f18f3SKyle Evans		    "  <----|====O)))==) \\) /====|",
46*546f18f3SKyle Evans		    "  <----'    `--' `.__,' \\",
47*546f18f3SKyle Evans		    "               |        |",
48*546f18f3SKyle Evans		    "                \\       /       /\\",
49*546f18f3SKyle Evans		    "           ______( (_  / \\______/",
50*546f18f3SKyle Evans		    "         ,'  ,-----'   |",
51*546f18f3SKyle Evans		    "         `--{__________)",
52*546f18f3SKyle Evans		},
53*546f18f3SKyle Evans	}
54*546f18f3SKyle Evans}
55